diff --git a/.gitignore b/.gitignore index 9b8bb5029..6365086cf 100644 --- a/.gitignore +++ b/.gitignore @@ -80,4 +80,19 @@ bower_components/ src/vendor/ dist/ +# Build dirs # +############## build/ + +# .vscode files # +################# +.vscode/ + +# UV lock # +########### +uv.lock + +# data # +######## +data/ +output/ diff --git a/compiler.sh b/compiler.sh index 2026d55c2..76d2e3981 100755 --- a/compiler.sh +++ b/compiler.sh @@ -1,7 +1,11 @@ +#!/bin/bash + #TODO add options for clean/noclean, make/nomake, cython/nocython #TODO include instuctions on blowing away entire package for fresh install e.g. rm -r ~/venvs/mesh/lib/python3.6/site-packages/troute/* + #set root folder of github repo (should be named t-route) REPOROOT=`pwd` + #For each build step, you can set these to true to make it build #or set it to anything else (or unset) to skip that step build_mc_kernel=true @@ -18,23 +22,51 @@ then export F90="gfortran" echo "using F90=${F90}" fi + if [ -z "$CC" ] then export CC="gcc" echo "using CC=${CC}" fi -#preserve old/default behavior of installing packages with -e +# Parse command line arguments WITH_EDITABLE=true -if [ "$1" == 'no-e' ] -then -WITH_EDITABLE=false +USE_UV=false + +while [[ $# -gt 0 ]]; do + case $1 in + no-e) + WITH_EDITABLE=false + shift + ;; + --uv) + USE_UV=true + shift + ;; + *) + echo "Unknown option: $1" + echo "Usage: $0 [no-e] [--uv]" + echo " no-e: Install packages without editable mode" + echo " --uv: Use uv pip instead of pip" + exit 1 + ;; + esac +done + +# set pip command based on UV flag +if [[ "$USE_UV" == true ]]; then + PIP_CMD="uv pip" + echo "Using uv pip for package installation" +else + PIP_CMD="pip" + echo "Using standard pip for package installation" fi #if you have custom static library paths, uncomment below and export them #export LIBRARY_PATH=:$LIBRARY_PATH #if you have custom dynamic library paths, uncomment below and export them #export LD_LIBRARY_PATHS=:$LD_LIBRARY_PATHS + if [ -z "$NETCDF" ] then export NETCDFINC=/usr/include/openmpi-x86_64/ @@ -45,8 +77,8 @@ then # (before ./compiler.sh) if [ -n "$NETCDFALTERNATIVE" ] then - echo "using alternative NETCDF inc ${NETCDFALTERNATIVE}" - export NETCDFINC=$NETCDFALTERNATIVE + echo "using alternative NETCDF inc ${NETCDFALTERNATIVE}" + export NETCDFINC=$NETCDFALTERNATIVE fi else export NETCDFINC="${NETCDF}" @@ -62,27 +94,26 @@ if [[ "$build_mc_kernel" == true ]]; then make install || exit fi -if [[ "$build_diffusive_tulane_kernel" == true ]]; then - #building reach and resevoir kernel files .o - cd $REPOROOT/src/kernel/diffusive/ - make clean - make diffusive.o - make pydiffusive.o - make chxsec_lookuptable.o - make pychxsec_lookuptable.o - make install || exit +if [[ "$build_diffusive_tulane_kernel" == true ]]; then + #building reach and resevoir kernel files .o + cd $REPOROOT/src/kernel/diffusive/ + make clean + make diffusive.o + make pydiffusive.o + make chxsec_lookuptable.o + make pychxsec_lookuptable.o + make install || exit fi if [[ "$build_reservoir_kernel" == true ]]; then - cd $REPOROOT/src/kernel/reservoir/ - make clean - #make NETCDFINC=`nc-config --includedir` || exit - #make binding_lp.a - #make install_lp || exit - make - make install_lp || exit - make install_rfc || exit - + cd $REPOROOT/src/kernel/reservoir/ + make clean + #make NETCDFINC=`nc-config --includedir` || exit + #make binding_lp.a + #make install_lp || exit + make + make install_lp || exit + make install_rfc || exit fi cd $REPOROOT/src/troute_ewts @@ -93,47 +124,47 @@ else fi if [[ "$build_framework" == true ]]; then - #creates troute package - cd $REPOROOT/src/troute-network - rm -rf build - - if [[ ${WITH_EDITABLE} == true ]]; then - pip install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit - else - pip install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit - fi + #creates troute package + cd $REPOROOT/src/troute-network + rm -rf build + + if [[ ${WITH_EDITABLE} == true ]]; then + $PIP_CMD install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit + else + $PIP_CMD install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit + fi fi if [[ "$build_routing" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-routing - rm -rf build - - if [[ ${WITH_EDITABLE} == true ]]; then - pip install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit - else - pip install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit - fi + #updates troute package with the execution script + cd $REPOROOT/src/troute-routing + rm -rf build + + if [[ ${WITH_EDITABLE} == true ]]; then + $PIP_CMD install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit + else + $PIP_CMD install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit + fi fi if [[ "$build_config" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-config - if [[ ${WITH_EDITABLE} == true ]]; then - pip install --editable . || exit - else - pip install . || exit - fi + #updates troute package with the execution script + cd $REPOROOT/src/troute-config + if [[ ${WITH_EDITABLE} == true ]]; then + $PIP_CMD install --editable . || exit + else + $PIP_CMD install . || exit + fi fi if [[ "$build_nwm" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-nwm - if [[ ${WITH_EDITABLE} == true ]]; then - pip install --editable . || exit - else - pip install . || exit - fi + #updates troute package with the execution script + cd $REPOROOT/src/troute-nwm + if [[ ${WITH_EDITABLE} == true ]]; then + $PIP_CMD install --editable . || exit + else + $PIP_CMD install . || exit + fi fi if [[ "$build_bmi" == true ]]; then diff --git a/compiler_uv.sh b/compiler_uv.sh deleted file mode 100755 index aee132e28..000000000 --- a/compiler_uv.sh +++ /dev/null @@ -1,128 +0,0 @@ -#TODO add options for clean/noclean, make/nomake, cython/nocython -#TODO include instuctions on blowing away entire package for fresh install e.g. rm -r ~/venvs/mesh/lib/python3.6/site-packages/troute/* -#set root folder of github repo (should be named t-route) -REPOROOT=`pwd` -#For each build step, you can set these to true to make it build -#or set it to anything else (or unset) to skip that step -build_mc_kernel=true -build_diffusive_tulane_kernel=true -build_reservoir_kernel=true -build_framework=true -build_routing=true -build_config=true -build_nwm=true - -if [ -z "$F90" ] -then - export F90="gfortran" - echo "using F90=${F90}" -fi -if [ -z "$CC" ] -then - export CC="gcc" - echo "using CC=${CC}" -fi - -#preserve old/default behavior of installing packages with -e -WITH_EDITABLE=true -if [ "$1" == 'no-e' ] -then -WITH_EDITABLE=false -fi - -#if you have custom static library paths, uncomment below and export them -#export LIBRARY_PATH=:$LIBRARY_PATH -#if you have custom dynamic library paths, uncomment below and export them -#export LD_LIBRARY_PATHS=:$LD_LIBRARY_PATHS -if [ -z "$NETCDF" ] -then - export NETCDFINC=/usr/include/openmpi-x86_64/ - # set alternative NETCDF variable include path, for example for WSL - # (Windows Subsystems for Linux). - # - # EXAMPLE USAGE: export NETCDFALTERNATIVE=$HOME/.conda/envs/py39/include/ - # (before ./compiler.sh) - if [ -n "$NETCDFALTERNATIVE" ] - then - echo "using alternative NETCDF inc ${NETCDFALTERNATIVE}" - export NETCDFINC=$NETCDFALTERNATIVE - fi -else - export NETCDFINC="${NETCDF}" -fi -echo "using NETCDFINC=${NETCDFINC}" - -if [[ "$build_mc_kernel" == true ]]; then - #building reach and resevoir kernel files .o - cd $REPOROOT/src/kernel/muskingum/ - make clean - make || exit - make install || exit -fi - -if [[ "$build_diffusive_tulane_kernel" == true ]]; then - #building reach and resevoir kernel files .o - cd $REPOROOT/src/kernel/diffusive/ - make clean - make diffusive.o - make pydiffusive.o - make chxsec_lookuptable.o - make pychxsec_lookuptable.o - make install || exit -fi - -if [[ "$build_reservoir_kernel" == true ]]; then - cd $REPOROOT/src/kernel/reservoir/ - make clean - #make NETCDFINC=`nc-config --includedir` || exit - #make binding_lp.a - #make install_lp || exit - make - make install_lp || exit - make install_rfc || exit - -fi - -if [[ "$build_framework" == true ]]; then - #creates troute package - cd $REPOROOT/src/troute-network - rm -rf build - - if [[ ${WITH_EDITABLE} == true ]]; then - uv pip install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit - else - uv pip install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit - fi -fi - -if [[ "$build_routing" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-routing - rm -rf build - - if [[ ${WITH_EDITABLE} == true ]]; then - uv pip install --no-build-isolation --config-setting='--build-option=--use-cython' --editable . --config-setting='editable_mode=compat' || exit - else - uv pip install --no-build-isolation --config-setting='--build-option=--use-cython' . || exit - fi -fi - -if [[ "$build_config" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-config - if [[ ${WITH_EDITABLE} == true ]]; then - uv pip install --editable . || exit - else - uv pip install . || exit - fi -fi - -if [[ "$build_nwm" == true ]]; then - #updates troute package with the execution script - cd $REPOROOT/src/troute-nwm - if [[ ${WITH_EDITABLE} == true ]]; then - uv pip install --editable . || exit - else - uv pip install . || exit - fi -fi diff --git a/src/model_DAforcing.py b/src/model_DAforcing.py index 7a7fa54ea..666dc08c2 100644 --- a/src/model_DAforcing.py +++ b/src/model_DAforcing.py @@ -79,6 +79,7 @@ def __init__(self, bmi_cfg_file=None): usgs_persistence = data_assimilation_parameters.get('reservoir_da', {}).get('reservoir_persistence_da', {}).get('reservoir_persistence_usgs', False) usace_persistence = data_assimilation_parameters.get('reservoir_da', {}).get('reservoir_persistence_da', {}).get('reservoir_persistence_usace', False) + usbr_persistence = data_assimilation_parameters.get('reservoir_da', {}).get('reservoir_persistence_da', {}).get('reservoir_persistence_usbr', False) rfc = data_assimilation_parameters.get('reservoir_da', {}).get('reservoir_rfc_da', {}).get('reservoir_rfc_forecasts', False) qc_threshold = data_assimilation_parameters.get('qc_threshold') @@ -135,6 +136,14 @@ def __init__(self, bmi_cfg_file=None): qc_threshold, 900, #15 minutes cpu_pool,) + + if usbr_persistence: + usace_timeslice_path = str(data_assimilation_parameters.get('usbr_timeslices_folder')) + self._reservoir_usace_df = _read_timeslice_files(usace_timeslice_path, + timeslice_dates, + qc_threshold, + 900, #15 minutes + cpu_pool,) # Produce list of datetimes to search for timeseries files rfc_parameters = data_assimilation_parameters.get('reservoir_da', {}).get('reservoir_rfc_da', {}) diff --git a/src/troute-bmi/src/troute_nwm_bmi/troute_bmi.py b/src/troute-bmi/src/troute_nwm_bmi/troute_bmi.py index 08b1b423d..8331469e8 100644 --- a/src/troute-bmi/src/troute_nwm_bmi/troute_bmi.py +++ b/src/troute-bmi/src/troute_nwm_bmi/troute_bmi.py @@ -17,6 +17,9 @@ "land_surface_water_source__id", "land_surface_water_source__volume_flow_rate", "upstream_id", + "et_forcing_id", + "et_forcing_data", + "delta_time" ] @@ -32,6 +35,9 @@ def __init__(self): "land_surface_water_source__volume_flow_rate": np.zeros(0, dtype=float), "land_surface_water_source__volume_flow_rate" + _COUNT_SUFFIX: np.zeros(1, dtype=np.int64), "upstream_id": np.zeros(0, dtype=int), + "et_forcing_id": np.zeros(0, dtype=np.intc), + "et_forcing_data": np.zeros(0, dtype=np.double), + "delta_time": np.zeros(1, dtype=np.intc), } self._var_loc = "node" self._var_grid_id = 0 @@ -65,7 +71,11 @@ def set_value(self, var_name: str, src): source_var_name = var_name[:-len(_COUNT_SUFFIX)] source = self._values.get(source_var_name) self._values[source_var_name] = np.resize(source, int(src[0])) - self._values[var_name][:] = src + var = self._values[var_name] + if len(var) == len(src): + var[:] = src + else: + self._values[var_name] = src.astype(var.dtype, copy=True) def get_value(self, var_name: str): """Copy of values. diff --git a/src/troute-bmi/src/troute_nwm_bmi/troute_model.py b/src/troute-bmi/src/troute_nwm_bmi/troute_model.py index 326de8b53..6ddaaa0bd 100644 --- a/src/troute-bmi/src/troute_nwm_bmi/troute_model.py +++ b/src/troute-bmi/src/troute_nwm_bmi/troute_model.py @@ -4,6 +4,8 @@ import yaml import numpy as np import pandas as pd +import xarray as xr +from collections import defaultdict from datetime import timedelta, datetime from troute.config import Config @@ -136,6 +138,8 @@ def run(self, bmi_values: dict): else: flowveldepth_interorder = {} + self._build_et_array() + LOG.debug("Starting routing function") route_start_time = time.time() run_results, self._subnetwork = nwm_routing.nwm_route( @@ -155,12 +159,16 @@ def run(self, bmi_values: dict): param_df=self._network.dataframe, q0=self._network.q0, qlats=qlats, + eloss_df=self._network.eloss, + ssout=self.forcing_parameters.get("ssout"), usgs_df=self._data_assimilation.usgs_df, lastobs_df=self._data_assimilation.lastobs_df, reservoir_usgs_df=self._data_assimilation.reservoir_usgs_df, reservoir_usgs_param_df=self._data_assimilation.reservoir_usgs_param_df, reservoir_usace_df=self._data_assimilation.reservoir_usace_df, reservoir_usace_param_df=self._data_assimilation.reservoir_usace_param_df, + reservoir_usbr_df=self._data_assimilation.reservoir_usbr_df, + reservoir_usbr_param_df=self._data_assimilation.reservoir_usbr_param_df, reservoir_rfc_df=self._data_assimilation.reservoir_rfc_df, reservoir_rfc_param_df=self._data_assimilation.reservoir_rfc_param_df, great_lakes_df=self._data_assimilation.great_lakes_df, @@ -306,6 +314,52 @@ def time(self) -> float: def t0(self) -> datetime: return self._network.t0 + def _ngen_dt(self, bmi_values: dict): + # attempt to read value passed to BMI + from_bmi = bmi_values.get("delta_time", [0]) + if len(from_bmi) and (from_bmi[0] > 0): + return int(from_bmi[0]) + # backup method of assuming NGEN's delta time from config yaml + return int(self.dt * self.forcing_parameters["qts_subdivisions"]) + + def _build_et_array(self, bmi_values: dict): + build_et_array = getattr(self._network, "build_et_array", None) + # get values received from NGEN + cat_ids = bmi_values["et_forcing_id"] + cat_results = bmi_values["et_forcing_data"] + num_ids = len(cat_ids) + # if network has a builder and et forcing value were received + if callable(build_et_array) and (len(cat_ids) > 0) and (num_ids > 0): + LOG.debug("Generating ET forcing values datasets.") + start_time = time.time() + # unpack raw results into separate data results per catchment + field = self.forcing_parameters.get("et_file_value_col", "ACTUAL_ET") + ngen_dt = self._ngen_dt(bmi_values) + num_timesteps = len(cat_results) // num_ids + # create an array of timesteps to be used as dataframe indexes + start = self.t0 + time_index = [start + timedelta(seconds=ngen_dt * i) for i in range(num_timesteps)] + # unpack the results and convert to xarray bindary data used by the network + datasets = [] + for cat_index, cat_id in enumerate(cat_ids): + df_data = { + "time": time_index, + field: cat_results[cat_index::num_ids] + } + df = pd.DataFrame(df_data).set_index("time") + ds = df.to_xarray().assign_coords(cat_id) + datasets.append(ds) + # merge datasets and send to the network object for processing + combined_ds = xr.concat(datasets, dim="divide_id") \ + .assign_coords(divde_id=cat_ids) + build_props = { + "et_index_name": "divide_id", + "et_var_name": field, + "et_forcing_ds": combined_ds + } + build_et_array(build_props) + self._timings["network_creation_time"] += time.time() - start_time + def _log_times(self): def sec_and_per(title, key: str): seconds = round(self._timings[key], 2) diff --git a/src/troute-config/troute/config/compute_parameters.py b/src/troute-config/troute/config/compute_parameters.py index 96a799ab9..b27649148 100644 --- a/src/troute-config/troute/config/compute_parameters.py +++ b/src/troute-config/troute/config/compute_parameters.py @@ -234,6 +234,10 @@ class ReservoirPersistenceDA(BaseModel): """ If True, Great Lakes will perform data assimilation. """ + reservoir_persistence_usbr: bool = False + """ + If True, USBR Reservoirs will perform data assimilation. + """ crosswalk_usgs_gage_field: str = "usgs_gage_id" """ @@ -315,6 +319,11 @@ class DataAssimilationParameters(BaseModel): Directory path to usace timeslice files. NOTE: required for USACE reservoir DA """ + usbr_timeslices_folder: Optional[DirectoryPath] = None + """ + Directory path to USBR timeslice files. + NOTE: required for USBR reservoir DA + """ canada_timeslices_folder: Optional[DirectoryPath] = None """ Directory path to canadian timeslice files. @@ -376,6 +385,10 @@ class ForcingParameters(BaseModel): Time step size (seconds). Default is 5 mintues """ qlat_input_folder: Optional[DirectoryPath] = None + et_input_folder: Optional[DirectoryPath] = None + """ + Name of the directory where ET forcings are stored for channel loss + """ nts: Optional[int] = 288 """ Number of timesteps. This value, multiplied by 'dt', gives the total simulation time in seconds. @@ -407,6 +420,14 @@ class ForcingParameters(BaseModel): """ Globbing file pattern to identify q_lateral forcing files. """ + et_file_pattern_filter: Optional[str] = None + """ + Globbing file pattern to identify ET forcing files. + """ + et_file_value_col: Optional[str] = None + """ + Name of column containing ET values in ET forcing files. + """ qlat_forcing_sets: Optional[List[QLateralForcingSet]] = None binary_nexus_file_folder: Optional[DirectoryPath] = None @@ -424,6 +445,15 @@ class ForcingParameters(BaseModel): NOTE: Only used if running diffusive routing. """ + ssout: float = 0.0 + """ + Parameter SSOUT specifies the sub-surface loss and is defined as the rate in CMS of sub-surface outflow along the stream channel. + """ + + peadj: float = 1.0 + """ + When ET data are used the daily ET values can be adjusted with a constant adjustment factor (PEADJ). This is calibratable + """ class ComputeParameters(BaseModel): """ diff --git a/src/troute-config/troute/config/network_topology_parameters.py b/src/troute-config/troute/config/network_topology_parameters.py index a2ff78bc5..489f29985 100644 --- a/src/troute-config/troute/config/network_topology_parameters.py +++ b/src/troute-config/troute/config/network_topology_parameters.py @@ -207,6 +207,10 @@ class Columns(BaseModel): """ mainstem ID """ + divide_id: Optional[str] = None + """ + Divide_id mapping flowpath to catchment + """ class WaterbodyParameters(BaseModel): diff --git a/src/troute-network/troute/AbstractNetwork.py b/src/troute-network/troute/AbstractNetwork.py index 53640d151..339a034ac 100644 --- a/src/troute-network/troute/AbstractNetwork.py +++ b/src/troute-network/troute/AbstractNetwork.py @@ -1,8 +1,10 @@ +from __future__ import annotations from abc import ABC, abstractmethod from functools import partial import pandas as pd import numpy as np import multiprocessing +import typing from datetime import datetime, timedelta import os @@ -18,6 +20,9 @@ import troute.nhd_io as nhd_io from .AbstractRouting import MCOnly, MCwithDiffusive, MCwithDiffusiveNatlXSectionNonRefactored, MCwithDiffusiveNatlXSectionRefactored +if typing.TYPE_CHECKING: + from troute.routing.compute import NwmResults + from troute_ewts import MODULE_NAME LOG = logging.getLogger(MODULE_NAME) @@ -31,8 +36,8 @@ class AbstractNetwork(ABC): "_canadian_gage_link_df", "_independent_networks", "_reaches_by_tw", "_flowpath_dict", "_reverse_network", "_q0", "_t0", "_link_lake_crosswalk", - "_usgs_lake_gage_crosswalk", "_usace_lake_gage_crosswalk", "_rfc_lake_gage_crosswalk", - "_qlateral", "_break_segments", "_segment_index", "_coastal_boundary_depth_df", + "_usgs_lake_gage_crosswalk", "_usace_lake_gage_crosswalk", "_usbr_lake_gage_crosswalk", "_rfc_lake_gage_crosswalk", + "_qlateral", "_eloss", "_use_et_channel_loss", "_break_segments", "_segment_index", "_coastal_boundary_depth_df", "supernetwork_parameters", "waterbody_parameters","data_assimilation_parameters", "restart_parameters", "compute_parameters", "forcing_parameters", "hybrid_parameters", "preprocessing_parameters", "output_parameters", @@ -47,6 +52,8 @@ def __init__(self, from_files=True, value_dict={}): self._q0 = None self._t0 = None self._qlateral = None + self._eloss = None + self._use_et_channel_loss = False self._link_gage_df = None #qlat_const = forcing_parameters.get("qlat_const", 0) #FIXME qlat_const @@ -107,6 +114,8 @@ def assemble_forcings(self, run,): qlat_file_value_col = self.forcing_parameters.get("qlat_file_value_col", "q_lateral") qlat_file_gw_bucket_flux_col = self.forcing_parameters.get("qlat_file_gw_bucket_flux_col", "qBucket") qlat_file_terrain_runoff_col = self.forcing_parameters.get("qlat_file_terrain_runoff_col", "qSfcLatRunoff") + et_index_name = self.forcing_parameters.get("et_file_index_col", "divide_id") + et_var_name = self.forcing_parameters.get("et_file_value_col", "ACTUAL_ET") # Using Actual ET from the evapotranspiration module # TODO: find a better way to deal with these defaults and overrides. @@ -118,6 +127,9 @@ def assemble_forcings(self, run,): run["qlat_file_value_col"] = run.get("qlat_file_value_col", qlat_file_value_col) run["qlat_file_gw_bucket_flux_col"] = run.get("qlat_file_gw_bucket_flux_col", qlat_file_gw_bucket_flux_col) run["qlat_file_terrain_runoff_col"] = run.get("qlat_file_terrain_runoff_col", qlat_file_terrain_runoff_col) + run["et_index_name"] = run.get("et_index_name", et_index_name) + run["et_var_name"] = run.get("et_var_name", et_var_name) + #--------------------------------------------------------------------------- # Assemble lateral inflow data @@ -177,7 +189,7 @@ def assemble_coastal_coupling_data(self): else: self._coastal_boundary_depth_df = pd.DataFrame() - def new_q0(self, run_results): + def new_q0(self, run_results: list[NwmResults]): """ Prepare a new q0 dataframe with initial flow and depth to act as a warmstate for the next simulation chunk. @@ -185,7 +197,7 @@ def new_q0(self, run_results): self._q0 = pd.concat( [ pd.DataFrame( - r[1][:, [-3, -3, -1]], index=r[0], columns=["qu0", "qd0", "h0"] + r.flow_velocity_depth[:, [-3, -3, -1]], index=r.ids, columns=["qu0", "qd0", "h0"] ) for r in run_results ], @@ -292,6 +304,21 @@ def qlateral(self): """ return self._qlateral + @property + def eloss(self): + """ + Channel loss as defined by: + ELOSS = (ET * PEADJ) * 0.27778/TIMINT * Aw + """ + return self._eloss + + @property + def use_et_channel_loss(self): + """ + A boolean to describe if channel loss is being used + """ + return self._use_et_channel_loss + @property def q0(self): """ @@ -353,6 +380,10 @@ def usgs_lake_gage_crosswalk(self): @property def usace_lake_gage_crosswalk(self): return self._usace_lake_gage_crosswalk + + @property + def usbr_lake_gage_crosswalk(self): + return self._usbr_lake_gage_crosswalk @property def rfc_lake_gage_crosswalk(self): @@ -749,6 +780,7 @@ def build_forcing_sets(self,): stream_output = self.output_parameters.get('stream_output', None) run_sets = forcing_parameters.get("qlat_forcing_sets", None) qlat_input_folder = forcing_parameters.get("qlat_input_folder", None) + et_input_folder = forcing_parameters.get("et_input_folder", None) nts = forcing_parameters.get("nts", None) max_loop_size = forcing_parameters.get("max_loop_size", 12) dt = forcing_parameters.get("dt", None) @@ -761,9 +793,21 @@ def build_forcing_sets(self,): except AssertionError: raise AssertionError("Aborting simulation because the qlat_input_folder:", qlat_input_folder,"does not exist. Please check the the nexus_input_folder variable is correctly entered in the .yaml control file") from None + if et_input_folder is not None: + self._use_et_channel_loss = True + try: + et_input_folder = pathlib.Path(et_input_folder) + assert et_input_folder.is_dir() == True + except TypeError: + raise TypeError("Aborting simulation because no et_input_folder is specified in the forcing_parameters section of the .yaml control file.") from None + except AssertionError: + raise AssertionError("Aborting simulation because the et_input_folder:", et_input_folder,"does not exist. Please check the the nexus_input_folder variable is correctly entered in the .yaml control file") from None + forcing_glob_filter = forcing_parameters["qlat_file_pattern_filter"] binary_folder = forcing_parameters.get('binary_nexus_file_folder', None) + et_glob_filter = forcing_parameters["et_file_pattern_filter"] + if forcing_glob_filter=="nex-*" and binary_folder: print("Reformating qlat nexus files as hourly binary files...") qlat_files = qlat_input_folder.glob(forcing_glob_filter) @@ -919,6 +963,20 @@ def build_forcing_sets(self,): k += max_loop_size j += 1 + if self._use_et_channel_loss: + if et_glob_filter=="cat-*": # will be called if using NGEN catchment files (cat-.csv) + print("Reformating ET catchment files into xr dataset") + et_files = et_input_folder.glob(et_glob_filter) + + et_ds = cat_files_to_binary(et_files) + forcing_parameters["et_input_folder"] = et_input_folder + forcing_parameters["et_file_pattern_filter"] = et_glob_filter + + for i in range(len(run_sets)): + run_sets[i]["et_forcing_ds"] = et_ds + elif et_glob_filter is not None: + raise NotImplementedError("ET reads are only implemented for catchment files at this time with a `cat-*` filter") + return run_sets def filter_diffusive_nexus_pts(self,): @@ -995,6 +1053,27 @@ def nex_files_to_binary(nexus_files, binary_folder): return nexus_input_folder, forcing_glob_filter +def cat_files_to_binary(cat_files): + """Converts catchment .csv files into a .nc binary""" + datasets = [] + divide_ids = [] + + for file in list(cat_files): + filename = os.path.basename(file) + divide_id = int(filename.split("-")[1].split(".")[0]) # Gets the ID from the catchment file + df = pd.read_csv(file) + df = df.rename(columns={"Time": "time"}) + ds = df.set_index("time").to_xarray() + ds = ds.assign_coords(divide_id=divide_id) + datasets.append(ds) + divide_ids.append(divide_id) + combined_ds = xr.concat(datasets, dim='divide_id') + + # Assign the divide_ids as coordinates for the catchment dimension + combined_ds = combined_ds.assign_coords(divide_id=divide_ids) + + return combined_ds + def get_id_from_filename(file_name): id = os.path.splitext(file_name)[0].split('-')[1].split('_')[0] return int(id) diff --git a/src/troute-network/troute/DataAssimilation.py b/src/troute-network/troute/DataAssimilation.py index 1355a486d..9072cf7b5 100644 --- a/src/troute-network/troute/DataAssimilation.py +++ b/src/troute-network/troute/DataAssimilation.py @@ -1,7 +1,9 @@ +from __future__ import annotations import troute.nhd_io as nhd_io import pandas as pd import numpy as np import pathlib +import typing import xarray as xr from datetime import datetime, timedelta from abc import ABC @@ -18,6 +20,9 @@ from troute.network import bmi_array2df as a2df +if typing.TYPE_CHECKING: + from troute.routing.compute import NwmResults + # set legacy run flag: option to pass data frames through BMI formalism # not to be used in regular BMI runs any longer, only for debugging legacy_bmi_df = False @@ -33,9 +38,10 @@ class AbstractDA(ABC): combined into a single DataAssimilation object without getting a 'multiple-inheritance' error. """ - __slots__ = ["_usgs_df", "_last_obs_df", "_da_parameter_dict", + __slots__ = ["_usgs_df", "_usbr_df", "_last_obs_df", "_da_parameter_dict", "_reservoir_usgs_df", "_reservoir_usgs_param_df", "_reservoir_usace_df", "_reservoir_usace_param_df", + "_reservoir_usbr_df", "_reservoir_usbr_param_df", "_reservoir_rfc_df", "_reservoir_rfc_synthetic", "_reservoir_rfc_param_df", "_great_lakes_df", "_great_lakes_param_df", "_dateNull", @@ -98,6 +104,7 @@ def __init__(self, network, from_files, value_dict, da_run=[]): self._last_obs_df = pd.DataFrame() self._usgs_df = pd.DataFrame() + self._usbr_df = pd.DataFrame() self._canada_df = pd.DataFrame() self._canada_is_created = False usgs_df = pd.DataFrame() @@ -220,7 +227,7 @@ def __init__(self, network, from_files, value_dict, da_run=[]): self._canada_is_created = True LOG.debug("NudgingDA class is completed in %s seconds." % (time.time() - main_start_time)) - def update_after_compute(self, run_results, time_increment): + def update_after_compute(self, run_results: list[NwmResults], time_increment): ''' Function to update data assimilation object after running routing module. @@ -297,9 +304,11 @@ def __init__(self, network, from_files, value_dict, da_run=[]): # check if user explictly requests USGS and/or USACE reservoir DA usgs_persistence = False usace_persistence = False + usbr_persistence = False if reservoir_da_parameters: usgs_persistence = reservoir_da_parameters.get('reservoir_persistence_usgs', False) usace_persistence = reservoir_da_parameters.get('reservoir_persistence_usace', False) + usbr_persistence = reservoir_da_parameters.get('reservoir_persistence_usbr', False) #-------------------------------------------------------------------------------- # Assemble Reservoir dataframes @@ -308,6 +317,8 @@ def __init__(self, network, from_files, value_dict, da_run=[]): reservoir_usgs_param_df = pd.DataFrame() reservoir_usace_df = pd.DataFrame() reservoir_usace_param_df = pd.DataFrame() + reservoir_usbr_df = pd.DataFrame() + reservoir_usbr_param_df = pd.DataFrame() if not from_files: @@ -437,6 +448,69 @@ def __init__(self, network, from_files, value_dict, da_run=[]): reservoir_usace_param_df['persistence_index'] = 0 else: reservoir_usace_param_df = pd.DataFrame() + + if usbr_persistence: + + if (legacy_bmi_df): + + # THIS LINE WAS REPLACED BY THE BMI TRANSPORT STUFF + reservoir_usbr_df = value_dict['reservoir_usbr_df'] + + else: + + usbr_reservoir_Array = value_dict['usbr_reservoir_Array'] + if len(usbr_reservoir_Array) >0: + + dateNull = value_dict['dateNull'] + + datesSecondsArray_reservoir_usbr = value_dict['datesSecondsArray_reservoir_usbr'] + nDates_reservoir_usbr = value_dict['nDates_reservoir_usbr'] + stationArray_reservoir_usbr = value_dict['stationArray_reservoir_usbr'] + stationStringLengthArray_reservoir_usbr = value_dict['stationStringLengthArray_reservoir_usbr'] + nStations_reservoir_usbr = value_dict['nStations_reservoir_usbr'] + + # Unflatten the arrays + df_raw_reservoirUsbr = a2df._unflatten_array(\ + usbr_reservoir_Array,\ + nDates_reservoir_usbr,\ + nStations_reservoir_usbr) + + # Decode time/date axis + timeAxisName = 'time' + freqString = '15T' + df_withDates_reservoirUsbr = a2df._time_retrieve_from_arrays(\ + df_raw_reservoirUsbr, dateNull, \ + datesSecondsArray_reservoir_usbr, \ + timeAxisName, freqString) + + # Decode station ID axis + stationAxisName = 'stationId' + reservoir_usbr_df = a2df._stations_retrieve_from_arrays\ + (df_withDates_reservoirUsbr, stationArray_reservoir_usbr, \ + stationStringLengthArray_reservoir_usbr, stationAxisName) + + reservoir_usbr_df = ( + network.usbr_lake_gage_crosswalk. + reset_index(). + set_index('usbr_gage_id'). + join(reservoir_usgs_df). + set_index('usbr_lake_id') + ) + + self._usbr_df = _reindex_link_to_lake_id(self._usbr_df, network.link_lake_crosswalk) + + # create reservoir persistence DA initial parameters dataframe + if not reservoir_usbr_df.empty: + reservoir_usbr_param_df = pd.DataFrame( + data = 0, + index = reservoir_usbr_df.index , + columns = ['update_time'] + ) + reservoir_usbr_param_df['prev_persisted_outflow'] = np.nan + reservoir_usbr_param_df['persistence_update_time'] = 0 + reservoir_usbr_param_df['persistence_index'] = 0 + else: + reservoir_usbr_param_df = pd.DataFrame() else: @@ -532,11 +606,89 @@ def __init__(self, network, from_files, value_dict, da_run=[]): else: reservoir_usace_df = pd.DataFrame() reservoir_usace_param_df = pd.DataFrame() + + if usbr_persistence: + # if usbr_df is already created, make reservoir_usbr_df from that rather than reading in data again + if not self._usbr_df.empty: + + gage_lake_df = ( + network.usbr_lake_gage_crosswalk + .reset_index() + .set_index(['usbr_gage_id']) # <- TODO use input parameter for this + ) + + # build dataframe that crosswalks gageIDs to segmentIDs + gage_link_df = ( + network.link_gage_df['gages']. + reset_index(). + set_index(['gages']) + ) + + # build dataframe that crosswalks segmentIDs to lakeIDs + link_lake_df = ( + gage_lake_df. + join(gage_link_df, how = 'inner'). + reset_index().set_index('link'). + drop(['index'], axis = 1) + ) + + # resample `usbr_df` to 15 minute intervals + usbr_df_15min = ( + self._usbr_df. + transpose(). + resample('15min').asfreq(). + transpose() + ) + + # subset and re-index `usbr_df`, using the segID <> lakeID crosswalk + reservoir_usbr_df = ( + usbr_df_15min.join(link_lake_df, how = 'inner'). + reset_index(drop=True). + set_index('usbr_lake_id') + ) + + # replace link ids with lake ids, for gages at waterbody outlets, + # otherwise, gage data will not be assimilated at waterbody outlet + # segments. + if network.link_lake_crosswalk: + self._usbr_df = _reindex_link_to_lake_id(self._usbr_df, network.link_lake_crosswalk) + + # create reservoir hybrid DA initial parameters dataframe + if not reservoir_usbr_df.empty: + reservoir_usbr_param_df = pd.DataFrame( + data = 0, + index = reservoir_usbr_df.index , + columns = ['update_time'] + ) + reservoir_usbr_param_df['prev_persisted_outflow'] = np.nan + reservoir_usbr_param_df['persistence_update_time'] = 0 + reservoir_usbr_param_df['persistence_index'] = 0 + else: + reservoir_usbr_param_df = pd.DataFrame() + + else: + ( + reservoir_usbr_df, + reservoir_usbr_param_df + ) = _create_reservoir_df( + data_assimilation_parameters, + reservoir_da_parameters, + streamflow_da_parameters, + run_parameters, + network, + da_run, + lake_gage_crosswalk = network.usbr_lake_gage_crosswalk, + res_source = 'usbr') + else: + reservoir_usbr_df = pd.DataFrame() + reservoir_usbr_param_df = pd.DataFrame() self._reservoir_usgs_df = reservoir_usgs_df self._reservoir_usgs_param_df = reservoir_usgs_param_df self._reservoir_usace_df = reservoir_usace_df self._reservoir_usace_param_df = reservoir_usace_param_df + self._reservoir_usbr_df = reservoir_usbr_df + self._reservoir_usbr_param_df = reservoir_usbr_param_df # Trim the time-extent of the streamflow_da usgs_df # what happens if there are timeslice files missing on the front-end? @@ -546,7 +698,7 @@ def __init__(self, network, from_files, value_dict, da_run=[]): self._usgs_df = self._usgs_df.loc[:,network.t0:] LOG.debug("PersistenceDA class is completed in %s seconds." % (time.time() - PersistenceDA_start_time)) - def update_after_compute(self, run_results,): + def update_after_compute(self, run_results: list[NwmResults]): ''' Function to update data assimilation object after running routing module. @@ -570,9 +722,10 @@ def update_after_compute(self, run_results,): - data_assimilation (Object): Object containing all data assimilation information - reservoir_usgs_param_df (DataFrame): USGS reservoir DA parameters - reservoir_usace_param_df (DataFrame): USACE reservoir DA parameters + - reservoir_usbr_param_df (DataFrame): USBR reservoir DA parameters ''' # get reservoir DA initial parameters for next loop itteration - self._reservoir_usgs_param_df, self._reservoir_usace_param_df = _set_persistence_reservoir_da_params(run_results) + self._reservoir_usgs_param_df, self._reservoir_usace_param_df, self._reservoir_usbr_param_df = _set_persistence_reservoir_da_params(run_results) def update_for_next_loop(self, network, da_run,): ''' @@ -750,7 +903,7 @@ def __init__(self, network, from_files, value_dict, da_run): LOG.debug("great_lake class is completed in %s seconds." % (time.time() - great_lake_start_time)) - def update_after_compute(self, run_results, time_increment): + def update_after_compute(self, run_results: list[NwmResults], time_increment): ''' Function to update data assimilation object after running routing module. @@ -776,13 +929,13 @@ def update_after_compute(self, run_results, time_increment): # get reservoir DA initial parameters for next loop iteration great_lakes_param_df = pd.DataFrame() tmp_list = [] - for r in run_results: + for r in run_results: # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx - if len(r[9][0]) > 0: - tmp_df = pd.DataFrame(data = r[9][0], columns = ['lake_id']) - tmp_df['previous_assimilated_outflows'] = r[9][1] - tmp_df['previous_assimilated_time'] = r[9][2] - tmp_df['update_time'] = r[9][3] + if len(r.great_lakes[0]) > 0: + tmp_df = pd.DataFrame(data = r.great_lakes[0], columns = ['lake_id']) + tmp_df['previous_assimilated_outflows'] = r.great_lakes[1] + tmp_df['previous_assimilated_time'] = r.great_lakes[2] + tmp_df['update_time'] = r.great_lakes[3] tmp_list.append(tmp_df) if tmp_list: @@ -938,7 +1091,7 @@ def __init__(self, network, from_files, value_dict): self._reservoir_rfc_param_df = pd.DataFrame() LOG.debug("RFCDA class is completed in %s seconds." % (time.time() - RFCDA_start_time)) - def update_after_compute(self, run_results): + def update_after_compute(self, run_results: list[NwmResults]): ''' Function to update data assimilation object after running routing module. @@ -993,7 +1146,7 @@ def __init__(self, network, data_assimilation_parameters, run_parameters, waterb RFCDA.__init__(self, network, from_files, value_dict) great_lake.__init__(self, network, from_files, value_dict, da_run) - def update_after_compute(self, run_results, time_increment): + def update_after_compute(self, run_results: list[NwmResults], time_increment): ''' ''' @@ -1023,6 +1176,10 @@ def lastobs_df(self): @property def usgs_df(self): return self._usgs_df + + @property + def usbr_df(self): + return self._usbr_df @property def reservoir_usgs_df(self): @@ -1040,6 +1197,14 @@ def reservoir_usace_df(self): def reservoir_usace_param_df(self): return self._reservoir_usace_param_df + @property + def reservoir_usbr_df(self): + return self._reservoir_usbr_df + + @property + def reservoir_usbr_param_df(self): + return self._reservoir_usbr_param_df + @property def reservoir_rfc_df(self): return self._reservoir_rfc_df @@ -1252,7 +1417,7 @@ def _create_canada_df(data_assimilation_parameters, streamflow_da_parameters, ru def _create_reservoir_df(data_assimilation_parameters, reservoir_da_parameters, streamflow_da_parameters, run_parameters, network, da_run, lake_gage_crosswalk, res_source): ''' - Function for reading USGS/USACE timeslice files and creating a dataframe + Function for reading USGS/USACE/USBR timeslice files and creating a dataframe of reservoir observations and initial parameters. These dataframes are used for reservoir DA. @@ -1265,15 +1430,15 @@ def _create_reservoir_df(data_assimilation_parameters, reservoir_da_parameters, - network (Object): network object created from abstract class - da_run (list): list of data assimilation files separated by for loop chunks - - lake_gage_crosswalk (dict): usgs/usace gage ids and corresponding segment ids at + - lake_gage_crosswalk (dict): usgs/usace/usbr gage ids and corresponding segment ids at which they are located - - res_source (str): either 'usgs' or 'usace', specifiying which type of + - res_source (str): either 'usgs', 'usace', or 'usbr', specifiying which type of reservoir dataframe to create (must match lake_gage_crosswalk Returns: -------- - - reservoir_usgs/usace_df (DataFrame): USGS/USACE reservoir observations - - reservoir_usgs/usace_param_df (DataFrame): USGS/USACE reservoir hybrid DA initial parameters + - reservoir_usgs/usace/usbr_df (DataFrame): USGS/USACE reservoir observations + - reservoir_usgs/usace/usbr_param_df (DataFrame): USGS/USACE reservoir hybrid DA initial parameters ''' res_timeslices_folder = data_assimilation_parameters.get(res_source + "_timeslices_folder",None) crosswalk_file = reservoir_da_parameters.get("gage_lakeID_crosswalk_file", None) @@ -1320,7 +1485,7 @@ def _create_reservoir_df(data_assimilation_parameters, reservoir_da_parameters, LOG.debug(f"Reading {res_source} timeslice files is completed in %s seconds." % (time.time() - reservoir_df_start_time)) return reservoir_df, reservoir_param_df -def _set_persistence_reservoir_da_params(run_results): +def _set_persistence_reservoir_da_params(run_results: list[NwmResults]): ''' Update persistence reservoir DA parameters for subsequent loops Arguments: @@ -1354,26 +1519,40 @@ def _set_persistence_reservoir_da_params(run_results): 'persistence_update_time', 'persistence_index' ] ) + reservoir_usbr_param_df = pd.DataFrame(data = [], + index = [], + columns = [ + 'update_time', 'prev_persisted_outflow', + 'persistence_update_time', 'persistence_index' + ] + ) - for r in run_results: + for r in run_results: # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx - if len(r[4][0]) > 0: - tmp_usgs = pd.DataFrame(data = r[4][1], index = r[4][0], columns = ['update_time']) - tmp_usgs['prev_persisted_outflow'] = r[4][2] - tmp_usgs['persistence_update_time'] = r[4][4] - tmp_usgs['persistence_index'] = r[4][3] + if len(r.usgs[0]) > 0: + tmp_usgs = pd.DataFrame(data = r.usgs[1], index = r.usgs[0], columns = ['update_time']) + tmp_usgs['prev_persisted_outflow'] = r.usgs[2] + tmp_usgs['persistence_update_time'] = r.usgs[4] + tmp_usgs['persistence_index'] = r.usgs[3] reservoir_usgs_param_df = pd.concat([reservoir_usgs_param_df, tmp_usgs]) - if len(r[5][0]) > 0: - tmp_usace = pd.DataFrame(data = r[5][1], index = r[5][0], columns = ['update_time']) - tmp_usace['prev_persisted_outflow'] = r[5][2] - tmp_usace['persistence_update_time'] = r[5][4] - tmp_usace['persistence_index'] = r[5][3] + if len(r.usace[0]) > 0: + tmp_usace = pd.DataFrame(data = r.usace[1], index = r.usace[0], columns = ['update_time']) + tmp_usace['prev_persisted_outflow'] = r.usace[2] + tmp_usace['persistence_update_time'] = r.usace[4] + tmp_usace['persistence_index'] = r.usace[3] reservoir_usace_param_df = pd.concat([reservoir_usace_param_df, tmp_usace]) - return reservoir_usgs_param_df, reservoir_usace_param_df + if len(r.usbr[0]) > 0: + tmp_usbr = pd.DataFrame(data = r.usbr[1], index = r.usbr[0], columns = ['update_time']) + tmp_usbr['prev_persisted_outflow'] = r.usbr[2] + tmp_usbr['persistence_update_time'] = r.usbr[4] + tmp_usbr['persistence_index'] = r.usbr[3] + reservoir_usbr_param_df = pd.concat([reservoir_usbr_param_df, tmp_usbr]) + + return reservoir_usgs_param_df, reservoir_usace_param_df, reservoir_usbr_param_df -def _set_rfc_reservoir_da_params(reservoir_rfc_param_df, run_results): +def _set_rfc_reservoir_da_params(reservoir_rfc_param_df, run_results: list[NwmResults]): ''' Update RFC reservoir DA parameters for subsequent loops Arguments: @@ -1392,11 +1571,11 @@ def _set_rfc_reservoir_da_params(reservoir_rfc_param_df, run_results): -------- - reservoir_rfc_param_df (DataFrame): RFC reservoir DA parameters (updated) ''' - for r in run_results: - if len(r[7][0]) > 0: - rfc_idx = r[7][0] - reservoir_rfc_param_df.loc[rfc_idx, 'update_time'] = r[7][1] - reservoir_rfc_param_df.loc[rfc_idx, 'timeseries_idx'] = r[7][2] + for r in run_results: # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx + if len(r.rfc[0]) > 0: + rfc_idx = r.rfc[0] + reservoir_rfc_param_df.loc[rfc_idx, 'update_time'] = r.rfc[1] + reservoir_rfc_param_df.loc[rfc_idx, 'timeseries_idx'] = r.rfc[2] return reservoir_rfc_param_df @@ -1505,7 +1684,7 @@ def build_lastobs_df( LOG.debug(f"Building last observation dataframe completed in %s seconds." % (time.time() - build_lastobs_start_time)) return lastobs_df -def new_lastobs(run_results, time_increment): +def new_lastobs(run_results: list[NwmResults], time_increment): """ Creates new "lastobs" dataframe for the next simulation chunk. @@ -1540,8 +1719,8 @@ def new_lastobs(run_results, time_increment): [ pd.DataFrame( # TODO: Add time_increment (or subtract?) from time_since_lastobs - np.array([rr[3][1],rr[3][2]]).T, - index=rr[3][0], + np.array([rr.last_obs[1],rr.last_obs[2]]).T, + index=rr.last_obs[0], columns=["time_since_lastobs", "lastobs_discharge"] ) for rr in run_results diff --git a/src/troute-network/troute/HYFeaturesNetwork.py b/src/troute-network/troute/HYFeaturesNetwork.py index e94cd47e5..a497aa35a 100644 --- a/src/troute-network/troute/HYFeaturesNetwork.py +++ b/src/troute-network/troute/HYFeaturesNetwork.py @@ -61,11 +61,10 @@ def read_geopkg(file_path, compute_parameters, waterbody_parameters, cpu_pool): if any( [ data_assimilation_parameters.get("streamflow_da", {}).get("streamflow_nudging", False), - data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_persistence_usgs", False), - data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_persistence_usace", False), - data_assimilation_parameters.get("reservoir_da", {}) - .get("reservoir_rfc_da", {}) - .get("reservoir_rfc_forecasts", False), + data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_persistence_da", False).get("reservoir_persistence_usgs", False), + data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_persistence_da", False).get("reservoir_persistence_usace", False), + data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_persistence_da", False).get("reservoir_persistence_usbr", False), + data_assimilation_parameters.get("reservoir_da", {}).get("reservoir_rfc_da", {}).get("reservoir_rfc_forecasts", False), ] ): layers_to_read.append("network") @@ -120,7 +119,7 @@ def read_layer(layer_name): # add an "id" column to lakes, by merging with hydrolocations based on "hl_link" (i.e, lake_id in lakes) # also, add hl_uri to nexus, by merging with hydrolocations based on nex_id (i.e, id in nexus) - if "hydrolocations" in table_dict: + if "hydrolocations" in table_dict and not table_dict["hydrolocations"].empty: hydro = table_dict["hydrolocations"] # Filter out non-integer hl_link values and convert to integer (assuming valid lake_id values are integers) @@ -448,6 +447,11 @@ def preprocess_network(self, flowpaths, nexus): # Drop 'gages' column if it is present if "gages" in self.dataframe: self._dataframe = self.dataframe.drop("gages", axis=1) + + # ensure `cat-` is removed from any divide_ids + if "divide_id" in self.dataframe.columns: + self._dataframe["divide_id"] = self._dataframe['divide_id'].str.split('-').str[1].values.astype(np.int32) + # numeric code used to indicate network terminal segments terminal_code = self.supernetwork_parameters.get("terminal_code", 0) @@ -631,6 +635,9 @@ def preprocess_waterbodies(self, lakes, nexus): self.data_assimilation_parameters["reservoir_da"]["reservoir_persistence_da"][ "reservoir_persistence_usace" ] = False + self.data_assimilation_parameters["reservoir_da"]["reservoir_persistence_da"][ + "reservoir_persistence_usbr" + ] = False self.data_assimilation_parameters["reservoir_da"]["reservoir_persistence_da"][ "reservoir_persistence_canada" ] = False @@ -658,11 +665,11 @@ def preprocess_data_assimilation(self, network): # split the hl_uri column into type and value gages_df[["type", "value"]] = gages_df.hl_uri.str.split("-", expand=True, n=1) # filter for 'Gages' only - gages_df = gages_df[gages_df["type"].isin(["Gages", "NID"])] + gages_df = gages_df[gages_df["type"].isin(["gages", "nid", "usbr"])] # Some IDs have multiple gages associated with them. This will expand the dataframe so # there is a unique row per gage ID. Also adds lake ids to the dataframe for creating # lake-gage crosswalk dataframes. - gages_df = gages_df[["id", "value", "hydroseq"]] + gages_df = gages_df[["id", "value", "hydroseq", "type"]] gages_df["value"] = gages_df.value.str.split(" ") gages_df = ( gages_df.explode(column="value") @@ -691,13 +698,13 @@ def preprocess_data_assimilation(self, network): self._canadian_gage_link_df = pd.DataFrame(columns=["gages", "link"]).set_index("link") # Find furthest downstream gage and create our lake_gage_df to make crosswalk dataframes. - lake_gage_hydroseq_df = gages_df[~gages_df["lake_id"].isnull()][["lake_id", "value", "hydroseq"]].rename( + lake_gage_hydroseq_df = gages_df[~gages_df["lake_id"].isnull()][["lake_id", "value", "hydroseq", "type"]].rename( columns={"value": "gages"} ) lake_gage_hydroseq_df["lake_id"] = lake_gage_hydroseq_df["lake_id"].astype(int) - lake_gage_df = lake_gage_hydroseq_df[["lake_id", "gages"]].drop_duplicates() + lake_gage_df = lake_gage_hydroseq_df[["lake_id", "gages", "type"]].drop_duplicates() lake_gage_hydroseq_df = ( - lake_gage_hydroseq_df.groupby(["lake_id", "gages"]).max("hydroseq").reset_index().set_index("lake_id") + lake_gage_hydroseq_df.groupby(["lake_id", "gages", "type"]).max("hydroseq").reset_index().set_index("lake_id") ) # FIXME: temporary solution, handles USGS and USACE reservoirs. Need to update for @@ -707,6 +714,7 @@ def preprocess_data_assimilation(self, network): usgs_ind = lake_gage_df.gages.str.isnumeric() self._usgs_lake_gage_crosswalk = ( lake_gage_df.loc[usgs_ind] + .drop("type", axis=1) # dropping type to ensure no dups when merging .rename(columns={"lake_id": "usgs_lake_id", "gages": "usgs_gage_id"}) .set_index("usgs_lake_id") .merge( @@ -721,6 +729,7 @@ def preprocess_data_assimilation(self, network): self._usace_lake_gage_crosswalk = ( lake_gage_df.loc[~usgs_ind] + .drop("type", axis=1) # dropping type to ensure no dups when merging .rename(columns={"lake_id": "usace_lake_id", "gages": "usace_gage_id"}) .set_index("usace_lake_id") .merge( @@ -733,6 +742,22 @@ def preprocess_data_assimilation(self, network): .drop("hydroseq", axis=1) ) + # Using the USBR type to set the crosswalk + self._usbr_lake_gage_crosswalk = ( + lake_gage_df[lake_gage_df["type"] == "usbr"] + .drop("type", axis=1) # dropping type to ensure no dups when merging + .rename(columns={"lake_id": "usbr_lake_id", "gages": "usbr_gage_id"}) + .set_index("usbr_lake_id") + .merge( + lake_gage_hydroseq_df.rename_axis("usbr_lake_id").rename(columns={"gages": "usbr_gage_id"}), + on=["usbr_lake_id", "usbr_gage_id"], + ) + .sort_values(["usbr_gage_id", "hydroseq"]) + .groupby("usbr_lake_id") + .last() + .drop("hydroseq", axis=1) + ) + # Set waterbody types if DA is turned on: usgs_da = ( self.data_assimilation_parameters.get("reservoir_da", {}) @@ -744,6 +769,11 @@ def preprocess_data_assimilation(self, network): .get("reservoir_persistence_da", {}) .get("reservoir_persistence_usace", False) ) + usbr_da = ( + self.data_assimilation_parameters.get("reservoir_da", {}) + .get("reservoir_persistence_da", {}) + .get("reservoir_persistence_usbr", False) + ) rfc_da = ( self.data_assimilation_parameters.get("reservoir_da", {}) .get("reservoir_rfc_da", {}) @@ -754,6 +784,8 @@ def preprocess_data_assimilation(self, network): # gages in timeslice files), so setting type 2 reservoirs second should overwrite type 3 # designations # FIXME: Related to FIXME above, but we should re-think how to handle waterbody_types... + if usbr_da: + self._waterbody_types_df.loc[self._usace_lake_gage_crosswalk.index, "reservoir_type"] = 7 if usace_da: self._waterbody_types_df.loc[self._usace_lake_gage_crosswalk.index, "reservoir_type"] = 3 if usgs_da: @@ -773,6 +805,7 @@ def preprocess_data_assimilation(self, network): self._gages = {} self._usgs_lake_gage_crosswalk = pd.DataFrame() self._usace_lake_gage_crosswalk = pd.DataFrame() + self._usbr_lake_gage_crosswalk = pd.DataFrame() self._rfc_lake_gage_crosswalk = pd.DataFrame() def build_qlateral_array( @@ -893,6 +926,47 @@ def build_qlateral_array( self._qlateral = qlats_df + def build_et_array( + self, + run, + ): + col_idx = run.get("et_index_name", "divide_id") + var_idx = run.get("et_var_name", "ACTUAL_ET") + try: + ds = run["et_forcing_ds"] + except KeyError as e: + raise KeyError("Cannot find et_forcing_ds in runs") from e + ds_AET = ds[var_idx] + + # mapping catchments to flowpath IDs + mapping_dict = dict(zip( + self._dataframe['divide_id'].values, + self._dataframe.index.values + )) + keys = np.array([mapping_dict[key] for key in ds_AET[col_idx].values]) + + time_strings = pd.to_datetime(ds_AET.time.values).strftime('%Y%m%d%H%M') + aet_df = pd.DataFrame( + data=ds_AET.values, + index=keys, + columns=time_strings + ) + + aet_df.index.name = 'key' + ordered_aet_df = aet_df.reindex(self._dataframe.index, fill_value=0) # ordering based on the existing + + # Convert ET into ELOSS + try: + A_w = self._dataframe["tw"] * self._dataframe["dx"] + _E = ordered_aet_df * self.forcing_parameters["peadj"] + TIMINT = 1 # Hardcoding for hourly + # _E is in mm/hr. Thus, MM/HR × (1/1000) × (1/3600) -> m/s + ELOSS_cms = (_E / 1000 / 3600 / TIMINT).mul(A_w.values, axis=0) + ELOSS_cfs = ELOSS_cms * 35.3147 # since NGEN runs in cfs, converting from cms to cfs. Can make a config setting later. + except KeyError as e: + raise KeyError("Cannot find flowpath attributes to map PET. Can you ensure ") from e + self._eloss = ELOSS_cfs + ###################################################################### # FIXME Temporary solution to hydrofabric issues. def bandaid( @@ -986,6 +1060,7 @@ def read_preprocessed_data( self._gages = inputs.get("gages", None) self._usgs_lake_gage_crosswalk = inputs.get("usgs_lake_gage_crosswalk", None) self._usace_lake_gage_crosswalk = inputs.get("usace_lake_gage_crosswalk", None) + self._usbr_lake_gage_crosswalk = inputs.get("usbr_lake_gage_crosswalk", None) self._rfc_lake_gage_crosswalk = inputs.get("rfc_lake_gage_crosswalk", None) diff --git a/src/troute-network/troute/hyfeature_network_utilities.py b/src/troute-network/troute/hyfeature_network_utilities.py index d313b4593..f2b58fdc6 100644 --- a/src/troute-network/troute/hyfeature_network_utilities.py +++ b/src/troute-network/troute/hyfeature_network_utilities.py @@ -47,6 +47,10 @@ def build_da_sets(da_params, run_sets, t0): "usace_timeslices_folder", None ) + usbr_timeslices_folder = da_params.get( + "usbr_timeslices_folder", + None + ) canada_timeslices_folder = da_params.get( "canada_timeslices_folder", None @@ -63,6 +67,7 @@ def build_da_sets(da_params, run_sets, t0): if reservoir_persistence_da: usgs_da = reservoir_persistence_da.get('reservoir_persistence_usgs', False) usace_da = reservoir_persistence_da.get('reservoir_persistence_usace', False) + usbr_da = reservoir_persistence_da.get('reservoir_persistence_usbr', False) GreatLakes_da = reservoir_persistence_da.get('reservoir_persistence_greatLake', False) nudging = False @@ -70,12 +75,12 @@ def build_da_sets(da_params, run_sets, t0): if streamflow_da: nudging = streamflow_da.get('streamflow_nudging', False) - if not usgs_da and not usace_da and not GreatLakes_da and not nudging: + if not usgs_da and not usace_da and not usbr_da and not GreatLakes_da and not nudging: # if all DA capabilities are OFF, return empty dictionary da_sets = [{} for _ in run_sets] # if no user-input timeslice folders, a list of empty dictionaries - elif not usgs_timeslices_folder and not usace_timeslices_folder and not canada_timeslices_folder: + elif not usgs_timeslices_folder and not usace_timeslices_folder and not usbr_timeslices_folder and not canada_timeslices_folder: # if no timeslice folders, return empty dictionary da_sets = [{} for _ in run_sets] @@ -87,6 +92,8 @@ def build_da_sets(da_params, run_sets, t0): usgs_timeslices_folder = pathlib.Path(usgs_timeslices_folder) if usace_timeslices_folder: usace_timeslices_folder = pathlib.Path(usace_timeslices_folder) + if usbr_timeslices_folder: + usbr_timeslices_folder = pathlib.Path(usbr_timeslices_folder) if canada_timeslices_folder: canada_timeslices_folder = pathlib.Path(canada_timeslices_folder) if LakeOntario_outflow: @@ -144,6 +151,20 @@ def build_da_sets(da_params, run_sets, t0): # Add available TimeSlices to da_sets list da_sets[i]['usace_timeslice_files'] = filenames_usace + # identify available USACE TimeSlices in run set i + if usbr_timeslices_folder and usbr_da: + filenames_usbr = (timestamps.strftime('%Y-%m-%d_%H:%M:%S') + + '.15min.usbrTimeSlice.ncdf').to_list() + + # identify available USACE TimeSlices + filenames_usbr = _check_timeslice_exists( + filenames_usbr, + usbr_timeslices_folder + ) + + # Add available TimeSlices to da_sets list + da_sets[i]['usbr_timeslice_files'] = filenames_usbr + # identify available USGS TimeSlices in run set i if canada_timeslices_folder and GreatLakes_da: filenames_canada = (timestamps.strftime('%Y-%m-%d_%H:%M:%S') diff --git a/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reach_structs.h b/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reach_structs.h deleted file mode 100644 index 0e9c3f8bd..000000000 --- a/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reach_structs.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef REACH_STRUCTS_H -#define REACH_STRUCTS_H -/* - C Structures -*/ -#include "musking/mc_reach_structs.h" -#include "reservoirs/levelpool/levelpool_structs.h" -#include "reservoirs/hybrid/hybrid_structs.h" -#include "reservoirs/rfc/rfc_structs.h" - -typedef union { - _MC_Reach mc_reach; - _MC_Levelpool lp; - _MC_Hybrid hybrid; - _MC_RFC rfc; -} _ReachUnion; - -typedef struct { - _ReachUnion reach; - int _num_segments; /* FIXME NOT USED HERE??? */ - long* _upstream_ids; - int _num_upstream_ids; - int type; - long id; -} _Reach; - -#endif //REACH_STRUCTS_H diff --git a/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reservoirs/hybrid/hybrid_structs.h b/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reservoirs/hybrid/hybrid_structs.h deleted file mode 100755 index 5ee99226d..000000000 --- a/src/troute-network/troute/network/reservoirs/build/temp.linux-x86_64-cpython-310/src/troute-network/troute/network/reservoirs/hybrid/hybrid_structs.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef HYBRID_STRUCTS_H -#define HYBRID_STRUCTS_H -/* - C Structures -*/ -#include "../../reach_structs.h" - -#define HYBRID_MAX_PATH_LENGTH 256 -#define HYBRID_MAX_START_DATE_LENGTH 20 - -typedef struct { - int lake_number; - float dam_length, area, max_depth; - float orifice_area, orifice_coefficient, orifice_elevation; - float weir_coefficient, weir_elevation, weir_length; - float initial_fractional_depth, water_elevation; - int reservoir_type; - char* reservoir_parameter_file; - char* start_date; - char* usgs_timeslice_path; - char* usace_timeslice_path; - int observation_lookback_hours; - int observation_update_time_interval_seconds; - - //Handle to operate hybrid res - void* handle; -} _MC_Hybrid; - -#endif //HYBRID_STRUCTS_H diff --git a/src/troute-nwm/src/nwm_routing/__main__.py b/src/troute-nwm/src/nwm_routing/__main__.py index 23fec9846..44ac92a8a 100644 --- a/src/troute-nwm/src/nwm_routing/__main__.py +++ b/src/troute-nwm/src/nwm_routing/__main__.py @@ -1,8 +1,10 @@ +from __future__ import annotations import argparse import time import math import asyncio import logging +import typing from datetime import datetime, timedelta from pathlib import Path import concurrent.futures @@ -23,6 +25,8 @@ ) from .output import nwm_output_generator from troute.routing.compute import compute_nhd_routing_v02, compute_diffusive_routing, compute_log_mc, compute_log_diff +if typing.TYPE_CHECKING: + from troute.routing.compute import NwmResults import troute.nhd_io as nhd_io import troute.nhd_network_utilities_v02 as nnu @@ -221,12 +225,16 @@ def main_v04(argv): network.dataframe, network.q0, network._qlateral, + network._eloss, + forcing_parameters.get("ssout"), data_assimilation.usgs_df, data_assimilation.lastobs_df, data_assimilation.reservoir_usgs_df, data_assimilation.reservoir_usgs_param_df, data_assimilation.reservoir_usace_df, data_assimilation.reservoir_usace_param_df, + data_assimilation.reservoir_usbr_df, + data_assimilation.reservoir_usbr_param_df, data_assimilation.reservoir_rfc_df, data_assimilation.reservoir_rfc_param_df, data_assimilation.great_lakes_df, @@ -1135,12 +1143,16 @@ def nwm_route( param_df, q0, qlats, + eloss_df, + ssout, usgs_df, lastobs_df, reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -1164,7 +1176,7 @@ def nwm_route( logFileName='troute_run_log.txt', flowveldepth_interorder={}, from_files=False, -): +) -> tuple[list[NwmResults], list]: ################### Main Execution Loop across ordered networks start_time = time.time() @@ -1201,6 +1213,8 @@ def nwm_route( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, assume_short_ts, @@ -1228,12 +1242,16 @@ def nwm_route( param_df, q0, qlats, + eloss_df, + ssout, usgs_df, lastobs_df, reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -1675,12 +1693,16 @@ def main_v03(argv): param_df, q0, qlats, + pd.DataFrame(), # Empty Dataframe for ET data ... not supported for NHD flow + 0.0, # SSOUT not supported for nhd routing usgs_df, lastobs_df, reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + pd.DataFrame(), #empty dataframe for USBR data... + pd.DataFrame(), #empty dataframe for USBR param data... pd.DataFrame(), #empty dataframe for RFC data...not needed unless running via BMI pd.DataFrame(), #empty dataframe for RFC param data...not needed unless running via BMI pd.DataFrame(), #empty dataframe for great lakes data... diff --git a/src/troute-nwm/src/nwm_routing/output.py b/src/troute-nwm/src/nwm_routing/output.py index d42ca9c5c..df847ceae 100644 --- a/src/troute-nwm/src/nwm_routing/output.py +++ b/src/troute-nwm/src/nwm_routing/output.py @@ -1,4 +1,6 @@ +from __future__ import annotations import time +import typing import numpy as np import pandas as pd from pathlib import Path @@ -10,6 +12,9 @@ from troute_ewts import MODULE_NAME LOG = logging.getLogger(MODULE_NAME) +if typing.TYPE_CHECKING: + from troute.routing.compute import NwmResults + def _reindex_lake_to_link_id(target_df, crosswalk): ''' Utility function for replacing lake ID index values @@ -116,7 +121,7 @@ def _parquet_output_format_converter(df, start_datetime, dt, configuration, pref def nwm_output_generator( run, - results, + results: list[NwmResults], supernetwork_parameters, output_parameters, parity_parameters, @@ -211,7 +216,7 @@ def nwm_output_generator( ).to_flat_index() flowveldepth = pd.concat( - [pd.DataFrame(r[1], index=r[0], columns=qvd_columns) for r in results], + [pd.DataFrame(r.flow_velocity_depth, index=r.ids, columns=qvd_columns) for r in results], copy=False, ) @@ -223,9 +228,9 @@ def nwm_output_generator( ).to_flat_index() wbdy = pd.concat( - [pd.DataFrame(r[6], index=r[0], columns=i_columns) for r in results], + [pd.DataFrame(r.upstream, index=r.ids, columns=i_columns) for r in results], copy=False, - ) + ) # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx wbdy_id_list = waterbodies_df.index.values.tolist() flow_df = flowveldepth.loc[wbdy_id_list] @@ -265,7 +270,7 @@ def nwm_output_generator( ).to_flat_index() courant = pd.concat( [ - pd.DataFrame(r[2], index=r[0], columns=courant_columns) + pd.DataFrame(r.courant, index=r.ids, columns=courant_columns) for r in results ], copy=False, @@ -287,8 +292,8 @@ def nwm_output_generator( if stream_output_mask: stream_output_mask = Path(stream_output_mask) - nudge = np.concatenate([r[8] for r in results]) - usgs_positions_id = np.concatenate([r[3][0] for r in results]) + nudge = np.concatenate([r.nudge for r in results]) # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx + usgs_positions_id = np.concatenate([r.last_obs[0] for r in results]) nhd_io.write_flowveldepth( Path(stream_output_directory), stream_output_mask, diff --git a/src/troute-rnr/README.md b/src/troute-rnr/README.md index 51a5f3f00..8e1bfe850 100644 --- a/src/troute-rnr/README.md +++ b/src/troute-rnr/README.md @@ -2,12 +2,14 @@ This namespace package is meant to handle replace and route runs. Its purpose is to be run as a docker container within docker compose, or through IaC -# Dependencies: - -### Icefabric -This repo depends on access to the Raytheon Icefabric package. To install, from github, please use the following installation -```sh -uv pip install git+https://github.com/NGWPC/icefabric.git#subdirectory=src/icefabric_tools +to run through the main entrypoint, use: +```py +uv sync +uv run python main.py ``` -if this command does not work, you will need to access the pip wheels, which can be located in the following location: https://github.com/NGWPC/hydrovis/tree/pi_6/Source/RnR/dist +to run through IaC use: +```py +uv sync --extra iac +uv run python main.py --iac +``` diff --git a/src/troute-rnr/main.py b/src/troute-rnr/main.py index 8636de467..4f3c878dd 100644 --- a/src/troute-rnr/main.py +++ b/src/troute-rnr/main.py @@ -1,21 +1,33 @@ +"""The entrypoint to RnR""" + import argparse import json import logging +import os import shutil import socket +import ssl +import sys +from urllib.parse import urlparse +import geopandas as gpd import httpx import pika -from icefabric_tools import rnr +import polars as pl from nwm_routing.__main__ import main_v04 as t_route from pydantic import ValidationError from troute_rnr import format, read +from troute_rnr.gpkg import get_rnr_segment +from troute_rnr.logging import log_function_debug from troute_rnr.settings import Settings from troute_rnr.utils import get -settings = Settings() +log = logging.getLogger(__name__) + +GLOBAL_LOG_LEVEL = logging.INFO +@log_function_debug() def reset_logging(): """T-Route sets the logging level to INFO. This resets to WARNING""" logging.getLogger("httpx").setLevel(logging.WARNING) @@ -23,6 +35,9 @@ def reset_logging(): logging.getLogger("httpcore.connection").setLevel(logging.WARNING) logging.getLogger("httpcore.http11").setLevel(logging.WARNING) + global GLOBAL_LOG_LEVEL + logging.getLogger().setLevel(GLOBAL_LOG_LEVEL) + class MessageCounter: """Helper class to track processed messages""" @@ -35,19 +50,22 @@ def __init__(self, max_messages: int | None): def increment(self): """A counter method""" self.count += 1 - print(f"Processed message {self.count}/{self.max_messages}") + log.info(f"Processed message {self.count}/{self.max_messages}") if self.count >= self.max_messages: - print(f"Reached maximum messages ({self.max_messages}). Stopping consumer...") + log.info(f"Reached maximum messages ({self.max_messages}). Stopping consumer...") if self.channel: self.channel.stop_consuming() +@log_function_debug() def run( ch: pika.channel.Channel, method: pika.spec.Basic.Deliver, properties: pika.spec.BasicProperties, body: bytes, hml_message_counter: MessageCounter | None, + settings: Settings, + layers: dict[str, pl.LazyFrame], ) -> None: """The main function for the T-Route replace and route module @@ -63,9 +81,11 @@ def run( The message content body hml_message_counter: MessageCounter | None the number of forecasts to run for + settings: Settings + the settings of RnR """ hml = json.loads(body.decode()) - print(f"Reading forecast for {hml['rdf']}, issued at {hml['issuance_time']}") + log.info(f"Reading forecast for {hml['rdf']}, issued at {hml['issuance_time']}") sites_response = get(hml["rdf"], headers=settings.headers).json() try: sites = format.format_xml(sites_response["productText"]) @@ -83,23 +103,30 @@ def run( inputs = read.read_rfc_flows(site_data, settings) if inputs is not None: try: - rnr.get_rnr_segment( - settings.catalog, inputs.reach.id, settings.tmp_geopackage - ) # Writes the rnr geopackage to disk - yaml_file_path, tmp_flow_files_path = format.format_config(inputs, settings) + rnr_layers = get_rnr_segment(layers, inputs.reach.id) + for table, layer in rnr_layers.items(): + gpd.GeoDataFrame(layer).to_file( + settings.tmp_geopackage, layer=table, driver="GPKG" + ) # Writes the rnr geopackage to disk + yaml_file_path, tmp_flow_files_path = format.format_config(inputs, settings, layers) except IndexError: - print( + log.error( "Cannot find river segments downstream of the RFC point. RnR not available; skipping" ) continue - print("Configs are built. Running T-Route") + log.info("Configs are built. Running T-Route") try: t_route(["-f", str(yaml_file_path)]) - format.format_output_nc(site_data, inputs, yaml_file_path) + format.format_output_nc(site_data, inputs, yaml_file_path, settings) except IndexError: - print(f"T-Route inflow formatting error for {inputs.lid}. Skipping Routing") - print("Closing tmp files") + log.error(f"T-Route inflow formatting error for {inputs.lid}. Skipping Routing") + except TypeError: + log.error("Error with YAML file when running t-route") + except Exception as e: # noqa: BLE001 + # Catching all T-route exceptions in this line + log.error(f"T-route failed: {e}") + log.info("Closing tmp files") yaml_file_path.unlink() settings.tmp_geopackage.unlink() shutil.rmtree(tmp_flow_files_path) @@ -107,7 +134,7 @@ def run( reset_logging() except KeyError: - print(f"Sites not found. Status: {sites_response['status']}") + log.error(f"Sites not found. Status: {sites_response}") pass finally: # Acknowledging message since all HML files are read @@ -117,7 +144,13 @@ def run( hml_message_counter.increment() -def consume(settings: Settings, hml_message_counter: MessageCounter | None = None) -> None: +@log_function_debug() +def consume( + settings: Settings, + layers: dict[str, pl.LazyFrame], + hml_message_counter: MessageCounter | None = None, + is_iac: bool = False, +) -> None: """ The message consumer interfacing with RabbitMQ @@ -136,35 +169,69 @@ def consume(settings: Settings, hml_message_counter: MessageCounter | None = Non If connection attempt times out """ try: - # Set connection parameters with timeout - connection_params = pika.URLParameters(settings.pika_url) - connection_params.socket_timeout = 10 # 10-second timeout for connection + if is_iac: + import boto3 + + secret_arn = os.getenv("RABBITMQ_SECRET_ARN") + region = os.getenv("AWS_REGION", "us-east-1") + rabbit_mq_endpoint = os.getenv("RABBITMQ_ENDPOINT") - # Attempt connection with timeout - connection = pika.BlockingConnection(connection_params) - channel = connection.channel() + if secret_arn is None: + raise ValueError("Cannot find RABBITMQ_SECRET_ARN") + if rabbit_mq_endpoint is None: + raise ValueError("Cannot find RABBITMQ_ENDPOINT") + + client = boto3.client("secretsmanager", region_name=region) + secret_value = client.get_secret_value(SecretId=secret_arn) + secret = json.loads(secret_value["SecretString"]) + user = secret["username"] + pwd = secret["password"] + creds = pika.PlainCredentials(user, pwd) + url = urlparse(rabbit_mq_endpoint) + context = ssl.create_default_context() + vhost = url.path.strip("/") if url.path.strip("/") else "/" + conn = pika.BlockingConnection( + pika.ConnectionParameters( + host=url.hostname, + port=url.port, + virtual_host=vhost, + credentials=creds, + ssl_options=pika.SSLOptions(context), + heartbeat=30, + blocked_connection_timeout=300, + ) + ) + channel = conn.channel() + else: + # Set connection parameters with timeout + connection_params = pika.URLParameters(settings.pika_url) + connection_params.socket_timeout = 10 # 10-second timeout for connection + + # Attempt connection with timeout + connection = pika.BlockingConnection(connection_params) + channel = connection.channel() channel.queue_declare(queue=settings.flooded_data_queue, durable=True) - print(f" [*] Waiting for messages from Queue on URL: {settings.pika_url}.") - print(" [*] Be sure HML files are populated in the Message Queue") + log.info(f" [*] Waiting for messages from Queue on URL: {settings.pika_url}.") + log.info(" [*] Be sure HML files are populated in the Message Queue") channel.basic_qos(prefetch_count=1) hml_message_counter.channel = channel channel.basic_consume( queue=settings.flooded_data_queue, on_message_callback=lambda ch, method, properties, body: run( - ch, method, properties, body, hml_message_counter + ch, method, properties, body, hml_message_counter, settings, layers ), ) try: channel.start_consuming() except KeyboardInterrupt: - print("\n [*] Stopping consumer due to keyboard interrupt...") + log.error("\n [*] Stopping consumer due to keyboard interrupt...") channel.stop_consuming() - print(f" [*] Processed {hml_message_counter.max_messages} forecasts. Closing connection.") + log.info(f" [*] Processed {hml_message_counter.max_messages} forecasts. Closing connection.") connection.close() except (pika.exceptions.AMQPConnectionError, socket.timeout) as e: - print(f" [!] Failed to connect to RabbitMQ: {e}") - print(" [!] Service is not running - check RabbitMQ connection from Hydrovis") + log.error(f" [!] Failed to connect to RabbitMQ: {e}") + log.error(" [!] Service is not running - check RabbitMQ connection from Hydrovis") if __name__ == "__main__": @@ -172,10 +239,65 @@ def consume(settings: Settings, hml_message_counter: MessageCounter | None = Non parser.add_argument( "--num-hml-files", type=int, help="The number of hml files to be read from the message queue" ) + parser.add_argument("--iac", action="store_true", help="If true this code is to be run as IaC") + parser.add_argument("--debug", action="store_true", help="Enable debug logging") + args = parser.parse_args() + + GLOBAL_LOG_LEVEL = logging.DEBUG if args.debug else logging.INFO + logging.getLogger().setLevel(GLOBAL_LOG_LEVEL) + + logging.basicConfig( + level=GLOBAL_LOG_LEVEL, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + stream=sys.stdout, + force=True, + ) + + log = logging.getLogger(__name__) + if args.num_hml_files is None: - print(" [*] Running T-Route for all messages in the queue") + log.info(" [*] Running T-Route for all messages in the queue") else: - print(f" [*] Running T-Route for {args.num_hml_files} forecasts") + log.info(f" [*] Running T-Route for {args.num_hml_files} forecasts") hml_message_counter = MessageCounter(args.num_hml_files) - consume(Settings(), hml_message_counter=hml_message_counter) + settings = Settings() + if args.iac: + bucket_name = os.getenv("APP_BUCKET_NAME") + troute_output_path = os.getenv("APP_OUTPUT_S3_KEY") + if not troute_output_path: + raise FileNotFoundError("APP_OUTPUT_S3_KEY environment variable not set") + + hydrofabric_path = os.getenv("HYDROFABRIC_S3_KEY") + if not hydrofabric_path: + raise FileNotFoundError("HYDROFABRIC_S3_KEY environment variable not set") + layers = { + "network": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/network.parquet"), + "flowpaths": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/flowpaths.parquet"), + "lakes": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/lakes.parquet"), + "hydrolocations": pl.scan_parquet( + f"s3://{bucket_name}/{hydrofabric_path}/hydrolocations.parquet" + ), + "divides": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/divides.parquet"), + "nexus": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/nexus.parquet"), + "flowpath_attr": pl.scan_parquet( + f"s3://{bucket_name}/{hydrofabric_path}/flowpath-attributes.parquet" + ), + "pois": pl.scan_parquet(f"s3://{bucket_name}/{hydrofabric_path}/pois.parquet"), + } + settings.bucket_name = bucket_name + settings.troute_output_path = troute_output_path + else: + layers = { + "network": pl.scan_parquet(settings.data_dir / "parquet/network.parquet"), + "flowpaths": pl.scan_parquet(settings.data_dir / "parquet/flowpaths.parquet"), + "lakes": pl.scan_parquet(settings.data_dir / "parquet/lakes.parquet"), + "hydrolocations": pl.scan_parquet(settings.data_dir / "parquet/hydrolocations.parquet"), + "divides": pl.scan_parquet(settings.data_dir / "parquet/divides.parquet"), + "nexus": pl.scan_parquet(settings.data_dir / "parquet/nexus.parquet"), + "flowpath_attr": pl.scan_parquet(settings.data_dir / "parquet/flowpath-attributes.parquet"), + "pois": pl.scan_parquet(settings.data_dir / "parquet/pois.parquet"), + } + settings.bucket_name = None + settings.troute_output_path = None + consume(settings, layers, hml_message_counter=hml_message_counter, is_iac=args.iac) diff --git a/src/troute-rnr/post_process.py b/src/troute-rnr/post_process.py index 394e8ee7a..07bb01e68 100644 --- a/src/troute-rnr/post_process.py +++ b/src/troute-rnr/post_process.py @@ -5,7 +5,6 @@ import pandas as pd import xarray as xr -from icefabric_tools import table_to_geopandas from troute_rnr.settings import Settings @@ -70,7 +69,7 @@ def post_process(settings: Settings) -> None: # Reading in the hydrofabric print("Reading the hydrofabric") - flowpaths = table_to_geopandas(settings.catalog.load_table("hydrofabric.flowpaths")) + flowpaths = pd.read_parquet(settings.data_dir / "parquet/flowpaths.parquet") flowpaths = flowpaths.set_index("id") write_file = False @@ -81,7 +80,7 @@ def post_process(settings: Settings) -> None: file_timestamp = extract_timestamp_from_filename(nc_file.name) # Filter files created within the last 24 hours if ( - file_timestamp and twenty_four_hours_ago <= file_timestamp <= current_time + file_timestamp and file_timestamp >= twenty_four_hours_ago ): # Searches for files with timestamps within the past 24 hours ds = xr.open_dataset(nc_file, engine="netcdf4") write_file = True diff --git a/src/troute-rnr/pyproject.toml b/src/troute-rnr/pyproject.toml index 1ff512de0..de5c52843 100644 --- a/src/troute-rnr/pyproject.toml +++ b/src/troute-rnr/pyproject.toml @@ -1,25 +1,28 @@ [project] description = "T-Route replace and route capabilities for water.noaa.gov" -version = "2025.6.0" +version = "2025.9.0" readme = "README.md" requires-python = ">=3.9" name = "troute_rnr" authors = [{ name = "Tadd Bindas", email = "Tadd.Bindas@rtx.com" }] dependencies = [ + "numpy~=1.0", "pydantic~=2.11.9", "pydantic-xml==2.16.0", "httpx==0.27.0", - "geopandas==1.0.1", - "numpy==1.26.4", - "xarray==2024.3.0", - "matplotlib==3.10.0", - "pandas==2.2.0", "pika==1.3.2", "xmltodict==0.12.0", "lxml==5.3.0", "pytest==8.3.2", "pyyaml==6.0.2", "netcdf4==1.7.2", + "polars==1.32.3", +] + +[project.optional-dependencies] +iac = [ + "boto3==1.40.18", + "s3fs==2025.9.0", ] [build-system] diff --git a/src/troute-rnr/src/troute_rnr/__init__.py b/src/troute-rnr/src/troute_rnr/__init__.py index e16b40b0d..076f29b44 100644 --- a/src/troute-rnr/src/troute_rnr/__init__.py +++ b/src/troute-rnr/src/troute_rnr/__init__.py @@ -1,5 +1,18 @@ from troute_rnr import format, read, write +from troute_rnr.gpkg import find_origin, get_rnr_segment, to_geopandas +from troute_rnr.logging import log_function_debug from troute_rnr.schemas import nwps, weather from troute_rnr.utils import get -__all__ = ["get", "format", "read", "write", "nwps", "weather"] +__all__ = [ + "get", + "format", + "read", + "write", + "log_function_debug", + "nwps", + "weather", + "get_rnr_segment", + "find_origin", + "to_geopandas", +] diff --git a/src/troute-rnr/src/troute_rnr/format.py b/src/troute-rnr/src/troute_rnr/format.py index ff2191be7..1f690640a 100644 --- a/src/troute-rnr/src/troute_rnr/format.py +++ b/src/troute-rnr/src/troute_rnr/format.py @@ -1,5 +1,6 @@ """Module for handling NWM data processing and NWPS integrations.""" +import logging from datetime import datetime from pathlib import Path @@ -7,16 +8,21 @@ import lxml.etree import numpy as np import pandas as pd +import polars as pl import xarray as xr import yaml -from icefabric_tools import find_origin from troute_rnr import write +from troute_rnr.gpkg import find_origin +from troute_rnr.logging import log_function_debug from troute_rnr.schemas.nwps import ProcessedData, SiteData from troute_rnr.schemas.weather import Site from troute_rnr.settings import Settings +log = logging.getLogger(__name__) + +@log_function_debug() def edit_yaml(original_file: Path, params: dict[str, str], restart_file: Path) -> Path: """A function to dynamically edit the T-Route config @@ -38,8 +44,9 @@ def edit_yaml(original_file: Path, params: dict[str, str], restart_file: Path) - with open(original_file) as file: data = yaml.safe_load(file) + params["output_folder"] output_dir = params["output_folder"] / params["lid"] - output_dir.mkdir(exist_ok=True) + output_dir.mkdir(parents=True, exist_ok=True) data["network_topology_parameters"]["supernetwork_parameters"]["geo_file_path"] = str( params["geo_file_path"] @@ -58,6 +65,7 @@ def edit_yaml(original_file: Path, params: dict[str, str], restart_file: Path) - return tmp_yaml +@log_function_debug() def create_initial_start_file(params: dict[str, str], settings: Settings) -> Path: """Creating the initial start/restart files @@ -104,7 +112,10 @@ def create_initial_start_file(params: dict[str, str], settings: Settings) -> Pat return restart_file -def format_config(inputs: ProcessedData, settings: Settings) -> tuple[Path, Path]: +@log_function_debug() +def format_config( + inputs: ProcessedData, settings: Settings, layers: dict[str, pl.LazyFrame] +) -> tuple[Path, Path]: """ Create the configuration required for T-Route. @@ -121,10 +132,9 @@ def format_config(inputs: ProcessedData, settings: Settings) -> tuple[Path, Path The path to the YAML config file and flow files directory """ reach = inputs.reach - network = settings.catalog.load_table("hydrofabric.network") - hy_id = ( - find_origin(network_table=network, identifier=reach.id, id_type="comid")["id"].values[0].split("-")[1] - ) + network = layers["network"] + + hy_id = find_origin(network_table=network, identifier=reach.id).split("-")[1] tmp_flow_files_path = settings.tmp_flow_files_path / inputs.lid tmp_flow_files_path.mkdir(exist_ok=True) write.write_flow_files(hy_id, reach, tmp_flow_files_path) @@ -157,6 +167,7 @@ def format_config(inputs: ProcessedData, settings: Settings) -> tuple[Path, Path return yaml_file_path, tmp_flow_files_path +@log_function_debug() def format_xml(product_text: str) -> list[Site]: """ Format product text from HML into valid XML segments. @@ -188,7 +199,10 @@ def format_xml(product_text: str) -> list[Site]: return sites -def format_output_nc(site_data: SiteData, inputs: ProcessedData, yaml_file_path: Path) -> None: +@log_function_debug() +def format_output_nc( + site_data: SiteData, inputs: ProcessedData, yaml_file_path: Path, settings: Settings +) -> None: """Formats the output .nc file to contain flood/RFC metadata Parameters @@ -233,4 +247,15 @@ def format_output_nc(site_data: SiteData, inputs: ProcessedData, yaml_file_path: ds.attrs["state"] = site_data.state.abbreviation ds.attrs["name"] = site_data.name - ds.to_netcdf(full_output_path) + if settings.bucket_name is None: + ds.to_netcdf(full_output_path) + else: + import boto3 + + ds.to_netcdf(full_output_path) + + s3_client = boto3.client("s3") + + output_s3_key = f"{settings.troute_output_path}/{site_data.lid}/{output_file_name}" + s3_client.upload_file(Filename=str(full_output_path), Bucket=settings.bucket_name, Key=output_s3_key) + log.info(f"Wrote {output_file_name} to s3://{settings.bucket_name}/{output_s3_key}") diff --git a/src/troute-rnr/src/troute_rnr/gpkg.py b/src/troute-rnr/src/troute_rnr/gpkg.py new file mode 100644 index 000000000..efa9b73e8 --- /dev/null +++ b/src/troute-rnr/src/troute_rnr/gpkg.py @@ -0,0 +1,185 @@ +"""A file to hold all replace and route (RnR) geospatial scripts""" + +import logging + +import geopandas as gpd +import pandas as pd +import polars as pl + +from troute_rnr.logging import log_function_debug + +log = logging.getLogger(__name__) + + +@log_function_debug() +def to_geopandas(df: pd.DataFrame, crs: str = "EPSG:5070") -> gpd.GeoDataFrame: + """Converts the geometries in a pandas df to a geopandas dataframe + + Parameters + ---------- + df: pd.DataFrame + The iceberg table you are trying to read from + crs: str, optional + A string representing the CRS to set in the gdf, by default "EPSG:5070" + + Returns + ------- + gpd.DataFrame + The resulting queried row, but in a geodataframe + + Raises + ------ + ValueError + Raised if the table does not have a geometry column + """ + if "geometry" not in df.columns: + raise ValueError("The provided table does not have a geometry column.") + + return gpd.GeoDataFrame(df, geometry=gpd.GeoSeries.from_wkb(df["geometry"]), crs=crs) + + +@log_function_debug() +def get_rnr_segment( + layers: dict[str, pl.LazyFrame], reach_id: str +) -> dict[str, pd.DataFrame | gpd.GeoDataFrame]: + """Returns a geopackage subset from the hydrofabric based on RnR rules + + Parameters + ---------- + catalog : Catalog + The iceberg catalog of the hydrofabric + reach_id : str + The reach_id, or hf_id, from the NWPS API + + Returns + ------- + dict[str, pd.DataFrame | gpd.GeoDataFrame] + a dictionary of dataframes and geodataframes containing HF layers + """ + network = layers["network"] + flowpaths = layers["flowpaths"] + lakes = layers["lakes"] + hydrolocations = layers["hydrolocations"] + divides = layers["divides"] + nexus = layers["nexus"] + flowpath_attr = layers["flowpath_attr"] + pois = layers["pois"] + + origin_row = network.filter(pl.col("hf_id") == reach_id).collect() + + mainstem_features = network.filter( + (pl.col("hf_mainstem") == origin_row["hf_mainstem"].first()) + & (pl.col("hydroseq") <= origin_row["hydroseq"].first()) + ).collect() + segment_flowpaths = flowpaths.filter( + pl.col("divide_id").is_in(mainstem_features["divide_id"].unique().implode()) + ).collect() + joined_df = mainstem_features.join(segment_flowpaths, on="divide_id", how="full") + stream_order = joined_df.filter(pl.col("hf_id") == int(reach_id))["order"].first() + filtered_flowpaths = segment_flowpaths.filter(pl.col("order") == stream_order) + + # Find any lakes contained in the RnR segment + poi_ids = filtered_flowpaths["poi_id"].filter(filtered_flowpaths["poi_id"].is_not_null()).cast(pl.Int64) + filtered_lakes = lakes.filter(pl.col("poi_id").is_in(poi_ids.implode())).collect() + + if filtered_lakes.shape[0] > 0: + # Ensuring we break connectivity at lakes + lake_ids = filtered_lakes["hf_id"].filter(filtered_lakes["hf_id"].is_not_null()) + network_rows = mainstem_features.filter(pl.col("hf_id").is_in(lake_ids.implode())) + upstream_lake = network_rows[ + "hf_hydroseq" + ].max() # since hydroseq decreases as you go downstream, we want the upstream most value + mainstem_features = mainstem_features.filter(pl.col("hf_hydroseq").ge(upstream_lake)) + segment_flowpaths = flowpaths.filter( + pl.col("divide_id").is_in(mainstem_features["divide_id"].unique().implode()) + ).collect() + joined_df = mainstem_features.join(segment_flowpaths, on="divide_id", how="full") + stream_order = joined_df.filter(pl.col("hf_id") == int(reach_id))["order"].first() + filtered_flowpaths = segment_flowpaths.filter(pl.col("order") == stream_order) + + # Find any lakes contained in the RnR segment + poi_ids = ( + filtered_flowpaths["poi_id"].filter(filtered_flowpaths["poi_id"].is_not_null()).cast(pl.Int64) + ) + filtered_lakes = lakes.filter(pl.col("poi_id").is_in(poi_ids.implode())).collect() + + # Convert output to geopandas + filtered_nexus_points = to_geopandas( + nexus.filter(pl.col("id").is_in(filtered_flowpaths["toid"])).collect().to_pandas() + ) + filtered_divides = to_geopandas( + divides.filter(pl.col("divide_id").is_in(filtered_flowpaths["divide_id"])).collect().to_pandas() + ) + filtered_flowpath_attr = ( + flowpath_attr.filter(pl.col("id").is_in(filtered_flowpaths["id"])).collect().to_pandas() + ) + filtered_pois = pois.filter(pl.col("poi_id").is_in(poi_ids)).collect().to_pandas() + filtered_hydrolocations = hydrolocations.filter(pl.col("poi_id").is_in(poi_ids)).collect().to_pandas() + filtered_network = ( + network.filter(pl.col("id").is_in(pl.concat([filtered_flowpaths["toid"], filtered_flowpaths["id"]]))) + .collect() + .to_pandas() + ) + filtered_flowpaths = to_geopandas(filtered_flowpaths.to_pandas()) + + layers = { + "flowpaths": filtered_flowpaths, + "nexus": filtered_nexus_points, + "divides": filtered_divides, + "network": filtered_network, + "pois": filtered_pois, + "flowpath-attributes": filtered_flowpath_attr, + "hydrolocations": filtered_hydrolocations, + } + return layers + + +@log_function_debug() +def find_origin( + network_table: pl.LazyFrame, + identifier: str | float, +) -> pl.DataFrame: + """Find an origin point in the hydrofabric network. + + This function handles the case where multiple records match the identifier. + It follows the R implementation to select a single origin point based on + the minimum hydroseq value. + + Parameters + ---------- + network_table : LazyFrame + The HF network table from the hydrofabric catalog + identifier : str | float + The unique identifier you want to find the origin of + id_type : IdType, optional + The network table column you can query from, by default "hl_uri" + return_all: bool, False + Returns all origin points (for subsetting) + + Returns + ------- + pd.DataFrame + The origin row from the network table + + Raises + ------ + ValueError + The provided identifier is not supported + ValueError + No origin for the point is found + ValueError + Multiple origins for the point are found + """ + # Get all matching records + origin_candidates = ( + network_table.filter(pl.col("hf_id").is_not_null() & (pl.col("hf_id") == identifier)) + .select(["id", "toid", "vpuid", "hydroseq", "poi_id", "hl_uri"]) + .collect() + ) + + if origin_candidates.height == 0: + raise ValueError(f"No origin found for hf_id={identifier}") + + origin = origin_candidates["id"].first() + + return origin diff --git a/src/troute-rnr/src/troute_rnr/logging.py b/src/troute-rnr/src/troute_rnr/logging.py new file mode 100644 index 000000000..e229cd340 --- /dev/null +++ b/src/troute-rnr/src/troute_rnr/logging.py @@ -0,0 +1,92 @@ +import functools +import logging +import time +from typing import Any, Callable, TypeVar + +# Type variable for generic function typing +F = TypeVar("F", bound=Callable[..., Any]) + + +def log_function_debug( + logger: logging.Logger = None, + level: int = logging.DEBUG, + max_arg_length: int = 100, + max_return_length: int = 100, +) -> Callable[[F], F]: + """Debug decorator that logs function entry and exit with full details""" + + def decorator(func: F) -> F: + # Get logger - use provided logger or create one based on function's module + nonlocal logger + if logger is None: + logger = logging.getLogger(func.__module__) + + @functools.wraps(func) + def wrapper(*args, **kwargs): + func_name = func.__name__ + + # Helper function to truncate long representations + def truncate_repr(obj, max_length=100): + repr_str = repr(obj) + if len(repr_str) <= max_length: + return repr_str + return repr_str[: max_length - 3] + "..." + + # Prepare entry message with arguments + entry_msg = f"→ Entering {func_name}" + if args or kwargs: + args_parts = [] + + # Add positional arguments + if args: + args_str = [truncate_repr(arg, max_arg_length) for arg in args] + args_parts.extend(args_str) + + # Add keyword arguments + if kwargs: + kwargs_str = [f"{k}={truncate_repr(v, max_arg_length)}" for k, v in kwargs.items()] + args_parts.extend(kwargs_str) + + entry_msg += f"({', '.join(args_parts)})" + else: + entry_msg += "()" + + logger.log(level, entry_msg) + + start_time = time.time() + + try: + # Execute the function + result = func(*args, **kwargs) + + # Calculate execution time + execution_time = time.time() - start_time + + # Prepare exit message with return value and timing + exit_msg = f"← Exiting {func_name} (took {execution_time:.4f}s)" + + # Add return value if not None + if result is not None: + return_repr = truncate_repr(result, max_return_length) + exit_msg += f" → {return_repr}" + else: + exit_msg += " → None" + + logger.log(level, exit_msg) + return result + + except Exception as e: + # Calculate execution time even for exceptions + execution_time = time.time() - start_time + + # Log exception with details + error_msg = ( + f"✗ Exception in {func_name} (took {execution_time:.4f}s): {type(e).__name__}: {str(e)}" + ) + + logger.log(logging.ERROR, error_msg) + raise + + return wrapper + + return decorator diff --git a/src/troute-rnr/src/troute_rnr/read.py b/src/troute-rnr/src/troute_rnr/read.py index 7cafd76bd..874b9e0f9 100644 --- a/src/troute-rnr/src/troute_rnr/read.py +++ b/src/troute-rnr/src/troute_rnr/read.py @@ -1,16 +1,21 @@ """Module for handling NWM data processing and NWPS integrations.""" +import logging from datetime import datetime import httpx from pydantic import ValidationError +from troute_rnr.logging import log_function_debug from troute_rnr.schemas.nwps import ProcessedData, Reach, SiteData from troute_rnr.schemas.weather import Site from troute_rnr.settings import Settings from troute_rnr.utils import get +log = logging.getLogger(__name__) + +@log_function_debug() def convert_to_m3_per_sec(forecast: list[float], unit: str) -> tuple[list[float], str]: """Convert forecast units to m3/s. @@ -34,6 +39,7 @@ def convert_to_m3_per_sec(forecast: list[float], unit: str) -> tuple[list[float] raise ValueError(f"Unit conversion not supported for {unit}") +@log_function_debug() def read_site_data(site: Site, settings: Settings) -> SiteData | None: """Retrieves gauge data from the NWPS API for a specific site and validates it meets flood criteria. @@ -82,6 +88,7 @@ def read_site_data(site: Site, settings: Settings) -> SiteData | None: raise httpx.HTTPStatusError(msg) from e +@log_function_debug() def read_rfc_flows(forecast: SiteData, settings: Settings) -> ProcessedData | None: """ Pull National Water Model inputs for a given forecast. diff --git a/src/troute-rnr/src/troute_rnr/settings.py b/src/troute-rnr/src/troute_rnr/settings.py index ec0819791..d908dec97 100644 --- a/src/troute-rnr/src/troute_rnr/settings.py +++ b/src/troute-rnr/src/troute_rnr/settings.py @@ -2,9 +2,6 @@ import os from pathlib import Path -from icefabric_manage import build -from pyiceberg.catalog import load_catalog - class Settings: """The global settings object for Troute-rnr. @@ -54,14 +51,6 @@ def __init__(self): self.user = self.config["DEFAULT"]["user"] self.data_dir = (project_root / "data").resolve() - self.catalog_settings = { - "type": "sql", - "uri": f"sqlite:///{str(self.data_dir / 'warehouse/pyiceberg_catalog.db')}", # Note the three slashes for absolute path - "warehouse": f"file://{str(self.data_dir.resolve())}/warehouse", # Use resolved absolute path - } - - self.catalog = load_catalog("hydrofabric", **self.catalog_settings) - build(self.catalog, Path(f"{self.data_dir.resolve()}/parquet")) self.base_config_path = module_dir / "base_files/base_config.yaml" self.tmp_config = module_dir / "base_files/tmp_config.yaml" @@ -72,7 +61,7 @@ def __init__(self): self.restart_path.mkdir(exist_ok=True) self.output_files_path = project_root / "data/output/" - self.output_files_path.mkdir(exist_ok=True) + self.output_files_path.mkdir(parents=True, exist_ok=True) if os.getenv("RABBITMQ_HOST"): self.rabbitmq_host = os.getenv("RABBITMQ_HOST") diff --git a/src/troute-rnr/src/troute_rnr/write.py b/src/troute-rnr/src/troute_rnr/write.py index e94f6054d..c212176cc 100644 --- a/src/troute-rnr/src/troute_rnr/write.py +++ b/src/troute-rnr/src/troute_rnr/write.py @@ -1,7 +1,14 @@ +import logging + import numpy as np import pandas as pd +from troute_rnr.logging import log_function_debug + +log = logging.getLogger(__name__) + +@log_function_debug() def write_flow_files(mapped_feature_id, reach, output_path): """Writes csv flow files for each rfc point""" times = reach.times diff --git a/src/troute-routing/build_tests.py b/src/troute-routing/build_tests.py index 49238a5b9..0f43ac7e9 100644 --- a/src/troute-routing/build_tests.py +++ b/src/troute-routing/build_tests.py @@ -7,11 +7,13 @@ """ ## Parallel execution +from __future__ import annotations import sys import time import numpy as np import argparse import pathlib +import typing import pandas as pd from functools import partial from joblib import delayed, Parallel @@ -24,6 +26,9 @@ import troute.nhd_network as nhd_network import troute.nhd_io as nhd_io +if typing.TYPE_CHECKING: + from troute.routing.compute import NwmResults + ENV_IS_CL = False if ENV_IS_CL: root = pathlib.Path("/", "content", "t-route") @@ -162,7 +167,7 @@ def build_test_parameters( def parity_check( parity_set, - results, + results: list[NwmResults], ): nts = parity_set["nts"] dt = parity_set["dt"] @@ -221,7 +226,7 @@ def parity_check( # construct a dataframe of simulated flows fdv_columns = pd.MultiIndex.from_product([range(nts), ["q", "v", "d"]]) flowveldepth = pd.concat( - [pd.DataFrame(r[1], index=r[0], columns=fdv_columns) for r in results], + [pd.DataFrame(r.flow_velocity_depth, index=r.ids, columns=fdv_columns) for r in results], copy=False, ) flowveldepth = flowveldepth.sort_index() diff --git a/src/troute-routing/troute/routing/compute.py b/src/troute-routing/troute/routing/compute.py index 2e06a629f..d01b440bf 100644 --- a/src/troute-routing/troute/routing/compute.py +++ b/src/troute-routing/troute/routing/compute.py @@ -1,3 +1,4 @@ +from __future__ import annotations from collections import defaultdict from itertools import chain from functools import partial @@ -26,6 +27,60 @@ ) +class NwmResults: + """Wrapper for accessing run results using named properties instead of indexing into the results tuple.\n + If the results indexes change, in future updates, updating the property indexes here should propagate to all places where results are read.""" + def __init__(self, raw): + self._raw = raw + + def __getitem__(self, index): + return self._raw[index] + + @property + def ids(self): + return self._raw[0] + + @property + def flow_velocity_depth(self): + return self._raw[1] + + @property + def courant(self): + return self._raw[2] + + @property + def last_obs(self): + return self._raw[3] + + @property + def usgs(self): + return self._raw[4] + + @property + def usace(self): + return self._raw[5] + + @property + def usbr(self): + return self._raw[6] + + @property + def upstream(self): + return self._raw[7] + + @property + def rfc(self): + return self._raw[8] + + @property + def nudge(self): + return self._raw[9] + + @property + def great_lakes(self): + return self._raw[10] + + def _format_qlat_start_time(qlat_start_time): if not isinstance(qlat_start_time,datetime): try: @@ -143,6 +198,8 @@ def _prep_reservoir_da_dataframes(reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -161,6 +218,8 @@ def _prep_reservoir_da_dataframes(reservoir_usgs_df, reservoir_usgs_param_df (DataFrame): USGS reservoir DA state parameters reservoir_usace_df (DataFrame): gage flow observations at USACE-type reservoirs reservoir_usace_param_df (DataFrame): USACE reservoir DA state parameters + reservoir_usbr_df (DataFrame): gage flow observations at USBR-type reservoirs + reservoir_usbr_param_df (DataFrame): USBR reservoir DA state parameters reservoir_rfc_df (DataFrame): gage flow observations and forecasts at RFC-type reservoirs reservoir_rfc_param_df (DataFrame): RFC reservoir DA state parameters waterbody_types_df_sub (DataFrame): type-codes for waterbodies in sub domain @@ -181,7 +240,12 @@ def _prep_reservoir_da_dataframes(reservoir_usgs_df, reservoir_usace_prev_persisted_flow (ndarray): previously persisted outflow rates at USACE reservoirs reservoir_usace_persistence_update_time (ndarray): update time (sec) of persisted value at USACE reservoirs reservoir_usace_persistence_index (ndarray): index denoting elapsed persistence epochs at USACE reservoirs - + reservoir_usbr_df_sub (DataFrame): gage flow observations for USBR-type reservoirs in sub domain + reservoir_usbr_df_time (ndarray): time in seconds from model initialization time + reservoir_usbr_update_time (ndarray): update time (sec) to search for new observation at USBR reservoirs + reservoir_usbr_prev_persisted_flow (ndarray): previously persisted outflow rates at USBR reservoirs + reservoir_usbr_persistence_update_time (ndarray): update time (sec) of persisted value at USBR reservoirs + reservoir_usbr_persistence_index (ndarray): index denoting elapsed persistence epochs at USBR reservoirs ''' if not reservoir_usgs_df.empty: usgs_wbodies_sub = waterbody_types_df_sub[ @@ -233,6 +297,32 @@ def _prep_reservoir_da_dataframes(reservoir_usgs_df, reservoir_usace_persistence_index = pd.DataFrame().to_numpy().reshape(0,) if not waterbody_types_df_sub.empty: waterbody_types_df_sub.loc[waterbody_types_df_sub['reservoir_type'] == 3] = 1 + + # select USBR reservoir DA data waterbodies in sub-domain + if not reservoir_usbr_df.empty: + usbr_wbodies_sub = waterbody_types_df_sub[ + waterbody_types_df_sub['reservoir_type']==7 + ].index + if exclude_segments: + usbr_wbodies_sub = list(set(usbr_wbodies_sub).difference(set(exclude_segments))) + reservoir_usbr_df_sub = reservoir_usbr_df.loc[usbr_wbodies_sub] + reservoir_usbr_df_time = [] + for timestamp in reservoir_usbr_df.columns: + reservoir_usbr_df_time.append((timestamp - t0).total_seconds()) + reservoir_usbr_df_time = np.array(reservoir_usbr_df_time) + reservoir_usbr_update_time = reservoir_usbr_param_df['update_time'].loc[usbr_wbodies_sub].to_numpy() + reservoir_usbr_prev_persisted_flow = reservoir_usbr_param_df['prev_persisted_outflow'].loc[usbr_wbodies_sub].to_numpy() + reservoir_usbr_persistence_update_time = reservoir_usbr_param_df['persistence_update_time'].loc[usbr_wbodies_sub].to_numpy() + reservoir_usbr_persistence_index = reservoir_usbr_param_df['persistence_index'].loc[usbr_wbodies_sub].to_numpy() + else: + reservoir_usbr_df_sub = pd.DataFrame() + reservoir_usbr_df_time = pd.DataFrame().to_numpy().reshape(0,) + reservoir_usbr_update_time = pd.DataFrame().to_numpy().reshape(0,) + reservoir_usbr_prev_persisted_flow = pd.DataFrame().to_numpy().reshape(0,) + reservoir_usbr_persistence_update_time = pd.DataFrame().to_numpy().reshape(0,) + reservoir_usbr_persistence_index = pd.DataFrame().to_numpy().reshape(0,) + if not waterbody_types_df_sub.empty: + waterbody_types_df_sub.loc[waterbody_types_df_sub['reservoir_type'] == 7] = 1 # RFC reservoirs if not reservoir_rfc_df.empty: @@ -289,6 +379,7 @@ def _prep_reservoir_da_dataframes(reservoir_usgs_df, return ( reservoir_usgs_df_sub, reservoir_usgs_df_time, reservoir_usgs_update_time, reservoir_usgs_prev_persisted_flow, reservoir_usgs_persistence_update_time, reservoir_usgs_persistence_index, reservoir_usace_df_sub, reservoir_usace_df_time, reservoir_usace_update_time, reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, reservoir_usbr_df_time, reservoir_usbr_update_time, reservoir_usbr_prev_persisted_flow, reservoir_usbr_persistence_update_time, reservoir_usbr_persistence_index, reservoir_rfc_df_sub, reservoir_rfc_totalCounts, reservoir_rfc_file, reservoir_rfc_use_forecast, reservoir_rfc_timeseries_idx, reservoir_rfc_update_time, reservoir_rfc_da_timestep, reservoir_rfc_persist_days, gl_df_sub, gl_parm_lake_id_sub, gl_param_flows_sub, gl_param_time_sub, gl_param_update_time_sub, gl_climatology_df_sub, waterbody_types_df_sub @@ -319,6 +410,8 @@ def compute_log_mc( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, assume_short_ts, @@ -381,6 +474,9 @@ def compute_log_mc( outPutStr = "Reservoir persistence USACE: "+str(data_assimilation_parameters['reservoir_da']['reservoir_persistence_da']['reservoir_persistence_usace']) preRunLog.write(outPutStr+'\n') LOG.info(outPutStr) + outPutStr = "Reservoir persistence USBR: "+str(data_assimilation_parameters['reservoir_da']['reservoir_persistence_da']['reservoir_persistence_usbr']) + preRunLog.write(outPutStr+'\n') + LOG.info(outPutStr) preRunLog.write("Reservoir RFC forecasts: "+str(data_assimilation_parameters['reservoir_da']['reservoir_rfc_da']['reservoir_rfc_forecasts'])+'\n') preRunLog.write("\n") @@ -408,6 +504,7 @@ def compute_log_mc( preRunLog.write("Lastobs files, number of gages: "+str(len(lastobs_df.index))+'\n') preRunLog.write("Number of USGS gages in waterbodies: "+str(len(reservoir_usgs_df.index))+'\n') preRunLog.write("Number of USACE gages in waterbodies: "+str(len(reservoir_usace_df.index))+'\n') + preRunLog.write("Number of USBR gages in waterbodies: "+str(len(reservoir_usbr_df.index))+'\n') preRunLog.write("Number of RFC gages in waterbodies: "+str(len(reservoir_rfc_df.index))+'\n') preRunLog.write("\n") @@ -521,12 +618,16 @@ def compute_nhd_routing_v02( param_df, q0, qlats, + eloss_df, + ssout, usgs_df, lastobs_df, reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -542,7 +643,7 @@ def compute_nhd_routing_v02( subnetwork_list, flowveldepth_interorder = {}, from_files = True, -): +) -> tuple[list[NwmResults], list]: da_decay_coefficient = da_parameter_dict.get("da_decay_coefficient", 0) param_df["dt"] = dt @@ -743,6 +844,7 @@ def compute_nhd_routing_v02( qlat_sub = qlats.loc[param_df_sub.index] q0_sub = q0.loc[param_df_sub.index] + eloss_sub = eloss_df.loc[param_df_sub.index] param_df_sub = param_df_sub.reindex( param_df_sub.index.tolist() + lake_segs @@ -753,6 +855,7 @@ def compute_nhd_routing_v02( qlat_sub = qlat_sub.reindex(param_df_sub.index) q0_sub = q0_sub.reindex(param_df_sub.index) + eloss_sub = eloss_sub.reindex(param_df_sub.index) # prepare reservoir DA data (reservoir_usgs_df_sub, @@ -767,6 +870,12 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, + reservoir_usbr_df_time, + reservoir_usbr_update_time, + reservoir_usbr_prev_persisted_flow, + reservoir_usbr_persistence_update_time, + reservoir_usbr_persistence_index, reservoir_rfc_df_sub, reservoir_rfc_totalCounts, reservoir_rfc_file, @@ -787,6 +896,8 @@ def compute_nhd_routing_v02( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -812,6 +923,8 @@ def compute_nhd_routing_v02( param_df_sub.values, q0_sub.values.astype("float32"), qlat_sub.values.astype("float32"), + eloss_sub.values.astype("float32"), + ssout, lake_segs, waterbodies_df_sub.values, data_assimilation_parameters, @@ -848,6 +961,14 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow.astype("float32"), reservoir_usace_persistence_update_time.astype("float32"), reservoir_usace_persistence_index.astype("float32"), + # USBR Hybrid Reservoir DA data + reservoir_usbr_df_sub.values.astype("float32"), + reservoir_usbr_df_sub.index.values.astype("int32"), + reservoir_usbr_df_time.astype("float32"), + reservoir_usbr_update_time.astype("float32"), + reservoir_usbr_prev_persisted_flow.astype("float32"), + reservoir_usbr_persistence_update_time.astype("float32"), + reservoir_usbr_persistence_index.astype("float32"), # RFC Reservoir DA data reservoir_rfc_df_sub.values.astype("float32"), reservoir_rfc_df_sub.index.values.astype("int32"), @@ -1073,6 +1194,12 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, + reservoir_usbr_df_time, + reservoir_usbr_update_time, + reservoir_usbr_prev_persisted_flow, + reservoir_usbr_persistence_update_time, + reservoir_usbr_persistence_index, reservoir_rfc_df_sub, reservoir_rfc_totalCounts, reservoir_rfc_file, @@ -1093,6 +1220,8 @@ def compute_nhd_routing_v02( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -1116,6 +1245,8 @@ def compute_nhd_routing_v02( param_df_sub.values, q0_sub.values.astype("float32"), qlat_sub.values.astype("float32"), + eloss_sub.values.astype("float32"), + ssout, lake_segs, waterbodies_df_sub.values, data_assimilation_parameters, @@ -1152,6 +1283,14 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow.astype("float32"), reservoir_usace_persistence_update_time.astype("float32"), reservoir_usace_persistence_index.astype("float32"), + # USBR Hybrid Reservoir DA data + reservoir_usbr_df_sub.values.astype("float32"), + reservoir_usbr_df_sub.index.values.astype("int32"), + reservoir_usbr_df_time.astype('float32'), + reservoir_usbr_update_time.astype("float32"), + reservoir_usbr_prev_persisted_flow.astype("float32"), + reservoir_usbr_persistence_update_time.astype("float32"), + reservoir_usbr_persistence_index.astype("float32"), # RFC Reservoir DA data reservoir_rfc_df_sub.values.astype("float32"), reservoir_rfc_df_sub.index.values.astype("int32"), @@ -1294,6 +1433,12 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, + reservoir_usbr_df_time, + reservoir_usbr_update_time, + reservoir_usbr_prev_persisted_flow, + reservoir_usbr_persistence_update_time, + reservoir_usbr_persistence_index, reservoir_rfc_df_sub, reservoir_rfc_totalCounts, reservoir_rfc_file, @@ -1314,6 +1459,8 @@ def compute_nhd_routing_v02( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -1337,6 +1484,8 @@ def compute_nhd_routing_v02( param_df_sub.values, q0_sub.values.astype("float32"), qlat_sub.values.astype("float32"), + eloss_sub.values.astype("float32"), + ssout, lake_segs, waterbodies_df_sub.values, data_assimilation_parameters, @@ -1366,6 +1515,14 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow.astype("float32"), reservoir_usace_persistence_update_time.astype("float32"), reservoir_usace_persistence_index.astype("float32"), + # USBR Hybrid Reservoir DA data + reservoir_usbr_df_sub.values.astype("float32"), + reservoir_usbr_df_sub.index.values.astype("int32"), + reservoir_usbr_df_time.astype('float32'), + reservoir_usbr_update_time.astype("float32"), + reservoir_usbr_prev_persisted_flow.astype("float32"), + reservoir_usbr_persistence_update_time.astype("float32"), + reservoir_usbr_persistence_index.astype("float32"), # RFC Reservoir DA data reservoir_rfc_df_sub.values.astype("float32"), reservoir_rfc_df_sub.index.values.astype("int32"), @@ -1479,6 +1636,12 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, + reservoir_usbr_df_time, + reservoir_usbr_update_time, + reservoir_usbr_prev_persisted_flow, + reservoir_usbr_persistence_update_time, + reservoir_usbr_persistence_index, reservoir_rfc_df_sub, reservoir_rfc_totalCounts, reservoir_rfc_file, @@ -1499,6 +1662,8 @@ def compute_nhd_routing_v02( reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, reservoir_rfc_df, reservoir_rfc_param_df, great_lakes_df, @@ -1521,6 +1686,8 @@ def compute_nhd_routing_v02( param_df_sub.values, q0_sub.values.astype("float32"), qlat_sub.values.astype("float32"), + eloss_sub.values.astype("float32"), + ssout, lake_segs, waterbodies_df_sub.values, data_assimilation_parameters, @@ -1550,6 +1717,14 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow.astype("float32"), reservoir_usace_persistence_update_time.astype("float32"), reservoir_usace_persistence_index.astype("float32"), + # USBR Hybrid Reservoir DA data + reservoir_usbr_df_sub.values.astype("float32"), + reservoir_usbr_df_sub.index.values.astype("int32"), + reservoir_usbr_df_time.astype('float32'), + reservoir_usbr_update_time.astype("float32"), + reservoir_usbr_prev_persisted_flow.astype("float32"), + reservoir_usbr_persistence_update_time.astype("float32"), + reservoir_usbr_persistence_index.astype("float32"), # RFC Reservoir DA data reservoir_rfc_df_sub.values.astype("float32"), reservoir_rfc_df_sub.index.values.astype("int32"), @@ -1673,12 +1848,20 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow, reservoir_usace_persistence_update_time, reservoir_usace_persistence_index, + reservoir_usbr_df_sub, + reservoir_usbr_df_time, + reservoir_usbr_update_time, + reservoir_usbr_prev_persisted_flow, + reservoir_usbr_persistence_update_time, + reservoir_usbr_persistence_index, waterbody_types_df_sub, ) = _prep_reservoir_da_dataframes( reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + reservoir_usbr_df, + reservoir_usbr_param_df, waterbody_types_df_sub, t0, from_files, @@ -1696,6 +1879,8 @@ def compute_nhd_routing_v02( param_df_sub.values, q0_sub.values.astype("float32"), qlat_sub.values.astype("float32"), + eloss_sub.values.astype("float32"), + ssout, lake_segs, waterbodies_df_sub.values, data_assimilation_parameters, @@ -1725,6 +1910,14 @@ def compute_nhd_routing_v02( reservoir_usace_prev_persisted_flow.astype("float32"), reservoir_usace_persistence_update_time.astype("float32"), reservoir_usace_persistence_index.astype("float32"), + # USBR Hybrid Reservoir DA data + reservoir_usbr_df_sub.values.astype("float32"), + reservoir_usbr_df_sub.index.values.astype("int32"), + reservoir_usbr_df_time.astype('float32'), + reservoir_usbr_update_time.astype("float32"), + reservoir_usbr_prev_persisted_flow.astype("float32"), + reservoir_usbr_persistence_update_time.astype("float32"), + reservoir_usbr_persistence_index.astype("float32"), { us: fvd for us, fvd in flowveldepth_interorder.items() @@ -1735,10 +1928,10 @@ def compute_nhd_routing_v02( ) ) - return results, subnetwork_list + return [NwmResults(r) for r in results], subnetwork_list def compute_diffusive_routing( - results, + results: list[NwmResults], diffusive_network_data, cpu_pool, t0, @@ -1756,7 +1949,7 @@ def compute_diffusive_routing( refactored_reaches, coastal_boundary_depth_df, unrefactored_topobathy, - ): + ) -> list[NwmResults]: results_diffusive = [] for tw in diffusive_network_data: # <------- TODO - by-network parallel loop, here. @@ -1764,18 +1957,18 @@ def compute_diffusive_routing( trib_flow = None # extract junction inflows from results array for j, i in enumerate(results): - x = np.in1d(i[0], diffusive_network_data[tw]['tributary_segments']) + x = np.in1d(i.ids, diffusive_network_data[tw]['tributary_segments']) if sum(x) > 0: if j == 0: - trib_segs = i[0][x] - trib_flow = i[1][x, ::3] + trib_segs = i.ids[x] + trib_flow = i.flow_velocity_depth[x, ::3] else: if trib_segs is None: - trib_segs = i[0][x] - trib_flow = i[1][x, ::3] + trib_segs = i.ids[x] + trib_flow = i.flow_velocity_depth[x, ::3] else: - trib_segs = np.append(trib_segs, i[0][x]) - trib_flow = np.append(trib_flow, i[1][x, ::3], axis = 0) + trib_segs = np.append(trib_segs, i.ids[x]) + trib_flow = np.append(trib_flow, i.flow_velocity_depth[x, ::3], axis = 0) # create DataFrame of junction inflow data junction_inflows = pd.DataFrame(data = trib_flow, index = trib_segs) @@ -1881,4 +2074,4 @@ def compute_diffusive_routing( ) ) - return results_diffusive + return [NwmResults(r) for r in results_diffusive] diff --git a/src/troute-routing/troute/routing/fast_reach/mc_reach.pyx b/src/troute-routing/troute/routing/fast_reach/mc_reach.pyx index 0d205d98e..eb26ece18 100644 --- a/src/troute-routing/troute/routing/fast_reach/mc_reach.pyx +++ b/src/troute-routing/troute/routing/fast_reach/mc_reach.pyx @@ -172,6 +172,8 @@ cpdef object compute_network_structured( const float[:,:] data_values, const float[:,:] initial_conditions, const float[:,:] qlat_values, + const float[:,:] eloss_values, + float ssout, list lake_numbers_col, const double[:,:] wbody_cols, dict data_assimilation_parameters, @@ -199,6 +201,13 @@ cpdef object compute_network_structured( const float[:] reservoir_usace_prev_persisted_flow, const float[:] reservoir_usace_persistence_update_time, const float[:] reservoir_usace_persistence_index, + const float[:,:] reservoir_usbr_obs, + const int[:] reservoir_usbr_wbody_idx, + const float[:] reservoir_usbr_time, + const float[:] reservoir_usbr_update_time, + const float[:] reservoir_usbr_prev_persisted_flow, + const float[:] reservoir_usbr_persistence_update_time, + const float[:] reservoir_usbr_persistence_index, const float[:,:] reservoir_rfc_obs, const int[:] reservoir_rfc_wbody_idx, const int[:] reservoir_rfc_totalCounts, @@ -255,6 +264,7 @@ cpdef object compute_network_structured( cdef np.ndarray[float, ndim=2] data_array = np.asarray(data_values) cdef np.ndarray[float, ndim=2] init_array = np.asarray(initial_conditions) cdef np.ndarray[float, ndim=2] qlat_array = np.asarray(qlat_values) + cdef np.ndarray[float, ndim=2] eloss_array = np.asarray(eloss_values) cdef np.ndarray[double, ndim=2] wbody_parameters = np.asarray(wbody_cols) ###### Declare/type variables ##### # Source columns @@ -312,10 +322,11 @@ cpdef object compute_network_structured( else: # Check whether to use the fortran or python RFC DA module: if from_files: - # If reservoir_type is 1, 2, or 3, then initialize Levelpool reservoir + # If reservoir_type is 1, 2, 3, or 7 then initialize Levelpool reservoir # reservoir_type 1 is a straight levelpool reservoir. # reservoir_types 2 and 3 are USGS and USACE Hybrid reservoirs, respectively. - if (reservoir_types[wbody_index][0] >= 1 and reservoir_types[wbody_index][0] <= 3): + # reseroir_types 7 are USBR reservoirs + if (reservoir_types[wbody_index][0] >= 1 and (reservoir_types[wbody_index][0] <= 3 or reservoir_types[wbody_index][0] == 7)): # Initialize levelpool reservoir object lp_obj = MC_Levelpool( @@ -414,24 +425,29 @@ cpdef object compute_network_structured( # reservoir id index arrays cdef np.ndarray[int, ndim=1] usgs_idx = np.asarray(reservoir_usgs_wbody_idx) cdef np.ndarray[int, ndim=1] usace_idx = np.asarray(reservoir_usace_wbody_idx) + cdef np.ndarray[int, ndim=1] usbr_idx = np.asarray(reservoir_usbr_wbody_idx) cdef np.ndarray[int, ndim=1] rfc_idx = np.asarray(reservoir_rfc_wbody_idx) - + # reservoir update time arrays cdef np.ndarray[float, ndim=1] usgs_update_time = np.asarray(reservoir_usgs_update_time) cdef np.ndarray[float, ndim=1] usace_update_time = np.asarray(reservoir_usace_update_time) + cdef np.ndarray[float, ndim=1] usbr_update_time = np.asarray(reservoir_usbr_update_time) cdef np.ndarray[float, ndim=1] rfc_update_time = np.asarray(reservoir_rfc_update_time) - + # reservoir persisted outflow arrays cdef np.ndarray[float, ndim=1] usgs_prev_persisted_ouflow = np.asarray(reservoir_usgs_prev_persisted_flow) cdef np.ndarray[float, ndim=1] usace_prev_persisted_ouflow = np.asarray(reservoir_usace_prev_persisted_flow) - + cdef np.ndarray[float, ndim=1] usbr_prev_persisted_ouflow = np.asarray(reservoir_usbr_prev_persisted_flow) + # reservoir persistence index update time arrays cdef np.ndarray[float, ndim=1] usgs_persistence_update_time = np.asarray(reservoir_usgs_persistence_update_time) cdef np.ndarray[float, ndim=1] usace_persistence_update_time = np.asarray(reservoir_usace_persistence_update_time) - + cdef np.ndarray[float, ndim=1] usbr_persistence_update_time = np.asarray(reservoir_usbr_persistence_update_time) + # reservoir persisted outflow period index cdef np.ndarray[float, ndim=1] usgs_prev_persistence_index = np.asarray(reservoir_usgs_persistence_index) cdef np.ndarray[float, ndim=1] usace_prev_persistence_index = np.asarray(reservoir_usace_persistence_index) + cdef np.ndarray[float, ndim=1] usbr_prev_persistence_index = np.asarray(reservoir_usbr_persistence_index) cdef np.ndarray[int, ndim=1] rfc_timeseries_idx = np.asarray(reservoir_rfc_timeseries_idx) # great lakes arrays @@ -575,9 +591,22 @@ cpdef object compute_network_structured( persistence_update_time = usace_persistence_update_time[res_idx[0][0]] persistence_index = usace_prev_persistence_index[res_idx[0][0]] update_time = usace_update_time[res_idx[0][0]] + + # USBR reservoir hybrid DA inputs + if r.reach.lp.wbody_type_code == 7: + # find index location of waterbody in reservoir_usbr_obs + # and reservoir_usbr_time + res_idx = np.where(usbr_idx == r.reach.lp.lake_number) + wbody_gage_obs = reservoir_usbr_obs[res_idx[0][0],:] + wbody_gage_time = reservoir_usbr_time + prev_persisted_outflow = usbr_prev_persisted_ouflow[res_idx[0][0]] + persistence_update_time = usbr_persistence_update_time[res_idx[0][0]] + persistence_index = usbr_prev_persistence_index[res_idx[0][0]] + update_time = usbr_update_time[res_idx[0][0]] + - # Execute reservoir DA - both USGS(2) and USACE(3) types - if r.reach.lp.wbody_type_code == 2 or r.reach.lp.wbody_type_code == 3: + # Execute reservoir DA - both USGS(2), USACE(3), or USBR(7) types + if r.reach.lp.wbody_type_code == 2 or r.reach.lp.wbody_type_code == 3 or r.reach.lp.wbody_type_code == 7: #print('***********************************************************') #print('calling reservoir DA code for lake_id:', r.reach.lp.lake_number) @@ -634,7 +663,13 @@ cpdef object compute_network_structured( usace_prev_persisted_ouflow[res_idx[0][0]] = new_persisted_outflow usace_prev_persistence_index[res_idx[0][0]] = new_persistence_index usace_persistence_update_time[res_idx[0][0]] = new_persistence_update_time - + + # update USBR DA reservoir state arrays + if r.reach.lp.wbody_type_code == 7: + usbr_update_time[res_idx[0][0]] = new_update_time + usbr_prev_persisted_ouflow[res_idx[0][0]] = new_persisted_outflow + usbr_prev_persistence_index[res_idx[0][0]] = new_persistence_index + usbr_persistence_update_time[res_idx[0][0]] = new_persistence_update_time # RFC reservoir hybrid DA inputs if r.reach.lp.wbody_type_code == 4: @@ -742,13 +777,20 @@ cpdef object compute_network_structured( #Copy the output out for _i in range(r.reach.mc_reach.num_segments): segment = get_mc_segment(r, _i) - flowveldepth[segment.id, timestep, 0] = out_buf[_i, 0] + + # Setting flow based on the output of MC - SSOUT - ELOSS + flowveldepth[segment.id, timestep, 0] = out_buf[_i, 0] - ssout - eloss_array[segment.id, ((timestep-1)/qts_subdivisions)] + if reach_has_gage[i] == da_check_gage: printf("segment.id: %ld\t", segment.id) printf("segment.id: %d\t", usgs_positions[reach_has_gage[i]]) flowveldepth[segment.id, timestep, 1] = out_buf[_i, 1] flowveldepth[segment.id, timestep, 2] = out_buf[_i, 2] + # Ensuring flow does not go negative + if flowveldepth[segment.id, timestep, 0] <= 0.0: + flowveldepth[segment.id, timestep, 0] = 0.0 + # For each reach, # at the end of flow calculation, Check if there is something to assimilate # by evaluating whether the reach_has_gage array has a value different from @@ -830,6 +872,12 @@ cpdef object compute_network_structured( usace_prev_persistence_index, usace_persistence_update_time-((timestep-1)*dt) ), + ( + usbr_idx, usbr_update_time-((timestep-1)*dt), + usbr_prev_persisted_ouflow, + usbr_prev_persistence_index, + usbr_persistence_update_time-((timestep-1)*dt) + ), output_upstream.reshape(output.shape[0], -1)[fill_index_mask], ( rfc_idx, rfc_update_time-((timestep-1)*dt), @@ -842,4 +890,4 @@ cpdef object compute_network_structured( gl_prev_assim_timestamp, gl_update_time ) - ) \ No newline at end of file + ) diff --git a/src/troute_model.py b/src/troute_model.py index 2fb3207af..603a3c873 100644 --- a/src/troute_model.py +++ b/src/troute_model.py @@ -245,12 +245,16 @@ def run(self, values: dict, until=300): self._network.dataframe, self._network.q0, self._network._qlateral, + self._network._eloss, + self._network.forcing_parameters.get("ssout"), self._data_assimilation.usgs_df, self._data_assimilation.lastobs_df, self._data_assimilation.reservoir_usgs_df, self._data_assimilation.reservoir_usgs_param_df, self._data_assimilation.reservoir_usace_df, self._data_assimilation.reservoir_usace_param_df, + self._data_assimilation.reservoir_usbr_df, + self._data_assimilation.reservoir_usbr_param_df, self._data_assimilation.reservoir_rfc_df, self._data_assimilation.reservoir_rfc_param_df, self._data_assimilation.assimilation_parameters, @@ -321,7 +325,7 @@ def run(self, values: dict, until=300): values['lastobs_df'] = lastobs_df.values.flatten() values['lastobs_df_index'] = lastobs_df.index - nudge = np.concatenate([r[8] for r in self._run_results])[:,1:] + nudge = np.concatenate([r[9] for r in self._run_results])[:,1:] # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx usgs_positions_id = np.concatenate([r[3][0] for r in self._run_results]).astype(int) self._nudge = pd.DataFrame(data=nudge, index=usgs_positions_id) values['nudging'] = self._nudge.values.flatten() @@ -500,9 +504,9 @@ def _retrieve_last_output(results, nts, waterbodies_df,): ).to_flat_index() wbdy = pd.concat( - [pd.DataFrame(r[6], index=r[0], columns=i_columns) for r in results], + [pd.DataFrame(r[7], index=r[0], columns=i_columns) for r in results], copy=False, - ) + ) # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx wbdy_id_list = waterbodies_df.index.values.tolist() @@ -556,9 +560,9 @@ def _create_output_dataframes(results, nts, waterbodies_df,): ).to_flat_index() wbdy = pd.concat( - [pd.DataFrame(r[6], index=r[0], columns=i_columns) for r in results], + [pd.DataFrame(r[7], index=r[0], columns=i_columns) for r in results], copy=False, - ) + ) # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx wbdy_id_list = waterbodies_df.index.values.tolist() diff --git a/test/BMI/run_bmi_persistence_RFC_example.py b/test/BMI/run_bmi_persistence_RFC_example.py index b8174d347..01946c18e 100644 --- a/test/BMI/run_bmi_persistence_RFC_example.py +++ b/test/BMI/run_bmi_persistence_RFC_example.py @@ -43,9 +43,9 @@ def create_output_dataframes(results, nts, waterbodies_df): ).to_flat_index() wbdy = pd.concat( - [pd.DataFrame(r[6], index=r[0], columns=i_columns) for r in results], + [pd.DataFrame(r[7], index=r[0], columns=i_columns) for r in results], copy=False, - ) + ) # Corresponds to the ordering of the outflows from line 843 troute/routing/fast_reach/mc_reach.pyx return flowveldepth, wbdy diff --git a/test/USBR_persistence/channel_forcing/202208010000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010000NEXOUT.parquet new file mode 100644 index 000000000..86d7ef4ae Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010100NEXOUT.parquet new file mode 100644 index 000000000..437dc154e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010200NEXOUT.parquet new file mode 100644 index 000000000..dcadd4f85 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010300NEXOUT.parquet new file mode 100644 index 000000000..c76e83e47 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010400NEXOUT.parquet new file mode 100644 index 000000000..083167829 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010500NEXOUT.parquet new file mode 100644 index 000000000..c93b685fa Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010600NEXOUT.parquet new file mode 100644 index 000000000..75048f8b4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010700NEXOUT.parquet new file mode 100644 index 000000000..ade20d9de Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010800NEXOUT.parquet new file mode 100644 index 000000000..bdf219566 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208010900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208010900NEXOUT.parquet new file mode 100644 index 000000000..0e33a4e38 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208010900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011000NEXOUT.parquet new file mode 100644 index 000000000..e7bd8583d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011100NEXOUT.parquet new file mode 100644 index 000000000..25cb9369c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011200NEXOUT.parquet new file mode 100644 index 000000000..6b73e0238 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011300NEXOUT.parquet new file mode 100644 index 000000000..f4c74a31e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011400NEXOUT.parquet new file mode 100644 index 000000000..8a6c8bcb5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011500NEXOUT.parquet new file mode 100644 index 000000000..26a93cb5d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011600NEXOUT.parquet new file mode 100644 index 000000000..d8add9da2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011700NEXOUT.parquet new file mode 100644 index 000000000..e71b3c0d2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011800NEXOUT.parquet new file mode 100644 index 000000000..b7177df27 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208011900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208011900NEXOUT.parquet new file mode 100644 index 000000000..8cf3ff6df Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208011900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208012000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208012000NEXOUT.parquet new file mode 100644 index 000000000..ec245cc3a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208012000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208012100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208012100NEXOUT.parquet new file mode 100644 index 000000000..5dc86b941 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208012100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208012200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208012200NEXOUT.parquet new file mode 100644 index 000000000..5d4462a2b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208012200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208012300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208012300NEXOUT.parquet new file mode 100644 index 000000000..18e1814cb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208012300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020000NEXOUT.parquet new file mode 100644 index 000000000..23b295b8e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020100NEXOUT.parquet new file mode 100644 index 000000000..f1b3bf396 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020200NEXOUT.parquet new file mode 100644 index 000000000..d9c8007ac Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020300NEXOUT.parquet new file mode 100644 index 000000000..629eff444 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020400NEXOUT.parquet new file mode 100644 index 000000000..fcdb1513d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020500NEXOUT.parquet new file mode 100644 index 000000000..3641d093a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020600NEXOUT.parquet new file mode 100644 index 000000000..fdc2e7e24 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020700NEXOUT.parquet new file mode 100644 index 000000000..0f4b359f0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020800NEXOUT.parquet new file mode 100644 index 000000000..326ec23b9 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208020900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208020900NEXOUT.parquet new file mode 100644 index 000000000..da81f223f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208020900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021000NEXOUT.parquet new file mode 100644 index 000000000..417a1cee2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021100NEXOUT.parquet new file mode 100644 index 000000000..afcd76a79 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021200NEXOUT.parquet new file mode 100644 index 000000000..6141f140c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021300NEXOUT.parquet new file mode 100644 index 000000000..dd767a48f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021400NEXOUT.parquet new file mode 100644 index 000000000..347e8a665 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021500NEXOUT.parquet new file mode 100644 index 000000000..f2f8d415c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021600NEXOUT.parquet new file mode 100644 index 000000000..fa72e20d5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021700NEXOUT.parquet new file mode 100644 index 000000000..c851d7022 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021800NEXOUT.parquet new file mode 100644 index 000000000..4df6c72a7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208021900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208021900NEXOUT.parquet new file mode 100644 index 000000000..21b4369ef Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208021900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208022000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208022000NEXOUT.parquet new file mode 100644 index 000000000..eb7bc6ada Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208022000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208022100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208022100NEXOUT.parquet new file mode 100644 index 000000000..3f760cdaf Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208022100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208022200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208022200NEXOUT.parquet new file mode 100644 index 000000000..ce688b1eb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208022200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208022300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208022300NEXOUT.parquet new file mode 100644 index 000000000..176a7b4bf Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208022300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030000NEXOUT.parquet new file mode 100644 index 000000000..cf1b85a6a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030100NEXOUT.parquet new file mode 100644 index 000000000..cfbce63a0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030200NEXOUT.parquet new file mode 100644 index 000000000..51dfe25bb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030300NEXOUT.parquet new file mode 100644 index 000000000..7c3ab6c70 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030400NEXOUT.parquet new file mode 100644 index 000000000..3197b4938 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030500NEXOUT.parquet new file mode 100644 index 000000000..52a3b3c64 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030600NEXOUT.parquet new file mode 100644 index 000000000..ca999777e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030700NEXOUT.parquet new file mode 100644 index 000000000..4b49ea5e1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030800NEXOUT.parquet new file mode 100644 index 000000000..66a569853 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208030900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208030900NEXOUT.parquet new file mode 100644 index 000000000..fdb9f915b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208030900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031000NEXOUT.parquet new file mode 100644 index 000000000..35f334977 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031100NEXOUT.parquet new file mode 100644 index 000000000..caabb0745 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031200NEXOUT.parquet new file mode 100644 index 000000000..c8cc68333 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031300NEXOUT.parquet new file mode 100644 index 000000000..30e079652 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031400NEXOUT.parquet new file mode 100644 index 000000000..f99feaedc Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031500NEXOUT.parquet new file mode 100644 index 000000000..79b417348 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031600NEXOUT.parquet new file mode 100644 index 000000000..da66e4f5f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031700NEXOUT.parquet new file mode 100644 index 000000000..5ac2faffe Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031800NEXOUT.parquet new file mode 100644 index 000000000..1e6cf54b4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208031900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208031900NEXOUT.parquet new file mode 100644 index 000000000..f2d2050c2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208031900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208032000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208032000NEXOUT.parquet new file mode 100644 index 000000000..1dc515768 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208032000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208032100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208032100NEXOUT.parquet new file mode 100644 index 000000000..67bc9cca3 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208032100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208032200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208032200NEXOUT.parquet new file mode 100644 index 000000000..b73ae3122 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208032200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208032300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208032300NEXOUT.parquet new file mode 100644 index 000000000..b40866eff Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208032300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040000NEXOUT.parquet new file mode 100644 index 000000000..f94992b20 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040100NEXOUT.parquet new file mode 100644 index 000000000..2ec5b9e5b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040200NEXOUT.parquet new file mode 100644 index 000000000..a9976fd32 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040300NEXOUT.parquet new file mode 100644 index 000000000..10ec6562c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040400NEXOUT.parquet new file mode 100644 index 000000000..bddf23f2b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040500NEXOUT.parquet new file mode 100644 index 000000000..de52fd5bd Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040600NEXOUT.parquet new file mode 100644 index 000000000..14d5a6acb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040700NEXOUT.parquet new file mode 100644 index 000000000..5f3b62239 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040800NEXOUT.parquet new file mode 100644 index 000000000..5ab3d7e8d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208040900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208040900NEXOUT.parquet new file mode 100644 index 000000000..330bcc1b3 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208040900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041000NEXOUT.parquet new file mode 100644 index 000000000..fa455b208 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041100NEXOUT.parquet new file mode 100644 index 000000000..f03cec4da Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041200NEXOUT.parquet new file mode 100644 index 000000000..d9f9acd55 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041300NEXOUT.parquet new file mode 100644 index 000000000..fe6f1a54d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041400NEXOUT.parquet new file mode 100644 index 000000000..e049b047b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041500NEXOUT.parquet new file mode 100644 index 000000000..31f3abb71 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041600NEXOUT.parquet new file mode 100644 index 000000000..4fc7550e7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041700NEXOUT.parquet new file mode 100644 index 000000000..04a5ae3a8 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041800NEXOUT.parquet new file mode 100644 index 000000000..a06f2c504 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208041900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208041900NEXOUT.parquet new file mode 100644 index 000000000..94f8cc413 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208041900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208042000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208042000NEXOUT.parquet new file mode 100644 index 000000000..10db8ecf7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208042000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208042100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208042100NEXOUT.parquet new file mode 100644 index 000000000..3ade11366 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208042100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208042200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208042200NEXOUT.parquet new file mode 100644 index 000000000..a5058fc67 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208042200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208042300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208042300NEXOUT.parquet new file mode 100644 index 000000000..c9c681d65 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208042300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050000NEXOUT.parquet new file mode 100644 index 000000000..8d492dbe3 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050100NEXOUT.parquet new file mode 100644 index 000000000..77df46d06 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050200NEXOUT.parquet new file mode 100644 index 000000000..4c91f5fc0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050300NEXOUT.parquet new file mode 100644 index 000000000..b0242bc18 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050400NEXOUT.parquet new file mode 100644 index 000000000..5b9290fba Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050500NEXOUT.parquet new file mode 100644 index 000000000..5c19ab0b4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050600NEXOUT.parquet new file mode 100644 index 000000000..8d116a44a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050700NEXOUT.parquet new file mode 100644 index 000000000..e4d64af35 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050800NEXOUT.parquet new file mode 100644 index 000000000..9afe7d121 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208050900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208050900NEXOUT.parquet new file mode 100644 index 000000000..c1b31f95e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208050900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051000NEXOUT.parquet new file mode 100644 index 000000000..4683582a0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051100NEXOUT.parquet new file mode 100644 index 000000000..4164ef63e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051200NEXOUT.parquet new file mode 100644 index 000000000..d6af5f92a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051300NEXOUT.parquet new file mode 100644 index 000000000..508a31ae0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051400NEXOUT.parquet new file mode 100644 index 000000000..91f6d5f73 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051500NEXOUT.parquet new file mode 100644 index 000000000..8edcac8b1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051600NEXOUT.parquet new file mode 100644 index 000000000..ff964b427 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051700NEXOUT.parquet new file mode 100644 index 000000000..9d50099db Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051800NEXOUT.parquet new file mode 100644 index 000000000..07e40c0ce Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208051900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208051900NEXOUT.parquet new file mode 100644 index 000000000..fbf05f65c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208051900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208052000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208052000NEXOUT.parquet new file mode 100644 index 000000000..40114063d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208052000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208052100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208052100NEXOUT.parquet new file mode 100644 index 000000000..ed91e1ad1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208052100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208052200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208052200NEXOUT.parquet new file mode 100644 index 000000000..467b0d22e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208052200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208052300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208052300NEXOUT.parquet new file mode 100644 index 000000000..ae8d7e59e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208052300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060000NEXOUT.parquet new file mode 100644 index 000000000..2a9526751 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060100NEXOUT.parquet new file mode 100644 index 000000000..74433aae8 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060200NEXOUT.parquet new file mode 100644 index 000000000..57b99e8e4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060300NEXOUT.parquet new file mode 100644 index 000000000..84b7d3444 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060400NEXOUT.parquet new file mode 100644 index 000000000..03292a7fb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060500NEXOUT.parquet new file mode 100644 index 000000000..0df2339bf Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060600NEXOUT.parquet new file mode 100644 index 000000000..ba22c8934 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060700NEXOUT.parquet new file mode 100644 index 000000000..ac19b99b6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060800NEXOUT.parquet new file mode 100644 index 000000000..fd852be91 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208060900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208060900NEXOUT.parquet new file mode 100644 index 000000000..6fbc3a64b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208060900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061000NEXOUT.parquet new file mode 100644 index 000000000..92aafe19f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061100NEXOUT.parquet new file mode 100644 index 000000000..683ca9516 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061200NEXOUT.parquet new file mode 100644 index 000000000..0d1459659 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061300NEXOUT.parquet new file mode 100644 index 000000000..fe1dc0e07 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061400NEXOUT.parquet new file mode 100644 index 000000000..10e68e4d1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061500NEXOUT.parquet new file mode 100644 index 000000000..9926812b6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061600NEXOUT.parquet new file mode 100644 index 000000000..e52a29579 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061700NEXOUT.parquet new file mode 100644 index 000000000..9f4ed60fe Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061800NEXOUT.parquet new file mode 100644 index 000000000..f6c116305 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208061900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208061900NEXOUT.parquet new file mode 100644 index 000000000..02625d93c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208061900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208062000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208062000NEXOUT.parquet new file mode 100644 index 000000000..9eb06ea94 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208062000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208062100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208062100NEXOUT.parquet new file mode 100644 index 000000000..7aa3a3df1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208062100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208062200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208062200NEXOUT.parquet new file mode 100644 index 000000000..2a14b2d57 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208062200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208062300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208062300NEXOUT.parquet new file mode 100644 index 000000000..a963b0188 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208062300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070000NEXOUT.parquet new file mode 100644 index 000000000..508773930 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070100NEXOUT.parquet new file mode 100644 index 000000000..d5a97793e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070200NEXOUT.parquet new file mode 100644 index 000000000..34d91d1d4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070300NEXOUT.parquet new file mode 100644 index 000000000..716d1a521 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070400NEXOUT.parquet new file mode 100644 index 000000000..e5640bd61 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070500NEXOUT.parquet new file mode 100644 index 000000000..9eb76b84c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070600NEXOUT.parquet new file mode 100644 index 000000000..772d7daec Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070700NEXOUT.parquet new file mode 100644 index 000000000..00ca3886e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070800NEXOUT.parquet new file mode 100644 index 000000000..1b12b5c77 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208070900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208070900NEXOUT.parquet new file mode 100644 index 000000000..c32a381d6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208070900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071000NEXOUT.parquet new file mode 100644 index 000000000..fd242e066 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071100NEXOUT.parquet new file mode 100644 index 000000000..1a7461bbf Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071200NEXOUT.parquet new file mode 100644 index 000000000..ad1808786 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071300NEXOUT.parquet new file mode 100644 index 000000000..5263c6628 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071400NEXOUT.parquet new file mode 100644 index 000000000..39d2d6bd7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071500NEXOUT.parquet new file mode 100644 index 000000000..6b46d3b2f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071600NEXOUT.parquet new file mode 100644 index 000000000..b78c83769 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071700NEXOUT.parquet new file mode 100644 index 000000000..8ce809ddb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071800NEXOUT.parquet new file mode 100644 index 000000000..8e9fd3c7b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208071900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208071900NEXOUT.parquet new file mode 100644 index 000000000..f586c3372 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208071900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208072000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208072000NEXOUT.parquet new file mode 100644 index 000000000..8d0dc1aae Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208072000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208072100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208072100NEXOUT.parquet new file mode 100644 index 000000000..8c7b962c0 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208072100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208072200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208072200NEXOUT.parquet new file mode 100644 index 000000000..ccf40a1a7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208072200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208072300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208072300NEXOUT.parquet new file mode 100644 index 000000000..4f9f011ff Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208072300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080000NEXOUT.parquet new file mode 100644 index 000000000..32452a2e8 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080100NEXOUT.parquet new file mode 100644 index 000000000..4f0c21057 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080200NEXOUT.parquet new file mode 100644 index 000000000..563b4d268 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080300NEXOUT.parquet new file mode 100644 index 000000000..006888680 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080400NEXOUT.parquet new file mode 100644 index 000000000..d509b7765 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080500NEXOUT.parquet new file mode 100644 index 000000000..1079cdd66 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080600NEXOUT.parquet new file mode 100644 index 000000000..99317c01c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080700NEXOUT.parquet new file mode 100644 index 000000000..9e50a3eb5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080800NEXOUT.parquet new file mode 100644 index 000000000..8e9d3da7f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208080900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208080900NEXOUT.parquet new file mode 100644 index 000000000..46856f3ad Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208080900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081000NEXOUT.parquet new file mode 100644 index 000000000..3538b1210 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081100NEXOUT.parquet new file mode 100644 index 000000000..ee586b25f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081200NEXOUT.parquet new file mode 100644 index 000000000..d741e9c9c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081300NEXOUT.parquet new file mode 100644 index 000000000..b55a68aaf Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081400NEXOUT.parquet new file mode 100644 index 000000000..310036a93 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081500NEXOUT.parquet new file mode 100644 index 000000000..581ca38b9 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081600NEXOUT.parquet new file mode 100644 index 000000000..21afa7c57 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081700NEXOUT.parquet new file mode 100644 index 000000000..9a07f0df8 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081800NEXOUT.parquet new file mode 100644 index 000000000..2aac23bfd Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208081900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208081900NEXOUT.parquet new file mode 100644 index 000000000..acf11fd1c Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208081900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208082000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208082000NEXOUT.parquet new file mode 100644 index 000000000..24cfb2735 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208082000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208082100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208082100NEXOUT.parquet new file mode 100644 index 000000000..f0e975824 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208082100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208082200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208082200NEXOUT.parquet new file mode 100644 index 000000000..fe980076b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208082200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208082300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208082300NEXOUT.parquet new file mode 100644 index 000000000..b8efa7386 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208082300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090000NEXOUT.parquet new file mode 100644 index 000000000..949ffd420 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090100NEXOUT.parquet new file mode 100644 index 000000000..782f93c1a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090200NEXOUT.parquet new file mode 100644 index 000000000..6089303b5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090300NEXOUT.parquet new file mode 100644 index 000000000..2f33cbeef Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090400NEXOUT.parquet new file mode 100644 index 000000000..de6257924 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090500NEXOUT.parquet new file mode 100644 index 000000000..9d8ad4f56 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090600NEXOUT.parquet new file mode 100644 index 000000000..9e7f88cf5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090700NEXOUT.parquet new file mode 100644 index 000000000..3539832c4 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090800NEXOUT.parquet new file mode 100644 index 000000000..bee23ea59 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208090900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208090900NEXOUT.parquet new file mode 100644 index 000000000..5df94cc8b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208090900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091000NEXOUT.parquet new file mode 100644 index 000000000..ab5f8acdc Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091100NEXOUT.parquet new file mode 100644 index 000000000..e107ffa14 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091200NEXOUT.parquet new file mode 100644 index 000000000..0a8b4994d Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091300NEXOUT.parquet new file mode 100644 index 000000000..d8e92b711 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091400NEXOUT.parquet new file mode 100644 index 000000000..93f0fb08e Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091500NEXOUT.parquet new file mode 100644 index 000000000..af59dd3ef Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091600NEXOUT.parquet new file mode 100644 index 000000000..6c7cc71de Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091700NEXOUT.parquet new file mode 100644 index 000000000..ee6539dd9 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091800NEXOUT.parquet new file mode 100644 index 000000000..2e8472544 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208091900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208091900NEXOUT.parquet new file mode 100644 index 000000000..15fa9704a Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208091900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208092000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208092000NEXOUT.parquet new file mode 100644 index 000000000..960b3c3e6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208092000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208092100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208092100NEXOUT.parquet new file mode 100644 index 000000000..be443bf2f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208092100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208092200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208092200NEXOUT.parquet new file mode 100644 index 000000000..71ce87eed Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208092200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208092300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208092300NEXOUT.parquet new file mode 100644 index 000000000..686aaaaeb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208092300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100000NEXOUT.parquet new file mode 100644 index 000000000..38492a999 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100100NEXOUT.parquet new file mode 100644 index 000000000..440bca2c2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100200NEXOUT.parquet new file mode 100644 index 000000000..d6eaa1a77 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100300NEXOUT.parquet new file mode 100644 index 000000000..9fa6278f6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100400NEXOUT.parquet new file mode 100644 index 000000000..7d4aa82ba Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100500NEXOUT.parquet new file mode 100644 index 000000000..e3fac72c7 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100600NEXOUT.parquet new file mode 100644 index 000000000..bc25f8020 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100700NEXOUT.parquet new file mode 100644 index 000000000..c041bda80 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100800NEXOUT.parquet new file mode 100644 index 000000000..7f99c5443 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208100900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208100900NEXOUT.parquet new file mode 100644 index 000000000..0f9370a7b Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208100900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101000NEXOUT.parquet new file mode 100644 index 000000000..0b9e4c16f Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101100NEXOUT.parquet new file mode 100644 index 000000000..6841f1939 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101200NEXOUT.parquet new file mode 100644 index 000000000..eaba41925 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101300NEXOUT.parquet new file mode 100644 index 000000000..44d5d5dc1 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101300NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101400NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101400NEXOUT.parquet new file mode 100644 index 000000000..e018627f5 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101400NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101500NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101500NEXOUT.parquet new file mode 100644 index 000000000..c8a3a1fc6 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101500NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101600NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101600NEXOUT.parquet new file mode 100644 index 000000000..d3e627e42 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101600NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101700NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101700NEXOUT.parquet new file mode 100644 index 000000000..53ca22556 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101700NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101800NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101800NEXOUT.parquet new file mode 100644 index 000000000..ebab39e56 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101800NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208101900NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208101900NEXOUT.parquet new file mode 100644 index 000000000..d516d69be Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208101900NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208102000NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208102000NEXOUT.parquet new file mode 100644 index 000000000..b374cb7cb Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208102000NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208102100NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208102100NEXOUT.parquet new file mode 100644 index 000000000..332339f49 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208102100NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208102200NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208102200NEXOUT.parquet new file mode 100644 index 000000000..8fb3d05d2 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208102200NEXOUT.parquet differ diff --git a/test/USBR_persistence/channel_forcing/202208102300NEXOUT.parquet b/test/USBR_persistence/channel_forcing/202208102300NEXOUT.parquet new file mode 100644 index 000000000..8fca8d735 Binary files /dev/null and b/test/USBR_persistence/channel_forcing/202208102300NEXOUT.parquet differ diff --git a/test/USBR_persistence/domain/09112500.gpkg b/test/USBR_persistence/domain/09112500.gpkg new file mode 100644 index 000000000..25e4a4bad Binary files /dev/null and b/test/USBR_persistence/domain/09112500.gpkg differ diff --git a/test/USBR_persistence/examine_output.ipynb b/test/USBR_persistence/examine_output.ipynb new file mode 100644 index 000000000..a33753a7f --- /dev/null +++ b/test/USBR_persistence/examine_output.ipynb @@ -0,0 +1,939 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "783cc0d4", + "metadata": {}, + "source": [ + "### Examining the output of T-Route at the Taylor Dam, Colorado\n", + "#### Author: Tadd Bindas\n", + "\n", + "In the following lines of this notebook, we will plot the output of a T-Route run with inputs taken from a NGEN run using initial versions (uncalibrated) CFE + NOAH-OWP-Modular to see how t-route works without USBR reservoir data input through the persitence model\n", + "\n", + "*NOTE* to run this code, you will need to have run the following commands in order to have saved outputs:\n", + "```sh\n", + "python -m nwm_routing -f -V4 taylor_dam.yaml\n", + "python -m nwm_routing -f -V4 taylor_dam_da.yaml\n", + "```\n", + "This ensures that you are running the model both with and without USBR Persistence DA" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ca9c85ca", + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import xarray as xr\n", + "import geopandas as gpd\n", + "import glob\n" + ] + }, + { + "cell_type": "markdown", + "id": "4796158b", + "metadata": {}, + "source": [ + "Let\"s plot / examine the sample basin to see where we\"re modeling. You can see the tile of the Taylor Lake on the middle-right of the output" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "0f8941db", + "metadata": {}, + "outputs": [], + "source": [ + "lakes = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"lakes\")\n", + "divides = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"divides\")\n", + "nexus = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"nexus\")\n", + "fp = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"flowpaths\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "2285121f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "divide_ex = divides.explore(color=\"grey\", tiles=\"OpenStreetMap\")\n", + "lakes_ex = lakes.explore(m=divide_ex, color=\"blue\")\n", + "nexus_ex = nexus.explore(m=lakes_ex, color=\"black\")\n", + "fp.explore(m=nexus_ex, color=\"orange\")\n" + ] + }, + { + "cell_type": "markdown", + "id": "cde7b1ae", + "metadata": {}, + "source": [ + "Let's see if the USBR Gauge is in the network table, and where it will be intersecting. We can find this through the sample GPKG and the HL_URL. \n", + "\n", + "This .gpkg was created by Raytheon NGWPC" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bdbce833", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idtoiddivide_idds_idmainstemhydroseqhf_sourcehf_idlengthkmareasqkmtot_drainage_areasqkmtypevpuidhf_hydroseqhf_lengthkmhf_mainstemtopopoi_idhl_uri
791wb-2619309nex-2619310cat-2619309NaN425460.020662.0NOAA Reference Fabric1333596.02.23127910.0944658.279002nexus14428435.00.081632425460.0fl-nex272usbr-491
\n", + "
" + ], + "text/plain": [ + " id toid divide_id ds_id mainstem hydroseq \\\n", + "791 wb-2619309 nex-2619310 cat-2619309 NaN 425460.0 20662.0 \n", + "\n", + " hf_source hf_id lengthkm areasqkm \\\n", + "791 NOAA Reference Fabric 1333596.0 2.231279 10.0944 \n", + "\n", + " tot_drainage_areasqkm type vpuid hf_hydroseq hf_lengthkm \\\n", + "791 658.279002 nexus 14 428435.0 0.081632 \n", + "\n", + " hf_mainstem topo poi_id hl_uri \n", + "791 425460.0 fl-nex 272 usbr-491 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "network = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"network\")\n", + "network[network[\"hl_uri\"] == \"usbr-491\"]\n" + ] + }, + { + "cell_type": "markdown", + "id": "bc32b535", + "metadata": {}, + "source": [ + "Now, we\"ll load the USBR reservoir inputs, and all of the outputs generated from the USBR Persistence and Non-Persistence runs" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "eae62788", + "metadata": {}, + "outputs": [], + "source": [ + "# Load t-route output datasets for both runs\n", + "ds_base = xr.open_dataset(\"./output/base_output/troute_output_202208020000.nc\", engine=\"netcdf4\")\n", + "ds_da = xr.open_dataset(\"./output/da_output/troute_output_202208020000.nc\", engine=\"netcdf4\")\n", + "\n", + "# Load reservoir DA inputs\n", + "files = sorted(glob.glob(\"./usbr_timeseries/*.ncdf\"))\n", + "datasets = []\n", + "for file in files:\n", + " ds = xr.open_dataset(file)\n", + " datasets.append(ds)\n", + "reservoir_ds = xr.concat(datasets, dim=\"timestep\")\n", + "reservoir_df = reservoir_ds.to_dataframe().reset_index()\n", + "reservoir_df[\"discharge\"] = reservoir_df[\"discharge\"] * 0.028316846592 # convert to cms\n", + "\n", + "# Process base model stream data at catchment 2619309 (NEXUS below the lake)\n", + "stream_data_base = ds_base.sel(feature_id=2619309) # Lake output catchment\n", + "stream_df_base = stream_data_base.to_dataframe().reset_index()\n", + "stream_df_base[\"time\"] = pd.to_datetime(stream_df_base[\"time\"])\n", + "stream_df_base = stream_df_base.set_index(\"time\")\n", + "stream_df_base[\"flow\"] = stream_df_base[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "# Process DA model stream data at catchment 2619309\n", + "stream_data_da = ds_da.sel(feature_id=2619309) # (NEXUS below the lake)\n", + "stream_df_da = stream_data_da.to_dataframe().reset_index()\n", + "stream_df_da[\"time\"] = pd.to_datetime(stream_df_da[\"time\"])\n", + "stream_df_da = stream_df_da.set_index(\"time\")\n", + "stream_df_da[\"flow\"] = stream_df_da[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "# Process base model stream data at the downstream-most nexus\n", + "stream_data_base_output = ds_base.sel(feature_id=2619318) # Lake output catchment\n", + "stream_df_base_output = stream_data_base_output.to_dataframe().reset_index()\n", + "stream_df_base_output[\"time\"] = pd.to_datetime(stream_df_base_output[\"time\"])\n", + "stream_df_base_output = stream_df_base_output.set_index(\"time\")\n", + "stream_df_base_output[\"flow\"] = stream_df_base_output[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "# Process DA model stream data at the downstream-most nexus\n", + "stream_data_da_output = ds_da.sel(feature_id=2619318) # (NEXUS below the lake)\n", + "stream_df_da_output = stream_data_da_output.to_dataframe().reset_index()\n", + "stream_df_da_output[\"time\"] = pd.to_datetime(stream_df_da_output[\"time\"])\n", + "stream_df_da_output = stream_df_da_output.set_index(\"time\")\n", + "stream_df_da_output[\"flow\"] = stream_df_da_output[\"flow\"] * 0.028316846592 # convert to cms\n" + ] + }, + { + "cell_type": "markdown", + "id": "02ad1a9d", + "metadata": {}, + "source": [ + "Now, let\"s plot the outputs via hydrographs to see how USBR persistence performs" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "affb8514", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKQAAAPdCAYAAAC0qbBXAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjUsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvWftoOwAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs3Xd8FHX+x/H3ppACpBAISSBAlF4CgQAHqBRDU1AsIBoF9NADKdIUsCCiRzsR8LwDgTMUC3gCyqF0DAoiPRTB0AkHCYhAQugk8/uDX/ZYk0A2bXeZ1/Px2Ifs7Mzsd3YZZ3jP5zNrMQzDEAAAAAAAAFBM3Bw9AAAAAAAAAJgLgRQAAAAAAACKFYEUAAAAAAAAihWBFAAAAAAAAIoVgRQAAAAAAACKFYEUAAAAAAAAihWBFAAAAAAAAIqVh6MH4IwyMzN18uRJlS5dWhaLxdHDAQAAAAAAcCjDMHThwgWFhYXJza3g9U0EUjk4efKkwsPDHT0MAAAAAAAAp3L8+HFVrFixwOshkMpB6dKlJd38kP38/Bw8GgAAAAAAAMdKS0tTeHi4NTMpKAKpHGS16fn5+RFIAQAAAAAA/L/CurURNzUHAAAAAABAsSKQAgAAAAAAQLEikAIAAAAAAECx4h5SBZCRkaHr1687ehjAXaNEiRKF8vOhAAAAAADnRiCVD4ZhKCUlRefPn3f0UIC7ipubmyIiIlSiRAlHDwUAAAAAUIQIpPIhK4wKDg6Wr69vod1hHjCzzMxMnTx5UsnJyapUqRL7FQAAAADcxQik7JSRkWENo4KCghw9HOCuUq5cOZ08eVI3btyQp6eno4cDAAAAACgi3KzFTln3jPL19XXwSIC7T1arXkZGhoNHAgAAAAAoSgRS+UQ7EVD42K8AAAAAwBwIpAAAAAAAAFCsCKQAAAAAAABQrAikgGLWq1cvdenSxSHvffToUVksFiUkJDjk/QEAAAAAkAikTKVVq1YaNGhQtumzZ89WQECA9fmlS5c0cuRI3XvvvfL29la5cuXUsmVLffPNNzbrslgs1kf58uXVtWtXHTt2zDpPVviR9ShTpoxatmypH3/88bbjzO9yrmLq1KmaPXu23cuNHj3a+pm4u7srPDxcL730ks6ePVv4gwQAAAAAoAgRSCGbPn36aNGiRfr73/+uX3/9VcuXL9eTTz6p33//3Wa+F198UcnJyTp58qS++eYbHT9+XM8++2y29a1evVrJycn64YcfFBYWpk6dOunUqVN3HEd+lysqWb+wWFD+/v42AeAfXbt2LdfX6tSpo+TkZCUlJSkuLk7Lly9X3759C2VcAAAAAAAUFwKpQmAY0sWLxf8wjKLZniVLluj111/XQw89pCpVqqhRo0YaMGCAXnjhBZv5fH19FRISotDQUP3pT39S//79tX379mzrCwoKUkhIiOrWravXX39daWlp2rRp0x3Hcafl9uzZo44dO6pUqVIqX768nnvuOZ05c8b6+ldffaV69erJx8dHQUFBiomJ0cWLF62vz5o1S7Vq1ZK3t7dq1qypf/7zn9bXsqq0FixYoJYtW8rb21vTpk2Tj4+Pli1bZjPOxYsXq3Tp0rp06ZIkaffu3WrTpo31fV966SWlp6db5/9jy16rVq3Uv39/DRo0SGXLllX79u1z/Uw8PDwUEhKiChUqKCYmRl27dtWqVats5rndduXkTp/j8uXLdd999ykgIEBBQUHq1KmTDh06ZH392rVr6t+/v0JDQ+Xt7a3KlStr3Lhx1tfPnz+v3r17q1y5cvLz81ObNm20c+fO244JAAAAAHB383D0AO4Gly5JpUoV//ump0slSxb+ekNCQvTdd9/p8ccfV+nSpfO0zNmzZ/Xll1+qadOmuc5z+fJlzZ07V5JUokSJPI8np+XOnz+vNm3aqHfv3po8ebIuX76s4cOHq1u3blq7dq2Sk5P19NNPa+LEiXrsscd04cIF/fjjjzL+P8X77LPPNGrUKH300UeKiorSjh079OKLL6pkyZLq2bOn9b1HjBihSZMmKSoqSt7e3vrxxx/1+eefq2PHjtZ5PvvsM3Xp0kW+vr66ePGi2rdvr2bNmmnLli06ffq0evfurf79+9+2TW/OnDnq27evNmzYkOfP5ejRo1qxYoXNZ5nX7cpyp89Rki5evKghQ4YoMjJS6enpGjVqlB577DElJCTIzc1NH374oZYsWaIvv/xSlSpV0vHjx3X8+HHre3Tt2tUa5Pn7++vjjz/Wgw8+qP3796tMmTJ53l4AAADgbrV/v/Trr44eBYpSSIjUpImjR+FkDGSTmppqSDJSU1OzvXb58mVj7969xuXLl63T0tMN42a9UvE+0tPt266WLVsar7zySrbpcXFxhr+/v/X5unXrjIoVKxqenp5GdHS0MWjQIGP9+vXZ1uXp6WmULFnS8PX1NSQZ1atXN44cOWKd58iRI4Ykw8fHxyhZsqRhsVgMSUajRo2Ma9eu5TrOvCz37rvvGu3atbNZ7vjx44YkIzEx0di2bZshyTh69GiO73Hvvfcan3/+uc20d99912jWrJnNGKZMmWIzz+LFi41SpUoZFy9eNAzj5t8Vb29vY9myZYZhGMaMGTOMwMBAI/2WL+fbb7813NzcjJSUFMMwDKNnz57Go48+avNZRkVF5fp5ZHn77bcNNzc3o2TJkoa3t7chyZBkfPDBB3Zv144dO6yv3e5zzMlvv/1mSDJ2795tGIZhDBgwwGjTpo2RmZmZbd4ff/zR8PPzM65cuWIz/d577zU+/vjjbPPntH8BAAAAd7PffzeMEiUc829KHsX3eOwxR/9NK7jbZSX5QYVUIfD1vVmt5Ij3LQoPPPCADh8+rJ9//lk//fST1qxZo6lTp+qdd97RW2+9ZZ0vNjZWb7zxhiTp1KlTGjt2rNq1a6dt27bZVFYtWLBANWvW1J49e/Taa69p9uzZ8vT0vOM4brfczp079f3336tUDqVphw4dUrt27fTggw+qXr16at++vdq1a6cnn3xSgYGBunjxog4dOqQ///nPevHFF63L3bhxQ/7+/jbrio6Otnn+0EMPydPTU0uWLFH37t21cOFC+fn5KSYmRpK0b98+1a9fXyVvKV1r0aKFMjMzlZiYqPLly+e4rY0aNbrj5yFJNWrU0JIlS3TlyhV9+umnSkhI0IABAyTJru3KcqfPsXr16jpw4IBGjRqlTZs26cyZM8rMzJQkJSUlqW7duurVq5fatm2rGjVqqEOHDurUqZPatWtnXX96erqCgoJs1n358mWbtj8AAADArH77Tbp2TXJzo4Lmbla9uqNH4HwIpAqBxVI0rXOFzc/PT6mpqdmmnz9/Pltg4enpqfvvv1/333+/hg8frvfee09jxozR8OHDrS1i/v7+qlq1qiSpatWq+te//qXQ0FAtWLBAvXv3tq4rPDxc1apVU7Vq1XTjxg099thj2rNnj7y8vG473tstl56ers6dO2vChAnZlgsNDZW7u7tWrVqln376SStXrtTf//53vfHGG9q0aZN8/z/JmzlzZrYWQ3d3d5vnJf/wxZYoUUJPPvmkPv/8c3Xv3l2ff/65nnrqKXl4FGxX+uP75KZEiRLWz3z8+PF6+OGH9c477+jdd9+13qcqL9uV5U6foyR17txZlStX1syZMxUWFqbMzEzVrVvXevP1hg0b6siRI1q2bJlWr16tbt26KSYmRl999ZXS09MVGhqq+Pj4bOu/3Y3dAQAAALMwjJv/9feXNm507FiA4sRNzU2kRo0aOd50fPv27ap+h7i2du3aunHjhq5cuZLrPFmhx+XLl3Od58knn5SHh8cdb7R9p+UaNmyoX375RVWqVFHVqlVtHlnhjsViUYsWLfTOO+9ox44dKlGihBYvXqzy5csrLCxMhw8fzrZsRETEHccSGxur5cuX65dfftHatWsVGxtrfa1WrVrauXOnzc3TN2zYIDc3N9WoUcOubc6LN998U++//75OnjyZr+260+f4+++/KzExUW+++aYefPBB1apVS+fOncu2Hj8/Pz311FOaOXOmFixYoIULF+rs2bNq2LChUlJS5OHhkW39ZcuWLfTPAwAAAHA1WYEUYDYEUibSt29f7d+/XwMHDtSuXbuUmJioDz74QF988YWGDh1qna9Vq1b6+OOPtW3bNh09elTfffedXn/9dbVu3Vp+fn7W+S5duqSUlBSlpKRo586d6tu3r7y9va3tWjmxWCwaOHCgxo8fb/1Vurz443L9+vXT2bNn9fTTT2vLli06dOiQVqxYoeeff14ZGRnatGmTxo4dq61btyopKUmLFi3Sb7/9plq1akmS3nnnHY0bN04ffvih9u/fr927dysuLk4ffPDBHcfywAMPKCQkRLGxsYqIiLCpRoqNjZW3t7d69uypPXv26Pvvv9eAAQP03HPP5dquVxDNmjVTZGSkxo4dm6/tutPnGBgYqKCgIM2YMUMHDx7U2rVrNWTIEJt1ZP0d+vXXX7V//379+9//VkhIiAICAhQTE6NmzZqpS5cuWrlypY4ePaqffvpJb7zxhrZu3VronwcAAADgqiwWR48AKF4EUiZyzz336IcfftCvv/6qmJgYNW3aVF9++aX+/e9/q0OHDtb52rdvrzlz5qhdu3aqVauWBgwYoPbt2+vLL7+0Wd/MmTMVGhqq0NBQtW7dWmfOnNF33313x0qgnj176vr16/roo4/sGv+ty4WFhWnDhg3KyMhQu3btVK9ePQ0aNEgBAQFyc3OTn5+ffvjhBz300EOqXr263nzzTU2aNMn663i9e/fWrFmzFBcXp3r16qlly5aaPXt2niqkLBaLnn76ae3cudOmOkqSfH19tWLFCp09e1aNGzfWk08+qQcffNDubbXH4MGDNWvWLB0/ftzu7brT5+jm5qb58+dr27Ztqlu3rgYPHqy//e1vNusoXbq0Jk6cqOjoaDVu3NgaYrq5uclisei7777TAw88oOeff17Vq1dX9+7ddezYsSIJ6AAAAABXk1UhRSAFs7EYhmMLBE+cOKHhw4dr2bJlunTpkqpWraq4uLhsN5POEh8fr9atW2ebnpycrJCQkGzTx48fr5EjR+qVV17RlClT8jSmtLQ0+fv7KzU11aYiSJKuXLmiI0eOKCIiQt7e3nlaH4C8Yf8CAACA2fzyi1S3rhQUJJ054+jRALm7XVaSHw69qfm5c+fUokULtW7dWsuWLVO5cuV04MABBQYG3nHZxMREmw8gODg42zxbtmzRxx9/rMjIyEIdNwAAAAAAhYkKKZiNQwOpCRMmKDw8XHFxcdZpeWmZkm4GULf7la709HTFxsZq5syZeu+99267rqtXr+rq1avW52lpaXkaAwAAAAAABUHLHszKofeQWrJkiaKjo9W1a1cFBwcrKipKM2fOzNOyDRo0UGhoqNq2basNGzZke71fv356+OGHFRMTc8d1jRs3Tv7+/tZHeHi43dsCAAAAAIC9+JU9mJVDA6nDhw9r2rRpqlatmlasWKG+fftq4MCBmjNnTq7LhIaGavr06Vq4cKEWLlyo8PBwtWrVStu3b7fOM3/+fG3fvl3jxo3L0zhGjhyp1NRU6+P48eN3XMbBt94C7krsVwAAADArKqRgNg5t2cvMzFR0dLT1J+ujoqK0Z88eTZ8+XT179sxxmRo1atj8ilvz5s116NAhTZ48WfPmzdPx48f1yiuvaNWqVXm+KbKXl5e8vLzyNK+np6ck6dKlS/Lx8cnTMgDy5tq1a5Ikd3d3B48EAAAAKB607MGsHBpIhYaGqnbt2jbTatWqpYULF9q1niZNmmj9+vWSpG3btun06dNq2LCh9fWMjAz98MMP+uijj3T16tUC/WPX3d1dAQEBOn36tCTJ19dXFv7PARRYZmamfvvtN/n6+srDw6H/awIAAACKDU0CMCuH/quvRYsWSkxMtJm2f/9+Va5c2a71JCQkKDQ0VJL04IMPavfu3TavP//886pZs6aGDx9eKJUXISEhkmQNpQAUDjc3N1WqVImQFwAAAKbDKTDMxqGB1ODBg9W8eXONHTtW3bp10+bNmzVjxgzNmDHDOs/IkSN14sQJzZ07V5I0ZcoURUREqE6dOrpy5YpmzZqltWvXauXKlZKk0qVLq27dujbvU7JkSQUFBWWbnl8Wi0WhoaEKDg7W9evXC2WdAKQSJUrIzc2ht7YDAAAAihUtezArhwZSjRs31uLFizVy5EiNGTNGERERmjJlimJjY63zJCcnKykpyfr82rVrGjp0qE6cOCFfX19FRkZq9erVat26dbGP393dnXvdAAAAAADyjZY9mJXF4GetsklLS5O/v79SU1Pl5+fn6OEAAAAAAO5SO3ZIDRtKYWHSiROOHg2Qu8LOSuiNAQAAAADAQWjZg1kRSAEAAAAA4CD0LMGsCKQAAAAAAHAQKqRgVgRSAAAAAAA4GIEUzIZACgAAAAAAB6FlD2ZFIAUAAAAAgIPQsgezIpACAAAAAMDBCKRgNgRSAAAAAAA4CBVSMCsCKQAAAAAAHIR7SMGsCKQAAAAAAHAwKqRgNgRSAAAAAAA4CC17MCsCKQAAAAAAHISWPZgVgRQAAAAAAA5GhRTMhkAKAAAAAAAHoWUPZkUgBQAAAACAg9CyB7MikAIAAAAAwMGokILZEEgBAAAAAOAgtOzBrAikAAAAAABwEFr2YFYEUgAAAAAAOBgVUjAbAikAAAAAAByElj2YFYEUAAAAAAAOQssezIpACgAAAAAAB6NCCmZDIAUAAAAAgIPQsgezIpACAAAAAMBBaNmDWRFIAQAAAADgYFRIwWwIpAAAAAAAcBBa9mBWBFIAAAAAADgILXswKwIpAAAAAAAcjAopmA2BFAAAAAAADkLLHsyKQAoAAAAAAAehZQ9mRSAFAAAAAICDUSEFsyGQAgAAAADAQWjZg1kRSAEAAAAA4CC07MGsCKQAAAAAAHAwKqRgNgRSAAAAAAA4CC17MCsCKQAAAAAAHISWPZgVgRQAAAAAAA5GhRTMhkAKAAAAAAAHoWUPZkUgBQAAAACAg9CyB7MikAIAAAAAwEGokIJZEUgBAAAAAOBgBFIwGwIpAAAAAAAchJY9mBWBFAAAAAAADkLLHsyKQAoAAAAAAAcjkILZEEgBAAAAAOAgVEjBrAikAAAAAABwEO4hBbMikAIAAAAAwMGokILZEEgBAAAAAOAgtOzBrAikAAAAAABwEFr2YFYEUgAAAAAAOBgVUjAbAikAAAAAAByElj2YFYEUAAAAAAAOQssezIpACgAAAAAAB6NCCmZDIAUAAAAAgIPQsgezIpACAAAAAMBBaNmDWRFIAQAAAADgYFRIwWwIpAAAAAAAcBBa9mBWBFIAAAAAADgILXswK4cHUidOnNCzzz6roKAg+fj4qF69etq6dWuu88fHx8tisWR7pKSkWOeZNm2aIiMj5efnJz8/PzVr1kzLli0rjs0BAAAAAMBuVEjBbDwc+ebnzp1TixYt1Lp1ay1btkzlypXTgQMHFBgYeMdlExMT5efnZ30eHBxs/XPFihU1fvx4VatWTYZhaM6cOXr00Ue1Y8cO1alTp0i2BQAAAAAAe9GyB7NyaCA1YcIEhYeHKy4uzjotIiIiT8sGBwcrICAgx9c6d+5s8/yvf/2rpk2bpp9//plACgAAAADgNGjZg1k5tGVvyZIlio6OVteuXRUcHKyoqCjNnDkzT8s2aNBAoaGhatu2rTZs2JDrfBkZGZo/f74uXryoZs2a5TjP1atXlZaWZvMAAAAAAKC4UCEFs3FoIHX48GFNmzZN1apV04oVK9S3b18NHDhQc+bMyXWZ0NBQTZ8+XQsXLtTChQsVHh6uVq1aafv27Tbz7d69W6VKlZKXl5f69OmjxYsXq3bt2jmuc9y4cfL397c+wsPDC3U7AQAAAADICS17MCuLYTiuQLBEiRKKjo7WTz/9ZJ02cOBAbdmyRRs3bszzelq2bKlKlSpp3rx51mnXrl1TUlKSUlNT9dVXX2nWrFlat25djqHU1atXdfXqVevztLQ0hYeHKzU11eY+VQAAAAAAFKZ586QePaS2baWVKx09GiB3aWlp8vf3L7SsxKEVUqGhodkColq1aikpKcmu9TRp0kQHDx60mVaiRAlVrVpVjRo10rhx41S/fn1NnTo1x+W9vLysv8iX9QAAAAAAoLhQIQWzcWgg1aJFCyUmJtpM279/vypXrmzXehISEhQaGnrbeTIzM22qoAAAAAAAcDRa9mBWDv2VvcGDB6t58+YaO3asunXrps2bN2vGjBmaMWOGdZ6RI0fqxIkTmjt3riRpypQpioiIUJ06dXTlyhXNmjVLa9eu1cpbahtHjhypjh07qlKlSrpw4YI+//xzxcfHa8WKFcW+jQAAAAAA5IZf2YNZOTSQaty4sRYvXqyRI0dqzJgxioiI0JQpUxQbG2udJzk52aaF79q1axo6dKhOnDghX19fRUZGavXq1WrdurV1ntOnT6tHjx5KTk6Wv7+/IiMjtWLFCrVt27ZYtw8AAAAAgLygQgpm49Cbmjurwr5RFwAAAAAAOZk9W3r+ealjR+m77xw9GiB3d9VNzQEAAAAAMDNKRGBWBFIAAAAAADgYLXswGwIpAAAAAAAchF/Zg1kRSAEAAAAA4CC07MGsCKQAAAAAAHAwKqRgNgRSAAAAAAA4CC17MCsCKQAAAAAAHISWPZgVgRQAAAAAAA5ChRTMikAKAAAAAAAHI5CC2RBIAQAAAADgILTswawIpAAAAAAAcBBa9mBWBFIAAAAAADgYgRTMhkAKAAAAAAAHoUIKZkUgBQAAAACAg3APKZgVgRQAAAAAAA5GhRTMhkAKAAAAAAAHoWUPZkUgBQAAAACAg9CyB7MikAIAAAAAwMGokILZEEgBAAAAAOAgtOzBrAikAAAAAABwEFr2YFYEUgAAAAAAOBgVUjAbAikAAAAAAByElj2YFYEUAAAAAAAOQssezIpACgAAAAAAB6NCCmZDIAUAAAAAgIPQsgezIpACAAAAAMBBaNmDWRFIAQAAAADgYFRIwWwIpAAAAAAAcBBa9mBWBFIAAAAAADgILXswKwIpAAAAAAAcjAopmA2BFAAAAAAADkLLHsyKQAoAAAAAAAehZQ9mRSAFAAAAAICDUSEFsyGQAgAAAADAQWjZg1kRSAEAAAAA4CC07MGsCKQAAAAAAHAwKqRgNgRSAAAAAAA4CC17MCsCKQAAAAAAHISWPZgVgRQAAAAAAA5GhRTMhkAKAAAAAAAHoWUPZkUgBQAAAACAg9CyB7MikAIAAAAAwMGokILZEEgBAAAAAOAgtOzBrAikAAAAAABwEFr2YFYEUgAAAAAAOAgVUjArAikAAAAAAByMQApmQyAFAAAAAICD0LIHsyKQAgAAAADAQWjZg1kRSAEAAAAA4GAEUjAbAikAAAAAAByECimYFYEUAAAAAAAOwj2kYFYEUgAAAAAAOBgVUjAbAikAAAAAAByElj2YFYEUAAAAAAAOQssezIpACgAAAAAAB6NCCmZDIAUAAAAAgIPQsgezIpACAAAAAMBBaNmDWRFIAQAAAADgYFRIwWwIpAAAAAAAcBBa9mBWdgVS+/bt09tvv602bdro3nvvVWhoqCIjI9WzZ099/vnnunr1qt0DOHHihJ599lkFBQXJx8dH9erV09atW3OdPz4+XhaLJdsjJSXFOs+4cePUuHFjlS5dWsHBwerSpYsSExPtHhsAAAAAAEWJlj2YVZ4Cqe3btysmJkZRUVFav369mjZtqkGDBundd9/Vs88+K8Mw9MYbbygsLEwTJkzIczB17tw5tWjRQp6enlq2bJn27t2rSZMmKTAw8I7LJiYmKjk52foIDg62vrZu3Tr169dPP//8s1atWqXr16+rXbt2unjxYp7GBQAAAABAcaJCCmbjkZeZnnjiCb366qv66quvFBAQkOt8Gzdu1NSpUzVp0iS9/vrrd1zvhAkTFB4erri4OOu0iIiIvAxJwcHBuY5l+fLlNs9nz56t4OBgbdu2TQ888EC2+a9evWoToqWlpeVpDAAAAAAAFAQtezCrPFVI7d+/Xy+//PJtwyhJatasmebPn69XX301T2++ZMkSRUdHq2vXrgoODlZUVJRmzpyZp2UbNGig0NBQtW3bVhs2bLjtvKmpqZKkMmXK5Pj6uHHj5O/vb32Eh4fnaQwAAAAAABQELXswqzwFUp6enrd9/fz583bNn+Xw4cOaNm2aqlWrphUrVqhv374aOHCg5syZk+syoaGhmj59uhYuXKiFCxcqPDxcrVq10vbt23OcPzMzU4MGDVKLFi1Ut27dHOcZOXKkUlNTrY/jx4/nafwAAAAAABQGKqRgNnlq2bvVhAkTVKVKFT311FOSpG7dumnhwoUKCQnRd999p/r16+d5XZmZmYqOjtbYsWMlSVFRUdqzZ4+mT5+unj175rhMjRo1VKNGDevz5s2b69ChQ5o8ebLmzZuXbf5+/fppz549Wr9+fa7j8PLykpeXV57HDQAAAABAYaBlD2Zl16/sSdL06dOtLW2rVq3SqlWrtGzZMnXs2DHPrXpZQkNDVbt2bZtptWrVUlJSkl3radKkiQ4ePJhtev/+/bV06VJ9//33qlixol3rBAAAAACgqNGyB7Oyu0IqJSXFGkgtXbpU3bp1U7t27VSlShU1bdrUrnW1aNFCiYmJNtP279+vypUr27WehIQEhYaGWp8bhqEBAwZo8eLFio+Pz/ON0gEAAAAAcAQqpGA2dgdSgYGBOn78uMLDw7V8+XK99957km6GQBkZGXata/DgwWrevLnGjh2rbt26afPmzZoxY4ZmzJhhnWfkyJE6ceKE5s6dK0maMmWKIiIiVKdOHV25ckWzZs3S2rVrtXLlSusy/fr10+eff65vvvlGpUuXVkpKiiTJ399fPj4+9m4yAAAAAABFgpY9mJXdgdTjjz+uZ555RtWqVdPvv/+ujh07SpJ27NihqlWr2rWuxo0ba/HixRo5cqTGjBmjiIgITZkyRbGxsdZ5kpOTbVr4rl27pqFDh+rEiRPy9fVVZGSkVq9erdatW1vnmTZtmiSpVatWNu8XFxenXr162bnFAAAAAAAUDVr2YFZ2B1KTJ09WlSpVdPz4cU2cOFGlSpWSdDM4evnll+0eQKdOndSpU6dcX589e7bN89dee02vvfbabddpsEcDAAAAAFwIFVIwG7sDKU9PTw0bNizb9MGDBxfKgAAAAAAAMAta9mBWdgdSknTy5EmtX79ep0+fVmZmps1rAwcOLJSBAQAAAABwt6PBB2ZldyA1e/Zs/eUvf1GJEiUUFBQkyy0xrsViIZACAAAAAMBOVEjBbOwOpN566y2NGjVKI0eOlJubW1GMCQAAAAAAU6BlD2Zld6J06dIlde/enTAKAAAAAIAComUPZmV3qvTnP/9Z//73v4tiLAAAAAAAmBIVUjAbu1v2xo0bp06dOmn58uWqV6+ePD09bV7/4IMPCm1wAAAAAADczWjZg1nlK5BasWKFatSoIUnZbmoOAAAAAADyhpY9mJXdgdSkSZP0ySefqFevXkUwHAAAAAAAzIf6DpiN3feQ8vLyUosWLYpiLAAAAAAAmAotezAruwOpV155RX//+9+LYiwAAAAAAJgKLXswK7tb9jZv3qy1a9dq6dKlqlOnTrabmi9atKjQBgcAAAAAwN2MCimYld2BVEBAgB5//PGiGAsAAAAAAKZEIAWzsTuQiouLK4pxAAAAAABgOrTswazsvofUkSNHdODAgWzTDxw4oKNHjxbGmAAAAAAAMAVa9mBWdgdSvXr10k8//ZRt+qZNm9SrV6/CGBMAAAAAAKZCIAWzsTuQ2rFjh1q0aJFt+p/+9CclJCQUxpgAAAAAADAFKqRgVnYHUhaLRRcuXMg2PTU1VRkZGYUyKAAAAAAAzIB7SMGs7A6kHnjgAY0bN84mfMrIyNC4ceN03333FergAAAAAAAwAyqkYDZ2/8rehAkT9MADD6hGjRq6//77JUk//vij0tLStHbt2kIfIAAAAAAAdyta9mBWdldI1a5dW7t27VK3bt10+vRpXbhwQT169NCvv/6qunXrFsUYAQAAAAC4K9GyB7Oyu0JKksLCwjR27NjCHgsAAAAAAKZEhRTMJk8VUklJSXat9MSJE/kaDAAAAAAAZkLLHswqT4FU48aN9Ze//EVbtmzJdZ7U1FTNnDlTdevW1cKFCwttgAAAAAAA3K1o2YNZ5allb+/evfrrX/+qtm3bytvbW40aNVJYWJi8vb117tw57d27V7/88osaNmyoiRMn6qGHHirqcQMAAAAAcNegQgpmk6cKqaCgIH3wwQdKTk7WRx99pGrVqunMmTM6cOCAJCk2Nlbbtm3Txo0bCaMAAAAAAMgjWvZgVnbd1NzHx0dPPvmknnzyyaIaDwAAAAAApkHLHswqTxVSAAAAAACg6FAhBbMhkAIAAAAAwEFo2YNZEUgBAAAAAOAgtOzBrAikAAAAAABwMCqkYDYEUgAAAAAAOAgtezCrfAVS8+bNU4sWLRQWFqZjx45JkqZMmaJvvvmmUAcHAAAAAMDdjJY9mJXdgdS0adM0ZMgQPfTQQzp//rwyMjIkSQEBAZoyZUphjw8AAAAAgLseFVIwG7sDqb///e+aOXOm3njjDbm7u1unR0dHa/fu3YU6OAAAAAAA7ma07MGs7A6kjhw5oqioqGzTvby8dPHixUIZFAAAAAAAZkDLHszK7kAqIiJCCQkJ2aYvX75ctWrVKowxAQAAAABgKlRIwWw87F1gyJAh6tevn65cuSLDMLR582Z98cUXGjdunGbNmlUUYwQAAAAA4K5Eyx7Myu5Aqnfv3vLx8dGbb76pS5cu6ZlnnlFYWJimTp2q7t27F8UYAQAAAAC4K9GyB7OyO5CSpNjYWMXGxurSpUtKT09XcHBwYY8LAAAAAADToEIKZpOvQCqLr6+vfH19C2ssAAAAAACYCi17MCu7A6moqChZcthTLBaLvL29VbVqVfXq1UutW7culAECAIDcDRwoffqpo0eBLA8+KH35Jf+oAADkHS17MCu7A6kOHTpo2rRpqlevnpo0aSJJ2rJli3bt2qVevXpp7969iomJ0aJFi/Too48W+oABAMD/xMVJ6emOHgWyfPWVdOGC5Ofn6JEAAFwNFzNgNnYHUmfOnNHQoUP11ltv2Ux/7733dOzYMa1cuVJvv/223n33XQIpAACKWGbmzf+uXi1VrOjYsZjZ9etSvXo3/5z1nQAAkBe07MGs7A6kvvzyS23bti3b9O7du6tRo0aaOXOmnn76aX3wwQeFMkAAAJC7rJPYqlWlypUdOxYzu379f3+m9QIAYA+OGzArN3sX8Pb21k8//ZRt+k8//SRvb29JUmZmpvXPAACg6HBV1Tnc+vnzDwsAQH5wLIfZ2F0hNWDAAPXp00fbtm1T48aNJd28h9SsWbP0+uuvS5JWrFihBg0aFOpAAQBAdlntYW52X2JCYbr186dlDwBgDy4uwazsDqTefPNNRURE6KOPPtK8efMkSTVq1NDMmTP1zDPPSJL69Omjvn37Fu5IAQBANpzEOgcqpAAA+cVxA2ZlVyB148YNjR07Vi+88IJiY2Nznc/Hx6fAAwMAAHdGIOUcCKQAAPnFsRxmZVeBv4eHhyZOnKgbN24U1XgAAIAdaNlzHln/kKBlDwCQHwRSMBu7T18ffPBBrVu3rijGAgAA7MRVVeeR9R1QIQUAsAfHDZiV3feQ6tixo0aMGKHdu3erUaNGKlmypM3rjzzySKENDgAA3B6BlPOgQgoAkB8cy2FWdgdSL7/8siTpgw8+yPaaxWJRRkZGwUcFAADu6NYrqrTsOZ6bm5SRwZVuAED+EEjBbOwOpDK57AcAgFO4NfjgJNbxaNkDAOQHFVIwK66nAgDgom69RsRJrOPRsgcAyA8uZMCs7K6QkqSLFy9q3bp1SkpK0rVr12xeGzhwYKEMDAAA3B4te84l6zvgHxYAgPzg4hLMxu5AaseOHXrooYd06dIlXbx4UWXKlNGZM2fk6+ur4OBgAikAAIoJLXvOhZY9AEB+0LIHs7L7eurgwYPVuXNnnTt3Tj4+Pvr555917NgxNWrUSO+//35RjBEAAOTg1tYwKqQcL+s7oGUPAGAPLmTArOw+fU1ISNDQoUPl5uYmd3d3Xb16VeHh4Zo4caJef/31ohgjAADIARVSzoUKKQBAQXAsh9nYHUh5enrK7f8vAQYHByspKUmS5O/vr+PHj9s9gBMnTujZZ59VUFCQfHx8VK9ePW3dujXX+ePj42WxWLI9UlJSrPP88MMP6ty5s8LCwmSxWPT111/bPS4AAJwdgZRzIZACAOQHLXswK7vvIRUVFaUtW7aoWrVqatmypUaNGqUzZ85o3rx5qlu3rl3rOnfunFq0aKHWrVtr2bJlKleunA4cOKDAwMA7LpuYmCg/Pz/r8+DgYOufL168qPr16+uFF17Q448/bteYAABwFbTsORda9gAA+cGFDJiV3YHU2LFjdeHCBUnSX//6V/Xo0UN9+/ZVtWrV9Mknn9i1rgkTJig8PFxxcXHWaREREXlaNjg4WAEBATm+1rFjR3Xs2DHP47h69aquXr1qfZ6WlpbnZQEAcBQqpJwLFVIAgILgWA6zsft6anR0tFq3bi3pZii0fPlypaWladu2bapfv75d61qyZImio6PVtWtXBQcHKyoqSjNnzszTsg0aNFBoaKjatm2rDRs22LsZNsaNGyd/f3/rIzw8vEDrAwCgOBBIORcCKQBAftCyB7NyaIH/4cOHNW3aNFWrVk0rVqxQ3759NXDgQM2ZMyfXZUJDQzV9+nQtXLhQCxcuVHh4uFq1aqXt27fnexwjR45Uamqq9ZGfe2EBAFDcaNlzLrTsAQDygwsZMCu7W/ZOnTqlYcOGac2aNTp9+rSMP+w9GRkZeV5XZmamoqOjNXbsWEk370+1Z88eTZ8+XT179sxxmRo1aqhGjRrW582bN9ehQ4c0efJkzZs3z97NkSR5eXnJy8srX8sCAOAoVEg5FyqkAAAFwbEcZmN3INWrVy8lJSXprbfeUmhoqCwF2GtCQ0NVu3Ztm2m1atXSwoUL7VpPkyZNtH79+nyPAwAAV3RrJQ4nsY5HIAUAyA9a9mBWdgdS69ev148//qgGDRoU+M1btGihxMREm2n79+9X5cqV7VpPQkKCQkNDCzweAABcya3BBy17jkfLHgAgP7iQAbOyO5AKDw/P1qaXX4MHD1bz5s01duxYdevWTZs3b9aMGTM0Y8YM6zwjR47UiRMnNHfuXEnSlClTFBERoTp16ujKlSuaNWuW1q5dq5UrV1qXSU9P18GDB63Pjxw5ooSEBJUpU0aVKlUqlLEDAOBotOw5FyqkAAAFwbEcZmP39dQpU6ZoxIgROnr0aIHfvHHjxlq8eLG++OIL1a1bV++++66mTJmi2NhY6zzJyclKSkqyPr927ZqGDh2qevXqqWXLltq5c6dWr16tBx980DrP1q1bFRUVpaioKEnSkCFDFBUVpVGjRhV4zAAAOAsqcZwLgRQAID9o2YNZWYw8lDsFBgba3Cvq4sWLunHjhnx9feXp6Wkz79mzZwt/lMUsLS1N/v7+Sk1NlZ+fn6OHAwBAjlJSpNDQm61idvymCIpIeLj03/9KW7dKjRo5ejQAAFfRurUUHy998YXUvbujRwPkrrCzkjy17E2ZMqXAbwQAAAoXV1SdCxVSAICC4HgOs8lTINWzZ8+iHgcAALBTVsseJ7DOgUAKAJAfXGCCWdl9D6nvvvtOK1asyDZ95cqVWrZsWaEMCgAA3FnWCSy/sOcc+JU9AEB+cCEDZmX3KeyIESOUkcONKjIzMzVixIhCGRQAALgzrqg6FyqkAAAFwfEcZmN3IHXgwAHVrl072/SaNWvq4MGDhTIoAABwZ7TsOZes74EKKQCAPbjABLOyO5Dy9/fX4cOHs00/ePCgSpYsWSiDAgAAd0bLnnPJ+h6okAIA2IPjBszK7lPYRx99VIMGDdKhQ4es0w4ePKihQ4fqkUceKdTBAQCA3HFF1bnQsgcAKAiO5zAbuwOpiRMnqmTJkqpZs6YiIiIUERGhWrVqKSgoSO+//35RjBEAAOQgqzWMCinnwE3NAQD5wQUmmJWHvQv4+/vrp59+0qpVq7Rz5075+PgoMjJSDzzwQFGMDwAA5IITWOdChRQAID84bsCs7A6kJMlisahdu3Zq166dJOn8+fOFOSYAAJAHBFLOhUAKAFAQHM9hNnYX+U+YMEELFiywPu/WrZuCgoJUoUIF7dy5s1AHBwAAckfLnnOhZQ8AkB9cYIJZ2X0KO336dIWHh0uSVq1apVWrVmnZsmXq2LGjXn311UIfIAAAyBknsM6FCikAQH5w3IBZ2d2yl5KSYg2kli5dqm7duqldu3aqUqWKmjZtWugDBAAAOcuqxCGQcg4EUgCAguB4DrOxu0IqMDBQx48flyQtX75cMTExkiTDMJSRkVG4owMAALnKCj5o2XMOtOwBAPKDimeYld0VUo8//rieeeYZVatWTb///rs6duwoSdqxY4eqVq1a6AMEAAA54wTWuVAhBQDID44bMCu7A6nJkyerSpUqOn78uCZOnKhSpUpJkpKTk/Xyyy8X+gABAEDOaNlzLgRSAID84AITzMruQMrT01PDhg3LNn3w4MGFMiAAAJA3tOw5F1r2AAAFQSAFs8lTILVkyRJ17NhRnp6eWrJkyW3nfeSRRwplYAAA4Pa4oupcqJACAOQHxw2YVZ4CqS5duiglJUXBwcHq0qVLrvNZLBZubA4AQDGhZc+5EEgBAPKDC0wwqzwFUpm31J5nUocOAIBToGXPudCyBwAoCAIpmA2nsAAAuCiuqDoXKqQAAPnB8RxmZddNzTMzMzV79mwtWrRIR48elcViUUREhJ588kk999xzsrAHAQBQbGjZcy4EUgCA/OC4AbPKc4WUYRh65JFH1Lt3b504cUL16tVTnTp1dOzYMfXq1UuPPfZYUY4TAAD8AS17zoWWPQBAQXCBCWaT5wqp2bNn64cfftCaNWvUunVrm9fWrl2rLl26aO7cuerRo0ehDxIAAGRHib9zoUIKAJAfHM9hVnm+pvrFF1/o9ddfzxZGSVKbNm00YsQIffbZZ4U6OAAAkDta9pxL1vdAhRQAwB5cyIBZ5TmQ2rVrlzp06JDr6x07dtTOnTsLZVAAAODOaNlzLlnfA/+wAADkBxeYYDZ5PoU9e/asypcvn+vr5cuX17lz5wplUAAA4M6okHIutOwBAPKDlj2YVZ4DqYyMDHl45H7LKXd3d924caNQBgUAAO6MCinnwk3NAQD5wYUMmFWeb2puGIZ69eolLy+vHF+/evVqoQ0KAADcGVdUnQsVUgCAguB4DrPJcyDVs2fPO87DL+wBAFB8aNlzLgRSAID84AITzCrPgVRcXFxRjgMAANiJlj3nQsseACA/uJABs+IUFgAAF8UVVedChRQAoCA4nsNsCKQAAHBRtOw5FwIpAEB+cIEJZkUgBQCAi6Jlz7nQsgcAyA8uZMCsOIUFAMBFcUXVuVAhBQAoCI7nMBsCKQAAXBQte86FQAoAkB9cYIJZEUgBAOCiaNlzLrTsAQDygwsZMCtOYQEAcFFcUXUuVEgBAAqC4znMhkAKAAAXRcuecyGQAgDkBxeYYFYEUgAAuCha9pwLLXsAgPzgQgbMilNYAABcFFdUnQsVUgCAguB4DrMhkAIAwEXRsudcCKQAAPnBBSaYFYEUAAAuipY950LLHgAgP7iQAbPiFBYAABdFhZRzoUIKAFAQHM9hNgRSAAC4KEr8nUvW90CFFADAHhzPYVYEUgAAuCha9pxL1vdAhRQAwB4cN2BWnMICAOCiaNlzLrTsAQAKguM5zIZACgAAF0WFlHPhpuYAgPygZQ9mxSksAAAuihNY50KFFAAgPzhuwKwIpAAAcFG07DkXAikAQEFwPIfZEEgBAOCiaNlzLrTsAQDyg4pnmBWnsAAAuChOYJ0LFVIAgPzguAGzIpACAMBF0bLnXAikAAD5wQUmmBWBFAAALoqWPedCyx4AoCAIpGA2nMICAOCiuKLqXKiQAgDkB8cNmBWBFAAALoqWPedCIAUAyA8uMMGsCKQAAHBRtOw5F1r2AAAFQSAFs+EUFgAAF0WFlHOhQgoAkB9USMGsHB5InThxQs8++6yCgoLk4+OjevXqaevWrbnOHx8fL4vFku2RkpJiM98//vEPValSRd7e3mratKk2b95c1JsCAECx4gTWuRBIAQDyg+MGzMrDkW9+7tw5tWjRQq1bt9ayZctUrlw5HThwQIGBgXdcNjExUX5+ftbnwcHB1j8vWLBAQ4YM0fTp09W0aVNNmTJF7du3V2Jios18AAC4Mlr2nAstewCAguACE8zGoYHUhAkTFB4erri4OOu0iIiIPC0bHBysgICAHF/74IMP9OKLL+r555+XJE2fPl3ffvutPvnkE40YMaLA4wYAwBnQsudcqJACAOQHFc8wK4deU12yZImio6PVtWtXBQcHKyoqSjNnzszTsg0aNFBoaKjatm2rDRs2WKdfu3ZN27ZtU0xMjHWam5ubYmJitHHjxhzXdfXqVaWlpdk8AABwdpzAOhcCKQBAfnDcgFk5NJA6fPiwpk2bpmrVqmnFihXq27evBg4cqDlz5uS6TGhoqKZPn66FCxdq4cKFCg8PV6tWrbR9+3ZJ0pkzZ5SRkaHy5cvbLFe+fPls95nKMm7cOPn7+1sf4eHhhbeRAAAUEVr2nAstewCAguACE8zGoS17mZmZio6O1tixYyVJUVFR2rNnj6ZPn66ePXvmuEyNGjVUo0YN6/PmzZvr0KFDmjx5subNm5evcYwcOVJDhgyxPk9LSyOUAgA4PVr2nAsVUgCA/KDiGWbl0GuqoaGhql27ts20WrVqKSkpya71NGnSRAcPHpQklS1bVu7u7jp16pTNPKdOnVJISEiOy3t5ecnPz8/mAQCAs+ME1rlkfQ9USAEA7MGFDJiVQwOpFi1aKDEx0Wba/v37VblyZbvWk5CQoNDQUElSiRIl1KhRI61Zs8b6emZmptasWaNmzZoVfNAAADgJWvacS9b3wD8sAAD5wQUmmI1DW/YGDx6s5s2ba+zYserWrZs2b96sGTNmaMaMGdZ5Ro4cqRMnTmju3LmSpClTpigiIkJ16tTRlStXNGvWLK1du1YrV660LjNkyBD17NlT0dHRatKkiaZMmaKLFy9af3UPAIC7AS17zoWWPQBAflDxDLNyaCDVuHFjLV68WCNHjtSYMWMUERGhKVOmKDY21jpPcnKyTQvftWvXNHToUJ04cUK+vr6KjIzU6tWr1bp1a+s8Tz31lH777TeNGjVKKSkpatCggZYvX57tRucAALgyKqScCzc1BwDkBxcyYFYODaQkqVOnTurUqVOur8+ePdvm+WuvvabXXnvtjuvt37+/+vfvX9DhAQDgtLii6lyokAIAFATHc5gN11QBAHBRtOw5FwIpAEB+cIEJZkUgBQCAi6Jlz7nQsgcAyA8uZMCsOIUFAMBFcUXVuVAhBQAoCI7nMBsCKQAAXBQte86FQAoAkB9cYIJZEUgBAOCiaNlzLrTsAQDygwsZMCtOYQEAcFFUSDkXKqQAAAXB8RxmQyAFAICLosTfuRBIAQDyg+M5zIpACgAAF0XLnnOhZQ8AkB9cyIBZcQoLAICLomXPuVAhBQAoCI7nMBsCKQAAXBQl/s6FQAoAkB8cz2FWBFIAALgoWvacCy17AID84EIGzIpTWAAAXBQte86FCikAQEFwPIfZEEgBAOCiKPF3LgRSAID84HgOsyKQAgDARdGy51xo2QMA5AcXMmBWnMICAOCiaNlzLlRIAQAKguM5zIZACgAAF0WJv3PJ+h6okAIA2IPjOcyKQAoAABdFy55zyfoeqJACANiD4wbMilNYAABcFC17zoWWPQBAQXA8h9kQSAEA4KKokHIu3NQcAJAftOzBrDiFBQDARVEh5VyokAIA5AfHDZgVgRQAAC6KK6rOhUAKAJAfHM9hVgRSAAC4KFr2nAstewCAgiCQgtlwCgsAgIuiZc+5UCEFAMgPjhswKwIpAABcFCX+zoVACgCQHxzPYVYEUgAAuCha9pwLLXsAgIIgkILZcAoLAICLomXPuVAhBQDID44bMCsCKQAAXBQl/s6FQAoAUBAcz2E2BFIAALgoWvacCy17AICCIJCC2XAKCwCAi6Jlz7lQIQUAsNetxwyO5zAbAikAAFwULXvOhUAKAGAvjhkwMwIpAABcFC17zoWWPQBAQXCBCWbDKSwAAC6Klj3nQoUUAMBetOzBzAikAABwUbTsORcCKQCAvThmwMwIpAAAcFG07DkXWvYAAAXBBSaYDaewAAC4KFr2nAsVUgAAe9GyBzMjkAIAwEXRsudcsr4HKqQAAHnFRQyYGYEUAAAuKiv4oGXPOWR9D/zjAgCQH1xggtlwCgsAgIuiQsq50LIHALAXLXswMwIpAABcFDc1dy7c1BwAYC8uYsDMOIUFAMBFcVNz50KFFACgIDiew2wIpAAAcFG07DkXAikAgL1o2YOZEUgBAOCiaNlzLrTsAQDsxUUMmBmnsAAAuCha9pwLFVIAgILgeA6zIZACAMBF0bLnXAikAAD2omUPZkYgBQCAi6Jlz7nQsgcAsBcXMWBmnMICAOCiaNlzLlRIAQAKguM5zIZACgAAF0XLnnMhkAIA2IuWPZgZgRQAAC6Klj3nQsseAMBeXMSAmXEKCwCAi6Jlz7lQIQUAKAiO5zAbAikAAFwULXvOhUAKAGAvWvZgZgRSAAC4qKwKKVr2nAMtewAAe3ERA2bGKSwAAC6KCinnQoUUAKAgOJ7DbAikAABwUQRSzoVACgBgL1r2YGYEUgAAuCha9pwLLXsAAHtxEQNmxiksAAAuigop50KFFACgIDiew2wIpAAAcFEEUs4l63ugQgoAkFe07MHMCKQAAHBRtOw5l6zvgQopAEBeccyAmXEKCwCAi6JCyrnQsgcAsBcVUjAzAikAAFwUgZRzoWUPAFAQHM9hNg4PpE6cOKFnn31WQUFB8vHxUb169bR169Y8LbthwwZ5eHioQYMGNtMvXLigQYMGqXLlyvLx8VHz5s21ZcuWIhg9AACOQ8uec6FlDwBgL44ZMDOHnsKeO3dOLVq0kKenp5YtW6a9e/dq0qRJCgwMvOOy58+fV48ePfTggw9me613795atWqV5s2bp927d6tdu3aKiYnRiRMnimIzAABwCCqknAstewAAe9GyBzPzcOSbT5gwQeHh4YqLi7NOi4iIyNOyffr00TPPPCN3d3d9/fXX1umXL1/WwoUL9c033+iBBx6QJI0ePVr/+c9/NG3aNL333nuFug0AADhK1kksFVLOIet7oGUPAADgzhx6CrtkyRJFR0era9euCg4OVlRUlGbOnHnH5eLi4nT48GG9/fbb2V67ceOGMjIy5O3tbTPdx8dH69evz3F9V69eVVpams0DAABnlxV8cEXVOVAhBQCwF8cMmJlDA6nDhw9r2rRpqlatmlasWKG+fftq4MCBmjNnTq7LHDhwQCNGjNCnn34qD4/sBV6lS5dWs2bN9O677+rkyZPKyMjQp59+qo0bNyo5OTnHdY4bN07+/v7WR3h4eKFtIwAARYWWPedCIAUAsBfHcpiZQwOpzMxMNWzYUGPHjlVUVJReeuklvfjii5o+fXqO82dkZOiZZ57RO++8o+rVq+e63nnz5skwDFWoUEFeXl768MMP9fTTT8stl56GkSNHKjU11fo4fvx4oWwfAABFiZY950LLHgAgvwikYEYOvYdUaGioateubTOtVq1aWrhwYY7zX7hwQVu3btWOHTvUv39/STdDLcMw5OHhoZUrV6pNmza69957tW7dOl28eFFpaWkKDQ3VU089pXvuuSfH9Xp5ecnLy6twNw4AgCJGy55zoUIKAGAvKqRgZg4NpFq0aKHExESbafv371flypVznN/Pz0+7d++2mfbPf/5Ta9eu1VdffZXthuglS5ZUyZIlde7cOa1YsUITJ04s3A0AAMCBOIl1LgRSAAB7ccyAmTk0kBo8eLCaN2+usWPHqlu3btq8ebNmzJihGTNmWOcZOXKkTpw4oblz58rNzU1169a1WUdwcLC8vb1tpq9YsUKGYahGjRo6ePCgXn31VdWsWVPPP/98sW0bAABFLatCipY950DLHgAgv7i4BDNy6Cls48aNtXjxYn3xxReqW7eu3n33XU2ZMkWxsbHWeZKTk5WUlGTXelNTU9WvXz/VrFlTPXr00H333acVK1bI09OzsDcBAACHoULKuVAhBQCwF8dymJnFMDht+qO0tDT5+/srNTVVfn5+jh4OAAA5qltX+uUXac0aqU0bR48Gv/4q1aolBQZKZ886ejQAAFdw/LhUqZLk6Sldu+bo0QC3V9hZCUX+AAC4KFr2nAstewCA/KJCCmbEKSwAAC6KMn/nQsseAMBeHMthZgRSAAC4KE5inQuBFADAXhwzYGYEUgAAuCha9pwLLXsAgPzi4hLMiFNYAABcFBVSzoUKKQCAvTiWw8wIpAAAcFGcxDqXrO+BCikAQF5xEQNmRiAFAICLomXPuWR9D/zjAgBgLy4uwYw4hQUAwEVRIeVcaNkDANiLYznMjEAKAAAXxUmsc6FlDwBgLy5iwMwIpAAAcFG07DkXWvYAAPnFxSWYEaewAAC4KCqknAstewAAe3Esh5kRSAEA4KKokHIuWd8DLXsAgLziIgbMjFNYAABcFFdVnQvfAwAgvziGwIwIpAAAcFEEUs7l1u+BK94AgLzgWA4zI5ACAMBF0bLnXG79HmjbAwDkBRcwYGacwgIA4KK4qupcqJACAOQXx3KYEYEUAAAuikDKuRBIAQDsxbEcZkYgBQCAi6Jlz7nQsgcAsBcXMGBmnMICAOCiuKrqXKiQAgDkF8dymBGBFAAALopAyrkQSAEA7MWxHGZGIAUAgIuiZc+50LIHALAXFzBgZpzCAgDgoriq6lyokAIA5BfHcpgRgRQAAC6KQMq5EEgBAOzFsRxmRiAFAICLomXPudCyBwCwFxcwYGacwgIA4KK4qupcqJACAOQXx3KYEYEUAAAuikDKudz6PVAhBQDIC47lMDMCKQAAXBQte87l1u+BCikAQF5wvICZcQoLAICL4qqqc6FlDwBgL47lMDMCKQAAXFRWhRQnsc6Blj0AQH5xLIcZeTh6ACg6r70mXb/u6FEAAIpKRsbN/9Ky5xxu/cfEW29Jvr6OGwsAwDWcPu3oEQCOQyB1F/voI+nyZUePAgBQlNzdCT6cib+/lJoqzZjh6JEAAFyJv7+jRwAUPwKpu9iwYVRIAcDdrkkTTmKdyaJF0qpVjh4FAMCVWCzSo486ehRA8bMYBrfd/KO0tDT5+/srNTVVfn5+jh4OAAAAAACAQxV2VsJdJwAAAAAAAFCsCKQAAAAAAABQrAikAAAAAAAAUKwIpAAAAAAAAFCsCKQAAAAAAABQrAikAAAAAAAAUKwIpAAAAAAAAFCsCKQAAAAAAABQrAikAAAAAAAAUKwIpAAAAAAAAFCsCKQAAAAAAABQrAikAAAAAAAAUKwIpAAAAAAAAFCsCKQAAAAAAABQrAikAAAAAAAAUKwIpAAAAAAAAFCsPBw9AGdkGIYkKS0tzcEjAQAAAAAAcLysjCQrMykoAqkcXLhwQZIUHh7u4JEAAAAAAAA4jwsXLsjf37/A67EYhRVt3UUyMzN18uRJlS5dWhaLxdHDybe0tDSFh4fr+PHj8vPzc/RwAJfC/gMUDPsQkH/sP0D+sf8A+Xen/ccwDF24cEFhYWFycyv4HaCokMqBm5ubKlas6OhhFBo/Pz/+ZwzkE/sPUDDsQ0D+sf8A+cf+A+Tf7fafwqiMysJNzQEAAAAAAFCsCKQAAAAAAABQrAik7mJeXl56++235eXl5eihAC6H/QcoGPYhIP/Yf4D8Y/8B8q+49x9uag4AAAAAAIBiRYUUAAAAAAAAihWBFAAAAAAAAIoVgRQAAAAAAACKFYEUAAAAAAAAihWBFAAAAAAAAIoVgdRd7B//+IeqVKkib29vNW3aVJs3b3b0kACHGjdunBo3bqzSpUsrODhYXbp0UWJios08V65cUb9+/RQUFKRSpUrpiSee0KlTp2zmSUpK0sMPPyxfX18FBwfr1Vdf1Y0bN4pzUwCHGz9+vCwWiwYNGmSdxv4D3N6JEyf07LPPKigoSD4+PqpXr562bt1qfd0wDI0aNUqhoaHy8fFRTEyMDhw4YLOOs2fPKjY2Vn5+fgoICNCf//xnpaenF/emAMUqIyNDb731liIiIuTj46N7771X7777rm79wXj2H+CmH374QZ07d1ZYWJgsFou+/vprm9cLa1/ZtWuX7r//fnl7eys8PFwTJ060e6wEUnepBQsWaMiQIXr77be1fft21a9fX+3bt9fp06cdPTTAYdatW6d+/frp559/1qpVq3T9+nW1a9dOFy9etM4zePBg/ec//9G///1vrVu3TidPntTjjz9ufT0jI0MPP/ywrl27pp9++klz5szR7NmzNWrUKEdsEuAQW7Zs0ccff6zIyEib6ew/QO7OnTunFi1ayNPTU8uWLdPevXs1adIkBQYGWueZOHGiPvzwQ02fPl2bNm1SyZIl1b59e125csU6T2xsrH755RetWrVKS5cu1Q8//KCXXnrJEZsEFJsJEyZo2rRp+uijj7Rv3z5NmDBBEydO1N///nfrPOw/wE0XL15U/fr19Y9//CPH1wtjX0lLS1O7du1UuXJlbdu2TX/72980evRozZgxw77BGrgrNWnSxOjXr5/1eUZGhhEWFmaMGzfOgaMCnMvp06cNSca6desMwzCM8+fPG56ensa///1v6zz79u0zJBkbN240DMMwvvvuO8PNzc1ISUmxzjNt2jTDz8/PuHr1avFuAOAAFy5cMKpVq2asWrXKaNmypfHKK68YhsH+A9zJ8OHDjfvuuy/X1zMzM42QkBDjb3/7m3Xa+fPnDS8vL+OLL74wDMMw9u7da0gytmzZYp1n2bJlhsViMU6cOFF0gwcc7OGHHzZeeOEFm2mPP/64ERsbaxgG+w+QG0nG4sWLrc8La1/55z//aQQGBtqcvw0fPtyoUaOGXeOjQuoudO3aNW3btk0xMTHWaW5uboqJidHGjRsdODLAuaSmpkqSypQpI0natm2brl+/brPv1KxZU5UqVbLuOxs3blS9evVUvnx56zzt27dXWlqafvnll2IcPeAY/fr108MPP2yzn0jsP8CdLFmyRNHR0eratauCg4MVFRWlmTNnWl8/cuSIUlJSbPYhf39/NW3a1GYfCggIUHR0tHWemJgYubm5adOmTcW3MUAxa968udasWaP9+/dLknbu3Kn169erY8eOkth/gLwqrH1l48aNeuCBB1SiRAnrPO3bt1diYqLOnTuX5/F4FHSD4HzOnDmjjIwMmxN+SSpfvrx+/fVXB40KcC6ZmZkaNGiQWrRoobp160qSUlJSVKJECQUEBNjMW758eaWkpFjnyWnfynoNuJvNnz9f27dv15YtW7K9xv4D3N7hw4c1bdo0DRkyRK+//rq2bNmigQMHqkSJEurZs6d1H8hpH7l1HwoODrZ53cPDQ2XKlGEfwl1txIgRSktLU82aNeXu7q6MjAz99a9/VWxsrCSx/wB5VFj7SkpKiiIiIrKtI+u1W9vRb4dACoAp9evXT3v27NH69esdPRTAJRw/flyvvPKKVq1aJW9vb0cPB3A5mZmZio6O1tixYyVJUVFR2rNnj6ZPn66ePXs6eHSAc/vyyy/12Wef6fPPP1edOnWUkJCgQYMGKSwsjP0HcGG07N2FypYtK3d392y/bHTq1CmFhIQ4aFSA8+jfv7+WLl2q77//XhUrVrRODwkJ0bVr13T+/Hmb+W/dd0JCQnLct7JeA+5W27Zt0+nTp9WwYUN5eHjIw8ND69at04cffigPDw+VL1+e/Qe4jdDQUNWuXdtmWq1atZSUlCTpf/vA7c7fQkJCsv1AzY0bN3T27Fn2IdzVXn31VY0YMULdu3dXvXr19Nxzz2nw4MEaN26cJPYfIK8Ka18prHM6Aqm7UIkSJdSoUSOtWbPGOi0zM1Nr1qxRs2bNHDgywLEMw1D//v21ePFirV27NluZaaNGjeTp6Wmz7yQmJiopKcm67zRr1ky7d++2+Z/0qlWr5Ofnl+0fGsDd5MEHH9Tu3buVkJBgfURHRys2Ntb6Z/YfIHctWrRQYmKizbT9+/ercuXKkqSIiAiFhITY7ENpaWnatGmTzT50/vx5bdu2zTrP2rVrlZmZqaZNmxbDVgCOcenSJbm52f7T1d3dXZmZmZLYf4C8Kqx9pVmzZvrhhx90/fp16zyrVq1SjRo18tyuJ4lf2btbzZ8/3/Dy8jJmz55t7N2713jppZeMgIAAm182Asymb9++hr+/vxEfH28kJydbH5cuXbLO06dPH6NSpUrG2rVrja1btxrNmjUzmjVrZn39xo0bRt26dY127doZCQkJxvLly41y5coZI0eOdMQmAQ5166/sGQb7D3A7mzdvNjw8PIy//vWvxoEDB4zPPvvM8PX1NT799FPrPOPHjzcCAgKMb775xti1a5fx6KOPGhEREcbly5et83To0MGIiooyNm3aZKxfv96oVq2a8fTTTztik4Bi07NnT6NChQrG0qVLjSNHjhiLFi0yypYta7z22mvWedh/gJsuXLhg7Nixw9ixY4chyfjggw+MHTt2GMeOHTMMo3D2lfPnzxvly5c3nnvuOWPPnj3G/PnzDV9fX+Pjjz+2a6wEUnexv//970alSpWMEiVKGE2aNDF+/vlnRw8JcChJOT7i4uKs81y+fNl4+eWXjcDAQMPX19d47LHHjOTkZJv1HD161OjYsaPh4+NjlC1b1hg6dKhx/fr1Yt4awPH+GEix/wC395///MeoW7eu4eXlZdSsWdOYMWOGzeuZmZnGW2+9ZZQvX97w8vIyHnzwQSMxMdFmnt9//914+umnjVKlShl+fn7G888/b1y4cKE4NwModmlpacYrr7xiVKpUyfD29jbuuece44033rD5yXn2H+Cm77//Psd/8/Ts2dMwjMLbV3bu3Gncd999hpeXl1GhQgVj/Pjxdo/VYhiGkY9KLwAAAAAAACBfuIcUAAAAAAAAihWBFAAAAAAAAIoVgRQAAAAAAACKFYEUAAAAAAAAihWBFAAAAAAAAIoVgRQAAAAAAACKFYEUAAAAAAAAihWBFAAAcFnx8fGyWCw6f/68o4fiNBITExUSEqILFy44eij5+n5GjBihAQMGFN2gAACAUyCQAgAALqFVq1YaNGiQzbTmzZsrOTlZ/v7+jhmUnC8UGzlypAYMGKDSpUtLkq5cuaJevXqpXr168vDwUJcuXbItk7UNf3ykpKQUaCz5+X6GDRumOXPm6PDhwwV6bwAA4NwIpAAAgMsqUaKEQkJCZLFYHD0Up5CUlKSlS5eqV69e1mkZGRny8fHRwIEDFRMTc9vlExMTlZycbH0EBwcXaDz5+X7Kli2r9u3ba9q0aQV6bwAA4NwIpAAAgNPr1auX1q1bp6lTp1qrd44ePZqtOmn27NkKCAjQ0qVLVaNGDfn6+urJJ5/UpUuXNGfOHFWpUkWBgYEaOHCgMjIyrOu/evWqhg0bpgoVKqhkyZJq2rSp4uPjra8fO3ZMnTt3VmBgoEqWLKk6derou+++09GjR9W6dWtJUmBgoCwWizUMyszM1Lhx4xQRESEfHx/Vr19fX331lXWdWWP/9ttvFRkZKW9vb/3pT3/Snj177vi+ufnyyy9Vv359VahQwTqtZMmSmjZtml588UWFhITc9nMODg5WSEiI9eHm9r9TxVatWmnAgAEaNGiQAgMDVb58ec2cOVMXL17U888/r9KlS6tq1apatmxZtm384/ezYsUK1apVS6VKlVKHDh2UnJxsM47OnTtr/vz5tx0rAABwbQRSAADA6U2dOlXNmjXTiy++aK3eCQ8Pz3HeS5cu6cMPP9T8+fO1fPlyxcfH67HHHtN3332n7777TvPmzdPHH39sEw71799fGzdu1Pz587Vr1y517dpVHTp00IEDByRJ/fr109WrV/XDDz9o9+7dmjBhgkqVKqXw8HAtXLhQ0v+qi6ZOnSpJGjdunObOnavp06frl19+0eDBg/Xss89q3bp1NuN99dVXNWnSJG3ZskXlypVT586ddf369du+b25+/PFHRUdH5/tzbtCggUJDQ9W2bVtt2LAh2+tz5sxR2bJltXnzZg0YMEB9+/ZV165d1bx5c23fvl3t2rXTc889p0uXLuX6HpcuXdL777+vefPm6YcfflBSUpKGDRtmM0+TJk303//+V0ePHs33tgAAAOfm4egBAAAA3Im/v79KlCghX1/fO1b5XL9+XdOmTdO9994rSXryySc1b948nTp1SqVKlVLt2rXVunVrff/993rqqaeUlJSkuLg4JSUlKSwsTNLN+xgtX75ccXFxGjt2rJKSkvTEE0+oXr16kqR77rnH+n5lypSRdLO6KCAgQNLNiquxY8dq9erVatasmXWZ9evX6+OPP1bLli2ty7/99ttq27atpJuBT8WKFbV48WJ169bttu+bk2PHjuUrkAoNDdX06dMVHR2tq1evatasWWrVqpU2bdqkhg0bWuerX7++3nzzTUk371U1fvx4lS1bVi+++KIkadSoUZo2bZp27dqlP/3pTzm+1/Xr1zV9+nTr99O/f3+NGTPGZp6s7+HYsWOqUqWK3dsDAACcH4EUAAC4q/j6+lrDDkkqX768qlSpYlNZVL58eZ0+fVqStHv3bmVkZKh69eo267l69aqCgoIkSQMHDlTfvn21cuVKxcTE6IknnlBkZGSuYzh48KAuXbpkDZqyXLt2TVFRUTbTsgIr6Wa4VaNGDe3bty9f73v58mV5e3vn+npuatSooRo1alifN2/eXIcOHdLkyZM1b9486/Rb39vd3V1BQUHWsEy6+blKsn62Ofnj9xMaGpptfh8fH0m6baUVAABwbQRSAADgruLp6Wnz3GKx5DgtMzNTkpSeni53d3dt27ZN7u7uNvNlhVi9e/dW+/bt9e2332rlypUaN26cJk2apAEDBuQ4hvT0dEnSt99+a3M/J0ny8vLK87bY+75ly5bVuXPn8rz+22nSpInWr19vM+1On23WzcuzPtuc5LQOwzBspp09e1aSVK5cOfsHDgAAXAL3kAIAAC6hRIkSNjciLyxRUVHKyMjQ6dOnVbVqVZvHre2B4eHh6tOnjxYtWqShQ4dq5syZ1nFJshlb7dq15eXlpaSkpGzr/OO9r37++Wfrn8+dO6f9+/erVq1ad3zf3LZl7969BftA/l9CQoJCQ0MLZV322rNnjzw9PVWnTh2HvD8AACh6VEgBAACXUKVKFW3atElHjx5VqVKlrPduKqjq1asrNjZWPXr00KRJkxQVFaXffvtNa9asUWRkpB5++GENGjRIHTt2VPXq1XXu3Dl9//331tCocuXKslgsWrp0qR566CH5+PiodOnSGjZsmAYPHqzMzEzdd999Sk1N1YYNG+Tn56eePXta33/MmDEKCgpS+fLl9cYbb6hs2bLq0qWLJN32fXPSvn179e7dWxkZGTbVXnv37tW1a9d09uxZXbhwQQkJCZJu3sRckqZMmaKIiAjVqVNHV65c0axZs7R27VqtXLmyUD5je/3444+6//77ra17AADg7kMgBQAAXMKwYcPUs2dP1a5dW5cvX9aRI0cKbd1xcXF67733NHToUJ04cUJly5bVn/70J3Xq1EnSzeqnfv366b///a/8/PzUoUMHTZ48WZJUoUIFvfPOOxoxYoSef/559ejRQ7Nnz9a7776rcuXKady4cTp8+LACAgLUsGFDvf766zbvPX78eL3yyis6cOCAGjRooP/85z82VVe5vW9OOnbsKA8PD61evVrt27e3Tn/ooYd07Ngx6/Os+1hltcpdu3bNuu2+vr6KjIzU6tWr1bp160L4dO03f/58jR492iHvDQAAiofF+GPTPgAAAIpcfHy8WrdurXPnzll/na8w/OMf/9CSJUu0YsWKQltncVq2bJmGDh2qXbt2ycODa6cAANytOMoDAADcRf7yl7/o/PnzunDhgkqXLu3o4djt4sWLiouLI4wCAOAuR4UUAACAAxRVhRQAAIArIJACAAAAAABAsXJz9AAAAAAAAABgLgRSAAAAAAAAKFYEUgAAAAAAAChWBFIAAAAAAAAoVgRSAAAAAAAAKFYEUgAAAAAAAChWBFIAAAAAAAAoVgRSAAAAAAAAKFYEUgAAAAAAAChWBFIAAAAAAAAoVgRSAAAAAAAAKFYEUgAAAAAAAChWBFIAAAAAAAAoVh6OHoAzyszM1MmTJ1W6dGlZLBZHDwcAAAAAAMChDMPQhQsXFBYWJje3gtc3EUjl4OTJkwoPD3f0MAAAAAAAAJzK8ePHVbFixQKvh0AqB6VLl5Z080P28/Nz8GgAAAAAAAAcKy0tTeHh4dbMpKAIpHKQ1abn5+dHIAUAAAAAAPD/CuvWRtzUHAAAAAAAAMWKQAoAAAAAAADFipY9AAAAAKaRkZGh69evO3oYAOB0PD095e7uXmzvRyAFAAAA4K5nGIZSUlJ0/vx5Rw8FAJxWQECAQkJCCu0+UbdDIAUAAADgrpcVRgUHB8vX17dY/rEFAK7CMAxdunRJp0+fliSFhoYW+XsSSAEAAAC4q2VkZFjDqKCgIEcPBwCcko+PjyTp9OnTCg4OLvL2PW5qDgAAAOCulnXPKF9fXwePBACcW9b/J4vjXnsEUgAAAABMgTY9ALi94vz/JIEUAAAAAAAAihWBFAAAAAAAAIoVgRQAAAAAAMgzwzD00ksvqUyZMrJYLEpISCiS97FYLPr666+LZN1wPAIpAAAAAHAyFovlto/Ro0dnW2b06NHW193d3RUeHq6XXnpJZ8+eLdSxzZ49WwEBAYW6ztvp1auXdbs8PT1Vvnx5tW3bVp988okyMzOLbRz2io+Pl8Vi0fnz5x09lEK3fPlyzZ49W0uXLlVycrLq1q2bbZ67eftRODwcPQAAAAAAgK3k5GTrnxcsWKBRo0YpMTHROq1UqVI5LlenTh2tXr1aGRkZ2rdvn1544QWlpqZqwYIFRT7motShQwfFxcUpIyNDp06d0vLly/XKK6/oq6++0pIlS+Th4br/tL127ZpKlCjh6GHY5dChQwoNDVXz5s0dPRS4MCqkAAAAAJiLYUg3LjrmYRh5GmJISIj14e/vL4vFYjMtt0DKw8NDISEhqlChgmJiYtS1a1etWrXK+npmZqbGjBmjihUrysvLSw0aNNDy5cutr+dU1ZKQkCCLxaKjR48qPj5ezz//vFJTU7NVa129elXDhg1ThQoVVLJkSTVt2lTx8fF2fz058fLysm5Xw4YN9frrr+ubb77RsmXLNHv2bOt8SUlJevTRR1WqVCn5+fmpW7duOnXqlCQpNTVV7u7u2rp1q/WzKFOmjP70pz9Zl//0008VHh4uSTp69KgsFosWLVqk1q1by9fXV/Xr19fGjRut8x87dkydO3dWYGCgSpYsqTp16ui7777T0aNH1bp1a0lSYGCgLBaLevXqJUlq1aqV+vfvr0GDBqls2bJq3769JGnPnj3q2LGjSpUqpfLly+u5557TmTNnrO+1fPly3XfffQoICFBQUJA6deqkQ4cOWV/PGu+XX36p+++/Xz4+PmrcuLH279+vLVu2KDo6WqVKlVLHjh3122+/3fbzXrdunZo0aSIvLy+FhoZqxIgRunHjhqSbFWsDBgxQUlKSLBaLqlSpYs9XabVlyxa1bdtWZcuWlb+/v1q2bKnt27ffdpm3335boaGh2rVrlyRp/fr11m0NDw/XwIEDdfHixXyNB8XPdWNkAAAAAMiPjEvSlzkHOkWuW7rkUbJY3uro0aNasWKFTfXN1KlTNWnSJH388ceKiorSJ598okceeUS//PKLqlWrdsd1Nm/eXFOmTLGp2MoKx/r376+9e/dq/vz5CgsL0+LFi9WhQwft3r07T+u2V5s2bVS/fn0tWrRIvXv3VmZmpjWMWrdunW7cuKF+/frpqaeeUnx8vPz9/dWgQQPFx8crOjpau3fvlsVi0Y4dO5Senm5drmXLljbv88Ybb+j9999XtWrV9MYbb+jpp5/WwYMH5eHhoX79+unatWv64YcfVLJkSe3du1elSpVSeHi4Fi5cqCeeeEKJiYny8/OTj4+PdZ1z5sxR3759tWHDBknS+fPn1aZNG/Xu3VuTJ0/W5cuXNXz4cHXr1k1r166VJF28eFFDhgxRZGSk0tPTNWrUKD322GNKSEiQm9v/ak3efvttTZkyRZUqVdILL7ygZ555RqVLl9bUqVPl6+urbt26adSoUZo2bVqOn+uJEyf00EMPqVevXpo7d65+/fVXvfjii/L29tbo0aM1depU3XvvvZoxY4a2bNkid3f3fH1/Fy5cUM+ePfX3v/9dhmFo0qRJeuihh3TgwAGVLl3aZl7DMDRw4EAtXbpUP/74o6pWrapDhw6pQ4cOeu+99/TJJ5/ot99+U//+/dW/f3/FxcXla0woXgRSKDRXzl9R8o5kJW9PVsqOFKUnp6vDhx0UXCfY0UMDAAAATGH37t0qVaqUMjIydOXKFUnSBx98YH39/fff1/Dhw9W9e3dJ0oQJE/T9999rypQp+sc//nHH9ZcoUcKmYitLUlKS4uLilJSUpLCwMEnSsGHDtHz5csXFxWns2LGFuZlWNWvWtFbLrFmzRrt379aRI0esVU5z585VnTp1tGXLFjVu3FitWrVSfHy8hg0bpvj4eLVt21a//vqr1q9frw4dOig+Pl6vvfaazXsMGzZMDz/8sCTpnXfeUZ06dXTw4EHVrFlTSUlJeuKJJ1SvXj1J0j333GNdrkyZMpKk4ODgbPfcqlatmiZOnGh9/t577ykqKsrmc/rkk08UHh6u/fv3q3r16nriiSds1vHJJ5+oXLly2rt3r809nIYNG2atunrllVf09NNPa82aNWrRooUk6c9//rNNVdkf/fOf/1R4eLg++ugjWSwW1axZUydPntTw4cM1atQo+fv7q3Tp0nJ3d7f5O2CvNm3a2DyfMWOGAgICtG7dOnXq1Mk6/caNG3r22We1Y8cOrV+/XhUqVJAkjRs3TrGxsRo0aJCkm5/phx9+qJYtW2ratGny9vbO99hQPAikUGDbZmzThgkbdO7wuWyvrX19rbp/090BowIAAABy4e57s1LJUe9dQElJSapdu7b1+euvv67XX39dklSjRg0tWbJEV65c0aeffqqEhAQNGDBAkpSWlqaTJ09ag4ksLVq00M6dOws0pt27dysjI0PVq1e3mX716lUFBQXluEyfPn306aefWp+np9v/nRiGIYvFIknat2+fwsPDrWGUJNWuXVsBAQHat2+fGjdurJYtW+pf//qXMjIytG7dOrVr104hISGKj49XZGSkDh48qFatWtm8R2RkpPXPoaGhkqTTp0+rZs2aGjhwoPr27auVK1cqJiZGTzzxhM38uWnUqJHN8507d+r777/PsRXz0KFDql69ug4cOKBRo0Zp06ZNOnPmjPWG7klJSTaB1K3vX758eUmyBmZZ006fPp3r2Pbt26dmzZpZP1fp5t+R9PR0/fe//1WlSpXuuH15cerUKb355puKj4/X6dOnlZGRoUuXLikpKclmvsGDB8vLy0s///yzypYta52+c+dO7dq1S5999pl1mmEYyszM1JEjR1SrVq1CGSeKDoEUCuT65etaOWylrl24JkkKiAhQaFSoylQvow3jN2j/0v06f/S8AqoEOHagAAAAQBaLpdja5opCWFiYEhISrM+zKnGkmxVMVatWlSSNHz9eDz/8sN555x29++67eVp3VuuXccu9rq5fv37H5dLT0+Xu7q5t27Zla+HK7X5XY8aM0bBhw/I0rtzs27dPEREReZ7/gQce0IULF7R9+3b98MMPGjt2rEJCQjR+/HjVr19fYWFh2doLPT09rX/OCmmywqDevXurffv2+vbbb7Vy5UqNGzdOkyZNsoaAuSlZ0vbvX3p6ujp37qwJEyZkmzcrBOvcubMqV66smTNnKiwsTJmZmapbt66uXbt2x/H+cZoz/Dphz5499fvvv2vq1KmqXLmyvLy81KxZs2zb07ZtW33xxRdasWKFYmNjrdPT09P1l7/8RQMHDsy27sIKzVC0CKRQIAe+PaBrF67Jv5K//rLjL/Ip87++6OStyTq8+rC2Tt+qmPExDhwlAAAAcPfw8PCwhk538uabb6pNmzbq27evwsLCFBYWpg0bNtjcJ2nDhg1q0qSJJKlcuXKSbv7KX2BgoCTZhF/SzdArIyPDZlpUVJQyMjJ0+vRp3X///XkaW3BwsIKD8397j7Vr12r37t0aPHiwJKlWrVo6fvy4jh8/bq2S2rt3r86fP2+tKAsICFBkZKQ++ugjeXp6qmbNmgoODtZTTz2lpUuXZrt/VF6Eh4erT58+6tOnj0aOHKmZM2dqwIAB1nt3/fGzyknDhg21cOFCValSJcdfDPz999+VmJiomTNnWj/f9evX2z3WvKhVq5YWLlxoU322YcMGlS5dWhUrViy099mwYYP++c9/6qGHHpIkHT9+3OYm7lkeeeQRde7cWc8884zc3d2t7aYNGzbU3r1787wvwPnwK3sokN2f75Yk1X26rk0YJUmN+zeWJG2ftV3XL9/5qgoAAACAwtWsWTNFRkZa70306quvasKECVqwYIESExM1YsQIJSQk6JVXXpEkVa1aVeHh4Ro9erQOHDigb7/9VpMmTbJZZ5UqVZSenq41a9bozJkzunTpkqpXr67Y2Fj16NFDixYt0pEjR7R582aNGzdO3377bYG34+rVq0pJSdGJEye0fft2jR07Vo8++qg6deqkHj16SJJiYmJUr149xcbGavv27dq8ebN69Oihli1bKjo62rquVq1a6bPPPrOGT2XKlFGtWrW0YMECuwOpQYMGacWKFTpy5Ii2b9+u77//3toqVrlyZVksFi1dulS//fbbbVsS+/Xrp7Nnz+rpp5/Wli1bdOjQIa1YsULPP/+8MjIyFBgYqKCgIM2YMUMHDx7U2rVrNWTIEHs/xjx5+eWXdfz4cQ0YMEC//vqrvvnmG7399tsaMmSIzc3T82r37t1KSEiwPrLaQ6tVq6Z58+Zp37592rRpk2JjY21u/H6rxx57TPPmzdPzzz+vr776SpI0fPhw/fTTT+rfv78SEhJ04MABffPNN+rfv3/+Nx7FikAK+Xbl/BUd+PaAJKlebL1sr1fvVF3+lfx1+ffL+mXBL8U9PAAAAAC6eQ+eWbNm6fjx4xo4cKCGDBmioUOHql69elq+fLmWLFlibVPz9PTUF198oV9//VWRkZGaMGGC3nvvPZv1NW/eXH369NFTTz2lcuXKWW/OHRcXpx49emjo0KGqUaOGunTpoi1bthRK+9Ty5csVGhqqKlWqqEOHDvr+++/14Ycf6ptvvrG2CFosFn3zzTcKDAzUAw88oJiYGN1zzz1asGCBzbpatmypjIwMm3tFtWrVKtu0vMjIyFC/fv1Uq1YtdejQQdWrV9c///lPSVKFChX0zjvvaMSIESpfvvxtg5KsyrWMjAy1a9dO9erV06BBgxQQECA3Nze5ublp/vz52rZtm+rWravBgwfrb3/7m11jzasKFSrou+++0+bNm1W/fn316dNHf/7zn/Xmm2/ma30PPPCAoqKirI+s+2f961//0rlz59SwYUM999xzGjhw4G0r5p588knNmTNHzz33nBYtWqTIyEitW7dO+/fv1/3336+oqCiNGjXKelN9OD+LcWtzMCTdvNmfv7+/UlNT5efn5+jhOK0dn+zQkj8vUXDdYPXd3TfHedaPX681I9cotGGoXtz6os2N8QAAAIDicOXKFR05ckQRERH88hYA3Mbt/n9Z2FkJFVLIt92f/X+73jN1c50n6s9RcvdyV/L2ZJ3YdKK4hgYAAAAAAJwYgRTy5cLJCzry/RFJUr2ns7frZSlZrqTqdr8ZWG3+aHOxjA0AAAAAADg3lwukfvjhB3Xu3FlhYWGyWCz6+uuvbV43DEOjRo1SaGiofHx8FBMTowMHDjhmsHexPQv2SIYU3iJcAVUCbjtvk/43f7Fj77/3Kv1U7jfyAwAAAAAA5uBygdTFixdVv359/eMf/8jx9YkTJ+rDDz/U9OnTtWnTJpUsWVLt27fXlStXinmkd7c9n++RJNV7JvfqqCxh0WGq0LSCMq5laPus7UU9NAAAAAAA4ORcLpDq2LGj3nvvPT322GPZXjMMQ1OmTNGbb76pRx99VJGRkZo7d65OnjyZrZIK+ff7/t91cutJWdwtqt21dp6WyaqS2jptqzJvZBbl8AAAAAAAgJNzuUDqdo4cOaKUlBTFxMRYp/n7+6tp06bauHFjrstdvXpVaWlpNg/kbvfnN29mXrV9VZUsVzJPy9TuWlu+5Xx14cQF/frNr0U5PAAAAAAA4OTuqkAqJSVFklS+fHmb6eXLl7e+lpNx48bJ39/f+ggPDy/ScboywzCsgdTtfl3vjzy8PNTopUaSpB2zdhTJ2AAAAAAAgGu4qwKp/Bo5cqRSU1Otj+PHjzt6SE7r5NaTOnvgrDx8PFTz0Zp2LVv36ZsB1pHvj+j6petFMTwAAAAAAOAC7qpAKiQkRJJ06tQpm+mnTp2yvpYTLy8v+fn52TyQs6zqqJqP1lSJUiXsWrZc7XLyC/dTxtUMHY0/WgSjAwAAAAAAruCuCqQiIiIUEhKiNWvWWKelpaVp06ZNatasmQNHdncwMg39Mv8XSVK92Dv/ut4fWSwWVe1YVZJ0YNmBQh0bAAAAAOTX7NmzFRAQ4Ohh5MmGDRtUr149eXp6qkuXLoqPj5fFYtH58+cdPbQ8a9WqlQYNGuToYcDBXC6QSk9PV0JCghISEiTdvJF5QkKCkpKSZLFYNGjQIL333ntasmSJdu/erR49eigsLExdunRx6LjvBmkn0pSeki43Dzfd2+7efK2jWsdqkqSDyw4W5tAAAACAu4rFYrntY/To0dmWGT16tPV1d3d3hYeH66WXXtLZs2cLdWzFHd706tXLZtuDgoLUoUMH7dq1q9De46mnntL+/fsLvJ6MjAxNnjxZ9erVk7e3twIDA9WxY0dt2LDB7nXlFtoMGTJEDRo00JEjRzR79uwCjzk/bv0+/P391aJFC61duzbPyy9atEjvvvtunuc/evSoLBaLNQfA3cHlAqmtW7cqKipKUVFRkm7ujFFRURo1apQk6bXXXtOAAQP00ksvqXHjxkpPT9fy5cvl7e3tyGHfFc4fPS9J8q/sL/cS7vlaR8SDEXLzdNO5Q+f0+4HfC3F0AAAAwN0jOTnZ+pgyZYr8/Pxspg0bNizH5erUqaPk5GQlJSUpLi5Oy5cvV9++fYt59IWvQ4cO1m1fs2aNPDw81KlTp0Jbv4+Pj4KDgwu0DsMw1L17d40ZM0avvPKK9u3bp/j4eIWHh6tVq1b6+uuvC2Wshw4dUps2bVSxYkWHVnXFxcUpOTlZGzZsUNmyZdWpUycdPnw4T8uWKVNGpUuXLuIRwtm5XCDVqlUrGYaR7ZGVDFssFo0ZM0YpKSm6cuWKVq9ererVqzt20HeJ80fOS5ICqgTkex1epb1U6b5KkqiSAgAAgIMYhnTxomMehpGnIYaEhFgf/v7+slgsNtNKlSqV43IeHh4KCQlRhQoVFBMTo65du2rVqlXW1zMzMzVmzBhVrFhRXl5eatCggZYvX259Paf2r4SEBFksFh09elTx8fF6/vnnlZqamq1a6+rVqxo2bJgqVKigkiVLqmnTpoqPj7f768mJl5eXddsbNGigESNG6Pjx4/rtt9+s8wwfPlzVq1eXr6+v7rnnHr311lu6fv1/P6a0c+dOtW7dWqVLl5afn58aNWqkrVu3Sspe9TV69Gg1aNBA8+bNU5UqVeTv76/u3bvrwoULuY7xyy+/1FdffaW5c+eqd+/eioiIUP369TVjxgw98sgj6t27ty5evCjpZtXXH7t4Bg0apFatWllfX7dunaZOnWr9nLOqhH7//Xe98MILslgsuVZILVy4UHXq1JGXl5eqVKmiSZMmWV/76KOPVLfu/34x/euvv5bFYtH06dOt02JiYvTmm2/muq2SFBAQoJCQENWtW1fTpk3T5cuXrX/X1q1bpyZNmsjLy0uhoaEaMWKEbty4YV32j9VfVapU0dixY/XCCy+odOnSqlSpkmbMmGF9PSIiQpIUFRUli8Vi/Zzg2lwukILjZFVIBUQEFGg9WfeRIpACAACAQ1y6JJUq5ZjHpUvFtplHjx7VihUrVKLE/36MaOrUqZo0aZLef/997dq1S+3bt9cjjzyiAwfydo/X5s2bZ6vYyqrW6t+/vzZu3Kj58+dr165d6tq1qzp06JDndedVenq6Pv30U1WtWlVBQUHW6aVLl9bs2bO1d+9eTZ06VTNnztTkyZOtr8fGxqpixYrasmWLtm3bphEjRsjT0zPX9zl06JC+/vprLV26VEuXLtW6des0fvz4XOf//PPPVb16dXXu3Dnba0OHDtXvv/9uEw7eztSpU9WsWTO9+OKL1s85PDxcycnJ8vPz05QpU5ScnKynnnoq27Lbtm1Tt27d1L17d+3evVujR4/WW2+9ZQ2vWrZsqb1791rDvHXr1qls2bLW8PD69evauHGjXaGPj4+PJOnatWs6ceKEHnroITVu3Fg7d+7UtGnT9K9//UvvvffebdcxadIkRUdHa8eOHXr55ZfVt29fJSYmSpI2b94sSVq9erWSk5O1aNGiPI8NzsvD0QOA6yiMCinp5n2kVr+2Wkfjj+r65evy9Mn9IAAAAAAg73bv3q1SpUopIyNDV65ckSR98MEH1tfff/99DR8+XN27d5ckTZgwQd9//72mTJmif/zjH3dcf4kSJWwqtrJktQgmJSUpLCxMkjRs2DAtX75ccXFxGjt2bIG2a+nSpdaqsIsXLyo0NFRLly6Vm9v/aixureipUqWKhg0bpvnz5+u1116zjvHVV19VzZo1JUnVqlW77XtmZmZq9uzZ1tay5557TmvWrNFf//rXHOffv3+/atWqleNrWdPzep8qf39/lShRQr6+vjafc0hIiPW+Tbn9kvwHH3ygBx98UG+99ZYkqXr16tq7d6/+9re/qVevXqpbt67KlCmjdevW6cknn1R8fLyGDh2qqVOnSroZ/ly/fl3NmzfP01gvXbqkN998U+7u7mrZsqX++c9/Kjw8XB999JEsFotq1qypkydPavjw4Ro1apTNd3arhx56SC+//LKkm9VukydP1vfff68aNWqoXLlykqSgoKBctxuuhwop5FlWhVRgRGCB1lOuTjn5VfTTjSs3dGzdsUIYGQAAAGAHX18pPd0xD1/fAg8/KSlJpUqVsj5uDXtq1KihhIQEbdmyRcOHD1f79u01YMAASTd/gfzkyZNq0aKFzfpatGihffv2FWhMu3fvVkZGhqpXr24ztnXr1unQoUM5LtOnTx+beW+ndevW1h+32rx5s9q3b6+OHTvq2LH//XtiwYIFatGihbWl8c0331RSUpL19SFDhqh3796KiYnR+PHjcx1XlipVqtjc5yg0NFSnT5++7TJGHlsyi9K+ffty/I4PHDigjIwMWSwWPfDAA4qPj9f58+e1d+9evfzyy7p69ap+/fVXrVu3To0bN5bvHf6uPv300ypVqpRKly6thQsX6l//+pciIyO1b98+NWvWTBaLxeb909PT9d///jfX9UVGRlr/nBV43unzhmujQgp5du7IOUkFr5CyWCyq2rGqts/crgPLDqhqh6qFMDoAAAAgjywWqWRJR48i38LCwmx+baxMmTLWP5coUUJVq948vx4/frwefvhhvfPOO3n+RbOs6pVbg5Vb78OUm/T0dLm7u2vbtm1yd7f9AaTcwqYxY8bkenP2PypZsqR1uyRp1qxZ8vf318yZM/Xee+9p48aNio2N1TvvvKP27dvL399f8+fPt7l30ujRo/XMM8/o22+/1bJly/T2229r/vz5euyxx3J8zz+281ksFmVmZuY6xurVq+ca7GVNz7q/sZubW7bwKi+fc2Fp1aqVZsyYoR9//FFRUVHy8/OzhlTr1q1Ty5Yt77iOyZMnKyYmRv7+/tYKpoKw9/OG66NCCnmSeSNTaf9Nk1Twe0hJsoZQ3EcKAAAAsI+Hh4eqVq1qfdwaSP3Rm2++qffff18nT56Un5+fwsLCtGHDBpt5NmzYoNq1a0uSNVhITk62vn5r+CXdDL0yMjJspkVFRSkjI0OnT5+2GVvVqlVzbbEKDg62mc8eFotFbm5uunz5siTpp59+UuXKlfXGG28oOjpa1apVs6meylK9enUNHjxYK1eu1OOPP664uDi73vd2unfvrgMHDug///lPttcmTZqkoKAgtW3bVtLNz/nWz1jK2+ecF7Vq1crxO65evbo1LMy6j9S///1v672iWrVqpdWrV2vDhg15un9USEiIqlatmi2MqlWrljZu3GgTuG3YsEGlS5dWxYoV7d4eSdb7oOXn84DzIpBCnqQeT5WRYcjdy12lyt++nDYv7om5R24ebjp74KzOHjpbCCMEAAAA8EfNmjVTZGSkta3v1Vdf1YQJE7RgwQIlJiZqxIgRSkhI0CuvvCJJqlq1qsLDwzV69GgdOHBA3377rU2VkXSzlS09PV1r1qzRmTNndOnSJVWvXl2xsbHq0aOHFi1apCNHjmjz5s0aN26cvv322wJvx9WrV5WSkqKUlBTt27dPAwYMUHp6uvUG4tWqVVNSUpLmz5+vQ4cO6cMPP9TixYuty1++fFn9+/dXfHy8jh07pg0bNmjLli253vMpP7p3767HHntMPXv21L/+9S8dPXpUu3bt0l/+8hctWbJEs2bNUsn/r8xr06aNtm7dqrlz5+rAgQN6++23tWfPHpv1ValSRZs2bdLRo0d15syZPFcLDR06VGvWrNG7776r/fv3a86cOfroo49sqtEiIyMVGBiozz//3CaQ+vrrr3X16tVsLX/2ePnll3X8+HENGDBAv/76q7755hu9/fbbGjJkSK73j7qT4OBg+fj4aPny5Tp16pRSU1PzPT44DwIp5In1F/aqBMjiZrn9zHng5eel8BbhkqiSAgAAAIrS4MGDNWvWLB0/flwDBw7UkCFDNHToUNWrV0/Lly/XkiVLrDf49vT01BdffKFff/1VkZGRmjBhQrZfR2vevLn69Omjp556SuXKldPEiRMlSXFxcerRo4eGDh2qGjVqqEuXLtqyZYsqVapU4G1Yvny5QkNDFRoaqqZNm2rLli021T2PPPKIBg8erP79+6tBgwb66aefrDf1liR3d3f9/vvv6tGjh6pXr65u3bqpY8eOeueddwo8tiwWi0VffvmlXn/9dU2ePFk1atTQ/fffr2PHjik+Pl5dunSxztu+fXu99dZbeu2119S4cWNduHBBPXr0sFnfsGHD5O7urtq1a6tcuXI298O6nYYNG+rLL7/U/PnzVbduXY0aNUpjxoxRr169bMZ6//33y2Kx6L777pN0M6Ty8/NTdHS0NTjLjwoVKui7777T5s2bVb9+ffXp00d//vOfbW46by8PDw99+OGH+vjjjxUWFqZHH3003+uC87AYznDXNSeTlpYmf39/paamys/Pz9HDcQo7PtmhJX9eonvb36tnlz9bKOtcP2G91oxYo2oPVdMz3z5TKOsEAAAA/ujKlSs6cuSIIiIi5O3t7ejhAIDTut3/Lws7K6FCCnlya4VUYanW8eZVmCPfH9GNKzcKbb0AAAAAAMC5EUghT84fOS+pcG5oniW4XrBKVyitG5dv6Oi6o4W2XgAAAAAA4NwIpJAnRVEhZbFY/vdre8u5jxQAAAAAAGZBIIU8OXfknCQpMCKwUNdbteP/B1LfHRS3MwMAAAAAwBwIpHBHN67e0IWTFyQVboWUJN3b9l65l3DX7/t/1+ndpwt13QAAAAAAwDkRSOGOUpNSJUPy9PWUbznfQl23l5+Xqj108+bme+bvKdR1AwAAAAAA50QghTu69f5RFoul0Ndf9+m6km4GUrTtAQAAAABw9yOQwh0VxS/s3ap6p+ryLOmp80fO68TmE0XyHgAAAAAAwHkQSOGOiuIX9m7l6eupmo/WlETbHgAAAAAAZkAghTsq6gopSarTvY4k6ZcFvygzI7PI3gcAAABA7kaPHq0GDRo4ehguq1WrVho0aFCe5589e7YCAgKKbDxwnEuXLumJJ56Qn5+fLBaLzp8/X+jvcfToUVksFiUkJBT6uosDgRTuqKgrpCSpavuq8g7wVnpyupJ+TCqy9wEAAABcRa9evWSxWGSxWFSiRAlVrVpVY8aM0Y0bN4rsPYcNG6Y1a9bkaV5XCq+y/uHu7u6uEydsbxOSnJwsDw8PWSwWHT161DEDLKBWrVpZ/654eXmpQoUK6ty5sxYtWuTood3W3RzIzZkzRz/++KN++uknJScny9/fP9s8d/P25wWBFO7o3JFzkqTAiMAiew/3Eu6q9UQtSdLuL3YX2fsAAAAArqRDhw5KTk7WgQMHNHToUI0ePVp/+9vf8rWujIwMZWbevhuhVKlSCgoKytf6XUGFChU0d+5cm2lz5sxRhQoVHDSiwvPiiy8qOTlZhw4d0sKFC1W7dm11795dL730kqOHVmDXrl1z9BDsdujQIdWqVUt169ZVSEhIkfxAmKsjkMJtXb98XRdPXZRUtBVS0v9+bW/fV/uUcT2jSN8LAAAA5mUYhi5eu+iQh72/Ku3l5aWQkBBVrlxZffv2VUxMjJYsWSJJunr1qoYNG6YKFSqoZMmSatq0qeLj463LZlVfLFmyRLVr15aXl5eSkpIUHx+vJk2aqGTJkgoICFCLFi107NgxSdmrnnKbd/bs2XrnnXe0c+dOa2XO7NmzJUnnz59X7969Va5cOfn5+alNmzbauXOndZ1Z7zFv3rz/Y+++45uq9z+Ov5Pu0kFbaClQ9hZUlsqQISjIVcEFKpflQC8oAk4cDCfOiz+3qOAGB46riAMtAiogS/bee3TQvc7vj2PSpm26aJK2eT0fj/PIycnJOd/km0Lz7uf7PWrSpInCw8N1ww036MyZM/Z98vLy9Oyzz6pFixYKCAhQo0aN9OSTT9ofP3DggIYOHaratWsrMjJSgwcPLlN106hRozRnzhyHbXPmzNGoUaOK7LtkyRJdcMEFCggIUGxsrB588EGH6rTU1FSNHDlSISEhio2N1QsvvFDkGKX1UWUKDg5WvXr11LBhQ1100UV65pln9Oabb2r27Nn6+eef7ftt2LBBl1xyiYKCghQVFaWxY8cqJSVFkrRx40ZZrVadOHFCknT69GlZrVbdcMMN9uc/8cQT6tmzpyTz82GxWLR48WJ16dJFwcHB6t69u7Zt22bff/369erbt69CQ0MVFhamzp0766+//lJ8fLzGjBmjpKQk+2do+vTpkqQmTZro8ccf18iRIxUWFmYP1ZYtW6aLL75YQUFBiouL04QJE5Sammo/1wcffKAuXbooNDRU9erV00033aTjx4/bH7e194cfflDHjh0VFBSkSy65RMePH9f333+vtm3bKiwsTDfddJPS0tJKfL+/+OILnXPOOQoICFCTJk0c+r9Pnz564YUX9Ntvv8lisahPnz7l6Uq7RYsWqWfPnqpdu7aioqJ0xRVXaNeuXU73z83N1c0336w2bdpo/35z5NHXX3+tTp06KTAwUM2aNdOMGTNcWmVZHr6ebgCqNttwvYCwAAVGBLr0XE36NFGtmFpKPZaq3T/tVstBLV16PgAAAHintOw0hTwd4pFzp0xJUS3/WhV+flBQkE6dOiVJuvPOO7V582bNmzdP9evX15dffqmBAwdqw4YNatnS/F06LS1NzzzzjN5++21FRUUpMjJS559/vm677TZ98sknysrK0sqVK4ut3sjJydGQIUOK3XfYsGHauHGjFi1aZA87bEOSrr/+egUFBen7779XeHi43nzzTfXr10/bt29XZGSkJLN65KuvvtK3336rhIQEDR06VDNnzrSHTlOmTNHs2bP13//+Vz179tSRI0e0detWSVJ2drYGDBigbt26aenSpfL19dUTTzyhgQMH6u+//5a/v7/T9++qq67SG2+8oWXLlqlnz55atmyZEhISdOWVV+rxxx+373fo0CENGjRIo0eP1vvvv6+tW7fqtttuU2BgoD00ue+++7RkyRJ9/fXXio6O1kMPPaQ1a9Y4BHpl6SNXGjVqlO655x4tWLBA/fv3V2pqqv29W7VqlY4fP65bb71Vd955p+bOnatzzjlHUVFRWrJkia677jotXbrUft9myZIlRQKWhx9+WC+88ILq1q2rO+64QzfffLOWL18uSRo+fLg6duyo119/XT4+Plq3bp38/PzUvXt3zZo1S1OnTrUHWCEh+T+Xzz//vKZOnapp06ZJMj8zAwcO1BNPPKF3331XJ06c0J133qk777zTHjJmZ2fr8ccfV+vWrXX8+HFNnjxZo0eP1sKFCx3aO336dL3yyisKDg7W0KFDNXToUAUEBOjjjz9WSkqKrr76ar388st64IEHin1fV69eraFDh2r69OkaNmyYfv/9d40bN05RUVEaPXq0FixYoAcffFAbN27UggULSvxMliQ1NVWTJ0/Wueeeq5SUFE2dOlVXX3211q1bJ6vVsb4oMzNTN954o/bu3aulS5eqbt26Wrp0qUaOHKn/+7//08UXX6xdu3bZwz3b++pRBopISkoyJBlJSUmeborHbV+43Ziu6cbr577ulvN9d+d3xnRNNxaMWOCW8wEAAKDmS09PNzZv3mykp6cbhmEYKZkphqbLI0tKZkqZ2z1q1Chj8ODBhmEYRl5envHTTz8ZAQEBxr333mvs27fP8PHxMQ4dOuTwnH79+hlTpkwxDMMw5syZY0gy1q1bZ3/81KlThiQjPj6+2HNOmzbNOO+888q9r83SpUuNsLAwIyMjw2F78+bNjTfffNP+vODgYCM5Odn++H333WdceOGFhmEYRnJyshEQEGDMnj272PN+8MEHRuvWrY28vDz7tszMTCMoKMj44Ycfin3Onj17DEnG2rVrjYkTJxpjxowxDMMwxowZY0yaNMlYu3atIcnYs2ePYRiG8dBDDxU5x6uvvmqEhIQYubm5xpkzZwx/f3/j008/tT9+6tQpIygoyLj77rsNwzDK3Efh4eHFtrk8evfubT9vYRdeeKFx+eWXG4ZhGG+99ZYRERFhpKTkfw6/++47w2q1GkePHjUMwzCuueYaY/z48YZhGMbEiRON++67z4iIiDC2bNliZGVlGcHBwcaPP/5oGIZh/Prrr4Yk4+eff3Y4niT7z1toaKgxd+7cYtvm7PU3btzYGDJkiMO2W265xRg7dqzDtqVLlxpWq9V+rsJWrVplSDLOnDnjtL1PP/20IcnYtWuXfdvtt99uDBgwoNhjGoZh3HTTTcall17qsO2+++4z2rVrZ79/9913G71793Z6DMMof/+fOHHCkGRs2LDBMIz8z/XSpUuNfv36GT179jQSExPt+/fr18946qmnHI7xwQcfGLGxsU7PUfjfy4IqOyuhQgolcscV9grqcGMHrXpllbZ+uVXZ6dnyC/Jzy3kBAADgPYL9gpUyJcVj5y6Pb7/9ViEhIcrOzlZeXp5uuukmTZ8+XfHx8crNzVWrVq0c9s/MzHSYA8rf31/nnnuu/X5kZKRGjx6tAQMG6NJLL1X//v01dOhQxcbGFjl3efa1Wb9+vVJSUorMQ5Wenu4w1KhJkyYKDQ2134+NjbUPrdqyZYsyMzPVr18/p+fYuXOnw/MlKSMjo8ThTDY333yzunfvrqeeekqfffaZ/vjjjyJDmLZs2aJu3bo5VI716NFDKSkpOnjwoBISEpSVlaULL7zQ/nhkZKRat25tv79hw4Yy9VFJLr/8ci1dulSS1LhxY23atKlMzyvIMAz769iyZYvOO+881aqVX6XXo0cP5eXladu2bYqJiVHv3r311ltvSTKroZ566ilt375d8fHxOn36tLKzs9WjRw+HcxT8jNk+H8ePH1ejRo00efJk3Xrrrfrggw/Uv39/XX/99WrevHmp7e7SpYvD/fXr1+vvv//WRx995PDa8vLytGfPHrVt21arV6/W9OnTtX79eiUkJNjnTNu/f7/atWtXbHtjYmIUHBysZs2aOWxbuXKl07Zt2bJFgwcPdtjWo0cPzZo1S7m5ufLx8Sn19ZXFjh07NHXqVK1YsUInT550eD3t27e373fjjTeqYcOG+uWXXxQUFGTfvn79ei1fvtxhuGtubq4yMjKUlpam4ODy/XtU2QikUCJ3XGGvoIYXNVR4o3Al7U/SjoU71O7adqU/CQAAACgHi8VyVsPm3Klv3756/fXX5e/vr/r168vX1/wKl5KSIh8fH61evbrIl9+Cw56CgoKKDMebM2eOJkyYoEWLFmn+/Pl65JFH9NNPP+miiy4qcv7y7GtrV2xsbLHzJBW8mpifn+Mfni0Wi/3LdsEv1M7O0blzZ4dgwqZu3bolPleSOnTooDZt2ujGG2+0Tzq9bt26Up9XXmXto5K8/fbbSk9Pl1T0PSuL3Nxc7dixQ127di3zc/r06aOJEydqx44d2rx5s3r27KmtW7cqPj5eCQkJ9rmiCirYNtvnzdaf06dP10033aTvvvtO33//vaZNm6Z58+bp6quvLrEdBUMzyXw/b7/9dk2YMKHIvo0aNbIPRxwwYIA++ugj1a1bV/v379eAAQOKTIpeuL0lfR496corr1Tjxo01e/Zs1a9fX3l5eWrfvn2R1zNo0CB9+OGH+uOPP3TJJZfYt6ekpGjGjBm65pprihw7MNC1U/KUBYEUSuTuCimL1aJzbjhHvz/7uzZ+spFACgAAAF6tVq1aatGiRZHtHTt2VG5uro4fP66LL7643Mft2LGjOnbsqClTpqhbt276+OOPnYZMzvb19/dXbq7jxYg6deqko0ePytfXV02aNCl3uySpZcuWCgoK0uLFi3XrrbcWebxTp06aP3++oqOjFRYWVqFz3HzzzRo3bpxef/31Yh9v27atvvjiC4fqouXLlys0NFQNGzZUZGSk/Pz8tGLFCjVq1EiSlJCQoO3bt6t3796Szr6PJJ311f/ee+89JSQk6Nprr7W/rrlz5yo1NdUe+CxfvlxWq9Ve3dWhQwdFREToiSee0Pnnn6+QkBD16dNHzzzzjBISEio0QXerVq3UqlUrTZo0STfeeKPmzJmjq6++utjPkDOdOnXS5s2bi/15kMyKtFOnTmnmzJmKi4uTJP3111/lbmtZtG3b1j5Hls3y5cvVqlWrSquOOnXqlLZt26bZs2fbPz/Lli0rdt///Oc/at++va666ip999139s9gp06dtG3bNqfvmadxlT2UyN0VUpLU/gaz9HD7t9uVkZjhtvMCAAAA1UWrVq00fPhwjRw5UgsWLNCePXu0cuVKPf300/ruu++cPm/Pnj2aMmWK/vjjD+3bt08//vijduzYobZt25Z73yZNmmjPnj1at26dTp48qczMTPXv31/dunXTkCFD9OOPP2rv3r36/fff9fDDD5c5HAgMDNQDDzyg+++/X++//7527dqlP//8U++8844kc5LsOnXqaPDgwVq6dKn27Nmj+Ph4TZgwQQcPHizTOW677TadOHGi2MBLksaNG6cDBw7orrvu0tatW/X1119r2rRpmjx5sqxWq0JCQnTLLbfovvvu0y+//KKNGzdq9OjRDhNNV7SPKiotLU1Hjx7VwYMH9eeff+qBBx7QHXfcof/85z/q27evJPO9CwwM1KhRo7Rx40b9+uuvuuuuuzRixAjFxMRIMquDevXqpY8++sgePp177rnKzMzU4sWL7WFHWaSnp+vOO+9UfHy89u3bp+XLl2vVqlUOn6GUlBQtXrxYJ0+eLPHKdg888IB+//133XnnnVq3bp127Nihr7/+Wnfeeacks0rK399fL7/8snbv3q1vvvnGYaL6ynTPPfdo8eLFevzxx7V9+3a99957euWVV3TvvfeW+1i5ublat26dw7JlyxZFREQoKipKb731lnbu3KlffvlFkydPdnqcu+66S0888YSuuOIKe3A1depUvf/++5oxY4Y2bdqkLVu2aN68eXrkkUcq/NorE4EUSpSwJ0GSFNE0wm3nrHd+PUW3j1ZuZq6WP7e89CcAAAAAXmjOnDkaOXKk7rnnHrVu3VpDhgzRqlWr7BU7xQkODtbWrVt17bXXqlWrVho7dqzGjx+v22+/vdz7XnvttRo4cKD69u2runXr6pNPPpHFYtHChQvVq1cvjRkzRq1atdINN9ygffv22QOPsnj00Ud1zz33aOrUqWrbtq2GDRtmn2MqODhYv/32mxo1aqRrrrlGbdu21S233KKMjIwyV0z5+vqqTp069iGQhTVo0EALFy7UypUrdd555+mOO+7QLbfc4vBF/rnnntPFF1+sK6+8Uv3791fPnj3VuXNnh+NUpI8qavbs2YqNjVXz5s11zTXXaPPmzZo/f75ee+01+z7BwcH64YcfdPr0aXXt2lXXXXed+vXrp1deecXhWL1791Zubq49kLJarerVq5csFkuR+aNK4uPjo1OnTmnkyJFq1aqVhg4dqssvv1wzZsyQJHXv3l133HGHhg0bprp16+rZZ591eqxzzz1XS5Ys0fbt23XxxRerY8eOmjp1qurXry/JHK45d+5cffbZZ2rXrp1mzpyp559/vsxtLY9OnTrp008/1bx589S+fXtNnTpVjz32mEaPHl3uY6WkpNirEG3LlVdeKavVqnnz5mn16tVq3769Jk2apOeee67EY02cOFEzZszQoEGD9Pvvv2vAgAH69ttv9eOPP6pr16666KKL9N///leNGzeu4CuvXBbDMAxPN6KqSU5OVnh4uJKSkipcAloTZJ7J1MywmZKkB5MeVEBYgNvOvfWrrZp/9Xz5Bvnqrh13KayB9/YDAAAAzk5GRob27Nmjpk2bVol5UwCgqirp38vKzkqokIJTtuF6QZFBbg2jJKn14NaK6xGnnPQcxU+Ld+u5AQAAAACAaxFIwSlPzB9lY7FYdOmzl0qS1s1Zp+Objru9DQAAAAAAwDUIpOCU/Qp7HgikJCmue5zaXtNWRp6hxQ8u9kgbAE9iRDUAAACAmopACk7ZK6Sa1vZYGy556hJZfCza/u127V2y12PtANzJMAwtf3a5no18VstmFn9pVwAAAACozgik4JSnK6QkqU7rOuo81rxSxc/3/0zFCGq87LRsLRi+QD8/8LMyEjO0eMpirX9/vaebBQAAAACVikAKTlWFCilJ6j2tt/xq+enQykPa/Plmj7YFcKXkg8ma02uONn6yUVZfq1oMbCFJ+ubWb7Q3fq9nGwcAAAAAlYhACk4l7EmQ5NkKKUkKiQlR93u7S5IWT1ms3Kxcj7YHcIUDvx/QW13e0pHVRxRcJ1gjfh6hm767SecMPUd52Xmaf/V8ndx60tPNBAAAAIBKQSCFYmUkZigzKVOS5wMpSep2TzfViqmlhF0J+t/Y/ykvN8/TTQIqzfbvtuu9vu8p9ViqYs6N0W2rblOT3k1ksVo0eO5gNezWUBmJGfr4Xx8r9USqp5sLAAAAAGeNQArFslVHBdcNln8tfw+3RgoIDdC/XvuXLD4WrX9vvRYMX6DcbCqlUDMse3qZcrNy1Xpwa928/GaHENgvyE83fH2DIppFKGF3guYNnqecjBzPNRYAAAAAKgGBFIqVcjRFkhTWIMzDLcnX9pq2um7+dbL6WbVp/iZ9dt1nfDFHtZeXm6eja49Kkvo91U/+IUUD4Fp1a+mm725SYO1AHfzjoBbeudDdzQQAAF5i+vTpOv/88z3djGqrT58+mjhxYpn3nzt3rmrXru2y9lSm6vTZ+Oqrr9SiRQv5+Pho4sSJ1ep9tmnSpIlmzZrl6Wa4FIEUimULenyDfD3cEkftrm2nG766QT4BPtr2zTZ9ctUnyk7L9nSzgAo7ufWkstOy5VfLT1Gto5zuV6dNHQ39Yqgkad3cdTpz5Iy7mggAADxk9OjRslgsslgs8vf3V4sWLfTYY48pJ8d1f5S99957tXjx4jLtW50Cir1798piscjHx0eHDh1yeOzIkSPy9fWVxWLR3r17PdPAs9SnTx/7Z8VisSgmJkbXX3+99u3bV2nnKM9noyTp6emaNm2aWrVqpYCAANWpU0fXX3+9Nm3aVO5jOQttbr/9dl133XU6cOCAHn/88bNuc3nZPm+2JSoqSpdddpnWrl1b5mOsWrVKY8eOLfP+8fHxslgsSkxMrECLPYNACsXKzTSHw/kGVK1ASpJaDmqp4QuHy6+Wn3b/tFsfDvxQGUkZnm4WUCFH1hyRJNU7v56sPiX/k9z0kqaK6xEnI9fQujnr3NA6AADgaQMHDtSRI0e0Y8cO3XPPPZo+fbqee+65Ch0rNzdXeXklz8UaEhKiqCjnfySr7ho0aKD333/fYdt7772nBg0aeKhFlee2227TkSNHdPjwYX399dc6cOCA/v3vf1fa8Svjs5GZman+/fvr3Xff1RNPPKHt27dr4cKFysnJ0YUXXqg///zzrNuZkpKi48ePa8CAAapfv75CQ0PP+pgV9fPPP+vIkSP64YcflJKSossvv7zMgVHdunUVHBzs2gZ6GIEUipWTaf7VxSfAx8MtKV7TS5pqxI8jFBAWoP1L9+vlli9rxf+tsLcbqC6OrDYDqdjOsWXav/PYzpKkNW+vkZFnuKxdAADUZIZhKCs1yyOLYZTv/++AgADVq1dPjRs31n/+8x/1799f33zzjSTzy/29996rBg0aqFatWrrwwgsVHx9vf65tmNI333yjdu3aKSAgQPv371d8fLwuuOAC1apVS7Vr11aPHj3slTSFq56c7Tt37lzNmDFD69evt1eBzJ07V5KUmJioW2+9VXXr1lVYWJguueQSrV+/3n5M2zk++OADNWnSROHh4brhhht05kx+BXheXp6effZZtWjRQgEBAWrUqJGefPJJ++MHDhzQ0KFDVbt2bUVGRmrw4MFlqm4aNWqU5syZ47Btzpw5GjVqVJF9lyxZogsuuEABAQGKjY3Vgw8+6FCdlpqaqpEjRyokJESxsbF64YUXihyjtD6qTMHBwapXr55iY2N10UUX6c4779SaNWvsj+fm5uqWW25R06ZNFRQUpNatW+ull15yOEZ5PhujR4/WkCFD9Pzzzys2NlZRUVEaP368srOdj2CZNWuW/vjjD3377bcaOnSoGjdurAsuuEBffPGF2rZtq1tuucX+M1Lc8MchQ4Zo9OjR9sf37dunSZMm2T+D8fHx9gDqkksusW8rzuuvv67mzZvL399frVu31gcffGB/7N5779UVV1zh0G6LxaJFixbZt7Vo0UJvv/2209cqSVFRUapXr566dOmi559/XseOHdOKFSskSV988YXOOeccBQQEqEmTJkU+P4WrvywWi95++21dffXVCg4OVsuWLe3/Fuzdu1d9+/aVJEVERMhisdjfp6qs6pW/oEqoyhVSNnHd4zTyl5H64oYvdHrnaS26e5H+/O+f6vNYH3W4qUOp1SZAVWALpOp3rl+m/dtd107fT/heiXsStXvxbjW/tLkrmwcAQI2UnZatp0Oe9si5p6RMOauLBgUFBenUqVOSpDvvvFObN2/WvHnzVL9+fX355ZcaOHCgNmzYoJYtW0qS0tLS9Mwzz+jtt99WVFSUIiMjdf755+u2227TJ598oqysLK1cuVIWi6XIuXJycjRkyJBi9x02bJg2btyoRYsW6eeff5YkhYeHS5Kuv/56BQUF6fvvv1d4eLjefPNN9evXT9u3b1dkZKQkadeuXfrqq6/07bffKiEhQUOHDtXMmTPtodOUKVM0e/Zs/fe//1XPnj115MgRbd26VZKUnZ2tAQMGqFu3blq6dKl8fX31xBNPaODAgfr777/l7+/8/b3qqqv0xhtvaNmyZerZs6eWLVumhIQEXXnllQ5Duw4dOqRBgwZp9OjRev/997V161bddtttCgwM1PTp0yVJ9913n5YsWaKvv/5a0dHReuihh7RmzRqH0KYsfeQKp0+f1qeffqoLL7zQvi0vL08NGzbUZ599pqioKP3+++8aO3asYmNjNXTo0BL725lff/1VsbGx+vXXX7Vz504NGzbM/vkqzscff6xLL71U5513nsN2q9WqSZMmafjw4Vq/fn2ZhoIuWLBA5513nsaOHWs/X2RkpLZt26bWrVvriy++UPfu3RUZGVkkrPzyyy919913a9asWerfv7++/fZbjRkzRg0bNlTfvn3Vu3dvvf3228rNzZWPj4+WLFmiOnXqKD4+XgMHDtShQ4e0a9cu9enTp9R22gQFBUmSsrKytHr1ag0dOlTTp0/XsGHD9Pvvv2vcuHGKiooqMUiaMWOGnn32WT333HN6+eWXNXz4cO3bt09xcXH64osvdO2112rbtm0KCwuzn68qq7ppAzyqqldI2dTvXF/jNo/T2nfXasmMJUrcm6ivRn6l35/9XRdOvFDNL22u8Ebhnm4mUKy83DwdWVu+Cim/YD+dO+JcrXpllda8tYZACgAAL2EYhhYvXqwffvhBd911l/bv3685c+Zo//79ql/f/MPWvffeq0WLFmnOnDl66qmnJJnhzWuvvWYPAE6fPq2kpCRdccUVat7c/D2ibdu2xZ4zOTm5xH1DQkLk6+urevXq2bctW7ZMK1eu1PHjxxUQECBJev755/XVV1/p888/t8+Jk5eXp7lz59qrWUaMGKHFixfrySef1JkzZ/TSSy/plVdesVcuNW/eXD179pQkzZ8/X3l5eXr77bftYcmcOXNUu3ZtxcfH67LLLnP6Pvr5+enf//633n33XfXs2VPvvvuu/v3vf8vPz89hv9dee01xcXF65ZVXZLFY1KZNGx0+fFgPPPCApk6dqrS0NL3zzjv68MMP1a9fP0nm0L+GDRvaj1HWPqosr732mt5++20ZhqG0tDS1atVKP/zwg8NrnzFjhv1+06ZN9ccff+jTTz/V0KFDS+3v4kREROiVV16Rj4+P2rRpo3/9619avHix00Bq+/bt9kqewmzn2r59e5kCqcjISPn4+Cg0NNThMxgdHW1/vOD2gp5//nmNHj1a48aNkyRNnjxZf/75p55//nn17dtXF198sc6cOaO1a9eqc+fO+u2333Tffffpq6++kmRWkjVo0EAtWrQotZ2SWTX4+OOPKyQkRBdccIEmT56sfv366dFHH5UktWrVSps3b9Zzzz1XYiA1evRo3XjjjZKkp556Sv/3f/+nlStXauDAgfawNzo6utpM4E4ghWLZK6QCq/5HxMfPR11u76LzRpynFS+v0PKZy3V843H979b/SZIiW0Sqaf+matavmRr3aqxa0bU83GLAdGr7KWWnZssv2E912tQp8/M6j+2sVa+s0tavtirlWIpCYkJc2EoAAGoev2A/TUmZ4rFzl8e3336rkJAQZWdnKy8vTzfddJOmT5+u+Ph45ebmqlWrVg77Z2ZmOszz4+/vr3PPPdd+PzIyUqNHj9aAAQN06aWXqn///ho6dKhiY4v+caw8+9qsX79eKSkpReYaSk9P165du+z3mzRp4jC3T2xsrI4fPy5J2rJlizIzM+1BT3Hn2LlzZ5G5gTIyMhzO4czNN9+s7t2766mnntJnn32mP/74o8hE8Vu2bFG3bt0cqoN69OihlJQUHTx4UAkJCcrKynKoQIqMjFTr1q3t9zds2FCmPirJ5ZdfrqVLl0qSGjduXOLE38OHD9fDDz8sSTp27JieeuopXXbZZVq9erX9vXr11Vf17rvvav/+/UpPT1dWVpY9/KlIf59zzjny8ckvYoiNjdWGDRtKfE3lHbbqClu2bCkyYXiPHj3sQxhr166t8847T/Hx8fL395e/v7/Gjh2radOmKSUlRUuWLFHv3r1LPU/37t1ltVqVmpqqZs2aaf78+YqJidGWLVs0ePDgIuefNWuWvSqrOAV/lmvVqqWwsDD7z011VPXTBnhEdamQKsgv2E89H+ipzmM7a+UrK7Vz4U4dWnVIp3ee1umdp7X6jdWSpFoxtRTTIUbRHaIV3SFaMR1iVLdd3XL/cgCcLdtwvbJMaF5QTIcYNbiwgQ6tOKT1761Xj/t7uKqJAADUSBaL5ayGzblT37599frrr8vf31/169eXr6/5FS4lJUU+Pj5avXp1kS+vISH5f6wKCgoqMuRqzpw5mjBhghYtWqT58+frkUce0U8//aSLLrqoyPnLs6+tXbGxscXO21OwaqNwRZLFYrFPuF7aUKOUlBR17txZH330UZHH6tatW+JzJalDhw5q06aNbrzxRrVt21bt27fXunXrSn1eeZW1j0ry9ttvKz09XVLR96yw8PBwe8VOixYt9M477yg2Nlbz58/Xrbfeqnnz5unee+/VCy+8oG7duik0NFTPPfecfU4jqfz9XVI/FqdVq1basmVLsY/ZttsCPKvVWiS8Kml+qsrWp08fxcfHKyAgQL1791ZkZKTatm2rZcuWacmSJbrnnntKPcb8+fPVrl07RUVFVUrVUnnf76qOQArFqg5zSDkTFBGk3o/2Vu9HeysjKUP7luzT7sW7tWfxHp3YfEKpx1K1+9hu7f55d/6TLGYlVeGgKqJ5BHNRwWUOrz4sqezD9QrqPLazDq04pDWz16j7vd1lsTof2w8AAKqvWrVqFTssqGPHjsrNzdXx48d18cUXl/u4HTt2VMeOHTVlyhR169ZNH3/8sdPQwdm+/v7+ys3Nddi3U6dOOnr0qHx9fdWkSZNyt0uSWrZsqaCgIC1evFi33nprkcc7deqk+fPnKzo6WmFhYRU6x80336xx48bp9ddfL/bxtm3b6osvvpBhGPZAb/ny5QoNDVXDhg0VGRkpPz8/rVixQo0aNZIkJSQkaPv27fbKmbPtI0lndfU/WwhmC7SWL1+u7t2724epSSq2oqw8n43yuuGGG/Twww9r/fr1DvNI5eXl6b///a/atWtn3163bl0dOXLEvk9ubq42btzoMOSvuM9gWbRt21bLly93mMx++fLlateunf1+79699e6778rX11cDBw6UZIZUn3zyibZv316m+aPi4uLswx+LO39By5cvV6tWrZxWR5XGNndaRd4PT6l+aQPcIiej+lVIFScwPFCtr2qt1leZpbNZqVk6semEjm04puMbjuv4huM6tuGY0k6k6fSO0zq947S2LMhP7H2DfFW3XV0zqDo32h5YMUQKlaG8V9gr6Jxh52jRxEU6vfO09sbvVdNLmlZ28wAAQBXWqlUrDR8+XCNHjtQLL7ygjh076sSJE1q8eLHOPfdc/etf/yr2eXv27NFbb72lq666SvXr19e2bdu0Y8cOjRw5stz7NmnSRHv27NG6devUsGFDhYaGqn///urWrZuGDBmiZ599Vq1atdLhw4f13Xff6eqrr1aXLl1KfW2BgYF64IEHdP/998vf3189evTQiRMntGnTJt1yyy0aPny4nnvuOQ0ePFiPPfaYGjZsqH379mnBggW6//77HeZxcua2227T9ddf77RqZdy4cZo1a5buuusu3Xnnndq2bZumTZumyZMny2q1KiQkRLfccovuu+8+RUVFKTo6Wg8//LCs1vw/Zle0jyoqLS1NR48elWQO2Xv88ccVGBhon1OrZcuWev/99/XDDz+oadOm+uCDD7Rq1So1bWr+Hlmez0ZFTZo0SV9//bWuvPJKvfDCC7rwwgvtwwu3bNmin3/+2R4AXnLJJZo8ebK+++47NW/eXC+++KISExMdjtekSRP99ttvuuGGGxQQEKA6dco2DcZ9992noUOHqmPHjurfv7/+97//acGCBfYJ+iWpV69eOnPmjL799lvNnDlTkhlIXXfddYqNjS0yFLM87rnnHnXt2lWPP/64hg0bpj/++EOvvPKKXnvttQofs3HjxrJYLPr22281aNAgBQUFlbkSz1MIpFAs25C96lghVRL/Wv5qcEEDNbjA8S8NKcdS7OGULag6vvG4ctJzdGT1EXtwYBNcN9geTkW1ilJYXJjCGoYpPC5cQVFFy6KBwow8Q0fXmr8wlPUKewX51/JXh+EdtPqN1Vozew2BFAAAXmjOnDl64okndM899+jQoUOqU6eOLrroIofL1RcWHBysrVu36r333tOpU6cUGxur8ePH6/bbby/3vtdee60WLFigvn37KjExUXPmzNHo0aO1cOFCPfzwwxozZoxOnDihevXqqVevXoqJiSnza3v00Ufl6+urqVOn6vDhw4qNjdUdd9xhb9dvv/2mBx54QNdcc43OnDmjBg0aqF+/fmWumPL19S0xvGjQoIEWLlyo++67T+edd54iIyN1yy236JFHHrHv89xzzyklJUVXXnmlQkNDdc899ygpKcnhOBXpo4qaPXu2Zs+eLcmcbPzcc8/VwoUL7fNa3X777Vq7dq2GDRsmi8WiG2+8UePGjdP3338vqXyfjYoKDAzUL7/8oqeeekoPPfSQ9u3bp9DQUPXt21d//vmn2rdvb9/35ptv1vr16zVy5Ej5+vpq0qRJRSZEf+yxx3T77berefPmyszMLPP8VEOGDNFLL72k559/XnfffbeaNm2qOXPmOFQ9RUREqEOHDjp27JjatGkjyQyp8vLyyjR/VEk6deqkTz/9VFOnTtXjjz+u2NhYPfbYYyVOaF6aBg0aaMaMGXrwwQc1ZswYjRw5UnPnzj2rdrqaxagKM4pVMcnJyQoPD1dSUlKFS0Cru2/v+Far31yt3tN7q8+0Pp5ujkfk5eYpYVdCkWqq0ztPSyX81PgG+iooKkhGrqG8nDzl5eYpLydPVl+r6p1XTw0ubKCGFzVUgwsbKDQ21PmBUKOd3HpSr7Z9Vb5BvpqSPEVW3/IPDT2y9oje6vSWfPx9NOngJNWqy4T9AAAUJyMjQ3v27FHTpk0VGBjo6eYAQJVV0r+XlZ2V1KzyF1Sa6jyHVGWx+lgV1SpKUa2i1O7a/LHE2WnZOrE5f9hf4p5EJR1IUvLBZKUeS1VORo7OHDpT7DH3xu/V3vi99vvhjcLV9JKmajGohZpf2lyBtfkFyVvY5o+qd369CoVRkhTbMVb1u9TX4b8Oa/3769X9nu6V2UQAAAAAcBnvTRtQoup4lT138Qv2U/0u9VW/S9FhVjmZOTpz+IzST6fL6muV1ccqq69VFh+LslOzdfivwzq44qAOrTikE5tOKGl/ktbNXad1c9fJ4mNRox6N1GJQC7Uc1FLR7aMZ+leDnc38UQV1uq2TDv91WGtmr1G3Sd2Y3BwAAABAtUAghWJRIVUxvgG+imgaoYimEcU+Xu/8eup0aydJUuaZTB1acUg7F+3UjoU7dHLLSe37bZ/2/bZPix9crLCGYfZwqlm/ZvIPqR6XJkbZ2AKpiswfVVD7G9vrp/t+0qltp7TuvXXqOKZjZTQPAAAAAFyKtAHFokLK9QJCA9SsfzM1699Mlz1/mRL2JGjn92Y4teeXPUo+mKw1b63RmrfWyMffR3E94hTXI06NejRSw4saMryvGjPyDB1ZWzkVUgGhAer1aC/9dN9PWvzgYrW9pq0Cw/lsAAAAAKjaCKRQLCqk3C+iaYS6juuqruO6Kjs9W/uW7NOOhTu047sdStidoL2/7tXeX/eaO1uk6HOi1bBbQ9U7v55izjWv+EcQUT2c2nFKWWey5Bvkq7pt65718S6ccKHWvL1Gp7adUvz0eA3878BKaCUAADVPXl6ep5sAAFWaO/+dJG1AsWwVUr6BfEQ8wS/ITy0GtlCLgS008KWBOr3jtPbG79WB3w/owPIDOr3ztI5vPK7jG487PC+8Ubhizo1RVJso1Wldx5yUvXWUakXXYj6qKsQ2XK/eeRWf0LwgH38fXf5/l+vDAR9q5csr1enWToo+J/qsjwsAQE3h7+8vq9Wqw4cPq27duvL39+d3IwAowDAMZWVl6cSJE7JarfL3d/2UMaQNKJatQoohe55nsVjsV/vrPLazJCn1eKoO/H5Ah1Ye0vENx3V0/VElH0hW0v4kJe1Pkr51PEZAeID9GFGtzds6resoskUkc1N5gO0Ke2c7XK+g5pc1V+vBrbXt621aNGGRRvw8gl+0AQD4h9VqVdOmTXXkyBEdPnzY080BgCorODhYjRo1ktV69n84Lw2BFIplr5BiyF6VVCu6ltoMaaM2Q9rYt6UnpOv4huM6tuGYTm07pVPbT+nUtlNK3JeozKRMHV51WIdXFf0FLLhusCKamROx125aWxHN/rltGqGwuDD5+BFKVrbKusJeYQNeHKCdi3Zqzy97tOWLLWp3XbtKPT4AANWZv7+/GjVqpJycHOXm5nq6OQBQ5fj4+MjX19dtf9gmbUCxqJCqfoIigtS4V2M17tXYYXtORo5O7zxtBlT/hFSntp/SyW0nlX4qXWkn0pR2Ik2HVhwqckyLj0XhceH2kMoWWNnCK4YClp+RZ+jImsq5wl5hEc0i1OP+Hvrt8d/04z0/quWglvIL9qvUcwAAUJ1ZLBb5+fnJz4//HwHA0wikUKycDCqkagrfQF9Ft49WdPuicwplJGYoYU+CEvckKmFPghJ2/7O+O0GJexOVm5mrxL2JStyb6PTY4Y3CFRYXpvBG4UWWsLgw+QXxC19Bp3edNic0D/RV3XZnP6F5YT0f7Kn1761X0v4kLZu5TH0f61vp5wAAAACAs0XagGLZhuxRIVWzBdYOVGzHWMV2LDp0zMgzdObImeLDqj2JSj6UrJyMHHvllTPBdYLzA6pGhYKruHCF1AuRxeo9VVa24Xox58VUyoTmhfkF++myFy7TZ9d/puXPLlfLQS3V8KKGlX4eAAAAADgbBFIolm3IHhVS3stitSisQZjCGoSpUc9GRR7PyczRmUNn7BOpF7dkp2Yr7WSa0k6m2YepFWb1syqsYdEKq4JVVwGhAa5+uW7jignNC2t7bVs1v6y5dv24S+/1fU9Xf3i12l3LfFIAAAAAqg7SBhSLCimUxjfA15xPqllEsY8bhqGMxIwiIVXy/n+uBnggSWcOnVFedp4S9yQqcU+i03MFhAUotH6oQmJDFFo/tNglJDakWgwPtFVIVfb8UQVZLBYN/WKoPr/hc+34boc+u/4zXfrspep2Tzfm/AIAAABQJRBIoVhUSOFsWSwWBUUEKSgiSPXOq1fsPnk5eTpzuGiVVfKBZPt6RmKGMpMzlZmcqZNbT5Z4zsDagY4hVf0QhcYWDa488bnOzcrVzw/+rL2/7pUkNbiggUvP5x/irxu+ukGLJi7SqldX6af7ftLpnac16JVBLhkqCAAAAADlQdqAIow8Q3k5eZKokIJrWX2t9mF5zmQmZ+rM4TM6c+SMefvPknI4JX/7oTPKychRRmKGMhIzdGLziRLPGxQZpJB6IaoVU0shMeatw3p0/nplhFeJexP1+bDPdWileSXDnlN6FjvJfGWz+lp1+cuXK7JFpH6Y/INWv7laSfuSNOS9IaoVXcvl5wcAAAAAZwikUIRtuJ5EhRQ8LyAsQAFhAarTpo7TfQzDUGZSZn5gdcRJcHX4jHIzc5V+Ol3pp9NLDa4kKSA8wB5OFRdehcSEqFa0uc2/ln+R52/9aqu+HvO1MhIzFBgRqCFzh6j1Va3P6j0pD4vFoosmXqTaTWrri5u+0M5FOzWr8SydP+Z8dbunmyKbR7qtLQAAAEB1lpebp4TdCTqx+YRObDqh5IPJyk7LVk56jrLTs/PX07KVne643vqq1rr242s9/RKqlBqZNuTm5mr69On68MMPdfToUdWvX1+jR4/WI488wvwpZWAbridJvoE18iOCGsZisSiwdqACaweqbru6TvczDEMZCRlmUHUsRanHUu23BddTjqUo9Xiq8rLzlJmUqcykzBKvJGjjF+ynWtG1FFw3WLXq1pLFx6Lt/9suSWpwYQNdN/861W5cu7Jedrm0GdJGY34bo+/GfafDqw7rr9f/0uo3V6vttW3V4/4eqt/FdXNaAQAAANVRyrEU7fllj/Ys3qMjq4/o5NaTysnIKf2JxchKyark1lV/NTJteOaZZ/T666/rvffe0znnnKO//vpLY8aMUXh4uCZMmODp5lV5BSukrH7MNYOaw2KxKCgySEGRQaUOmbOFV6nHU4uEV8WFWDkZ5l8/EvcmKnFvosOxut3TTf2e6icff88Oga3fpb5uXXGr9i3Zp+XPLtfO73dq82ebtfmzzYpuH61mlzZTs/7N1LhXY/mHFK32AlCzpB5P1d8f/q0zR87IYrU4LCH1QtT6ytYlDqkGAKA6MAxzSprczFzlZuUqJzOnxPWslCwd+OOA9vy8R8f+PlbkeL6BvqrTto6iz4lW7aa15R/iL98gX/kF+ckv2M/pekB4zblyeGWxGIZheLoRle2KK65QTEyM3nnnHfu2a6+9VkFBQfrwww9LfX5ycrLCw8OVlJSksLAwVza1Skran6RZjWfJJ8BHj2Q84unmAFWeYRjKSslS6vFUpZ1IU+rxVKWeSFXayTQ1vKihmvRu4ukmFuvY38f0+/O/a+MnG+3zxklmEB3XLU5xPeJU95y6qtuuruq0riO/4Kp/FUMAJTMMQwf/PKhVr67S5s82Kzcrt8T963eprzbXtFHba9qqTmvnQ6cBAN7DMAwZuYZys3OVl5OnvOy8ouvZeWYI9M96aY+XFhLlZuUqN/Of+xVY11mkHvU61lOz/s0U1z1O0e3NEMrq452FG5WdldTICqnu3bvrrbfe0vbt29WqVSutX79ey5Yt04svvljs/pmZmcrMzLTfT05OdldTqyRbhRTzRwFlY7FYFBAaoIDQgGo1J1PMuTG6+v2rNeDFAdrzyx7t+mmXdv+0W0n7krTvt33a99u+/J0tUkTTCEW1ilJYXJjCGuYvofVDFVwnWEFRQfLx40IIQFWUl5unvz/4WytfXqkja47Ytze4oIEa9WokGf9c1CQ3T0auoeMbjmvf0n06/NdhHf7rsH556BfVaVtHzQc0V/NLm1NJCQBuYK/syfon1MnKLX7Jzg9fcjJy8oOYgrcZOcVuK7xvqdv+aUt1ZrFa5BPgI98AX/n4+xS7Ht0hWs36N1OTvk1Uqy4XA3KVGpk4PPjgg0pOTlabNm3k4+Oj3NxcPfnkkxo+fHix+z/99NOaMWOGm1tZddnGxHKFPcA7BNcJ1jlDz9E5Q8+RYRhK2JWg3T/v1tF1R80JGzefUPqpdCXsTlDC7oQSjxUQFqCgqCAFR5kBlS2ost0PrB1on6i+8EIIDrhGblauvhz5pTbN3yTJ/P+9w40d1HV81xLnj0s5lqJtX2/TlgVbtGfxHp3cclInt5zUilkr7JWUTfs3VeNejdWgawOqKAFUefbKnoJBTjEBj9Pwx8n+JT2nvMcqvH91YvW1yupnlY+fj6x+Vll989d9/HxKfNw3wFc+AT5OAyKn6/88pzzr3lrdVBXVyCF78+bN03333afnnntO55xzjtatW6eJEyfqxRdf1KhRo4rsX1yFVFxcnNcO2Tv812HN7jpbYQ3DNOnAJE83B0AVkHoiVSc2n9Dpnad15tAZJR9Mti9nDp1RekL6WZVCS+ZQQWdhlX+ov3lby1/+If7yq+Un/1r5t8Vt86vlR8UWvF52WrY+ve5T7fx+p6x+VvWZ0Uedx3ZWcFRwuY6TkZihXT/u0u6fd2v3T7uLzJVn9bWq3vn11LB7Q8V1j1Nc9ziFxzH/FFBT2YKdgkOuShueVVwAU2rVT+H9s4o/TnmOdba/r3iaj78Zrlj9rPZ122ILXHwDffPXbYGMk+3l3ubvU2yoZPGxcAExL1DZQ/ZqZCAVFxenBx98UOPHj7dve+KJJ/Thhx9q69atpT7f2+eQ2r98v+b0nKOI5hGasJNJ4AGULi83TxmJGUo/la60U2lKO5lmXy94m5mUqcxkx8WVVxzx8fcpMbSybXPYHuLvOBFlsJ/8gopf9w30dfrLV15OnvlenDDfj6zULMdLAadl55eMF/rFzzew5F8MbY/zFz6UJCMpQ59c+Yn2L90v3yBfDftymFoMaHHWxzUMQwm7E7T7p93a88seHVh+QGcOnymyX1jDMDOc6mEGVDHnxRASw+vYhlyVZQ6dMoc7ZTxGwX3LdcwyHr+msAc7fj5FAp6Swh/bc6z+xTzm5FglHacs57b6Wgl94FHMIVUGaWlpslodf0n38fFRXl7N+YfTlXIzzdJQhs8AKCurj1XBUcEKjgpWlKLK9dy83DxlpWTlB1RnsoqEVvbHUrOUnZqtrJR/bgvct6+nZsnINf/WYvtraEZChitetiTzSisFr6Ji8bGYgdzps68aK43Fx1K2v2oWE2Y5e7y4YxT8Zb3gX0Vtv0AX3ma7tVj5pdlTUk+k6sMBH+ro2qMKCA/QTd/epEY9G1XKsS0WiyKbRyqyeaS63NFFhmEo+UCy9i/frwO/H9DB3w/q6PqjSj6YrE2fbtKmT/OHCka3j1a98+upXsd6iu0Yq+gO0QoI5apD3sYwDBl5+RU2trnLHNZzzfCj2PWzCGbK8rzKDIxs/x95C4chWYXW7cOxKhDYOA1yzjL8sfoR8ACeVCMThyuvvFJPPvmkGjVqpHPOOUdr167Viy++qJtvvtnTTasWbJOaM4cUAHew+lgVGB6owPDASjmeYZhzQxQJrVKzyrYtJcusYkrPzq9oSi9Q2ZSe7fCX4ZyMHPvce0VYpKDIINWqW0v+ofmVV7YAy8gzip0wtMiEogUmIjXy8r/cGLmGvdqqKrL4WIoGVRUJtnwssvpYzeEABdatPuZQgcLbHG59rc4fK8vzbee1FtpmtTisB9cNVnCdYI9/scnJyNH+5fv1/Z3f6+TWkwquG6wRP45QvfPrueycFotF4Y3C1aFRB3W4sYMkKSslS4dWHbIHVAd+P6CMxAwdWX1ER1YfcXh+cN1gRTSNUO2mtc2lSW3VqltLQZFBCooKMm8jg0qsSPQEwzAkwwzV7eGKkzClosGLO55n5Dhvt6vaUvDfMa9kUbFz6JQ4304Jc++U9liZjlkJx2DIFoDyqpGB1Msvv6xHH31U48aN0/Hjx1W/fn3dfvvtmjp1qqebVi1QIQWgOrNYzKoh3wBflbNYq8zycvLyQ6pCwVVedp6C6wSbAUVUsKy+lTeszn61nTJcEae8+zi9Ak9mTv68HAWrAQrMB2KrFijS3lxDObk5kusK1KoUv2A/1W6SH6qENQzL/yzUMZegiCCnIZjF6vzLnH2+lgIBgC0ESdybaM7t9PNu7V+63x6QhsWFacRPI1SndR13vg2SJP8QfzXt21RN+zY1259nKGFPgo6uPaqj647ab88cPmMOaz2RpkMrD5V4TIvVYlbv/VON6Bvoa69usFgtkkX297DwfVnMz2PBKwmWul4wZCpm3etDFRcqEiYXCpbPJjg5mzDmbAIjqkcBoKgaOYfU2fL2OaQ2zt+oL274Qo17N9bo+NGebg4AoBooPE+KfYLZwiFWKcFWkW2FKy0K3xaq0ih4W9rjZTlGmcKLnLxKmdhfkkPlVcEQqjzHDokNUYsBLdTnsT5VfmLxjMQMJe5NVMKeBCXuMW+T9yfbh72mnTJvq+uwp+Iq8YoEkiUFLxV4niuO6dbnEdYAQJXFHFJwOXuFVCAfDwBA2Vgs5vA8Hz8f+cnP081xu5zMHCXtT1Li3kR7sJJyJEVpJ9PylxNpykzOLPE4Rt4/IVc5Jgz2D/VXkz5N1Kx/MzXr30x12tapNsNmAmsHmnNKlTCk0DAMZSZnOg6hzchRTnqOcrPNK2bZ5iQqad3ZcMvC6wWHZ5ZrvcCxrL4EKwAAlIbEAUXY5pBiyB4AAGXjG+CrqJZRimpZ8jjRYofeObm1WIrOmVXsfFY1fN4Wi8VSqfPMAQCAqoHEAUXYKqSY1BwAgMplsVhk8bVU6txiAAAA1RG/DaEIKqQAAAAAAIArEUihCNvVeaiQAgAAAAAArkAghSIYsgcAAAAAAFyJQApFMGQPAAAAAAC4EoEUiqBCCgAAAAAAuBKBFIqgQgoAAAAAALgSgRSKoEIKAAAAAAC4EoEUirAFUlRIAQAAAAAAVyCQQhH2IXuBBFIAAAAAAKDyEUihCIbsAQAAAAAAVyKQQhFMag4AAAAAAFyJQApFUCEFAAAAAABciUAKRVAhBQAAAAAAXIlACkXkZJiBFBVSAAAAAADAFQikUIRtyB4VUgAAAAAAwBUIpFCEbcgeFVIAAAAAAMAVCKRQBBVSAAAAAADAlQikUAQVUgAAAAAAwJUIpFAEFVIAAAAAAMCVCKRQhK1CyjeQQAoAAAAAAFQ+Aik4MPIM5WXnSWLIHgAAAAAAcA0CKTjIzcq1rzNkDwAAAAAAuAKBFBzYhutJVEgBAAAAAADXIJCCA9uE5pLk408gBQAAAAAAKh+BFBzkZJgVUj7+PrJYLB5uDQAAAAAAqIkIpODANmSP4XoAAAAAAMBVCKTgwDZkjwnNAQAAAACAqxBIwQEVUgAAAAAAwNUIpOCACikAAAAAAOBqBFJwQIUUAAAAAABwNQIpOLBXSAVSIQUAAAAAAFyDQAoObBVSDNkDAAAAAACuQiAFB7YKKYbsAQAAAAAAVyGQggMqpAAAAAAAgKsRSMEBFVIAAAAAAMDVCKTgICeDCikAAAAAAOBaBFJwYBuyR4UUAAAAAABwFQIpOGDIHgAAAAAAcDUCKThgUnMAAAAAAOBqBFJwQIUUAAAAAABwNQIpOKBCCgAAAAAAuBqBFBzYKqR8AwmkAAAAAACAaxBIwQFX2QMAAAAAAK5GIAUH9gophuwBAAAAAAAXIXWAAyY1BwAAAADUdDl5OVp3dJ2ycrPccr7IoEi1qdPGLeeqLgik4IBJzQGgbFKzUnU05ainmwEXCvANUIPQBrJYLJ5uCgAAqCRHU45q9urZenP1mzp05pDbznt1m6u1YNgCt52vOiB1qMFSslLK/ZzM9ExJUo5PToWeDwA1UZ6Rp52nd2rloZVadWiVVh1epU0nNinPyPN00+BikUGR6lq/q7rW76oLGlygzvU7KywgzNPNAgAA5bTu6Dq9uupVfbH5C2XnZUuSagfWVp3gOm45f2xIrFvOU50QSNVg0c9FKz0nvVzPGb1jtJqoiW5eeLM27d/kopYBQM1Qy6+WrBamY6yp0nPSdTr9tH7Y9YN+2PWDp5sDAAAqSbeG3TSu6zhd3+56BfgGeLo5XotACg58c8yPRI5vjodbAgBVS+3A2vYqma71u6prg66qH1rf082CC2XlZunvY39r1aFVWnnYrI7bfGKzDBmebhoAACinIN8g3dThJo3rOk6dYjt5ujmQZDEMg9+qCklOTlZ4eLiSkpIUFlZ9y/LTs8tXHSVJc7vO1fH1x3Xd/65TswHNXNAqAKieAn0DmUsIysrNUm5erqebAQAAysnPx0++VmpyzkZlZyX0Rg0W5BdU7ufkZZnzoQTXCq7Q8wEAqMn8ffwlLkQLAABw1pj4Ag5yM82/+nKVPQAAAAAA4CoEUnCQk2nOHeUTwJ9/AQAAAACAaxBIwYG9QiqQCikAAAAAAOAaBFJwYKuQYsgeAAAAAABwFQIpOLBVSDFkDwAAAAAAuAqBFOwMw1BuFpOaAwAAAAAA1yKQgp0tjJKokAIAAAAAAK5DIAW7nIwc+zoVUgAAAAAAwFUIpGBnmz9Kknz8qZACAAAAAACuQSAFO9sV9qx+VlmsFg+3BgAAAAAA1FQEUrCzVUgxXA8AAAAAALgSgRTsbBVSTGgOAAAAAABcySOBVGZmpsvPcejQIf373/9WVFSUgoKC1KFDB/31118uP291RoUUAAAAAABwB7cEUt9//71GjRqlZs2ayc/PT8HBwQoLC1Pv3r315JNP6vDhw5V6voSEBPXo0UN+fn76/vvvtXnzZr3wwguKiIio1PPUNLYKKd9AAikAAAAAAOA6Lk0evvzySz3wwAM6c+aMBg0apAceeED169dXUFCQTp8+rY0bN+rnn3/W448/rtGjR+vxxx9X3bp1z/q8zzzzjOLi4jRnzhz7tqZNm571cWs6W4UUQ/YAAAAAAIAruTSQevbZZ/Xf//5Xl19+uazWosVYQ4cOlWQOr3v55Zf14YcfatKkSWd93m+++UYDBgzQ9ddfryVLlqhBgwYaN26cbrvttmL3z8zMdBhGmJycfNZtqI7sFVIM2QMAAAAAAC7k0uThjz/+KNN+DRo00MyZMyvtvLt379brr7+uyZMn66GHHtKqVas0YcIE+fv7a9SoUUX2f/rppzVjxoxKO391RYUUAAAAAABwB49dZS83N1fr1q1TQkJCpR87Ly9PnTp10lNPPaWOHTtq7Nixuu222/TGG28Uu/+UKVOUlJRkXw4cOFDpbaoOqJACAAAAAADu4LZAauLEiXrnnXckmWFU79691alTJ8XFxSk+Pr5SzxUbG6t27do5bGvbtq32799f7P4BAQEKCwtzWLxRToYZSFEhBQAAAAAAXMltgdTnn3+u8847T5L0v//9T3v27NHWrVs1adIkPfzww5V6rh49emjbtm0O27Zv367GjRtX6nlqGtuQPSqkAAAAAACAK7ktkDp58qTq1asnSVq4cKGuv/56tWrVSjfffLM2bNhQqeeaNGmS/vzzTz311FPauXOnPv74Y7311lsaP358pZ6nprEN2aNCCgAAAAAAuJLbAqmYmBht3rxZubm5WrRokS699FJJUlpamnx8KjcA6dq1q7788kt98sknat++vR5//HHNmjVLw4cPr9Tz1DRUSAEAAAAAAHdwW/IwZswYDR06VLGxsbJYLOrfv78kacWKFWrTpk2ln++KK67QFVdcUenHrcmokAIAAAAAAO7gtkBq+vTpat++vQ4cOKDrr79eAQEBkiQfHx89+OCD7moGSmCrkCKQAgAAAAAAruTWsVnXXXddkW2jRo1yZxNQAluFlG8gQ/YAAAAAAIDruDV5WLVqlX799VcdP35ceXl5Do+9+OKL7mwKisEcUgAAAAAAwB3cljw89dRTeuSRR9S6dWvFxMTIYrHYHyu4Ds9hDikAAAAAAOAObgukXnrpJb377rsaPXq0u06JcqJCCgAAAAAAuIPVbSeyWtWjRw93nQ4VwKTmAAAAAADAHdwWSE2aNEmvvvqqu06HCsjJ+GdScyqkAAAAAACAC7ktebj33nv1r3/9S82bN1e7du3k5+fn8PiCBQvc1RQ4wRxSAAAAAADAHdwWSE2YMEG//vqr+vbtq6ioKCYyr4KYQwoAAAAAALiD25KH9957T1988YX+9a9/ueuUKCcqpAAAAAAAgDu4bQ6pyMhINW/e3F2nQwVQIQUAAAAAANzBbYHU9OnTNW3aNKWlpbnrlCgnKqQAAAAAAIA7uK0U5v/+7/+0a9cuxcTEqEmTJkUmNV+zZo27mgIn7BVSgVRIAQAAAAAA13Fb8jBkyBB3nQoVZKuQYsgeAAAAAABwJbclD9OmTXPXqVBBtgophuwBAAAAAABXctscUqtWrdKKFSuKbF+xYoX++usvdzUDJaBCCgAAAAAAuIPbAqnx48frwIEDRbYfOnRI48ePd1czUAIqpAAAAAAAgDu4LZDavHmzOnXqVGR7x44dtXnzZnc1AyWgQgoAAAAAALiD2wKpgIAAHTt2rMj2I0eOyNeXAMTTDMOgQgoAAAAAALiF2wKpyy67TFOmTFFSUpJ9W2Jioh566CFdeuml7moGnMjNyrWvUyEFAAAAAABcyW3Jw/PPP69evXqpcePG6tixoyRp3bp1iomJ0QcffOCuZsAJW3WURIUUAAAAAABwLbcFUg0aNNDff/+tjz76SOvXr1dQUJDGjBmjG2+8UX5+fu5qBpywzR8lUSEFAAAAAABcy63JQ61atTR27Fh3nhJlZKuQsvpaZbFaPNwaAAAAAABQk7l0Dqk///yzzPumpaVp06ZNLmwNSmK/wl4g1VEAAAAAAMC1XBpIjRgxQgMGDNBnn32m1NTUYvfZvHmzHnroITVv3lyrV692ZXNQAq6wBwAAAAAA3MWl5TCbN2/W66+/rkceeUQ33XSTWrVqpfr16yswMFAJCQnaunWrUlJSdPXVV+vHH39Uhw4dXNkclMBeIcX8UQAAAAAAwMVcmj74+flpwoQJmjBhgv766y8tW7ZM+/btU3p6us477zxNmjRJffv2VWRkpCubgTKgQgoAAAAAALiL28phunTpoi5durjrdCgnKqQAAAAAAIC7uHQOKVQfVEgBAAAAAAB3IZCCJCkngwopAAAAAADgHgRSkJQ/ZI8KKQAAAAAA4GoEUpCUP2SPCikAAAAAAOBqbgukMjIy3HUqVAAVUgAAAAAAwF3cVg5Tu3ZtXXDBBerdu7f69Omj7t27KygoyF2nRymokAIAAAAAAO7itgqpn3/+WQMHDtSKFSs0ePBgRUREqGfPnnr44Yf1008/uasZcMJWIeUbSCAFAAAAAABcy22BVM+ePfXQQw/pxx9/VGJion799Ve1aNFCzz77rAYOHOiuZsAJW4UUQ/YAAAAAAICrubUcZvv27YqPj7cvmZmZuuKKK9SnTx93NgPFYA4pAAAAAADgLm4LpBo0aKD09HT16dNHffr00QMPPKBzzz1XFovFXU1ACZhDCgAAAAAAuIvbhuzVrVtXaWlpOnr0qI4ePapjx44pPT3dXadHKaiQAgAAAAAA7uK2QGrdunU6evSoHnzwQWVmZuqhhx5SnTp11L17dz388MPuagacoEIKAAAAAAC4i1vTh9q1a+uqq65Sjx491L17d3399df65JNPtGLFCj355JPubAoKycmgQgoAAAAAALiH2wKpBQsW2Ccz37x5syIjI9WzZ0+98MIL6t27t7uaASeokAIAAAAAAO7itvThjjvuUK9evTR27Fj17t1bHTp0cNepUQbMIQUAAAAAANzFbYHU8ePH3XUqVAAVUgAAAAAAwF3cmj7k5ubqq6++0pYtWyRJ7dq10+DBg+XjQ1WOp1EhBQAAAAAA3MVtgdTOnTs1aNAgHTp0SK1bt5YkPf3004qLi9N3332n5s2bu6spKIa9QiqQCikAAAAAAOBaVnedaMKECWrevLkOHDigNWvWaM2aNdq/f7+aNm2qCRMmuKsZcMJWIcWQPQAAAAAA4GpuSx+WLFmiP//8U5GRkfZtUVFRmjlzpnr06OGuZsAJW4UUQ/YAAAAAAICrua1CKiAgQGfOnCmyPSUlRf7+/u5qBpygQgoAAAAAALiL2wKpK664QmPHjtWKFStkGIYMw9Cff/6pO+64Q1dddZW7mgEnqJACAAAAAADu4rZA6v/+7//UvHlzdevWTYGBgQoMDFSPHj3UokULvfTSS+5qBpygQgoAAAAAALiL29KH2rVr6+uvv9aOHTu0detWSVLbtm3VokULdzUBJaBCCgAAAAAAuIvby2Fatmypli1buvu0KEVOBhVSAAAAAADAPVyaPkyePLnM+7744osubAlKYxuyR4UUAAAAAABwNZcGUmvXri3TfhaLxZXNQCkMw7AP2aNCCgAAAAAAuJpL04dff/3VlYdHJcnLzrOvUyEFAAAAAABczeVX2du9e7cMw3D1aXAWbMP1JMk3kAopAAAAAADgWi4PpFq2bKkTJ07Y7w8bNkzHjh1z9WlRDrbhehJD9gAAAAAAgOu5PJAqXB21cOFCpaamuvq0KAdbhZTV1yqLlfm8AAAAAACAa7k8kELVZ6uQYv4oAAAAAADgDi4PpCwWS5Gr6HFVvarFViHFcD0AAAAAAOAOLk8gDMPQ6NGjFRAQIEnKyMjQHXfcoVq1ajnst2DBAlc3BU5QIQUAAAAAANzJ5YHUqFGjHO7/+9//dvUpUU5USAEAAAAAAHdyeQIxZ84cV58CZyknwwykqJACAAAAAADuwKTmsA/Zo0IKAAAAAAC4A4EU7EP2qJACAAAAAADuUOMDqZkzZ8pisWjixImebkqVRYUUAAAAAABwpxodSK1atUpvvvmmzj33XE83pUqjQgoAAAAAALhTjQ2kUlJSNHz4cM2ePVsRERGebk6VZq+QCqRCCgAAAAAAuF6NDaTGjx+vf/3rX+rfv3+p+2ZmZio5Odlh8Sa2CimG7AEAAAAAAHeokYHUvHnztGbNGj399NNl2v/pp59WeHi4fYmLi3NxC6sWW4VUpQ7ZW7tWuuEGafHiyjsmAAAAAACoEWpcIHXgwAHdfffd+uijjxQYGFim50yZMkVJSUn25cCBAy5uZdVS6RVShiHddps0f7506aXSAw9IWVmVc2wAAAAAAFDt1bhAavXq1Tp+/Lg6deokX19f+fr6asmSJfq///s/+fr6Kjc3t8hzAgICFBYW5rB4k0qvkPrtN2n1aslqNcOpZ5+VuneXtm+vnOMDAAAAAIBqrcYFUv369dOGDRu0bt06+9KlSxcNHz5c69atk48PV5IrLCfjnwqpyprU/IUXzNuxY6UvvpAiIsyAqlMnac4cM6QCAAAAAABeq8bNYh0aGqr27ds7bKtVq5aioqKKbIcpOy1bkuQbVAkfh23bpP/9T7JYpEmTpFatpAsukEaMkOLjpZtvlvbvl6ZNO/tzAQAAAACAaqnGVUih/LLTzUDKL9jv7A/24ovm7ZVXmmGUJDVsKP38szR9unn/hReklJSzPxcAAAAAAKiWvCKQio+P16xZszzdjCorJ90csucXdJaB1IkT0vvvm+v33OP4mI+P9OijUsuW0pkz0rx5Z3cuAAAAAABQbXlFIIWSVdqQvddekzIypC5dpIsvLvq41Srdfru5/sYbZ3cuAAAAAABQbRFIIb9C6myG7KWnS6++aq7fc485h1RxRo2S/P3NSc7/+qvi5wMAAAAAANUWgRTy55A6myF7H35oDtlr1Ei67jrn+9WpI11/vbn+5psVPx8AAAAAAKi2CKRgH7JX4QqpvLz8yczvvlvyLWXo3x13mLcffywlJVXsnAAAAAAAoNoikIJ9yF6F55D6/ntp61YpLEy69dbS9+/RQ2rXTkpLMyurAAAAAACAVyGQwtkP2Xv5ZfP2ttvMUKo0Fkt+ldSbb0qGUbHzAgAAAACAaolACmc3ZC8vT1q+3FwfNarszxsxQgoKkjZskP74o/znBQAAAAAA1RaBFM5uyN7OnVJKihQYKLVtW/bn1a4t3XCDuf7GG+U/LwAAAAAAqLYIpHB2Q/bWrDFvzzuv9MnMC7MN2/v0U+nUqfKfGwAAAAAAVEsEUl7OMAx7hVSFhuytXWveduxY/ud27Wo+LzNTev/98j8fAAAAAABUSwRSXi4nI8e+XqEhe2cTSFks0u23m+tvvMHk5gAAAAAAeAkCKS9nq46SKjBkzzDOLpCSpJtukmrVkrZvZ3JzAAAAAAC8BIGUl7NdYc/qZ5XVt5wfh4MHpZMnJR8fqUOHijUgNFS67jpzfe7cih0DAAAAAABUKwRSXu6sJjS3VUe1a2deZa+iRo82b+fPl9LSKn4cAAAAAABQLRBIeTlbhZTb548qqFcvqUkTKTlZ+uqrszsWAAAAAACo8gikvJzHrrBXkNUqjRplrs+Zc3bHAgAAAAAAVR6BlJc7qyF7a9aYt506nX1DbIHU4sXS/v1nfzwAAAAAAFBlEUh5uQoP2Tt1SjpwwFw///yzb0jTplKfPuaV+z744OyPBwAAAAAAqiwCKS9X4SF7tuF6zZtLYWGV0xjb5OZz55rBFAAAAAAAqJEIpLxchYfs2Ybrne38UQVde61Uq5a0c6f0+++Vd1wAAAAAAFClEEh5uQoP2bNVSFXG/FE2ISHS9deb63PnVt5xAQAAAABAlUIg5eXOesheZVZISfnD9ubPl1JTK/fYAAAAAACgSiCQ8nK2IXvlqpBKSZG2bzfXKzuQuvhiqVkz6cwZ6csvK/fYAAAAAACgSiCQ8nK2IXvlmkNq/Xpz0vHYWCkmpnIbZLVKo0aZ6wzbAwAAAACgRiKQ8nIVGrLnivmjCho50rz95RdzgnMAAAAAAFCjEEh5uQoN2XPV/FE2TZpIl19uVmHNnOmacwAAAAAAAI8hkPJyOWn/VEiVZ8jemjXmrasCKUl69FHz9r33pL17XXceAAAAAADgdgRSXs5WIVXmIXtZWdKmTea6KwOpbt2k/v2lnByqpAAAAAAAqGEIpLycbQ6pMg/Z27RJys6Watc2h9a50tSp5u2770oHDrj2XAAAAAAAwG0IpLxcua+yV3D+KIvFRa36x8UXS336mAHYM8+49lwAAAAAAMBtCKS8XLmH7Llj/qiCbFVSs2dLhw6555wAAAAAAMClCKS8XLmH7NkqpDp1clGLCunTR+rZ05y76rnn3HNOAAAAAADgUgRSXq5cQ/by8qT16811d1VIWSz5VVJvvikdPeqe8wIAAAAAAJchkPJy5Rqyd/iwlJoq+fpKrVq5uGUF9O8vXXSRlJEhPf+8+84LAAAAAABcgkDKy5VryN6+feZtw4ZmKOUuBaukXn9dOn7cfecGAAAAAACVjkDKy5VryN7+/eZto0YubJETAwdKXbpIaWnS2LGSYbi/DQAAAAAAoFIQSHm5cg3Zs1VIeSKQslikN96Q/P2lr79mgnMAAAAAAKoxAikvlpudKyPXrDQq05A9W4VU48YubFUJOneWXn7ZXJ8yRVqyxDPtAAAAAAAAZ4VAyovZhutJ1WDIns1tt0kjR5pX/Bs2TDpyxHNtAQAAAAAAFUIg5cVsE5rLIvkE+JT+BNuQPU9VSEnm0L3XX5c6dJCOHTNDqezs0p8HVHenT0uPP24GwmPGmKEsAAAAAFRTBFJezD5/VJCfLBZL6U+oChVSkhQcLH3+uRQaKi1dKj30kGfbA7jSwYPSPfeYP3dTp0oHDkhz50rTpnm6ZQAAAABQYQRSXsw2ZK9M80clJUnJyea6pwMpSWrVyvxSLknPPy+9955HmwNUutRU6dZbpWbNpBdfNO+fd540ebL5+BNPSPPne7aNAAAAAFBBBFJezDZkr1xX2IuKkmrVcmGryuGaa8zKEUkaPVq6914pJ8ejTQIqzWOPSe+8Yw5J7dNH+v57ae1a6YUXzM+6ZA7dW7PGo80EAAAAgIogkPJiBYfslaqqDNcr7JlnpAcfNNdfeEG67DLpxAnPtgk4W7m50gcfmOtz5ki//ioNHGjOoSZJM2dKl18upadLgwdLR496rq0AAAAAUAEEUl7MNmSvXBVSnpzQvDg+PtLTT5tzStWqZX5x79xZ+usvT7cMqLjFi80rSEZFSTfdVPRxHx/pk0+k1q3NOaauvlrKzHR/OwEAAACgggikvJhtyF6Z5pCqqhVSNtdeK61cac4tdeCA1LOnWTGVkuLplgHl9/775u2NN0r+/sXvEx4u/e9/Uu3a0p9/Snfc4bbmAQAAAMDZIpDyYjViyF5B7dqZodRVV5nVIvfeKzVsKD3wgFlFAlQHycnSggXm+siRJe/bsqX06aeS1WpO8v/tty5vHgAAAABUBgIpL1YjhuwVFh4uffml9NZb5pf1pCTp2Welpk2l4cOl5cvN+XmAquqLL8y5odq0kbp0KX3/Sy/Nn9z/7ruljAzXtg8AAAAAKgGBlBerUUP2CrJapdtuk7Zulb75xrxCWU6O9PHH5lC+OnWk66+XZs/OD9qAqsI2XG/kyPxJzEvz6KNSgwbS7t1mAAsAAAAAVRyBlBcr85C9rCzp8GFzvapXSBVktUpXXmlOdL56tTRihDnfTmKiOQn62LFSkyZSixbSDTeYVy774Qfp+HEPNxxea98+KT7eDKKGDy/780JDpRdfNNefftoMpgAAAACgCitDaQxqKtuQPd/gUj4Ghw5JhiEFBEh167qhZS7QqZNZeZKTY16B78cfzeXPP6Vdu8xl/vz8/evXlzp2lM4/37zt2NEc9lfWihWgIj780Lzt27f81YjXX28OVV28WJo40awOBAAAAIAqikDKi9mG7JVaIWUbrhcXZ1YdVWe+vtJFF5nL1KnmHFN//imtWyetXWsuO3aYFWGHD0vffZf/3PBw6dxzpQ4dzOXcc6X27aWwMI+9HNQghuE4XK+8LBbplVfMz+X//mcuV15ZuW0EAAAAgEpCIOXFbEP2Sp1DqrpMaF4R4eHSgAHmYpOSIq1fb4ZTtqBq40YzvFq61FwKathQatUqf2nZ0qymioqSIiMlf3+3viRUUytXStu3S8HB0jXXVOwYbdpIkydLzzxjTnDev78UFFS57QQAAACASkAg5cXKfJW96jSheWUICZF69DAXm6wsacsWacMGc/n7b/P20CHp4EFz+eWX4o9Xq5YZTEVFmUMB69c3J6C23bZrZ85lxXBA72arjrrmGnNOqIp65BHpo4+kPXvMYGr69EppHgAAAABUJgIpL1buIXs1sUKqrPz9pfPOM5eCTp82q1oKL/v3m5OnG4aUmmouBw6YFVfFqV07f66qjh2lCy4wK60IqbxDZqY0b565PmrU2R0rJET673/NOaVmzpSGDZPatj37NgIAAABAJSKQ8mK2QKrMQ/a8pUKqPCIj8+ekKiwvzxzmd/q0uZw8mT831aFD5rJ/v1l5lZhoXg3w11/zn1+njtS9e361VufOUmCg214a3Oi778zPSIMG5oTmZ+vaa81hqD/8IA0ebA4HrF377I8LAAAAAJWEQMqLMWTPxaxWKSLCXJo3d75fVpa0ebO0Zo05X9WaNdLq1WaA9c03+VdL8/eXunRxDKmq61UP4ejdd83bf/9b8vE5++NZLOYQwC5dzEn6b7rJnOS8Mo4NAAAAAJWAQMqL2SY1L3HInmHU7EnNqwJ/f+n8883FJjPTDKZ+/11avtxcjh837//+u/T88+Z+LVqYQ/zOP98cTnj++ebcVAz1qz62bjUrpCwW6ZZbKu+40dHSV19JPXtK339vzi319NOVd3wAAAAAOAsEUl6sTEP2Tp2S0tPN9YYN3dAqSJICAqRu3czlnnvMYHDXLjOYsoVUmzZJO3eay2ef5T83KsqcM6jglf9atTKrtBjyV/XMmmXeXnWVOW9YZerUSXrnHbNCauZMM7wcOrRyzwEAAAAAFUAg5cXKNGTPNlwvJoYww5MsFrMaqkWL/EmvExKkVauk9evNZd06s9rm1Clp2TJzKXyMJk2KhlRNm5rVb0FB7n5VOHFCeu89c33yZNec48YbzaGgzz0njRkjtW5ddHJ+AAAAAHAzAikvVqYhewzXq7oiIqTLLjMXm4wMcz6qwlf927ZNSk6W9uwxlx9+KHq8mBgzsCpuIbByjTfeMPusSxfp4otdd56nnzZDyx9/zJ/kPDradecDAAAAqoucHHNUUFpa/m3B9eK2lfZ4cdsGD5Y++sjTr7ZKIZDyYmUasseE5tVLYKA5TKtTJ8fthmFW4xQMqLZvl3bvNgOqM2ekY8fMZcWK4o8dFSXFxZlDNxs2LLreoIEUHOz611hTZGRIr7xirk+e7Np5v3x8pHnzpK5dzaGfF15ozi9FpRQAAACqGsMwL/yUkWEu6en5t7alMgIi2212tnte15kz7jlPNUIg5cXKNGSPCqmawWIxK2Kio81JrgsyDCkxUdq7t/jFFlidOmUu69Y5P09kpPPQKjbWnHA9PJxJ1yXp44/NieobNpSuu87154uIMCdP/9e/zFCqWzdzfqkbb3T9uQEAAFA95eWZYZAtzClusYVEtgCpYIhUeL0s9zMyzO8onhAUZP6R3XbrbL0i28LDPfOaqjACKS9WpiF7VEjVfBaLGVZERJiTXhdmC6wOHZIOHJAOHsy/ta0fOCClpkqnT5vL+vXOzxcUZAZTtoCq4FJwW2hozQ2uDEN68UVz/e67Jb8SfgYrU+vW5rxjN90kLVpk3q5ebU547st/BwAAANWCYThWDBWu+inLurNtxYVNnhYUZI4ECQys3ICo8LbAwJr7/aOK4huIlzLyDOVm5kpiyB5KUTCwat+++H0Mw5yjqnBQZVs/eFA6csSciD093azQ2bWr5PPWqpUfUNWrZ1Z3xcQUfxsSUvmv25V+/NG8SmJIiHTrre49d0SE9O230qOPmnNLvfCCWfX2ySdS3brubQsAAEBNkZtbdEhZeQOj8jzuCQEB+WFOwSUoyDE0Krhe3vuFH/P3JySqwQikvJStOkpiyB4qgcVilqCGhzsPrSTzP88jR6TDh82l4HrBbUlJZsXVzp3mUprg4Pwhic5CK9ttZKQ5p5In2aqjbrlFql3b/ef38ZGeesqca2z0aGnxYvOKixMnmvNZeaJNAAAAlS07u3JDoJLWs7I88xp9fYtW+tgCouLWS3q8pCUoyPO/Q6PGsRiGpwZnus7TTz+tBQsWaOvWrQoKClL37t31zDPPqHXr1mV6fnJyssLDw5WUlKSwsDAXt9Yz0k6m6bm6z0mSpuZOlcVaTOqcnp4/SfXJk+ak1oA7pKY6hlXHjpnzLRV3W96/EFmtZiVQnTrmEhVlLsWt225r1zafVxk2bpQ6dDCPt3On1LRp5Ry3ojZtkv797/y5wcLDzVDq7rsZ5w54M8Mw5w3Jzc1ffH3Nv1YDQHkZhpSZ6Tg5dUlzDZVlW1lCotxcz7zegIDyhUQVDZSCgtw39QOgys9KamSF1JIlSzR+/Hh17dpVOTk5euihh3TZZZdp8+bNqlWrlqebVyXYKqR8/H2KD6Mkc5iVZA6diox0U8sAmZ+5Fi3MpSSGYYZXhYMqZ+HV6dPmFyzbFQXLymo1fwacBVa29chIxyUw0Pylad8+84qGu3dL8+ebx7zmGs+HUZJ0zjnmPFJffilNm2YGVNOmSbNmSf/5jzR0qHTuuZRKA95g61bzipzz55vrxWna1AzVCy6tW/NXc6C6yMkpf/BTGdsyMz37ui2WyguByhISVdYfMoEarkZWSBV24sQJRUdHa8mSJerVq1ep+3tDhdTJbSf1aptXFVg7UA8kPFD8Tj//LF16qdS2rbR5s3sbCLhCdrZ04oQZRtmuGnjypONt4fWzuTxrYKD5C1hx/8z+8Yd00UUVP7Yr5OVJn38uTZ8ubdmSv715c+naa82la1fCKaAm2b/fnEPuk09KviBFSYKDzYtidO0qdeli3rZowRcyoLDcXDOgycx0vHW2fjaPOwuGPFUxVFDBcMjZ/EFl3VbWwCgggN9fgEpAhVQFJCUlSZIinVT5ZGZmKrNAap+cnOyWdnlSTnqOJCY0h5fx88u/il9ZZWaalVXOQquC22xXGbRVYmVkmMcICZGaNctfevSoemGUZH55HDrUDJ4WLJA+/ti8Gt+uXdKzz5pLbKx04YXSBRfkf/lkzimg+klPl5580vy5zv5nXklfX2nAAOmGG6R+/cyJZH188pfUVLOKcsOG/GXjRiklRVq+3FxswsKkzp3z/53o0kVq0oQvhPAMwzDn96mMEOhsAqOcHE+/E478/c8uDCrrtsKP+/rybwEASV4QSOXl5WnixInq0aOH2juZbPnpp5/WjBkz3Nwyz8pOM3/59AtiQnOgRAEBZggTG1v25+TlmZVVp0+bYVSdOtXrFy8fH+n6680lJUVauFD64gvpu+/Mub2++spcbFq2lFq1MiupWrQwb5s3lxo2NIdfAqhafvxRGjcu/2qnPXtKI0aYYXRJ80UGB0t9+piLTV6etG2b9Ndf5rJqlbR2rXnl1V9/NRebqKj8cMoWVDVo4IpXCE8yDDN4ycw0QyDbUtH7lVE15OnhYsWxWh2vJBYQ4HhblvWSHi8tLAoMpIoRgMfV+CF7//nPf/T9999r2bJlatiwYbH7FFchFRcXV6OH7O1evFsf9P9A0e2j9Z8N/yl+pzFjpLlzpSeekB5+2K3tA1AFpaebXzhXrjS/dK5cKe3ZU/JzQkKkevXMQK9ePTOcq1279MXf36UvBfBKR49KkyaZ80RJZhj08svSkCGVG5rn5JhD/Vetyg+q1q/Pr8QqKCZGatfOnB7AtrRpY/6bwZflogzDfB/LE+ycTRhU0ftVXUBAxQKgygyOfGt8XQCAGoghe+Vw55136ttvv9Vvv/3mNIySpICAAAUEBLixZZ5XriF7VEgBkMy/rF58sbnYnDxpXqFv1678ZedOcwL3lBRz2bnTXMojMNCsriq8BAeXfN+2LTjY8a/AxS0BAXwhgHc4eFB65RXp9dfNyiWrVbrrLunxx6XQ0Mo/n6+veTGEc8+VbrnF3JaZaQ7xs1VR/fWXOfzPdpGJgpVUUv4Q67g4s9qyYcP8QDsiIj+8Dgkp+kXfzy8/YCsYtBW3npNjBjyVubg6HKqOAgLMPzT4+zuuF3e/8LbKDov8/Qk7AaCKqJG/iRuGobvuuktffvml4uPj1bQqXMmqiinXkD3mkALgTJ06Uv/+5lJYSoo5xO/oUfP2yBEpIUFKTMy/LbzY5vCzDbc4dcq17ffxKT24Km5IRcH7xX2ZKumLVmn7cLUyVJaVK80rZn72Wf7cNZ07S2++ad66U0BA/nC9O+4wt6WlmaHUli2Oy65dZrCzb1/+7yJwrjxhz9ner8hzmC8IAOBEjQykxo8fr48//lhff/21QkNDdfToUUlSeHi4goKCPNy6qiE7/Z9AKthJIJWXJx04YK4TSAGoiJAQc36pli3L/pzcXDOUSkw0v6ympuYv5blf8OpChecSKThsKDc3/zlVhdVa9lDLz8/8sufrW/x6aY+XZ9/C23x8zLbalsL3z3ab1Vpzv8Qahvn/rGEUXS/tfm6uGS7ZKntycszP77FjZvhrqzhascK8mqdNnz7SxInSFVdUndAzONicS6prV8ftOTnmazlwwKzusi2nTzuG2gkJ5s+97epheXln3yYfH/PzXdxi++yXtlRWkFOW+z4+NffnBABQ49XIQOr111+XJPUpOOmmpDlz5mj06NHub1AVVOqQvWPHzLJwq5UJRwG4j4+PORwnIsJ158jNdZz01tlSln1sAVdpQ3RKerzwvDq2KzTartLozSyW4oMri6X4L+Fns608+1YkSLKtu5Ofn3TTTdLdd0sdO7r33GfD1zd/mF555OQUDZ0Lv+cF7xuGY8jk68tQLgAA3KhGBlI1fJ72SlHqkD3b/FH165u/pAFATeHjkz/PVFVQeJLi0gKtgvsUrJIpy3pl7ZudbQYstiU31/F+advK897k5poL8tkq1WxLUJA5OXi9euZtTIw599J115nbvIWvr1mZCQAAqoUaGUihdLYhe77BTj4CTGgOAO5hseQPwfEWtoqhioRZtqW4Y1Z0W3mfb6vcslVqlXbfFfsCAABUcwRSXso2ZM9phRQTmgMAXMViMSvVbPP1AAAAwOswUN5L2YbsOZ1DylYhRSAFAAAAAAAqGYGUlyr1KnsM2QMAAAAAAC5CIOWlGLIHAAAAAAA8hUDKS5V5yB4VUgAAAAAAoJIRSHkpe4VUcUP2UlKk06fNdSqkAAAAAABAJSOQ8lL2OaSKG7Jnq44KD5fCwtzYKgAAAAAA4A0IpLxUiUP2GK4HAAAAAABciEDKS5U4ZI8JzQEAAAAAgAsRSHmpMg3ZI5ACAAAAAAAuQCDlpWxD9kqskGLIHgAAAAAAcAECKS9lG7JX4hxSVEgBAAAAAAAXIJDyUmUaskeFFAAAAAAAcAECKS9kGIbzIXs5OdLBg+Y6FVIAAAAAAMAFCKS8UG5WrmSY60WG7B05IuXmSr6+Ur167m8cAAAAAACo8QikvJBt/iipmCF7tuF6cXGSj48bWwUAAAAAALwFgZQXsg3Xs/hYZPUr9BGwXWGP4XoAAAAAAMBFCKS8UMEJzS0Wi+ODTGgOAAAAAABcjEDKC9mG7BWZP0qiQgoAAAAAALgcgZQXcnqFPSm/QopACgAAAAAAuAiBlBcqOGSvCIbsAQAAAAAAFyOQ8kJOh+wZBkP2AAAAAACAyxFIeSGnQ/aSkqQzZ8x1AikAAAAAAOAiBFJeyOmQPVt1VJ06UnCwm1sFAAAAAAC8BYGUF3I6ZI8JzQEAAAAAgBsQSHkhp0P2mNAcAAAAAAC4AYGUFyp1yB4VUgAAAAAAwIUIpLxQqUP2qJACAAAAAAAuRCDlhUodskeFFAAAAAAAcCECKS9kG7JXpEKKIXsAAAAAAMANCKS8kG3InsMcUllZ0pEj5jpD9gAAAAAAgAsRSHmhYofsHTwoGYYUGCjVreuhlgEAAAAAAG9AIOWFip3UvOD8URaLB1oFAAAAAAC8BYGUF7LNIeUwZI8JzQEAAAAAgJsQSHmhYofsMaE5AAAAAABwEwIpL1TikD0mNAcAAAAAAC5GIOWFih2yR4UUAAAAAABwEwIpL1TskD3mkAIAAAAAAG5CIOWFigzZMwyG7AEAAAAAALchkPJCRYbsnTwppaeb6w0beqhVAAAAAADAWxBIeaEiQ/Zs1VGxsVJAgIdaBQAAAAAAvIVv6bugJsnLzVNedp6kAkP2mD8KAAAAAFBdGIZk5ElGrmTk/HP7z5JX6H55Hs8r7/7lOFftc6XmYzz9zlUpBFJexjZ/lFRgyB5X2AMAAAAA97OHKhUMUvIqGry48Vzlfrwsz83zdM+VX9w1BFKFEEh5GdtwPUnyDfyn+1etMm9btfJAiwAAAABUOw4VKsWECIWXIqFCJT9ebKVLCY8XOX4ZXkO521mGYAWuYfH5Z/HNX7cWum973OpT/P4WH8lazP4VfTy8vafflSqHQMrL2CY09w30lcVqkXJzpR9+MB+87DIPtgwAAABwg5KG+rgiJCl1n8KhRTlClLIGKWVpQ7EBTkltqIYVKtWNxeqeoKTg49bi9ndhaFNcSHRWx/M13zdUCwRSXsZWIWWfP2r1aunUKSksTOrWzYMtAwAAQInsQYqbQpLyBhQlDedxSdiT4yTAIUipEhzClOIqU3xKCRnK+XiRQKWEfRyO68o2licEKu7YFk/3IuBSBFJexjaHlP0Ke99/b95eeqnk5+ehVgEAAK9gGIWChJwy3C9pzpPyBhROnl+eIKUyhxWVt50EKe5RUlVKpYcoZQlSnByj2EqWCrahLGFPuYIeK2EKgFIRSHkZ25A9+4TmtkBq4EAPtQgAgCrOYY6UQiGGinmsuJBBeaVUcRQIHErdpzz7lbJvwTYVfC0OQ4AqEh7lFH8MAhXXsgcpbgooiq0wKUNI4rQapLLDnopUzBCkAIC7EEh5GYche6dOSStXmg8QSAFA9VRkUllPByAVDT+qQPuc7Qf3KBIi+BYNDCoroHAapJR2/EoIe8466HHWBoIUAED1QiDlZRyG7P34o/lFpkMHqWFDD7cMQI1lH6Lj5oChcMhRnQKQkl5PkYocKk48zmKVVHiuFCdhgm2/Eis2bOFCafuUdb8KHsvqW0I45Ft0W7H3S3rMdt+XMAUAAC9EIOVlHIbsLVpkbqQ6CiidLSywD0nJcRyuUnCoSmn7OAxzKcs+bg4/nFWxlBTklFSNI8PDnYcqFXI4C20KBzpOAxs3tq1M+xGkAAAAVASBlJexDdnzC/LND6Quv9yDLUKVVezEsznFzBFSTBDjbJ9iA5zinluWfSqhDeUJjAhVXMhSuYFDwSCjUkOOKhzUyFryawMAAACqGAIpL2MbsuebmSIdPy6FhEg9eni4VdVYXq6Ul/VPaJFtLg7r2f+EG//cd1gvvG+B9YL3bcewrxc6jrPnFfvcYs7vLAwycj397lYPFqvyh5z45A9RKTwcpcjQlULbit3Hp8DjLg45KhR0VFYAQ3UJAAAA4G0IpLyMfcjeqWPmhn79JH9/D7aoBEaeGfbkZpq3tqXw/bxMKbfAekn7lvjcQs8vy3O9de4Wh/DEdhngEoKXsgYxVifhTKn7VGIYVK42UH0CAAAAABVBIFWT7f/sn0tSy16BkH34pCTJ99AOc/uF0dL+z/95QoEqBVvFQrFDoAoObSpYkWMLbioYDBV+bnWt0LH4Sla//MV23+JnBhn2dT/n+xZZ/+e5tuc5rJfwvFLP71Ngn5IqdQoGMQQwAAAAAICzQyBVk/0xSspNd9iUs7OfpIvld9IMphQ8W1o22/1tqwirn2T1L7AEmLc+he5b/SWfAMd9C98v6bmF9y/uuT7+jtvsoQ/DjwAAAAAAKA2BVE0W3cesNrJNxmwYyvZtIknyVbbUKFg6p4v9sXxG/q3Fp0B1TuFhWoVvA8oWBPmUMRhyeK4flTkAAAAAANQQBFI1Wd+FRTZlf/Y/SWvkp2zp2tul/i+6v10AAAAAAMCrUXLiZWxX2fNTjnT55R5uDQAAAAAA8EYEUl4m58g/k5r7WaSLL/ZwawAAAAAAgDcikPIy2QeOSpL82raQAgM93BoAAAAAAOCNCKS8yO65S7R7W7YkKbTneR5uDQAAAAAA8FYEUl7i4BcrNO/mn5QrH7UNP6xmT97s6SYBAAAAAAAvRSDlBY7/uE4fDf1a2YafmtU6pms2zpC1drinmwUAAAAAALwUgVQNl/D7Fn0w6BNl5AWoYeBJDVs/Rb4N63m6WQAAAAAAwIvV6EDq1VdfVZMmTRQYGKgLL7xQK1eu9HST3OrM+t16v8+7SskNVrRfgm5aNVH+zeM83SwAAAAAAODlamwgNX/+fE2ePFnTpk3TmjVrdN5552nAgAE6fvy4p5vmFuk7DurDC19RYnaIInyT9e/ltyuofXNPNwsAAAAAAKDmBlIvvviibrvtNo0ZM0bt2rXTG2+8oeDgYL377ruebppb5OXkyWo1FGJN1YifRiq0a1tPNwkAAAAAAECS5OvpBrhCVlaWVq9erSlTpti3Wa1W9e/fX3/88UeR/TMzM5WZmWm/n5yc7JZ2ulKtto00avMDStl2SBF9zvN0cwAAAAAAAOxqZIXUyZMnlZubq5iYGIftMTExOnr0aJH9n376aYWHh9uXuLiaMc9SYJN6qjOgs6ebAQAAAAAA4KBGBlLlNWXKFCUlJdmXAwcOeLpJAAAAAAAANVaNHLJXp04d+fj46NixYw7bjx07pnr16hXZPyAgQAEBAe5qHgAAAAAAgFerkRVS/v7+6ty5sxYvXmzflpeXp8WLF6tbt24ebBkAAAAAAABqZIWUJE2ePFmjRo1Sly5ddMEFF2jWrFlKTU3VmDFjPN00AAAAAAAAr1ZjA6lhw4bpxIkTmjp1qo4eParzzz9fixYtKjLROQAAAAAAANzLYhiG4elGVDXJyckKDw9XUlKSwsLCPN0cAAAAAAAAj6rsrKRGziEFAAAAAACAqotACgAAAAAAAG5FIAUAAAAAAAC3IpACAAAAAACAWxFIAQAAAAAAwK0IpAAAAAAAAOBWBFIAAAAAAABwKwIpAAAAAAAAuBWBFAAAAAAAANyKQAoAAAAAAABu5evpBlRFhmFIkpKTkz3cEgAAAAAAAM+zZSS2zORsEUgV48yZM5KkuLg4D7cEAAAAAACg6jhz5ozCw8PP+jgWo7KirRokLy9Phw8fVmhoqCwWi6ebUybJycmKi4vTgQMHFBYW5unmwA3oc+9Ev3sf+tw70e/ehz73TvS796HPvVNN6XfDMHTmzBnVr19fVuvZzwBFhVQxrFarGjZs6OlmVEhYWFi1/oCj/Ohz70S/ex/63DvR796HPvdO9Lv3oc+9U03o98qojLJhUnMAAAAAAAC4FYEUAAAAAAAA3IpAqoYICAjQtGnTFBAQ4OmmwE3oc+9Ev3sf+tw70e/ehz73TvS796HPvRP9XjwmNQcAAAAAAIBbUSEFAAAAAAAAtyKQAgAAAAAAgFsRSAEAAAAAAMCtCKQAAAAAAADgVgRS5fT000+ra9euCg0NVXR0tIYMGaJt27Y57JORkaHx48crKipKISEhuvbaa3Xs2DH74+vXr9eNN96ouLg4BQUFqW3btnrppZccjrFgwQJdeumlqlu3rsLCwtStWzf98MMPpbbPMAxNnTpVsbGxCgoKUv/+/bVjxw6HfbZv367BgwerTp06CgsLU8+ePfXrr7+Weuy///5bF198sQIDAxUXF6dnn33W4fHZs2fr4osvVkREhCIiItS/f3+tXLmy1ONWdfS58z5fsGCBunTpotq1a6tWrVo6//zz9cEHH5R63OqAfnfe7wXNmzdPFotFQ4YMKfW4VR197rzP586dK4vF4rAEBgaWetzqgH4v+Wc9MTFR48ePV2xsrAICAtSqVSstXLiw1GNXZfS58z7v06dPkZ91i8Wif/3rX6Ueu6qj30v+WZ81a5Zat26toKAgxcXFadKkScrIyCj12FUZfe68z7Ozs/XYY4+pefPmCgwM1HnnnadFixaVetzqwFv7PSMjQ6NHj1aHDh3k6+vr9Hfz+Ph4derUSQEBAWrRooXmzp1baptdykC5DBgwwJgzZ46xceNGY926dcagQYOMRo0aGSkpKfZ97rjjDiMuLs5YvHix8ddffxkXXXSR0b17d/vj77zzjjFhwgQjPj7e2LVrl/HBBx8YQUFBxssvv2zf5+677zaeeeYZY+XKlcb27duNKVOmGH5+fsaaNWtKbN/MmTON8PBw46uvvjLWr19vXHXVVUbTpk2N9PR0+z4tW7Y0Bg0aZKxfv97Yvn27MW7cOCM4ONg4cuSI0+MmJSUZMTExxvDhw42NGzcan3zyiREUFGS8+eab9n1uuukm49VXXzXWrl1rbNmyxRg9erQRHh5uHDx4sFzvcVVDnzvv819//dVYsGCBsXnzZmPnzp3GrFmzDB8fH2PRokXleo+rIvrdeb/b7Nmzx2jQoIFx8cUXG4MHDy7L21ql0efO+3zOnDlGWFiYceTIEfty9OjRcr2/VRX97rzfMzMzjS5duhiDBg0yli1bZuzZs8eIj4831q1bV673uKqhz533+alTpxx+zjdu3Gj4+PgYc+bMKc9bXCXR7877/aOPPjICAgKMjz76yNizZ4/xww8/GLGxscakSZPK9R5XNfS58z6///77jfr16xvfffedsWvXLuO1114zAgMDS21zdeCt/Z6SkmLccccdxltvvWUMGDCg2N/Nd+/ebQQHBxuTJ082Nm/ebLz88sse/+5GIHWWjh8/bkgylixZYhiGYSQmJhp+fn7GZ599Zt9ny5YthiTjjz/+cHqccePGGX379i3xXO3atTNmzJjh9PG8vDyjXr16xnPPPWfflpiYaAQEBBiffPKJYRiGceLECUOS8dtvv9n3SU5ONiQZP/30k9Njv/baa0ZERISRmZlp3/bAAw8YrVu3dvqcnJwcIzQ01HjvvfdKfF3VDX3uvM8NwzA6duxoPPLIIyXuUx3R7479npOTY3Tv3t14++23jVGjRtWIQKow+jy/z+fMmWOEh4eX+BpqCvo9v99ff/11o1mzZkZWVlaJr6O6o8+d/7/+3//+1wgNDXX4IldT0O/5/T5+/HjjkksucXje5MmTjR49epT4uqob+jy/z2NjY41XXnnF4XnXXHONMXz48BJfV3XkLf1ekLPfze+//37jnHPOcdg2bNgwY8CAAWU6riswZO8sJSUlSZIiIyMlSatXr1Z2drb69+9v36dNmzZq1KiR/vjjjxKPYztGcfLy8nTmzJkS99mzZ4+OHj3qcO7w8HBdeOGF9nNHRUWpdevWev/995WamqqcnBy9+eabio6OVufOnZ0e+48//lCvXr3k7+9v3zZgwABt27ZNCQkJxT4nLS1N2dnZJba5OqLPi+9zwzC0ePFibdu2Tb169XJ63OqKfnfs98cee0zR0dG65ZZbnB6ruqPPHfs8JSVFjRs3VlxcnAYPHqxNmzY5PWZ1Rr/n9/s333yjbt26afz48YqJiVH79u311FNPKTc31+lxqyP63Pnvcu+8845uuOEG1apVy+lxqyv6Pb/fu3fvrtWrV9un2ti9e7cWLlyoQYMGOT1udUSf5/d5ZmZmkaH3QUFBWrZsmdPjVlfe0u9l8ccffzicWzI/GyW9blfz9diZa4C8vDxNnDhRPXr0UPv27SVJR48elb+/v2rXru2wb0xMjI4ePVrscX7//XfNnz9f3333ndNzPf/880pJSdHQoUOd7mM7fkxMjNNzWywW/fzzzxoyZIhCQ0NltVoVHR2tRYsWKSIiosRjN23atMhxbY8V99wHHnhA9evXL/Khr87o86J9npSUpAYNGigzM1M+Pj567bXXdOmllzo9bnVEvzv2+7Jly/TOO+9o3bp1To9T3dHnjn3eunVrvfvuuzr33HOVlJSk559/Xt27d9emTZvUsGFDp8eubuh3x37fvXu3fvnlFw0fPlwLFy7Uzp07NW7cOGVnZ2vatGlOj12d0OfOf5dbuXKlNm7cqHfeecfpMasr+t2x32+66SadPHlSPXv2lGEYysnJ0R133KGHHnrI6XGrG/rcsc8HDBigF198Ub169VLz5s21ePFiLViwoMb9wcGb+r0sjh49Wuy5k5OTlZ6erqCgoLM6fkVQIXUWxo8fr40bN2revHkVPsbGjRs1ePBgTZs2TZdddlmx+3z88ceaMWOGPv30U0VHR0uSPvroI4WEhNiXpUuXlul8hmFo/Pjxio6O1tKlS7Vy5UoNGTJEV155pY4cOSJJOuecc+zHvfzyyyv0umbOnKl58+bpyy+/rDET30r0eXFCQ0O1bt06rVq1Sk8++aQmT56s+Pj4ch2jqqPf8505c0YjRozQ7NmzVadOnTI9pzqizx1169ZNI0eO1Pnnn6/evXtrwYIFqlu3rt58880yH6M6oN8d5eXlKTo6Wm+99ZY6d+6sYcOG6eGHH9Ybb7xR5mNUdfS5c++88446dOigCy64oELPr8rod0fx8fF66qmn9Nprr2nNmjVasGCBvvvuOz3++ONlPkZVR587eumll9SyZUu1adNG/v7+uvPOOzVmzBhZrTUrHqDfqwEPDRWs9saPH280bNjQ2L17t8P2xYsXG5KMhIQEh+2NGjUyXnzxRYdtmzZtMqKjo42HHnrI6Xlsk9B9++23DtuTk5ONHTt22Je0tDRj165dhiRj7dq1Dvv26tXLmDBhgmEYhvHzzz8bVqvVSEpKctinRYsWxtNPP20YhmHs3bvXflzbhOQjRowoMg71l19+MSQZp0+fdtj+3HPPGeHh4caqVaucvq7qiD533ucF3XLLLcZll13m9PHqhn537Pe1a9cakgwfHx/7YrFYDIvFYvj4+Bg7d+50+hqrC/q8bD/r1113nXHDDTc4fby6od+L9nuvXr2Mfv36OeyzcOFCQ5LD3CTVFX3u/Gc9JSXFCAsLM2bNmuX0dVVX9HvRfu/Zs6dx7733Ouxjm8Q5NzfX6WusLuhz5z/r6enpxsGDB428vDzj/vvvN9q1a+f09VU33tbvBTmbQ+riiy827r77bodt7777rhEWFub09bkagVQ55eXlGePHjzfq169vbN++vcjjtknSPv/8c/u2rVu3FpkkbePGjUZ0dLRx3333OT3Xxx9/bAQGBhpfffVVmdtWr1494/nnn7dvS0pKcpgk7ZtvvjGsVqtx5swZh+e2atXKePLJJ50e2zY5XsGJTadMmVJkIsxnnnnGCAsLK3FCuOqGPi+5zwsbM2aM0bt37zK1vyqj34vv9/T0dGPDhg0Oy+DBg41LLrnE2LBhQ7X+kkqfl/1nPScnx2jdunW1vwKTYdDvJfX7lClTjMaNGzt8IZ01a5YRGxtbpvZXVWMz6bYAAA0sSURBVPR56T/rc+bMMQICAoyTJ0+Wqd3VAf3uvN87depk3H///UVeQ1BQkJGTk1Om11AV0edl/389KyvLaN68uTFlypQytb8q89Z+L6ikSc3bt2/vsO3GG2/06KTmBFLl9J///McIDw834uPjHS6Lm5aWZt/njjvuMBo1amT88ssvxl9//WV069bN6Natm/3xDRs2GHXr1jX+/e9/Oxzj+PHj9n0++ugjw9fX13j11Vcd9klMTCyxfTNnzjRq165tfP3118bff/9tDB482OEykidOnDCioqKMa665xli3bp2xbds249577zX8/PxKvIxzYmKiERMTY4wYMcLYuHGjMW/ePCM4ONjh8qEzZ840/P39jc8//9yhzYV/mKob+tx5nz/11FPGjz/+aOzatcvYvHmz8fzzzxu+vr7G7Nmzy/0+VzX0u/N+L6ymXGWPPnfe5zNmzDB++OEHY9euXcbq1auNG264wQgMDDQ2bdpU7ve5qqHfnff7/v37jdDQUOPOO+80tm3bZnz77bdGdHS08cQTT5T7fa5K6PPS/33v2bOnMWzYsDK/p9UB/e6836dNm2aEhoYan3zyibF7927jxx9/NJo3b24MHTq03O9zVUKfO+/zP//80/jiiy+MXbt2Gb/99ptxySWXGE2bNi1SNVQdeWu/G4ZZ0bV27VrjyiuvNPr06WOsXbvWoRpr9+7dRnBwsHHfffcZW7ZsMV599VXDx8fHWLRoUXne4kpFIFVOkopd5syZY98nPT3dGDdunBEREWEEBwcbV199tXHkyBH749OmTSv2GI0bN7bv07t372L3GTVqVInty8vLMx599FEjJibGCAgIMPr162ds27bNYZ9Vq1YZl112mREZGWmEhoYaF110kbFw4cJSX/v69euNnj17GgEBAUaDBg2MmTNnOjzeuHHjYts8bdq0Uo9dldHnzvv84YcfNlq0aGEEBgYaERERRrdu3Yx58+aVetzqgH533u+F1ZRAij533ucTJ040GjVqZPj7+xsxMTHGoEGDjDVr1pR63OqAfi/5Z/333383LrzwQiMgIMBo1qyZ8eSTT1brignDoM9L63NbpcCPP/5Y6vGqE/rdeb9nZ2cb06dPN5o3b24EBgYacXFxxrhx46p9OEGfO+/z+Ph4o23btkZAQIARFRVljBgxwjh06FCpx60OvLnfnX0fL+jXX381zj//fMPf399o1qyZw/viCRbDMAwBAAAAAAAAblKzptEHAAAAAABAlUcgBQAAAAAAALcikAIAAAAAAIBbEUgBAAAAAADArQikAAAAAAAA4FYEUgAAAAAAAHArAikAAAAAAAC4FYEUAAAAAAAA3IpACgAA1BijR4/WkCFDPN2MKuXRRx/V2LFj7ff79OmjiRMneq5BJbjooov0xRdfeLoZAADADXw93QAAAICysFgsJT4+bdo0vfTSSzIMw00tKt7o0aOVmJior776yqPtkKSjR4/qpZde0oYNGzzdlDJ55JFHNGnSJF199dWyWvm7KQAANRn/0wMAgGrhyJEj9mXWrFkKCwtz2HbvvfcqPDxctWvX9nRTq4y3335b3bt3V+PGjT3dFGVlZZW6z+WXX64zZ87o+++/d0OLAACAJxFIAQCAaqFevXr2JTw8XBaLxWFbSEhIkSF7ffr00V133aWJEycqIiJCMTExmj17tlJTUzVmzBiFhoaqRYsWRQKQjRs36vLLL1dISIhiYmI0YsQInTx50v74559/rg4dOigoKEhRUVHq37+/UlNTNX36dL333nv6+uuvZbFYZLFYFB8fL0k6cOCAhg4dqtq1aysyMlKDBw/W3r177ce0tX3GjBmqW7euwsLCdMcddzgEOc7O68y8efN05ZVXFtmel5en+++/X5GRkapXr56mT5/u8Pj+/fs1ePBghYSEKCwsTEOHDtWxY8eKtLWgiRMnqk+fPg7v/Z133qmJEyeqTp06GjBggAzD0PTp09WoUSMFBASofv36mjBhgv05Pj4+GjRokObNm+f0NQEAgJqBQAoAANRo7733nurUqaOVK1fqrrvu0n/+8x9df/316t69u9asWaPLLrtMI0aMUFpamiQpMTFRl1xyiTp27Ki//vpLixYt0rFjxzR06FBJZqXWjTfeqJtvvllbtmxRfHy8rrnmGhmGoXvvvVdDhw7VwIED7ZVb3bt3V3Z2tgYMGKDQ0FAtXbpUy5cvV0hIiAYOHOgQOC1evNh+zE8++UQLFizQjBkzSj1vcU6fPq3NmzerS5cuxb4ntWrV0ooVK/Tss8/qscce008//STJDKsGDx6s06dPa8mSJfrpp5+0e/duDRs2rELv/f+3d28hUXVvHMe/oyiNmk15yIQRscxURjHTCmGCnIyCCgQJEyQxbyqiLioCy0qQCCIo6aBlIV7URWlERZQkmp2U8pSikwlaCBUqNKDm6X/xp6HJ3lJ48y35fWDDrD1rP89a+2bgYa01np6e1NbWcuHCBW7cuMHp06e5ePEidrudiooKLBaLyzOJiYnU1NRMO5eIiIj8XXSGlIiIiMxqsbGx5ObmAnDo0CFOnDiBv78/OTk5ABw5coTz58/T1NTEqlWrKCwsJC4ujoKCAmeMkpISzGYzHR0dOBwORkdHSU1NdW6F+7aoYjQaGR4eJigoyHmvrKyM8fFxLl265DwL68qVK5hMJqqqqkhJSQHA09OTkpISvLy8iI6O5vjx4+zfv5/8/Hx6e3t/mvd73d3dTExMEBwcPOm7mJgY8vLyAAgPD6ewsJDKykrWrVtHZWUlzc3NdHV1YTabASgtLSU6Opq6ujoSEhKm/O7Dw8M5efKks33nzh2CgoKw2Wx4eHgQEhJCYmKiyzPBwcH09PQwPj6uc6RERERmMf3Ki4iIyKwWExPj/Ozu7o6fn59LIWfhwoUAfPjwAYDGxkYePXqEj4+P81q2bBkAnZ2dxMbGkpycjMViIS0tjeLiYvr7+386hsbGRt68ecPcuXOdMRcsWMDQ0BCdnZ3OfrGxsXh5eTnbq1evxuFw0NPTM+28g4ODAMyZM+en7wRg0aJFzvm3tbVhNpudxSiAqKgoTCYTbW1tP53n9+Lj413aaWlpDA4OEhYWRk5ODuXl5YyOjrr0MRqNjI+PMzw8PK1cIiIi8ndRQUpERERmNQ8PD5e2wWBwufd1xdL4+DgADoeDTZs20dDQ4HLZ7XasVivu7u48ePCAe/fuERUVxdmzZ4mIiKCrq+sfx+BwOIiPj58Us6Ojg23btk1pHtPN6+/vD/DDotWP3snX+U+Fm5vbpK2CIyMjk/p5e3u7tM1mM+3t7Zw7dw6j0cjOnTuxWq0uz/b19eHt7Y3RaJzyeEREROTvo4KUiIiIyDeWL1/O69evCQ0NZcmSJS7X1wKLwWAgKSmJY8eO8erVKzw9PSkvLwf+v+1ubGxsUky73U5gYOCkmPPmzXP2a2xsdK5sAnj27Bk+Pj7O1Uo/y/u9xYsX4+vrS2tr67TmHxkZSU9PDz09Pc57ra2tDAwMEBUVBUBAQAC9vb0uzzU0NEwpvtFoZNOmTZw5c4aqqiqePn1Kc3Oz8/uWlhbi4uKmNWYRERH5+6ggJSIiIvKNXbt20dfXR3p6OnV1dXR2dnL//n2ysrIYGxvj+fPnFBQUUF9fT3d3Nzdv3uTjx49ERkYCEBoaSlNTE+3t7Xz69ImRkREyMjLw9/dny5Yt1NTU0NXVRVVVFXv27OHdu3fO3F++fCE7O5vW1lbu3r1LXl4eu3fvxs3N7Zd5v+fm5obNZuPx48fTmr/NZsNisZCRkcHLly958eIFmZmZrFmzxnlA+tq1a6mvr6e0tBS73U5eXh4tLS2/jH316lUuX75MS0sLb9++paysDKPR6DwTC6CmpsZ5ppaIiIjMXipIiYiIiHwjODiY2tpaxsbGSElJwWKxsHfvXkwmE25ubvj6+lJdXc3GjRtZunQpubm5nDp1ig0bNgCQk5NDREQEK1asICAggNraWry8vKiuriYkJITU1FQiIyPJzs5maGgIX19fZ+7k5GTCw8OxWq1s3bqVzZs3c/ToUYBf5v2RHTt2cO3atWltxzMYDNy6dYv58+djtVqx2WyEhYVx/fp1Z5/169dz+PBhDhw4QEJCAp8/fyYzM/OXsU0mE8XFxSQlJRETE8PDhw+5ffs2fn5+ALx//54nT56QlZU15fGKiIjI38kw8U//FSwiIiIiM2b79u0MDAxQUVHxr8WcmJhg5cqV7Nu3j/T09H8t7u9y8OBB+vv7KSoq+q+HIiIiIr+ZVkiJiIiIzFIGg4GioqJJ/2T3pwoMDCQ/P/+/HoaIiIjMAK2QEhEREfkD/I4VUiIiIiJ/KhWkRERERERERERkRmnLnoiIiIiIiIiIzCgVpEREREREREREZEapICUiIiIiIiIiIjNKBSkREREREREREZlRKkiJiIiIiIiIiMiMUkFKRERERERERERmlApSIiIiIiIiIiIyo1SQEhERERERERGRGfU/CmyB39u4tn0AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create figure with three stacked subplots\n", + "fig, axes = plt.subplots(2, 1, figsize=(12, 10))\n", + "\n", + "# Plot 1: Reservoir Output\n", + "axes[0].plot(reservoir_df[\"timestep\"], reservoir_df[\"discharge\"], \n", + " color=\"blue\", label=\"USBR Reservoir Release\")\n", + "axes[0].set_ylabel(\"Discharge (cms)\")\n", + "axes[0].set_xlabel(\"timesteps (15min)\")\n", + "axes[0].legend()\n", + "\n", + "# Plot 2: Stream Base Model\n", + "axes[1].plot(stream_df_base.index, stream_df_base[\"flow\"], \n", + " color=\"orange\", label=\"T-Route - Downstream of Lake\")\n", + "axes[1].plot(stream_df_base_output.index, stream_df_base_output[\"flow\"], \n", + " color=\"red\", label=\"T-Route - Basin Outflow Point\")\n", + "\n", + "axes[1].plot(stream_df_da.index, stream_df_da[\"flow\"], \n", + " color=\"green\", label=\"Persistence Model - Downstream of Lake\")\n", + "axes[1].plot(stream_df_da_output.index, stream_df_da_output[\"flow\"], \n", + " color=\"purple\", label=\"Persistence Model - Basin Outflow Point\")\n", + "axes[1].set_ylabel(\"Flow (cms)\")\n", + "axes[1].set_xlabel(\"Timesteps (hours)\")\n", + "axes[1].legend()\n", + "\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "markdown", + "id": "1c2c8689", + "metadata": {}, + "source": [ + "Conclusion: Through the following notebook, we can demonstrate that the persistence model is working to replace the outflow of T-Route at the specific Lake-ID where the USBR reservoir is located in order to supplement flows" + ] + }, + { + "cell_type": "markdown", + "id": "4d0e750b", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "t-route", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/test/USBR_persistence/requirements.txt b/test/USBR_persistence/requirements.txt new file mode 100644 index 000000000..9d3a4bcd1 --- /dev/null +++ b/test/USBR_persistence/requirements.txt @@ -0,0 +1,6 @@ +dask==2025.5.1 +matplotlib==3.9.0 +mapclassify +folium==0.19.7 +jupyterlab==3.67 +ipykernel==6.29.4 diff --git a/test/USBR_persistence/taylor_dam.yaml b/test/USBR_persistence/taylor_dam.yaml new file mode 100644 index 000000000..a9effa7c3 --- /dev/null +++ b/test/USBR_persistence/taylor_dam.yaml @@ -0,0 +1,74 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + qlat_input_folder : channel_forcing/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + binary_nexus_file_folder : channel_forcing/ # this is required if qlat_file_pattern_filter="nex-*" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usbr : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/base_output/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/USBR_persistence/taylor_dam_da.yaml b/test/USBR_persistence/taylor_dam_da.yaml new file mode 100644 index 000000000..f63ba4398 --- /dev/null +++ b/test/USBR_persistence/taylor_dam_da.yaml @@ -0,0 +1,75 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam_da.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + qlat_input_folder : channel_forcing/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + binary_nexus_file_folder : channel_forcing/ # this is required if qlat_file_pattern_filter="nex-*" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + usbr_timeslices_folder: usbr_timeseries/ + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usbr : True + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/da_output/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..27eec19c8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c11d1ed76 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..94e5da291 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d4dd972e4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1970b8c21 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..42d8d24cb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7c0623e84 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8b0a67b6e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2253d7a77 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4121f2493 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eaec3446f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2421b58dc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d9bd14427 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f67948885 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ca0078bec Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..643330cd5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d49484b9d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6e97318cf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..15bc4bc6e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1b8a4f314 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..92b6191e7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..aec0123d1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..05e4bf06e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2a0aa6bb6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ca7d76a7d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..81051872f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e99f41c35 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6ba86b401 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..69496af75 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..66714e458 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eda89c583 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e526327ea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ffb8bf936 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a86853996 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8940066ed Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dc3e76221 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ab964ab5d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3defc080b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7ba31edb8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3b1b5157a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d5c20d916 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..df21288ca Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7e3f26f4a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..732edab4c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..df70e4924 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..22c6573ea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2037467b2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3e0cfa34f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..88db30029 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..89e79704c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7d504b1ce Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..899814362 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b7f495458 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2d8601706 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..27a3236f5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4b35042d5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..212f8fe5a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5a0bb1e12 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b0b102ed4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f51e6d364 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ba9580ebb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e1e8700fe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b120abbe9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e41c49875 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bda0a7e64 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..64cae396d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..60059bbfe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a85c8e29 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..10ff74c6f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9bda6145c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8c42f67ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dc5219b55 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..511216528 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..97ed7d58d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7ed16d3e9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2a4324259 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5692343db Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9da4f20d1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c0994393f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3ceb6ce53 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a487d23eb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9353f9eab Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d5a9ce297 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3c1256777 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..42ebaa935 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c11fc8865 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..12d8ea972 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..084fe7c43 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a390ca096 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d99fca60d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f401cf999 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ded6bd4f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d60d82fb1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..88895cb6f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c5d645765 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-01_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4c818c53f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-01_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ad0f87543 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9faf406d2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c1752a0f3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7c89f6d10 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..45d8e57c9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e244b345a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..347184890 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0f2ed483e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cced58f00 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6d30818ad Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..25d370220 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7ab84711f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..119ca9355 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..101494a78 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c87f6b82 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6947239df Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e308f5f3e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..786e150e7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a66d9a34f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..78c4f731b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3947d9798 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..89e12f406 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d9f751f15 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..917d5ce05 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..077e06d11 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cda818e23 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..581f3fbaa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e4062ac82 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a09dd702 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..95ef4603f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..97b0a24c8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e757c1bb2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..36d5ed01a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..179f6e115 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cee43d0c4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6f39b725 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cd762c9d7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4a7ca77e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6217396c2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ee1d8da76 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7e3a45e3b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4dd93d7e2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..962efdda1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ed867f6f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d6318708a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bd56d5de4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..524732503 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d5a9eefa0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..84d1d5a96 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..367d7c6b4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c25d8aef0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..afa94cb9a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..70d4e80f9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..aee3a3a88 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9d1750fa3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3ae4337df Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7f9bd71bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..390618ee6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eafc15200 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..92e772346 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f6f35ad54 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1b51bb247 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..141cfa774 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..116d8afa0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e2aa30393 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9505a9e33 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..211bb6221 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c8bf98ac3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..95d13ce5a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c577f5538 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..66ac1222c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b2ea1271a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e9a757abf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa8fcb51d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b94e691f0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d9416ee6b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..002b12481 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..15646234a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f5c8ecaa7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8811c528a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1505765f9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..17d52bab8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d45028391 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7864760ec Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..47359dfdc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6056f5b1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eed10ce38 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..de781b0ea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..19d52e7ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5ee50f6f1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e71984276 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..caf33b9dc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..070aab4f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..79e1b17a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f13e79acc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-02_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ce089ac68 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-02_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..71cebb941 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d60498ecb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a17f2cea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..232bed211 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4bd952ebf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a988a497a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4ec53c018 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d058f14a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b8f77dcbf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5a8de9967 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3cb1cbb3c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c9206d9ab Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..30f4fb675 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..acdf7d94b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..deaef9a3c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ff99c9f90 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7167f672d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d689971a6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f614f6d79 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..65a76c1a4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75753bc34 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..caea84bdb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4d72f49d9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d9d44d72a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dff2757f6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bc7091524 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a5f4af6e7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cf18e20fa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7deac62d5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..113e1e214 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b6773a5cf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a6d29750a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..221f03950 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e07d4129c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3203d36ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c39df49e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..636bda74f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e66beeeb9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..39e55df7c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0dca129e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..55daa91a5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fc94ee879 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..005dc048a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..89807fd36 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dd6422132 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0ac55cf34 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5dde592fa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..024af27f5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5f464d86e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ae1dd6184 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bbbfad98c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..acadda899 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d34140e3d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..511fd759a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c2dbef0dc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9ddfdfb21 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..97640422f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f25baa30c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ed0c1e64b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..db245c4cb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b5e3685ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..36c3bee33 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f2fa2a09b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75de7ee8c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..88ccdefba Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2db64262 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7b16d5f3f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5c02e575a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..67b4ddb86 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a66b48eab Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..aa56b2edf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bc472ad83 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..79c4f7295 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..051839380 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2a9fe9ad0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..95d724b11 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..470e8c409 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..afe518b20 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a41ae4221 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cdbe4d41e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..51f2ba1ce Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..705ba75b2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..030c2591b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8e5478360 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a59918f1a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c0a20c17f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0cc02b0b5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3f20e90e9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a129748b6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..798cd884f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d23333f14 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cc32ca27a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9937b5102 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..691cafe6e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3e5ea98e3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-03_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3f8b8172c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-03_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0db315f44 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3b3bf9042 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b6dbbbdbb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3abf5ed2d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bac62b4e5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2acaa84e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cf5159fcb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..09d261c0a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b2da6a6c9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ef410f9a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c284d2d0c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..61741f59b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..23c1f4d34 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..66069be7f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..87d223378 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ce017b64b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d61ff27f7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..70728461b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..073958697 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f7e9c0f4c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8cbcc9ad4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6fa6ebeb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0ec45d4aa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3c151edf7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f9842d20d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c657ad213 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3c06372c2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9e2b0b5ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3f640d2e2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a0d192552 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..61b58dffd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8c5d49fff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cda051f23 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cf20d7ad5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f64a2aaab Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa720e89c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..05913031b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a12bb63d2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cb0351344 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dbee7311c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..206a570a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3a6a30107 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..068fcb7d1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5260719ac Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..516606eb8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2d7a2da52 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5e7f2185e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8b8a7332e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5b7a29c97 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ebe48f1ea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0e58e6aa9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..614e77036 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8b664a569 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cde23c21a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ba060e47f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7323152da Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8f5e81546 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b080a546e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2008f8e91 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e0f9799d8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..43f17583c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3be224a8f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8f768204a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..767cb9cc7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..727adacb8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b0aa8f8a1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7fd7fb05c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cb72f6f4e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1686e2e29 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..363955a8c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..839673a3c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1a172b059 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..987f5c081 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e2650ed02 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..413b1b949 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..28d9df45e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0d8209b31 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4173b4748 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7f54e7818 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..414f4e733 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4d22ffab2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d1c3b3d32 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2574b8127 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fc73d9a89 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..416fdd3e3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8bcdb785d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1673cfb1d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f4d0db1fb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cec1eec75 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..24f2a4431 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..361a95405 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6f45b7160 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f98f9f5cf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a16451742 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e9bdeb5a6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-04_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5c931553a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-04_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6ab29aa6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e694611f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ded0ee50d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a95f0b67d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a121fa99c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e80e239ad Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b22699768 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3a014a619 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f960266b5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ff36458fc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d4a2ae440 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c1c24c593 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f11564d92 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..82bf7d8c5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..933020188 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a7896d6a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6bab5047a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..70deb9a9d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ca5397b89 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b3c8609f5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..94d967d92 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..69f762fb1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c10e427b9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8c58a1d61 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d8694736e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5e72750ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1315a0a39 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9d506ce70 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c01d8d36d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bcc075747 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2261f3d01 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1fd91c506 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..47b1e2daa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4b5a6a64c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6e0bd70e0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8c707eebe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..639e35488 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5c96f0c8c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bb5db222b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a89c3478b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..235817b53 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..80772fdbb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..731ffc6c0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e76d730ea Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0e99c90bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1ab397830 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2e679433 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5f8d50f99 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a78548433 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e279ed92c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..31fbfc300 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..77f9f9b9f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ebe243ab8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..93e52b38f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a1bb3056e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..15012e435 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..258c96cbd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e1a4e24c6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d1197781b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..aa05d63a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e93db50fa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..93c8028b6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..45eea1c97 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3860bf812 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2006bc89 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b7a844ab8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..320f4fab1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5682d9ceb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f475b326e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d4e12ae63 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a79959014 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0771df934 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..48959b3e5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..638813db8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c2b331e4c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..98804e2ed Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2a7b0dbac Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0c37d80a9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9223c136a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eb5d2fe9b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1a4accbd8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..79b62f66c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..128544d4b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dc8058021 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a30b703e6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a3e231766 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..89b97e4d7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..62f000163 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5e3a73ef0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9045e3481 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..037c90f57 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ac077e134 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9c1778c67 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..73afb4dfc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c6497c2b7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-05_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f00d1b89f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-05_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2db55c319 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a5d2619cd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d4846b43e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d3adbbf14 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..96b779646 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e372b5df8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..72734a1ee Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..804748837 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7976e50a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7e469ec1e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..deb4c44ef Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..487fa5cfc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d99d6002c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..769ed1747 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bc7a8e182 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2b71c59e3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e833d3286 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c53ccb355 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..61e0232d8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ff3e10f97 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a8624ac12 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..34325eecf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d7cfd3030 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a41d16bfc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ea5d06b1a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d2f58f565 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ccdcaa7b5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e7eea0dfd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5eb5e50e6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..71a18c993 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..10035bd28 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b7fdc32af Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..87d84ad98 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..215a090a8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2ac7a788 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cb2ffb74b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fd1ed15c0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9747b9486 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..395b29d22 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9aa556cd8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e44e5bafc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e71b83330 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2e468ed8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..14c8534ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b40ce0d37 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..45d45ac71 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3b576a4af Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..400bcdc9a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ec91151ba Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..68f9e65b1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..27a1ffba8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6258cabe4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..874b3620e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dfc467c77 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0c49ba76c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..82a888177 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fc99a1e07 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0e91a6296 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..52d11e257 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5eb79412d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..14aad038c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cdac4ccf2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..817cc3170 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d73517b07 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fc5602882 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..be24c642f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..736313a04 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4c0adfcff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8b117b5b5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..870f036aa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..720e44871 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fb4957f0f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..04bd67cf9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5da2b53a2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0fb95e493 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9c1ffd0c1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f68ebbdc6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..18bce4df4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2a89b5e56 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fd6e8f9c2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..994dd5210 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75829b659 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a54f44560 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8efcb3d5b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..56e3f90de Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..230f6963d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bcdb02dcb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..51ca7f395 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..88faaff46 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..80986402e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..46fd47294 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8e63b4120 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..28cd7f242 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..638a1de69 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..129fea3ab Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-06_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9f10f292b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-06_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..84c788121 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..15e7c0c38 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1ea2d83d2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0c7789aa2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..51f7b00f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8a8b31a37 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..43248c35c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2674f39e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ebb97d8b9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9fa8cf479 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2ea0663ca Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c24d90bd6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9e7a5f8f3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9a938da27 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3cb2c1f70 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1cbb7fccb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a25bc853a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a251dab0b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dbe90a597 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1ae868caa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0fe06134d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e9576a059 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d3c23d880 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c063c483f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9fa9cadb1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c29fbb718 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..24b61e958 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..76ffe73f5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bc6ca3dcb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e1fdb3230 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7f5926768 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6a04df542 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f5332399a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..faa6cf775 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7b308770b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b16ca55e4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ad1bb9965 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..557153eed Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9f63c9920 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fcfc07fc9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8912342d9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b3c5d5cd5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6e1b905ad Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..635668bba Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..889c22540 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ae4b87a71 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c027c71b4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..00646b368 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8a5a763f0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6ba4cde5b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c266314f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4ed018b07 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c0bfe0537 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..840f7334e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7cb25976d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..308e6fcf4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c780ec386 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..76ae36aae Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0b2d2f318 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c395d30c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..af2218680 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2692d3f90 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..12ac0d8f1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9d6bf3790 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d172c7b81 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8dd84e271 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..69026e4bc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c0191a0d5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f742248fd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..554e3e1f1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..217e37062 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..70613e271 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bd7367b0d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0fbcf5669 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..770edae89 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..60e15c34e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6c257e68c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..82a955675 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fdf8310eb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ee5491c3f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ed2f97de0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c76abde3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a38cfffe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..55106521a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6df5b0bca Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c8a999bfe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9c9e90ffc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d59fbf5f4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3647f821c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..85b25dbed Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..719ece82b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ab130d667 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eba33ee75 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..53dd5b84d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75968c4c6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-07_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c71b41a4a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-07_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..db03f8d23 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..517194f42 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..55e1d811d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7a02a863 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..745d047f3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4239b3509 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..06f3df551 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..74ecc3623 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7236aebe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f009ef9a0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b97742b9a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7cfa196e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..214b0d3d9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ba423fa44 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ab116bf39 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..db00b3bca Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c75b35d82 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0cca4d84d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..25a3c7d44 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..76f649f1c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..90a01fc17 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4d9f1d721 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1bc13f2b4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..06ad6f6ce Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..90fc66f59 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9ae5f581b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..893d2b52a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ee3f999ca Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6b1e7e90e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6a4fa07b1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa6dfc5b7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..43b79155d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..162158224 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..feafdd4ae Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2f0b8b284 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f19d4865d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..047e73765 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b6d198945 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..74803c562 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8bf759c06 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4e0e1cf3d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..68a6794f7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..73b139f12 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2bd4bd6d8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d8b2a90f2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c2721fbe7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..754f7517f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ea17ca10a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..984c964a9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..30f44f41e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6b110b63 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1e1404b8a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..02e5897e8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e097500fc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4009da818 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..077b8de61 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..42fcaa09c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5aecc644e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..56fe10b67 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0409ee504 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8eebb2879 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f04fee159 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4d9e1421d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f3b083d02 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..842a21858 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8a7c59e53 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4d230d9ce Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ad05b1879 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..231ce08a4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b47b140f0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1a39a8c50 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8ff324b73 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c6875976c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e7b9f00dd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e3cb9ef9a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fb30fa9ad Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0ce824235 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..587ba2890 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0144facb6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ae93e7d42 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..71805b487 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ad7f35e60 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2b3ab9383 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0a35cdcf4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..611ed4114 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..15c8f5037 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..54e2239dd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5290a005d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e7661895d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d54a46fc4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b0448b02f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9a383829c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0e7ae8a03 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0e362f752 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f1dcc5a57 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-08_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..952f25af1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-08_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a1586f52 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..69e399fb0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8608b5c59 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75e6d202f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9969829a1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..45797819c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d538641a8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a5fb821e5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..47b1b2953 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6e04edb5e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1170a012c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1f47ffe7e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..240797e89 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1ebf8c935 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8dfa39b3b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9f98259be Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bd836732e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..38c59b4d5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a3f1a9aa1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..07a4ddee6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7cf93763 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e5d753a9f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..977ce0ea7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ca15b0ed8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9960ee8c6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..95b47f227 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5e6421e36 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a34de594e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a4fb6d205 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f79109e85 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5d3f72664 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b0168b903 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..38e100df8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..63d20685a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..607182d15 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6376bae79 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7688cd51d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..aec09fe99 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dc85146af Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..484ffd591 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e6097961f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cb0ffa7f3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4ba489870 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8650dfdad Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a79a8dcae Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..85fce6bd6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bf78d29bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..75a6f95a5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2e0d219f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a3026b29f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f4215627c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e5d71d7dd Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7e2b94ae Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..17f276a7c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4008ed613 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7a66075cf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..218dce95c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..830bafdba Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..06b858fa0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..63d8b5126 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a3c638055 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5735dbbe4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9b7f23165 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..41801814c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5953f182f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e756fcd08 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..df8ecd102 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0ff54eff0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c60febdf1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eb5e7fcd4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c5b1d84c7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..96f628dc1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c90ef0c47 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ae5d4e11b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..86f84491b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7f0a4d3a6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2948baa97 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..21f2117b5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6ad7482e1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..72cfb24bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f95dd003a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f171080b2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7cd6de15 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..339e6b019 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d3cd21e28 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e9b7ce857 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c7a4be8ef Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9d5e440bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d2903c8ed Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..42d0af53c Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c7ad8ca91 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..74f5f0bb1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6bd8b0bde Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..265125b3a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0aca2c089 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-09_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..721902a28 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-09_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_00:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b1b054bf2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_00:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..eaf9fb1b0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_00:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bd3116d0d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_00:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..07af67ffe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_00:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_01:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..82419d0cb Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_01:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a7dd76e58 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_01:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d661691c0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_01:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a09cd20e4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_01:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_02:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fcceb0bd2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_02:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..afb5c91f3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_02:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..312ff30f8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_02:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..18226cd67 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_02:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_03:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c6b4f3f3a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_03:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..da5774a09 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_03:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..86fd703d7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_03:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..52b9e53c1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_03:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_04:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3ee44c244 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_04:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fc89920ba Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_04:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ca4fab6d6 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_04:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6bdbae33f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_04:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_05:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b85cc9200 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_05:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..078c49933 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_05:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2c60ced1d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_05:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..683a58dc7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_05:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_06:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d5643e190 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_06:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..96ca54c32 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_06:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cdc0211fc Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_06:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9d4bf0ee2 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_06:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_07:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ac5bc5035 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_07:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa9498c67 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_07:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ced538a12 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_07:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8154af7ff Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_07:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_08:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2b221fc3 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_08:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e90a1a3ac Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_08:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d10fa04b7 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_08:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..b4d002382 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_08:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_09:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f69e7083e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_09:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..cc723a4e8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_09:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8ce4c3b01 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_09:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6534c0ec1 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_09:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_10:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c71b8e973 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_10:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..df7bfc617 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_10:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1e527ecc0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_10:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..8bafc88bf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_10:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_11:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2323900d0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_11:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bac4cc8fe Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_11:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..bc18640d0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_11:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0c53ddebf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_11:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_12:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9c174d712 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_12:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4bf1aa06d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_12:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..c693c537e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_12:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2609c09db Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_12:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_13:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dded5fc4d Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_13:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa40c39a0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_13:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d50528547 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_13:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..39ff2405e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_13:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_14:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fd62fe567 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_14:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..044e91200 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_14:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..56d830c3f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_14:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..ea121f534 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_14:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_15:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0cf2d3322 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_15:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2f4d78186 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_15:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f3e6ae251 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_15:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..58c91dd87 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_15:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_16:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..a2bcd0300 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_16:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2bfa1d8ec Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_16:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2aefbaf96 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_16:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4fe99ceb5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_16:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_17:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..20de63bf4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_17:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d06607317 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_17:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..6c94fab85 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_17:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9cdc3585e Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_17:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_18:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..4f861b8db Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_18:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2f7e46352 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_18:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5894e22cf Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_18:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..787b4ff46 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_18:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_19:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..dfc1383c0 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_19:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..3358f598a Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_19:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..f33de2602 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_19:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..e2cb3e24f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_19:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_20:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5d934c0b4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_20:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..2e4d3202b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_20:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..0f8d0dc5b Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_20:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..1919bc9df Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_20:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_21:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..9fbdea21f Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_21:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..83d8efe51 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_21:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..5af7a69c9 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_21:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..d92945138 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_21:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_22:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..26b2df304 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_22:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..91b7524f5 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_22:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..7f9b22035 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_22:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..fa0be3d52 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_22:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_23:00:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:00:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..38ed36bc8 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:00:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_23:15:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:15:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..260652e18 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:15:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_23:30:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:30:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..773f083e4 Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:30:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/USBR_persistence/usbr_timeseries/2022-08-10_23:45:00.15min.usbrTimeSlice.ncdf b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:45:00.15min.usbrTimeSlice.ncdf new file mode 100644 index 000000000..91795f0aa Binary files /dev/null and b/test/USBR_persistence/usbr_timeseries/2022-08-10_23:45:00.15min.usbrTimeSlice.ncdf differ diff --git a/test/channel_loss/channel_forcing/et/202208010000_202208091400_cat_vars.nc b/test/channel_loss/channel_forcing/et/202208010000_202208091400_cat_vars.nc new file mode 100644 index 000000000..a8a0a069e Binary files /dev/null and b/test/channel_loss/channel_forcing/et/202208010000_202208091400_cat_vars.nc differ diff --git a/test/channel_loss/channel_forcing/et/cat-2619299.csv b/test/channel_loss/channel_forcing/et/cat-2619299.csv new file mode 100644 index 000000000..ba3440353 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619299.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001541,0.000865,0.001541,0.000206,0.000206,0.010902,0.422126,-0.005443,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001445,0.000852,0.001445,0.000070,0.000070,0.010309,0.416712,-0.005413,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001361,0.000839,0.001361,0.000000,0.000000,0.009787,0.411450,-0.005263,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001288,0.000827,0.001288,0.000000,0.000000,0.009326,0.406267,-0.005183,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001224,0.000814,0.001224,0.000000,0.000000,0.008916,0.401162,-0.005104,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001167,0.000802,0.001168,0.000000,0.000000,0.008550,0.396135,-0.005027,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001117,0.000790,0.001118,0.000000,0.000000,0.008223,0.391184,-0.004951,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001073,0.000778,0.001073,0.000000,0.000000,0.007928,0.386308,-0.004876,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001032,0.000766,0.001034,0.000000,0.000000,0.007661,0.381505,-0.004802,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000996,0.000754,0.000998,0.000000,0.000000,0.007419,0.376776,-0.004730,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000964,0.000743,0.000965,0.000000,0.000000,0.007198,0.372117,-0.004658,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000934,0.000732,0.000936,0.000000,0.000000,0.006996,0.367530,-0.004588,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000907,0.000721,0.000909,0.000000,0.000000,0.006810,0.363012,-0.004518,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000881,0.000710,0.000884,0.000000,0.000000,0.006638,0.358562,-0.004450,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000858,0.000699,0.000862,0.000152,0.000152,0.006478,0.354029,-0.004533,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000837,0.000687,0.000841,0.000401,0.000401,0.006328,0.349320,-0.004709,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000816,0.000675,0.000821,0.000576,0.000576,0.006187,0.344509,-0.004810,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000797,0.000663,0.000802,0.000691,0.000691,0.006053,0.339659,-0.004850,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000779,0.000652,0.000785,0.000648,0.000648,0.005926,0.334924,-0.004735,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000238,0.000000,0.000000,0.000000,0.000006,0.000762,0.000641,0.000768,0.000618,0.000618,0.005805,0.330525,-0.004399,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000237,0.000000,0.000000,0.000000,0.000007,0.000745,0.000630,0.000752,0.000544,0.000544,0.005690,0.326265,-0.004261,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000402,0.000000,0.000000,0.000000,0.000008,0.000730,0.000621,0.000738,0.000426,0.000426,0.005581,0.322348,-0.003917,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000332,0.000000,0.000000,0.000000,0.000008,0.000715,0.000611,0.000724,0.000372,0.000372,0.005477,0.318474,-0.003874,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000448,0.000001,0.000002,0.000001,0.000009,0.000701,0.000603,0.000711,0.000286,0.000286,0.005378,0.314856,-0.003618,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000361,0.000002,0.000002,0.000002,0.000010,0.000688,0.000594,0.000700,0.000182,0.000182,0.005284,0.311308,-0.003548,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000835,0.000022,0.000039,0.000022,0.000010,0.000676,0.000587,0.000708,0.000091,0.000091,0.005195,0.308336,-0.002972,1.000000,0.000018 +26,2022-08-02 02:00:00,0.000967,0.000045,0.000064,0.000045,0.000011,0.000664,0.000580,0.000721,0.000000,0.000000,0.005111,0.305603,-0.002733,1.000000,0.000037 +27,2022-08-02 03:00:00,0.000826,0.000050,0.000047,0.000050,0.000012,0.000653,0.000573,0.000714,0.000000,0.000000,0.005031,0.302789,-0.002814,1.000000,0.000034 +28,2022-08-02 04:00:00,0.000937,0.000057,0.000060,0.000057,0.000013,0.000642,0.000566,0.000713,0.000000,0.000000,0.004955,0.300115,-0.002674,1.000000,0.000036 +29,2022-08-02 05:00:00,0.000855,0.000052,0.000050,0.000052,0.000014,0.000632,0.000560,0.000698,0.000000,0.000000,0.004882,0.297410,-0.002705,1.000000,0.000034 +30,2022-08-02 06:00:00,0.000800,0.000048,0.000043,0.000048,0.000015,0.000623,0.000553,0.000686,0.000000,0.000000,0.004813,0.294698,-0.002712,1.000000,0.000030 +31,2022-08-02 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000613,0.000545,0.000650,0.000000,0.000000,0.004744,0.291282,-0.003416,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000016,0.000604,0.000537,0.000629,0.000000,0.000000,0.004677,0.287918,-0.003364,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000595,0.000528,0.000612,0.000000,0.000000,0.004610,0.284604,-0.003313,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000586,0.000520,0.000604,0.000000,0.000000,0.004545,0.281341,-0.003263,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000577,0.000513,0.000596,0.000000,0.000000,0.004480,0.278127,-0.003214,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000568,0.000505,0.000589,0.000000,0.000000,0.004417,0.274961,-0.003165,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000560,0.000497,0.000581,0.000000,0.000000,0.004354,0.271844,-0.003117,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000551,0.000489,0.000574,0.000125,0.000125,0.004292,0.268651,-0.003193,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000543,0.000481,0.000566,0.000343,0.000343,0.004231,0.265291,-0.003360,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000534,0.000473,0.000559,0.000492,0.000492,0.004169,0.261835,-0.003456,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000526,0.000464,0.000552,0.000603,0.000603,0.004107,0.258322,-0.003513,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000247,0.000000,0.000000,0.000000,0.000027,0.000518,0.000456,0.000544,0.000704,0.000704,0.004045,0.255007,-0.003315,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000509,0.000447,0.000537,0.000662,0.000662,0.003983,0.251539,-0.003467,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000501,0.000439,0.000530,0.000580,0.000580,0.003921,0.248206,-0.003334,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000493,0.000431,0.000523,0.000532,0.000532,0.003860,0.244969,-0.003237,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000485,0.000424,0.000516,0.000464,0.000464,0.003799,0.241849,-0.003120,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000476,0.000416,0.000509,0.000351,0.000351,0.003739,0.238887,-0.002962,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000469,0.000410,0.000502,0.000216,0.000216,0.003680,0.236103,-0.002784,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000461,0.000403,0.000496,0.000061,0.000061,0.003622,0.233513,-0.002590,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000453,0.000397,0.000489,0.000000,0.000000,0.003566,0.231023,-0.002490,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000446,0.000391,0.000483,0.000000,0.000000,0.003511,0.228570,-0.002453,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000439,0.000385,0.000477,0.000000,0.000000,0.003457,0.226155,-0.002415,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000432,0.000379,0.000472,0.000000,0.000000,0.003405,0.223776,-0.002379,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000425,0.000374,0.000466,0.000000,0.000000,0.003353,0.221433,-0.002343,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000418,0.000368,0.000461,0.000000,0.000000,0.003303,0.219126,-0.002307,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000412,0.000362,0.000455,0.000000,0.000000,0.003253,0.216853,-0.002272,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000405,0.000357,0.000450,0.000000,0.000000,0.003205,0.214615,-0.002238,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000399,0.000351,0.000445,0.000000,0.000000,0.003157,0.212411,-0.002204,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000393,0.000346,0.000440,0.000000,0.000000,0.003111,0.210240,-0.002171,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000387,0.000341,0.000436,0.000000,0.000000,0.003065,0.208102,-0.002138,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000381,0.000336,0.000431,0.000000,0.000000,0.003019,0.205996,-0.002106,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000375,0.000330,0.000427,0.000152,0.000152,0.002975,0.203773,-0.002223,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000369,0.000324,0.000422,0.000408,0.000408,0.002930,0.201332,-0.002442,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000363,0.000318,0.000417,0.000579,0.000579,0.002885,0.198758,-0.002574,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000357,0.000312,0.000413,0.000696,0.000696,0.002839,0.196108,-0.002650,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000351,0.000305,0.000408,0.000745,0.000745,0.002793,0.193450,-0.002658,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000345,0.000299,0.000403,0.000712,0.000712,0.002746,0.190865,-0.002585,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001001,0.000005,0.000009,0.000005,0.000060,0.000339,0.000295,0.000404,0.000609,0.000609,0.002702,0.189397,-0.001468,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000225,0.000002,0.000000,0.000002,0.000061,0.000334,0.000290,0.000397,0.000555,0.000555,0.002658,0.187249,-0.002147,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000062,0.000328,0.000284,0.000392,0.000472,0.000472,0.002614,0.184995,-0.002255,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000322,0.000279,0.000386,0.000361,0.000361,0.002571,0.182883,-0.002112,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000317,0.000274,0.000382,0.000222,0.000222,0.002529,0.180940,-0.001943,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000311,0.000270,0.000378,0.000077,0.000077,0.002487,0.179170,-0.001770,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000306,0.000266,0.000374,0.000000,0.000000,0.002447,0.177502,-0.001668,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000301,0.000262,0.000370,0.000000,0.000000,0.002408,0.175860,-0.001643,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000296,0.000258,0.000367,0.000000,0.000000,0.002369,0.174242,-0.001618,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000291,0.000254,0.000363,0.000000,0.000000,0.002332,0.172649,-0.001593,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000287,0.000250,0.000360,0.000000,0.000000,0.002296,0.171080,-0.001569,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000282,0.000246,0.000357,0.000000,0.000000,0.002260,0.169534,-0.001545,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000278,0.000243,0.000354,0.000000,0.000000,0.002225,0.168012,-0.001522,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000273,0.000239,0.000351,0.000000,0.000000,0.002191,0.166513,-0.001499,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000269,0.000235,0.000348,0.000000,0.000000,0.002157,0.165037,-0.001476,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000265,0.000232,0.000345,0.000000,0.000000,0.002124,0.163583,-0.001454,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000261,0.000228,0.000343,0.000000,0.000000,0.002092,0.162151,-0.001432,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000257,0.000225,0.000340,0.000000,0.000000,0.002061,0.160741,-0.001410,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000253,0.000221,0.000337,0.000144,0.000144,0.002029,0.159210,-0.001531,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000248,0.000217,0.000335,0.000399,0.000399,0.001998,0.157452,-0.001758,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000244,0.000212,0.000332,0.000568,0.000568,0.001965,0.155554,-0.001898,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000240,0.000207,0.000329,0.000708,0.000708,0.001932,0.153546,-0.002007,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000236,0.000202,0.000326,0.000815,0.000815,0.001899,0.151464,-0.002083,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000231,0.000197,0.000323,0.000790,0.000790,0.001864,0.149437,-0.002026,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000227,0.000193,0.000321,0.000689,0.000689,0.001830,0.147541,-0.001896,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000223,0.000188,0.000318,0.000554,0.000554,0.001795,0.145806,-0.001735,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000218,0.000184,0.000315,0.000481,0.000481,0.001761,0.144170,-0.001637,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000214,0.000181,0.000312,0.000370,0.000370,0.001728,0.142667,-0.001503,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000210,0.000177,0.000309,0.000230,0.000230,0.001695,0.141325,-0.001342,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000206,0.000174,0.000307,0.000092,0.000092,0.001664,0.140140,-0.001185,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000202,0.000172,0.000304,0.000000,0.000000,0.001633,0.139063,-0.001077,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000198,0.000169,0.000302,0.000000,0.000000,0.001604,0.138002,-0.001061,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000195,0.000167,0.000300,0.000000,0.000000,0.001576,0.136957,-0.001045,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000191,0.000164,0.000298,0.000000,0.000000,0.001548,0.135928,-0.001029,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000188,0.000162,0.000296,0.000000,0.000000,0.001522,0.134915,-0.001013,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000185,0.000159,0.000294,0.000000,0.000000,0.001496,0.133916,-0.000998,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000182,0.000157,0.000292,0.000000,0.000000,0.001471,0.132933,-0.000983,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000179,0.000154,0.000291,0.000000,0.000000,0.001447,0.131965,-0.000968,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000176,0.000152,0.000289,0.000000,0.000000,0.001423,0.131012,-0.000953,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000173,0.000150,0.000288,0.000000,0.000000,0.001400,0.130073,-0.000939,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000170,0.000147,0.000286,0.000000,0.000000,0.001378,0.129148,-0.000925,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000167,0.000145,0.000285,0.000000,0.000000,0.001356,0.128237,-0.000911,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000164,0.000143,0.000283,0.000154,0.000154,0.001334,0.127188,-0.001049,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000162,0.000140,0.000282,0.000403,0.000403,0.001312,0.125910,-0.001278,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000159,0.000136,0.000281,0.000574,0.000574,0.001289,0.124484,-0.001427,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000156,0.000132,0.000279,0.000700,0.000700,0.001266,0.122954,-0.001530,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000153,0.000129,0.000277,0.000709,0.000709,0.001242,0.121439,-0.001515,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000080,0.000000,0.000000,0.000000,0.000126,0.000150,0.000125,0.000276,0.000678,0.000678,0.001217,0.120055,-0.001384,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000080,0.000000,0.000000,0.000000,0.000127,0.000147,0.000122,0.000274,0.000576,0.000576,0.001192,0.118793,-0.001262,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000104,0.000000,0.000000,0.000000,0.000129,0.000144,0.000119,0.000272,0.000487,0.000487,0.001168,0.117662,-0.001132,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000104,0.000000,0.000000,0.000000,0.000130,0.000141,0.000117,0.000271,0.000418,0.000418,0.001144,0.116615,-0.001046,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000198,0.000000,0.000000,0.000000,0.000132,0.000138,0.000115,0.000269,0.000327,0.000327,0.001121,0.115767,-0.000848,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000114,0.000000,0.000000,0.000000,0.000133,0.000135,0.000113,0.000268,0.000202,0.000202,0.001099,0.114972,-0.000795,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000765,0.000013,0.000024,0.000013,0.000134,0.000133,0.000113,0.000280,0.000088,0.000088,0.001079,0.114919,-0.000053,1.000000,0.000011 +122,2022-08-06 02:00:00,0.000901,0.000029,0.000042,0.000029,0.000136,0.000130,0.000113,0.000295,0.000000,0.000000,0.001062,0.115069,0.000150,1.000000,0.000024 +123,2022-08-06 03:00:00,0.000672,0.000028,0.000024,0.000028,0.000137,0.000128,0.000113,0.000294,0.000000,0.000000,0.001046,0.115010,-0.000059,1.000000,0.000019 +124,2022-08-06 04:00:00,0.000596,0.000025,0.000019,0.000025,0.000138,0.000127,0.000113,0.000290,0.000000,0.000000,0.001032,0.114882,-0.000128,1.000000,0.000013 +125,2022-08-06 05:00:00,0.000596,0.000020,0.000019,0.000020,0.000140,0.000125,0.000112,0.000284,0.000000,0.000000,0.001019,0.114756,-0.000126,1.000000,0.000012 +126,2022-08-06 06:00:00,0.000600,0.000019,0.000019,0.000019,0.000141,0.000124,0.000112,0.000283,0.000000,0.000000,0.001007,0.114635,-0.000121,1.000000,0.000012 +127,2022-08-06 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000142,0.000122,0.000110,0.000273,0.000000,0.000000,0.000995,0.113944,-0.000691,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000144,0.000121,0.000109,0.000268,0.000000,0.000000,0.000983,0.113263,-0.000681,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000119,0.000107,0.000264,0.000000,0.000000,0.000971,0.112593,-0.000670,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000118,0.000105,0.000264,0.000000,0.000000,0.000959,0.111932,-0.000660,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000116,0.000104,0.000264,0.000000,0.000000,0.000947,0.111282,-0.000650,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000115,0.000102,0.000264,0.000000,0.000000,0.000934,0.110641,-0.000640,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000113,0.000101,0.000263,0.000000,0.000000,0.000922,0.110011,-0.000631,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000111,0.000099,0.000263,0.000136,0.000136,0.000909,0.109255,-0.000756,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000110,0.000096,0.000263,0.000386,0.000386,0.000896,0.108265,-0.000990,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000108,0.000093,0.000262,0.000567,0.000567,0.000881,0.107111,-0.001154,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000106,0.000090,0.000262,0.000695,0.000695,0.000866,0.105849,-0.001262,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000104,0.000087,0.000261,0.000813,0.000813,0.000849,0.104490,-0.001359,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000102,0.000084,0.000260,0.000776,0.000776,0.000831,0.103188,-0.001302,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000099,0.000081,0.000259,0.000676,0.000676,0.000812,0.102004,-0.001184,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000097,0.000078,0.000258,0.000565,0.000565,0.000794,0.100947,-0.001057,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000095,0.000076,0.000257,0.000479,0.000479,0.000775,0.099991,-0.000956,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000093,0.000074,0.000256,0.000368,0.000368,0.000756,0.099159,-0.000832,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000090,0.000072,0.000255,0.000225,0.000225,0.000738,0.098480,-0.000678,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000088,0.000071,0.000254,0.000076,0.000076,0.000721,0.097959,-0.000522,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000086,0.000070,0.000253,0.000000,0.000000,0.000705,0.097520,-0.000439,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000084,0.000069,0.000253,0.000000,0.000000,0.000690,0.097088,-0.000432,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000082,0.000068,0.000252,0.000000,0.000000,0.000675,0.096662,-0.000426,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000081,0.000067,0.000252,0.000000,0.000000,0.000661,0.096243,-0.000419,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000079,0.000066,0.000251,0.000000,0.000000,0.000648,0.095830,-0.000413,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000078,0.000065,0.000251,0.000000,0.000000,0.000635,0.095423,-0.000407,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000076,0.000064,0.000251,0.000000,0.000000,0.000623,0.095023,-0.000400,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000075,0.000063,0.000250,0.000000,0.000000,0.000611,0.094628,-0.000394,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000073,0.000062,0.000250,0.000000,0.000000,0.000600,0.094240,-0.000388,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000072,0.000061,0.000250,0.000000,0.000000,0.000589,0.093857,-0.000383,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000071,0.000060,0.000250,0.000000,0.000000,0.000579,0.093481,-0.000377,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000069,0.000059,0.000250,0.000000,0.000000,0.000569,0.093110,-0.000371,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000068,0.000058,0.000250,0.000134,0.000134,0.000558,0.092612,-0.000498,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000067,0.000056,0.000250,0.000387,0.000387,0.000548,0.091873,-0.000739,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000065,0.000054,0.000249,0.000572,0.000572,0.000536,0.090962,-0.000911,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000064,0.000051,0.000249,0.000690,0.000690,0.000524,0.089949,-0.001013,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000062,0.000049,0.000249,0.000794,0.000794,0.000510,0.088850,-0.001099,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000060,0.000046,0.000248,0.000757,0.000757,0.000496,0.087804,-0.001046,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000059,0.000045,0.000248,0.000650,0.000000,0.000483,0.087519,-0.000285,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000057,0.000045,0.000247,0.000578,0.000000,0.000470,0.087238,-0.000281,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000056,0.000044,0.000247,0.000491,0.000000,0.000459,0.086961,-0.000277,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000054,0.000043,0.000247,0.000374,0.000000,0.000447,0.086689,-0.000272,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000053,0.000043,0.000246,0.000197,0.000000,0.000437,0.086420,-0.000268,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000052,0.000042,0.000246,0.000038,0.000000,0.000427,0.086156,-0.000264,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000051,0.000042,0.000246,0.000000,0.000000,0.000418,0.085896,-0.000260,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000050,0.000041,0.000246,0.000000,0.000000,0.000409,0.085640,-0.000256,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000049,0.000040,0.000246,0.000000,0.000000,0.000400,0.085387,-0.000252,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000048,0.000040,0.000247,0.000000,0.000000,0.000392,0.085138,-0.000249,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000047,0.000039,0.000247,0.000000,0.000000,0.000385,0.084894,-0.000245,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000046,0.000038,0.000247,0.000000,0.000000,0.000377,0.084652,-0.000241,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000045,0.000038,0.000247,0.000000,0.000000,0.000370,0.084415,-0.000237,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000044,0.000037,0.000247,0.000000,0.000000,0.000363,0.084181,-0.000234,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000043,0.000037,0.000247,0.000000,0.000000,0.000357,0.083951,-0.000230,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000043,0.000036,0.000248,0.000000,0.000000,0.000350,0.083724,-0.000227,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000042,0.000036,0.000248,0.000000,0.000000,0.000344,0.083500,-0.000223,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000041,0.000035,0.000248,0.000000,0.000000,0.000338,0.083280,-0.000220,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000040,0.000035,0.000249,0.000114,0.000000,0.000332,0.083064,-0.000217,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000040,0.000034,0.000249,0.000369,0.000000,0.000326,0.082850,-0.000213,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000039,0.000034,0.000249,0.000555,0.000000,0.000321,0.082640,-0.000210,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000038,0.000033,0.000250,0.000678,0.000000,0.000316,0.082433,-0.000207,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000038,0.000033,0.000250,0.000785,0.000000,0.000310,0.082229,-0.000204,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000037,0.000032,0.000250,0.000768,0.000000,0.000305,0.082028,-0.000201,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000037,0.000032,0.000251,0.000655,0.000000,0.000300,0.081830,-0.000198,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000036,0.000031,0.000251,0.000586,0.000000,0.000296,0.081636,-0.000195,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000035,0.000031,0.000252,0.000494,0.000000,0.000291,0.081444,-0.000192,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000035,0.000030,0.000252,0.000377,0.000000,0.000286,0.081255,-0.000189,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000034,0.000030,0.000252,0.000221,0.000000,0.000282,0.081069,-0.000186,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000034,0.000029,0.000253,0.000063,0.000000,0.000277,0.080885,-0.000183,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000033,0.000029,0.000253,0.000000,0.000000,0.000273,0.080705,-0.000180,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000033,0.000028,0.000254,0.000000,0.000000,0.000269,0.080527,-0.000178,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000032,0.000028,0.000254,0.000000,0.000000,0.000264,0.080352,-0.000175,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000032,0.000027,0.000255,0.000000,0.000000,0.000260,0.080180,-0.000172,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000031,0.000027,0.000255,0.000000,0.000000,0.000256,0.080010,-0.000170,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000031,0.000027,0.000256,0.000000,0.000000,0.000252,0.079843,-0.000167,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000030,0.000026,0.000256,0.000000,0.000000,0.000248,0.079678,-0.000165,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000030,0.000026,0.000256,0.000000,0.000000,0.000245,0.079516,-0.000162,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000029,0.000025,0.000257,0.000000,0.000000,0.000241,0.079356,-0.000160,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000029,0.000025,0.000257,0.000000,0.000000,0.000237,0.079199,-0.000157,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000028,0.000025,0.000258,0.000000,0.000000,0.000233,0.079044,-0.000155,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000028,0.000024,0.000258,0.000000,0.000000,0.000230,0.078891,-0.000153,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000027,0.000024,0.000259,0.000125,0.000000,0.000226,0.078741,-0.000150,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619300.csv b/test/channel_loss/channel_forcing/et/cat-2619300.csv new file mode 100644 index 000000000..0f948725c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619300.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000255,0.000000,0.000000,0.000000,0.000000,0.001486,0.000472,0.001486,0.000206,0.000206,0.010581,0.428401,-0.004878,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001345,0.000466,0.001345,0.000068,0.000068,0.009702,0.423480,-0.004921,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001225,0.000459,0.001225,0.000000,0.000000,0.008936,0.418694,-0.004786,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001122,0.000452,0.001122,0.000000,0.000000,0.008266,0.413975,-0.004719,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001033,0.000446,0.001034,0.000000,0.000000,0.007679,0.409323,-0.004652,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.000957,0.000440,0.000957,0.000000,0.000000,0.007162,0.404739,-0.004584,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000890,0.000434,0.000890,0.000000,0.000000,0.006706,0.400218,-0.004521,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000831,0.000427,0.000832,0.000000,0.000000,0.006302,0.395761,-0.004457,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000780,0.000421,0.000781,0.000000,0.000000,0.005943,0.391367,-0.004394,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000735,0.000415,0.000736,0.000000,0.000000,0.005624,0.387036,-0.004332,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000695,0.000409,0.000696,0.000000,0.000000,0.005339,0.382765,-0.004270,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000659,0.000404,0.000661,0.000000,0.000000,0.005083,0.378555,-0.004210,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000627,0.000398,0.000630,0.000000,0.000000,0.004854,0.374405,-0.004150,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000599,0.000392,0.000602,0.000000,0.000000,0.004647,0.370313,-0.004092,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000573,0.000387,0.000577,0.000152,0.000152,0.004461,0.366130,-0.004184,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000550,0.000381,0.000554,0.000404,0.000404,0.004291,0.361757,-0.004372,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000529,0.000374,0.000534,0.000571,0.000571,0.004136,0.357282,-0.004475,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000510,0.000368,0.000515,0.000691,0.000691,0.003994,0.352752,-0.004530,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000492,0.000362,0.000498,0.000648,0.000648,0.003864,0.348328,-0.004424,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000190,0.000000,0.000000,0.000000,0.000006,0.000476,0.000356,0.000482,0.000609,0.000609,0.003744,0.344192,-0.004136,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000190,0.000000,0.000000,0.000000,0.000007,0.000462,0.000351,0.000468,0.000527,0.000527,0.003633,0.340196,-0.003996,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000223,0.000000,0.000000,0.000000,0.000007,0.000448,0.000346,0.000455,0.000413,0.000413,0.003531,0.336401,-0.003795,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000435,0.000340,0.000443,0.000363,0.000363,0.003436,0.332677,-0.003724,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000226,0.000000,0.000000,0.000000,0.000009,0.000424,0.000336,0.000432,0.000283,0.000283,0.003348,0.329120,-0.003557,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000229,0.000000,0.000000,0.000000,0.000010,0.000413,0.000331,0.000423,0.000176,0.000176,0.003266,0.325721,-0.003399,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000734,0.000030,0.000054,0.000030,0.000010,0.000403,0.000327,0.000443,0.000084,0.000084,0.003191,0.322907,-0.002814,1.000000,0.000024 +26,2022-08-02 02:00:00,0.000838,0.000062,0.000087,0.000062,0.000011,0.000394,0.000323,0.000466,0.000000,0.000000,0.003120,0.320284,-0.002623,1.000000,0.000050 +27,2022-08-02 03:00:00,0.000724,0.000069,0.000066,0.000069,0.000012,0.000385,0.000320,0.000466,0.000000,0.000000,0.003055,0.317607,-0.002676,1.000000,0.000047 +28,2022-08-02 04:00:00,0.000786,0.000076,0.000077,0.000076,0.000013,0.000377,0.000316,0.000466,0.000000,0.000000,0.002994,0.315019,-0.002588,1.000000,0.000048 +29,2022-08-02 05:00:00,0.000779,0.000074,0.000075,0.000074,0.000014,0.000370,0.000313,0.000457,0.000000,0.000000,0.002937,0.312463,-0.002557,1.000000,0.000049 +30,2022-08-02 06:00:00,0.000796,0.000077,0.000078,0.000077,0.000014,0.000363,0.000309,0.000454,0.000000,0.000000,0.002884,0.309956,-0.002506,1.000000,0.000050 +31,2022-08-02 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000015,0.000356,0.000305,0.000406,0.000000,0.000000,0.002833,0.306777,-0.003179,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000349,0.000301,0.000381,0.000000,0.000000,0.002784,0.303643,-0.003134,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000343,0.000296,0.000361,0.000000,0.000000,0.002737,0.300554,-0.003090,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000337,0.000292,0.000356,0.000000,0.000000,0.002691,0.297508,-0.003046,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000332,0.000288,0.000351,0.000000,0.000000,0.002648,0.294505,-0.003003,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000326,0.000284,0.000346,0.000000,0.000000,0.002605,0.291545,-0.002960,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000321,0.000280,0.000342,0.000000,0.000000,0.002564,0.288627,-0.002918,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000316,0.000276,0.000338,0.000126,0.000126,0.002524,0.285625,-0.003001,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000311,0.000271,0.000334,0.000347,0.000347,0.002485,0.282449,-0.003177,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000306,0.000267,0.000330,0.000492,0.000492,0.002446,0.279174,-0.003274,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000301,0.000262,0.000326,0.000602,0.000602,0.002407,0.275837,-0.003337,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000149,0.000000,0.000000,0.000000,0.000026,0.000296,0.000258,0.000322,0.000703,0.000703,0.002369,0.272596,-0.003241,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000291,0.000253,0.000318,0.000670,0.000670,0.002332,0.269286,-0.003310,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000286,0.000249,0.000315,0.000570,0.000570,0.002294,0.266121,-0.003165,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000281,0.000245,0.000311,0.000522,0.000522,0.002258,0.263047,-0.003073,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000277,0.000241,0.000308,0.000450,0.000450,0.002221,0.260089,-0.002958,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000272,0.000237,0.000304,0.000348,0.000348,0.002186,0.257273,-0.002816,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000268,0.000233,0.000301,0.000212,0.000212,0.002151,0.254631,-0.002641,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000263,0.000230,0.000298,0.000057,0.000057,0.002117,0.252179,-0.002452,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000259,0.000226,0.000295,0.000000,0.000000,0.002085,0.249819,-0.002361,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000255,0.000223,0.000292,0.000000,0.000000,0.002053,0.247491,-0.002327,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000251,0.000220,0.000289,0.000000,0.000000,0.002022,0.245197,-0.002294,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000247,0.000217,0.000287,0.000000,0.000000,0.001991,0.242935,-0.002262,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000243,0.000214,0.000284,0.000000,0.000000,0.001962,0.240705,-0.002230,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000240,0.000211,0.000282,0.000000,0.000000,0.001933,0.238506,-0.002198,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000236,0.000208,0.000279,0.000000,0.000000,0.001904,0.236339,-0.002167,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000233,0.000205,0.000277,0.000000,0.000000,0.001876,0.234203,-0.002137,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000229,0.000202,0.000275,0.000000,0.000000,0.001849,0.232096,-0.002106,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000226,0.000199,0.000273,0.000000,0.000000,0.001823,0.230020,-0.002076,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000222,0.000196,0.000271,0.000000,0.000000,0.001796,0.227973,-0.002047,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000219,0.000194,0.000269,0.000000,0.000000,0.001771,0.225955,-0.002018,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000216,0.000191,0.000267,0.000148,0.000148,0.001745,0.223819,-0.002136,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000213,0.000187,0.000265,0.000406,0.000406,0.001720,0.221460,-0.002359,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000210,0.000184,0.000263,0.000572,0.000572,0.001694,0.218970,-0.002490,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000206,0.000180,0.000261,0.000694,0.000694,0.001668,0.216395,-0.002575,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000203,0.000177,0.000259,0.000732,0.000732,0.001642,0.213819,-0.002576,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000200,0.000173,0.000257,0.000694,0.000694,0.001616,0.211318,-0.002502,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000479,0.000000,0.000000,0.000000,0.000059,0.000196,0.000171,0.000256,0.000596,0.000596,0.001590,0.209420,-0.001898,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000111,0.000000,0.000000,0.000000,0.000061,0.000193,0.000168,0.000254,0.000535,0.000535,0.001565,0.207247,-0.002173,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000190,0.000165,0.000252,0.000457,0.000457,0.001540,0.205071,-0.002175,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000187,0.000162,0.000250,0.000353,0.000353,0.001515,0.203030,-0.002041,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000184,0.000159,0.000248,0.000214,0.000214,0.001490,0.201154,-0.001876,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000181,0.000157,0.000247,0.000071,0.000071,0.001466,0.199445,-0.001709,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000178,0.000155,0.000245,0.000000,0.000000,0.001443,0.197831,-0.001614,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000175,0.000153,0.000244,0.000000,0.000000,0.001421,0.196240,-0.001591,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000172,0.000150,0.000243,0.000000,0.000000,0.001399,0.194671,-0.001569,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000170,0.000148,0.000241,0.000000,0.000000,0.001378,0.193125,-0.001546,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000167,0.000146,0.000240,0.000000,0.000000,0.001357,0.191600,-0.001525,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000164,0.000144,0.000239,0.000000,0.000000,0.001336,0.190097,-0.001503,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000162,0.000142,0.000238,0.000000,0.000000,0.001317,0.188615,-0.001482,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000160,0.000140,0.000237,0.000000,0.000000,0.001297,0.187155,-0.001461,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000157,0.000138,0.000236,0.000000,0.000000,0.001278,0.185715,-0.001440,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000155,0.000136,0.000235,0.000000,0.000000,0.001259,0.184295,-0.001420,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000153,0.000134,0.000234,0.000000,0.000000,0.001241,0.182895,-0.001400,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000150,0.000132,0.000233,0.000000,0.000000,0.001223,0.181516,-0.001380,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000148,0.000130,0.000233,0.000144,0.000144,0.001205,0.180013,-0.001502,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000146,0.000128,0.000232,0.000402,0.000402,0.001187,0.178278,-0.001735,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000144,0.000125,0.000231,0.000571,0.000571,0.001169,0.176401,-0.001877,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000141,0.000123,0.000230,0.000701,0.000701,0.001150,0.174423,-0.001978,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000139,0.000120,0.000229,0.000808,0.000808,0.001131,0.172366,-0.002057,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000136,0.000117,0.000228,0.000772,0.000772,0.001112,0.170375,-0.001991,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000134,0.000114,0.000227,0.000662,0.000662,0.001092,0.168519,-0.001855,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000132,0.000112,0.000226,0.000537,0.000537,0.001073,0.166814,-0.001706,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000129,0.000110,0.000225,0.000466,0.000466,0.001053,0.165202,-0.001612,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000127,0.000108,0.000224,0.000361,0.000361,0.001034,0.163717,-0.001485,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000124,0.000106,0.000223,0.000224,0.000224,0.001016,0.162388,-0.001329,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000122,0.000104,0.000223,0.000087,0.000087,0.000998,0.161213,-0.001175,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000120,0.000103,0.000222,0.000000,0.000000,0.000981,0.160140,-0.001073,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000118,0.000101,0.000221,0.000000,0.000000,0.000964,0.159082,-0.001058,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000116,0.000100,0.000221,0.000000,0.000000,0.000948,0.158040,-0.001043,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000114,0.000099,0.000220,0.000000,0.000000,0.000932,0.157012,-0.001028,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000112,0.000097,0.000220,0.000000,0.000000,0.000917,0.155999,-0.001013,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000110,0.000096,0.000220,0.000000,0.000000,0.000903,0.155000,-0.000999,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000109,0.000094,0.000219,0.000000,0.000000,0.000888,0.154015,-0.000985,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000107,0.000093,0.000219,0.000000,0.000000,0.000875,0.153044,-0.000971,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000105,0.000092,0.000219,0.000000,0.000000,0.000861,0.152087,-0.000957,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000104,0.000090,0.000219,0.000000,0.000000,0.000848,0.151144,-0.000943,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000102,0.000089,0.000218,0.000000,0.000000,0.000835,0.150214,-0.000930,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000101,0.000088,0.000218,0.000000,0.000000,0.000822,0.149297,-0.000917,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000099,0.000086,0.000218,0.000155,0.000155,0.000810,0.148240,-0.001057,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000097,0.000085,0.000218,0.000403,0.000403,0.000797,0.146954,-0.001286,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000096,0.000083,0.000218,0.000569,0.000569,0.000784,0.145522,-0.001432,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000094,0.000081,0.000218,0.000695,0.000695,0.000771,0.143986,-0.001536,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000092,0.000079,0.000217,0.000691,0.000691,0.000757,0.142476,-0.001510,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000125,0.000000,0.000000,0.000000,0.000126,0.000091,0.000077,0.000217,0.000658,0.000658,0.000743,0.141143,-0.001333,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000125,0.000000,0.000000,0.000000,0.000128,0.000089,0.000075,0.000217,0.000557,0.000557,0.000729,0.139929,-0.001214,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000129,0.000087,0.000073,0.000216,0.000477,0.000477,0.000715,0.138812,-0.001117,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000086,0.000072,0.000216,0.000405,0.000405,0.000702,0.137782,-0.001030,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000132,0.000084,0.000071,0.000216,0.000319,0.000319,0.000689,0.136914,-0.000868,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000082,0.000070,0.000216,0.000198,0.000198,0.000676,0.136114,-0.000800,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000775,0.000025,0.000046,0.000025,0.000135,0.000081,0.000070,0.000241,0.000084,0.000084,0.000664,0.136033,-0.000081,1.000000,0.000021 +122,2022-08-06 02:00:00,0.001052,0.000068,0.000103,0.000068,0.000136,0.000080,0.000070,0.000284,0.000000,0.000000,0.000655,0.136252,0.000219,1.000000,0.000056 +123,2022-08-06 03:00:00,0.000895,0.000077,0.000076,0.000077,0.000137,0.000079,0.000070,0.000293,0.000000,0.000000,0.000646,0.136340,0.000088,1.000000,0.000055 +124,2022-08-06 04:00:00,0.000834,0.000076,0.000066,0.000076,0.000139,0.000078,0.000070,0.000293,0.000000,0.000000,0.000638,0.136376,0.000036,1.000000,0.000045 +125,2022-08-06 05:00:00,0.000823,0.000067,0.000065,0.000067,0.000140,0.000077,0.000070,0.000284,0.000000,0.000000,0.000631,0.136403,0.000026,1.000000,0.000042 +126,2022-08-06 06:00:00,0.000856,0.000068,0.000070,0.000068,0.000142,0.000076,0.000070,0.000286,0.000000,0.000000,0.000626,0.136457,0.000054,1.000000,0.000044 +127,2022-08-06 07:00:00,0.000000,0.000030,0.000000,0.000030,0.000143,0.000075,0.000069,0.000249,0.000000,0.000000,0.000619,0.135735,-0.000722,1.000000,0.000014 +128,2022-08-06 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000144,0.000075,0.000068,0.000233,0.000000,0.000000,0.000613,0.135023,-0.000712,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000074,0.000067,0.000220,0.000000,0.000000,0.000606,0.134321,-0.000702,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000073,0.000066,0.000220,0.000000,0.000000,0.000600,0.133629,-0.000692,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000072,0.000065,0.000221,0.000000,0.000000,0.000593,0.132947,-0.000682,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000071,0.000064,0.000221,0.000000,0.000000,0.000586,0.132274,-0.000672,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000071,0.000064,0.000222,0.000000,0.000000,0.000579,0.131611,-0.000663,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000070,0.000062,0.000222,0.000140,0.000140,0.000572,0.130820,-0.000791,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000069,0.000061,0.000223,0.000393,0.000393,0.000564,0.129791,-0.001030,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000068,0.000059,0.000223,0.000564,0.000564,0.000556,0.128607,-0.001183,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000067,0.000058,0.000223,0.000687,0.000687,0.000547,0.127319,-0.001288,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000065,0.000056,0.000223,0.000788,0.000788,0.000537,0.125949,-0.001370,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000064,0.000054,0.000223,0.000753,0.000753,0.000527,0.124634,-0.001315,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000063,0.000052,0.000223,0.000649,0.000649,0.000517,0.123439,-0.001195,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000062,0.000051,0.000223,0.000542,0.000542,0.000506,0.122366,-0.001072,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000060,0.000049,0.000223,0.000464,0.000464,0.000495,0.121386,-0.000980,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000059,0.000048,0.000223,0.000357,0.000357,0.000484,0.120525,-0.000861,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000058,0.000047,0.000223,0.000216,0.000216,0.000474,0.119815,-0.000710,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000056,0.000047,0.000224,0.000070,0.000070,0.000464,0.119259,-0.000556,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000055,0.000046,0.000224,0.000000,0.000000,0.000455,0.118780,-0.000479,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000045,0.000224,0.000000,0.000000,0.000446,0.118308,-0.000472,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000053,0.000045,0.000224,0.000000,0.000000,0.000437,0.117843,-0.000465,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000052,0.000044,0.000224,0.000000,0.000000,0.000429,0.117384,-0.000459,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000051,0.000043,0.000225,0.000000,0.000000,0.000421,0.116932,-0.000452,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000050,0.000043,0.000225,0.000000,0.000000,0.000414,0.116487,-0.000446,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000225,0.000000,0.000000,0.000406,0.116047,-0.000439,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000049,0.000042,0.000226,0.000000,0.000000,0.000399,0.115614,-0.000433,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000048,0.000041,0.000226,0.000000,0.000000,0.000393,0.115187,-0.000427,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000047,0.000040,0.000227,0.000000,0.000000,0.000386,0.114766,-0.000421,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000046,0.000040,0.000227,0.000000,0.000000,0.000380,0.114351,-0.000415,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000045,0.000039,0.000228,0.000000,0.000000,0.000374,0.113942,-0.000409,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000038,0.000228,0.000135,0.000135,0.000368,0.113405,-0.000537,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000044,0.000037,0.000229,0.000385,0.000385,0.000361,0.112630,-0.000776,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000036,0.000229,0.000559,0.000559,0.000354,0.111694,-0.000935,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000042,0.000035,0.000229,0.000682,0.000682,0.000347,0.110650,-0.001044,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000041,0.000033,0.000229,0.000775,0.000775,0.000339,0.109530,-0.001121,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000040,0.000032,0.000230,0.000738,0.000738,0.000330,0.108461,-0.001069,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000039,0.000030,0.000230,0.000630,0.000630,0.000322,0.107514,-0.000947,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000038,0.000029,0.000230,0.000558,0.000558,0.000313,0.106652,-0.000862,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000037,0.000028,0.000230,0.000478,0.000478,0.000304,0.105881,-0.000771,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000027,0.000230,0.000361,0.000361,0.000296,0.105236,-0.000645,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000035,0.000027,0.000230,0.000192,0.000192,0.000287,0.104766,-0.000469,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000026,0.000230,0.000034,0.000034,0.000280,0.104459,-0.000307,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000026,0.000231,0.000000,0.000000,0.000272,0.104190,-0.000269,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000025,0.000231,0.000000,0.000000,0.000266,0.103925,-0.000265,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000025,0.000231,0.000000,0.000000,0.000259,0.103664,-0.000262,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000025,0.000232,0.000000,0.000000,0.000253,0.103406,-0.000258,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000024,0.000232,0.000000,0.000000,0.000248,0.103152,-0.000254,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000024,0.000233,0.000000,0.000000,0.000242,0.102901,-0.000251,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000024,0.000233,0.000000,0.000000,0.000237,0.102654,-0.000247,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000000,0.000000,0.000232,0.102411,-0.000244,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000234,0.000000,0.000000,0.000228,0.102170,-0.000240,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000023,0.000235,0.000000,0.000000,0.000223,0.101934,-0.000237,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000235,0.000000,0.000000,0.000219,0.101700,-0.000233,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000022,0.000236,0.000000,0.000000,0.000215,0.101470,-0.000230,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000117,0.000117,0.000211,0.101129,-0.000342,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000021,0.000237,0.000373,0.000373,0.000207,0.100539,-0.000589,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000020,0.000238,0.000546,0.000546,0.000202,0.099787,-0.000752,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000019,0.000238,0.000672,0.000672,0.000197,0.098922,-0.000865,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000023,0.000017,0.000238,0.000778,0.000778,0.000191,0.097964,-0.000957,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000016,0.000239,0.000748,0.000748,0.000185,0.097050,-0.000914,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000015,0.000239,0.000637,0.000637,0.000178,0.096258,-0.000792,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000014,0.000239,0.000566,0.000566,0.000171,0.095547,-0.000711,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000013,0.000239,0.000483,0.000483,0.000164,0.094928,-0.000619,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000012,0.000240,0.000369,0.000369,0.000157,0.094429,-0.000498,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000012,0.000240,0.000214,0.000214,0.000151,0.094091,-0.000338,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000012,0.000240,0.000058,0.000058,0.000145,0.093912,-0.000180,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000011,0.000240,0.000000,0.000000,0.000140,0.093792,-0.000120,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000016,0.000011,0.000241,0.000000,0.000000,0.000135,0.093674,-0.000118,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000011,0.000241,0.000000,0.000000,0.000130,0.093557,-0.000116,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000011,0.000242,0.000000,0.000000,0.000126,0.093443,-0.000115,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000011,0.000242,0.000000,0.000000,0.000122,0.093330,-0.000113,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000011,0.000243,0.000000,0.000000,0.000118,0.093218,-0.000111,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000011,0.000243,0.000000,0.000000,0.000115,0.093108,-0.000110,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000010,0.000244,0.000000,0.000000,0.000112,0.093000,-0.000108,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000010,0.000244,0.000000,0.000000,0.000109,0.092893,-0.000107,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000010,0.000245,0.000000,0.000000,0.000106,0.092788,-0.000105,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000010,0.000246,0.000000,0.000000,0.000104,0.092684,-0.000104,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000012,0.000010,0.000246,0.000000,0.000000,0.000101,0.092582,-0.000102,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000012,0.000010,0.000247,0.000129,0.000000,0.000099,0.092481,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619301.csv b/test/channel_loss/channel_forcing/et/cat-2619301.csv new file mode 100644 index 000000000..80e8bd78f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619301.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000296,0.000001,0.000002,0.000001,0.000000,0.001490,0.000501,0.001491,0.000195,0.000195,0.010608,0.428863,-0.004799,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000020,0.000000,0.000000,0.000000,0.000000,0.001352,0.000494,0.001352,0.000061,0.000061,0.009750,0.423996,-0.004867,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001235,0.000487,0.001235,0.000000,0.000000,0.009002,0.419257,-0.004739,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001134,0.000480,0.001134,0.000000,0.000000,0.008347,0.414586,-0.004671,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001047,0.000473,0.001047,0.000000,0.000000,0.007773,0.409982,-0.004604,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000020,0.000000,0.000000,0.000000,0.000000,0.000972,0.000466,0.000972,0.000000,0.000000,0.007267,0.405446,-0.004536,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000018,0.000000,0.000000,0.000000,0.000001,0.000906,0.000459,0.000907,0.000000,0.000000,0.006820,0.400974,-0.004472,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000849,0.000453,0.000850,0.000000,0.000000,0.006424,0.396548,-0.004425,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000798,0.000446,0.000799,0.000000,0.000000,0.006072,0.392187,-0.004362,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000754,0.000440,0.000755,0.000000,0.000000,0.005759,0.387888,-0.004299,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000714,0.000434,0.000716,0.000000,0.000000,0.005478,0.383651,-0.004237,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000679,0.000427,0.000681,0.000000,0.000000,0.005227,0.379474,-0.004176,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000647,0.000421,0.000650,0.000000,0.000000,0.005000,0.375359,-0.004116,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000619,0.000415,0.000622,0.000000,0.000000,0.004796,0.371302,-0.004057,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000594,0.000409,0.000597,0.000144,0.000144,0.004611,0.367162,-0.004140,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000571,0.000402,0.000575,0.000390,0.000390,0.004443,0.362839,-0.004323,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000550,0.000396,0.000554,0.000546,0.000546,0.004289,0.358425,-0.004414,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000531,0.000389,0.000535,0.000657,0.000657,0.004148,0.353964,-0.004460,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000513,0.000383,0.000518,0.000611,0.000611,0.004017,0.349613,-0.004351,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000165,0.000000,0.000000,0.000000,0.000006,0.000497,0.000377,0.000503,0.000569,0.000569,0.003897,0.345530,-0.004084,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000482,0.000371,0.000489,0.000485,0.000485,0.003786,0.341611,-0.003918,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000308,0.000000,0.000000,0.000000,0.000007,0.000468,0.000365,0.000475,0.000385,0.000385,0.003683,0.337964,-0.003647,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000455,0.000360,0.000463,0.000336,0.000336,0.003587,0.334301,-0.003663,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000279,0.000000,0.000000,0.000000,0.000009,0.000443,0.000355,0.000452,0.000265,0.000265,0.003499,0.330849,-0.003452,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000246,0.000001,0.000001,0.000001,0.000009,0.000432,0.000350,0.000442,0.000161,0.000161,0.003416,0.327515,-0.003333,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000819,0.000037,0.000067,0.000037,0.000010,0.000422,0.000346,0.000469,0.000072,0.000072,0.003339,0.324819,-0.002697,1.000000,0.000030 +26,2022-08-02 02:00:00,0.000983,0.000078,0.000111,0.000078,0.000011,0.000413,0.000342,0.000502,0.000000,0.000000,0.003268,0.322348,-0.002471,1.000000,0.000063 +27,2022-08-02 03:00:00,0.000827,0.000085,0.000080,0.000085,0.000012,0.000404,0.000338,0.000501,0.000000,0.000000,0.003202,0.319791,-0.002557,1.000000,0.000058 +28,2022-08-02 04:00:00,0.000930,0.000097,0.000100,0.000097,0.000013,0.000396,0.000334,0.000506,0.000000,0.000000,0.003140,0.317353,-0.002438,1.000000,0.000061 +29,2022-08-02 05:00:00,0.000755,0.000078,0.000067,0.000078,0.000013,0.000388,0.000331,0.000479,0.000000,0.000000,0.003082,0.314810,-0.002543,1.000000,0.000050 +30,2022-08-02 06:00:00,0.000782,0.000076,0.000071,0.000076,0.000014,0.000381,0.000327,0.000471,0.000000,0.000000,0.003028,0.312326,-0.002484,1.000000,0.000045 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000015,0.000374,0.000322,0.000421,0.000000,0.000000,0.002976,0.309176,-0.003149,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000016,0.000368,0.000318,0.000398,0.000000,0.000000,0.002925,0.306073,-0.003104,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000362,0.000313,0.000378,0.000000,0.000000,0.002877,0.303013,-0.003059,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000355,0.000308,0.000373,0.000000,0.000000,0.002830,0.299998,-0.003015,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000349,0.000304,0.000368,0.000000,0.000000,0.002784,0.297027,-0.002972,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000344,0.000300,0.000364,0.000000,0.000000,0.002740,0.294098,-0.002929,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000338,0.000295,0.000359,0.000000,0.000000,0.002697,0.291211,-0.002887,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000333,0.000291,0.000355,0.000117,0.000117,0.002656,0.288250,-0.002961,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000327,0.000286,0.000350,0.000338,0.000338,0.002615,0.285115,-0.003136,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000322,0.000281,0.000346,0.000473,0.000473,0.002574,0.281892,-0.003223,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000317,0.000277,0.000342,0.000573,0.000573,0.002533,0.278616,-0.003275,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000288,0.000000,0.000000,0.000000,0.000026,0.000312,0.000272,0.000338,0.000666,0.000666,0.002494,0.275580,-0.003036,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000307,0.000267,0.000334,0.000622,0.000622,0.002454,0.272347,-0.003233,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000302,0.000263,0.000330,0.000530,0.000530,0.002415,0.269251,-0.003096,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000297,0.000258,0.000326,0.000494,0.000494,0.002377,0.266235,-0.003016,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000292,0.000254,0.000322,0.000423,0.000423,0.002339,0.263332,-0.002903,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000287,0.000250,0.000319,0.000331,0.000331,0.002301,0.260563,-0.002770,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000282,0.000246,0.000315,0.000199,0.000199,0.002265,0.257963,-0.002600,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000278,0.000242,0.000312,0.000048,0.000048,0.002229,0.255550,-0.002414,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000273,0.000239,0.000308,0.000000,0.000000,0.002194,0.253218,-0.002332,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000269,0.000235,0.000305,0.000000,0.000000,0.002161,0.250920,-0.002298,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000265,0.000232,0.000302,0.000000,0.000000,0.002128,0.248655,-0.002265,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000261,0.000228,0.000299,0.000000,0.000000,0.002096,0.246422,-0.002232,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000257,0.000225,0.000297,0.000000,0.000000,0.002064,0.244222,-0.002200,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000253,0.000222,0.000294,0.000000,0.000000,0.002034,0.242053,-0.002169,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000249,0.000219,0.000291,0.000000,0.000000,0.002003,0.239916,-0.002137,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000245,0.000216,0.000289,0.000000,0.000000,0.001974,0.237809,-0.002107,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000241,0.000212,0.000286,0.000000,0.000000,0.001945,0.235733,-0.002076,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000238,0.000209,0.000284,0.000000,0.000000,0.001917,0.233686,-0.002046,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000234,0.000206,0.000282,0.000000,0.000000,0.001889,0.231669,-0.002017,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000231,0.000203,0.000280,0.000000,0.000000,0.001862,0.229681,-0.001988,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000227,0.000200,0.000277,0.000140,0.000140,0.001835,0.227585,-0.002097,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000224,0.000197,0.000275,0.000393,0.000393,0.001808,0.225268,-0.002316,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000220,0.000193,0.000273,0.000547,0.000547,0.001780,0.222833,-0.002435,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000217,0.000189,0.000271,0.000659,0.000659,0.001753,0.220323,-0.002510,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000213,0.000186,0.000269,0.000687,0.000687,0.001725,0.217822,-0.002501,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000210,0.000182,0.000267,0.000641,0.000641,0.001697,0.215402,-0.002420,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001118,0.000018,0.000033,0.000018,0.000058,0.000207,0.000180,0.000283,0.000551,0.000551,0.001671,0.214174,-0.001228,1.000000,0.000015 +69,2022-08-03 21:00:00,0.000298,0.000008,0.000000,0.000008,0.000060,0.000203,0.000177,0.000271,0.000500,0.000500,0.001645,0.212239,-0.001935,1.000000,0.000007 +70,2022-08-03 22:00:00,0.000000,0.000007,0.000000,0.000007,0.000061,0.000200,0.000174,0.000267,0.000427,0.000427,0.001619,0.210110,-0.002129,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000197,0.000171,0.000259,0.000332,0.000332,0.001594,0.208106,-0.002005,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000194,0.000168,0.000257,0.000197,0.000197,0.001568,0.206263,-0.001842,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000190,0.000166,0.000255,0.000060,0.000060,0.001544,0.204581,-0.001682,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000187,0.000163,0.000254,0.000000,0.000000,0.001520,0.202984,-0.001598,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000185,0.000161,0.000252,0.000000,0.000000,0.001496,0.201409,-0.001575,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000182,0.000159,0.000251,0.000000,0.000000,0.001474,0.199856,-0.001552,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000179,0.000157,0.000249,0.000000,0.000000,0.001451,0.198326,-0.001530,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000176,0.000154,0.000248,0.000000,0.000000,0.001429,0.196819,-0.001508,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000173,0.000152,0.000247,0.000000,0.000000,0.001408,0.195332,-0.001486,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000171,0.000150,0.000246,0.000000,0.000000,0.001387,0.193868,-0.001465,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000168,0.000148,0.000244,0.000000,0.000000,0.001367,0.192424,-0.001444,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000166,0.000146,0.000243,0.000000,0.000000,0.001347,0.191001,-0.001423,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000163,0.000143,0.000242,0.000000,0.000000,0.001327,0.189599,-0.001402,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000161,0.000141,0.000241,0.000000,0.000000,0.001307,0.188216,-0.001382,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000158,0.000139,0.000240,0.000000,0.000000,0.001288,0.186854,-0.001362,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000156,0.000137,0.000239,0.000137,0.000137,0.001270,0.185376,-0.001478,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000154,0.000135,0.000238,0.000390,0.000390,0.001251,0.183670,-0.001706,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000151,0.000132,0.000237,0.000549,0.000549,0.001231,0.181832,-0.001838,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000149,0.000129,0.000236,0.000664,0.000664,0.001211,0.179908,-0.001924,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000146,0.000126,0.000235,0.000762,0.000762,0.001191,0.177914,-0.001994,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000144,0.000123,0.000234,0.000719,0.000719,0.001171,0.175991,-0.001923,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000141,0.000120,0.000233,0.000611,0.000611,0.001150,0.174202,-0.001789,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000139,0.000118,0.000232,0.000500,0.000500,0.001129,0.172549,-0.001654,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000136,0.000116,0.000231,0.000434,0.000434,0.001109,0.170984,-0.001565,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000134,0.000114,0.000229,0.000338,0.000338,0.001089,0.169536,-0.001448,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000131,0.000112,0.000228,0.000209,0.000209,0.001069,0.168237,-0.001299,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000129,0.000110,0.000228,0.000076,0.000076,0.001051,0.167088,-0.001150,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000126,0.000108,0.000227,0.000000,0.000000,0.001032,0.166029,-0.001058,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000124,0.000107,0.000226,0.000000,0.000000,0.001015,0.164987,-0.001043,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000122,0.000105,0.000225,0.000000,0.000000,0.000998,0.163959,-0.001028,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000120,0.000104,0.000225,0.000000,0.000000,0.000981,0.162946,-0.001013,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000118,0.000102,0.000224,0.000000,0.000000,0.000965,0.161947,-0.000998,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000116,0.000101,0.000224,0.000000,0.000000,0.000950,0.160963,-0.000984,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000114,0.000099,0.000223,0.000000,0.000000,0.000935,0.159993,-0.000970,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000113,0.000098,0.000223,0.000000,0.000000,0.000920,0.159037,-0.000956,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000111,0.000096,0.000222,0.000000,0.000000,0.000905,0.158095,-0.000942,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000109,0.000095,0.000222,0.000000,0.000000,0.000891,0.157166,-0.000929,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000107,0.000094,0.000222,0.000000,0.000000,0.000878,0.156251,-0.000915,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000106,0.000092,0.000221,0.000000,0.000000,0.000864,0.155349,-0.000902,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000104,0.000091,0.000221,0.000146,0.000146,0.000851,0.154316,-0.001033,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000102,0.000089,0.000221,0.000390,0.000390,0.000838,0.153057,-0.001259,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000101,0.000087,0.000221,0.000545,0.000545,0.000824,0.151663,-0.001393,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000099,0.000085,0.000220,0.000660,0.000660,0.000809,0.150176,-0.001487,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000097,0.000082,0.000220,0.000648,0.000648,0.000795,0.148723,-0.001453,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000124,0.000095,0.000080,0.000219,0.000606,0.000606,0.000780,0.147402,-0.001321,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000075,0.000000,0.000000,0.000000,0.000126,0.000093,0.000079,0.000219,0.000504,0.000504,0.000765,0.146204,-0.001198,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000080,0.000000,0.000000,0.000000,0.000127,0.000092,0.000077,0.000219,0.000439,0.000439,0.000751,0.145093,-0.001111,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000128,0.000090,0.000075,0.000218,0.000374,0.000374,0.000736,0.144107,-0.000985,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000209,0.000000,0.000000,0.000000,0.000130,0.000088,0.000074,0.000218,0.000296,0.000296,0.000722,0.143294,-0.000813,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000086,0.000073,0.000218,0.000185,0.000185,0.000709,0.142521,-0.000773,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000886,0.000033,0.000060,0.000033,0.000132,0.000085,0.000073,0.000250,0.000073,0.000073,0.000697,0.142559,0.000038,1.000000,0.000027 +122,2022-08-06 02:00:00,0.001375,0.000104,0.000163,0.000104,0.000134,0.000084,0.000074,0.000322,0.000000,0.000000,0.000687,0.143049,0.000490,1.000000,0.000085 +123,2022-08-06 03:00:00,0.000948,0.000097,0.000080,0.000097,0.000135,0.000083,0.000074,0.000315,0.000000,0.000000,0.000679,0.143192,0.000143,1.000000,0.000069 +124,2022-08-06 04:00:00,0.000723,0.000079,0.000048,0.000079,0.000137,0.000082,0.000074,0.000297,0.000000,0.000000,0.000671,0.143144,-0.000049,1.000000,0.000037 +125,2022-08-06 05:00:00,0.000769,0.000057,0.000054,0.000057,0.000138,0.000081,0.000074,0.000276,0.000000,0.000000,0.000664,0.143135,-0.000009,1.000000,0.000034 +126,2022-08-06 06:00:00,0.000850,0.000059,0.000065,0.000059,0.000139,0.000080,0.000074,0.000278,0.000000,0.000000,0.000658,0.143195,0.000060,1.000000,0.000040 +127,2022-08-06 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000141,0.000079,0.000073,0.000247,0.000000,0.000000,0.000652,0.142481,-0.000714,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000142,0.000079,0.000072,0.000234,0.000000,0.000000,0.000645,0.141777,-0.000704,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000078,0.000071,0.000221,0.000000,0.000000,0.000638,0.141084,-0.000694,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000077,0.000070,0.000222,0.000000,0.000000,0.000631,0.140400,-0.000684,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000076,0.000069,0.000222,0.000000,0.000000,0.000624,0.139726,-0.000674,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000075,0.000068,0.000222,0.000000,0.000000,0.000617,0.139062,-0.000664,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000074,0.000067,0.000223,0.000000,0.000000,0.000610,0.138407,-0.000655,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000073,0.000066,0.000223,0.000132,0.000132,0.000602,0.137632,-0.000776,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000072,0.000064,0.000224,0.000380,0.000380,0.000594,0.136623,-0.001009,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000071,0.000063,0.000224,0.000537,0.000537,0.000585,0.135474,-0.001149,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000070,0.000061,0.000224,0.000647,0.000647,0.000576,0.134233,-0.001241,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000069,0.000059,0.000224,0.000737,0.000737,0.000566,0.132922,-0.001311,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000068,0.000057,0.000224,0.000700,0.000700,0.000555,0.131666,-0.001256,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000066,0.000055,0.000224,0.000598,0.000598,0.000544,0.130529,-0.001137,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000065,0.000054,0.000224,0.000507,0.000507,0.000533,0.129498,-0.001031,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000063,0.000052,0.000224,0.000433,0.000433,0.000522,0.128554,-0.000944,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000062,0.000051,0.000224,0.000336,0.000336,0.000511,0.127719,-0.000835,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000061,0.000050,0.000224,0.000199,0.000199,0.000500,0.127032,-0.000688,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000060,0.000049,0.000224,0.000059,0.000059,0.000489,0.126492,-0.000540,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000058,0.000048,0.000224,0.000000,0.000000,0.000480,0.126018,-0.000474,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000057,0.000048,0.000224,0.000000,0.000000,0.000470,0.125551,-0.000467,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000056,0.000047,0.000224,0.000000,0.000000,0.000461,0.125091,-0.000460,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000055,0.000046,0.000224,0.000000,0.000000,0.000453,0.124638,-0.000453,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000054,0.000046,0.000225,0.000000,0.000000,0.000444,0.124191,-0.000447,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000053,0.000045,0.000225,0.000000,0.000000,0.000436,0.123750,-0.000441,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000052,0.000044,0.000225,0.000000,0.000000,0.000429,0.123316,-0.000434,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000051,0.000044,0.000225,0.000000,0.000000,0.000421,0.122888,-0.000428,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000050,0.000043,0.000226,0.000000,0.000000,0.000414,0.122466,-0.000422,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000049,0.000043,0.000226,0.000000,0.000000,0.000407,0.122051,-0.000416,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000049,0.000042,0.000227,0.000000,0.000000,0.000400,0.121641,-0.000410,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000048,0.000041,0.000227,0.000000,0.000000,0.000394,0.121237,-0.000404,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000047,0.000041,0.000227,0.000127,0.000127,0.000387,0.120714,-0.000523,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000046,0.000039,0.000228,0.000371,0.000371,0.000381,0.119958,-0.000756,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000038,0.000228,0.000529,0.000529,0.000373,0.119057,-0.000901,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000037,0.000228,0.000645,0.000645,0.000365,0.118055,-0.001002,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000043,0.000035,0.000228,0.000726,0.000726,0.000357,0.116987,-0.001068,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000042,0.000033,0.000229,0.000687,0.000687,0.000348,0.115973,-0.001014,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000041,0.000032,0.000229,0.000581,0.000581,0.000339,0.115078,-0.000895,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000040,0.000031,0.000229,0.000520,0.000520,0.000330,0.114256,-0.000822,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000039,0.000030,0.000229,0.000447,0.000447,0.000321,0.113518,-0.000738,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000029,0.000229,0.000335,0.000335,0.000312,0.112901,-0.000617,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000028,0.000229,0.000179,0.000179,0.000303,0.112447,-0.000454,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000028,0.000229,0.000025,0.000025,0.000295,0.112151,-0.000296,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000027,0.000229,0.000000,0.000000,0.000288,0.111884,-0.000267,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000027,0.000229,0.000000,0.000000,0.000281,0.111621,-0.000263,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000027,0.000230,0.000000,0.000000,0.000274,0.111361,-0.000260,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000026,0.000230,0.000000,0.000000,0.000268,0.111105,-0.000256,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000026,0.000231,0.000000,0.000000,0.000262,0.110853,-0.000252,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000025,0.000231,0.000000,0.000000,0.000256,0.110605,-0.000248,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000231,0.000000,0.000000,0.000251,0.110360,-0.000245,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000025,0.000232,0.000000,0.000000,0.000246,0.110118,-0.000241,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000024,0.000232,0.000000,0.000000,0.000241,0.109881,-0.000238,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000000,0.000000,0.000236,0.109646,-0.000234,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000024,0.000233,0.000000,0.000000,0.000232,0.109415,-0.000231,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000000,0.000000,0.000227,0.109187,-0.000228,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000027,0.000023,0.000234,0.000110,0.000110,0.000223,0.108854,-0.000333,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000022,0.000235,0.000359,0.000359,0.000219,0.108280,-0.000574,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000021,0.000235,0.000521,0.000521,0.000214,0.107556,-0.000725,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000025,0.000020,0.000236,0.000635,0.000635,0.000208,0.106729,-0.000827,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000018,0.000236,0.000731,0.000731,0.000202,0.105819,-0.000910,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000017,0.000236,0.000696,0.000696,0.000195,0.104957,-0.000862,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000016,0.000236,0.000589,0.000589,0.000188,0.104213,-0.000744,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000015,0.000237,0.000525,0.000525,0.000181,0.103543,-0.000671,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000014,0.000237,0.000451,0.000451,0.000174,0.102955,-0.000588,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000013,0.000237,0.000348,0.000348,0.000167,0.102477,-0.000478,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000013,0.000237,0.000200,0.000200,0.000161,0.102152,-0.000325,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000013,0.000237,0.000049,0.000049,0.000154,0.101980,-0.000171,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000012,0.000238,0.000000,0.000000,0.000149,0.101860,-0.000121,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000012,0.000238,0.000000,0.000000,0.000144,0.101741,-0.000119,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000012,0.000238,0.000000,0.000000,0.000139,0.101623,-0.000117,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000016,0.000012,0.000239,0.000000,0.000000,0.000134,0.101508,-0.000116,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000012,0.000239,0.000000,0.000000,0.000130,0.101394,-0.000114,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000240,0.000000,0.000000,0.000126,0.101282,-0.000112,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000011,0.000240,0.000000,0.000000,0.000123,0.101171,-0.000111,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000011,0.000241,0.000000,0.000000,0.000120,0.101062,-0.000109,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000011,0.000241,0.000000,0.000000,0.000116,0.100954,-0.000108,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000011,0.000242,0.000000,0.000000,0.000114,0.100848,-0.000106,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000011,0.000242,0.000000,0.000000,0.000111,0.100744,-0.000104,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000011,0.000243,0.000000,0.000000,0.000108,0.100641,-0.000103,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000010,0.000244,0.000123,0.000123,0.000106,0.100418,-0.000223,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619302.csv b/test/channel_loss/channel_forcing/et/cat-2619302.csv new file mode 100644 index 000000000..72c9a7870 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619302.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001454,0.000243,0.001457,0.000188,0.000188,0.010385,0.428944,-0.004718,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000041,0.000001,0.000000,0.000001,0.000000,0.001287,0.000239,0.001288,0.000056,0.000056,0.009338,0.424153,-0.004791,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000030,0.000001,0.000000,0.000001,0.000000,0.001146,0.000236,0.001147,0.000000,0.000000,0.008428,0.419469,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001026,0.000233,0.001027,0.000000,0.000000,0.007634,0.414846,-0.004623,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.000924,0.000230,0.000924,0.000000,0.000000,0.006941,0.410284,-0.004562,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000041,0.000000,0.000001,0.000000,0.000000,0.000836,0.000227,0.000836,0.000000,0.000000,0.006332,0.405793,-0.004492,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000030,0.000000,0.000000,0.000000,0.000001,0.000759,0.000224,0.000760,0.000000,0.000000,0.005797,0.401349,-0.004443,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000693,0.000221,0.000694,0.000000,0.000000,0.005326,0.396935,-0.004414,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000635,0.000218,0.000636,0.000000,0.000000,0.004909,0.392579,-0.004356,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000584,0.000215,0.000585,0.000000,0.000000,0.004541,0.388280,-0.004299,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000540,0.000213,0.000541,0.000000,0.000000,0.004214,0.384038,-0.004243,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000500,0.000210,0.000502,0.000000,0.000000,0.003923,0.379851,-0.004187,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000466,0.000207,0.000468,0.000000,0.000000,0.003665,0.375719,-0.004132,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000435,0.000204,0.000438,0.000000,0.000000,0.003434,0.371641,-0.004078,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000408,0.000202,0.000411,0.000137,0.000137,0.003228,0.367481,-0.004160,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000383,0.000199,0.000387,0.000380,0.000380,0.003043,0.363136,-0.004345,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000362,0.000196,0.000366,0.000530,0.000530,0.002877,0.358701,-0.004436,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000342,0.000193,0.000347,0.000633,0.000633,0.002728,0.354221,-0.004479,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000325,0.000190,0.000330,0.000584,0.000584,0.002593,0.349849,-0.004372,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000158,0.000000,0.000000,0.000000,0.000006,0.000309,0.000187,0.000315,0.000542,0.000542,0.002471,0.345733,-0.004117,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000193,0.000000,0.000000,0.000000,0.000007,0.000295,0.000184,0.000302,0.000462,0.000462,0.002361,0.341784,-0.003949,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000276,0.000000,0.000000,0.000000,0.000008,0.000282,0.000182,0.000289,0.000375,0.000375,0.002261,0.338054,-0.003730,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000270,0.000179,0.000279,0.000325,0.000325,0.002171,0.334337,-0.003717,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000282,0.000000,0.000000,0.000000,0.000009,0.000260,0.000177,0.000269,0.000255,0.000255,0.002088,0.330828,-0.003508,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000271,0.000002,0.000004,0.000002,0.000010,0.000250,0.000175,0.000262,0.000153,0.000153,0.002013,0.327452,-0.003376,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000865,0.000082,0.000147,0.000082,0.000011,0.000241,0.000173,0.000334,0.000065,0.000065,0.001945,0.324652,-0.002800,1.000000,0.000067 +26,2022-08-02 02:00:00,0.000944,0.000146,0.000197,0.000146,0.000012,0.000233,0.000171,0.000391,0.000000,0.000000,0.001883,0.321981,-0.002671,1.000000,0.000118 +27,2022-08-02 03:00:00,0.000838,0.000166,0.000159,0.000166,0.000012,0.000226,0.000169,0.000405,0.000000,0.000000,0.001826,0.319278,-0.002702,1.000000,0.000111 +28,2022-08-02 04:00:00,0.000938,0.000186,0.000194,0.000186,0.000013,0.000220,0.000168,0.000419,0.000000,0.000000,0.001774,0.316676,-0.002603,1.000000,0.000119 +29,2022-08-02 05:00:00,0.000772,0.000155,0.000136,0.000155,0.000014,0.000214,0.000166,0.000382,0.000000,0.000000,0.001727,0.314001,-0.002675,1.000000,0.000100 +30,2022-08-02 06:00:00,0.000768,0.000146,0.000134,0.000146,0.000015,0.000208,0.000164,0.000369,0.000000,0.000000,0.001683,0.311359,-0.002642,1.000000,0.000087 +31,2022-08-02 07:00:00,0.000000,0.000061,0.000000,0.000061,0.000016,0.000203,0.000162,0.000279,0.000000,0.000000,0.001642,0.308125,-0.003233,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000017,0.000198,0.000160,0.000242,0.000000,0.000000,0.001604,0.304934,-0.003191,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000194,0.000158,0.000211,0.000000,0.000000,0.001568,0.301785,-0.003149,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000189,0.000156,0.000208,0.000000,0.000000,0.001535,0.298678,-0.003108,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000185,0.000154,0.000205,0.000000,0.000000,0.001503,0.295611,-0.003067,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000182,0.000152,0.000203,0.000000,0.000000,0.001473,0.292584,-0.003027,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000003,0.000000,0.000000,0.000000,0.000022,0.000178,0.000150,0.000200,0.000000,0.000000,0.001445,0.289600,-0.002984,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000006,0.000000,0.000000,0.000000,0.000023,0.000175,0.000148,0.000198,0.000111,0.000111,0.001418,0.286549,-0.003052,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000004,0.000000,0.000000,0.000000,0.000024,0.000171,0.000146,0.000196,0.000334,0.000334,0.001392,0.283315,-0.003234,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000004,0.000000,0.000000,0.000000,0.000025,0.000168,0.000143,0.000194,0.000464,0.000464,0.001367,0.279996,-0.003319,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000004,0.000000,0.000000,0.000000,0.000027,0.000165,0.000141,0.000192,0.000557,0.000557,0.001343,0.276628,-0.003367,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000267,0.000000,0.000000,0.000000,0.000028,0.000162,0.000139,0.000190,0.000647,0.000647,0.001319,0.273476,-0.003153,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000159,0.000137,0.000188,0.000598,0.000598,0.001297,0.270149,-0.003327,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000157,0.000135,0.000187,0.000511,0.000511,0.001275,0.266952,-0.003197,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000154,0.000133,0.000185,0.000483,0.000483,0.001253,0.263825,-0.003127,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000151,0.000131,0.000184,0.000411,0.000411,0.001232,0.260810,-0.003015,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000149,0.000129,0.000183,0.000318,0.000318,0.001212,0.257926,-0.002884,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000146,0.000127,0.000181,0.000189,0.000189,0.001192,0.255206,-0.002719,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000144,0.000125,0.000180,0.000041,0.000041,0.001173,0.252669,-0.002537,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000142,0.000123,0.000179,0.000000,0.000000,0.001155,0.250206,-0.002463,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000140,0.000122,0.000178,0.000000,0.000000,0.001137,0.247775,-0.002431,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000137,0.000120,0.000177,0.000000,0.000000,0.001120,0.245376,-0.002399,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000135,0.000119,0.000177,0.000000,0.000000,0.001103,0.243008,-0.002368,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000133,0.000117,0.000176,0.000000,0.000000,0.001087,0.240671,-0.002337,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000131,0.000116,0.000175,0.000000,0.000000,0.001071,0.238365,-0.002306,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000129,0.000114,0.000175,0.000000,0.000000,0.001056,0.236090,-0.002276,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000128,0.000113,0.000174,0.000000,0.000000,0.001041,0.233844,-0.002246,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000126,0.000111,0.000174,0.000000,0.000000,0.001026,0.231628,-0.002216,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000124,0.000110,0.000173,0.000000,0.000000,0.001012,0.229440,-0.002187,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000122,0.000108,0.000173,0.000000,0.000000,0.000998,0.227282,-0.002159,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000121,0.000107,0.000173,0.000000,0.000000,0.000984,0.225152,-0.002130,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000119,0.000105,0.000173,0.000134,0.000134,0.000971,0.222917,-0.002234,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000117,0.000104,0.000172,0.000384,0.000384,0.000957,0.220465,-0.002452,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000115,0.000102,0.000172,0.000532,0.000532,0.000944,0.217899,-0.002566,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000114,0.000100,0.000172,0.000637,0.000637,0.000930,0.215263,-0.002635,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000112,0.000098,0.000172,0.000656,0.000656,0.000916,0.212643,-0.002620,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000110,0.000097,0.000171,0.000611,0.000611,0.000903,0.210102,-0.002541,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001014,0.000027,0.000050,0.000027,0.000062,0.000109,0.000096,0.000199,0.000524,0.000524,0.000890,0.208631,-0.001471,1.000000,0.000022 +69,2022-08-03 21:00:00,0.000336,0.000012,0.000000,0.000012,0.000064,0.000107,0.000094,0.000184,0.000482,0.000482,0.000877,0.206601,-0.002030,1.000000,0.000010 +70,2022-08-03 22:00:00,0.000000,0.000010,0.000000,0.000010,0.000065,0.000106,0.000093,0.000181,0.000411,0.000411,0.000864,0.204336,-0.002265,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000104,0.000091,0.000171,0.000319,0.000319,0.000851,0.202192,-0.002144,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000103,0.000090,0.000171,0.000185,0.000185,0.000839,0.200209,-0.001984,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000101,0.000089,0.000171,0.000053,0.000053,0.000827,0.198381,-0.001828,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000100,0.000088,0.000171,0.000000,0.000000,0.000815,0.196630,-0.001751,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000098,0.000087,0.000171,0.000000,0.000000,0.000804,0.194902,-0.001728,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000097,0.000085,0.000171,0.000000,0.000000,0.000792,0.193196,-0.001705,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000095,0.000084,0.000171,0.000000,0.000000,0.000781,0.191513,-0.001683,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000094,0.000083,0.000171,0.000000,0.000000,0.000770,0.189852,-0.001661,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000093,0.000082,0.000172,0.000000,0.000000,0.000760,0.188213,-0.001639,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000091,0.000081,0.000172,0.000000,0.000000,0.000749,0.186595,-0.001618,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000090,0.000080,0.000172,0.000000,0.000000,0.000739,0.184999,-0.001596,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000089,0.000079,0.000173,0.000000,0.000000,0.000729,0.183423,-0.001575,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000088,0.000078,0.000173,0.000000,0.000000,0.000719,0.181869,-0.001555,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000087,0.000077,0.000173,0.000000,0.000000,0.000710,0.180334,-0.001534,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000085,0.000076,0.000174,0.000000,0.000000,0.000700,0.178820,-0.001514,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000084,0.000075,0.000174,0.000132,0.000132,0.000691,0.177196,-0.001624,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000083,0.000074,0.000174,0.000384,0.000384,0.000681,0.175344,-0.001852,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000082,0.000072,0.000175,0.000536,0.000536,0.000672,0.173366,-0.001978,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000081,0.000071,0.000175,0.000641,0.000641,0.000662,0.171310,-0.002056,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000079,0.000069,0.000175,0.000729,0.000729,0.000652,0.169194,-0.002116,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000078,0.000068,0.000176,0.000688,0.000688,0.000642,0.167147,-0.002047,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000077,0.000067,0.000176,0.000584,0.000584,0.000632,0.165229,-0.001918,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000076,0.000066,0.000176,0.000482,0.000482,0.000622,0.163437,-0.001792,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000074,0.000065,0.000177,0.000418,0.000418,0.000612,0.161732,-0.001706,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000073,0.000063,0.000177,0.000325,0.000325,0.000602,0.160141,-0.001591,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000072,0.000062,0.000178,0.000200,0.000200,0.000592,0.158694,-0.001447,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000071,0.000062,0.000178,0.000068,0.000068,0.000583,0.157397,-0.001298,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000070,0.000061,0.000178,0.000000,0.000000,0.000574,0.156183,-0.001213,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000069,0.000060,0.000179,0.000000,0.000000,0.000565,0.154986,-0.001197,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000068,0.000059,0.000179,0.000000,0.000000,0.000556,0.153804,-0.001182,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000067,0.000058,0.000180,0.000000,0.000000,0.000548,0.152638,-0.001166,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000066,0.000058,0.000181,0.000000,0.000000,0.000540,0.151487,-0.001151,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000065,0.000057,0.000181,0.000000,0.000000,0.000532,0.150351,-0.001136,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000064,0.000056,0.000182,0.000000,0.000000,0.000525,0.149230,-0.001121,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000063,0.000055,0.000182,0.000000,0.000000,0.000517,0.148124,-0.001106,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000062,0.000055,0.000183,0.000000,0.000000,0.000510,0.147032,-0.001092,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000061,0.000054,0.000184,0.000000,0.000000,0.000503,0.145955,-0.001077,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000060,0.000053,0.000185,0.000000,0.000000,0.000496,0.144892,-0.001063,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000059,0.000053,0.000185,0.000000,0.000000,0.000489,0.143842,-0.001049,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000059,0.000052,0.000186,0.000140,0.000140,0.000482,0.142669,-0.001174,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000058,0.000051,0.000187,0.000380,0.000380,0.000475,0.141273,-0.001395,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000057,0.000050,0.000187,0.000531,0.000531,0.000468,0.139747,-0.001526,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000056,0.000049,0.000188,0.000640,0.000640,0.000461,0.138133,-0.001614,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000055,0.000048,0.000189,0.000622,0.000622,0.000453,0.136559,-0.001574,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000054,0.000047,0.000189,0.000580,0.000580,0.000446,0.135109,-0.001450,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000075,0.000000,0.000000,0.000000,0.000137,0.000053,0.000046,0.000190,0.000485,0.000485,0.000439,0.133784,-0.001325,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000052,0.000045,0.000191,0.000423,0.000423,0.000431,0.132525,-0.001259,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000052,0.000044,0.000191,0.000363,0.000363,0.000424,0.131405,-0.001120,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000222,0.000000,0.000000,0.000000,0.000141,0.000051,0.000044,0.000192,0.000286,0.000286,0.000417,0.130470,-0.000935,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000143,0.000050,0.000043,0.000193,0.000177,0.000177,0.000410,0.129560,-0.000911,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000881,0.000064,0.000117,0.000064,0.000144,0.000049,0.000043,0.000258,0.000067,0.000067,0.000404,0.129400,-0.000160,1.000000,0.000053 +122,2022-08-06 02:00:00,0.001405,0.000203,0.000316,0.000203,0.000146,0.000048,0.000043,0.000397,0.000000,0.000000,0.000399,0.129629,0.000229,1.000000,0.000165 +123,2022-08-06 03:00:00,0.000981,0.000193,0.000165,0.000193,0.000148,0.000048,0.000043,0.000388,0.000000,0.000000,0.000394,0.129585,-0.000044,1.000000,0.000137 +124,2022-08-06 04:00:00,0.000786,0.000165,0.000109,0.000165,0.000149,0.000047,0.000043,0.000361,0.000000,0.000000,0.000390,0.129404,-0.000181,1.000000,0.000082 +125,2022-08-06 05:00:00,0.000799,0.000123,0.000113,0.000123,0.000151,0.000047,0.000043,0.000320,0.000000,0.000000,0.000386,0.129235,-0.000169,1.000000,0.000073 +126,2022-08-06 06:00:00,0.000855,0.000121,0.000128,0.000121,0.000152,0.000046,0.000043,0.000319,0.000000,0.000000,0.000382,0.129109,-0.000126,1.000000,0.000080 +127,2022-08-06 07:00:00,0.000000,0.000055,0.000000,0.000055,0.000154,0.000046,0.000042,0.000254,0.000000,0.000000,0.000378,0.128267,-0.000842,1.000000,0.000026 +128,2022-08-06 08:00:00,0.000000,0.000026,0.000000,0.000026,0.000155,0.000045,0.000042,0.000226,0.000000,0.000000,0.000374,0.127436,-0.000831,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000045,0.000041,0.000202,0.000000,0.000000,0.000371,0.126615,-0.000820,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000045,0.000041,0.000203,0.000000,0.000000,0.000367,0.125806,-0.000810,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000044,0.000040,0.000204,0.000000,0.000000,0.000363,0.125007,-0.000799,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000044,0.000040,0.000205,0.000000,0.000000,0.000359,0.124218,-0.000788,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000043,0.000039,0.000206,0.000000,0.000000,0.000355,0.123440,-0.000778,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000043,0.000038,0.000207,0.000126,0.000126,0.000350,0.122548,-0.000893,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000042,0.000038,0.000208,0.000371,0.000371,0.000346,0.121425,-0.001122,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000041,0.000037,0.000209,0.000520,0.000520,0.000341,0.120170,-0.001255,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000041,0.000036,0.000209,0.000622,0.000622,0.000337,0.118831,-0.001339,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000040,0.000035,0.000210,0.000706,0.000706,0.000331,0.117427,-0.001404,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000034,0.000211,0.000668,0.000668,0.000326,0.116079,-0.001348,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000039,0.000033,0.000212,0.000569,0.000569,0.000320,0.114846,-0.001233,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000038,0.000033,0.000213,0.000490,0.000490,0.000315,0.113707,-0.001138,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000037,0.000032,0.000213,0.000417,0.000417,0.000309,0.112656,-0.001052,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000037,0.000031,0.000214,0.000323,0.000323,0.000303,0.111711,-0.000945,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000036,0.000031,0.000215,0.000188,0.000188,0.000298,0.110911,-0.000800,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000035,0.000030,0.000216,0.000052,0.000052,0.000293,0.110256,-0.000655,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000030,0.000217,0.000000,0.000000,0.000287,0.109661,-0.000595,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000029,0.000217,0.000000,0.000000,0.000283,0.109074,-0.000587,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000029,0.000218,0.000000,0.000000,0.000278,0.108495,-0.000579,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000029,0.000219,0.000000,0.000000,0.000273,0.107923,-0.000572,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000028,0.000220,0.000000,0.000000,0.000269,0.107359,-0.000564,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000032,0.000028,0.000221,0.000000,0.000000,0.000265,0.106802,-0.000557,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000028,0.000222,0.000000,0.000000,0.000261,0.106252,-0.000550,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000027,0.000223,0.000000,0.000000,0.000257,0.105710,-0.000542,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000027,0.000224,0.000000,0.000000,0.000253,0.105175,-0.000535,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000026,0.000225,0.000000,0.000000,0.000249,0.104646,-0.000528,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000026,0.000226,0.000000,0.000000,0.000246,0.104125,-0.000521,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000026,0.000227,0.000000,0.000000,0.000242,0.103611,-0.000514,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000025,0.000228,0.000121,0.000121,0.000238,0.102984,-0.000627,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000025,0.000229,0.000361,0.000361,0.000235,0.102128,-0.000856,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000024,0.000229,0.000513,0.000513,0.000231,0.101134,-0.000994,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000023,0.000230,0.000622,0.000622,0.000227,0.100045,-0.001089,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000023,0.000231,0.000697,0.000697,0.000223,0.098896,-0.001148,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000232,0.000654,0.000654,0.000218,0.097805,-0.001091,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000021,0.000233,0.000556,0.000556,0.000213,0.096825,-0.000980,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000021,0.000233,0.000502,0.000502,0.000209,0.095911,-0.000914,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000020,0.000234,0.000430,0.000430,0.000204,0.095080,-0.000831,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000322,0.000322,0.000200,0.094366,-0.000714,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000019,0.000236,0.000169,0.000169,0.000195,0.093813,-0.000553,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000237,0.000019,0.000000,0.000191,0.093434,-0.000379,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000023,0.000019,0.000237,0.000000,0.000000,0.000187,0.093060,-0.000374,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000019,0.000238,0.000000,0.000000,0.000183,0.092690,-0.000369,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000018,0.000239,0.000000,0.000000,0.000180,0.092326,-0.000364,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000000,0.000000,0.000177,0.091968,-0.000358,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000021,0.000018,0.000241,0.000000,0.000000,0.000173,0.091613,-0.000355,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000018,0.000242,0.000000,0.000000,0.000170,0.091263,-0.000350,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000243,0.000000,0.000000,0.000167,0.090917,-0.000346,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000017,0.000244,0.000000,0.000000,0.000165,0.090576,-0.000341,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000020,0.000017,0.000245,0.000000,0.000000,0.000162,0.090240,-0.000337,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000017,0.000245,0.000000,0.000000,0.000159,0.089907,-0.000332,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000016,0.000246,0.000000,0.000000,0.000157,0.089579,-0.000328,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000016,0.000247,0.000000,0.000000,0.000154,0.089256,-0.000324,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000016,0.000248,0.000105,0.000000,0.000152,0.088936,-0.000319,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000016,0.000249,0.000350,0.000000,0.000150,0.088621,-0.000315,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000250,0.000506,0.000000,0.000147,0.088310,-0.000311,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000015,0.000251,0.000612,0.000000,0.000145,0.088003,-0.000307,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000252,0.000701,0.000000,0.000143,0.087700,-0.000303,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000253,0.000664,0.000000,0.000141,0.087401,-0.000299,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000015,0.000254,0.000557,0.000000,0.000139,0.087106,-0.000295,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000507,0.000000,0.000137,0.086815,-0.000291,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000256,0.000433,0.000000,0.000135,0.086528,-0.000287,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000334,0.000000,0.000133,0.086244,-0.000284,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000191,0.000000,0.000131,0.085965,-0.000280,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000042,0.000000,0.000129,0.085688,-0.000276,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000014,0.000260,0.000000,0.000000,0.000128,0.085416,-0.000273,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000260,0.000000,0.000000,0.000126,0.085147,-0.000269,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000000,0.000000,0.000124,0.084881,-0.000265,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000122,0.084619,-0.000262,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000263,0.000000,0.000000,0.000121,0.084361,-0.000259,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000013,0.000264,0.000000,0.000000,0.000119,0.084106,-0.000255,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000013,0.000265,0.000000,0.000000,0.000118,0.083854,-0.000252,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000012,0.000266,0.000000,0.000000,0.000116,0.083605,-0.000248,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000267,0.000000,0.000000,0.000114,0.083360,-0.000245,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000012,0.000268,0.000000,0.000000,0.000113,0.083118,-0.000242,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000013,0.000012,0.000269,0.000000,0.000000,0.000111,0.082879,-0.000239,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000013,0.000012,0.000270,0.000000,0.000000,0.000110,0.082644,-0.000236,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000013,0.000012,0.000270,0.000118,0.000000,0.000108,0.082411,-0.000233,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619303.csv b/test/channel_loss/channel_forcing/et/cat-2619303.csv new file mode 100644 index 000000000..5cccc8ca9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619303.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000303,0.000002,0.000004,0.000002,0.000000,0.001458,0.000275,0.001461,0.000181,0.000181,0.010412,0.430689,-0.004689,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000050,0.000001,0.000000,0.000001,0.000000,0.001295,0.000271,0.001296,0.000053,0.000053,0.009388,0.425943,-0.004746,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000050,0.000001,0.000001,0.000001,0.000000,0.001157,0.000268,0.001159,0.000000,0.000000,0.008498,0.421312,-0.004631,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000050,0.000001,0.000001,0.000001,0.000000,0.001040,0.000264,0.001040,0.000000,0.000000,0.007723,0.416743,-0.004569,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000050,0.000001,0.000001,0.000001,0.000000,0.000939,0.000261,0.000940,0.000000,0.000000,0.007044,0.412235,-0.004508,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000050,0.000001,0.000001,0.000001,0.000000,0.000853,0.000257,0.000854,0.000000,0.000000,0.006449,0.407787,-0.004448,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000050,0.000001,0.000001,0.000001,0.000001,0.000777,0.000254,0.000779,0.000000,0.000000,0.005926,0.403398,-0.004389,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000712,0.000251,0.000713,0.000000,0.000000,0.005464,0.399019,-0.004379,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000655,0.000247,0.000656,0.000000,0.000000,0.005056,0.394698,-0.004321,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000605,0.000244,0.000607,0.000000,0.000000,0.004695,0.390435,-0.004263,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000561,0.000241,0.000563,0.000000,0.000000,0.004374,0.386228,-0.004206,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000523,0.000237,0.000525,0.000000,0.000000,0.004089,0.382078,-0.004150,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000488,0.000234,0.000491,0.000000,0.000000,0.003834,0.377983,-0.004095,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000458,0.000231,0.000461,0.000000,0.000000,0.003608,0.373943,-0.004040,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000431,0.000228,0.000434,0.000132,0.000132,0.003404,0.369826,-0.004117,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000407,0.000225,0.000411,0.000368,0.000368,0.003222,0.365531,-0.004295,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000385,0.000221,0.000390,0.000519,0.000519,0.003058,0.361144,-0.004387,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000366,0.000218,0.000371,0.000619,0.000619,0.002910,0.356718,-0.004426,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000348,0.000215,0.000354,0.000569,0.000569,0.002776,0.352399,-0.004319,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000142,0.000000,0.000000,0.000000,0.000006,0.000333,0.000211,0.000339,0.000528,0.000528,0.002655,0.348319,-0.004080,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000318,0.000208,0.000325,0.000452,0.000452,0.002545,0.344414,-0.003904,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000210,0.000000,0.000000,0.000000,0.000008,0.000305,0.000205,0.000313,0.000362,0.000362,0.002445,0.340671,-0.003743,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000294,0.000203,0.000302,0.000306,0.000306,0.002354,0.337013,-0.003658,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000210,0.000000,0.000000,0.000000,0.000009,0.000283,0.000200,0.000292,0.000241,0.000241,0.002270,0.333488,-0.003525,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000402,0.000009,0.000016,0.000009,0.000010,0.000273,0.000197,0.000292,0.000143,0.000143,0.002195,0.330282,-0.003207,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000690,0.000050,0.000084,0.000050,0.000011,0.000264,0.000195,0.000325,0.000058,0.000058,0.002125,0.327417,-0.002865,1.000000,0.000041 +26,2022-08-02 02:00:00,0.000763,0.000090,0.000119,0.000090,0.000011,0.000256,0.000193,0.000357,0.000000,0.000000,0.002062,0.324685,-0.002732,1.000000,0.000070 +27,2022-08-02 03:00:00,0.000772,0.000113,0.000121,0.000113,0.000012,0.000249,0.000191,0.000374,0.000000,0.000000,0.002004,0.321997,-0.002688,1.000000,0.000078 +28,2022-08-02 04:00:00,0.000812,0.000127,0.000132,0.000127,0.000013,0.000242,0.000189,0.000382,0.000000,0.000000,0.001951,0.319373,-0.002624,1.000000,0.000084 +29,2022-08-02 05:00:00,0.000793,0.000127,0.000126,0.000127,0.000014,0.000236,0.000187,0.000377,0.000000,0.000000,0.001902,0.316772,-0.002601,1.000000,0.000083 +30,2022-08-02 06:00:00,0.000717,0.000116,0.000105,0.000116,0.000015,0.000230,0.000185,0.000361,0.000000,0.000000,0.001857,0.314152,-0.002620,1.000000,0.000072 +31,2022-08-02 07:00:00,0.000000,0.000051,0.000000,0.000051,0.000016,0.000225,0.000182,0.000292,0.000000,0.000000,0.001815,0.310962,-0.003190,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000017,0.000220,0.000180,0.000257,0.000000,0.000000,0.001775,0.307814,-0.003147,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000215,0.000178,0.000233,0.000000,0.000000,0.001738,0.304709,-0.003105,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000211,0.000175,0.000229,0.000000,0.000000,0.001702,0.301645,-0.003064,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000206,0.000173,0.000226,0.000000,0.000000,0.001669,0.298622,-0.003023,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000202,0.000171,0.000223,0.000000,0.000000,0.001637,0.295639,-0.002983,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000199,0.000168,0.000220,0.000000,0.000000,0.001607,0.292696,-0.002943,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000005,0.000000,0.000000,0.000000,0.000023,0.000195,0.000166,0.000218,0.000105,0.000105,0.001578,0.289693,-0.003003,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000005,0.000000,0.000000,0.000000,0.000024,0.000191,0.000164,0.000215,0.000329,0.000329,0.001551,0.286509,-0.003184,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000004,0.000000,0.000000,0.000000,0.000025,0.000188,0.000161,0.000213,0.000462,0.000462,0.001524,0.283236,-0.003273,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000003,0.000000,0.000000,0.000000,0.000026,0.000185,0.000158,0.000211,0.000554,0.000554,0.001498,0.279915,-0.003322,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000210,0.000000,0.000000,0.000000,0.000027,0.000181,0.000156,0.000209,0.000646,0.000646,0.001472,0.276751,-0.003163,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000178,0.000154,0.000207,0.000608,0.000608,0.001447,0.273460,-0.003291,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000175,0.000151,0.000205,0.000511,0.000511,0.001423,0.270309,-0.003152,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000172,0.000149,0.000203,0.000475,0.000475,0.001399,0.267235,-0.003074,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000169,0.000146,0.000201,0.000402,0.000402,0.001376,0.264273,-0.002962,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000167,0.000144,0.000200,0.000305,0.000305,0.001354,0.261447,-0.002826,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000164,0.000142,0.000198,0.000182,0.000182,0.001332,0.258780,-0.002667,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000161,0.000140,0.000197,0.000037,0.000037,0.001311,0.256291,-0.002489,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000159,0.000138,0.000196,0.000000,0.000000,0.001291,0.253872,-0.002419,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000156,0.000137,0.000194,0.000000,0.000000,0.001271,0.251486,-0.002387,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000154,0.000135,0.000193,0.000000,0.000000,0.001252,0.249131,-0.002355,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000152,0.000133,0.000192,0.000000,0.000000,0.001233,0.246808,-0.002323,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000149,0.000131,0.000191,0.000000,0.000000,0.001215,0.244515,-0.002292,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000147,0.000129,0.000190,0.000000,0.000000,0.001198,0.242253,-0.002262,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000145,0.000128,0.000190,0.000000,0.000000,0.001180,0.240021,-0.002232,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000143,0.000126,0.000189,0.000000,0.000000,0.001163,0.237819,-0.002202,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000141,0.000124,0.000188,0.000000,0.000000,0.001147,0.235647,-0.002173,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000139,0.000123,0.000187,0.000000,0.000000,0.001131,0.233503,-0.002144,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000137,0.000121,0.000187,0.000000,0.000000,0.001115,0.231388,-0.002115,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000135,0.000119,0.000186,0.000000,0.000000,0.001100,0.229301,-0.002087,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000133,0.000118,0.000186,0.000129,0.000129,0.001084,0.227115,-0.002186,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000131,0.000116,0.000185,0.000374,0.000374,0.001069,0.224716,-0.002399,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000129,0.000114,0.000185,0.000524,0.000524,0.001054,0.222200,-0.002515,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000127,0.000112,0.000184,0.000619,0.000619,0.001038,0.219625,-0.002576,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000125,0.000110,0.000184,0.000635,0.000635,0.001023,0.217068,-0.002556,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000123,0.000108,0.000183,0.000597,0.000597,0.001008,0.214584,-0.002485,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000635,0.000002,0.000003,0.000002,0.000061,0.000122,0.000107,0.000185,0.000507,0.000507,0.000993,0.212844,-0.001740,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000202,0.000001,0.000000,0.000001,0.000063,0.000120,0.000105,0.000183,0.000464,0.000464,0.000978,0.210746,-0.002098,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000064,0.000118,0.000103,0.000183,0.000390,0.000390,0.000963,0.208549,-0.002197,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000116,0.000102,0.000182,0.000298,0.000298,0.000949,0.206472,-0.002077,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000114,0.000100,0.000181,0.000170,0.000170,0.000935,0.204549,-0.001923,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000113,0.000099,0.000181,0.000049,0.000049,0.000921,0.202772,-0.001777,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000111,0.000098,0.000181,0.000000,0.000000,0.000908,0.201066,-0.001706,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000109,0.000096,0.000181,0.000000,0.000000,0.000895,0.199383,-0.001683,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000108,0.000095,0.000181,0.000000,0.000000,0.000882,0.197723,-0.001661,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000106,0.000094,0.000181,0.000000,0.000000,0.000869,0.196084,-0.001638,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000105,0.000092,0.000181,0.000000,0.000000,0.000857,0.194468,-0.001617,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000103,0.000091,0.000181,0.000000,0.000000,0.000845,0.192873,-0.001595,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000102,0.000090,0.000181,0.000000,0.000000,0.000833,0.191299,-0.001574,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000100,0.000089,0.000181,0.000000,0.000000,0.000822,0.189746,-0.001553,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000099,0.000088,0.000181,0.000000,0.000000,0.000810,0.188214,-0.001532,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000098,0.000086,0.000181,0.000000,0.000000,0.000799,0.186702,-0.001512,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000096,0.000085,0.000181,0.000000,0.000000,0.000788,0.185211,-0.001492,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000095,0.000084,0.000181,0.000000,0.000000,0.000777,0.183739,-0.001472,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000094,0.000083,0.000182,0.000127,0.000127,0.000767,0.182162,-0.001578,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000092,0.000082,0.000182,0.000375,0.000375,0.000756,0.180361,-0.001801,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000091,0.000080,0.000182,0.000529,0.000529,0.000745,0.178432,-0.001929,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000090,0.000079,0.000182,0.000627,0.000627,0.000734,0.176432,-0.002000,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000088,0.000077,0.000182,0.000696,0.000696,0.000723,0.174390,-0.002042,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000087,0.000075,0.000182,0.000661,0.000661,0.000712,0.172410,-0.001980,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000085,0.000074,0.000183,0.000570,0.000570,0.000700,0.170547,-0.001863,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000084,0.000073,0.000183,0.000462,0.000462,0.000689,0.168815,-0.001732,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000083,0.000071,0.000183,0.000395,0.000395,0.000678,0.167172,-0.001643,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000081,0.000070,0.000183,0.000300,0.000300,0.000666,0.165645,-0.001528,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000080,0.000069,0.000183,0.000188,0.000188,0.000656,0.164248,-0.001397,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000073,0.000000,0.000000,0.000000,0.000105,0.000079,0.000068,0.000184,0.000062,0.000062,0.000645,0.163066,-0.001182,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000040,0.000000,0.000000,0.000000,0.000106,0.000077,0.000067,0.000184,0.000000,0.000000,0.000635,0.161928,-0.001138,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000033,0.000000,0.000000,0.000000,0.000108,0.000076,0.000066,0.000184,0.000000,0.000000,0.000625,0.160800,-0.001129,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000033,0.000000,0.000000,0.000000,0.000109,0.000075,0.000066,0.000185,0.000000,0.000000,0.000616,0.159686,-0.001114,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000033,0.000000,0.000000,0.000000,0.000111,0.000074,0.000065,0.000185,0.000000,0.000000,0.000607,0.158587,-0.001099,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000033,0.000000,0.000000,0.000000,0.000113,0.000073,0.000064,0.000186,0.000000,0.000000,0.000598,0.157503,-0.001084,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000072,0.000063,0.000186,0.000000,0.000000,0.000589,0.156401,-0.001102,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000071,0.000062,0.000186,0.000000,0.000000,0.000581,0.155313,-0.001088,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000070,0.000061,0.000187,0.000000,0.000000,0.000572,0.154240,-0.001073,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000069,0.000061,0.000187,0.000000,0.000000,0.000564,0.153181,-0.001059,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000068,0.000060,0.000188,0.000000,0.000000,0.000556,0.152136,-0.001045,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000067,0.000059,0.000188,0.000000,0.000000,0.000549,0.151105,-0.001031,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000066,0.000058,0.000189,0.000000,0.000000,0.000541,0.150088,-0.001017,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000065,0.000057,0.000190,0.000136,0.000136,0.000533,0.148950,-0.001138,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000064,0.000056,0.000190,0.000372,0.000372,0.000526,0.147594,-0.001356,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000063,0.000055,0.000191,0.000523,0.000523,0.000518,0.146108,-0.001486,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000062,0.000054,0.000191,0.000624,0.000624,0.000510,0.144541,-0.001567,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000061,0.000053,0.000192,0.000599,0.000599,0.000501,0.143021,-0.001520,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000060,0.000052,0.000192,0.000551,0.000551,0.000493,0.141630,-0.001391,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000148,0.000000,0.000000,0.000000,0.000134,0.000059,0.000051,0.000193,0.000473,0.000473,0.000485,0.140419,-0.001211,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000058,0.000050,0.000193,0.000411,0.000411,0.000477,0.139200,-0.001218,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000137,0.000057,0.000049,0.000194,0.000349,0.000349,0.000469,0.138122,-0.001078,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000195,0.000000,0.000000,0.000000,0.000138,0.000056,0.000048,0.000194,0.000266,0.000266,0.000461,0.137208,-0.000914,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000055,0.000048,0.000195,0.000171,0.000171,0.000453,0.136332,-0.000876,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000623,0.000028,0.000051,0.000028,0.000141,0.000054,0.000047,0.000224,0.000062,0.000062,0.000446,0.136014,-0.000318,1.000000,0.000023 +122,2022-08-06 02:00:00,0.001097,0.000112,0.000180,0.000112,0.000143,0.000054,0.000047,0.000308,0.000000,0.000000,0.000440,0.136102,0.000088,1.000000,0.000091 +123,2022-08-06 03:00:00,0.000851,0.000117,0.000113,0.000117,0.000144,0.000053,0.000047,0.000314,0.000000,0.000000,0.000435,0.136013,-0.000089,1.000000,0.000087 +124,2022-08-06 04:00:00,0.000769,0.000115,0.000093,0.000115,0.000146,0.000052,0.000047,0.000314,0.000000,0.000000,0.000430,0.135864,-0.000149,1.000000,0.000064 +125,2022-08-06 05:00:00,0.000743,0.000094,0.000087,0.000094,0.000147,0.000052,0.000047,0.000293,0.000000,0.000000,0.000425,0.135696,-0.000168,1.000000,0.000058 +126,2022-08-06 06:00:00,0.000832,0.000100,0.000108,0.000100,0.000149,0.000051,0.000047,0.000300,0.000000,0.000000,0.000421,0.135599,-0.000097,1.000000,0.000066 +127,2022-08-06 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000150,0.000051,0.000046,0.000245,0.000000,0.000000,0.000417,0.134788,-0.000811,1.000000,0.000022 +128,2022-08-06 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000152,0.000050,0.000046,0.000223,0.000000,0.000000,0.000412,0.133988,-0.000800,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000050,0.000045,0.000203,0.000000,0.000000,0.000408,0.133199,-0.000789,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000049,0.000045,0.000204,0.000000,0.000000,0.000403,0.132421,-0.000779,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000048,0.000044,0.000205,0.000000,0.000000,0.000399,0.131653,-0.000768,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000048,0.000043,0.000206,0.000000,0.000000,0.000394,0.130895,-0.000758,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000047,0.000043,0.000206,0.000000,0.000000,0.000390,0.130147,-0.000748,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000042,0.000207,0.000121,0.000121,0.000385,0.129289,-0.000857,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000046,0.000041,0.000208,0.000360,0.000360,0.000380,0.128208,-0.001082,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000040,0.000209,0.000511,0.000511,0.000375,0.126992,-0.001216,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000045,0.000039,0.000210,0.000609,0.000609,0.000370,0.125695,-0.001297,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000038,0.000211,0.000680,0.000680,0.000364,0.124345,-0.001349,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000037,0.000211,0.000649,0.000649,0.000358,0.123044,-0.001301,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000043,0.000036,0.000212,0.000558,0.000558,0.000351,0.121850,-0.001194,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000042,0.000036,0.000213,0.000469,0.000469,0.000345,0.120760,-0.001090,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000035,0.000213,0.000395,0.000395,0.000339,0.119758,-0.001003,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000040,0.000034,0.000214,0.000303,0.000303,0.000332,0.118859,-0.000898,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000040,0.000033,0.000214,0.000173,0.000173,0.000326,0.118101,-0.000758,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000039,0.000033,0.000215,0.000047,0.000047,0.000320,0.117477,-0.000624,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000038,0.000033,0.000216,0.000000,0.000000,0.000315,0.116908,-0.000569,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000032,0.000217,0.000000,0.000000,0.000309,0.116346,-0.000562,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000032,0.000217,0.000000,0.000000,0.000304,0.115792,-0.000554,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000031,0.000218,0.000000,0.000000,0.000299,0.115246,-0.000547,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000031,0.000219,0.000000,0.000000,0.000294,0.114706,-0.000539,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000030,0.000220,0.000000,0.000000,0.000290,0.114174,-0.000532,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000035,0.000030,0.000221,0.000000,0.000000,0.000285,0.113649,-0.000525,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000030,0.000221,0.000000,0.000000,0.000281,0.113131,-0.000518,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000029,0.000222,0.000000,0.000000,0.000276,0.112620,-0.000511,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000029,0.000223,0.000000,0.000000,0.000272,0.112115,-0.000504,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000028,0.000224,0.000000,0.000000,0.000268,0.111618,-0.000498,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000028,0.000225,0.000000,0.000000,0.000264,0.111127,-0.000491,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000028,0.000226,0.000116,0.000116,0.000260,0.110528,-0.000599,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000027,0.000227,0.000351,0.000351,0.000256,0.109704,-0.000823,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000026,0.000227,0.000503,0.000503,0.000252,0.108743,-0.000962,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000025,0.000228,0.000605,0.000605,0.000247,0.107693,-0.001050,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000025,0.000229,0.000675,0.000675,0.000243,0.106588,-0.001104,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000024,0.000230,0.000640,0.000640,0.000238,0.105533,-0.001055,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000230,0.000543,0.000000,0.000233,0.105123,-0.000410,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000485,0.000000,0.000228,0.104719,-0.000404,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000023,0.000232,0.000410,0.000000,0.000224,0.104320,-0.000399,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000027,0.000023,0.000233,0.000304,0.000000,0.000220,0.103926,-0.000394,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000022,0.000233,0.000161,0.000000,0.000216,0.103537,-0.000389,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000014,0.000000,0.000000,0.000000,0.000208,0.000026,0.000022,0.000234,0.000015,0.000014,0.000212,0.103154,-0.000383,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000016,0.000000,0.000000,0.000000,0.000210,0.000025,0.000022,0.000235,0.000000,0.000000,0.000208,0.102791,-0.000363,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000014,0.000000,0.000000,0.000000,0.000211,0.000025,0.000021,0.000236,0.000000,0.000000,0.000205,0.102432,-0.000360,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000029,0.000000,0.000000,0.000000,0.000212,0.000024,0.000021,0.000237,0.000000,0.000000,0.000202,0.102092,-0.000340,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000085,0.000001,0.000001,0.000001,0.000213,0.000024,0.000021,0.000238,0.000000,0.000000,0.000199,0.101811,-0.000281,1.000000,0.000001 +174,2022-08-08 06:00:00,0.000014,0.000000,0.000000,0.000000,0.000215,0.000024,0.000021,0.000239,0.000000,0.000000,0.000195,0.101464,-0.000347,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000023,0.000020,0.000240,0.000000,0.000000,0.000193,0.101108,-0.000356,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000023,0.000020,0.000240,0.000000,0.000000,0.000190,0.100757,-0.000351,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000020,0.000241,0.000000,0.000000,0.000187,0.100411,-0.000346,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000020,0.000242,0.000000,0.000000,0.000184,0.100069,-0.000342,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000019,0.000243,0.000000,0.000000,0.000181,0.099732,-0.000337,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000244,0.000000,0.000000,0.000179,0.099400,-0.000333,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000019,0.000245,0.000000,0.000000,0.000176,0.099071,-0.000328,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000019,0.000245,0.000101,0.000000,0.000174,0.098748,-0.000324,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000018,0.000246,0.000343,0.000000,0.000171,0.098428,-0.000320,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000018,0.000247,0.000499,0.000000,0.000169,0.098113,-0.000315,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000018,0.000248,0.000599,0.000000,0.000166,0.097802,-0.000311,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000018,0.000249,0.000680,0.000000,0.000164,0.097495,-0.000307,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000017,0.000250,0.000638,0.000000,0.000162,0.097192,-0.000303,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000251,0.000544,0.000000,0.000160,0.096893,-0.000299,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000017,0.000252,0.000491,0.000000,0.000157,0.096598,-0.000295,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000017,0.000253,0.000415,0.000000,0.000155,0.096308,-0.000291,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000016,0.000253,0.000316,0.000000,0.000153,0.096021,-0.000287,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000254,0.000181,0.000000,0.000151,0.095737,-0.000283,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000255,0.000038,0.000000,0.000149,0.095458,-0.000279,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000018,0.000016,0.000256,0.000000,0.000000,0.000147,0.095182,-0.000276,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000257,0.000000,0.000000,0.000145,0.094910,-0.000272,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000258,0.000000,0.000000,0.000143,0.094642,-0.000268,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000259,0.000000,0.000000,0.000141,0.094377,-0.000265,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000259,0.000000,0.000000,0.000139,0.094116,-0.000261,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000017,0.000015,0.000260,0.000000,0.000000,0.000137,0.093858,-0.000258,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000015,0.000261,0.000000,0.000000,0.000135,0.093604,-0.000254,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000134,0.093353,-0.000251,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000263,0.000000,0.000000,0.000132,0.093105,-0.000248,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000264,0.000000,0.000000,0.000130,0.092861,-0.000244,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000016,0.000014,0.000265,0.000000,0.000000,0.000128,0.092620,-0.000241,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000014,0.000265,0.000000,0.000000,0.000127,0.092382,-0.000238,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000013,0.000266,0.000114,0.000000,0.000125,0.092147,-0.000235,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619304.csv b/test/channel_loss/channel_forcing/et/cat-2619304.csv new file mode 100644 index 000000000..ece0aca20 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619304.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001478,0.000414,0.001480,0.000177,0.000177,0.010532,0.428924,-0.004738,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000030,0.000001,0.000000,0.000001,0.000000,0.001330,0.000408,0.001331,0.000051,0.000051,0.009610,0.424098,-0.004826,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000030,0.000001,0.000000,0.000001,0.000000,0.001205,0.000402,0.001205,0.000000,0.000000,0.008808,0.419390,-0.004708,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001097,0.000397,0.001098,0.000000,0.000000,0.008107,0.414748,-0.004642,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001005,0.000391,0.001006,0.000000,0.000000,0.007493,0.410170,-0.004577,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.000926,0.000386,0.000926,0.000000,0.000000,0.006953,0.405657,-0.004514,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000030,0.000000,0.000000,0.000000,0.000001,0.000856,0.000380,0.000857,0.000000,0.000000,0.006477,0.401206,-0.004450,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000796,0.000375,0.000797,0.000000,0.000000,0.006056,0.396788,-0.004418,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000743,0.000370,0.000744,0.000000,0.000000,0.005682,0.392432,-0.004356,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000696,0.000365,0.000698,0.000000,0.000000,0.005351,0.388137,-0.004295,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000655,0.000359,0.000657,0.000000,0.000000,0.005055,0.383902,-0.004235,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000618,0.000354,0.000621,0.000000,0.000000,0.004791,0.379725,-0.004176,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000586,0.000349,0.000588,0.000000,0.000000,0.004555,0.375607,-0.004118,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000557,0.000345,0.000560,0.000000,0.000000,0.004342,0.371547,-0.004060,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000531,0.000340,0.000534,0.000130,0.000130,0.004151,0.367415,-0.004132,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000508,0.000334,0.000511,0.000363,0.000363,0.003978,0.363112,-0.004304,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000486,0.000329,0.000491,0.000509,0.000509,0.003820,0.358724,-0.004388,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000467,0.000324,0.000472,0.000604,0.000604,0.003677,0.354303,-0.004421,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000450,0.000319,0.000455,0.000555,0.000555,0.003546,0.349993,-0.004310,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000204,0.000000,0.000000,0.000000,0.000006,0.000434,0.000314,0.000440,0.000512,0.000512,0.003426,0.345987,-0.004006,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000207,0.000000,0.000000,0.000000,0.000007,0.000419,0.000309,0.000426,0.000442,0.000442,0.003316,0.342108,-0.003879,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000257,0.000000,0.000000,0.000000,0.000007,0.000406,0.000305,0.000413,0.000357,0.000357,0.003215,0.338418,-0.003691,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000205,0.000000,0.000000,0.000000,0.000008,0.000394,0.000300,0.000402,0.000306,0.000306,0.003121,0.334777,-0.003641,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000259,0.000000,0.000000,0.000000,0.000009,0.000382,0.000296,0.000391,0.000239,0.000239,0.003035,0.331306,-0.003471,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000207,0.000000,0.000001,0.000000,0.000010,0.000372,0.000292,0.000382,0.000143,0.000143,0.002956,0.327926,-0.003380,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000747,0.000038,0.000068,0.000038,0.000010,0.000362,0.000289,0.000410,0.000060,0.000060,0.002882,0.325141,-0.002784,1.000000,0.000031 +26,2022-08-02 02:00:00,0.000871,0.000076,0.000107,0.000076,0.000011,0.000353,0.000286,0.000440,0.000000,0.000000,0.002815,0.322540,-0.002602,1.000000,0.000062 +27,2022-08-02 03:00:00,0.000864,0.000098,0.000105,0.000098,0.000012,0.000345,0.000283,0.000455,0.000000,0.000000,0.002752,0.319970,-0.002570,1.000000,0.000068 +28,2022-08-02 04:00:00,0.000900,0.000109,0.000112,0.000109,0.000013,0.000338,0.000280,0.000460,0.000000,0.000000,0.002694,0.317463,-0.002507,1.000000,0.000071 +29,2022-08-02 05:00:00,0.000885,0.000109,0.000108,0.000109,0.000014,0.000331,0.000277,0.000453,0.000000,0.000000,0.002640,0.314981,-0.002482,1.000000,0.000071 +30,2022-08-02 06:00:00,0.000821,0.000101,0.000094,0.000101,0.000015,0.000324,0.000274,0.000440,0.000000,0.000000,0.002589,0.312484,-0.002497,1.000000,0.000064 +31,2022-08-02 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000015,0.000318,0.000270,0.000378,0.000000,0.000000,0.002541,0.309305,-0.003179,1.000000,0.000019 +32,2022-08-02 08:00:00,0.000000,0.000019,0.000000,0.000019,0.000016,0.000312,0.000266,0.000347,0.000000,0.000000,0.002495,0.306171,-0.003134,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000306,0.000262,0.000324,0.000000,0.000000,0.002451,0.303080,-0.003091,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000301,0.000259,0.000319,0.000000,0.000000,0.002409,0.300033,-0.003048,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000296,0.000255,0.000315,0.000000,0.000000,0.002369,0.297028,-0.003005,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000291,0.000251,0.000311,0.000000,0.000000,0.002329,0.294065,-0.002963,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000021,0.000000,0.000000,0.000000,0.000021,0.000286,0.000248,0.000307,0.000000,0.000000,0.002292,0.291164,-0.002901,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000020,0.000000,0.000000,0.000000,0.000022,0.000281,0.000244,0.000303,0.000106,0.000106,0.002255,0.288198,-0.002966,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000015,0.000000,0.000000,0.000000,0.000023,0.000276,0.000241,0.000300,0.000323,0.000323,0.002219,0.285055,-0.003143,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000015,0.000000,0.000000,0.000000,0.000024,0.000272,0.000237,0.000296,0.000452,0.000452,0.002184,0.281829,-0.003226,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000015,0.000000,0.000000,0.000000,0.000025,0.000267,0.000233,0.000293,0.000539,0.000539,0.002150,0.278562,-0.003267,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000223,0.000000,0.000000,0.000000,0.000027,0.000263,0.000229,0.000290,0.000624,0.000624,0.002116,0.275461,-0.003101,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000259,0.000225,0.000286,0.000586,0.000586,0.002082,0.272222,-0.003240,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000255,0.000221,0.000283,0.000499,0.000499,0.002049,0.269113,-0.003108,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000250,0.000218,0.000280,0.000470,0.000470,0.002016,0.266077,-0.003037,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000246,0.000214,0.000277,0.000398,0.000398,0.001984,0.263153,-0.002924,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000242,0.000211,0.000275,0.000303,0.000303,0.001953,0.260365,-0.002788,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000238,0.000208,0.000272,0.000178,0.000178,0.001922,0.257739,-0.002626,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000235,0.000205,0.000269,0.000035,0.000035,0.001893,0.255289,-0.002449,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000231,0.000202,0.000267,0.000000,0.000000,0.001864,0.252909,-0.002380,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000227,0.000199,0.000265,0.000000,0.000000,0.001835,0.250562,-0.002347,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000224,0.000196,0.000262,0.000000,0.000000,0.001808,0.248248,-0.002314,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000220,0.000194,0.000260,0.000000,0.000000,0.001781,0.245967,-0.002282,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000217,0.000191,0.000258,0.000000,0.000000,0.001755,0.243717,-0.002250,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000214,0.000188,0.000256,0.000000,0.000000,0.001729,0.241498,-0.002218,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000211,0.000186,0.000254,0.000000,0.000000,0.001704,0.239311,-0.002187,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000208,0.000183,0.000252,0.000000,0.000000,0.001680,0.237154,-0.002157,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000205,0.000180,0.000251,0.000000,0.000000,0.001656,0.235027,-0.002127,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000202,0.000178,0.000249,0.000000,0.000000,0.001632,0.232930,-0.002097,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000199,0.000175,0.000247,0.000000,0.000000,0.001609,0.230862,-0.002068,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000196,0.000173,0.000246,0.000000,0.000000,0.001586,0.228823,-0.002039,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000193,0.000170,0.000244,0.000126,0.000126,0.001563,0.226688,-0.002135,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000190,0.000168,0.000243,0.000367,0.000367,0.001541,0.224346,-0.002343,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000187,0.000165,0.000241,0.000513,0.000513,0.001518,0.221892,-0.002454,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000184,0.000162,0.000240,0.000608,0.000608,0.001496,0.219378,-0.002514,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000182,0.000159,0.000238,0.000620,0.000620,0.001473,0.216889,-0.002490,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000179,0.000156,0.000237,0.000584,0.000584,0.001450,0.214469,-0.002420,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000572,0.000000,0.000001,0.000000,0.000060,0.000176,0.000154,0.000236,0.000497,0.000497,0.001428,0.212732,-0.001737,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000204,0.000000,0.000000,0.000000,0.000061,0.000173,0.000151,0.000234,0.000461,0.000461,0.001406,0.210692,-0.002039,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000170,0.000149,0.000233,0.000388,0.000388,0.001384,0.208552,-0.002140,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000168,0.000146,0.000231,0.000300,0.000300,0.001363,0.206530,-0.002023,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000165,0.000144,0.000230,0.000169,0.000169,0.001342,0.204663,-0.001866,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000162,0.000142,0.000229,0.000047,0.000047,0.001321,0.202944,-0.001719,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000160,0.000140,0.000228,0.000000,0.000000,0.001301,0.201295,-0.001649,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000158,0.000138,0.000227,0.000000,0.000000,0.001281,0.199669,-0.001626,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000155,0.000136,0.000226,0.000000,0.000000,0.001262,0.198066,-0.001603,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000153,0.000134,0.000225,0.000000,0.000000,0.001244,0.196485,-0.001581,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000151,0.000132,0.000224,0.000000,0.000000,0.001225,0.194926,-0.001559,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000148,0.000130,0.000223,0.000000,0.000000,0.001208,0.193389,-0.001537,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000146,0.000129,0.000223,0.000000,0.000000,0.001190,0.191873,-0.001516,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000144,0.000127,0.000222,0.000000,0.000000,0.001173,0.190379,-0.001494,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000142,0.000125,0.000221,0.000000,0.000000,0.001156,0.188905,-0.001474,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000140,0.000123,0.000221,0.000000,0.000000,0.001140,0.187452,-0.001453,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000138,0.000122,0.000220,0.000000,0.000000,0.001123,0.186019,-0.001433,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000136,0.000120,0.000220,0.000000,0.000000,0.001107,0.184607,-0.001413,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000134,0.000118,0.000219,0.000126,0.000126,0.001092,0.183089,-0.001518,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000132,0.000116,0.000219,0.000371,0.000371,0.001076,0.181352,-0.001737,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000130,0.000114,0.000218,0.000519,0.000519,0.001060,0.179492,-0.001859,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000128,0.000111,0.000218,0.000616,0.000616,0.001043,0.177564,-0.001929,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000126,0.000109,0.000217,0.000684,0.000684,0.001026,0.175595,-0.001969,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000124,0.000107,0.000216,0.000649,0.000649,0.001010,0.173688,-0.001907,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000122,0.000105,0.000216,0.000558,0.000558,0.000993,0.171898,-0.001791,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000119,0.000103,0.000215,0.000464,0.000464,0.000976,0.170224,-0.001673,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000117,0.000101,0.000214,0.000398,0.000398,0.000959,0.168640,-0.001585,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000115,0.000099,0.000214,0.000305,0.000305,0.000943,0.167168,-0.001471,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000113,0.000097,0.000213,0.000187,0.000187,0.000927,0.165835,-0.001334,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000111,0.000096,0.000213,0.000060,0.000060,0.000911,0.164644,-0.001190,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000110,0.000095,0.000213,0.000000,0.000000,0.000896,0.163530,-0.001114,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000108,0.000093,0.000212,0.000000,0.000000,0.000882,0.162431,-0.001099,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000106,0.000092,0.000212,0.000000,0.000000,0.000867,0.161348,-0.001083,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000104,0.000091,0.000212,0.000000,0.000000,0.000854,0.160280,-0.001068,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000103,0.000089,0.000212,0.000000,0.000000,0.000840,0.159227,-0.001053,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000101,0.000088,0.000211,0.000000,0.000000,0.000827,0.158188,-0.001039,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000100,0.000087,0.000211,0.000000,0.000000,0.000815,0.157164,-0.001024,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000098,0.000086,0.000211,0.000000,0.000000,0.000802,0.156154,-0.001010,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000097,0.000084,0.000211,0.000000,0.000000,0.000790,0.155159,-0.000996,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000095,0.000083,0.000211,0.000000,0.000000,0.000779,0.154177,-0.000982,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000094,0.000082,0.000211,0.000000,0.000000,0.000767,0.153209,-0.000968,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000092,0.000081,0.000211,0.000000,0.000000,0.000756,0.152254,-0.000955,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000091,0.000080,0.000211,0.000135,0.000135,0.000745,0.151180,-0.001074,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000089,0.000078,0.000212,0.000367,0.000367,0.000733,0.149892,-0.001288,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000088,0.000076,0.000212,0.000515,0.000515,0.000722,0.148476,-0.001416,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000087,0.000075,0.000212,0.000615,0.000615,0.000710,0.146981,-0.001495,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000085,0.000073,0.000211,0.000593,0.000593,0.000698,0.145529,-0.001452,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000095,0.000000,0.000000,0.000000,0.000128,0.000084,0.000071,0.000211,0.000544,0.000544,0.000685,0.144240,-0.001290,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000095,0.000000,0.000000,0.000000,0.000129,0.000082,0.000070,0.000211,0.000466,0.000466,0.000673,0.143045,-0.001195,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000109,0.000000,0.000000,0.000000,0.000131,0.000081,0.000069,0.000211,0.000407,0.000407,0.000661,0.141938,-0.001107,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000132,0.000079,0.000067,0.000211,0.000347,0.000347,0.000650,0.140923,-0.001014,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000192,0.000000,0.000000,0.000000,0.000134,0.000078,0.000066,0.000211,0.000268,0.000268,0.000638,0.140065,-0.000858,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000135,0.000076,0.000065,0.000211,0.000170,0.000170,0.000627,0.139251,-0.000814,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000793,0.000032,0.000059,0.000032,0.000136,0.000075,0.000065,0.000244,0.000061,0.000061,0.000617,0.139156,-0.000096,1.000000,0.000026 +122,2022-08-06 02:00:00,0.001248,0.000104,0.000162,0.000104,0.000138,0.000074,0.000066,0.000316,0.000000,0.000000,0.000609,0.139469,0.000313,1.000000,0.000084 +123,2022-08-06 03:00:00,0.000967,0.000107,0.000100,0.000107,0.000139,0.000073,0.000066,0.000320,0.000000,0.000000,0.000601,0.139561,0.000092,1.000000,0.000077 +124,2022-08-06 04:00:00,0.000834,0.000099,0.000075,0.000099,0.000141,0.000072,0.000066,0.000312,0.000000,0.000000,0.000594,0.139545,-0.000016,1.000000,0.000054 +125,2022-08-06 05:00:00,0.000826,0.000080,0.000074,0.000080,0.000142,0.000072,0.000066,0.000293,0.000000,0.000000,0.000589,0.139523,-0.000022,1.000000,0.000048 +126,2022-08-06 06:00:00,0.000905,0.000082,0.000088,0.000082,0.000144,0.000071,0.000066,0.000297,0.000000,0.000000,0.000583,0.139565,0.000042,1.000000,0.000054 +127,2022-08-06 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000145,0.000070,0.000065,0.000252,0.000000,0.000000,0.000578,0.138801,-0.000764,1.000000,0.000018 +128,2022-08-06 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000146,0.000070,0.000064,0.000234,0.000000,0.000000,0.000572,0.138048,-0.000753,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000069,0.000063,0.000217,0.000000,0.000000,0.000566,0.137305,-0.000743,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000068,0.000062,0.000217,0.000000,0.000000,0.000560,0.136572,-0.000732,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000067,0.000061,0.000218,0.000000,0.000000,0.000554,0.135850,-0.000722,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000067,0.000060,0.000219,0.000000,0.000000,0.000548,0.135138,-0.000712,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000066,0.000060,0.000219,0.000000,0.000000,0.000541,0.134436,-0.000702,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000065,0.000059,0.000220,0.000119,0.000119,0.000535,0.133627,-0.000809,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000064,0.000057,0.000220,0.000352,0.000352,0.000528,0.132598,-0.001028,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000063,0.000056,0.000221,0.000500,0.000500,0.000521,0.131438,-0.001160,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000062,0.000054,0.000221,0.000595,0.000595,0.000513,0.130201,-0.001237,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000053,0.000222,0.000666,0.000666,0.000504,0.128912,-0.001290,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000060,0.000051,0.000222,0.000631,0.000631,0.000496,0.127674,-0.001238,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000059,0.000050,0.000222,0.000545,0.000545,0.000487,0.126539,-0.001135,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000058,0.000049,0.000222,0.000471,0.000471,0.000477,0.125493,-0.001046,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000057,0.000048,0.000223,0.000397,0.000397,0.000468,0.124533,-0.000959,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000056,0.000047,0.000223,0.000304,0.000304,0.000459,0.123679,-0.000854,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000055,0.000046,0.000223,0.000173,0.000173,0.000450,0.122967,-0.000713,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000045,0.000223,0.000046,0.000046,0.000441,0.122389,-0.000577,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000053,0.000044,0.000224,0.000000,0.000000,0.000433,0.121865,-0.000524,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000052,0.000044,0.000224,0.000000,0.000000,0.000425,0.121348,-0.000517,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000051,0.000043,0.000224,0.000000,0.000000,0.000418,0.120839,-0.000510,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000050,0.000043,0.000225,0.000000,0.000000,0.000411,0.120336,-0.000502,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000225,0.000000,0.000000,0.000404,0.119841,-0.000495,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000048,0.000041,0.000226,0.000000,0.000000,0.000397,0.119352,-0.000489,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000047,0.000041,0.000226,0.000000,0.000000,0.000390,0.118871,-0.000482,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000047,0.000040,0.000227,0.000000,0.000000,0.000384,0.118396,-0.000475,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000046,0.000040,0.000227,0.000000,0.000000,0.000378,0.117927,-0.000468,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000039,0.000228,0.000000,0.000000,0.000372,0.117466,-0.000462,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000039,0.000228,0.000000,0.000000,0.000366,0.117010,-0.000455,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000044,0.000038,0.000229,0.000000,0.000000,0.000360,0.116561,-0.000449,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000037,0.000230,0.000114,0.000114,0.000355,0.116006,-0.000555,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000042,0.000037,0.000230,0.000344,0.000344,0.000349,0.115232,-0.000774,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000042,0.000035,0.000231,0.000491,0.000491,0.000343,0.114323,-0.000909,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000041,0.000034,0.000231,0.000592,0.000592,0.000336,0.113329,-0.000995,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000040,0.000033,0.000231,0.000657,0.000657,0.000329,0.112283,-0.001046,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000039,0.000032,0.000232,0.000619,0.000619,0.000322,0.111289,-0.000993,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000038,0.000031,0.000232,0.000531,0.000531,0.000314,0.110397,-0.000893,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000037,0.000030,0.000232,0.000481,0.000481,0.000307,0.109566,-0.000831,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000036,0.000029,0.000233,0.000409,0.000409,0.000299,0.108817,-0.000748,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000035,0.000028,0.000233,0.000308,0.000308,0.000292,0.108179,-0.000638,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000035,0.000027,0.000233,0.000158,0.000158,0.000285,0.107698,-0.000481,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000034,0.000027,0.000234,0.000014,0.000014,0.000278,0.107365,-0.000333,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000033,0.000027,0.000234,0.000000,0.000000,0.000272,0.107050,-0.000314,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000026,0.000235,0.000000,0.000000,0.000266,0.106740,-0.000310,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000032,0.000026,0.000235,0.000000,0.000000,0.000260,0.106435,-0.000306,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000031,0.000026,0.000236,0.000000,0.000000,0.000255,0.106134,-0.000301,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000030,0.000025,0.000236,0.000000,0.000000,0.000250,0.105836,-0.000297,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000030,0.000025,0.000237,0.000000,0.000000,0.000245,0.105544,-0.000293,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000029,0.000025,0.000237,0.000000,0.000000,0.000240,0.105255,-0.000289,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000029,0.000024,0.000238,0.000000,0.000000,0.000236,0.104970,-0.000285,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000028,0.000024,0.000239,0.000000,0.000000,0.000232,0.104689,-0.000281,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000028,0.000023,0.000239,0.000000,0.000000,0.000228,0.104412,-0.000277,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000027,0.000023,0.000240,0.000000,0.000000,0.000224,0.104139,-0.000273,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000027,0.000023,0.000241,0.000000,0.000000,0.000220,0.103870,-0.000269,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000026,0.000022,0.000241,0.000100,0.000100,0.000216,0.103506,-0.000364,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000026,0.000022,0.000242,0.000337,0.000337,0.000212,0.102913,-0.000593,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000025,0.000021,0.000242,0.000488,0.000488,0.000208,0.102179,-0.000734,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000025,0.000020,0.000243,0.000583,0.000583,0.000203,0.101362,-0.000817,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000024,0.000019,0.000243,0.000663,0.000663,0.000198,0.100478,-0.000884,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000018,0.000244,0.000620,0.000620,0.000192,0.099648,-0.000830,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000017,0.000244,0.000525,0.000525,0.000187,0.098924,-0.000724,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000016,0.000245,0.000483,0.000483,0.000181,0.098251,-0.000673,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000015,0.000245,0.000410,0.000410,0.000175,0.097660,-0.000592,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000020,0.000015,0.000245,0.000314,0.000314,0.000169,0.097171,-0.000489,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000014,0.000246,0.000178,0.000178,0.000164,0.096823,-0.000348,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000014,0.000246,0.000037,0.000037,0.000159,0.096620,-0.000203,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000014,0.000247,0.000000,0.000000,0.000154,0.096456,-0.000164,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000014,0.000247,0.000000,0.000000,0.000150,0.096294,-0.000162,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000014,0.000248,0.000000,0.000000,0.000146,0.096134,-0.000160,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000013,0.000248,0.000000,0.000000,0.000142,0.095977,-0.000157,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000013,0.000249,0.000000,0.000000,0.000138,0.095822,-0.000155,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000013,0.000249,0.000000,0.000000,0.000135,0.095669,-0.000153,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000013,0.000250,0.000000,0.000000,0.000132,0.095518,-0.000151,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000013,0.000251,0.000000,0.000000,0.000129,0.095369,-0.000149,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000012,0.000251,0.000000,0.000000,0.000126,0.095222,-0.000147,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000012,0.000252,0.000000,0.000000,0.000123,0.095077,-0.000145,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000012,0.000252,0.000000,0.000000,0.000121,0.094935,-0.000143,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000000,0.000000,0.000118,0.094794,-0.000141,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000111,0.000111,0.000116,0.094546,-0.000248,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619305.csv b/test/channel_loss/channel_forcing/et/cat-2619305.csv new file mode 100644 index 000000000..abf2f19a9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619305.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000006,0.000003,0.000000,0.001457,0.000267,0.001460,0.000180,0.000180,0.010406,0.428950,-0.004712,1.000000,0.000003 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001293,0.000263,0.001294,0.000053,0.000053,0.009376,0.424119,-0.004830,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001154,0.000260,0.001156,0.000000,0.000000,0.008481,0.419405,-0.004714,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001036,0.000256,0.001036,0.000000,0.000000,0.007701,0.414753,-0.004652,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000935,0.000253,0.000935,0.000000,0.000000,0.007018,0.410162,-0.004590,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000848,0.000249,0.000849,0.000000,0.000000,0.006420,0.405633,-0.004530,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000773,0.000246,0.000773,0.000000,0.000000,0.005893,0.401163,-0.004470,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000707,0.000243,0.000708,0.000000,0.000000,0.005429,0.396752,-0.004411,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000650,0.000240,0.000651,0.000000,0.000000,0.005019,0.392400,-0.004352,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000600,0.000236,0.000601,0.000000,0.000000,0.004655,0.388106,-0.004295,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000556,0.000233,0.000557,0.000000,0.000000,0.004333,0.383868,-0.004238,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000517,0.000230,0.000519,0.000000,0.000000,0.004046,0.379687,-0.004182,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000483,0.000227,0.000485,0.000000,0.000000,0.003791,0.375560,-0.004126,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000452,0.000224,0.000455,0.000000,0.000000,0.003563,0.371489,-0.004072,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000425,0.000221,0.000428,0.000133,0.000133,0.003359,0.367340,-0.004149,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000401,0.000218,0.000405,0.000373,0.000373,0.003176,0.363009,-0.004330,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000379,0.000215,0.000384,0.000522,0.000522,0.003012,0.358589,-0.004421,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000360,0.000211,0.000365,0.000618,0.000618,0.002863,0.354133,-0.004456,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000342,0.000208,0.000348,0.000566,0.000566,0.002729,0.349787,-0.004346,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000205,0.000000,0.000000,0.000000,0.000006,0.000326,0.000205,0.000333,0.000521,0.000521,0.002608,0.345744,-0.004042,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000213,0.000000,0.000000,0.000000,0.000007,0.000312,0.000202,0.000319,0.000458,0.000458,0.002498,0.341827,-0.003918,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000358,0.000000,0.000000,0.000000,0.000008,0.000299,0.000200,0.000307,0.000368,0.000368,0.002398,0.338192,-0.003634,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000315,0.000000,0.000000,0.000000,0.000008,0.000288,0.000197,0.000296,0.000318,0.000318,0.002307,0.334613,-0.003579,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000407,0.000004,0.000007,0.000004,0.000009,0.000277,0.000194,0.000290,0.000245,0.000245,0.002225,0.331237,-0.003376,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000335,0.000006,0.000009,0.000006,0.000010,0.000267,0.000192,0.000284,0.000149,0.000149,0.002149,0.327928,-0.003309,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000903,0.000085,0.000149,0.000085,0.000011,0.000259,0.000190,0.000354,0.000062,0.000062,0.002080,0.325170,-0.002758,1.000000,0.000069 +26,2022-08-02 02:00:00,0.000913,0.000133,0.000172,0.000133,0.000011,0.000251,0.000188,0.000396,0.000000,0.000000,0.002018,0.322497,-0.002673,1.000000,0.000107 +27,2022-08-02 03:00:00,0.000904,0.000165,0.000168,0.000165,0.000012,0.000243,0.000186,0.000421,0.000000,0.000000,0.001961,0.319854,-0.002643,1.000000,0.000110 +28,2022-08-02 04:00:00,0.000915,0.000171,0.000171,0.000171,0.000013,0.000237,0.000184,0.000420,0.000000,0.000000,0.001908,0.317254,-0.002600,1.000000,0.000111 +29,2022-08-02 05:00:00,0.000914,0.000170,0.000170,0.000170,0.000014,0.000230,0.000182,0.000415,0.000000,0.000000,0.001860,0.314689,-0.002565,1.000000,0.000111 +30,2022-08-02 06:00:00,0.000834,0.000156,0.000144,0.000156,0.000015,0.000225,0.000180,0.000396,0.000000,0.000000,0.001815,0.312105,-0.002584,1.000000,0.000099 +31,2022-08-02 07:00:00,0.000000,0.000070,0.000000,0.000070,0.000016,0.000220,0.000178,0.000305,0.000000,0.000000,0.001774,0.308873,-0.003231,1.000000,0.000029 +32,2022-08-02 08:00:00,0.000000,0.000029,0.000000,0.000029,0.000017,0.000215,0.000176,0.000260,0.000000,0.000000,0.001735,0.305685,-0.003189,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000210,0.000173,0.000228,0.000000,0.000000,0.001698,0.302539,-0.003146,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000206,0.000171,0.000224,0.000000,0.000000,0.001663,0.299434,-0.003105,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000201,0.000169,0.000221,0.000000,0.000000,0.001631,0.296370,-0.003064,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000198,0.000166,0.000218,0.000000,0.000000,0.001599,0.293347,-0.003023,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000031,0.000000,0.000000,0.000000,0.000022,0.000194,0.000164,0.000216,0.000000,0.000000,0.001570,0.290395,-0.002953,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000049,0.000000,0.000000,0.000000,0.000023,0.000190,0.000162,0.000213,0.000110,0.000110,0.001542,0.287391,-0.003004,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000020,0.000000,0.000000,0.000000,0.000024,0.000187,0.000160,0.000211,0.000334,0.000334,0.001515,0.284176,-0.003215,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000020,0.000000,0.000000,0.000000,0.000025,0.000183,0.000157,0.000209,0.000462,0.000462,0.001488,0.280878,-0.003298,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000020,0.000000,0.000000,0.000000,0.000026,0.000180,0.000155,0.000207,0.000552,0.000552,0.001463,0.277534,-0.003343,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000198,0.000000,0.000000,0.000000,0.000028,0.000177,0.000152,0.000205,0.000638,0.000638,0.001438,0.274326,-0.003208,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000174,0.000150,0.000203,0.000598,0.000598,0.001414,0.271005,-0.003321,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000171,0.000148,0.000201,0.000516,0.000516,0.001390,0.267809,-0.003196,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000168,0.000145,0.000199,0.000493,0.000493,0.001367,0.264678,-0.003131,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000165,0.000143,0.000198,0.000416,0.000416,0.001345,0.261664,-0.003014,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000163,0.000141,0.000196,0.000315,0.000315,0.001323,0.258790,-0.002874,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000160,0.000139,0.000195,0.000183,0.000183,0.001302,0.256084,-0.002706,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000158,0.000137,0.000194,0.000036,0.000036,0.001281,0.253558,-0.002526,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000155,0.000135,0.000192,0.000000,0.000000,0.001261,0.251102,-0.002456,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000153,0.000133,0.000191,0.000000,0.000000,0.001242,0.248678,-0.002424,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000150,0.000132,0.000190,0.000000,0.000000,0.001224,0.246287,-0.002392,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000148,0.000130,0.000189,0.000000,0.000000,0.001206,0.243927,-0.002360,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000146,0.000128,0.000188,0.000000,0.000000,0.001188,0.241598,-0.002329,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000144,0.000127,0.000187,0.000000,0.000000,0.001171,0.239300,-0.002298,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000142,0.000125,0.000187,0.000000,0.000000,0.001154,0.237033,-0.002267,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000140,0.000123,0.000186,0.000000,0.000000,0.001138,0.234795,-0.002237,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000138,0.000122,0.000185,0.000000,0.000000,0.001121,0.232588,-0.002208,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000136,0.000120,0.000185,0.000000,0.000000,0.001106,0.230409,-0.002179,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000134,0.000118,0.000184,0.000000,0.000000,0.001090,0.228259,-0.002150,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000132,0.000117,0.000184,0.000000,0.000000,0.001075,0.226138,-0.002121,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000130,0.000115,0.000183,0.000129,0.000129,0.001061,0.223918,-0.002221,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000128,0.000113,0.000183,0.000378,0.000378,0.001046,0.221481,-0.002437,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000126,0.000111,0.000183,0.000526,0.000526,0.001031,0.218931,-0.002550,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000124,0.000110,0.000182,0.000627,0.000627,0.001016,0.216314,-0.002617,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000123,0.000108,0.000182,0.000634,0.000634,0.001001,0.213726,-0.002588,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000121,0.000106,0.000181,0.000597,0.000597,0.000986,0.211207,-0.002518,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000501,0.000000,0.000000,0.000000,0.000062,0.000119,0.000104,0.000181,0.000508,0.000508,0.000971,0.209305,-0.001903,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000261,0.000000,0.000000,0.000000,0.000063,0.000117,0.000103,0.000181,0.000476,0.000476,0.000957,0.207223,-0.002082,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000115,0.000101,0.000180,0.000401,0.000401,0.000943,0.204984,-0.002239,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000114,0.000100,0.000180,0.000305,0.000305,0.000929,0.202870,-0.002114,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000112,0.000098,0.000180,0.000174,0.000174,0.000915,0.200913,-0.001957,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000110,0.000097,0.000180,0.000048,0.000048,0.000902,0.199106,-0.001807,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000109,0.000096,0.000180,0.000000,0.000000,0.000889,0.197371,-0.001735,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000107,0.000094,0.000179,0.000000,0.000000,0.000876,0.195659,-0.001712,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000106,0.000093,0.000179,0.000000,0.000000,0.000863,0.193969,-0.001690,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000104,0.000092,0.000179,0.000000,0.000000,0.000851,0.192302,-0.001667,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000103,0.000091,0.000179,0.000000,0.000000,0.000839,0.190657,-0.001645,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000101,0.000089,0.000180,0.000000,0.000000,0.000827,0.189034,-0.001623,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000100,0.000088,0.000180,0.000000,0.000000,0.000816,0.187432,-0.001602,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000098,0.000087,0.000180,0.000000,0.000000,0.000805,0.185851,-0.001581,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000097,0.000086,0.000180,0.000000,0.000000,0.000794,0.184291,-0.001560,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000096,0.000085,0.000180,0.000000,0.000000,0.000783,0.182752,-0.001539,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000094,0.000084,0.000180,0.000000,0.000000,0.000772,0.181234,-0.001519,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000093,0.000083,0.000181,0.000000,0.000000,0.000762,0.179735,-0.001499,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000092,0.000081,0.000181,0.000126,0.000126,0.000751,0.178132,-0.001603,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000090,0.000080,0.000181,0.000378,0.000378,0.000741,0.176301,-0.001831,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000089,0.000079,0.000181,0.000530,0.000530,0.000730,0.174345,-0.001956,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000088,0.000077,0.000182,0.000630,0.000630,0.000719,0.172316,-0.002029,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000086,0.000075,0.000182,0.000704,0.000704,0.000709,0.170241,-0.002075,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000085,0.000074,0.000182,0.000663,0.000663,0.000697,0.168233,-0.002007,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000084,0.000073,0.000182,0.000571,0.000571,0.000686,0.166344,-0.001889,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000082,0.000071,0.000182,0.000484,0.000484,0.000675,0.164564,-0.001779,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000081,0.000070,0.000183,0.000414,0.000414,0.000664,0.162878,-0.001686,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000080,0.000069,0.000183,0.000319,0.000319,0.000654,0.161307,-0.001571,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000078,0.000068,0.000183,0.000190,0.000190,0.000643,0.159885,-0.001423,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000077,0.000067,0.000183,0.000060,0.000060,0.000633,0.158610,-0.001275,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000076,0.000066,0.000184,0.000000,0.000000,0.000623,0.157411,-0.001199,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000075,0.000065,0.000184,0.000000,0.000000,0.000613,0.156228,-0.001183,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000074,0.000064,0.000184,0.000000,0.000000,0.000604,0.155060,-0.001167,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000072,0.000063,0.000185,0.000000,0.000000,0.000595,0.153908,-0.001152,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000071,0.000063,0.000185,0.000000,0.000000,0.000586,0.152771,-0.001137,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000070,0.000062,0.000186,0.000000,0.000000,0.000578,0.151650,-0.001122,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000069,0.000061,0.000186,0.000000,0.000000,0.000569,0.150543,-0.001107,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000068,0.000060,0.000187,0.000000,0.000000,0.000561,0.149451,-0.001092,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000067,0.000059,0.000188,0.000000,0.000000,0.000553,0.148373,-0.001078,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000066,0.000059,0.000188,0.000000,0.000000,0.000545,0.147309,-0.001063,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000065,0.000058,0.000189,0.000000,0.000000,0.000538,0.146260,-0.001049,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000065,0.000057,0.000189,0.000000,0.000000,0.000530,0.145224,-0.001036,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000064,0.000056,0.000190,0.000137,0.000137,0.000523,0.144068,-0.001157,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000063,0.000055,0.000191,0.000377,0.000377,0.000515,0.142689,-0.001379,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000062,0.000054,0.000191,0.000529,0.000529,0.000507,0.141179,-0.001510,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000061,0.000053,0.000192,0.000635,0.000635,0.000500,0.139584,-0.001595,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000060,0.000052,0.000192,0.000608,0.000608,0.000491,0.138037,-0.001547,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000122,0.000000,0.000000,0.000000,0.000134,0.000059,0.000051,0.000193,0.000563,0.000563,0.000483,0.136675,-0.001362,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000132,0.000000,0.000000,0.000000,0.000136,0.000058,0.000050,0.000194,0.000484,0.000484,0.000475,0.135419,-0.001256,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000132,0.000000,0.000000,0.000000,0.000137,0.000057,0.000049,0.000194,0.000428,0.000428,0.000467,0.134235,-0.001184,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000131,0.000000,0.000000,0.000000,0.000139,0.000056,0.000048,0.000195,0.000364,0.000364,0.000460,0.133129,-0.001106,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000243,0.000000,0.000000,0.000000,0.000140,0.000055,0.000047,0.000195,0.000283,0.000283,0.000452,0.132228,-0.000901,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000186,0.000000,0.000000,0.000000,0.000142,0.000054,0.000047,0.000196,0.000177,0.000177,0.000445,0.131387,-0.000841,1.000000,0.000000 +121,2022-08-06 01:00:00,0.001062,0.000087,0.000157,0.000087,0.000143,0.000053,0.000047,0.000283,0.000063,0.000063,0.000438,0.131379,-0.000008,1.000000,0.000071 +122,2022-08-06 02:00:00,0.001255,0.000171,0.000239,0.000171,0.000145,0.000053,0.000047,0.000368,0.000000,0.000000,0.000433,0.131544,0.000164,1.000000,0.000139 +123,2022-08-06 03:00:00,0.000974,0.000174,0.000150,0.000174,0.000146,0.000052,0.000047,0.000372,0.000000,0.000000,0.000428,0.131516,-0.000028,1.000000,0.000115 +124,2022-08-06 04:00:00,0.000853,0.000150,0.000117,0.000150,0.000148,0.000051,0.000047,0.000349,0.000000,0.000000,0.000423,0.131401,-0.000114,1.000000,0.000083 +125,2022-08-06 05:00:00,0.000831,0.000121,0.000112,0.000121,0.000149,0.000051,0.000047,0.000321,0.000000,0.000000,0.000419,0.131272,-0.000129,1.000000,0.000074 +126,2022-08-06 06:00:00,0.000966,0.000133,0.000148,0.000133,0.000151,0.000050,0.000047,0.000334,0.000000,0.000000,0.000415,0.131242,-0.000030,1.000000,0.000089 +127,2022-08-06 07:00:00,0.000000,0.000059,0.000000,0.000059,0.000152,0.000050,0.000046,0.000262,0.000000,0.000000,0.000411,0.130406,-0.000837,1.000000,0.000030 +128,2022-08-06 08:00:00,0.000000,0.000030,0.000000,0.000030,0.000154,0.000049,0.000045,0.000233,0.000000,0.000000,0.000407,0.129580,-0.000826,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000049,0.000045,0.000204,0.000000,0.000000,0.000403,0.128765,-0.000815,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000048,0.000044,0.000205,0.000000,0.000000,0.000399,0.127962,-0.000804,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000048,0.000044,0.000206,0.000000,0.000000,0.000395,0.127168,-0.000793,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000047,0.000043,0.000207,0.000000,0.000000,0.000390,0.126386,-0.000783,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000043,0.000208,0.000000,0.000000,0.000386,0.125613,-0.000772,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000042,0.000209,0.000121,0.000121,0.000381,0.124732,-0.000882,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000046,0.000041,0.000210,0.000360,0.000360,0.000377,0.123626,-0.001106,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000045,0.000040,0.000211,0.000507,0.000507,0.000372,0.122390,-0.001236,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000044,0.000039,0.000212,0.000606,0.000606,0.000366,0.121072,-0.001318,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000044,0.000038,0.000213,0.000682,0.000682,0.000361,0.119697,-0.001375,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000037,0.000213,0.000643,0.000643,0.000355,0.118378,-0.001319,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000042,0.000036,0.000214,0.000559,0.000559,0.000349,0.117161,-0.001218,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000215,0.000490,0.000490,0.000343,0.116027,-0.001134,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000041,0.000035,0.000215,0.000411,0.000411,0.000337,0.114986,-0.001041,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000034,0.000216,0.000314,0.000314,0.000330,0.114055,-0.000931,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000039,0.000033,0.000217,0.000180,0.000180,0.000324,0.113269,-0.000787,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000033,0.000218,0.000047,0.000047,0.000319,0.112623,-0.000645,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000038,0.000032,0.000218,0.000000,0.000000,0.000313,0.112033,-0.000590,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000037,0.000032,0.000219,0.000000,0.000000,0.000308,0.111451,-0.000582,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000220,0.000000,0.000000,0.000303,0.110876,-0.000575,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000031,0.000221,0.000000,0.000000,0.000298,0.110309,-0.000567,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000031,0.000222,0.000000,0.000000,0.000293,0.109750,-0.000560,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000030,0.000222,0.000000,0.000000,0.000289,0.109197,-0.000552,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000030,0.000223,0.000000,0.000000,0.000284,0.108653,-0.000545,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000030,0.000224,0.000000,0.000000,0.000280,0.108115,-0.000538,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000029,0.000225,0.000000,0.000000,0.000276,0.107585,-0.000530,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000029,0.000226,0.000000,0.000000,0.000271,0.107061,-0.000523,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000028,0.000227,0.000000,0.000000,0.000267,0.106545,-0.000517,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000028,0.000228,0.000000,0.000000,0.000264,0.106035,-0.000510,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000028,0.000229,0.000117,0.000117,0.000260,0.105417,-0.000618,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000027,0.000229,0.000355,0.000355,0.000256,0.104571,-0.000845,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000026,0.000230,0.000506,0.000506,0.000251,0.103589,-0.000982,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000231,0.000610,0.000610,0.000247,0.102516,-0.001073,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000025,0.000232,0.000676,0.000676,0.000242,0.101393,-0.001123,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000632,0.000632,0.000237,0.100328,-0.001065,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000023,0.000233,0.000547,0.000547,0.000232,0.099361,-0.000967,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000022,0.000234,0.000502,0.000502,0.000227,0.098451,-0.000910,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000022,0.000235,0.000423,0.000423,0.000222,0.097631,-0.000820,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000021,0.000235,0.000320,0.000320,0.000217,0.096924,-0.000707,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000021,0.000236,0.000161,0.000161,0.000212,0.096383,-0.000541,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000021,0.000237,0.000015,0.000015,0.000208,0.095993,-0.000390,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000020,0.000238,0.000000,0.000000,0.000204,0.095623,-0.000370,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000020,0.000238,0.000000,0.000000,0.000199,0.095258,-0.000365,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000020,0.000239,0.000000,0.000000,0.000196,0.094897,-0.000360,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000023,0.000020,0.000240,0.000000,0.000000,0.000192,0.094542,-0.000355,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000218,0.000023,0.000019,0.000241,0.000000,0.000000,0.000188,0.094193,-0.000349,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000022,0.000019,0.000242,0.000000,0.000000,0.000185,0.093847,-0.000346,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000019,0.000243,0.000000,0.000000,0.000182,0.093506,-0.000342,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000243,0.000000,0.000000,0.000179,0.093169,-0.000337,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000018,0.000244,0.000000,0.000000,0.000176,0.092836,-0.000333,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000018,0.000245,0.000000,0.000000,0.000173,0.092508,-0.000328,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000018,0.000246,0.000000,0.000000,0.000170,0.092184,-0.000324,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000018,0.000247,0.000000,0.000000,0.000167,0.091864,-0.000320,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000017,0.000248,0.000101,0.000000,0.000165,0.091549,-0.000315,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000249,0.000344,0.000000,0.000162,0.091238,-0.000311,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000017,0.000250,0.000499,0.000000,0.000160,0.090931,-0.000307,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000251,0.000596,0.000000,0.000157,0.090628,-0.000303,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000016,0.000251,0.000676,0.000000,0.000155,0.090329,-0.000299,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000016,0.000252,0.000624,0.000000,0.000153,0.090034,-0.000295,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000016,0.000253,0.000541,0.000000,0.000151,0.089743,-0.000291,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000254,0.000495,0.000000,0.000149,0.089456,-0.000287,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000255,0.000421,0.000000,0.000146,0.089172,-0.000283,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000323,0.000000,0.000144,0.088893,-0.000280,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000257,0.000184,0.000000,0.000142,0.088617,-0.000276,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000258,0.000038,0.000000,0.000140,0.088345,-0.000272,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000000,0.000000,0.000138,0.088076,-0.000269,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000260,0.000000,0.000000,0.000136,0.087811,-0.000265,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000000,0.000000,0.000135,0.087549,-0.000262,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000261,0.000000,0.000000,0.000133,0.087291,-0.000258,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000131,0.087036,-0.000255,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000263,0.000000,0.000000,0.000129,0.086785,-0.000251,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000014,0.000264,0.000000,0.000000,0.000127,0.086537,-0.000248,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000265,0.000000,0.000000,0.000126,0.086292,-0.000244,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000013,0.000266,0.000000,0.000000,0.000124,0.086051,-0.000242,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000015,0.000013,0.000267,0.000000,0.000000,0.000122,0.085812,-0.000238,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000015,0.000013,0.000267,0.000000,0.000000,0.000121,0.085577,-0.000235,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000013,0.000268,0.000000,0.000000,0.000119,0.085345,-0.000232,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000014,0.000013,0.000269,0.000111,0.000000,0.000117,0.085116,-0.000229,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619306.csv b/test/channel_loss/channel_forcing/et/cat-2619306.csv new file mode 100644 index 000000000..32a27ddf5 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619306.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001477,0.000411,0.001479,0.000178,0.000178,0.010530,0.428923,-0.004739,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000011,0.000001,0.000000,0.000001,0.000000,0.001329,0.000405,0.001330,0.000054,0.000054,0.009606,0.424076,-0.004847,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000006,0.000001,0.000000,0.000001,0.000000,0.001204,0.000400,0.001205,0.000000,0.000000,0.008802,0.419346,-0.004731,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000006,0.000000,0.000000,0.000000,0.000000,0.001096,0.000394,0.001097,0.000000,0.000000,0.008100,0.414681,-0.004664,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000006,0.000000,0.000000,0.000000,0.000000,0.001004,0.000389,0.001004,0.000000,0.000000,0.007485,0.410082,-0.004599,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.000924,0.000383,0.000925,0.000000,0.000000,0.006944,0.405551,-0.004531,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000006,0.000000,0.000000,0.000000,0.000001,0.000855,0.000378,0.000856,0.000000,0.000000,0.006467,0.401079,-0.004472,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000794,0.000373,0.000795,0.000000,0.000000,0.006045,0.396663,-0.004416,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000741,0.000367,0.000742,0.000000,0.000000,0.005671,0.392309,-0.004354,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000362,0.000696,0.000000,0.000000,0.005339,0.388015,-0.004293,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000653,0.000357,0.000655,0.000000,0.000000,0.005043,0.383782,-0.004234,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000617,0.000352,0.000619,0.000000,0.000000,0.004778,0.379607,-0.004174,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000584,0.000347,0.000587,0.000000,0.000000,0.004542,0.375491,-0.004116,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000555,0.000343,0.000558,0.000000,0.000000,0.004329,0.371432,-0.004059,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000529,0.000338,0.000533,0.000132,0.000132,0.004137,0.367300,-0.004133,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000506,0.000332,0.000510,0.000369,0.000369,0.003964,0.362991,-0.004309,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000485,0.000327,0.000489,0.000519,0.000519,0.003807,0.358594,-0.004397,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000465,0.000322,0.000470,0.000615,0.000615,0.003663,0.354165,-0.004429,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000448,0.000317,0.000453,0.000562,0.000562,0.003532,0.349850,-0.004315,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000192,0.000000,0.000000,0.000000,0.000006,0.000432,0.000312,0.000438,0.000521,0.000521,0.003412,0.345825,-0.004025,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000203,0.000000,0.000000,0.000000,0.000007,0.000417,0.000307,0.000424,0.000463,0.000463,0.003302,0.341924,-0.003901,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000404,0.000303,0.000411,0.000373,0.000373,0.003201,0.338215,-0.003709,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000199,0.000000,0.000000,0.000000,0.000008,0.000392,0.000298,0.000400,0.000320,0.000320,0.003107,0.334557,-0.003658,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000380,0.000294,0.000389,0.000245,0.000245,0.003021,0.331078,-0.003480,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000203,0.000000,0.000000,0.000000,0.000010,0.000370,0.000290,0.000380,0.000150,0.000150,0.002941,0.327690,-0.003387,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000742,0.000037,0.000067,0.000037,0.000010,0.000360,0.000287,0.000408,0.000063,0.000063,0.002868,0.324902,-0.002789,1.000000,0.000030 +26,2022-08-02 02:00:00,0.000878,0.000077,0.000109,0.000077,0.000011,0.000352,0.000284,0.000439,0.000000,0.000000,0.002800,0.322307,-0.002594,1.000000,0.000062 +27,2022-08-02 03:00:00,0.000874,0.000100,0.000107,0.000100,0.000012,0.000343,0.000281,0.000455,0.000000,0.000000,0.002738,0.319746,-0.002561,1.000000,0.000070 +28,2022-08-02 04:00:00,0.000893,0.000110,0.000111,0.000110,0.000013,0.000336,0.000278,0.000458,0.000000,0.000000,0.002680,0.317237,-0.002510,1.000000,0.000072 +29,2022-08-02 05:00:00,0.000894,0.000110,0.000111,0.000110,0.000014,0.000329,0.000275,0.000453,0.000000,0.000000,0.002626,0.314763,-0.002474,1.000000,0.000072 +30,2022-08-02 06:00:00,0.000820,0.000102,0.000094,0.000102,0.000015,0.000322,0.000272,0.000439,0.000000,0.000000,0.002575,0.312268,-0.002496,1.000000,0.000065 +31,2022-08-02 07:00:00,0.000000,0.000046,0.000000,0.000046,0.000015,0.000316,0.000268,0.000377,0.000000,0.000000,0.002527,0.309091,-0.003177,1.000000,0.000019 +32,2022-08-02 08:00:00,0.000000,0.000019,0.000000,0.000019,0.000016,0.000310,0.000264,0.000345,0.000000,0.000000,0.002481,0.305959,-0.003132,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000304,0.000261,0.000322,0.000000,0.000000,0.002438,0.302870,-0.003089,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000299,0.000257,0.000317,0.000000,0.000000,0.002396,0.299825,-0.003045,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000294,0.000253,0.000313,0.000000,0.000000,0.002355,0.296822,-0.003003,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000289,0.000250,0.000309,0.000000,0.000000,0.002316,0.293861,-0.002961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000284,0.000246,0.000305,0.000000,0.000000,0.002279,0.290941,-0.002920,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000077,0.000000,0.000000,0.000000,0.000022,0.000279,0.000243,0.000302,0.000111,0.000111,0.002242,0.288028,-0.002912,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000275,0.000239,0.000298,0.000334,0.000334,0.002207,0.284860,-0.003168,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000270,0.000235,0.000295,0.000461,0.000461,0.002172,0.281612,-0.003248,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000266,0.000231,0.000291,0.000553,0.000553,0.002137,0.278318,-0.003294,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000163,0.000000,0.000000,0.000000,0.000027,0.000261,0.000228,0.000288,0.000638,0.000638,0.002103,0.275146,-0.003172,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000257,0.000224,0.000285,0.000598,0.000598,0.002070,0.271899,-0.003248,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000253,0.000220,0.000282,0.000524,0.000524,0.002036,0.268769,-0.003130,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000249,0.000216,0.000279,0.000501,0.000501,0.002004,0.265705,-0.003064,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000245,0.000213,0.000276,0.000421,0.000421,0.001972,0.262762,-0.002942,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000241,0.000209,0.000273,0.000318,0.000318,0.001941,0.259962,-0.002800,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000237,0.000206,0.000270,0.000183,0.000183,0.001910,0.257335,-0.002628,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000233,0.000203,0.000268,0.000036,0.000036,0.001880,0.254889,-0.002446,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000229,0.000201,0.000265,0.000000,0.000000,0.001851,0.252513,-0.002376,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000226,0.000198,0.000263,0.000000,0.000000,0.001823,0.250170,-0.002343,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000222,0.000195,0.000261,0.000000,0.000000,0.001796,0.247860,-0.002310,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000219,0.000192,0.000259,0.000000,0.000000,0.001769,0.245582,-0.002278,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000216,0.000190,0.000257,0.000000,0.000000,0.001743,0.243336,-0.002246,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000212,0.000187,0.000255,0.000000,0.000000,0.001718,0.241121,-0.002215,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000209,0.000184,0.000253,0.000000,0.000000,0.001693,0.238938,-0.002184,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000206,0.000182,0.000251,0.000000,0.000000,0.001668,0.236784,-0.002153,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000203,0.000179,0.000249,0.000000,0.000000,0.001644,0.234661,-0.002123,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000200,0.000177,0.000248,0.000000,0.000000,0.001621,0.232567,-0.002094,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000197,0.000174,0.000246,0.000000,0.000000,0.001598,0.230503,-0.002065,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000194,0.000172,0.000244,0.000000,0.000000,0.001575,0.228467,-0.002036,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000192,0.000169,0.000243,0.000128,0.000128,0.001553,0.226334,-0.002133,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000189,0.000166,0.000241,0.000375,0.000375,0.001530,0.223986,-0.002348,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000186,0.000163,0.000240,0.000524,0.000524,0.001508,0.221525,-0.002461,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000183,0.000160,0.000239,0.000629,0.000629,0.001485,0.218994,-0.002530,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000180,0.000157,0.000237,0.000632,0.000632,0.001462,0.216496,-0.002498,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000177,0.000155,0.000236,0.000594,0.000594,0.001440,0.214070,-0.002426,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000313,0.000000,0.000000,0.000000,0.000060,0.000175,0.000152,0.000234,0.000509,0.000509,0.001417,0.212070,-0.002000,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000142,0.000000,0.000000,0.000000,0.000061,0.000172,0.000150,0.000233,0.000479,0.000479,0.001395,0.209958,-0.002112,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000169,0.000147,0.000231,0.000402,0.000402,0.001373,0.207812,-0.002146,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000166,0.000145,0.000230,0.000302,0.000302,0.001352,0.205796,-0.002017,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000164,0.000142,0.000229,0.000173,0.000173,0.001330,0.203934,-0.001862,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000161,0.000140,0.000228,0.000048,0.000048,0.001310,0.202221,-0.001712,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000159,0.000138,0.000227,0.000000,0.000000,0.001290,0.200580,-0.001641,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000156,0.000137,0.000226,0.000000,0.000000,0.001270,0.198962,-0.001618,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000154,0.000135,0.000225,0.000000,0.000000,0.001251,0.197367,-0.001596,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000151,0.000133,0.000224,0.000000,0.000000,0.001232,0.195793,-0.001573,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000149,0.000131,0.000223,0.000000,0.000000,0.001214,0.194242,-0.001551,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000147,0.000129,0.000222,0.000000,0.000000,0.001196,0.192712,-0.001530,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000145,0.000127,0.000221,0.000000,0.000000,0.001179,0.191204,-0.001508,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000143,0.000126,0.000221,0.000000,0.000000,0.001162,0.189716,-0.001487,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000141,0.000124,0.000220,0.000000,0.000000,0.001145,0.188250,-0.001467,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000138,0.000122,0.000219,0.000000,0.000000,0.001129,0.186804,-0.001446,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000136,0.000120,0.000219,0.000000,0.000000,0.001113,0.185378,-0.001426,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000134,0.000119,0.000218,0.000000,0.000000,0.001097,0.183972,-0.001406,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000133,0.000117,0.000218,0.000124,0.000124,0.001081,0.182463,-0.001509,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000131,0.000115,0.000217,0.000373,0.000373,0.001065,0.180729,-0.001733,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000129,0.000113,0.000217,0.000527,0.000527,0.001049,0.178868,-0.001861,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000127,0.000110,0.000216,0.000629,0.000629,0.001033,0.176933,-0.001935,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000124,0.000108,0.000216,0.000705,0.000705,0.001016,0.174950,-0.001984,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000122,0.000106,0.000215,0.000662,0.000662,0.000999,0.173036,-0.001913,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000120,0.000103,0.000214,0.000570,0.000570,0.000983,0.171240,-0.001796,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000118,0.000101,0.000214,0.000492,0.000492,0.000966,0.169546,-0.001694,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000116,0.000100,0.000213,0.000418,0.000418,0.000949,0.167949,-0.001597,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000114,0.000098,0.000213,0.000322,0.000322,0.000933,0.166468,-0.001481,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000112,0.000096,0.000212,0.000191,0.000191,0.000917,0.165138,-0.001330,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000101,0.000110,0.000095,0.000212,0.000059,0.000059,0.000901,0.163958,-0.001181,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000103,0.000108,0.000093,0.000211,0.000000,0.000000,0.000886,0.162851,-0.001106,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000104,0.000107,0.000092,0.000211,0.000000,0.000000,0.000872,0.161760,-0.001091,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000106,0.000105,0.000091,0.000211,0.000000,0.000000,0.000858,0.160684,-0.001076,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000107,0.000103,0.000090,0.000211,0.000000,0.000000,0.000844,0.159624,-0.001061,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000109,0.000102,0.000088,0.000210,0.000000,0.000000,0.000831,0.158578,-0.001046,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000100,0.000087,0.000210,0.000000,0.000000,0.000818,0.157546,-0.001032,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000098,0.000086,0.000210,0.000000,0.000000,0.000806,0.156528,-0.001018,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000097,0.000085,0.000210,0.000000,0.000000,0.000793,0.155525,-0.001003,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000095,0.000083,0.000210,0.000000,0.000000,0.000782,0.154535,-0.000989,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000094,0.000082,0.000210,0.000000,0.000000,0.000770,0.153559,-0.000976,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000093,0.000081,0.000210,0.000000,0.000000,0.000758,0.152597,-0.000962,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000091,0.000080,0.000210,0.000000,0.000000,0.000747,0.151649,-0.000949,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000090,0.000079,0.000210,0.000135,0.000135,0.000736,0.150580,-0.001069,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000088,0.000077,0.000210,0.000375,0.000375,0.000725,0.149289,-0.001291,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000087,0.000076,0.000210,0.000528,0.000528,0.000714,0.147866,-0.001424,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000086,0.000074,0.000210,0.000638,0.000638,0.000702,0.146354,-0.001512,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000084,0.000072,0.000210,0.000609,0.000609,0.000690,0.144892,-0.001462,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000128,0.000083,0.000070,0.000210,0.000565,0.000565,0.000677,0.143619,-0.001273,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000148,0.000000,0.000000,0.000000,0.000129,0.000081,0.000069,0.000210,0.000487,0.000487,0.000665,0.142462,-0.001157,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000162,0.000000,0.000000,0.000000,0.000131,0.000080,0.000068,0.000210,0.000437,0.000437,0.000654,0.141383,-0.001078,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000132,0.000078,0.000067,0.000210,0.000369,0.000369,0.000642,0.140352,-0.001032,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000133,0.000077,0.000066,0.000210,0.000288,0.000288,0.000631,0.139477,-0.000875,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000135,0.000075,0.000065,0.000210,0.000180,0.000180,0.000620,0.138659,-0.000818,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000769,0.000030,0.000055,0.000030,0.000136,0.000074,0.000064,0.000241,0.000064,0.000064,0.000610,0.138546,-0.000113,1.000000,0.000025 +122,2022-08-06 02:00:00,0.001183,0.000094,0.000147,0.000094,0.000138,0.000073,0.000065,0.000305,0.000000,0.000000,0.000601,0.138815,0.000269,1.000000,0.000077 +123,2022-08-06 03:00:00,0.000990,0.000105,0.000105,0.000105,0.000139,0.000072,0.000065,0.000317,0.000000,0.000000,0.000594,0.138931,0.000117,1.000000,0.000077 +124,2022-08-06 04:00:00,0.000924,0.000106,0.000092,0.000106,0.000141,0.000072,0.000065,0.000318,0.000000,0.000000,0.000587,0.138994,0.000062,1.000000,0.000062 +125,2022-08-06 05:00:00,0.000914,0.000094,0.000090,0.000094,0.000142,0.000071,0.000065,0.000306,0.000000,0.000000,0.000581,0.139047,0.000053,1.000000,0.000059 +126,2022-08-06 06:00:00,0.000999,0.000100,0.000107,0.000100,0.000143,0.000070,0.000065,0.000313,0.000000,0.000000,0.000576,0.139167,0.000120,1.000000,0.000066 +127,2022-08-06 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000145,0.000070,0.000064,0.000259,0.000000,0.000000,0.000571,0.138406,-0.000761,1.000000,0.000021 +128,2022-08-06 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000146,0.000069,0.000063,0.000236,0.000000,0.000000,0.000566,0.137655,-0.000751,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000068,0.000062,0.000216,0.000000,0.000000,0.000560,0.136915,-0.000740,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000067,0.000062,0.000216,0.000000,0.000000,0.000554,0.136185,-0.000730,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000067,0.000061,0.000217,0.000000,0.000000,0.000548,0.135466,-0.000720,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000066,0.000060,0.000218,0.000000,0.000000,0.000542,0.134756,-0.000710,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000059,0.000218,0.000000,0.000000,0.000536,0.134056,-0.000700,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000064,0.000058,0.000219,0.000120,0.000120,0.000529,0.133249,-0.000808,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000064,0.000057,0.000220,0.000355,0.000355,0.000523,0.132220,-0.001029,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000063,0.000055,0.000220,0.000499,0.000499,0.000515,0.131063,-0.001157,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000062,0.000054,0.000220,0.000602,0.000602,0.000508,0.129821,-0.001242,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000052,0.000221,0.000681,0.000681,0.000499,0.128519,-0.001302,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000060,0.000051,0.000221,0.000640,0.000640,0.000491,0.127275,-0.001244,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000059,0.000050,0.000221,0.000560,0.000560,0.000482,0.126128,-0.001147,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000057,0.000048,0.000222,0.000496,0.000496,0.000473,0.125059,-0.001069,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000047,0.000222,0.000413,0.000413,0.000463,0.124087,-0.000972,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000055,0.000046,0.000222,0.000315,0.000315,0.000454,0.123226,-0.000861,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000054,0.000045,0.000222,0.000181,0.000181,0.000445,0.122508,-0.000717,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000053,0.000045,0.000223,0.000047,0.000047,0.000437,0.121933,-0.000575,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000052,0.000044,0.000223,0.000000,0.000000,0.000429,0.121413,-0.000521,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000051,0.000043,0.000223,0.000000,0.000000,0.000421,0.120899,-0.000513,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000050,0.000043,0.000224,0.000000,0.000000,0.000413,0.120393,-0.000506,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000049,0.000042,0.000224,0.000000,0.000000,0.000406,0.119893,-0.000499,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000048,0.000042,0.000225,0.000000,0.000000,0.000399,0.119401,-0.000492,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000041,0.000225,0.000000,0.000000,0.000393,0.118916,-0.000485,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000047,0.000040,0.000225,0.000000,0.000000,0.000386,0.118437,-0.000479,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000046,0.000040,0.000226,0.000000,0.000000,0.000380,0.117965,-0.000472,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000045,0.000039,0.000227,0.000000,0.000000,0.000374,0.117500,-0.000465,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000045,0.000039,0.000227,0.000000,0.000000,0.000368,0.117041,-0.000459,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000038,0.000228,0.000000,0.000000,0.000362,0.116588,-0.000452,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000043,0.000038,0.000228,0.000000,0.000000,0.000356,0.116142,-0.000446,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000037,0.000229,0.000115,0.000115,0.000351,0.115589,-0.000553,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000042,0.000036,0.000229,0.000354,0.000354,0.000345,0.114808,-0.000781,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000041,0.000035,0.000230,0.000504,0.000504,0.000339,0.113889,-0.000918,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000040,0.000034,0.000230,0.000612,0.000612,0.000332,0.112877,-0.001012,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000039,0.000032,0.000231,0.000678,0.000678,0.000325,0.111814,-0.001063,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000039,0.000031,0.000231,0.000630,0.000630,0.000318,0.110813,-0.001001,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000038,0.000030,0.000231,0.000550,0.000550,0.000310,0.109905,-0.000908,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000037,0.000029,0.000232,0.000507,0.000507,0.000303,0.109052,-0.000853,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000036,0.000028,0.000232,0.000425,0.000425,0.000295,0.108292,-0.000760,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000035,0.000028,0.000232,0.000321,0.000321,0.000288,0.107645,-0.000647,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000034,0.000027,0.000233,0.000160,0.000160,0.000281,0.107166,-0.000479,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000033,0.000027,0.000233,0.000015,0.000015,0.000274,0.106837,-0.000329,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000032,0.000026,0.000233,0.000000,0.000000,0.000268,0.106527,-0.000310,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000026,0.000234,0.000000,0.000000,0.000262,0.106221,-0.000306,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000031,0.000025,0.000234,0.000000,0.000000,0.000256,0.105919,-0.000302,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000025,0.000235,0.000000,0.000000,0.000251,0.105622,-0.000297,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000030,0.000025,0.000235,0.000000,0.000000,0.000246,0.105329,-0.000293,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000029,0.000024,0.000236,0.000000,0.000000,0.000241,0.105040,-0.000289,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000029,0.000024,0.000237,0.000000,0.000000,0.000236,0.104755,-0.000285,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000024,0.000237,0.000000,0.000000,0.000232,0.104474,-0.000281,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000028,0.000023,0.000238,0.000000,0.000000,0.000228,0.104196,-0.000277,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000023,0.000238,0.000000,0.000000,0.000224,0.103923,-0.000273,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000023,0.000239,0.000000,0.000000,0.000220,0.103654,-0.000269,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000026,0.000022,0.000240,0.000000,0.000000,0.000216,0.103388,-0.000266,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000026,0.000022,0.000240,0.000099,0.000099,0.000212,0.103029,-0.000360,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000021,0.000241,0.000341,0.000341,0.000208,0.102435,-0.000594,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000025,0.000020,0.000242,0.000496,0.000496,0.000204,0.101697,-0.000738,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000019,0.000242,0.000593,0.000593,0.000199,0.100874,-0.000823,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000024,0.000018,0.000243,0.000674,0.000674,0.000194,0.099982,-0.000892,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000017,0.000243,0.000623,0.000623,0.000189,0.099153,-0.000829,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000016,0.000243,0.000548,0.000548,0.000183,0.098410,-0.000743,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000016,0.000244,0.000498,0.000498,0.000177,0.097726,-0.000684,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000015,0.000244,0.000421,0.000421,0.000171,0.097127,-0.000598,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000014,0.000245,0.000323,0.000323,0.000166,0.096634,-0.000493,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000014,0.000245,0.000185,0.000185,0.000160,0.096285,-0.000350,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000014,0.000245,0.000038,0.000038,0.000155,0.096084,-0.000200,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000019,0.000000,0.000000,0.000000,0.000228,0.000018,0.000014,0.000246,0.000000,0.000000,0.000150,0.095943,-0.000142,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000229,0.000018,0.000013,0.000246,0.000000,0.000000,0.000146,0.095787,-0.000156,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000013,0.000247,0.000000,0.000000,0.000142,0.095631,-0.000156,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000013,0.000247,0.000000,0.000000,0.000138,0.095477,-0.000154,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000013,0.000248,0.000000,0.000000,0.000135,0.095325,-0.000152,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000013,0.000249,0.000000,0.000000,0.000131,0.095176,-0.000149,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000012,0.000249,0.000000,0.000000,0.000128,0.095029,-0.000147,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000012,0.000250,0.000000,0.000000,0.000125,0.094883,-0.000145,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000012,0.000250,0.000000,0.000000,0.000123,0.094740,-0.000143,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000012,0.000251,0.000000,0.000000,0.000120,0.094599,-0.000141,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000000,0.000000,0.000118,0.094459,-0.000139,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000000,0.000000,0.000115,0.094322,-0.000137,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000011,0.000253,0.000109,0.000109,0.000113,0.094079,-0.000243,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619307.csv b/test/channel_loss/channel_forcing/et/cat-2619307.csv new file mode 100644 index 000000000..8c9db9159 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619307.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001472,0.000375,0.001474,0.000182,0.000182,0.010499,0.428643,-0.004728,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000001,0.000001,0.000000,0.000001,0.000000,0.001320,0.000370,0.001321,0.000056,0.000056,0.009549,0.423798,-0.004845,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000001,0.000001,0.000000,0.000001,0.000000,0.001191,0.000365,0.001192,0.000000,0.000000,0.008723,0.419075,-0.004723,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000000,0.001081,0.000360,0.001082,0.000000,0.000000,0.008001,0.414417,-0.004658,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000000,0.000987,0.000355,0.000987,0.000000,0.000000,0.007369,0.409824,-0.004594,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000000,0.000905,0.000350,0.000906,0.000000,0.000000,0.006814,0.405294,-0.004530,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000001,0.000834,0.000345,0.000835,0.000000,0.000000,0.006325,0.400826,-0.004468,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000773,0.000340,0.000773,0.000000,0.000000,0.005892,0.396419,-0.004407,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000718,0.000336,0.000720,0.000000,0.000000,0.005510,0.392072,-0.004346,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000671,0.000331,0.000672,0.000000,0.000000,0.005170,0.387786,-0.004286,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000629,0.000327,0.000631,0.000000,0.000000,0.004867,0.383559,-0.004227,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000592,0.000322,0.000594,0.000000,0.000000,0.004597,0.379390,-0.004169,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000559,0.000318,0.000561,0.000000,0.000000,0.004356,0.375278,-0.004111,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000530,0.000313,0.000532,0.000000,0.000000,0.004140,0.371224,-0.004055,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000309,0.000507,0.000132,0.000132,0.003945,0.367094,-0.004129,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000480,0.000304,0.000484,0.000368,0.000368,0.003770,0.362789,-0.004305,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000458,0.000299,0.000463,0.000521,0.000521,0.003610,0.358393,-0.004396,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000439,0.000295,0.000444,0.000620,0.000620,0.003466,0.353960,-0.004433,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000422,0.000290,0.000427,0.000571,0.000571,0.003334,0.349636,-0.004324,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000227,0.000000,0.000000,0.000000,0.000006,0.000406,0.000286,0.000412,0.000523,0.000523,0.003214,0.345644,-0.003993,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000214,0.000000,0.000000,0.000000,0.000007,0.000391,0.000281,0.000398,0.000470,0.000470,0.003104,0.341745,-0.003898,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000234,0.000000,0.000000,0.000000,0.000007,0.000378,0.000277,0.000386,0.000383,0.000383,0.003003,0.338006,-0.003739,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000200,0.000000,0.000000,0.000000,0.000008,0.000366,0.000273,0.000374,0.000328,0.000328,0.002910,0.334340,-0.003666,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000215,0.000000,0.000000,0.000000,0.000009,0.000355,0.000269,0.000364,0.000253,0.000253,0.002825,0.330812,-0.003528,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000214,0.000000,0.000001,0.000000,0.000010,0.000345,0.000266,0.000354,0.000158,0.000158,0.002746,0.327426,-0.003387,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000522,0.000019,0.000034,0.000019,0.000010,0.000335,0.000263,0.000364,0.000069,0.000069,0.002674,0.324445,-0.002981,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000804,0.000064,0.000100,0.000064,0.000011,0.000326,0.000260,0.000401,0.000000,0.000000,0.002607,0.321786,-0.002659,1.000000,0.000052 +27,2022-08-02 03:00:00,0.000843,0.000092,0.000109,0.000092,0.000012,0.000318,0.000257,0.000422,0.000000,0.000000,0.002546,0.319193,-0.002592,1.000000,0.000069 +28,2022-08-02 04:00:00,0.000877,0.000112,0.000117,0.000112,0.000013,0.000311,0.000254,0.000436,0.000000,0.000000,0.002489,0.316662,-0.002531,1.000000,0.000074 +29,2022-08-02 05:00:00,0.000835,0.000109,0.000106,0.000109,0.000014,0.000304,0.000251,0.000427,0.000000,0.000000,0.002436,0.314135,-0.002527,1.000000,0.000071 +30,2022-08-02 06:00:00,0.000823,0.000107,0.000103,0.000107,0.000015,0.000298,0.000249,0.000419,0.000000,0.000000,0.002387,0.311634,-0.002501,1.000000,0.000068 +31,2022-08-02 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000015,0.000292,0.000245,0.000354,0.000000,0.000000,0.002340,0.308458,-0.003176,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000286,0.000242,0.000323,0.000000,0.000000,0.002296,0.305325,-0.003133,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000281,0.000239,0.000298,0.000000,0.000000,0.002254,0.302236,-0.003089,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000276,0.000235,0.000294,0.000000,0.000000,0.002213,0.299189,-0.003047,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000271,0.000232,0.000290,0.000000,0.000000,0.002175,0.296185,-0.003005,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000266,0.000229,0.000286,0.000000,0.000000,0.002138,0.293222,-0.002963,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000261,0.000226,0.000283,0.000000,0.000000,0.002102,0.290299,-0.002922,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000070,0.000000,0.000000,0.000000,0.000022,0.000257,0.000223,0.000279,0.000114,0.000114,0.002068,0.287374,-0.002925,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000253,0.000219,0.000276,0.000335,0.000335,0.002034,0.284202,-0.003172,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000248,0.000216,0.000273,0.000466,0.000466,0.002001,0.280945,-0.003257,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000244,0.000212,0.000270,0.000561,0.000561,0.001969,0.277638,-0.003307,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000149,0.000000,0.000000,0.000000,0.000027,0.000240,0.000209,0.000267,0.000646,0.000646,0.001937,0.274440,-0.003198,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000236,0.000205,0.000264,0.000597,0.000597,0.001906,0.271188,-0.003252,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000232,0.000202,0.000261,0.000532,0.000532,0.001875,0.268045,-0.003143,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000229,0.000198,0.000259,0.000509,0.000509,0.001845,0.264968,-0.003077,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000225,0.000195,0.000256,0.000428,0.000428,0.001815,0.262014,-0.002954,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000221,0.000192,0.000254,0.000327,0.000327,0.001786,0.259200,-0.002814,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000218,0.000189,0.000251,0.000185,0.000185,0.001758,0.256565,-0.002635,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000214,0.000187,0.000249,0.000037,0.000037,0.001730,0.254111,-0.002453,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000211,0.000184,0.000247,0.000000,0.000000,0.001704,0.251729,-0.002383,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000207,0.000181,0.000245,0.000000,0.000000,0.001678,0.249379,-0.002350,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000204,0.000179,0.000243,0.000000,0.000000,0.001653,0.247062,-0.002317,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000201,0.000177,0.000241,0.000000,0.000000,0.001628,0.244777,-0.002285,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000198,0.000174,0.000239,0.000000,0.000000,0.001604,0.242523,-0.002254,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000195,0.000172,0.000238,0.000000,0.000000,0.001581,0.240300,-0.002223,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000192,0.000169,0.000236,0.000000,0.000000,0.001558,0.238108,-0.002192,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000189,0.000167,0.000234,0.000000,0.000000,0.001535,0.235947,-0.002162,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000187,0.000165,0.000233,0.000000,0.000000,0.001513,0.233815,-0.002132,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000184,0.000162,0.000232,0.000000,0.000000,0.001492,0.231712,-0.002102,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000181,0.000160,0.000230,0.000000,0.000000,0.001471,0.229639,-0.002073,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000179,0.000158,0.000229,0.000000,0.000000,0.001450,0.227594,-0.002045,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000176,0.000156,0.000228,0.000127,0.000127,0.001429,0.225452,-0.002142,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000174,0.000153,0.000227,0.000374,0.000374,0.001409,0.223096,-0.002356,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000171,0.000150,0.000225,0.000525,0.000525,0.001388,0.220623,-0.002472,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000168,0.000148,0.000224,0.000631,0.000631,0.001368,0.218081,-0.002543,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000166,0.000145,0.000223,0.000634,0.000634,0.001347,0.215571,-0.002510,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000163,0.000142,0.000222,0.000583,0.000583,0.001326,0.213145,-0.002426,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000380,0.000000,0.000000,0.000000,0.000060,0.000161,0.000140,0.000221,0.000509,0.000509,0.001306,0.211200,-0.001945,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000100,0.000000,0.000000,0.000000,0.000061,0.000158,0.000138,0.000219,0.000483,0.000483,0.001286,0.209032,-0.002168,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000156,0.000136,0.000218,0.000403,0.000403,0.001266,0.206874,-0.002158,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000153,0.000133,0.000217,0.000305,0.000305,0.001246,0.204843,-0.002031,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000151,0.000131,0.000216,0.000178,0.000178,0.001226,0.202964,-0.001879,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000148,0.000129,0.000215,0.000049,0.000049,0.001208,0.201239,-0.001725,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000146,0.000128,0.000215,0.000000,0.000000,0.001189,0.199586,-0.001653,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000144,0.000126,0.000214,0.000000,0.000000,0.001171,0.197956,-0.001630,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000142,0.000124,0.000213,0.000000,0.000000,0.001154,0.196348,-0.001608,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000139,0.000122,0.000212,0.000000,0.000000,0.001137,0.194763,-0.001585,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000137,0.000121,0.000212,0.000000,0.000000,0.001120,0.193199,-0.001564,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000135,0.000119,0.000211,0.000000,0.000000,0.001104,0.191657,-0.001542,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000133,0.000117,0.000211,0.000000,0.000000,0.001088,0.190137,-0.001521,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000131,0.000116,0.000210,0.000000,0.000000,0.001072,0.188637,-0.001500,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000130,0.000114,0.000210,0.000000,0.000000,0.001057,0.187158,-0.001479,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000128,0.000113,0.000209,0.000000,0.000000,0.001042,0.185700,-0.001459,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000126,0.000111,0.000209,0.000000,0.000000,0.001027,0.184261,-0.001438,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000124,0.000110,0.000209,0.000000,0.000000,0.001013,0.182842,-0.001419,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000122,0.000108,0.000208,0.000124,0.000124,0.000998,0.181322,-0.001521,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000120,0.000106,0.000208,0.000368,0.000368,0.000984,0.179581,-0.001740,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000119,0.000104,0.000208,0.000526,0.000526,0.000969,0.177708,-0.001873,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000117,0.000102,0.000207,0.000632,0.000632,0.000954,0.175757,-0.001951,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000115,0.000100,0.000207,0.000705,0.000705,0.000939,0.173761,-0.001996,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000113,0.000098,0.000206,0.000651,0.000651,0.000924,0.171846,-0.001916,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000111,0.000096,0.000206,0.000568,0.000568,0.000909,0.170038,-0.001807,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000109,0.000094,0.000206,0.000506,0.000506,0.000893,0.168317,-0.001721,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000107,0.000092,0.000205,0.000425,0.000425,0.000878,0.166700,-0.001617,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000105,0.000090,0.000205,0.000332,0.000332,0.000863,0.165196,-0.001504,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000104,0.000089,0.000204,0.000195,0.000195,0.000848,0.163848,-0.001348,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000102,0.000088,0.000204,0.000059,0.000059,0.000834,0.162653,-0.001195,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000100,0.000087,0.000204,0.000000,0.000000,0.000820,0.161533,-0.001120,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000099,0.000085,0.000204,0.000000,0.000000,0.000807,0.160428,-0.001105,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000097,0.000084,0.000204,0.000000,0.000000,0.000794,0.159338,-0.001090,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000095,0.000083,0.000204,0.000000,0.000000,0.000782,0.158263,-0.001075,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000094,0.000082,0.000204,0.000000,0.000000,0.000770,0.157204,-0.001060,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000093,0.000081,0.000204,0.000000,0.000000,0.000758,0.156158,-0.001045,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000091,0.000080,0.000204,0.000000,0.000000,0.000746,0.155128,-0.001031,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000090,0.000079,0.000204,0.000000,0.000000,0.000735,0.154111,-0.001017,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000088,0.000077,0.000204,0.000000,0.000000,0.000724,0.153109,-0.001003,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000087,0.000076,0.000204,0.000000,0.000000,0.000714,0.152120,-0.000989,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000086,0.000075,0.000204,0.000000,0.000000,0.000703,0.151145,-0.000975,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000085,0.000074,0.000205,0.000000,0.000000,0.000693,0.150183,-0.000962,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000083,0.000073,0.000205,0.000136,0.000136,0.000683,0.149101,-0.001082,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000082,0.000072,0.000205,0.000377,0.000377,0.000672,0.147796,-0.001305,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000081,0.000070,0.000205,0.000531,0.000531,0.000662,0.146357,-0.001439,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000079,0.000068,0.000205,0.000641,0.000641,0.000651,0.144829,-0.001528,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000078,0.000067,0.000205,0.000622,0.000622,0.000640,0.143342,-0.001487,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000108,0.000000,0.000000,0.000000,0.000129,0.000077,0.000065,0.000205,0.000568,0.000568,0.000629,0.142035,-0.001307,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000108,0.000000,0.000000,0.000000,0.000130,0.000075,0.000064,0.000206,0.000491,0.000491,0.000618,0.140821,-0.001213,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000109,0.000000,0.000000,0.000000,0.000132,0.000074,0.000063,0.000206,0.000453,0.000453,0.000607,0.139663,-0.001158,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000073,0.000062,0.000206,0.000379,0.000379,0.000596,0.138611,-0.001052,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000135,0.000071,0.000061,0.000206,0.000298,0.000298,0.000585,0.137715,-0.000896,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000136,0.000070,0.000060,0.000206,0.000185,0.000185,0.000575,0.136881,-0.000834,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000622,0.000021,0.000038,0.000021,0.000138,0.000069,0.000060,0.000227,0.000068,0.000068,0.000566,0.136626,-0.000255,1.000000,0.000017 +122,2022-08-06 02:00:00,0.000980,0.000071,0.000112,0.000071,0.000139,0.000068,0.000060,0.000278,0.000000,0.000000,0.000558,0.136721,0.000095,1.000000,0.000058 +123,2022-08-06 03:00:00,0.000906,0.000089,0.000097,0.000089,0.000140,0.000067,0.000060,0.000296,0.000000,0.000000,0.000551,0.136757,0.000036,1.000000,0.000066 +124,2022-08-06 04:00:00,0.000829,0.000091,0.000082,0.000091,0.000142,0.000066,0.000060,0.000299,0.000000,0.000000,0.000544,0.136731,-0.000026,1.000000,0.000056 +125,2022-08-06 05:00:00,0.000835,0.000085,0.000083,0.000085,0.000143,0.000066,0.000060,0.000294,0.000000,0.000000,0.000538,0.136711,-0.000021,1.000000,0.000054 +126,2022-08-06 06:00:00,0.000868,0.000086,0.000089,0.000086,0.000145,0.000065,0.000060,0.000295,0.000000,0.000000,0.000533,0.136717,0.000006,1.000000,0.000057 +127,2022-08-06 07:00:00,0.000000,0.000039,0.000000,0.000039,0.000146,0.000064,0.000059,0.000249,0.000000,0.000000,0.000528,0.135954,-0.000762,1.000000,0.000018 +128,2022-08-06 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000148,0.000064,0.000058,0.000229,0.000000,0.000000,0.000522,0.135202,-0.000752,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000063,0.000057,0.000212,0.000000,0.000000,0.000517,0.134461,-0.000742,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000062,0.000056,0.000213,0.000000,0.000000,0.000511,0.133729,-0.000731,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000061,0.000056,0.000213,0.000000,0.000000,0.000505,0.133008,-0.000721,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000061,0.000055,0.000214,0.000000,0.000000,0.000499,0.132297,-0.000711,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000060,0.000054,0.000215,0.000000,0.000000,0.000494,0.131595,-0.000701,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000059,0.000053,0.000215,0.000118,0.000118,0.000488,0.130787,-0.000808,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000059,0.000052,0.000216,0.000351,0.000351,0.000481,0.129761,-0.001027,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000051,0.000216,0.000496,0.000496,0.000475,0.128605,-0.001156,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000050,0.000217,0.000604,0.000604,0.000467,0.127359,-0.001246,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000048,0.000217,0.000683,0.000683,0.000460,0.126052,-0.001307,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000047,0.000218,0.000636,0.000636,0.000452,0.124810,-0.001243,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000046,0.000218,0.000561,0.000561,0.000443,0.123658,-0.001151,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000053,0.000044,0.000218,0.000510,0.000510,0.000435,0.122573,-0.001085,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000043,0.000219,0.000422,0.000422,0.000426,0.121590,-0.000983,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000042,0.000219,0.000325,0.000325,0.000418,0.120715,-0.000875,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000050,0.000042,0.000219,0.000186,0.000186,0.000410,0.119990,-0.000725,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000041,0.000220,0.000049,0.000049,0.000402,0.119410,-0.000580,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000040,0.000220,0.000000,0.000000,0.000395,0.118887,-0.000524,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000040,0.000221,0.000000,0.000000,0.000387,0.118370,-0.000516,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000039,0.000221,0.000000,0.000000,0.000381,0.117861,-0.000509,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000039,0.000222,0.000000,0.000000,0.000374,0.117359,-0.000502,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000045,0.000038,0.000222,0.000000,0.000000,0.000368,0.116863,-0.000495,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000044,0.000038,0.000223,0.000000,0.000000,0.000361,0.116375,-0.000488,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000037,0.000223,0.000000,0.000000,0.000355,0.115893,-0.000482,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000042,0.000037,0.000224,0.000000,0.000000,0.000350,0.115418,-0.000475,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000036,0.000225,0.000000,0.000000,0.000344,0.114950,-0.000469,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000041,0.000036,0.000225,0.000000,0.000000,0.000339,0.114487,-0.000462,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000035,0.000226,0.000000,0.000000,0.000333,0.114032,-0.000456,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000035,0.000227,0.000000,0.000000,0.000328,0.113582,-0.000449,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000034,0.000227,0.000114,0.000114,0.000323,0.113027,-0.000556,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000033,0.000228,0.000353,0.000353,0.000318,0.112243,-0.000783,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000032,0.000228,0.000505,0.000505,0.000312,0.111320,-0.000923,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000031,0.000229,0.000614,0.000614,0.000306,0.110302,-0.001018,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000030,0.000229,0.000682,0.000682,0.000300,0.109232,-0.001071,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000029,0.000230,0.000630,0.000630,0.000293,0.108227,-0.001004,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000028,0.000230,0.000552,0.000552,0.000286,0.107313,-0.000914,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000027,0.000231,0.000512,0.000512,0.000280,0.106451,-0.000862,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000026,0.000231,0.000429,0.000429,0.000273,0.105684,-0.000768,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000025,0.000232,0.000324,0.000324,0.000266,0.105030,-0.000654,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000025,0.000232,0.000160,0.000160,0.000259,0.104547,-0.000483,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000232,0.000016,0.000016,0.000253,0.104212,-0.000335,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000000,0.000000,0.000248,0.103898,-0.000314,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000000,0.000000,0.000242,0.103589,-0.000310,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000024,0.000234,0.000000,0.000000,0.000237,0.103283,-0.000305,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000235,0.000000,0.000000,0.000232,0.102982,-0.000301,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000023,0.000235,0.000000,0.000000,0.000227,0.102685,-0.000297,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000023,0.000236,0.000000,0.000000,0.000223,0.102393,-0.000293,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000022,0.000237,0.000000,0.000000,0.000219,0.102104,-0.000289,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000215,0.101819,-0.000285,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000022,0.000238,0.000000,0.000000,0.000211,0.101538,-0.000281,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000239,0.000000,0.000000,0.000207,0.101261,-0.000277,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000239,0.000000,0.000000,0.000204,0.100988,-0.000273,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000021,0.000240,0.000000,0.000000,0.000200,0.100718,-0.000269,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000241,0.000098,0.000098,0.000197,0.100356,-0.000362,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000020,0.000241,0.000338,0.000338,0.000193,0.099762,-0.000594,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000019,0.000242,0.000495,0.000495,0.000189,0.099021,-0.000740,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000018,0.000243,0.000593,0.000593,0.000185,0.098194,-0.000827,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000017,0.000243,0.000673,0.000673,0.000180,0.097299,-0.000895,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000016,0.000244,0.000618,0.000618,0.000175,0.096471,-0.000828,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000015,0.000244,0.000546,0.000546,0.000170,0.095725,-0.000746,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000020,0.000015,0.000245,0.000509,0.000509,0.000165,0.095026,-0.000699,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000014,0.000245,0.000425,0.000425,0.000159,0.094420,-0.000607,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000013,0.000245,0.000328,0.000328,0.000154,0.093918,-0.000502,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000013,0.000246,0.000188,0.000000,0.000149,0.093746,-0.000172,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000013,0.000246,0.000040,0.000000,0.000145,0.093576,-0.000169,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000208,0.000003,0.000005,0.000003,0.000230,0.000017,0.000013,0.000250,0.000000,0.000000,0.000141,0.093609,0.000033,1.000000,0.000002 +195,2022-08-09 03:00:00,0.000084,0.000002,0.000001,0.000002,0.000231,0.000017,0.000013,0.000249,0.000000,0.000000,0.000137,0.093524,-0.000086,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000232,0.000016,0.000013,0.000249,0.000000,0.000000,0.000134,0.093357,-0.000166,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000013,0.000249,0.000000,0.000000,0.000131,0.093193,-0.000164,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000013,0.000249,0.000000,0.000000,0.000128,0.093031,-0.000162,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000012,0.000250,0.000000,0.000000,0.000125,0.092872,-0.000160,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000012,0.000251,0.000000,0.000000,0.000122,0.092714,-0.000157,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000012,0.000251,0.000000,0.000000,0.000120,0.092559,-0.000155,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000000,0.000000,0.000118,0.092406,-0.000153,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000000,0.000000,0.000115,0.092255,-0.000151,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000000,0.000000,0.000113,0.092106,-0.000149,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000013,0.000011,0.000254,0.000000,0.000000,0.000111,0.091959,-0.000147,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000011,0.000255,0.000109,0.000000,0.000109,0.091815,-0.000145,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619308.csv b/test/channel_loss/channel_forcing/et/cat-2619308.csv new file mode 100644 index 000000000..83be34397 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619308.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000481,0.000012,0.000021,0.000012,0.000000,0.001452,0.000230,0.001464,0.000180,0.000180,0.010375,0.629925,-0.004536,1.000000,0.000010 +1,2022-08-01 01:00:00,0.000000,0.000005,0.000000,0.000005,0.000000,0.001284,0.000228,0.001289,0.000056,0.000056,0.009319,0.625097,-0.004828,1.000000,0.000004 +2,2022-08-01 02:00:00,0.000000,0.000004,0.000000,0.000004,0.000000,0.001142,0.000226,0.001147,0.000000,0.000000,0.008402,0.620368,-0.004729,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001022,0.000224,0.001022,0.000000,0.000000,0.007604,0.615681,-0.004687,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000919,0.000222,0.000919,0.000000,0.000000,0.006907,0.611036,-0.004645,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000830,0.000220,0.000831,0.000000,0.000000,0.006297,0.606433,-0.004603,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000754,0.000218,0.000755,0.000000,0.000000,0.005761,0.601871,-0.004562,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000688,0.000216,0.000688,0.000000,0.000000,0.005289,0.597349,-0.004521,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000630,0.000214,0.000631,0.000000,0.000000,0.004874,0.592869,-0.004481,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000579,0.000212,0.000581,0.000000,0.000000,0.004506,0.588428,-0.004440,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000535,0.000210,0.000537,0.000000,0.000000,0.004181,0.584028,-0.004401,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000496,0.000208,0.000498,0.000000,0.000000,0.003894,0.579667,-0.004361,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000462,0.000207,0.000465,0.000000,0.000000,0.003638,0.575345,-0.004322,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000432,0.000205,0.000435,0.000000,0.000000,0.003411,0.571061,-0.004283,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000405,0.000203,0.000409,0.000130,0.000130,0.003209,0.566688,-0.004374,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000381,0.000201,0.000385,0.000358,0.000358,0.003028,0.562127,-0.004561,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000360,0.000199,0.000365,0.000513,0.000513,0.002867,0.557454,-0.004673,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000341,0.000197,0.000347,0.000614,0.000614,0.002722,0.552722,-0.004731,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000324,0.000195,0.000330,0.000571,0.000571,0.002592,0.548076,-0.004646,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000297,0.000000,0.000000,0.000000,0.000006,0.000309,0.000193,0.000316,0.000513,0.000513,0.002476,0.543824,-0.004253,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000258,0.000000,0.000000,0.000000,0.000007,0.000296,0.000191,0.000303,0.000463,0.000463,0.002371,0.539620,-0.004204,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000390,0.000000,0.000000,0.000000,0.000008,0.000284,0.000189,0.000292,0.000378,0.000378,0.002277,0.535669,-0.003951,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000284,0.000000,0.000000,0.000000,0.000009,0.000273,0.000188,0.000281,0.000328,0.000328,0.002191,0.531697,-0.003971,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000300,0.000000,0.000000,0.000000,0.000009,0.000263,0.000186,0.000273,0.000253,0.000253,0.002114,0.527851,-0.003846,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000258,0.000001,0.000002,0.000001,0.000010,0.000254,0.000184,0.000265,0.000162,0.000162,0.002045,0.524087,-0.003764,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000800,0.000055,0.000098,0.000055,0.000011,0.000246,0.000183,0.000312,0.000072,0.000072,0.001982,0.520888,-0.003199,1.000000,0.000045 +26,2022-08-02 02:00:00,0.000852,0.000097,0.000131,0.000097,0.000012,0.000239,0.000182,0.000348,0.000000,0.000000,0.001925,0.517807,-0.003081,1.000000,0.000079 +27,2022-08-02 03:00:00,0.000845,0.000123,0.000129,0.000123,0.000013,0.000232,0.000180,0.000368,0.000000,0.000000,0.001873,0.514750,-0.003057,1.000000,0.000084 +28,2022-08-02 04:00:00,0.000904,0.000138,0.000145,0.000138,0.000014,0.000226,0.000179,0.000378,0.000000,0.000000,0.001826,0.511762,-0.002988,1.000000,0.000091 +29,2022-08-02 05:00:00,0.000758,0.000120,0.000104,0.000120,0.000015,0.000221,0.000178,0.000355,0.000000,0.000000,0.001783,0.508696,-0.003066,1.000000,0.000076 +30,2022-08-02 06:00:00,0.000707,0.000105,0.000091,0.000105,0.000016,0.000216,0.000176,0.000337,0.000000,0.000000,0.001743,0.505620,-0.003076,1.000000,0.000062 +31,2022-08-02 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000017,0.000211,0.000175,0.000271,0.000000,0.000000,0.001707,0.501962,-0.003658,1.000000,0.000018 +32,2022-08-02 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000018,0.000207,0.000173,0.000243,0.000000,0.000000,0.001674,0.498336,-0.003625,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000203,0.000172,0.000222,0.000000,0.000000,0.001642,0.494743,-0.003593,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000199,0.000170,0.000219,0.000000,0.000000,0.001613,0.491183,-0.003561,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000196,0.000169,0.000217,0.000000,0.000000,0.001586,0.487654,-0.003529,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000193,0.000167,0.000215,0.000000,0.000000,0.001561,0.484157,-0.003497,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000190,0.000166,0.000213,0.000000,0.000000,0.001537,0.480692,-0.003466,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000187,0.000164,0.000211,0.000116,0.000116,0.001514,0.477142,-0.003550,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000184,0.000162,0.000209,0.000327,0.000327,0.001492,0.473415,-0.003727,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000181,0.000161,0.000208,0.000455,0.000455,0.001472,0.469595,-0.003820,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000179,0.000159,0.000207,0.000548,0.000548,0.001452,0.465717,-0.003878,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000029,0.000177,0.000158,0.000206,0.000629,0.000629,0.001433,0.462043,-0.003674,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000019,0.000000,0.000000,0.000000,0.000030,0.000174,0.000156,0.000205,0.000572,0.000572,0.001415,0.458228,-0.003815,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000172,0.000154,0.000204,0.000524,0.000524,0.001397,0.454476,-0.003752,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000170,0.000153,0.000203,0.000511,0.000511,0.001380,0.450770,-0.003706,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000168,0.000151,0.000202,0.000432,0.000432,0.001363,0.447175,-0.003595,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000166,0.000150,0.000201,0.000330,0.000330,0.001347,0.443715,-0.003461,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000164,0.000148,0.000201,0.000184,0.000184,0.001331,0.440430,-0.003285,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000162,0.000147,0.000200,0.000038,0.000038,0.001316,0.437318,-0.003111,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000160,0.000146,0.000200,0.000000,0.000000,0.001302,0.434273,-0.003046,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000158,0.000144,0.000200,0.000000,0.000000,0.001288,0.431254,-0.003018,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000157,0.000143,0.000199,0.000000,0.000000,0.001274,0.428263,-0.002991,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000155,0.000142,0.000199,0.000000,0.000000,0.001261,0.425298,-0.002965,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000153,0.000140,0.000199,0.000000,0.000000,0.001248,0.422360,-0.002938,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000152,0.000139,0.000199,0.000000,0.000000,0.001235,0.419449,-0.002911,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000150,0.000138,0.000199,0.000000,0.000000,0.001223,0.416564,-0.002885,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000050,0.000149,0.000137,0.000199,0.000000,0.000000,0.001211,0.413705,-0.002859,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000052,0.000147,0.000135,0.000199,0.000000,0.000000,0.001199,0.410871,-0.002833,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000053,0.000146,0.000134,0.000199,0.000000,0.000000,0.001187,0.408064,-0.002807,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000055,0.000144,0.000133,0.000199,0.000000,0.000000,0.001176,0.405283,-0.002781,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000143,0.000132,0.000199,0.000000,0.000000,0.001165,0.402524,-0.002759,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000142,0.000131,0.000200,0.000126,0.000126,0.001154,0.399666,-0.002859,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000140,0.000129,0.000200,0.000369,0.000369,0.001143,0.396591,-0.003074,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000139,0.000128,0.000200,0.000521,0.000521,0.001132,0.393394,-0.003197,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000137,0.000126,0.000200,0.000626,0.000626,0.001121,0.390121,-0.003273,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000136,0.000125,0.000201,0.000626,0.000626,0.001110,0.386878,-0.003243,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000135,0.000124,0.000201,0.000569,0.000569,0.001099,0.383721,-0.003157,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001069,0.000029,0.000053,0.000029,0.000068,0.000133,0.000123,0.000230,0.000500,0.000500,0.001088,0.381667,-0.002054,1.000000,0.000024 +69,2022-08-03 21:00:00,0.000180,0.000013,0.000000,0.000013,0.000069,0.000132,0.000122,0.000215,0.000480,0.000480,0.001078,0.378823,-0.002844,1.000000,0.000011 +70,2022-08-03 22:00:00,0.000000,0.000011,0.000000,0.000011,0.000071,0.000131,0.000120,0.000213,0.000401,0.000401,0.001067,0.375904,-0.002919,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000019,0.000000,0.000000,0.000000,0.000073,0.000130,0.000119,0.000202,0.000304,0.000304,0.001057,0.373127,-0.002777,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000128,0.000118,0.000203,0.000184,0.000184,0.001046,0.370474,-0.002652,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000127,0.000117,0.000203,0.000050,0.000050,0.001036,0.367978,-0.002496,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000126,0.000116,0.000204,0.000000,0.000000,0.001026,0.365554,-0.002424,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000125,0.000115,0.000204,0.000000,0.000000,0.001017,0.363152,-0.002402,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000123,0.000114,0.000205,0.000000,0.000000,0.001007,0.360771,-0.002381,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000122,0.000113,0.000205,0.000000,0.000000,0.000998,0.358412,-0.002359,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000085,0.000121,0.000112,0.000206,0.000000,0.000000,0.000988,0.356075,-0.002337,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000087,0.000120,0.000111,0.000207,0.000000,0.000000,0.000979,0.353761,-0.002314,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000003,0.000000,0.000000,0.000000,0.000089,0.000119,0.000110,0.000207,0.000000,0.000000,0.000970,0.351468,-0.002293,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000090,0.000118,0.000109,0.000208,0.000000,0.000000,0.000961,0.349195,-0.002272,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000092,0.000117,0.000108,0.000209,0.000000,0.000000,0.000952,0.346942,-0.002253,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000004,0.000000,0.000000,0.000000,0.000094,0.000115,0.000107,0.000210,0.000000,0.000000,0.000944,0.344710,-0.002232,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000003,0.000000,0.000000,0.000000,0.000096,0.000114,0.000106,0.000210,0.000000,0.000000,0.000935,0.342498,-0.002212,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000113,0.000105,0.000211,0.000000,0.000000,0.000927,0.340303,-0.002196,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000112,0.000104,0.000212,0.000123,0.000123,0.000918,0.338005,-0.002298,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000111,0.000103,0.000213,0.000362,0.000362,0.000910,0.335491,-0.002514,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000110,0.000102,0.000213,0.000520,0.000520,0.000901,0.332842,-0.002648,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000109,0.000101,0.000214,0.000627,0.000627,0.000893,0.330112,-0.002730,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000108,0.000099,0.000215,0.000693,0.000693,0.000884,0.327341,-0.002772,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000107,0.000098,0.000216,0.000628,0.000628,0.000875,0.324659,-0.002682,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000106,0.000097,0.000217,0.000558,0.000558,0.000866,0.322070,-0.002589,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000105,0.000096,0.000217,0.000518,0.000518,0.000857,0.319544,-0.002526,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000104,0.000095,0.000218,0.000433,0.000433,0.000849,0.317125,-0.002419,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000103,0.000094,0.000219,0.000338,0.000338,0.000840,0.314822,-0.002303,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000102,0.000093,0.000220,0.000195,0.000195,0.000831,0.312681,-0.002141,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000101,0.000092,0.000221,0.000057,0.000057,0.000823,0.310696,-0.001985,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000100,0.000091,0.000222,0.000000,0.000000,0.000815,0.308786,-0.001911,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000099,0.000090,0.000222,0.000000,0.000000,0.000807,0.306893,-0.001893,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000098,0.000090,0.000223,0.000000,0.000000,0.000799,0.305016,-0.001876,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000097,0.000089,0.000224,0.000000,0.000000,0.000791,0.303157,-0.001860,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000096,0.000088,0.000225,0.000000,0.000000,0.000783,0.301314,-0.001843,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000095,0.000087,0.000226,0.000000,0.000000,0.000776,0.299487,-0.001826,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000094,0.000086,0.000227,0.000000,0.000000,0.000769,0.297677,-0.001810,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000093,0.000086,0.000228,0.000000,0.000000,0.000761,0.295884,-0.001794,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000092,0.000085,0.000229,0.000000,0.000000,0.000754,0.294106,-0.001778,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000091,0.000084,0.000231,0.000000,0.000000,0.000747,0.292344,-0.001762,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000090,0.000083,0.000232,0.000000,0.000000,0.000740,0.290598,-0.001746,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000089,0.000083,0.000233,0.000000,0.000000,0.000733,0.288868,-0.001730,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000089,0.000082,0.000234,0.000135,0.000135,0.000727,0.287019,-0.001849,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000088,0.000081,0.000235,0.000376,0.000376,0.000720,0.284949,-0.002070,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000087,0.000080,0.000236,0.000529,0.000529,0.000713,0.282745,-0.002204,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000086,0.000079,0.000237,0.000639,0.000639,0.000706,0.280452,-0.002293,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000085,0.000078,0.000238,0.000620,0.000620,0.000699,0.278197,-0.002254,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000189,0.000000,0.000000,0.000000,0.000155,0.000084,0.000077,0.000239,0.000563,0.000563,0.000692,0.276207,-0.001990,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000157,0.000083,0.000076,0.000240,0.000501,0.000501,0.000684,0.274296,-0.001911,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000189,0.000000,0.000000,0.000000,0.000159,0.000083,0.000076,0.000241,0.000465,0.000465,0.000677,0.272438,-0.001858,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000200,0.000000,0.000000,0.000000,0.000161,0.000082,0.000075,0.000242,0.000390,0.000390,0.000671,0.270682,-0.001756,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000300,0.000000,0.000000,0.000000,0.000163,0.000081,0.000074,0.000244,0.000304,0.000304,0.000664,0.269126,-0.001556,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000200,0.000000,0.000000,0.000000,0.000165,0.000080,0.000073,0.000245,0.000187,0.000187,0.000657,0.267601,-0.001525,1.000000,0.000000 +121,2022-08-06 01:00:00,0.001019,0.000069,0.000125,0.000069,0.000167,0.000079,0.000073,0.000315,0.000068,0.000068,0.000651,0.266896,-0.000706,1.000000,0.000056 +122,2022-08-06 02:00:00,0.001182,0.000134,0.000187,0.000134,0.000169,0.000079,0.000073,0.000382,0.000000,0.000000,0.000645,0.266363,-0.000533,1.000000,0.000109 +123,2022-08-06 03:00:00,0.000912,0.000136,0.000116,0.000136,0.000170,0.000078,0.000073,0.000384,0.000000,0.000000,0.000640,0.265639,-0.000724,1.000000,0.000090 +124,2022-08-06 04:00:00,0.000820,0.000118,0.000095,0.000118,0.000172,0.000077,0.000072,0.000368,0.000000,0.000000,0.000635,0.264851,-0.000788,1.000000,0.000066 +125,2022-08-06 05:00:00,0.000820,0.000099,0.000095,0.000099,0.000174,0.000077,0.000072,0.000350,0.000000,0.000000,0.000630,0.264070,-0.000781,1.000000,0.000062 +126,2022-08-06 06:00:00,0.000831,0.000096,0.000097,0.000096,0.000176,0.000076,0.000072,0.000349,0.000000,0.000000,0.000625,0.263305,-0.000765,1.000000,0.000063 +127,2022-08-06 07:00:00,0.000003,0.000043,0.000000,0.000043,0.000178,0.000076,0.000071,0.000297,0.000000,0.000000,0.000621,0.261822,-0.001483,1.000000,0.000019 +128,2022-08-06 08:00:00,0.000002,0.000019,0.000000,0.000019,0.000180,0.000075,0.000070,0.000275,0.000000,0.000000,0.000616,0.260352,-0.001470,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000182,0.000074,0.000070,0.000257,0.000000,0.000000,0.000611,0.258896,-0.001456,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000184,0.000074,0.000069,0.000258,0.000000,0.000000,0.000607,0.257453,-0.001443,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000186,0.000073,0.000068,0.000259,0.000000,0.000000,0.000602,0.256022,-0.001431,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000188,0.000073,0.000068,0.000261,0.000000,0.000000,0.000597,0.254604,-0.001419,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000072,0.000067,0.000262,0.000000,0.000000,0.000592,0.253196,-0.001408,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000072,0.000067,0.000263,0.000116,0.000116,0.000587,0.251687,-0.001510,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000071,0.000066,0.000265,0.000341,0.000341,0.000582,0.249968,-0.001719,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000070,0.000065,0.000266,0.000482,0.000482,0.000577,0.248124,-0.001844,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000070,0.000064,0.000267,0.000594,0.000594,0.000572,0.246185,-0.001938,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000069,0.000063,0.000269,0.000673,0.000673,0.000566,0.244186,-0.001999,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000068,0.000063,0.000270,0.000624,0.000624,0.000560,0.242254,-0.001932,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000068,0.000062,0.000271,0.000556,0.000556,0.000555,0.240406,-0.001848,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000067,0.000061,0.000272,0.000521,0.000521,0.000549,0.238609,-0.001797,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000066,0.000060,0.000273,0.000430,0.000430,0.000543,0.236919,-0.001690,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000065,0.000060,0.000275,0.000333,0.000333,0.000537,0.235339,-0.001579,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000065,0.000059,0.000276,0.000191,0.000191,0.000531,0.233915,-0.001424,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000064,0.000058,0.000277,0.000050,0.000050,0.000526,0.232644,-0.001271,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000063,0.000058,0.000278,0.000000,0.000000,0.000520,0.231433,-0.001211,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000063,0.000057,0.000280,0.000000,0.000000,0.000515,0.230233,-0.001200,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000062,0.000057,0.000281,0.000000,0.000000,0.000510,0.229044,-0.001189,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000061,0.000056,0.000282,0.000000,0.000000,0.000505,0.227866,-0.001178,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000061,0.000056,0.000283,0.000000,0.000000,0.000500,0.226698,-0.001168,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000060,0.000055,0.000285,0.000000,0.000000,0.000495,0.225541,-0.001157,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000060,0.000055,0.000286,0.000000,0.000000,0.000490,0.224394,-0.001147,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000059,0.000054,0.000287,0.000000,0.000000,0.000485,0.223257,-0.001137,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000058,0.000054,0.000289,0.000000,0.000000,0.000481,0.222130,-0.001126,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000058,0.000053,0.000290,0.000000,0.000000,0.000476,0.221014,-0.001116,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000234,0.000057,0.000053,0.000291,0.000000,0.000000,0.000472,0.219909,-0.001105,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000057,0.000052,0.000293,0.000000,0.000000,0.000467,0.218812,-0.001097,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000056,0.000052,0.000294,0.000113,0.000113,0.000463,0.217613,-0.001199,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000056,0.000051,0.000295,0.000352,0.000352,0.000458,0.216188,-0.001425,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000055,0.000051,0.000297,0.000503,0.000503,0.000454,0.214626,-0.001562,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000055,0.000050,0.000298,0.000609,0.000609,0.000449,0.212973,-0.001653,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000054,0.000049,0.000299,0.000675,0.000675,0.000444,0.211269,-0.001704,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000053,0.000048,0.000301,0.000620,0.000620,0.000439,0.209636,-0.001633,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000053,0.000048,0.000302,0.000548,0.000548,0.000434,0.208089,-0.001548,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000052,0.000047,0.000303,0.000522,0.000522,0.000429,0.206581,-0.001507,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000052,0.000046,0.000304,0.000435,0.000435,0.000424,0.205173,-0.001408,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000051,0.000046,0.000305,0.000329,0.000329,0.000419,0.203883,-0.001290,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000050,0.000045,0.000307,0.000160,0.000160,0.000414,0.202772,-0.001111,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000050,0.000045,0.000308,0.000018,0.000018,0.000410,0.201811,-0.000961,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000049,0.000045,0.000309,0.000000,0.000000,0.000405,0.200877,-0.000934,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000049,0.000044,0.000310,0.000000,0.000000,0.000401,0.199951,-0.000926,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000048,0.000044,0.000312,0.000000,0.000000,0.000396,0.199033,-0.000918,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000048,0.000043,0.000313,0.000000,0.000000,0.000392,0.198124,-0.000909,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000005,0.000000,0.000000,0.000000,0.000267,0.000047,0.000043,0.000314,0.000000,0.000000,0.000388,0.197227,-0.000897,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000004,0.000000,0.000000,0.000000,0.000269,0.000047,0.000043,0.000316,0.000000,0.000000,0.000384,0.196339,-0.000889,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000006,0.000000,0.000000,0.000000,0.000271,0.000046,0.000042,0.000317,0.000000,0.000000,0.000380,0.195459,-0.000880,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000005,0.000000,0.000000,0.000000,0.000273,0.000046,0.000042,0.000318,0.000000,0.000000,0.000376,0.194586,-0.000873,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000005,0.000000,0.000000,0.000000,0.000274,0.000045,0.000042,0.000320,0.000000,0.000000,0.000373,0.193722,-0.000865,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000005,0.000000,0.000000,0.000000,0.000276,0.000045,0.000041,0.000321,0.000000,0.000000,0.000369,0.192865,-0.000856,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000005,0.000000,0.000000,0.000000,0.000278,0.000044,0.000041,0.000322,0.000000,0.000000,0.000366,0.192016,-0.000849,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000280,0.000044,0.000040,0.000324,0.000000,0.000000,0.000362,0.191170,-0.000846,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000281,0.000044,0.000040,0.000325,0.000097,0.000097,0.000359,0.190234,-0.000935,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000283,0.000043,0.000040,0.000326,0.000336,0.000336,0.000355,0.189071,-0.001163,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000285,0.000043,0.000039,0.000328,0.000492,0.000492,0.000351,0.187763,-0.001308,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000287,0.000042,0.000038,0.000329,0.000586,0.000586,0.000347,0.186374,-0.001389,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000288,0.000042,0.000038,0.000330,0.000665,0.000665,0.000344,0.184920,-0.001454,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000290,0.000041,0.000037,0.000331,0.000603,0.000603,0.000339,0.183539,-0.001381,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000292,0.000041,0.000037,0.000333,0.000537,0.000537,0.000335,0.182236,-0.001303,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000294,0.000040,0.000036,0.000334,0.000514,0.000514,0.000331,0.180968,-0.001269,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000295,0.000040,0.000036,0.000335,0.000431,0.000431,0.000327,0.179794,-0.001174,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000297,0.000039,0.000035,0.000336,0.000332,0.000332,0.000323,0.178728,-0.001066,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000299,0.000039,0.000035,0.000337,0.000189,0.000189,0.000319,0.177813,-0.000915,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000300,0.000038,0.000034,0.000339,0.000041,0.000041,0.000315,0.177054,-0.000759,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000146,0.000002,0.000003,0.000002,0.000302,0.000038,0.000034,0.000341,0.000000,0.000000,0.000311,0.176483,-0.000571,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000048,0.000001,0.000000,0.000001,0.000304,0.000037,0.000034,0.000342,0.000000,0.000000,0.000308,0.175823,-0.000660,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000305,0.000037,0.000034,0.000343,0.000000,0.000000,0.000304,0.175121,-0.000701,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000307,0.000037,0.000033,0.000344,0.000000,0.000000,0.000301,0.174428,-0.000694,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000309,0.000036,0.000033,0.000345,0.000000,0.000000,0.000298,0.173742,-0.000686,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000004,0.000000,0.000000,0.000000,0.000310,0.000036,0.000033,0.000346,0.000000,0.000000,0.000295,0.173063,-0.000678,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000312,0.000035,0.000032,0.000347,0.000000,0.000000,0.000292,0.172391,-0.000673,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000314,0.000035,0.000032,0.000349,0.000000,0.000000,0.000289,0.171724,-0.000666,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000005,0.000000,0.000000,0.000000,0.000315,0.000035,0.000032,0.000350,0.000000,0.000000,0.000286,0.171065,-0.000659,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000317,0.000034,0.000031,0.000351,0.000000,0.000000,0.000283,0.170409,-0.000656,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000006,0.000000,0.000000,0.000000,0.000318,0.000034,0.000031,0.000352,0.000000,0.000000,0.000280,0.169762,-0.000647,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000320,0.000034,0.000031,0.000354,0.000000,0.000000,0.000277,0.169115,-0.000647,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000322,0.000033,0.000031,0.000355,0.000107,0.000107,0.000275,0.168368,-0.000747,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619309.csv b/test/channel_loss/channel_forcing/et/cat-2619309.csv new file mode 100644 index 000000000..cef0757f0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619309.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000248,0.000001,0.000002,0.000001,0.000000,0.001450,0.000212,0.001451,0.000170,0.000170,0.010359,0.541097,-0.004727,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001279,0.000210,0.001280,0.000051,0.000051,0.009289,0.536293,-0.004804,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001136,0.000207,0.001136,0.000000,0.000000,0.008360,0.531590,-0.004703,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001014,0.000205,0.001014,0.000000,0.000000,0.007552,0.526935,-0.004654,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000910,0.000203,0.000910,0.000000,0.000000,0.006845,0.522329,-0.004606,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000820,0.000201,0.000821,0.000000,0.000000,0.006226,0.517771,-0.004558,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000743,0.000199,0.000743,0.000000,0.000000,0.005682,0.513260,-0.004511,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000676,0.000197,0.000676,0.000000,0.000000,0.005203,0.508796,-0.004464,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000617,0.000195,0.000618,0.000000,0.000000,0.004781,0.504378,-0.004418,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000566,0.000193,0.000567,0.000000,0.000000,0.004408,0.500005,-0.004372,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000521,0.000191,0.000523,0.000000,0.000000,0.004078,0.495678,-0.004327,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000482,0.000189,0.000484,0.000000,0.000000,0.003785,0.491396,-0.004282,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000447,0.000187,0.000450,0.000000,0.000000,0.003525,0.487159,-0.004238,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000416,0.000185,0.000419,0.000000,0.000000,0.003293,0.482965,-0.004194,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000389,0.000183,0.000393,0.000128,0.000128,0.003087,0.478689,-0.004276,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000365,0.000181,0.000369,0.000351,0.000351,0.002903,0.474235,-0.004453,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000343,0.000179,0.000348,0.000504,0.000504,0.002738,0.469676,-0.004559,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000324,0.000177,0.000329,0.000601,0.000601,0.002591,0.465069,-0.004607,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000307,0.000175,0.000313,0.000552,0.000552,0.002458,0.460558,-0.004511,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000168,0.000000,0.000000,0.000000,0.000006,0.000292,0.000173,0.000298,0.000495,0.000495,0.002339,0.456317,-0.004242,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000177,0.000000,0.000000,0.000000,0.000007,0.000278,0.000171,0.000285,0.000450,0.000450,0.002232,0.452173,-0.004144,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000328,0.000000,0.000000,0.000000,0.000008,0.000266,0.000169,0.000273,0.000367,0.000367,0.002135,0.448303,-0.003870,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000208,0.000000,0.000000,0.000000,0.000009,0.000254,0.000167,0.000263,0.000322,0.000322,0.002048,0.444400,-0.003904,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000255,0.000000,0.000000,0.000000,0.000009,0.000244,0.000165,0.000254,0.000242,0.000242,0.001969,0.440662,-0.003738,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000255,0.000001,0.000002,0.000001,0.000010,0.000235,0.000164,0.000247,0.000158,0.000158,0.001897,0.437044,-0.003618,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000826,0.000070,0.000127,0.000070,0.000011,0.000227,0.000162,0.000308,0.000068,0.000068,0.001833,0.433994,-0.003050,1.000000,0.000058 +26,2022-08-02 02:00:00,0.000957,0.000138,0.000193,0.000138,0.000012,0.000220,0.000161,0.000370,0.000000,0.000000,0.001774,0.431107,-0.002887,1.000000,0.000112 +27,2022-08-02 03:00:00,0.000933,0.000175,0.000184,0.000175,0.000013,0.000213,0.000160,0.000400,0.000000,0.000000,0.001721,0.428236,-0.002871,1.000000,0.000121 +28,2022-08-02 04:00:00,0.001031,0.000205,0.000219,0.000205,0.000014,0.000207,0.000158,0.000425,0.000000,0.000000,0.001673,0.425456,-0.002779,1.000000,0.000135 +29,2022-08-02 05:00:00,0.000781,0.000164,0.000132,0.000164,0.000014,0.000201,0.000157,0.000380,0.000000,0.000000,0.001628,0.422545,-0.002912,1.000000,0.000103 +30,2022-08-02 06:00:00,0.000682,0.000133,0.000103,0.000133,0.000015,0.000196,0.000156,0.000345,0.000000,0.000000,0.001588,0.419595,-0.002950,1.000000,0.000073 +31,2022-08-02 07:00:00,0.000000,0.000052,0.000000,0.000052,0.000016,0.000191,0.000154,0.000260,0.000000,0.000000,0.001551,0.416101,-0.003493,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000017,0.000187,0.000152,0.000225,0.000000,0.000000,0.001516,0.412644,-0.003457,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000183,0.000151,0.000201,0.000000,0.000000,0.001484,0.409223,-0.003421,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000179,0.000149,0.000199,0.000000,0.000000,0.001454,0.405838,-0.003386,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000176,0.000148,0.000196,0.000000,0.000000,0.001426,0.402487,-0.003351,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000172,0.000146,0.000194,0.000000,0.000000,0.001400,0.399172,-0.003316,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000021,0.000000,0.000000,0.000000,0.000023,0.000169,0.000145,0.000192,0.000000,0.000000,0.001375,0.395911,-0.003260,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000020,0.000000,0.000000,0.000000,0.000024,0.000166,0.000143,0.000190,0.000116,0.000116,0.001352,0.392568,-0.003343,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000013,0.000000,0.000000,0.000000,0.000025,0.000164,0.000142,0.000189,0.000320,0.000320,0.001330,0.389051,-0.003517,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000013,0.000000,0.000000,0.000000,0.000026,0.000161,0.000140,0.000187,0.000442,0.000442,0.001309,0.385451,-0.003600,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000013,0.000000,0.000000,0.000000,0.000027,0.000158,0.000138,0.000186,0.000531,0.000531,0.001289,0.381800,-0.003651,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000237,0.000000,0.000000,0.000000,0.000029,0.000156,0.000137,0.000185,0.000607,0.000607,0.001269,0.378332,-0.003467,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000051,0.000000,0.000000,0.000000,0.000030,0.000154,0.000135,0.000184,0.000549,0.000549,0.001251,0.374774,-0.003559,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000151,0.000133,0.000183,0.000511,0.000511,0.001233,0.371240,-0.003534,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000149,0.000132,0.000182,0.000505,0.000505,0.001215,0.367749,-0.003491,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000147,0.000130,0.000181,0.000429,0.000429,0.001198,0.364369,-0.003380,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000145,0.000129,0.000180,0.000320,0.000320,0.001182,0.361131,-0.003238,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000143,0.000127,0.000179,0.000178,0.000178,0.001166,0.358068,-0.003063,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000141,0.000126,0.000179,0.000034,0.000034,0.001150,0.355179,-0.002889,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000139,0.000125,0.000178,0.000000,0.000000,0.001136,0.352354,-0.002825,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000138,0.000123,0.000178,0.000000,0.000000,0.001121,0.349558,-0.002796,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000136,0.000122,0.000178,0.000000,0.000000,0.001108,0.346791,-0.002767,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000134,0.000121,0.000177,0.000000,0.000000,0.001094,0.344053,-0.002738,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000133,0.000120,0.000177,0.000000,0.000000,0.001081,0.341343,-0.002710,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000131,0.000118,0.000177,0.000000,0.000000,0.001068,0.338661,-0.002682,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000129,0.000117,0.000177,0.000000,0.000000,0.001056,0.336007,-0.002654,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000128,0.000116,0.000177,0.000000,0.000000,0.001044,0.333381,-0.002626,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000126,0.000115,0.000177,0.000000,0.000000,0.001032,0.330782,-0.002599,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000125,0.000113,0.000177,0.000000,0.000000,0.001021,0.328209,-0.002572,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000124,0.000112,0.000177,0.000000,0.000000,0.001009,0.325664,-0.002546,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000122,0.000111,0.000177,0.000000,0.000000,0.000998,0.323145,-0.002519,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000121,0.000110,0.000177,0.000124,0.000124,0.000987,0.320529,-0.002615,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000120,0.000109,0.000178,0.000363,0.000363,0.000976,0.317704,-0.002825,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000118,0.000107,0.000178,0.000513,0.000513,0.000965,0.314760,-0.002944,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000117,0.000106,0.000178,0.000618,0.000618,0.000954,0.311742,-0.003018,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000115,0.000104,0.000178,0.000611,0.000611,0.000943,0.308762,-0.002979,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000114,0.000103,0.000178,0.000553,0.000553,0.000932,0.305871,-0.002891,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001422,0.000087,0.000158,0.000087,0.000066,0.000113,0.000102,0.000266,0.000493,0.000493,0.000922,0.304320,-0.001552,1.000000,0.000071 +69,2022-08-03 21:00:00,0.000262,0.000040,0.000000,0.000040,0.000068,0.000112,0.000101,0.000219,0.000474,0.000474,0.000912,0.301812,-0.002507,1.000000,0.000032 +70,2022-08-03 22:00:00,0.000000,0.000032,0.000000,0.000032,0.000069,0.000110,0.000100,0.000211,0.000399,0.000399,0.000901,0.299145,-0.002667,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000073,0.000000,0.000000,0.000000,0.000071,0.000109,0.000099,0.000180,0.000295,0.000295,0.000891,0.296680,-0.002465,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000108,0.000098,0.000180,0.000181,0.000181,0.000881,0.294283,-0.002397,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000107,0.000097,0.000181,0.000046,0.000046,0.000871,0.292043,-0.002240,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000105,0.000096,0.000181,0.000000,0.000000,0.000862,0.289873,-0.002171,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000104,0.000095,0.000182,0.000000,0.000000,0.000852,0.287725,-0.002148,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000103,0.000094,0.000182,0.000000,0.000000,0.000843,0.285599,-0.002126,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000102,0.000093,0.000183,0.000000,0.000000,0.000834,0.283495,-0.002104,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000101,0.000092,0.000183,0.000000,0.000000,0.000825,0.281413,-0.002082,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000100,0.000091,0.000184,0.000000,0.000000,0.000816,0.279352,-0.002060,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000099,0.000090,0.000184,0.000000,0.000000,0.000807,0.277313,-0.002039,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000098,0.000089,0.000185,0.000000,0.000000,0.000799,0.275296,-0.002018,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000097,0.000088,0.000186,0.000000,0.000000,0.000790,0.273299,-0.001997,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000095,0.000087,0.000186,0.000000,0.000000,0.000782,0.271322,-0.001976,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000094,0.000086,0.000187,0.000000,0.000000,0.000774,0.269367,-0.001956,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000093,0.000085,0.000188,0.000000,0.000000,0.000766,0.267431,-0.001935,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000092,0.000084,0.000189,0.000120,0.000120,0.000758,0.265397,-0.002035,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000091,0.000083,0.000189,0.000357,0.000357,0.000750,0.263149,-0.002248,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000090,0.000082,0.000190,0.000512,0.000512,0.000741,0.260772,-0.002377,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000089,0.000081,0.000191,0.000617,0.000617,0.000733,0.258315,-0.002457,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000088,0.000080,0.000192,0.000683,0.000683,0.000725,0.255818,-0.002497,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000087,0.000079,0.000192,0.000614,0.000614,0.000716,0.253415,-0.002403,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000086,0.000078,0.000193,0.000547,0.000547,0.000708,0.251104,-0.002311,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000085,0.000077,0.000194,0.000514,0.000514,0.000699,0.248849,-0.002255,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000084,0.000076,0.000194,0.000435,0.000435,0.000691,0.246696,-0.002153,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000083,0.000075,0.000195,0.000331,0.000331,0.000682,0.244667,-0.002028,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000082,0.000074,0.000196,0.000189,0.000189,0.000674,0.242801,-0.001867,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000081,0.000073,0.000197,0.000052,0.000052,0.000666,0.241090,-0.001711,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000080,0.000072,0.000198,0.000000,0.000000,0.000658,0.239447,-0.001642,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000079,0.000072,0.000198,0.000000,0.000000,0.000651,0.237822,-0.001625,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000078,0.000071,0.000199,0.000000,0.000000,0.000643,0.236214,-0.001608,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000077,0.000070,0.000200,0.000000,0.000000,0.000636,0.234622,-0.001592,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000077,0.000069,0.000201,0.000000,0.000000,0.000629,0.233047,-0.001575,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000076,0.000069,0.000202,0.000000,0.000000,0.000622,0.231488,-0.001559,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000075,0.000068,0.000203,0.000000,0.000000,0.000615,0.229945,-0.001543,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000074,0.000067,0.000204,0.000000,0.000000,0.000608,0.228418,-0.001527,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000073,0.000067,0.000205,0.000000,0.000000,0.000601,0.226907,-0.001511,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000072,0.000066,0.000206,0.000000,0.000000,0.000595,0.225412,-0.001495,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000072,0.000065,0.000207,0.000000,0.000000,0.000589,0.223932,-0.001480,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000071,0.000065,0.000208,0.000000,0.000000,0.000582,0.222468,-0.001464,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000070,0.000064,0.000209,0.000132,0.000132,0.000576,0.220888,-0.001580,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000069,0.000063,0.000210,0.000369,0.000369,0.000570,0.219091,-0.001798,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000069,0.000062,0.000211,0.000522,0.000522,0.000563,0.217160,-0.001930,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000068,0.000061,0.000212,0.000632,0.000632,0.000557,0.215140,-0.002020,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000067,0.000060,0.000213,0.000608,0.000608,0.000550,0.213165,-0.001975,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000104,0.000000,0.000000,0.000000,0.000148,0.000066,0.000059,0.000214,0.000556,0.000556,0.000543,0.211364,-0.001801,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000104,0.000000,0.000000,0.000000,0.000150,0.000065,0.000059,0.000215,0.000499,0.000499,0.000537,0.209639,-0.001725,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000110,0.000000,0.000000,0.000000,0.000151,0.000064,0.000058,0.000216,0.000464,0.000464,0.000530,0.207973,-0.001666,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000110,0.000000,0.000000,0.000000,0.000153,0.000064,0.000057,0.000217,0.000391,0.000391,0.000523,0.206396,-0.001576,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000202,0.000000,0.000000,0.000000,0.000155,0.000063,0.000057,0.000218,0.000300,0.000300,0.000517,0.205017,-0.001380,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000110,0.000000,0.000000,0.000000,0.000157,0.000062,0.000056,0.000219,0.000181,0.000181,0.000511,0.203678,-0.001338,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000759,0.000046,0.000083,0.000046,0.000159,0.000061,0.000056,0.000266,0.000064,0.000064,0.000505,0.203030,-0.000648,1.000000,0.000038 +122,2022-08-06 02:00:00,0.001213,0.000149,0.000233,0.000149,0.000160,0.000061,0.000055,0.000370,0.000000,0.000000,0.000500,0.202752,-0.000278,1.000000,0.000121 +123,2022-08-06 03:00:00,0.000847,0.000141,0.000120,0.000141,0.000162,0.000060,0.000055,0.000363,0.000000,0.000000,0.000495,0.202226,-0.000526,1.000000,0.000101 +124,2022-08-06 04:00:00,0.000711,0.000124,0.000087,0.000124,0.000164,0.000060,0.000055,0.000348,0.000000,0.000000,0.000490,0.201605,-0.000622,1.000000,0.000063 +125,2022-08-06 05:00:00,0.000724,0.000095,0.000090,0.000095,0.000166,0.000059,0.000055,0.000320,0.000000,0.000000,0.000486,0.201000,-0.000605,1.000000,0.000058 +126,2022-08-06 06:00:00,0.000775,0.000096,0.000102,0.000096,0.000168,0.000059,0.000054,0.000322,0.000000,0.000000,0.000482,0.200439,-0.000561,1.000000,0.000064 +127,2022-08-06 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000169,0.000058,0.000054,0.000271,0.000000,0.000000,0.000477,0.199218,-0.001221,1.000000,0.000020 +128,2022-08-06 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000171,0.000058,0.000053,0.000249,0.000000,0.000000,0.000473,0.198010,-0.001208,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000053,0.000230,0.000000,0.000000,0.000469,0.196815,-0.001196,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000056,0.000052,0.000231,0.000000,0.000000,0.000465,0.195631,-0.001183,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000056,0.000052,0.000233,0.000000,0.000000,0.000460,0.194460,-0.001171,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000055,0.000051,0.000234,0.000000,0.000000,0.000456,0.193302,-0.001159,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000055,0.000051,0.000235,0.000000,0.000000,0.000452,0.192155,-0.001147,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000054,0.000050,0.000236,0.000113,0.000113,0.000447,0.190908,-0.001247,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000054,0.000049,0.000237,0.000334,0.000334,0.000443,0.189455,-0.001453,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000053,0.000049,0.000239,0.000471,0.000471,0.000438,0.187882,-0.001573,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000053,0.000048,0.000240,0.000582,0.000582,0.000433,0.186215,-0.001667,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000052,0.000047,0.000241,0.000661,0.000661,0.000428,0.184488,-0.001728,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000051,0.000046,0.000242,0.000609,0.000609,0.000423,0.182830,-0.001658,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000051,0.000046,0.000243,0.000548,0.000548,0.000418,0.181249,-0.001581,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000050,0.000045,0.000244,0.000518,0.000518,0.000413,0.179715,-0.001534,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000049,0.000044,0.000246,0.000430,0.000430,0.000407,0.178284,-0.001431,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000049,0.000044,0.000247,0.000326,0.000326,0.000402,0.176970,-0.001314,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000048,0.000043,0.000248,0.000187,0.000187,0.000397,0.175807,-0.001163,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000048,0.000043,0.000249,0.000045,0.000045,0.000392,0.174797,-0.001010,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000047,0.000042,0.000250,0.000000,0.000000,0.000387,0.173842,-0.000955,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000046,0.000042,0.000251,0.000000,0.000000,0.000382,0.172897,-0.000945,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000046,0.000041,0.000252,0.000000,0.000000,0.000378,0.171961,-0.000935,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000045,0.000041,0.000253,0.000000,0.000000,0.000373,0.171036,-0.000926,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000045,0.000040,0.000255,0.000000,0.000000,0.000369,0.170120,-0.000916,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000044,0.000040,0.000256,0.000000,0.000000,0.000364,0.169213,-0.000906,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000044,0.000040,0.000257,0.000000,0.000000,0.000360,0.168316,-0.000897,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000043,0.000039,0.000258,0.000000,0.000000,0.000356,0.167429,-0.000888,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000043,0.000039,0.000260,0.000000,0.000000,0.000352,0.166550,-0.000879,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000042,0.000038,0.000261,0.000000,0.000000,0.000348,0.165681,-0.000869,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000042,0.000038,0.000262,0.000000,0.000000,0.000344,0.164820,-0.000860,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000041,0.000038,0.000263,0.000000,0.000000,0.000341,0.163969,-0.000851,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000041,0.000037,0.000264,0.000111,0.000111,0.000337,0.163016,-0.000952,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000040,0.000037,0.000266,0.000348,0.000348,0.000333,0.161839,-0.001177,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000040,0.000036,0.000267,0.000495,0.000495,0.000329,0.160529,-0.001310,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000039,0.000035,0.000268,0.000600,0.000600,0.000325,0.159128,-0.001401,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000039,0.000035,0.000269,0.000661,0.000661,0.000321,0.157681,-0.001447,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000038,0.000034,0.000270,0.000603,0.000603,0.000316,0.156306,-0.001374,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000038,0.000033,0.000271,0.000539,0.000539,0.000312,0.155009,-0.001297,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000037,0.000033,0.000273,0.000521,0.000521,0.000307,0.153744,-0.001266,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000037,0.000032,0.000274,0.000434,0.000434,0.000303,0.152577,-0.001167,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000036,0.000032,0.000275,0.000324,0.000324,0.000299,0.151532,-0.001045,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000036,0.000031,0.000276,0.000156,0.000156,0.000294,0.150664,-0.000868,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000035,0.000031,0.000277,0.000016,0.000016,0.000290,0.149943,-0.000721,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000035,0.000031,0.000278,0.000000,0.000000,0.000286,0.149246,-0.000697,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000034,0.000030,0.000279,0.000000,0.000000,0.000282,0.148556,-0.000690,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000034,0.000030,0.000280,0.000000,0.000000,0.000279,0.147873,-0.000683,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000033,0.000030,0.000282,0.000000,0.000000,0.000275,0.147197,-0.000676,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000033,0.000029,0.000283,0.000000,0.000000,0.000272,0.146528,-0.000669,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000033,0.000029,0.000284,0.000000,0.000000,0.000268,0.145866,-0.000662,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000032,0.000029,0.000285,0.000000,0.000000,0.000265,0.145211,-0.000655,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000032,0.000029,0.000286,0.000000,0.000000,0.000262,0.144563,-0.000648,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000031,0.000028,0.000288,0.000000,0.000000,0.000259,0.143922,-0.000641,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000031,0.000028,0.000289,0.000000,0.000000,0.000256,0.143287,-0.000635,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000031,0.000028,0.000290,0.000000,0.000000,0.000253,0.142659,-0.000628,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000030,0.000027,0.000291,0.000000,0.000000,0.000250,0.142037,-0.000622,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000030,0.000027,0.000292,0.000094,0.000094,0.000247,0.141328,-0.000709,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000030,0.000027,0.000294,0.000331,0.000331,0.000244,0.140393,-0.000935,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000029,0.000026,0.000295,0.000486,0.000486,0.000241,0.139314,-0.001079,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000029,0.000026,0.000296,0.000576,0.000576,0.000238,0.138157,-0.001157,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000269,0.000028,0.000025,0.000297,0.000649,0.000649,0.000235,0.136940,-0.001217,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000270,0.000028,0.000025,0.000298,0.000595,0.000595,0.000231,0.135789,-0.001151,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000272,0.000028,0.000024,0.000299,0.000533,0.000533,0.000228,0.134711,-0.001078,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000273,0.000027,0.000024,0.000300,0.000507,0.000507,0.000224,0.133671,-0.001041,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000275,0.000027,0.000023,0.000301,0.000429,0.000429,0.000220,0.132717,-0.000953,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000276,0.000026,0.000023,0.000302,0.000324,0.000324,0.000217,0.131878,-0.000839,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000278,0.000026,0.000022,0.000303,0.000183,0.000183,0.000213,0.131186,-0.000691,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000279,0.000025,0.000022,0.000304,0.000036,0.000036,0.000210,0.130648,-0.000538,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000280,0.000025,0.000022,0.000306,0.000000,0.000000,0.000207,0.130151,-0.000497,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000282,0.000025,0.000022,0.000307,0.000000,0.000000,0.000204,0.129659,-0.000492,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000283,0.000024,0.000021,0.000308,0.000000,0.000000,0.000201,0.129172,-0.000487,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000285,0.000024,0.000021,0.000309,0.000000,0.000000,0.000198,0.128690,-0.000482,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000286,0.000024,0.000021,0.000310,0.000000,0.000000,0.000196,0.128213,-0.000477,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000288,0.000023,0.000021,0.000311,0.000000,0.000000,0.000193,0.127741,-0.000472,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000289,0.000023,0.000021,0.000312,0.000000,0.000000,0.000191,0.127274,-0.000467,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000291,0.000023,0.000020,0.000313,0.000000,0.000000,0.000188,0.126812,-0.000462,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000292,0.000023,0.000020,0.000314,0.000000,0.000000,0.000186,0.126355,-0.000457,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000293,0.000022,0.000020,0.000316,0.000000,0.000000,0.000184,0.125902,-0.000453,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000295,0.000022,0.000020,0.000317,0.000000,0.000000,0.000181,0.125454,-0.000448,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000296,0.000022,0.000020,0.000318,0.000000,0.000000,0.000179,0.125011,-0.000443,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000298,0.000021,0.000019,0.000319,0.000104,0.000104,0.000177,0.124469,-0.000542,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619310.csv b/test/channel_loss/channel_forcing/et/cat-2619310.csv new file mode 100644 index 000000000..05a409de2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619310.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000196,0.000000,0.000000,0.000000,0.000000,0.001457,0.000266,0.001457,0.000159,0.000159,0.010406,0.428807,-0.004601,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001293,0.000262,0.001293,0.000047,0.000047,0.009375,0.424187,-0.004620,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001154,0.000259,0.001154,0.000000,0.000000,0.008480,0.419677,-0.004510,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001036,0.000255,0.001036,0.000000,0.000000,0.007699,0.415230,-0.004447,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000935,0.000252,0.000935,0.000000,0.000000,0.007016,0.410844,-0.004386,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000848,0.000248,0.000848,0.000000,0.000000,0.006416,0.406518,-0.004326,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000772,0.000245,0.000773,0.000000,0.000000,0.005889,0.402252,-0.004266,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000706,0.000241,0.000707,0.000000,0.000000,0.005424,0.398044,-0.004207,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000649,0.000238,0.000650,0.000000,0.000000,0.005013,0.393895,-0.004149,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000599,0.000235,0.000600,0.000000,0.000000,0.004649,0.389803,-0.004092,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000555,0.000232,0.000556,0.000000,0.000000,0.004326,0.385767,-0.004036,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000516,0.000228,0.000518,0.000000,0.000000,0.004038,0.381787,-0.003980,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000481,0.000225,0.000484,0.000000,0.000000,0.003782,0.377861,-0.003925,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000451,0.000222,0.000454,0.000000,0.000000,0.003554,0.373990,-0.003871,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000424,0.000219,0.000427,0.000126,0.000126,0.003349,0.370048,-0.003942,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000399,0.000216,0.000403,0.000342,0.000342,0.003165,0.365947,-0.004101,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000378,0.000212,0.000382,0.000488,0.000488,0.003000,0.361758,-0.004188,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000358,0.000209,0.000363,0.000580,0.000580,0.002851,0.357537,-0.004221,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000341,0.000206,0.000346,0.000530,0.000530,0.002716,0.353424,-0.004114,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000190,0.000000,0.000000,0.000000,0.000006,0.000325,0.000203,0.000331,0.000476,0.000476,0.002594,0.349607,-0.003816,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000160,0.000000,0.000000,0.000000,0.000007,0.000310,0.000200,0.000317,0.000431,0.000431,0.002483,0.345858,-0.003749,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000405,0.000000,0.000001,0.000000,0.000007,0.000297,0.000197,0.000305,0.000353,0.000353,0.002383,0.342478,-0.003380,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000165,0.000000,0.000000,0.000000,0.000008,0.000286,0.000194,0.000294,0.000312,0.000312,0.002291,0.338950,-0.003528,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000190,0.000000,0.000000,0.000000,0.000009,0.000275,0.000191,0.000284,0.000231,0.000231,0.002207,0.335575,-0.003375,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000196,0.000000,0.000000,0.000000,0.000009,0.000265,0.000189,0.000275,0.000153,0.000153,0.002131,0.332329,-0.003246,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000827,0.000066,0.000121,0.000066,0.000010,0.000256,0.000187,0.000333,0.000065,0.000065,0.002062,0.329717,-0.002611,1.000000,0.000054 +26,2022-08-02 02:00:00,0.001042,0.000147,0.000212,0.000147,0.000011,0.000248,0.000185,0.000406,0.000000,0.000000,0.001998,0.327328,-0.002389,1.000000,0.000120 +27,2022-08-02 03:00:00,0.001015,0.000188,0.000202,0.000188,0.000012,0.000241,0.000183,0.000441,0.000000,0.000000,0.001940,0.324955,-0.002373,1.000000,0.000133 +28,2022-08-02 04:00:00,0.001135,0.000228,0.000246,0.000228,0.000013,0.000234,0.000181,0.000475,0.000000,0.000000,0.001887,0.322690,-0.002265,1.000000,0.000151 +29,2022-08-02 05:00:00,0.000773,0.000169,0.000122,0.000169,0.000013,0.000228,0.000179,0.000410,0.000000,0.000000,0.001839,0.320221,-0.002469,1.000000,0.000104 +30,2022-08-02 06:00:00,0.000640,0.000127,0.000086,0.000127,0.000014,0.000222,0.000177,0.000363,0.000000,0.000000,0.001794,0.317691,-0.002530,1.000000,0.000063 +31,2022-08-02 07:00:00,0.000000,0.000046,0.000000,0.000046,0.000015,0.000217,0.000175,0.000278,0.000000,0.000000,0.001751,0.314649,-0.003042,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000212,0.000172,0.000245,0.000000,0.000000,0.001712,0.311648,-0.003000,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000207,0.000170,0.000224,0.000000,0.000000,0.001675,0.308690,-0.002959,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000203,0.000167,0.000220,0.000000,0.000000,0.001640,0.305771,-0.002918,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000198,0.000165,0.000217,0.000000,0.000000,0.001606,0.302893,-0.002878,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000194,0.000163,0.000214,0.000000,0.000000,0.001575,0.300055,-0.002838,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000042,0.000000,0.000000,0.000000,0.000021,0.000191,0.000161,0.000212,0.000000,0.000000,0.001545,0.297297,-0.002758,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000042,0.000000,0.000000,0.000000,0.000022,0.000187,0.000158,0.000209,0.000116,0.000116,0.001516,0.294462,-0.002835,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000036,0.000000,0.000000,0.000000,0.000023,0.000184,0.000156,0.000207,0.000309,0.000309,0.001489,0.291471,-0.002992,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000026,0.000000,0.000000,0.000000,0.000024,0.000180,0.000154,0.000204,0.000426,0.000426,0.001462,0.288396,-0.003075,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000026,0.000000,0.000000,0.000000,0.000025,0.000177,0.000151,0.000202,0.000511,0.000511,0.001436,0.285280,-0.003116,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000335,0.000000,0.000000,0.000000,0.000026,0.000174,0.000149,0.000200,0.000583,0.000583,0.001411,0.282440,-0.002840,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000171,0.000146,0.000198,0.000530,0.000530,0.001387,0.279423,-0.003016,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000168,0.000144,0.000196,0.000492,0.000492,0.001363,0.276423,-0.003000,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000165,0.000142,0.000194,0.000486,0.000486,0.001340,0.273471,-0.002952,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000162,0.000139,0.000193,0.000414,0.000414,0.001317,0.270629,-0.002841,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000159,0.000137,0.000191,0.000306,0.000306,0.001295,0.267934,-0.002696,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000157,0.000135,0.000189,0.000169,0.000169,0.001273,0.265410,-0.002523,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000154,0.000133,0.000188,0.000031,0.000031,0.001253,0.263058,-0.002352,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000151,0.000131,0.000187,0.000000,0.000000,0.001233,0.260769,-0.002289,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000149,0.000130,0.000186,0.000000,0.000000,0.001213,0.258511,-0.002258,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000147,0.000128,0.000184,0.000000,0.000000,0.001194,0.256284,-0.002227,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000144,0.000126,0.000183,0.000000,0.000000,0.001176,0.254088,-0.002196,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000142,0.000124,0.000182,0.000000,0.000000,0.001158,0.251922,-0.002166,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000140,0.000123,0.000181,0.000000,0.000000,0.001141,0.249786,-0.002136,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000138,0.000121,0.000181,0.000000,0.000000,0.001124,0.247680,-0.002106,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000136,0.000119,0.000180,0.000000,0.000000,0.001107,0.245602,-0.002077,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000134,0.000118,0.000179,0.000000,0.000000,0.001091,0.243554,-0.002049,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000132,0.000116,0.000178,0.000000,0.000000,0.001075,0.241533,-0.002021,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000130,0.000114,0.000178,0.000000,0.000000,0.001060,0.239540,-0.001993,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000128,0.000113,0.000177,0.000000,0.000000,0.001044,0.237575,-0.001965,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000126,0.000111,0.000177,0.000121,0.000121,0.001029,0.235517,-0.002058,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000124,0.000109,0.000176,0.000350,0.000350,0.001014,0.233262,-0.002255,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000122,0.000107,0.000176,0.000495,0.000495,0.000999,0.230895,-0.002367,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000121,0.000105,0.000175,0.000597,0.000597,0.000984,0.228460,-0.002435,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000119,0.000104,0.000175,0.000585,0.000585,0.000969,0.226070,-0.002390,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000117,0.000102,0.000174,0.000531,0.000531,0.000954,0.223767,-0.002304,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002292,0.000270,0.000490,0.000270,0.000059,0.000115,0.000101,0.000443,0.000482,0.000482,0.000940,0.223321,-0.000446,1.000000,0.000221 +69,2022-08-03 21:00:00,0.000339,0.000123,0.000000,0.000123,0.000060,0.000113,0.000100,0.000296,0.000460,0.000460,0.000927,0.221460,-0.001861,1.000000,0.000098 +70,2022-08-03 22:00:00,0.000000,0.000098,0.000000,0.000098,0.000061,0.000112,0.000098,0.000271,0.000389,0.000389,0.000913,0.219360,-0.002100,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000063,0.000110,0.000097,0.000173,0.000282,0.000282,0.000900,0.217467,-0.001893,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000108,0.000095,0.000173,0.000173,0.000173,0.000887,0.215636,-0.001832,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000107,0.000094,0.000172,0.000043,0.000043,0.000874,0.213957,-0.001678,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000105,0.000093,0.000172,0.000000,0.000000,0.000861,0.212345,-0.001613,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000104,0.000091,0.000172,0.000000,0.000000,0.000849,0.210754,-0.001591,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000102,0.000090,0.000172,0.000000,0.000000,0.000836,0.209185,-0.001569,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000101,0.000089,0.000172,0.000000,0.000000,0.000824,0.207638,-0.001547,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000099,0.000088,0.000172,0.000000,0.000000,0.000813,0.206113,-0.001526,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000098,0.000086,0.000172,0.000000,0.000000,0.000801,0.204608,-0.001505,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000096,0.000085,0.000172,0.000000,0.000000,0.000790,0.203124,-0.001484,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000095,0.000084,0.000172,0.000000,0.000000,0.000779,0.201660,-0.001464,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000094,0.000083,0.000172,0.000000,0.000000,0.000768,0.200217,-0.001443,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000092,0.000082,0.000172,0.000000,0.000000,0.000757,0.198794,-0.001423,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000091,0.000081,0.000172,0.000000,0.000000,0.000747,0.197390,-0.001404,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000090,0.000079,0.000172,0.000000,0.000000,0.000736,0.196005,-0.001384,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000089,0.000078,0.000173,0.000119,0.000119,0.000726,0.194522,-0.001483,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000087,0.000077,0.000173,0.000350,0.000350,0.000716,0.192832,-0.001690,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000086,0.000075,0.000173,0.000495,0.000495,0.000705,0.191022,-0.001810,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000085,0.000074,0.000173,0.000597,0.000597,0.000694,0.189137,-0.001886,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000083,0.000072,0.000173,0.000662,0.000662,0.000683,0.187213,-0.001924,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000082,0.000071,0.000173,0.000598,0.000598,0.000672,0.185378,-0.001834,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000081,0.000070,0.000173,0.000530,0.000530,0.000661,0.183637,-0.001742,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000079,0.000068,0.000173,0.000501,0.000501,0.000650,0.181948,-0.001689,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000078,0.000067,0.000174,0.000426,0.000426,0.000639,0.180357,-0.001591,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000077,0.000066,0.000174,0.000321,0.000321,0.000628,0.178890,-0.001466,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000075,0.000065,0.000174,0.000181,0.000181,0.000618,0.177582,-0.001308,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000074,0.000064,0.000174,0.000047,0.000047,0.000607,0.176425,-0.001157,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000073,0.000063,0.000174,0.000000,0.000000,0.000598,0.175329,-0.001096,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000072,0.000062,0.000175,0.000000,0.000000,0.000588,0.174249,-0.001081,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000070,0.000061,0.000175,0.000000,0.000000,0.000579,0.173183,-0.001066,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000069,0.000060,0.000175,0.000000,0.000000,0.000570,0.172132,-0.001051,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000068,0.000059,0.000176,0.000000,0.000000,0.000561,0.171096,-0.001036,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000067,0.000059,0.000176,0.000000,0.000000,0.000552,0.170073,-0.001022,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000066,0.000058,0.000176,0.000000,0.000000,0.000544,0.169065,-0.001008,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000065,0.000057,0.000177,0.000000,0.000000,0.000536,0.168071,-0.000994,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000064,0.000056,0.000177,0.000000,0.000000,0.000528,0.167091,-0.000981,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000063,0.000055,0.000178,0.000000,0.000000,0.000520,0.166124,-0.000967,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000062,0.000055,0.000178,0.000000,0.000000,0.000512,0.165170,-0.000954,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000061,0.000054,0.000179,0.000000,0.000000,0.000505,0.164229,-0.000941,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000061,0.000053,0.000179,0.000129,0.000129,0.000498,0.163175,-0.001055,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000060,0.000052,0.000180,0.000356,0.000356,0.000490,0.161911,-0.001264,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000059,0.000051,0.000181,0.000503,0.000503,0.000482,0.160519,-0.001392,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000058,0.000050,0.000181,0.000614,0.000614,0.000475,0.159037,-0.001482,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000057,0.000049,0.000181,0.000593,0.000593,0.000466,0.157596,-0.001441,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000056,0.000048,0.000182,0.000544,0.000544,0.000458,0.156286,-0.001311,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000055,0.000047,0.000182,0.000485,0.000485,0.000450,0.155051,-0.001234,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000074,0.000000,0.000000,0.000000,0.000129,0.000054,0.000046,0.000183,0.000451,0.000451,0.000442,0.153879,-0.001172,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000079,0.000000,0.000000,0.000000,0.000130,0.000053,0.000045,0.000183,0.000381,0.000381,0.000434,0.152796,-0.001083,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000202,0.000000,0.000000,0.000000,0.000132,0.000052,0.000044,0.000184,0.000290,0.000290,0.000426,0.151939,-0.000857,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000079,0.000000,0.000000,0.000000,0.000133,0.000051,0.000043,0.000184,0.000174,0.000174,0.000419,0.151087,-0.000852,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000765,0.000045,0.000081,0.000045,0.000135,0.000050,0.000043,0.000229,0.000060,0.000060,0.000412,0.150956,-0.000131,1.000000,0.000036 +122,2022-08-06 02:00:00,0.001356,0.000169,0.000271,0.000169,0.000136,0.000049,0.000044,0.000355,0.000000,0.000000,0.000406,0.151282,0.000326,1.000000,0.000138 +123,2022-08-06 03:00:00,0.000762,0.000136,0.000094,0.000136,0.000138,0.000049,0.000044,0.000322,0.000000,0.000000,0.000401,0.151192,-0.000090,1.000000,0.000096 +124,2022-08-06 04:00:00,0.000601,0.000111,0.000060,0.000111,0.000139,0.000048,0.000043,0.000298,0.000000,0.000000,0.000396,0.150978,-0.000214,1.000000,0.000046 +125,2022-08-06 05:00:00,0.000611,0.000068,0.000062,0.000068,0.000140,0.000048,0.000043,0.000256,0.000000,0.000000,0.000392,0.150775,-0.000203,1.000000,0.000040 +126,2022-08-06 06:00:00,0.000686,0.000070,0.000077,0.000070,0.000142,0.000047,0.000043,0.000259,0.000000,0.000000,0.000388,0.150633,-0.000142,1.000000,0.000047 +127,2022-08-06 07:00:00,0.000000,0.000032,0.000000,0.000032,0.000143,0.000047,0.000042,0.000221,0.000000,0.000000,0.000384,0.149893,-0.000740,1.000000,0.000015 +128,2022-08-06 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000145,0.000046,0.000042,0.000206,0.000000,0.000000,0.000380,0.149163,-0.000730,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000046,0.000041,0.000192,0.000000,0.000000,0.000375,0.148443,-0.000720,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000045,0.000041,0.000192,0.000000,0.000000,0.000371,0.147733,-0.000710,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000045,0.000040,0.000193,0.000000,0.000000,0.000367,0.147033,-0.000700,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000044,0.000040,0.000194,0.000000,0.000000,0.000362,0.146342,-0.000691,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000043,0.000039,0.000195,0.000000,0.000000,0.000358,0.145661,-0.000681,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000043,0.000038,0.000196,0.000111,0.000111,0.000354,0.144879,-0.000782,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000042,0.000038,0.000197,0.000324,0.000324,0.000349,0.143899,-0.000981,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000042,0.000037,0.000197,0.000456,0.000456,0.000344,0.142801,-0.001098,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000041,0.000036,0.000198,0.000563,0.000563,0.000339,0.141613,-0.001187,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000040,0.000035,0.000199,0.000642,0.000642,0.000333,0.140365,-0.001249,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000040,0.000034,0.000199,0.000591,0.000591,0.000327,0.139184,-0.001181,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000039,0.000033,0.000200,0.000535,0.000535,0.000321,0.138074,-0.001110,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000038,0.000032,0.000201,0.000503,0.000503,0.000315,0.137010,-0.001064,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000031,0.000201,0.000421,0.000421,0.000309,0.136042,-0.000968,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000037,0.000031,0.000202,0.000313,0.000313,0.000303,0.135195,-0.000848,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000030,0.000202,0.000179,0.000179,0.000297,0.134490,-0.000704,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000035,0.000030,0.000203,0.000041,0.000041,0.000291,0.133932,-0.000559,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000029,0.000204,0.000000,0.000000,0.000286,0.133422,-0.000510,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000034,0.000029,0.000204,0.000000,0.000000,0.000281,0.132919,-0.000503,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000033,0.000028,0.000205,0.000000,0.000000,0.000276,0.132423,-0.000496,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000033,0.000028,0.000206,0.000000,0.000000,0.000271,0.131933,-0.000489,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000032,0.000028,0.000207,0.000000,0.000000,0.000266,0.131451,-0.000483,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000032,0.000027,0.000207,0.000000,0.000000,0.000262,0.130975,-0.000476,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000031,0.000027,0.000208,0.000000,0.000000,0.000258,0.130505,-0.000469,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000031,0.000027,0.000209,0.000000,0.000000,0.000253,0.130043,-0.000463,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000030,0.000026,0.000210,0.000000,0.000000,0.000249,0.129586,-0.000456,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000026,0.000210,0.000000,0.000000,0.000246,0.129136,-0.000450,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000029,0.000025,0.000211,0.000000,0.000000,0.000242,0.128692,-0.000444,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000029,0.000025,0.000212,0.000000,0.000000,0.000238,0.128254,-0.000438,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000028,0.000025,0.000213,0.000109,0.000109,0.000234,0.127715,-0.000539,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000028,0.000024,0.000214,0.000335,0.000335,0.000230,0.126960,-0.000755,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000027,0.000023,0.000214,0.000476,0.000476,0.000226,0.126077,-0.000884,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000027,0.000023,0.000215,0.000580,0.000580,0.000222,0.125103,-0.000974,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000026,0.000022,0.000216,0.000638,0.000638,0.000218,0.124085,-0.001018,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000026,0.000021,0.000216,0.000582,0.000582,0.000213,0.123136,-0.000949,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000025,0.000020,0.000217,0.000526,0.000526,0.000208,0.122256,-0.000881,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000025,0.000020,0.000218,0.000508,0.000508,0.000203,0.121406,-0.000850,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000024,0.000019,0.000218,0.000422,0.000422,0.000198,0.120651,-0.000754,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000023,0.000019,0.000219,0.000314,0.000314,0.000193,0.120015,-0.000637,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000023,0.000018,0.000220,0.000149,0.000149,0.000188,0.119550,-0.000465,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000022,0.000018,0.000220,0.000015,0.000000,0.000184,0.119238,-0.000312,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000022,0.000018,0.000221,0.000000,0.000000,0.000180,0.118930,-0.000308,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000021,0.000017,0.000222,0.000000,0.000000,0.000176,0.118627,-0.000303,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000021,0.000017,0.000222,0.000000,0.000000,0.000172,0.118328,-0.000299,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000020,0.000017,0.000223,0.000000,0.000000,0.000169,0.118033,-0.000295,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000020,0.000017,0.000224,0.000000,0.000000,0.000165,0.117742,-0.000291,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000020,0.000016,0.000225,0.000000,0.000000,0.000162,0.117455,-0.000287,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000019,0.000016,0.000225,0.000000,0.000000,0.000159,0.117171,-0.000283,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000016,0.000226,0.000000,0.000000,0.000156,0.116893,-0.000279,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000227,0.000000,0.000000,0.000154,0.116617,-0.000275,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000016,0.000228,0.000000,0.000000,0.000151,0.116346,-0.000271,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000018,0.000015,0.000229,0.000000,0.000000,0.000148,0.116078,-0.000268,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000018,0.000015,0.000229,0.000000,0.000000,0.000146,0.115814,-0.000264,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000017,0.000015,0.000230,0.000091,0.000000,0.000143,0.115554,-0.000260,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000015,0.000231,0.000318,0.000000,0.000141,0.115297,-0.000257,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000015,0.000232,0.000468,0.000000,0.000139,0.115044,-0.000253,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000017,0.000014,0.000233,0.000557,0.000000,0.000137,0.114794,-0.000250,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000016,0.000014,0.000234,0.000617,0.000000,0.000134,0.114547,-0.000246,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000014,0.000234,0.000578,0.000000,0.000132,0.114304,-0.000243,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000016,0.000014,0.000235,0.000517,0.000000,0.000130,0.114065,-0.000240,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000014,0.000236,0.000490,0.000000,0.000128,0.113828,-0.000236,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000418,0.000000,0.000126,0.113595,-0.000233,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000013,0.000238,0.000311,0.000000,0.000125,0.113365,-0.000230,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000013,0.000239,0.000175,0.000000,0.000123,0.113139,-0.000227,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000013,0.000239,0.000032,0.000000,0.000121,0.112915,-0.000224,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000013,0.000240,0.000000,0.000000,0.000119,0.112695,-0.000220,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000012,0.000241,0.000000,0.000000,0.000117,0.112477,-0.000217,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000116,0.112263,-0.000214,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000000,0.000000,0.000114,0.112051,-0.000212,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000012,0.000243,0.000000,0.000000,0.000112,0.111843,-0.000209,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000012,0.000244,0.000000,0.000000,0.000111,0.111637,-0.000206,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000012,0.000245,0.000000,0.000000,0.000109,0.111434,-0.000203,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000000,0.000000,0.000108,0.111234,-0.000200,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000247,0.000000,0.000000,0.000106,0.111037,-0.000197,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000247,0.000000,0.000000,0.000105,0.110842,-0.000195,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000011,0.000248,0.000000,0.000000,0.000103,0.110650,-0.000192,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000011,0.000249,0.000000,0.000000,0.000102,0.110461,-0.000189,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000104,0.000000,0.000100,0.110274,-0.000187,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619311.csv b/test/channel_loss/channel_forcing/et/cat-2619311.csv new file mode 100644 index 000000000..e29eb5dbc --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619311.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000132,0.000000,0.000000,0.000000,0.000000,0.001491,0.000508,0.001491,0.000159,0.000159,0.010613,0.426743,-0.004512,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001354,0.000499,0.001354,0.000044,0.000044,0.009759,0.422285,-0.004458,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001237,0.000492,0.001237,0.000000,0.000000,0.009014,0.417940,-0.004345,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001136,0.000484,0.001136,0.000000,0.000000,0.008362,0.413664,-0.004276,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001049,0.000476,0.001050,0.000000,0.000000,0.007789,0.409455,-0.004209,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000974,0.000469,0.000975,0.000000,0.000000,0.007283,0.405312,-0.004143,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000909,0.000461,0.000909,0.000000,0.000000,0.006836,0.401235,-0.004077,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000851,0.000454,0.000852,0.000000,0.000000,0.006439,0.397221,-0.004013,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000800,0.000447,0.000801,0.000000,0.000000,0.006086,0.393271,-0.003950,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000755,0.000440,0.000757,0.000000,0.000000,0.005771,0.389383,-0.003888,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000715,0.000433,0.000717,0.000000,0.000000,0.005488,0.385557,-0.003827,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000680,0.000426,0.000682,0.000000,0.000000,0.005234,0.381790,-0.003766,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000648,0.000419,0.000650,0.000000,0.000000,0.005006,0.378083,-0.003707,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000620,0.000413,0.000622,0.000000,0.000000,0.004799,0.374435,-0.003649,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000594,0.000406,0.000597,0.000126,0.000126,0.004611,0.370719,-0.003716,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000570,0.000399,0.000574,0.000354,0.000354,0.004440,0.366838,-0.003881,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000549,0.000392,0.000553,0.000504,0.000504,0.004283,0.362870,-0.003968,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000529,0.000385,0.000534,0.000595,0.000595,0.004139,0.358875,-0.003995,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000511,0.000378,0.000516,0.000535,0.000535,0.004005,0.355001,-0.003873,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000206,0.000000,0.000000,0.000000,0.000005,0.000495,0.000371,0.000500,0.000479,0.000479,0.003881,0.351447,-0.003554,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000145,0.000000,0.000000,0.000000,0.000006,0.000479,0.000365,0.000485,0.000426,0.000426,0.003767,0.347942,-0.003506,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000515,0.000002,0.000003,0.000002,0.000007,0.000465,0.000359,0.000474,0.000351,0.000351,0.003661,0.344926,-0.003016,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000151,0.000001,0.000000,0.000001,0.000007,0.000452,0.000354,0.000460,0.000310,0.000310,0.003563,0.341642,-0.003284,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000277,0.000001,0.000000,0.000001,0.000008,0.000440,0.000348,0.000448,0.000231,0.000231,0.003471,0.338612,-0.003030,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000195,0.000000,0.000000,0.000000,0.000008,0.000428,0.000343,0.000437,0.000153,0.000153,0.003385,0.335626,-0.002987,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000960,0.000048,0.000087,0.000048,0.000009,0.000418,0.000339,0.000475,0.000064,0.000064,0.003306,0.333441,-0.002184,1.000000,0.000039 +26,2022-08-02 02:00:00,0.001274,0.000114,0.000168,0.000114,0.000010,0.000408,0.000335,0.000532,0.000000,0.000000,0.003233,0.331584,-0.001858,1.000000,0.000093 +27,2022-08-02 03:00:00,0.001169,0.000138,0.000143,0.000138,0.000010,0.000399,0.000332,0.000548,0.000000,0.000000,0.003165,0.329677,-0.001907,1.000000,0.000098 +28,2022-08-02 04:00:00,0.001358,0.000173,0.000188,0.000173,0.000011,0.000391,0.000329,0.000575,0.000000,0.000000,0.003103,0.327942,-0.001735,1.000000,0.000113 +29,2022-08-02 05:00:00,0.000806,0.000114,0.000070,0.000114,0.000012,0.000383,0.000325,0.000510,0.000000,0.000000,0.003044,0.325806,-0.002135,1.000000,0.000069 +30,2022-08-02 06:00:00,0.000589,0.000076,0.000038,0.000076,0.000013,0.000376,0.000321,0.000465,0.000000,0.000000,0.002989,0.323523,-0.002284,1.000000,0.000031 +31,2022-08-02 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000014,0.000369,0.000316,0.000406,0.000000,0.000000,0.002935,0.320733,-0.002790,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000014,0.000362,0.000311,0.000384,0.000000,0.000000,0.002884,0.317988,-0.002746,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000356,0.000306,0.000371,0.000000,0.000000,0.002833,0.315285,-0.002703,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000350,0.000301,0.000365,0.000000,0.000000,0.002785,0.312625,-0.002660,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000343,0.000296,0.000360,0.000000,0.000000,0.002738,0.310007,-0.002618,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000337,0.000292,0.000355,0.000000,0.000000,0.002692,0.307430,-0.002577,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000079,0.000000,0.000001,0.000000,0.000019,0.000332,0.000287,0.000351,0.000000,0.000000,0.002647,0.304971,-0.002459,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000083,0.000000,0.000000,0.000000,0.000019,0.000326,0.000283,0.000346,0.000116,0.000116,0.002604,0.302441,-0.002530,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000081,0.000000,0.000000,0.000000,0.000020,0.000320,0.000278,0.000341,0.000316,0.000316,0.002561,0.299751,-0.002690,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000053,0.000000,0.000000,0.000000,0.000021,0.000315,0.000273,0.000336,0.000441,0.000441,0.002519,0.296954,-0.002797,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000053,0.000000,0.000000,0.000000,0.000022,0.000310,0.000267,0.000332,0.000525,0.000525,0.002477,0.294118,-0.002836,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000489,0.000000,0.000000,0.000000,0.000023,0.000304,0.000263,0.000327,0.000592,0.000592,0.002436,0.291689,-0.002428,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000112,0.000000,0.000000,0.000000,0.000024,0.000299,0.000258,0.000323,0.000536,0.000536,0.002395,0.288984,-0.002705,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000294,0.000253,0.000319,0.000494,0.000494,0.002354,0.286252,-0.002732,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000289,0.000248,0.000315,0.000486,0.000486,0.002314,0.283571,-0.002682,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000283,0.000244,0.000311,0.000416,0.000416,0.002274,0.281000,-0.002570,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000278,0.000239,0.000307,0.000306,0.000306,0.002235,0.278579,-0.002421,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000274,0.000235,0.000303,0.000168,0.000168,0.002197,0.276331,-0.002247,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000269,0.000232,0.000299,0.000028,0.000028,0.002160,0.274257,-0.002074,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000264,0.000228,0.000295,0.000000,0.000000,0.002124,0.272243,-0.002014,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000260,0.000224,0.000292,0.000000,0.000000,0.002088,0.270261,-0.001982,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000255,0.000221,0.000289,0.000000,0.000000,0.002054,0.268310,-0.001951,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000251,0.000217,0.000285,0.000000,0.000000,0.002020,0.266389,-0.001920,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000247,0.000214,0.000282,0.000000,0.000000,0.001987,0.264499,-0.001890,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000243,0.000211,0.000279,0.000000,0.000000,0.001955,0.262639,-0.001860,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000239,0.000207,0.000276,0.000000,0.000000,0.001924,0.260808,-0.001831,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000235,0.000204,0.000274,0.000000,0.000000,0.001893,0.259005,-0.001802,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000231,0.000201,0.000271,0.000000,0.000000,0.001863,0.257232,-0.001774,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000227,0.000198,0.000268,0.000000,0.000000,0.001833,0.255486,-0.001746,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000223,0.000194,0.000266,0.000000,0.000000,0.001804,0.253767,-0.001718,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000220,0.000191,0.000263,0.000000,0.000000,0.001776,0.252076,-0.001691,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000216,0.000188,0.000261,0.000121,0.000121,0.001748,0.250292,-0.001784,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000213,0.000185,0.000258,0.000358,0.000358,0.001720,0.248303,-0.001989,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000209,0.000181,0.000256,0.000507,0.000507,0.001691,0.246199,-0.002104,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000205,0.000177,0.000253,0.000604,0.000604,0.001663,0.244032,-0.002166,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000202,0.000173,0.000251,0.000590,0.000590,0.001634,0.241913,-0.002119,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000198,0.000169,0.000248,0.000529,0.000529,0.001605,0.239887,-0.002026,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003474,0.000383,0.000696,0.000383,0.000051,0.000195,0.000171,0.000629,0.000485,0.000485,0.001581,0.240672,0.000785,1.000000,0.000313 +69,2022-08-03 21:00:00,0.000500,0.000174,0.000000,0.000174,0.000053,0.000192,0.000168,0.000419,0.000459,0.000459,0.001557,0.239227,-0.001445,1.000000,0.000139 +70,2022-08-03 22:00:00,0.000000,0.000139,0.000000,0.000139,0.000054,0.000189,0.000165,0.000382,0.000389,0.000389,0.001532,0.237381,-0.001846,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000078,0.000000,0.000000,0.000000,0.000055,0.000186,0.000162,0.000241,0.000286,0.000286,0.001508,0.235742,-0.001639,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000183,0.000159,0.000239,0.000173,0.000173,0.001484,0.234164,-0.001578,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000180,0.000156,0.000237,0.000040,0.000040,0.001461,0.232742,-0.001422,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000177,0.000154,0.000236,0.000000,0.000000,0.001437,0.231382,-0.001360,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000174,0.000152,0.000234,0.000000,0.000000,0.001415,0.230043,-0.001339,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000171,0.000149,0.000232,0.000000,0.000000,0.001392,0.228725,-0.001318,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000169,0.000147,0.000231,0.000000,0.000000,0.001370,0.227428,-0.001297,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000166,0.000144,0.000229,0.000000,0.000000,0.001349,0.226151,-0.001277,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000163,0.000142,0.000228,0.000000,0.000000,0.001328,0.224895,-0.001257,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000161,0.000140,0.000227,0.000000,0.000000,0.001307,0.223658,-0.001237,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000158,0.000138,0.000225,0.000000,0.000000,0.001287,0.222441,-0.001217,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000156,0.000136,0.000224,0.000000,0.000000,0.001266,0.221242,-0.001198,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000153,0.000133,0.000223,0.000000,0.000000,0.001247,0.220063,-0.001179,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000151,0.000131,0.000221,0.000000,0.000000,0.001227,0.218902,-0.001161,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000148,0.000129,0.000220,0.000000,0.000000,0.001208,0.217760,-0.001142,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000146,0.000127,0.000219,0.000118,0.000118,0.001189,0.216519,-0.001241,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000144,0.000124,0.000218,0.000355,0.000355,0.001170,0.215065,-0.001454,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000141,0.000122,0.000217,0.000508,0.000508,0.001150,0.213482,-0.001582,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000139,0.000119,0.000216,0.000607,0.000607,0.001130,0.211828,-0.001655,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000136,0.000115,0.000214,0.000666,0.000666,0.001110,0.210141,-0.001686,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000133,0.000113,0.000213,0.000598,0.000598,0.001089,0.208548,-0.001593,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000131,0.000110,0.000211,0.000531,0.000531,0.001068,0.207046,-0.001502,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000128,0.000107,0.000210,0.000502,0.000502,0.001047,0.205596,-0.001449,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000126,0.000105,0.000209,0.000431,0.000431,0.001026,0.204239,-0.001357,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000123,0.000103,0.000207,0.000319,0.000319,0.001005,0.203014,-0.001225,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000121,0.000101,0.000206,0.000181,0.000181,0.000985,0.201944,-0.001070,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000118,0.000099,0.000205,0.000043,0.000043,0.000966,0.201026,-0.000918,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000116,0.000097,0.000204,0.000000,0.000000,0.000947,0.200165,-0.000861,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000114,0.000096,0.000203,0.000000,0.000000,0.000930,0.199318,-0.000847,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000112,0.000094,0.000202,0.000000,0.000000,0.000912,0.198483,-0.000834,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000110,0.000093,0.000201,0.000000,0.000000,0.000896,0.197662,-0.000821,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000108,0.000091,0.000200,0.000000,0.000000,0.000880,0.196854,-0.000808,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000106,0.000090,0.000200,0.000000,0.000000,0.000864,0.196059,-0.000795,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000104,0.000089,0.000199,0.000000,0.000000,0.000849,0.195276,-0.000783,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000102,0.000087,0.000198,0.000000,0.000000,0.000834,0.194506,-0.000770,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000100,0.000086,0.000198,0.000000,0.000000,0.000820,0.193747,-0.000758,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000098,0.000084,0.000197,0.000000,0.000000,0.000806,0.193001,-0.000746,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000097,0.000083,0.000197,0.000000,0.000000,0.000792,0.192266,-0.000735,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000095,0.000082,0.000196,0.000000,0.000000,0.000779,0.191543,-0.000723,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000093,0.000080,0.000196,0.000129,0.000129,0.000766,0.190704,-0.000839,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000092,0.000078,0.000196,0.000363,0.000363,0.000752,0.189649,-0.001056,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000090,0.000076,0.000195,0.000513,0.000513,0.000738,0.188462,-0.001187,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000088,0.000074,0.000194,0.000618,0.000618,0.000724,0.187191,-0.001271,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000087,0.000072,0.000194,0.000605,0.000605,0.000709,0.185952,-0.001238,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000109,0.000085,0.000070,0.000193,0.000553,0.000553,0.000694,0.184847,-0.001106,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000110,0.000083,0.000068,0.000193,0.000498,0.000498,0.000679,0.183812,-0.001034,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000111,0.000081,0.000066,0.000192,0.000457,0.000457,0.000664,0.182834,-0.000978,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000112,0.000079,0.000064,0.000191,0.000390,0.000390,0.000650,0.181938,-0.000897,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000211,0.000000,0.000000,0.000000,0.000113,0.000077,0.000063,0.000191,0.000291,0.000291,0.000635,0.181298,-0.000640,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000114,0.000076,0.000062,0.000190,0.000173,0.000173,0.000622,0.180640,-0.000658,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000777,0.000025,0.000045,0.000025,0.000116,0.000074,0.000062,0.000215,0.000058,0.000058,0.000610,0.180763,0.000123,1.000000,0.000020 +122,2022-08-06 02:00:00,0.001609,0.000126,0.000209,0.000126,0.000117,0.000073,0.000064,0.000316,0.000000,0.000000,0.000600,0.181599,0.000836,1.000000,0.000103 +123,2022-08-06 03:00:00,0.000653,0.000082,0.000037,0.000082,0.000118,0.000072,0.000064,0.000272,0.000000,0.000000,0.000592,0.181650,0.000050,1.000000,0.000059 +124,2022-08-06 04:00:00,0.000449,0.000061,0.000018,0.000061,0.000119,0.000071,0.000064,0.000251,0.000000,0.000000,0.000585,0.181518,-0.000132,1.000000,0.000016 +125,2022-08-06 05:00:00,0.000451,0.000022,0.000018,0.000022,0.000120,0.000070,0.000063,0.000212,0.000000,0.000000,0.000578,0.181389,-0.000128,1.000000,0.000012 +126,2022-08-06 06:00:00,0.000568,0.000024,0.000028,0.000024,0.000121,0.000070,0.000063,0.000215,0.000000,0.000000,0.000572,0.181369,-0.000021,1.000000,0.000016 +127,2022-08-06 07:00:00,0.000000,0.000011,0.000000,0.000011,0.000123,0.000069,0.000062,0.000202,0.000000,0.000000,0.000565,0.180817,-0.000552,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000124,0.000068,0.000061,0.000197,0.000000,0.000000,0.000559,0.180274,-0.000543,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000067,0.000060,0.000192,0.000000,0.000000,0.000552,0.179740,-0.000534,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000066,0.000060,0.000192,0.000000,0.000000,0.000545,0.179214,-0.000526,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000065,0.000059,0.000193,0.000000,0.000000,0.000538,0.178697,-0.000518,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000065,0.000058,0.000193,0.000000,0.000000,0.000531,0.178187,-0.000509,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000064,0.000057,0.000193,0.000000,0.000000,0.000524,0.177686,-0.000501,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000063,0.000056,0.000193,0.000112,0.000112,0.000517,0.177082,-0.000604,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000062,0.000054,0.000194,0.000337,0.000337,0.000509,0.176266,-0.000816,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000061,0.000052,0.000194,0.000478,0.000478,0.000501,0.175325,-0.000942,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000060,0.000051,0.000194,0.000579,0.000579,0.000492,0.174298,-0.001027,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000059,0.000049,0.000194,0.000651,0.000651,0.000482,0.173217,-0.001081,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000057,0.000047,0.000193,0.000598,0.000598,0.000471,0.172206,-0.001011,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000056,0.000045,0.000193,0.000543,0.000543,0.000460,0.171264,-0.000941,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000055,0.000043,0.000193,0.000508,0.000508,0.000449,0.170372,-0.000892,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000053,0.000042,0.000193,0.000429,0.000429,0.000438,0.169571,-0.000801,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000052,0.000041,0.000192,0.000312,0.000312,0.000427,0.168898,-0.000673,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000051,0.000040,0.000192,0.000177,0.000177,0.000416,0.168369,-0.000529,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000049,0.000039,0.000192,0.000038,0.000038,0.000406,0.167985,-0.000384,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000048,0.000039,0.000192,0.000000,0.000000,0.000396,0.167644,-0.000341,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000047,0.000038,0.000192,0.000000,0.000000,0.000387,0.167308,-0.000335,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000046,0.000037,0.000192,0.000000,0.000000,0.000379,0.166978,-0.000330,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000045,0.000037,0.000192,0.000000,0.000000,0.000371,0.166653,-0.000325,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000044,0.000036,0.000192,0.000000,0.000000,0.000363,0.166333,-0.000320,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000043,0.000036,0.000192,0.000000,0.000000,0.000355,0.166019,-0.000315,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000042,0.000035,0.000192,0.000000,0.000000,0.000348,0.165709,-0.000310,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000041,0.000035,0.000192,0.000000,0.000000,0.000341,0.165404,-0.000305,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000041,0.000034,0.000193,0.000000,0.000000,0.000334,0.165104,-0.000300,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000040,0.000033,0.000193,0.000000,0.000000,0.000328,0.164808,-0.000295,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000039,0.000033,0.000193,0.000000,0.000000,0.000322,0.164517,-0.000291,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000038,0.000032,0.000194,0.000000,0.000000,0.000316,0.164231,-0.000286,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000038,0.000032,0.000194,0.000109,0.000109,0.000310,0.163843,-0.000389,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000037,0.000031,0.000194,0.000342,0.000342,0.000304,0.163231,-0.000612,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000036,0.000029,0.000194,0.000488,0.000488,0.000297,0.162485,-0.000746,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000035,0.000028,0.000194,0.000586,0.000586,0.000290,0.161653,-0.000831,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000034,0.000026,0.000194,0.000640,0.000640,0.000282,0.160782,-0.000871,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000033,0.000025,0.000194,0.000583,0.000583,0.000273,0.159981,-0.000801,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000032,0.000023,0.000194,0.000532,0.000532,0.000264,0.159243,-0.000738,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000031,0.000022,0.000194,0.000506,0.000506,0.000256,0.158542,-0.000701,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000030,0.000021,0.000194,0.000425,0.000425,0.000247,0.157931,-0.000611,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000029,0.000020,0.000194,0.000312,0.000312,0.000238,0.157441,-0.000490,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000028,0.000020,0.000194,0.000147,0.000147,0.000230,0.157122,-0.000319,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000027,0.000019,0.000194,0.000013,0.000013,0.000222,0.156940,-0.000183,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000026,0.000019,0.000194,0.000000,0.000000,0.000215,0.156773,-0.000167,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000025,0.000019,0.000194,0.000000,0.000000,0.000208,0.156608,-0.000164,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000024,0.000018,0.000194,0.000000,0.000000,0.000202,0.156447,-0.000162,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000024,0.000018,0.000194,0.000000,0.000000,0.000196,0.156288,-0.000159,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000023,0.000018,0.000195,0.000000,0.000000,0.000191,0.156131,-0.000157,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000022,0.000017,0.000195,0.000000,0.000000,0.000186,0.155977,-0.000154,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000022,0.000017,0.000195,0.000000,0.000000,0.000181,0.155825,-0.000152,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000174,0.000021,0.000017,0.000196,0.000000,0.000000,0.000177,0.155678,-0.000147,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000021,0.000017,0.000196,0.000000,0.000000,0.000172,0.155531,-0.000147,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000020,0.000016,0.000197,0.000000,0.000000,0.000168,0.155386,-0.000144,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000020,0.000016,0.000197,0.000000,0.000000,0.000164,0.155244,-0.000142,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000019,0.000016,0.000197,0.000000,0.000000,0.000161,0.155104,-0.000140,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000019,0.000015,0.000198,0.000092,0.000092,0.000157,0.154875,-0.000228,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000019,0.000015,0.000198,0.000326,0.000326,0.000153,0.154420,-0.000455,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000018,0.000014,0.000199,0.000478,0.000478,0.000149,0.153822,-0.000598,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000017,0.000012,0.000199,0.000570,0.000570,0.000144,0.153143,-0.000679,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000017,0.000011,0.000199,0.000624,0.000624,0.000138,0.152422,-0.000721,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000016,0.000010,0.000199,0.000575,0.000575,0.000132,0.151760,-0.000662,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000015,0.000009,0.000199,0.000517,0.000517,0.000125,0.151165,-0.000595,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000014,0.000008,0.000199,0.000492,0.000492,0.000119,0.150605,-0.000560,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000014,0.000007,0.000199,0.000423,0.000423,0.000112,0.150122,-0.000483,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000013,0.000006,0.000199,0.000310,0.000310,0.000106,0.149758,-0.000364,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000012,0.000006,0.000199,0.000172,0.000172,0.000099,0.149534,-0.000223,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000011,0.000006,0.000199,0.000028,0.000028,0.000094,0.149457,-0.000078,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000011,0.000006,0.000200,0.000000,0.000000,0.000088,0.149408,-0.000049,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000010,0.000005,0.000200,0.000000,0.000000,0.000084,0.149359,-0.000048,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000010,0.000005,0.000200,0.000000,0.000000,0.000080,0.149312,-0.000048,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000009,0.000005,0.000200,0.000000,0.000000,0.000076,0.149265,-0.000047,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000009,0.000005,0.000201,0.000000,0.000000,0.000072,0.149219,-0.000046,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000008,0.000005,0.000201,0.000000,0.000000,0.000069,0.149174,-0.000045,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000008,0.000005,0.000202,0.000000,0.000000,0.000066,0.149129,-0.000045,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000008,0.000005,0.000202,0.000000,0.000000,0.000063,0.149085,-0.000044,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000007,0.000005,0.000202,0.000000,0.000000,0.000061,0.149042,-0.000043,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000007,0.000005,0.000203,0.000000,0.000000,0.000059,0.148999,-0.000043,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000007,0.000005,0.000203,0.000000,0.000000,0.000057,0.148957,-0.000042,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000007,0.000005,0.000204,0.000000,0.000000,0.000055,0.148916,-0.000041,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000006,0.000004,0.000204,0.000102,0.000102,0.000053,0.148775,-0.000141,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619312.csv b/test/channel_loss/channel_forcing/et/cat-2619312.csv new file mode 100644 index 000000000..7e25997ed --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619312.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000056,0.000000,0.000000,0.000000,0.000000,0.001471,0.000367,0.001471,0.000152,0.000152,0.010492,0.428678,-0.004449,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001318,0.000361,0.001318,0.000039,0.000039,0.009535,0.424353,-0.004326,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001188,0.000356,0.001188,0.000000,0.000000,0.008703,0.420131,-0.004221,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001078,0.000350,0.001078,0.000000,0.000000,0.007975,0.415974,-0.004157,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000982,0.000345,0.000983,0.000000,0.000000,0.007338,0.411880,-0.004094,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000900,0.000340,0.000900,0.000000,0.000000,0.006778,0.407847,-0.004032,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000829,0.000335,0.000829,0.000000,0.000000,0.006284,0.403876,-0.003971,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000766,0.000330,0.000767,0.000000,0.000000,0.005847,0.399965,-0.003911,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000712,0.000325,0.000713,0.000000,0.000000,0.005460,0.396114,-0.003852,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000663,0.000320,0.000665,0.000000,0.000000,0.005116,0.392320,-0.003793,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000621,0.000315,0.000623,0.000000,0.000000,0.004810,0.388585,-0.003736,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000584,0.000310,0.000585,0.000000,0.000000,0.004537,0.384906,-0.003679,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000550,0.000305,0.000552,0.000000,0.000000,0.004292,0.381282,-0.003623,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000520,0.000301,0.000523,0.000000,0.000000,0.004072,0.377714,-0.003568,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000494,0.000296,0.000497,0.000124,0.000124,0.003874,0.374077,-0.003637,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000470,0.000291,0.000473,0.000356,0.000356,0.003696,0.370267,-0.003810,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000448,0.000286,0.000452,0.000504,0.000504,0.003533,0.366369,-0.003898,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000429,0.000281,0.000433,0.000595,0.000595,0.003386,0.362441,-0.003928,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000411,0.000276,0.000416,0.000527,0.000527,0.003251,0.358639,-0.003802,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000259,0.000000,0.000000,0.000000,0.000005,0.000394,0.000271,0.000400,0.000475,0.000475,0.003128,0.355202,-0.003437,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000215,0.000000,0.000000,0.000000,0.000006,0.000380,0.000267,0.000386,0.000420,0.000420,0.003015,0.351827,-0.003375,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000712,0.000012,0.000022,0.000012,0.000007,0.000366,0.000263,0.000385,0.000345,0.000345,0.002913,0.349045,-0.002782,1.000000,0.000010 +22,2022-08-01 22:00:00,0.000217,0.000005,0.000000,0.000005,0.000007,0.000354,0.000259,0.000366,0.000303,0.000303,0.002818,0.345881,-0.003164,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000324,0.000005,0.000002,0.000005,0.000008,0.000343,0.000256,0.000356,0.000223,0.000223,0.002731,0.342947,-0.002934,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000215,0.000001,0.000001,0.000001,0.000008,0.000332,0.000252,0.000341,0.000148,0.000148,0.002651,0.340025,-0.002922,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000839,0.000049,0.000089,0.000049,0.000009,0.000323,0.000249,0.000381,0.000062,0.000062,0.002577,0.337760,-0.002265,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001589,0.000204,0.000331,0.000204,0.000010,0.000314,0.000247,0.000528,0.000000,0.000000,0.002510,0.336091,-0.001669,1.000000,0.000167 +27,2022-08-02 03:00:00,0.001457,0.000256,0.000282,0.000256,0.000011,0.000306,0.000244,0.000572,0.000000,0.000000,0.002449,0.334364,-0.001726,1.000000,0.000193 +28,2022-08-02 04:00:00,0.001758,0.000353,0.000394,0.000353,0.000011,0.000299,0.000242,0.000663,0.000000,0.000000,0.002392,0.332850,-0.001514,1.000000,0.000234 +29,2022-08-02 05:00:00,0.000962,0.000227,0.000131,0.000227,0.000012,0.000292,0.000240,0.000531,0.000000,0.000000,0.002340,0.330835,-0.002016,1.000000,0.000138 +30,2022-08-02 06:00:00,0.000683,0.000149,0.000068,0.000149,0.000013,0.000286,0.000237,0.000448,0.000000,0.000000,0.002292,0.328636,-0.002199,1.000000,0.000057 +31,2022-08-02 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000014,0.000280,0.000233,0.000337,0.000000,0.000000,0.002245,0.325866,-0.002770,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000014,0.000274,0.000230,0.000302,0.000000,0.000000,0.002201,0.323137,-0.002728,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000269,0.000226,0.000284,0.000000,0.000000,0.002159,0.320450,-0.002687,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000263,0.000223,0.000280,0.000000,0.000000,0.002119,0.317804,-0.002646,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000258,0.000220,0.000275,0.000000,0.000000,0.002080,0.315198,-0.002606,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000254,0.000216,0.000272,0.000000,0.000000,0.002042,0.312631,-0.002567,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000121,0.000001,0.000002,0.000001,0.000019,0.000249,0.000213,0.000269,0.000000,0.000000,0.002006,0.310220,-0.002411,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000127,0.000001,0.000000,0.000001,0.000020,0.000245,0.000210,0.000265,0.000116,0.000116,0.001971,0.307739,-0.002481,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000127,0.000000,0.000000,0.000000,0.000021,0.000240,0.000207,0.000261,0.000315,0.000315,0.001938,0.305101,-0.002638,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000127,0.000000,0.000000,0.000000,0.000021,0.000236,0.000203,0.000258,0.000442,0.000442,0.001904,0.302378,-0.002723,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000127,0.000000,0.000000,0.000000,0.000022,0.000232,0.000199,0.000254,0.000524,0.000524,0.001872,0.299614,-0.002764,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000930,0.000009,0.000017,0.000009,0.000023,0.000228,0.000197,0.000261,0.000587,0.000587,0.001841,0.297604,-0.002010,1.000000,0.000008 +43,2022-08-02 19:00:00,0.000151,0.000004,0.000000,0.000004,0.000024,0.000224,0.000193,0.000253,0.000533,0.000533,0.001810,0.294928,-0.002676,1.000000,0.000003 +44,2022-08-02 20:00:00,0.000006,0.000003,0.000000,0.000003,0.000025,0.000220,0.000190,0.000249,0.000491,0.000491,0.001779,0.292191,-0.002737,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000006,0.000000,0.000000,0.000000,0.000026,0.000216,0.000186,0.000243,0.000479,0.000479,0.001749,0.289508,-0.002683,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000006,0.000000,0.000000,0.000000,0.000027,0.000213,0.000183,0.000240,0.000415,0.000415,0.001719,0.286929,-0.002580,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000006,0.000000,0.000000,0.000000,0.000028,0.000209,0.000180,0.000237,0.000300,0.000300,0.001690,0.284501,-0.002428,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000029,0.000205,0.000177,0.000235,0.000163,0.000163,0.001662,0.282245,-0.002256,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000006,0.000000,0.000000,0.000000,0.000031,0.000202,0.000174,0.000232,0.000023,0.000023,0.001634,0.280161,-0.002084,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000006,0.000000,0.000000,0.000000,0.000032,0.000198,0.000172,0.000230,0.000000,0.000000,0.001607,0.278132,-0.002029,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000006,0.000000,0.000000,0.000000,0.000033,0.000195,0.000169,0.000228,0.000000,0.000000,0.001581,0.276134,-0.001999,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000006,0.000000,0.000000,0.000000,0.000034,0.000192,0.000166,0.000226,0.000000,0.000000,0.001555,0.274165,-0.001968,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000006,0.000000,0.000000,0.000000,0.000035,0.000189,0.000164,0.000224,0.000000,0.000000,0.001530,0.272227,-0.001938,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000006,0.000000,0.000000,0.000000,0.000036,0.000186,0.000161,0.000222,0.000000,0.000000,0.001506,0.270318,-0.001909,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000183,0.000159,0.000220,0.000000,0.000000,0.001482,0.268432,-0.001886,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000180,0.000157,0.000218,0.000000,0.000000,0.001459,0.266574,-0.001858,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000177,0.000154,0.000216,0.000000,0.000000,0.001436,0.264744,-0.001830,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000174,0.000152,0.000215,0.000000,0.000000,0.001414,0.262942,-0.001802,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000171,0.000150,0.000213,0.000000,0.000000,0.001392,0.261168,-0.001774,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000169,0.000147,0.000211,0.000000,0.000000,0.001371,0.259420,-0.001748,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000166,0.000145,0.000210,0.000000,0.000000,0.001350,0.257699,-0.001721,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000163,0.000143,0.000209,0.000118,0.000118,0.001329,0.255888,-0.001812,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000161,0.000140,0.000207,0.000357,0.000357,0.001308,0.253868,-0.002019,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000158,0.000137,0.000206,0.000505,0.000505,0.001287,0.251735,-0.002134,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000156,0.000134,0.000204,0.000600,0.000600,0.001266,0.249539,-0.002196,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000153,0.000132,0.000203,0.000584,0.000584,0.001245,0.247392,-0.002146,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000150,0.000129,0.000201,0.000522,0.000522,0.001223,0.245340,-0.002053,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004521,0.000805,0.001463,0.000805,0.000052,0.000148,0.000130,0.001005,0.000483,0.000483,0.001206,0.246368,0.001028,1.000000,0.000659 +69,2022-08-03 21:00:00,0.000552,0.000367,0.000001,0.000367,0.000053,0.000146,0.000128,0.000566,0.000449,0.000449,0.001188,0.244944,-0.001423,1.000000,0.000293 +70,2022-08-03 22:00:00,0.000000,0.000293,0.000000,0.000293,0.000055,0.000144,0.000126,0.000491,0.000380,0.000380,0.001171,0.243068,-0.001876,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000056,0.000141,0.000124,0.000198,0.000279,0.000279,0.001153,0.241393,-0.001676,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000139,0.000122,0.000196,0.000170,0.000170,0.001135,0.239778,-0.001615,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000137,0.000120,0.000195,0.000035,0.000035,0.001118,0.238321,-0.001457,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000135,0.000118,0.000195,0.000000,0.000000,0.001101,0.236920,-0.001401,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000133,0.000116,0.000194,0.000000,0.000000,0.001084,0.235540,-0.001380,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000131,0.000115,0.000193,0.000000,0.000000,0.001068,0.234180,-0.001359,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000129,0.000113,0.000192,0.000000,0.000000,0.001052,0.232842,-0.001338,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000127,0.000111,0.000191,0.000000,0.000000,0.001036,0.231524,-0.001318,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000125,0.000109,0.000191,0.000000,0.000000,0.001020,0.230226,-0.001298,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000123,0.000108,0.000190,0.000000,0.000000,0.001005,0.228947,-0.001279,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000121,0.000106,0.000190,0.000000,0.000000,0.000990,0.227688,-0.001259,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000119,0.000104,0.000189,0.000000,0.000000,0.000975,0.226448,-0.001240,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000118,0.000103,0.000188,0.000000,0.000000,0.000960,0.225226,-0.001221,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000116,0.000101,0.000188,0.000000,0.000000,0.000946,0.224024,-0.001203,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000114,0.000100,0.000187,0.000000,0.000000,0.000932,0.222839,-0.001185,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000112,0.000098,0.000187,0.000116,0.000116,0.000918,0.221559,-0.001281,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000110,0.000096,0.000186,0.000352,0.000352,0.000903,0.220065,-0.001494,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000109,0.000094,0.000186,0.000508,0.000508,0.000889,0.218439,-0.001625,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000107,0.000092,0.000185,0.000605,0.000605,0.000874,0.216743,-0.001696,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000105,0.000090,0.000185,0.000659,0.000659,0.000859,0.215020,-0.001723,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000103,0.000088,0.000184,0.000595,0.000595,0.000843,0.213385,-0.001634,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000101,0.000086,0.000183,0.000530,0.000530,0.000828,0.211841,-0.001545,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000099,0.000084,0.000183,0.000501,0.000501,0.000812,0.210347,-0.001493,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000097,0.000082,0.000182,0.000431,0.000431,0.000796,0.208946,-0.001401,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000095,0.000080,0.000181,0.000312,0.000312,0.000781,0.207682,-0.001264,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000094,0.000079,0.000181,0.000176,0.000176,0.000766,0.206572,-0.001110,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000092,0.000077,0.000180,0.000037,0.000037,0.000752,0.205615,-0.000957,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000090,0.000076,0.000180,0.000000,0.000000,0.000738,0.204710,-0.000905,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000088,0.000075,0.000180,0.000000,0.000000,0.000725,0.203818,-0.000892,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000087,0.000074,0.000179,0.000000,0.000000,0.000712,0.202940,-0.000878,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000085,0.000073,0.000179,0.000000,0.000000,0.000700,0.202075,-0.000865,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000084,0.000072,0.000179,0.000000,0.000000,0.000688,0.201223,-0.000852,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000082,0.000071,0.000179,0.000000,0.000000,0.000676,0.200384,-0.000839,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000081,0.000070,0.000178,0.000000,0.000000,0.000664,0.199558,-0.000826,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000080,0.000069,0.000178,0.000000,0.000000,0.000653,0.198744,-0.000814,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000078,0.000068,0.000178,0.000000,0.000000,0.000643,0.197943,-0.000801,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000077,0.000066,0.000178,0.000000,0.000000,0.000632,0.197154,-0.000789,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000076,0.000065,0.000178,0.000000,0.000000,0.000622,0.196377,-0.000777,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000075,0.000064,0.000178,0.000000,0.000000,0.000612,0.195611,-0.000765,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000073,0.000063,0.000178,0.000127,0.000127,0.000602,0.194732,-0.000879,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000072,0.000062,0.000178,0.000362,0.000362,0.000592,0.193635,-0.001097,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000071,0.000060,0.000178,0.000512,0.000512,0.000581,0.192407,-0.001228,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000069,0.000059,0.000178,0.000614,0.000614,0.000570,0.191097,-0.001310,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000068,0.000057,0.000178,0.000608,0.000608,0.000559,0.189813,-0.001284,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000047,0.000000,0.000000,0.000000,0.000111,0.000067,0.000055,0.000178,0.000556,0.000556,0.000548,0.188645,-0.001168,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000047,0.000000,0.000000,0.000000,0.000112,0.000065,0.000054,0.000178,0.000507,0.000507,0.000537,0.187545,-0.001101,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000052,0.000000,0.000000,0.000000,0.000114,0.000064,0.000053,0.000178,0.000460,0.000460,0.000526,0.186511,-0.001033,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000045,0.000000,0.000000,0.000000,0.000115,0.000063,0.000051,0.000177,0.000395,0.000395,0.000514,0.185550,-0.000961,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000226,0.000000,0.000000,0.000000,0.000116,0.000061,0.000051,0.000177,0.000291,0.000291,0.000504,0.184885,-0.000665,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000032,0.000000,0.000000,0.000000,0.000117,0.000060,0.000050,0.000177,0.000170,0.000170,0.000493,0.184158,-0.000727,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000642,0.000023,0.000041,0.000023,0.000119,0.000059,0.000050,0.000200,0.000053,0.000053,0.000484,0.184117,-0.000041,1.000000,0.000019 +122,2022-08-06 02:00:00,0.001737,0.000184,0.000316,0.000184,0.000120,0.000058,0.000051,0.000362,0.000000,0.000000,0.000477,0.184937,0.000820,1.000000,0.000151 +123,2022-08-06 03:00:00,0.000525,0.000106,0.000033,0.000106,0.000121,0.000057,0.000051,0.000284,0.000000,0.000000,0.000470,0.184829,-0.000108,1.000000,0.000078 +124,2022-08-06 04:00:00,0.000243,0.000076,0.000007,0.000076,0.000122,0.000056,0.000050,0.000254,0.000000,0.000000,0.000464,0.184470,-0.000359,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000262,0.000013,0.000009,0.000013,0.000123,0.000056,0.000050,0.000192,0.000000,0.000000,0.000458,0.184135,-0.000335,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000407,0.000015,0.000020,0.000015,0.000125,0.000055,0.000049,0.000194,0.000000,0.000000,0.000452,0.183936,-0.000199,1.000000,0.000011 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000126,0.000054,0.000049,0.000187,0.000000,0.000000,0.000446,0.183359,-0.000577,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000127,0.000054,0.000048,0.000185,0.000000,0.000000,0.000441,0.182791,-0.000568,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000053,0.000047,0.000181,0.000000,0.000000,0.000435,0.182231,-0.000559,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000052,0.000046,0.000182,0.000000,0.000000,0.000429,0.181680,-0.000551,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000051,0.000046,0.000182,0.000000,0.000000,0.000424,0.181138,-0.000543,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000051,0.000045,0.000182,0.000000,0.000000,0.000418,0.180603,-0.000534,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000050,0.000044,0.000183,0.000000,0.000000,0.000412,0.180077,-0.000526,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000049,0.000044,0.000183,0.000109,0.000109,0.000406,0.179451,-0.000626,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000049,0.000042,0.000184,0.000337,0.000337,0.000400,0.178611,-0.000840,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000048,0.000041,0.000184,0.000483,0.000483,0.000394,0.177640,-0.000971,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000047,0.000040,0.000185,0.000580,0.000580,0.000386,0.176587,-0.001053,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000046,0.000038,0.000185,0.000651,0.000651,0.000379,0.175481,-0.001106,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000045,0.000037,0.000185,0.000599,0.000599,0.000371,0.174443,-0.001038,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000044,0.000036,0.000185,0.000549,0.000549,0.000363,0.173468,-0.000974,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000043,0.000035,0.000185,0.000505,0.000505,0.000354,0.172553,-0.000915,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000042,0.000034,0.000185,0.000429,0.000429,0.000346,0.171727,-0.000826,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000041,0.000033,0.000185,0.000309,0.000309,0.000337,0.171031,-0.000696,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000040,0.000032,0.000186,0.000172,0.000172,0.000329,0.170480,-0.000551,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000039,0.000031,0.000186,0.000033,0.000033,0.000322,0.170074,-0.000405,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000038,0.000031,0.000186,0.000000,0.000000,0.000314,0.169708,-0.000367,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000037,0.000030,0.000186,0.000000,0.000000,0.000308,0.169347,-0.000361,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000037,0.000030,0.000187,0.000000,0.000000,0.000301,0.168991,-0.000356,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000036,0.000030,0.000187,0.000000,0.000000,0.000295,0.168641,-0.000350,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000035,0.000029,0.000187,0.000000,0.000000,0.000289,0.168296,-0.000345,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000034,0.000029,0.000188,0.000000,0.000000,0.000283,0.167956,-0.000340,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000034,0.000028,0.000188,0.000000,0.000000,0.000278,0.167621,-0.000335,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000033,0.000028,0.000189,0.000000,0.000000,0.000272,0.167292,-0.000330,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000032,0.000027,0.000189,0.000000,0.000000,0.000267,0.166967,-0.000325,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000032,0.000027,0.000190,0.000000,0.000000,0.000262,0.166648,-0.000320,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000031,0.000027,0.000190,0.000000,0.000000,0.000258,0.166333,-0.000315,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000031,0.000026,0.000191,0.000000,0.000000,0.000253,0.166023,-0.000310,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000030,0.000026,0.000191,0.000106,0.000106,0.000249,0.165614,-0.000409,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000030,0.000025,0.000191,0.000340,0.000340,0.000244,0.164980,-0.000634,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000029,0.000024,0.000192,0.000487,0.000487,0.000239,0.164210,-0.000769,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000028,0.000023,0.000192,0.000584,0.000584,0.000233,0.163358,-0.000853,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000028,0.000022,0.000193,0.000631,0.000631,0.000227,0.162471,-0.000886,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000027,0.000020,0.000193,0.000578,0.000578,0.000221,0.161650,-0.000821,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000026,0.000019,0.000193,0.000531,0.000531,0.000214,0.160888,-0.000762,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000025,0.000019,0.000193,0.000497,0.000497,0.000208,0.160172,-0.000716,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000024,0.000018,0.000194,0.000415,0.000415,0.000201,0.159546,-0.000625,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000024,0.000017,0.000194,0.000303,0.000303,0.000194,0.159041,-0.000505,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000023,0.000017,0.000194,0.000140,0.000140,0.000188,0.158704,-0.000337,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000022,0.000016,0.000194,0.000011,0.000011,0.000183,0.158499,-0.000205,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000021,0.000016,0.000195,0.000000,0.000000,0.000177,0.158308,-0.000191,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000021,0.000016,0.000195,0.000000,0.000000,0.000172,0.158119,-0.000188,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000020,0.000016,0.000195,0.000000,0.000000,0.000168,0.157934,-0.000185,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000020,0.000015,0.000196,0.000000,0.000000,0.000163,0.157751,-0.000183,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000019,0.000015,0.000196,0.000000,0.000000,0.000159,0.157571,-0.000180,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000019,0.000015,0.000197,0.000000,0.000000,0.000155,0.157394,-0.000177,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000018,0.000015,0.000197,0.000000,0.000000,0.000152,0.157220,-0.000174,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000018,0.000014,0.000198,0.000000,0.000000,0.000148,0.157048,-0.000171,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000018,0.000014,0.000198,0.000000,0.000000,0.000145,0.156879,-0.000169,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000017,0.000014,0.000199,0.000000,0.000000,0.000142,0.156712,-0.000167,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000017,0.000014,0.000200,0.000000,0.000000,0.000139,0.156548,-0.000164,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000016,0.000014,0.000200,0.000000,0.000000,0.000136,0.156387,-0.000162,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000016,0.000013,0.000201,0.000089,0.000089,0.000133,0.156139,-0.000247,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000016,0.000013,0.000201,0.000324,0.000324,0.000130,0.155665,-0.000475,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000015,0.000012,0.000202,0.000477,0.000477,0.000127,0.155047,-0.000618,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000015,0.000011,0.000202,0.000569,0.000569,0.000123,0.154348,-0.000699,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000014,0.000010,0.000203,0.000619,0.000619,0.000118,0.153610,-0.000738,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000014,0.000009,0.000203,0.000577,0.000577,0.000114,0.152925,-0.000685,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000013,0.000008,0.000203,0.000518,0.000518,0.000109,0.152308,-0.000617,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000013,0.000008,0.000203,0.000486,0.000486,0.000104,0.151732,-0.000576,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000012,0.000007,0.000204,0.000420,0.000420,0.000099,0.151230,-0.000502,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000011,0.000006,0.000204,0.000301,0.000301,0.000094,0.150852,-0.000378,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000011,0.000006,0.000204,0.000165,0.000165,0.000089,0.150614,-0.000238,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000010,0.000006,0.000205,0.000021,0.000021,0.000085,0.150522,-0.000093,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000010,0.000006,0.000205,0.000000,0.000000,0.000081,0.150451,-0.000070,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000009,0.000006,0.000205,0.000000,0.000000,0.000078,0.150382,-0.000069,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000009,0.000006,0.000206,0.000000,0.000000,0.000074,0.150314,-0.000068,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000009,0.000006,0.000206,0.000000,0.000000,0.000071,0.150247,-0.000067,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000008,0.000006,0.000207,0.000000,0.000000,0.000069,0.150181,-0.000066,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000008,0.000005,0.000207,0.000000,0.000000,0.000066,0.150116,-0.000065,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000008,0.000005,0.000208,0.000000,0.000000,0.000064,0.150051,-0.000064,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000007,0.000005,0.000208,0.000000,0.000000,0.000062,0.149988,-0.000063,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000007,0.000005,0.000209,0.000000,0.000000,0.000060,0.149926,-0.000062,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000007,0.000005,0.000210,0.000000,0.000000,0.000058,0.149865,-0.000061,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000007,0.000005,0.000210,0.000000,0.000000,0.000056,0.149804,-0.000060,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000007,0.000005,0.000211,0.000000,0.000000,0.000055,0.149745,-0.000059,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000006,0.000005,0.000211,0.000099,0.000099,0.000053,0.149589,-0.000156,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619313.csv b/test/channel_loss/channel_forcing/et/cat-2619313.csv new file mode 100644 index 000000000..934696ef1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619313.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001471,0.000364,0.001471,0.000152,0.000152,0.010490,0.430045,-0.004264,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001317,0.000358,0.001317,0.000036,0.000036,0.009531,0.425899,-0.004145,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001187,0.000353,0.001187,0.000000,0.000000,0.008696,0.421854,-0.004045,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001076,0.000347,0.001076,0.000000,0.000000,0.007967,0.417872,-0.003982,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000981,0.000342,0.000981,0.000000,0.000000,0.007328,0.413952,-0.003920,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000898,0.000337,0.000899,0.000000,0.000000,0.006766,0.410093,-0.003859,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000827,0.000331,0.000827,0.000000,0.000000,0.006271,0.406295,-0.003798,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000764,0.000326,0.000765,0.000000,0.000000,0.005833,0.402556,-0.003739,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000709,0.000321,0.000710,0.000000,0.000000,0.005445,0.398875,-0.003681,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000661,0.000316,0.000662,0.000000,0.000000,0.005099,0.395251,-0.003623,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000619,0.000311,0.000620,0.000000,0.000000,0.004792,0.391685,-0.003567,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000581,0.000306,0.000583,0.000000,0.000000,0.004517,0.388173,-0.003511,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000547,0.000301,0.000549,0.000000,0.000000,0.004271,0.384717,-0.003456,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000517,0.000297,0.000520,0.000000,0.000000,0.004051,0.381315,-0.003402,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000491,0.000292,0.000494,0.000124,0.000124,0.003852,0.377844,-0.003471,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000467,0.000287,0.000470,0.000364,0.000364,0.003672,0.374190,-0.003654,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000445,0.000282,0.000449,0.000522,0.000522,0.003509,0.370438,-0.003752,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000425,0.000276,0.000429,0.000612,0.000612,0.003360,0.366656,-0.003782,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000407,0.000271,0.000412,0.000526,0.000526,0.003224,0.363017,-0.003639,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000446,0.000000,0.000000,0.000000,0.000005,0.000391,0.000267,0.000396,0.000484,0.000484,0.003101,0.359916,-0.003101,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000396,0.000000,0.000000,0.000000,0.000006,0.000376,0.000263,0.000382,0.000414,0.000414,0.002988,0.356883,-0.003033,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000847,0.000021,0.000039,0.000021,0.000006,0.000363,0.000259,0.000390,0.000343,0.000343,0.002885,0.354372,-0.002510,1.000000,0.000017 +22,2022-08-01 22:00:00,0.000507,0.000013,0.000007,0.000013,0.000007,0.000350,0.000256,0.000370,0.000301,0.000301,0.002790,0.351640,-0.002733,1.000000,0.000011 +23,2022-08-01 23:00:00,0.000589,0.000021,0.000021,0.000021,0.000007,0.000339,0.000252,0.000368,0.000215,0.000215,0.002703,0.349100,-0.002539,1.000000,0.000011 +24,2022-08-02 00:00:00,0.000566,0.000022,0.000027,0.000022,0.000008,0.000329,0.000249,0.000358,0.000141,0.000141,0.002623,0.346645,-0.002455,1.000000,0.000017 +25,2022-08-02 01:00:00,0.001566,0.000173,0.000295,0.000173,0.000009,0.000319,0.000247,0.000501,0.000059,0.000059,0.002551,0.345031,-0.001614,1.000000,0.000138 +26,2022-08-02 02:00:00,0.001801,0.000302,0.000405,0.000302,0.000009,0.000311,0.000245,0.000622,0.000000,0.000000,0.002485,0.343623,-0.001408,1.000000,0.000241 +27,2022-08-02 03:00:00,0.001652,0.000351,0.000346,0.000351,0.000010,0.000303,0.000243,0.000663,0.000000,0.000000,0.002425,0.342148,-0.001475,1.000000,0.000237 +28,2022-08-02 04:00:00,0.001864,0.000403,0.000428,0.000403,0.000011,0.000296,0.000241,0.000709,0.000000,0.000000,0.002370,0.340824,-0.001324,1.000000,0.000262 +29,2022-08-02 05:00:00,0.001307,0.000300,0.000225,0.000300,0.000011,0.000289,0.000238,0.000601,0.000000,0.000000,0.002319,0.339171,-0.001653,1.000000,0.000187 +30,2022-08-02 06:00:00,0.001199,0.000248,0.000192,0.000248,0.000012,0.000283,0.000236,0.000543,0.000000,0.000000,0.002272,0.337471,-0.001700,1.000000,0.000132 +31,2022-08-02 07:00:00,0.000000,0.000093,0.000000,0.000093,0.000013,0.000277,0.000232,0.000383,0.000000,0.000000,0.002227,0.334806,-0.002665,1.000000,0.000038 +32,2022-08-02 08:00:00,0.000000,0.000038,0.000000,0.000038,0.000014,0.000272,0.000229,0.000324,0.000000,0.000000,0.002184,0.332183,-0.002623,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000267,0.000225,0.000281,0.000000,0.000000,0.002143,0.329600,-0.002582,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000261,0.000222,0.000277,0.000000,0.000000,0.002103,0.327058,-0.002542,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000257,0.000218,0.000273,0.000000,0.000000,0.002064,0.324556,-0.002502,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000252,0.000215,0.000269,0.000000,0.000000,0.002028,0.322092,-0.002463,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000255,0.000005,0.000010,0.000005,0.000018,0.000247,0.000212,0.000270,0.000000,0.000000,0.001992,0.319909,-0.002183,1.000000,0.000004 +38,2022-08-02 14:00:00,0.000240,0.000004,0.000002,0.000004,0.000019,0.000243,0.000209,0.000265,0.000115,0.000115,0.001958,0.317639,-0.002270,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000204,0.000003,0.000000,0.000003,0.000020,0.000239,0.000205,0.000261,0.000311,0.000311,0.001924,0.315179,-0.002461,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000215,0.000000,0.000000,0.000000,0.000020,0.000235,0.000202,0.000255,0.000442,0.000442,0.001892,0.312638,-0.002540,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000170,0.000000,0.000000,0.000000,0.000021,0.000230,0.000198,0.000252,0.000525,0.000525,0.001859,0.310011,-0.002627,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000528,0.000000,0.000000,0.000000,0.000022,0.000226,0.000195,0.000249,0.000584,0.000584,0.001828,0.307720,-0.002291,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000136,0.000000,0.000000,0.000000,0.000023,0.000222,0.000191,0.000246,0.000528,0.000528,0.001797,0.305133,-0.002587,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000062,0.000000,0.000000,0.000000,0.000024,0.000219,0.000188,0.000243,0.000491,0.000491,0.001766,0.302551,-0.002582,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000062,0.000000,0.000000,0.000000,0.000025,0.000215,0.000184,0.000240,0.000470,0.000470,0.001736,0.300030,-0.002521,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000062,0.000000,0.000000,0.000000,0.000026,0.000211,0.000181,0.000237,0.000415,0.000415,0.001706,0.297602,-0.002428,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000062,0.000000,0.000000,0.000000,0.000027,0.000207,0.000178,0.000234,0.000299,0.000299,0.001676,0.295326,-0.002276,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000028,0.000204,0.000175,0.000232,0.000161,0.000161,0.001648,0.293221,-0.002105,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000062,0.000000,0.000000,0.000000,0.000029,0.000200,0.000172,0.000229,0.000022,0.000022,0.001620,0.291287,-0.001935,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000062,0.000000,0.000001,0.000000,0.000030,0.000197,0.000170,0.000227,0.000000,0.000000,0.001593,0.289403,-0.001884,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000062,0.000000,0.000001,0.000000,0.000031,0.000193,0.000167,0.000225,0.000000,0.000000,0.001566,0.287549,-0.001854,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000062,0.000001,0.000001,0.000001,0.000032,0.000190,0.000165,0.000223,0.000000,0.000000,0.001541,0.285724,-0.001825,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000062,0.000001,0.000001,0.000001,0.000033,0.000187,0.000162,0.000221,0.000000,0.000000,0.001516,0.283927,-0.001797,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000062,0.000001,0.000001,0.000001,0.000034,0.000184,0.000160,0.000219,0.000000,0.000000,0.001492,0.282158,-0.001769,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000181,0.000157,0.000217,0.000000,0.000000,0.001468,0.280357,-0.001802,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000178,0.000155,0.000215,0.000000,0.000000,0.001445,0.278583,-0.001773,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000175,0.000152,0.000213,0.000000,0.000000,0.001422,0.276838,-0.001746,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000172,0.000150,0.000211,0.000000,0.000000,0.001399,0.275119,-0.001719,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000170,0.000148,0.000209,0.000000,0.000000,0.001377,0.273427,-0.001692,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000167,0.000145,0.000208,0.000000,0.000000,0.001356,0.271762,-0.001665,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000164,0.000143,0.000206,0.000000,0.000000,0.001334,0.270123,-0.001639,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000162,0.000141,0.000205,0.000118,0.000118,0.001313,0.268392,-0.001730,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000159,0.000138,0.000203,0.000367,0.000367,0.001292,0.266444,-0.001948,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000156,0.000135,0.000201,0.000513,0.000513,0.001271,0.264383,-0.002062,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000154,0.000132,0.000200,0.000614,0.000614,0.001250,0.262254,-0.002129,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000151,0.000129,0.000198,0.000599,0.000599,0.001228,0.260173,-0.002080,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000148,0.000126,0.000197,0.000535,0.000535,0.001206,0.258188,-0.001985,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003006,0.000356,0.000647,0.000356,0.000050,0.000146,0.000127,0.000551,0.000493,0.000493,0.001188,0.258597,0.000409,1.000000,0.000291 +69,2022-08-03 21:00:00,0.000371,0.000162,0.000000,0.000162,0.000051,0.000143,0.000125,0.000356,0.000451,0.000451,0.001169,0.257085,-0.001512,1.000000,0.000129 +70,2022-08-03 22:00:00,0.000000,0.000129,0.000000,0.000129,0.000052,0.000141,0.000122,0.000323,0.000381,0.000381,0.001150,0.255300,-0.001785,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000053,0.000139,0.000120,0.000192,0.000282,0.000282,0.001132,0.253703,-0.001597,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000137,0.000118,0.000191,0.000171,0.000171,0.001113,0.252177,-0.001526,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000134,0.000116,0.000190,0.000032,0.000032,0.001095,0.250811,-0.001366,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000132,0.000114,0.000189,0.000000,0.000000,0.001078,0.249499,-0.001312,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000130,0.000113,0.000188,0.000000,0.000000,0.001060,0.248207,-0.001292,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000128,0.000111,0.000187,0.000000,0.000000,0.001043,0.246936,-0.001272,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000126,0.000109,0.000186,0.000000,0.000000,0.001027,0.245684,-0.001252,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000124,0.000107,0.000185,0.000000,0.000000,0.001010,0.244451,-0.001232,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000122,0.000106,0.000184,0.000000,0.000000,0.000994,0.243238,-0.001213,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000120,0.000104,0.000184,0.000000,0.000000,0.000979,0.242044,-0.001194,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000118,0.000103,0.000183,0.000000,0.000000,0.000963,0.240869,-0.001175,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000116,0.000101,0.000182,0.000000,0.000000,0.000948,0.239712,-0.001157,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000114,0.000099,0.000182,0.000000,0.000000,0.000933,0.238573,-0.001139,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000112,0.000098,0.000181,0.000000,0.000000,0.000919,0.237451,-0.001121,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000111,0.000096,0.000180,0.000000,0.000000,0.000904,0.236348,-0.001104,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000109,0.000095,0.000180,0.000114,0.000114,0.000890,0.235149,-0.001199,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000107,0.000093,0.000179,0.000361,0.000361,0.000876,0.233726,-0.001423,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000105,0.000090,0.000179,0.000521,0.000521,0.000861,0.232167,-0.001559,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000103,0.000088,0.000178,0.000616,0.000616,0.000846,0.230539,-0.001628,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000101,0.000086,0.000177,0.000685,0.000685,0.000830,0.228869,-0.001670,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000100,0.000084,0.000177,0.000617,0.000617,0.000815,0.227292,-0.001578,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000098,0.000082,0.000176,0.000542,0.000542,0.000799,0.225813,-0.001478,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000096,0.000080,0.000175,0.000506,0.000506,0.000783,0.224393,-0.001420,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000094,0.000078,0.000174,0.000433,0.000433,0.000767,0.223067,-0.001326,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000092,0.000076,0.000174,0.000313,0.000313,0.000752,0.221880,-0.001187,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000090,0.000075,0.000173,0.000178,0.000178,0.000737,0.220844,-0.001036,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000088,0.000074,0.000172,0.000036,0.000036,0.000722,0.219964,-0.000880,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000086,0.000072,0.000172,0.000000,0.000000,0.000708,0.219134,-0.000831,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000085,0.000071,0.000171,0.000000,0.000000,0.000695,0.218316,-0.000818,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000083,0.000070,0.000171,0.000000,0.000000,0.000682,0.217511,-0.000805,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000082,0.000069,0.000171,0.000000,0.000000,0.000669,0.216718,-0.000793,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000080,0.000068,0.000170,0.000000,0.000000,0.000657,0.215938,-0.000780,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000079,0.000067,0.000170,0.000000,0.000000,0.000646,0.215170,-0.000768,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000077,0.000066,0.000170,0.000000,0.000000,0.000634,0.214414,-0.000756,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000076,0.000065,0.000170,0.000000,0.000000,0.000623,0.213670,-0.000744,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000075,0.000064,0.000170,0.000000,0.000000,0.000612,0.212937,-0.000733,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000073,0.000063,0.000170,0.000000,0.000000,0.000602,0.212216,-0.000721,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000072,0.000062,0.000170,0.000000,0.000000,0.000592,0.211506,-0.000710,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000071,0.000061,0.000169,0.000000,0.000000,0.000582,0.210807,-0.000699,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000070,0.000060,0.000169,0.000126,0.000126,0.000572,0.209996,-0.000812,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000068,0.000058,0.000169,0.000366,0.000366,0.000562,0.208960,-0.001036,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000067,0.000057,0.000169,0.000521,0.000521,0.000552,0.207788,-0.001172,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000066,0.000055,0.000169,0.000627,0.000627,0.000541,0.206531,-0.001258,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000064,0.000053,0.000169,0.000616,0.000616,0.000530,0.205303,-0.001227,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000106,0.000063,0.000052,0.000169,0.000570,0.000570,0.000518,0.204203,-0.001101,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000107,0.000062,0.000050,0.000169,0.000514,0.000514,0.000507,0.203174,-0.001029,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000108,0.000060,0.000049,0.000168,0.000470,0.000470,0.000496,0.202205,-0.000969,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000018,0.000000,0.000000,0.000000,0.000109,0.000059,0.000048,0.000168,0.000400,0.000400,0.000485,0.201276,-0.000929,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000174,0.000000,0.000000,0.000000,0.000110,0.000058,0.000047,0.000168,0.000295,0.000295,0.000474,0.200617,-0.000659,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000111,0.000056,0.000046,0.000168,0.000170,0.000170,0.000463,0.199927,-0.000690,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000459,0.000011,0.000020,0.000011,0.000113,0.000055,0.000046,0.000179,0.000050,0.000050,0.000454,0.199791,-0.000136,1.000000,0.000009 +122,2022-08-06 02:00:00,0.001163,0.000087,0.000149,0.000087,0.000114,0.000054,0.000046,0.000255,0.000000,0.000000,0.000446,0.200274,0.000483,1.000000,0.000071 +123,2022-08-06 03:00:00,0.000388,0.000051,0.000018,0.000051,0.000115,0.000053,0.000046,0.000219,0.000000,0.000000,0.000439,0.200115,-0.000159,1.000000,0.000038 +124,2022-08-06 04:00:00,0.000200,0.000037,0.000005,0.000037,0.000116,0.000053,0.000046,0.000206,0.000000,0.000000,0.000432,0.199786,-0.000329,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000272,0.000010,0.000009,0.000010,0.000117,0.000052,0.000045,0.000179,0.000000,0.000000,0.000426,0.199529,-0.000257,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000263,0.000008,0.000008,0.000008,0.000118,0.000051,0.000045,0.000177,0.000000,0.000000,0.000420,0.199268,-0.000262,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000119,0.000050,0.000044,0.000174,0.000000,0.000000,0.000414,0.198760,-0.000508,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000121,0.000050,0.000044,0.000172,0.000000,0.000000,0.000408,0.198260,-0.000500,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000049,0.000043,0.000171,0.000000,0.000000,0.000402,0.197768,-0.000492,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000048,0.000042,0.000171,0.000000,0.000000,0.000396,0.197284,-0.000484,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000047,0.000042,0.000171,0.000000,0.000000,0.000390,0.196807,-0.000477,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000047,0.000041,0.000172,0.000000,0.000000,0.000384,0.196338,-0.000469,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000046,0.000040,0.000172,0.000000,0.000000,0.000379,0.195876,-0.000462,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000045,0.000040,0.000173,0.000109,0.000109,0.000373,0.195313,-0.000562,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000045,0.000038,0.000173,0.000344,0.000344,0.000367,0.194528,-0.000785,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000044,0.000037,0.000173,0.000500,0.000500,0.000360,0.193603,-0.000926,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000043,0.000036,0.000173,0.000599,0.000599,0.000353,0.192594,-0.001009,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000042,0.000034,0.000174,0.000665,0.000665,0.000346,0.191536,-0.001058,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000041,0.000033,0.000174,0.000619,0.000619,0.000337,0.190539,-0.000997,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000040,0.000032,0.000174,0.000564,0.000564,0.000329,0.189612,-0.000927,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000039,0.000030,0.000174,0.000508,0.000508,0.000321,0.188755,-0.000857,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000038,0.000029,0.000174,0.000435,0.000435,0.000312,0.187983,-0.000772,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000037,0.000028,0.000174,0.000312,0.000312,0.000304,0.187345,-0.000638,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000036,0.000028,0.000174,0.000172,0.000172,0.000296,0.186854,-0.000491,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000035,0.000027,0.000174,0.000031,0.000031,0.000288,0.186510,-0.000344,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000034,0.000027,0.000174,0.000000,0.000000,0.000281,0.186201,-0.000309,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000033,0.000026,0.000174,0.000000,0.000000,0.000274,0.185897,-0.000304,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000032,0.000026,0.000175,0.000000,0.000000,0.000268,0.185598,-0.000299,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000032,0.000026,0.000175,0.000000,0.000000,0.000262,0.185304,-0.000294,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000031,0.000025,0.000175,0.000000,0.000000,0.000256,0.185014,-0.000290,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000030,0.000025,0.000176,0.000000,0.000000,0.000251,0.184729,-0.000285,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000030,0.000024,0.000176,0.000000,0.000000,0.000245,0.184448,-0.000281,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000029,0.000024,0.000177,0.000000,0.000000,0.000240,0.184171,-0.000276,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000029,0.000024,0.000177,0.000000,0.000000,0.000235,0.183899,-0.000272,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000028,0.000023,0.000177,0.000000,0.000000,0.000231,0.183631,-0.000268,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000027,0.000023,0.000178,0.000000,0.000000,0.000226,0.183368,-0.000264,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000027,0.000023,0.000178,0.000000,0.000000,0.000222,0.183108,-0.000260,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000026,0.000022,0.000179,0.000105,0.000105,0.000218,0.182749,-0.000359,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000026,0.000021,0.000179,0.000347,0.000347,0.000213,0.182157,-0.000592,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000025,0.000020,0.000180,0.000502,0.000502,0.000208,0.181423,-0.000735,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000025,0.000019,0.000180,0.000600,0.000600,0.000203,0.180603,-0.000820,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000024,0.000018,0.000180,0.000638,0.000638,0.000197,0.179758,-0.000845,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000023,0.000017,0.000180,0.000585,0.000585,0.000191,0.178979,-0.000779,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000022,0.000016,0.000181,0.000541,0.000541,0.000185,0.178255,-0.000724,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000022,0.000015,0.000181,0.000495,0.000495,0.000178,0.177588,-0.000667,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000021,0.000014,0.000181,0.000422,0.000422,0.000171,0.177004,-0.000585,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000020,0.000014,0.000181,0.000305,0.000305,0.000165,0.176544,-0.000460,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000019,0.000013,0.000181,0.000138,0.000138,0.000159,0.176254,-0.000289,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000019,0.000013,0.000181,0.000011,0.000011,0.000153,0.176095,-0.000159,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000018,0.000013,0.000182,0.000000,0.000000,0.000148,0.175949,-0.000146,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000017,0.000013,0.000182,0.000000,0.000000,0.000143,0.175805,-0.000144,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000017,0.000012,0.000182,0.000000,0.000000,0.000139,0.175664,-0.000142,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000016,0.000012,0.000183,0.000000,0.000000,0.000135,0.175524,-0.000139,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000016,0.000012,0.000183,0.000000,0.000000,0.000131,0.175387,-0.000137,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000015,0.000012,0.000184,0.000000,0.000000,0.000127,0.175252,-0.000135,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000015,0.000012,0.000184,0.000000,0.000000,0.000124,0.175119,-0.000133,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000170,0.000015,0.000011,0.000185,0.000000,0.000000,0.000121,0.174989,-0.000130,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000014,0.000011,0.000185,0.000000,0.000000,0.000118,0.174861,-0.000129,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000014,0.000011,0.000186,0.000000,0.000000,0.000115,0.174734,-0.000127,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000014,0.000011,0.000186,0.000000,0.000000,0.000112,0.174609,-0.000125,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000013,0.000011,0.000187,0.000000,0.000000,0.000110,0.174486,-0.000123,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000013,0.000010,0.000187,0.000089,0.000089,0.000107,0.174278,-0.000208,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000013,0.000010,0.000188,0.000332,0.000332,0.000104,0.173833,-0.000444,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000012,0.000009,0.000188,0.000487,0.000487,0.000101,0.173243,-0.000590,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000012,0.000008,0.000189,0.000589,0.000589,0.000097,0.172562,-0.000681,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000011,0.000007,0.000189,0.000631,0.000631,0.000093,0.171850,-0.000712,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000011,0.000006,0.000189,0.000589,0.000589,0.000089,0.171191,-0.000659,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000010,0.000005,0.000190,0.000521,0.000521,0.000084,0.170609,-0.000582,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000010,0.000005,0.000190,0.000485,0.000485,0.000079,0.170071,-0.000538,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000009,0.000004,0.000190,0.000422,0.000422,0.000074,0.169603,-0.000468,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000008,0.000003,0.000190,0.000302,0.000302,0.000069,0.169261,-0.000342,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000008,0.000003,0.000190,0.000161,0.000161,0.000064,0.169063,-0.000198,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000007,0.000003,0.000191,0.000016,0.000016,0.000060,0.169011,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000007,0.000003,0.000191,0.000000,0.000000,0.000057,0.168976,-0.000036,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000006,0.000003,0.000191,0.000000,0.000000,0.000053,0.168941,-0.000035,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000006,0.000003,0.000192,0.000000,0.000000,0.000050,0.168906,-0.000034,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000006,0.000003,0.000192,0.000000,0.000000,0.000047,0.168872,-0.000034,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000005,0.000003,0.000193,0.000000,0.000000,0.000045,0.168839,-0.000033,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000005,0.000003,0.000193,0.000000,0.000000,0.000043,0.168806,-0.000033,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000005,0.000003,0.000194,0.000000,0.000000,0.000040,0.168774,-0.000032,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000005,0.000003,0.000194,0.000000,0.000000,0.000039,0.168742,-0.000032,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000004,0.000003,0.000195,0.000000,0.000000,0.000037,0.168711,-0.000031,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000004,0.000003,0.000195,0.000000,0.000000,0.000035,0.168680,-0.000031,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000004,0.000003,0.000196,0.000000,0.000000,0.000034,0.168650,-0.000030,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000004,0.000003,0.000196,0.000000,0.000000,0.000033,0.168620,-0.000030,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000004,0.000002,0.000197,0.000097,0.000097,0.000031,0.168495,-0.000125,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619314.csv b/test/channel_loss/channel_forcing/et/cat-2619314.csv new file mode 100644 index 000000000..1084b77ce --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619314.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001468,0.000346,0.001468,0.000150,0.000150,0.010474,0.426935,-0.004920,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001313,0.000341,0.001313,0.000036,0.000036,0.009502,0.422133,-0.004802,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001181,0.000336,0.001181,0.000000,0.000000,0.008657,0.417433,-0.004700,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001069,0.000332,0.001069,0.000000,0.000000,0.007920,0.412797,-0.004636,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000973,0.000327,0.000973,0.000000,0.000000,0.007274,0.408225,-0.004572,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000890,0.000323,0.000890,0.000000,0.000000,0.006707,0.403716,-0.004509,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000818,0.000318,0.000818,0.000000,0.000000,0.006208,0.399269,-0.004447,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000755,0.000314,0.000756,0.000000,0.000000,0.005767,0.394883,-0.004386,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000700,0.000310,0.000701,0.000000,0.000000,0.005376,0.390557,-0.004326,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000652,0.000305,0.000653,0.000000,0.000000,0.005030,0.386290,-0.004266,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000609,0.000301,0.000611,0.000000,0.000000,0.004722,0.382083,-0.004208,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000571,0.000297,0.000573,0.000000,0.000000,0.004448,0.377933,-0.004150,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000538,0.000293,0.000541,0.000000,0.000000,0.004203,0.373840,-0.004093,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000508,0.000289,0.000511,0.000000,0.000000,0.003983,0.369804,-0.004037,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000482,0.000285,0.000485,0.000123,0.000123,0.003786,0.365701,-0.004103,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000458,0.000280,0.000462,0.000363,0.000363,0.003608,0.361418,-0.004283,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000276,0.000441,0.000522,0.000522,0.003448,0.357038,-0.004381,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000417,0.000272,0.000422,0.000613,0.000613,0.003302,0.352627,-0.004410,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000400,0.000267,0.000406,0.000521,0.000521,0.003170,0.348368,-0.004259,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000466,0.000000,0.000000,0.000000,0.000006,0.000384,0.000264,0.000390,0.000480,0.000480,0.003049,0.344668,-0.003700,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000462,0.000000,0.000001,0.000000,0.000007,0.000370,0.000260,0.000377,0.000411,0.000411,0.002940,0.341082,-0.003586,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000814,0.000023,0.000042,0.000023,0.000007,0.000357,0.000257,0.000387,0.000334,0.000334,0.002840,0.337928,-0.003154,1.000000,0.000019 +22,2022-08-01 22:00:00,0.000545,0.000017,0.000012,0.000017,0.000008,0.000345,0.000254,0.000370,0.000295,0.000295,0.002749,0.334619,-0.003308,1.000000,0.000014 +23,2022-08-01 23:00:00,0.000597,0.000026,0.000027,0.000026,0.000009,0.000334,0.000251,0.000369,0.000210,0.000210,0.002665,0.331476,-0.003143,1.000000,0.000015 +24,2022-08-02 00:00:00,0.000553,0.000026,0.000031,0.000026,0.000010,0.000324,0.000248,0.000360,0.000138,0.000138,0.002589,0.328400,-0.003076,1.000000,0.000019 +25,2022-08-02 01:00:00,0.001414,0.000169,0.000284,0.000169,0.000010,0.000315,0.000245,0.000495,0.000057,0.000057,0.002519,0.326047,-0.002353,1.000000,0.000134 +26,2022-08-02 02:00:00,0.001769,0.000326,0.000452,0.000326,0.000011,0.000307,0.000243,0.000644,0.000000,0.000000,0.002455,0.323966,-0.002080,1.000000,0.000260 +27,2022-08-02 03:00:00,0.001670,0.000394,0.000407,0.000394,0.000012,0.000299,0.000241,0.000705,0.000000,0.000000,0.002397,0.321861,-0.002106,1.000000,0.000274 +28,2022-08-02 04:00:00,0.001849,0.000459,0.000485,0.000459,0.000013,0.000292,0.000239,0.000764,0.000000,0.000000,0.002344,0.319884,-0.001977,1.000000,0.000300 +29,2022-08-02 05:00:00,0.001390,0.000364,0.000293,0.000364,0.000014,0.000286,0.000237,0.000663,0.000000,0.000000,0.002295,0.317672,-0.002212,1.000000,0.000229 +30,2022-08-02 06:00:00,0.001289,0.000310,0.000254,0.000310,0.000015,0.000280,0.000235,0.000605,0.000000,0.000000,0.002249,0.315428,-0.002244,1.000000,0.000173 +31,2022-08-02 07:00:00,0.000000,0.000122,0.000000,0.000122,0.000016,0.000275,0.000231,0.000412,0.000000,0.000000,0.002206,0.312194,-0.003234,1.000000,0.000051 +32,2022-08-02 08:00:00,0.000000,0.000051,0.000000,0.000051,0.000016,0.000269,0.000228,0.000337,0.000000,0.000000,0.002165,0.309005,-0.003189,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000264,0.000225,0.000282,0.000000,0.000000,0.002125,0.305860,-0.003145,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000260,0.000222,0.000278,0.000000,0.000000,0.002088,0.302758,-0.003102,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000255,0.000219,0.000274,0.000000,0.000000,0.002052,0.299698,-0.003059,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000251,0.000216,0.000271,0.000000,0.000000,0.002017,0.296681,-0.003017,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000288,0.000008,0.000015,0.000008,0.000021,0.000246,0.000213,0.000276,0.000000,0.000000,0.001984,0.293975,-0.002706,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000266,0.000006,0.000004,0.000006,0.000022,0.000242,0.000210,0.000271,0.000114,0.000114,0.001952,0.291182,-0.002793,1.000000,0.000005 +39,2022-08-02 15:00:00,0.000219,0.000004,0.000000,0.000004,0.000024,0.000238,0.000207,0.000266,0.000308,0.000308,0.001921,0.288195,-0.002988,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000279,0.000001,0.000000,0.000001,0.000025,0.000234,0.000204,0.000260,0.000440,0.000440,0.001891,0.285178,-0.003017,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000283,0.000000,0.000000,0.000000,0.000026,0.000231,0.000201,0.000256,0.000524,0.000524,0.001862,0.282122,-0.003056,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000608,0.000000,0.000000,0.000000,0.000027,0.000227,0.000199,0.000254,0.000581,0.000581,0.001834,0.279373,-0.002749,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000028,0.000224,0.000196,0.000252,0.000527,0.000527,0.001805,0.276240,-0.003133,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000220,0.000192,0.000249,0.000484,0.000484,0.001778,0.273130,-0.003110,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000217,0.000189,0.000247,0.000464,0.000464,0.001751,0.270083,-0.003047,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000213,0.000186,0.000245,0.000410,0.000410,0.001724,0.267131,-0.002952,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000210,0.000184,0.000243,0.000297,0.000297,0.001698,0.264331,-0.002800,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000207,0.000181,0.000241,0.000161,0.000161,0.001672,0.261703,-0.002628,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000204,0.000179,0.000239,0.000021,0.000021,0.001647,0.259249,-0.002454,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000036,0.000200,0.000176,0.000237,0.000000,0.000000,0.001623,0.256849,-0.002400,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000197,0.000174,0.000236,0.000000,0.000000,0.001599,0.254483,-0.002367,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000195,0.000171,0.000234,0.000000,0.000000,0.001576,0.252148,-0.002334,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000192,0.000169,0.000233,0.000000,0.000000,0.001554,0.249846,-0.002302,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000041,0.000189,0.000167,0.000231,0.000000,0.000000,0.001532,0.247576,-0.002270,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000186,0.000165,0.000229,0.000000,0.000000,0.001510,0.245275,-0.002301,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000184,0.000162,0.000228,0.000000,0.000000,0.001489,0.243006,-0.002269,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000181,0.000160,0.000226,0.000000,0.000000,0.001468,0.240768,-0.002238,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000178,0.000158,0.000225,0.000000,0.000000,0.001448,0.238561,-0.002207,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000176,0.000156,0.000224,0.000000,0.000000,0.001427,0.236384,-0.002177,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000173,0.000154,0.000223,0.000000,0.000000,0.001408,0.234237,-0.002147,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000171,0.000152,0.000222,0.000000,0.000000,0.001388,0.232120,-0.002117,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000169,0.000149,0.000221,0.000117,0.000117,0.001369,0.229916,-0.002204,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000166,0.000147,0.000220,0.000364,0.000364,0.001350,0.227499,-0.002417,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000164,0.000144,0.000219,0.000512,0.000512,0.001331,0.224969,-0.002530,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000161,0.000142,0.000218,0.000615,0.000615,0.001311,0.222373,-0.002596,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000159,0.000139,0.000217,0.000598,0.000598,0.001292,0.219829,-0.002544,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000156,0.000137,0.000216,0.000536,0.000536,0.001272,0.217381,-0.002448,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002364,0.000240,0.000436,0.000240,0.000061,0.000154,0.000136,0.000454,0.000488,0.000488,0.001254,0.216915,-0.000466,1.000000,0.000196 +69,2022-08-03 21:00:00,0.000238,0.000109,0.000000,0.000109,0.000062,0.000152,0.000134,0.000323,0.000445,0.000445,0.001237,0.214831,-0.002084,1.000000,0.000087 +70,2022-08-03 22:00:00,0.000000,0.000087,0.000000,0.000087,0.000064,0.000150,0.000132,0.000300,0.000376,0.000376,0.001219,0.212610,-0.002221,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000046,0.000000,0.000000,0.000000,0.000065,0.000148,0.000130,0.000213,0.000279,0.000279,0.001201,0.210559,-0.002050,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000145,0.000128,0.000212,0.000172,0.000172,0.001184,0.208598,-0.001961,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000143,0.000126,0.000211,0.000032,0.000032,0.001167,0.206802,-0.001797,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000141,0.000125,0.000211,0.000000,0.000000,0.001150,0.205061,-0.001740,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000139,0.000123,0.000210,0.000000,0.000000,0.001134,0.203345,-0.001716,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000137,0.000121,0.000209,0.000000,0.000000,0.001118,0.201652,-0.001693,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000135,0.000119,0.000209,0.000000,0.000000,0.001102,0.199983,-0.001669,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000133,0.000118,0.000209,0.000000,0.000000,0.001087,0.198336,-0.001647,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000131,0.000116,0.000208,0.000000,0.000000,0.001072,0.196712,-0.001624,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000130,0.000115,0.000208,0.000000,0.000000,0.001057,0.195111,-0.001602,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000128,0.000113,0.000207,0.000000,0.000000,0.001042,0.193531,-0.001580,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000126,0.000111,0.000207,0.000000,0.000000,0.001028,0.191973,-0.001558,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000124,0.000110,0.000207,0.000000,0.000000,0.001013,0.190437,-0.001536,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000122,0.000108,0.000207,0.000000,0.000000,0.001000,0.188922,-0.001515,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000121,0.000107,0.000206,0.000000,0.000000,0.000986,0.187427,-0.001494,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000119,0.000105,0.000206,0.000114,0.000114,0.000972,0.185840,-0.001587,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000117,0.000104,0.000206,0.000359,0.000359,0.000958,0.184034,-0.001806,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000116,0.000102,0.000206,0.000520,0.000520,0.000944,0.182094,-0.001940,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000114,0.000100,0.000206,0.000617,0.000617,0.000930,0.180085,-0.002009,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000112,0.000098,0.000205,0.000687,0.000687,0.000916,0.178034,-0.002051,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000110,0.000096,0.000205,0.000616,0.000616,0.000901,0.176082,-0.001953,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000108,0.000094,0.000205,0.000551,0.000551,0.000887,0.174221,-0.001861,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000107,0.000092,0.000204,0.000502,0.000502,0.000872,0.172433,-0.001788,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000105,0.000090,0.000204,0.000430,0.000430,0.000857,0.170741,-0.001692,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000103,0.000089,0.000204,0.000314,0.000314,0.000843,0.169187,-0.001554,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000101,0.000087,0.000204,0.000178,0.000178,0.000829,0.167789,-0.001398,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000100,0.000086,0.000204,0.000036,0.000036,0.000816,0.166550,-0.001239,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000098,0.000085,0.000204,0.000000,0.000000,0.000803,0.165363,-0.001187,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000096,0.000084,0.000204,0.000000,0.000000,0.000790,0.164192,-0.001171,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000095,0.000083,0.000204,0.000000,0.000000,0.000778,0.163038,-0.001155,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000093,0.000081,0.000204,0.000000,0.000000,0.000766,0.161899,-0.001139,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000092,0.000080,0.000204,0.000000,0.000000,0.000754,0.160776,-0.001123,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000091,0.000079,0.000204,0.000000,0.000000,0.000743,0.159669,-0.001108,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000089,0.000078,0.000204,0.000000,0.000000,0.000731,0.158576,-0.001092,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000088,0.000077,0.000204,0.000000,0.000000,0.000721,0.157499,-0.001077,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000087,0.000076,0.000204,0.000000,0.000000,0.000710,0.156436,-0.001063,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000085,0.000075,0.000205,0.000000,0.000000,0.000700,0.155389,-0.001048,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000084,0.000074,0.000205,0.000000,0.000000,0.000690,0.154355,-0.001034,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000083,0.000073,0.000205,0.000000,0.000000,0.000680,0.153336,-0.001019,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000082,0.000072,0.000205,0.000126,0.000126,0.000670,0.152207,-0.001129,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000080,0.000070,0.000206,0.000364,0.000364,0.000660,0.150858,-0.001349,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000079,0.000069,0.000206,0.000520,0.000520,0.000650,0.149374,-0.001484,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000078,0.000067,0.000206,0.000628,0.000628,0.000639,0.147804,-0.001570,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000077,0.000066,0.000206,0.000615,0.000615,0.000628,0.146268,-0.001536,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000042,0.000000,0.000000,0.000000,0.000131,0.000075,0.000064,0.000207,0.000570,0.000570,0.000618,0.144839,-0.001429,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000042,0.000000,0.000000,0.000000,0.000133,0.000074,0.000063,0.000207,0.000512,0.000512,0.000607,0.143487,-0.001352,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000046,0.000000,0.000000,0.000000,0.000134,0.000073,0.000062,0.000207,0.000468,0.000468,0.000596,0.142200,-0.001286,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000021,0.000000,0.000000,0.000000,0.000136,0.000071,0.000061,0.000207,0.000398,0.000398,0.000585,0.140977,-0.001223,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000129,0.000000,0.000000,0.000000,0.000137,0.000070,0.000060,0.000207,0.000295,0.000295,0.000575,0.139978,-0.000999,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000139,0.000069,0.000059,0.000208,0.000170,0.000170,0.000565,0.138994,-0.000984,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000400,0.000009,0.000017,0.000009,0.000140,0.000068,0.000058,0.000217,0.000049,0.000049,0.000555,0.138515,-0.000479,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000872,0.000058,0.000097,0.000058,0.000142,0.000067,0.000058,0.000266,0.000000,0.000000,0.000547,0.138478,-0.000038,1.000000,0.000047 +123,2022-08-06 03:00:00,0.000326,0.000036,0.000015,0.000036,0.000143,0.000066,0.000058,0.000245,0.000000,0.000000,0.000539,0.137984,-0.000494,1.000000,0.000026 +124,2022-08-06 04:00:00,0.000190,0.000026,0.000005,0.000026,0.000145,0.000065,0.000057,0.000235,0.000000,0.000000,0.000531,0.137372,-0.000612,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000193,0.000007,0.000005,0.000007,0.000146,0.000064,0.000056,0.000217,0.000000,0.000000,0.000524,0.136772,-0.000600,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000256,0.000007,0.000009,0.000007,0.000148,0.000063,0.000056,0.000218,0.000000,0.000000,0.000517,0.136238,-0.000534,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000149,0.000062,0.000055,0.000215,0.000000,0.000000,0.000510,0.135468,-0.000770,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000151,0.000061,0.000054,0.000214,0.000000,0.000000,0.000503,0.134708,-0.000760,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000060,0.000054,0.000213,0.000000,0.000000,0.000496,0.133959,-0.000749,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000060,0.000053,0.000213,0.000000,0.000000,0.000490,0.133220,-0.000739,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000059,0.000052,0.000214,0.000000,0.000000,0.000483,0.132491,-0.000729,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000058,0.000051,0.000214,0.000000,0.000000,0.000477,0.131772,-0.000719,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000057,0.000051,0.000215,0.000000,0.000000,0.000470,0.131064,-0.000709,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000056,0.000050,0.000216,0.000108,0.000108,0.000464,0.130258,-0.000806,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000056,0.000049,0.000216,0.000342,0.000342,0.000457,0.129232,-0.001026,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000055,0.000048,0.000217,0.000498,0.000498,0.000450,0.128067,-0.001165,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000046,0.000218,0.000600,0.000600,0.000443,0.126817,-0.001249,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000045,0.000218,0.000667,0.000667,0.000435,0.125519,-0.001298,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000044,0.000218,0.000621,0.000621,0.000427,0.124284,-0.001235,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000219,0.000561,0.000561,0.000419,0.123124,-0.001159,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000219,0.000504,0.000504,0.000411,0.122037,-0.001087,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000041,0.000220,0.000430,0.000430,0.000403,0.121038,-0.000999,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000040,0.000220,0.000310,0.000310,0.000395,0.120171,-0.000867,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000039,0.000221,0.000172,0.000172,0.000387,0.119452,-0.000719,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000039,0.000221,0.000031,0.000031,0.000379,0.118882,-0.000570,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000038,0.000222,0.000000,0.000000,0.000372,0.118351,-0.000532,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000038,0.000222,0.000000,0.000000,0.000365,0.117826,-0.000524,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000044,0.000037,0.000223,0.000000,0.000000,0.000359,0.117309,-0.000517,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000036,0.000223,0.000000,0.000000,0.000352,0.116799,-0.000510,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000042,0.000036,0.000224,0.000000,0.000000,0.000346,0.116296,-0.000503,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000041,0.000035,0.000225,0.000000,0.000000,0.000341,0.115800,-0.000496,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000041,0.000035,0.000225,0.000000,0.000000,0.000335,0.115311,-0.000489,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000040,0.000035,0.000226,0.000000,0.000000,0.000329,0.114828,-0.000483,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000034,0.000227,0.000000,0.000000,0.000324,0.114352,-0.000476,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000034,0.000227,0.000000,0.000000,0.000319,0.113883,-0.000469,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000038,0.000033,0.000228,0.000000,0.000000,0.000314,0.113420,-0.000463,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000033,0.000229,0.000000,0.000000,0.000309,0.112963,-0.000457,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000037,0.000032,0.000229,0.000104,0.000104,0.000304,0.112411,-0.000553,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000031,0.000230,0.000344,0.000344,0.000299,0.111629,-0.000782,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000036,0.000030,0.000231,0.000500,0.000500,0.000294,0.110704,-0.000925,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000029,0.000231,0.000602,0.000602,0.000289,0.109691,-0.001013,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000028,0.000232,0.000637,0.000637,0.000283,0.108657,-0.001034,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000034,0.000027,0.000233,0.000586,0.000586,0.000277,0.107688,-0.000969,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000033,0.000027,0.000233,0.000538,0.000538,0.000270,0.106780,-0.000908,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000026,0.000234,0.000489,0.000489,0.000264,0.105933,-0.000848,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000031,0.000025,0.000234,0.000414,0.000414,0.000258,0.105171,-0.000762,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000024,0.000235,0.000302,0.000302,0.000251,0.104529,-0.000641,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000030,0.000024,0.000235,0.000138,0.000138,0.000245,0.104058,-0.000471,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000029,0.000023,0.000236,0.000011,0.000000,0.000240,0.103731,-0.000328,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000023,0.000236,0.000000,0.000000,0.000235,0.103407,-0.000323,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000023,0.000237,0.000000,0.000000,0.000230,0.103088,-0.000319,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000023,0.000238,0.000000,0.000000,0.000225,0.102774,-0.000315,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000022,0.000238,0.000000,0.000000,0.000220,0.102464,-0.000310,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000022,0.000239,0.000000,0.000000,0.000216,0.102158,-0.000306,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000026,0.000022,0.000240,0.000000,0.000000,0.000212,0.101856,-0.000302,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000240,0.000000,0.000000,0.000208,0.101558,-0.000298,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000021,0.000241,0.000000,0.000000,0.000204,0.101265,-0.000294,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000021,0.000242,0.000000,0.000000,0.000201,0.100975,-0.000289,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000024,0.000020,0.000243,0.000000,0.000000,0.000197,0.100690,-0.000285,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000194,0.100408,-0.000282,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000023,0.000020,0.000244,0.000000,0.000000,0.000191,0.100131,-0.000278,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000020,0.000245,0.000088,0.000000,0.000188,0.099857,-0.000274,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000246,0.000330,0.000000,0.000185,0.099587,-0.000270,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000022,0.000019,0.000247,0.000487,0.000000,0.000182,0.099320,-0.000266,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000022,0.000019,0.000247,0.000589,0.000000,0.000179,0.099057,-0.000263,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000019,0.000248,0.000635,0.000000,0.000176,0.098798,-0.000259,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000018,0.000249,0.000587,0.000000,0.000173,0.098543,-0.000256,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000021,0.000018,0.000250,0.000522,0.000000,0.000171,0.098291,-0.000252,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000018,0.000251,0.000483,0.000000,0.000168,0.098042,-0.000249,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000018,0.000251,0.000418,0.000000,0.000166,0.097797,-0.000245,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000020,0.000017,0.000252,0.000300,0.000000,0.000163,0.097555,-0.000242,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000017,0.000253,0.000159,0.000000,0.000161,0.097317,-0.000238,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000017,0.000254,0.000015,0.000000,0.000158,0.097081,-0.000235,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000019,0.000017,0.000255,0.000000,0.000000,0.000156,0.096850,-0.000232,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000019,0.000016,0.000255,0.000000,0.000000,0.000154,0.096621,-0.000229,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000018,0.000016,0.000256,0.000000,0.000000,0.000152,0.096395,-0.000226,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000257,0.000000,0.000000,0.000149,0.096173,-0.000223,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000018,0.000016,0.000258,0.000000,0.000000,0.000147,0.095953,-0.000219,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000018,0.000015,0.000259,0.000000,0.000000,0.000145,0.095737,-0.000216,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000000,0.000000,0.000143,0.095523,-0.000213,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000260,0.000000,0.000000,0.000141,0.095313,-0.000211,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000017,0.000015,0.000261,0.000000,0.000000,0.000139,0.095105,-0.000208,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000017,0.000015,0.000262,0.000000,0.000000,0.000137,0.094900,-0.000205,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000263,0.000000,0.000000,0.000135,0.094698,-0.000202,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000263,0.000000,0.000000,0.000133,0.094499,-0.000199,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000264,0.000097,0.000000,0.000132,0.094303,-0.000196,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619315.csv b/test/channel_loss/channel_forcing/et/cat-2619315.csv new file mode 100644 index 000000000..3e6b41720 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619315.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001465,0.000321,0.001465,0.000144,0.000144,0.010453,0.427699,-0.004826,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001307,0.000317,0.001307,0.000032,0.000032,0.009463,0.423022,-0.004677,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001173,0.000312,0.001173,0.000000,0.000000,0.008602,0.418441,-0.004581,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001059,0.000308,0.001059,0.000000,0.000000,0.007851,0.413923,-0.004517,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000961,0.000304,0.000961,0.000000,0.000000,0.007193,0.409469,-0.004455,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000877,0.000299,0.000877,0.000000,0.000000,0.006616,0.405076,-0.004393,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000803,0.000295,0.000804,0.000000,0.000000,0.006108,0.400745,-0.004331,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000740,0.000291,0.000740,0.000000,0.000000,0.005659,0.396474,-0.004271,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000684,0.000287,0.000685,0.000000,0.000000,0.005262,0.392262,-0.004212,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000635,0.000283,0.000636,0.000000,0.000000,0.004910,0.388109,-0.004153,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000592,0.000279,0.000594,0.000000,0.000000,0.004598,0.384013,-0.004095,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000554,0.000275,0.000556,0.000000,0.000000,0.004319,0.379975,-0.004038,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000520,0.000271,0.000523,0.000000,0.000000,0.004070,0.375993,-0.003982,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000490,0.000268,0.000493,0.000000,0.000000,0.003848,0.372066,-0.003927,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000463,0.000264,0.000467,0.000120,0.000120,0.003648,0.368075,-0.003991,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000439,0.000260,0.000443,0.000359,0.000359,0.003468,0.363904,-0.004171,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000418,0.000256,0.000422,0.000527,0.000527,0.003306,0.359626,-0.004278,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000399,0.000251,0.000403,0.000623,0.000623,0.003159,0.355313,-0.004313,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000381,0.000247,0.000386,0.000520,0.000520,0.003025,0.351161,-0.004151,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000622,0.000002,0.000004,0.000002,0.000006,0.000365,0.000244,0.000373,0.000482,0.000482,0.002904,0.347714,-0.003447,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000734,0.000012,0.000021,0.000012,0.000007,0.000351,0.000241,0.000370,0.000412,0.000412,0.002794,0.344478,-0.003236,1.000000,0.000010 +21,2022-08-01 21:00:00,0.001031,0.000056,0.000092,0.000056,0.000007,0.000338,0.000238,0.000402,0.000325,0.000325,0.002695,0.341596,-0.002882,1.000000,0.000045 +22,2022-08-01 22:00:00,0.000789,0.000054,0.000049,0.000054,0.000008,0.000326,0.000235,0.000388,0.000283,0.000283,0.002604,0.338599,-0.002997,1.000000,0.000040 +23,2022-08-01 23:00:00,0.000800,0.000068,0.000068,0.000068,0.000009,0.000315,0.000233,0.000392,0.000195,0.000195,0.002521,0.335722,-0.002876,1.000000,0.000040 +24,2022-08-02 00:00:00,0.000831,0.000076,0.000089,0.000076,0.000009,0.000306,0.000230,0.000391,0.000130,0.000130,0.002446,0.332960,-0.002763,1.000000,0.000054 +25,2022-08-02 01:00:00,0.001563,0.000234,0.000360,0.000234,0.000010,0.000297,0.000228,0.000540,0.000052,0.000052,0.002377,0.330768,-0.002192,1.000000,0.000180 +26,2022-08-02 02:00:00,0.001978,0.000422,0.000572,0.000422,0.000011,0.000289,0.000226,0.000722,0.000000,0.000000,0.002314,0.328856,-0.001911,1.000000,0.000329 +27,2022-08-02 03:00:00,0.001926,0.000514,0.000545,0.000514,0.000012,0.000281,0.000224,0.000808,0.000000,0.000000,0.002257,0.326947,-0.001909,1.000000,0.000360 +28,2022-08-02 04:00:00,0.002075,0.000590,0.000617,0.000590,0.000013,0.000275,0.000222,0.000877,0.000000,0.000000,0.002205,0.325140,-0.001807,1.000000,0.000387 +29,2022-08-02 05:00:00,0.001795,0.000527,0.000480,0.000527,0.000013,0.000268,0.000221,0.000809,0.000000,0.000000,0.002157,0.323217,-0.001923,1.000000,0.000340 +30,2022-08-02 06:00:00,0.001683,0.000479,0.000428,0.000479,0.000014,0.000263,0.000219,0.000756,0.000000,0.000000,0.002113,0.321262,-0.001955,1.000000,0.000289 +31,2022-08-02 07:00:00,0.000000,0.000203,0.000000,0.000203,0.000015,0.000257,0.000216,0.000476,0.000000,0.000000,0.002071,0.318096,-0.003165,1.000000,0.000086 +32,2022-08-02 08:00:00,0.000000,0.000086,0.000000,0.000086,0.000016,0.000252,0.000213,0.000354,0.000000,0.000000,0.002032,0.314975,-0.003121,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000248,0.000210,0.000265,0.000000,0.000000,0.001994,0.311897,-0.003078,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000243,0.000207,0.000261,0.000000,0.000000,0.001958,0.308862,-0.003035,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000239,0.000204,0.000257,0.000000,0.000000,0.001923,0.305869,-0.002993,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000234,0.000201,0.000254,0.000000,0.000000,0.001890,0.302918,-0.002951,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000442,0.000019,0.000035,0.000019,0.000021,0.000230,0.000199,0.000271,0.000000,0.000000,0.001858,0.300409,-0.002509,1.000000,0.000016 +38,2022-08-02 14:00:00,0.000400,0.000017,0.000015,0.000017,0.000022,0.000226,0.000196,0.000266,0.000113,0.000113,0.001828,0.297803,-0.002607,1.000000,0.000014 +39,2022-08-02 15:00:00,0.000400,0.000012,0.000002,0.000012,0.000023,0.000223,0.000194,0.000258,0.000302,0.000302,0.001799,0.295058,-0.002745,1.000000,0.000004 +40,2022-08-02 16:00:00,0.000442,0.000003,0.000000,0.000003,0.000024,0.000219,0.000191,0.000247,0.000439,0.000439,0.001771,0.292260,-0.002797,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000442,0.000000,0.000000,0.000000,0.000025,0.000216,0.000188,0.000241,0.000525,0.000525,0.001743,0.289417,-0.002843,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000707,0.000002,0.000003,0.000002,0.000026,0.000212,0.000186,0.000240,0.000579,0.000579,0.001716,0.286818,-0.002599,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000137,0.000001,0.000000,0.000001,0.000027,0.000209,0.000183,0.000237,0.000526,0.000526,0.001690,0.283748,-0.003070,1.000000,0.000001 +44,2022-08-02 20:00:00,0.000063,0.000001,0.000000,0.000001,0.000029,0.000206,0.000180,0.000235,0.000479,0.000479,0.001664,0.280695,-0.003053,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000202,0.000177,0.000232,0.000451,0.000451,0.001638,0.277712,-0.002983,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000199,0.000174,0.000230,0.000403,0.000403,0.001613,0.274818,-0.002895,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000196,0.000171,0.000228,0.000293,0.000293,0.001589,0.272072,-0.002745,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000193,0.000169,0.000226,0.000157,0.000157,0.001564,0.269499,-0.002574,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000190,0.000167,0.000225,0.000018,0.000018,0.001541,0.267098,-0.002401,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000036,0.000187,0.000164,0.000223,0.000000,0.000000,0.001518,0.264747,-0.002350,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000037,0.000184,0.000162,0.000222,0.000000,0.000000,0.001496,0.262430,-0.002317,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000182,0.000160,0.000221,0.000000,0.000000,0.001474,0.260145,-0.002285,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000179,0.000158,0.000219,0.000000,0.000000,0.001453,0.257891,-0.002253,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000041,0.000176,0.000156,0.000218,0.000000,0.000000,0.001432,0.255669,-0.002222,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000174,0.000153,0.000216,0.000000,0.000000,0.001412,0.253417,-0.002253,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000171,0.000151,0.000215,0.000000,0.000000,0.001392,0.251195,-0.002221,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000169,0.000149,0.000213,0.000000,0.000000,0.001372,0.249005,-0.002190,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000166,0.000147,0.000212,0.000000,0.000000,0.001353,0.246845,-0.002160,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000164,0.000145,0.000211,0.000000,0.000000,0.001334,0.244715,-0.002130,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000162,0.000143,0.000210,0.000000,0.000000,0.001315,0.242614,-0.002100,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000159,0.000141,0.000209,0.000000,0.000000,0.001297,0.240543,-0.002071,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000157,0.000139,0.000208,0.000113,0.000113,0.001279,0.238390,-0.002153,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000155,0.000137,0.000207,0.000360,0.000360,0.001260,0.236022,-0.002368,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000153,0.000134,0.000206,0.000509,0.000509,0.001242,0.233541,-0.002482,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000150,0.000132,0.000206,0.000621,0.000621,0.001224,0.230984,-0.002557,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000148,0.000130,0.000205,0.000602,0.000602,0.001205,0.228480,-0.002503,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000146,0.000127,0.000204,0.000538,0.000538,0.001187,0.226076,-0.002405,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001338,0.000060,0.000110,0.000060,0.000059,0.000144,0.000126,0.000263,0.000483,0.000483,0.001169,0.224970,-0.001106,1.000000,0.000049 +69,2022-08-03 21:00:00,0.000167,0.000027,0.000000,0.000027,0.000061,0.000141,0.000124,0.000230,0.000434,0.000434,0.001152,0.222881,-0.002089,1.000000,0.000022 +70,2022-08-03 22:00:00,0.000000,0.000022,0.000000,0.000022,0.000062,0.000139,0.000122,0.000223,0.000362,0.000362,0.001135,0.220727,-0.002154,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000137,0.000120,0.000201,0.000272,0.000272,0.001118,0.218692,-0.002034,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000135,0.000118,0.000200,0.000168,0.000168,0.001101,0.216788,-0.001904,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000133,0.000117,0.000199,0.000028,0.000028,0.001085,0.215049,-0.001739,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000131,0.000115,0.000199,0.000000,0.000000,0.001069,0.213362,-0.001688,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000129,0.000113,0.000198,0.000000,0.000000,0.001053,0.211697,-0.001664,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000127,0.000112,0.000198,0.000000,0.000000,0.001038,0.210056,-0.001641,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000125,0.000110,0.000198,0.000000,0.000000,0.001023,0.208438,-0.001618,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000123,0.000109,0.000197,0.000000,0.000000,0.001008,0.206843,-0.001596,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000122,0.000107,0.000197,0.000000,0.000000,0.000993,0.205269,-0.001573,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000120,0.000106,0.000196,0.000000,0.000000,0.000979,0.203718,-0.001552,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000118,0.000104,0.000196,0.000000,0.000000,0.000965,0.202188,-0.001530,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000116,0.000103,0.000196,0.000000,0.000000,0.000952,0.200679,-0.001509,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000101,0.000196,0.000000,0.000000,0.000938,0.199192,-0.001488,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000113,0.000100,0.000196,0.000000,0.000000,0.000925,0.197725,-0.001467,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000099,0.000196,0.000000,0.000000,0.000912,0.196278,-0.001447,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000110,0.000097,0.000195,0.000111,0.000111,0.000899,0.194742,-0.001536,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000108,0.000095,0.000195,0.000357,0.000357,0.000886,0.192985,-0.001758,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000107,0.000094,0.000195,0.000523,0.000523,0.000873,0.191089,-0.001896,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000105,0.000092,0.000195,0.000622,0.000622,0.000860,0.189121,-0.001968,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000090,0.000195,0.000703,0.000703,0.000846,0.187101,-0.002020,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000102,0.000088,0.000195,0.000614,0.000614,0.000832,0.185197,-0.001904,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000100,0.000086,0.000194,0.000568,0.000568,0.000818,0.183364,-0.001832,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000098,0.000084,0.000194,0.000502,0.000502,0.000805,0.181622,-0.001742,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000097,0.000083,0.000194,0.000425,0.000425,0.000791,0.179981,-0.001642,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000095,0.000081,0.000194,0.000315,0.000315,0.000777,0.178470,-0.001510,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000093,0.000080,0.000194,0.000175,0.000175,0.000764,0.177119,-0.001351,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000092,0.000079,0.000194,0.000031,0.000031,0.000751,0.175929,-0.001190,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000090,0.000078,0.000194,0.000000,0.000000,0.000739,0.174786,-0.001143,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000089,0.000077,0.000194,0.000000,0.000000,0.000727,0.173658,-0.001127,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000087,0.000076,0.000194,0.000000,0.000000,0.000716,0.172547,-0.001112,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000086,0.000075,0.000194,0.000000,0.000000,0.000704,0.171450,-0.001096,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000085,0.000074,0.000194,0.000000,0.000000,0.000694,0.170369,-0.001081,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000083,0.000073,0.000194,0.000000,0.000000,0.000683,0.169303,-0.001066,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000082,0.000072,0.000194,0.000000,0.000000,0.000673,0.168252,-0.001051,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000081,0.000071,0.000195,0.000000,0.000000,0.000662,0.167216,-0.001036,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000080,0.000070,0.000195,0.000000,0.000000,0.000652,0.166194,-0.001022,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000078,0.000069,0.000195,0.000000,0.000000,0.000643,0.165186,-0.001008,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000068,0.000195,0.000000,0.000000,0.000633,0.164192,-0.000994,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000076,0.000067,0.000196,0.000000,0.000000,0.000624,0.163212,-0.000980,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000075,0.000066,0.000196,0.000122,0.000122,0.000615,0.162125,-0.001087,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000074,0.000064,0.000196,0.000363,0.000363,0.000606,0.160816,-0.001309,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000073,0.000063,0.000197,0.000523,0.000523,0.000596,0.159368,-0.001449,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000071,0.000062,0.000197,0.000638,0.000638,0.000586,0.157826,-0.001542,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000060,0.000197,0.000624,0.000624,0.000576,0.156319,-0.001507,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000069,0.000059,0.000197,0.000584,0.000584,0.000566,0.154873,-0.001446,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000068,0.000057,0.000198,0.000515,0.000515,0.000556,0.153515,-0.001358,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000066,0.000056,0.000198,0.000474,0.000474,0.000546,0.152216,-0.001299,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000065,0.000055,0.000198,0.000399,0.000399,0.000536,0.151009,-0.001206,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000082,0.000000,0.000000,0.000000,0.000134,0.000064,0.000054,0.000198,0.000297,0.000297,0.000526,0.150001,-0.001008,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000063,0.000053,0.000199,0.000168,0.000168,0.000516,0.149053,-0.000948,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000216,0.000002,0.000004,0.000002,0.000137,0.000062,0.000053,0.000201,0.000044,0.000044,0.000507,0.148449,-0.000604,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000378,0.000012,0.000021,0.000012,0.000139,0.000061,0.000052,0.000212,0.000000,0.000000,0.000498,0.148040,-0.000409,1.000000,0.000010 +123,2022-08-06 03:00:00,0.000137,0.000008,0.000003,0.000008,0.000140,0.000060,0.000052,0.000207,0.000000,0.000000,0.000490,0.147417,-0.000623,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000050,0.000005,0.000000,0.000005,0.000142,0.000059,0.000051,0.000205,0.000000,0.000000,0.000483,0.146719,-0.000698,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000053,0.000001,0.000000,0.000001,0.000143,0.000058,0.000050,0.000202,0.000000,0.000000,0.000475,0.146033,-0.000685,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000105,0.000001,0.000002,0.000001,0.000145,0.000057,0.000050,0.000203,0.000000,0.000000,0.000468,0.145408,-0.000626,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000056,0.000049,0.000203,0.000000,0.000000,0.000461,0.144689,-0.000719,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000055,0.000048,0.000203,0.000000,0.000000,0.000454,0.143981,-0.000709,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000054,0.000048,0.000203,0.000000,0.000000,0.000447,0.143282,-0.000699,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000054,0.000047,0.000204,0.000000,0.000000,0.000441,0.142593,-0.000689,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000053,0.000046,0.000204,0.000000,0.000000,0.000434,0.141913,-0.000679,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000052,0.000046,0.000205,0.000000,0.000000,0.000428,0.141243,-0.000670,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000051,0.000045,0.000206,0.000000,0.000000,0.000422,0.140582,-0.000661,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000050,0.000044,0.000206,0.000105,0.000105,0.000415,0.139827,-0.000755,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000050,0.000043,0.000207,0.000339,0.000339,0.000409,0.138852,-0.000975,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000049,0.000042,0.000208,0.000502,0.000502,0.000402,0.137729,-0.001123,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000048,0.000041,0.000208,0.000612,0.000612,0.000396,0.136515,-0.001215,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000047,0.000040,0.000209,0.000680,0.000680,0.000388,0.135249,-0.001265,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000039,0.000209,0.000637,0.000637,0.000381,0.134043,-0.001206,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000038,0.000210,0.000574,0.000574,0.000373,0.132917,-0.001127,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000037,0.000210,0.000503,0.000503,0.000365,0.131876,-0.001041,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000043,0.000036,0.000210,0.000429,0.000429,0.000358,0.130923,-0.000953,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000035,0.000211,0.000309,0.000309,0.000350,0.130101,-0.000822,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000042,0.000034,0.000211,0.000169,0.000169,0.000343,0.129429,-0.000672,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000034,0.000212,0.000026,0.000026,0.000336,0.128906,-0.000522,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000033,0.000212,0.000000,0.000000,0.000329,0.128417,-0.000489,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000039,0.000033,0.000213,0.000000,0.000000,0.000323,0.127935,-0.000482,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000038,0.000032,0.000214,0.000000,0.000000,0.000317,0.127459,-0.000476,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000214,0.000000,0.000000,0.000311,0.126990,-0.000469,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000037,0.000032,0.000215,0.000000,0.000000,0.000305,0.126528,-0.000462,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000036,0.000031,0.000216,0.000000,0.000000,0.000300,0.126072,-0.000456,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000031,0.000216,0.000000,0.000000,0.000295,0.125622,-0.000450,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000030,0.000217,0.000000,0.000000,0.000290,0.125179,-0.000443,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000035,0.000030,0.000218,0.000000,0.000000,0.000285,0.124742,-0.000437,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000029,0.000218,0.000000,0.000000,0.000281,0.124311,-0.000431,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000029,0.000219,0.000000,0.000000,0.000276,0.123885,-0.000425,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000029,0.000220,0.000000,0.000000,0.000272,0.123466,-0.000419,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000028,0.000221,0.000100,0.000100,0.000267,0.122954,-0.000512,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000032,0.000027,0.000221,0.000344,0.000344,0.000263,0.122209,-0.000746,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000031,0.000026,0.000222,0.000506,0.000506,0.000258,0.121314,-0.000894,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000026,0.000223,0.000613,0.000613,0.000253,0.120326,-0.000988,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000030,0.000025,0.000223,0.000643,0.000643,0.000247,0.119322,-0.001003,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000029,0.000024,0.000224,0.000592,0.000592,0.000242,0.118383,-0.000940,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000023,0.000224,0.000542,0.000542,0.000236,0.117506,-0.000877,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000022,0.000225,0.000480,0.000480,0.000230,0.116702,-0.000804,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000027,0.000021,0.000225,0.000404,0.000404,0.000224,0.115985,-0.000717,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000021,0.000226,0.000295,0.000295,0.000219,0.115385,-0.000600,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000020,0.000226,0.000134,0.000134,0.000213,0.114952,-0.000433,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000020,0.000227,0.000009,0.000009,0.000208,0.114648,-0.000304,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000020,0.000228,0.000000,0.000000,0.000203,0.114357,-0.000291,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000024,0.000020,0.000228,0.000000,0.000000,0.000199,0.114071,-0.000287,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000019,0.000229,0.000000,0.000000,0.000194,0.113788,-0.000283,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000019,0.000230,0.000000,0.000000,0.000190,0.113509,-0.000279,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000019,0.000230,0.000000,0.000000,0.000187,0.113234,-0.000275,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000018,0.000231,0.000000,0.000000,0.000183,0.112963,-0.000271,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000232,0.000000,0.000000,0.000179,0.112696,-0.000267,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000021,0.000018,0.000233,0.000000,0.000000,0.000176,0.112433,-0.000264,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000018,0.000233,0.000000,0.000000,0.000173,0.112173,-0.000260,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000017,0.000234,0.000000,0.000000,0.000170,0.111917,-0.000256,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000017,0.000235,0.000000,0.000000,0.000167,0.111664,-0.000253,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000236,0.000000,0.000000,0.000164,0.111415,-0.000249,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000017,0.000236,0.000084,0.000084,0.000161,0.111086,-0.000329,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000016,0.000237,0.000331,0.000331,0.000158,0.110518,-0.000568,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000015,0.000238,0.000487,0.000487,0.000155,0.109804,-0.000714,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000015,0.000239,0.000597,0.000597,0.000151,0.108993,-0.000812,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000014,0.000239,0.000637,0.000637,0.000147,0.108152,-0.000840,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000014,0.000240,0.000597,0.000000,0.000143,0.107952,-0.000200,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000013,0.000241,0.000529,0.000000,0.000140,0.107755,-0.000198,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000013,0.000241,0.000476,0.000000,0.000137,0.107560,-0.000195,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000013,0.000242,0.000413,0.000000,0.000134,0.107368,-0.000192,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000013,0.000243,0.000297,0.000000,0.000131,0.107178,-0.000189,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000013,0.000243,0.000153,0.000000,0.000128,0.106992,-0.000187,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000013,0.000244,0.000009,0.000000,0.000125,0.106807,-0.000184,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000012,0.000245,0.000000,0.000000,0.000123,0.106626,-0.000182,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000012,0.000246,0.000000,0.000000,0.000120,0.106447,-0.000179,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000012,0.000246,0.000000,0.000000,0.000118,0.106270,-0.000177,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000012,0.000247,0.000000,0.000000,0.000116,0.106096,-0.000174,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000012,0.000248,0.000000,0.000000,0.000114,0.105924,-0.000172,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000012,0.000249,0.000000,0.000000,0.000112,0.105755,-0.000169,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000110,0.105588,-0.000167,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000108,0.105423,-0.000165,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000251,0.000000,0.000000,0.000106,0.105261,-0.000162,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000252,0.000000,0.000000,0.000105,0.105101,-0.000160,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000252,0.000000,0.000000,0.000103,0.104943,-0.000158,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000011,0.000253,0.000000,0.000000,0.000101,0.104787,-0.000156,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000254,0.000093,0.000000,0.000100,0.104634,-0.000154,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619316.csv b/test/channel_loss/channel_forcing/et/cat-2619316.csv new file mode 100644 index 000000000..7d20b4a2c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619316.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001428,0.000059,0.001428,0.000143,0.000143,0.010227,0.425577,-0.004993,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001241,0.000058,0.001241,0.000030,0.000030,0.009044,0.420756,-0.004820,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001084,0.000058,0.001084,0.000000,0.000000,0.008018,0.416024,-0.004732,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000951,0.000057,0.000951,0.000000,0.000000,0.007124,0.411351,-0.004674,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000837,0.000056,0.000837,0.000000,0.000000,0.006343,0.406734,-0.004617,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000740,0.000056,0.000740,0.000000,0.000000,0.005659,0.402174,-0.004560,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000656,0.000055,0.000656,0.000000,0.000000,0.005059,0.397670,-0.004504,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000583,0.000054,0.000584,0.000000,0.000000,0.004530,0.393221,-0.004449,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000519,0.000054,0.000521,0.000000,0.000000,0.004065,0.388826,-0.004395,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000464,0.000053,0.000466,0.000000,0.000000,0.003653,0.384485,-0.004341,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000416,0.000052,0.000418,0.000000,0.000000,0.003290,0.380198,-0.004288,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000373,0.000052,0.000376,0.000000,0.000000,0.002968,0.375963,-0.004235,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000336,0.000051,0.000339,0.000000,0.000000,0.002683,0.371779,-0.004183,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000303,0.000050,0.000307,0.000000,0.000000,0.002430,0.367647,-0.004132,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000275,0.000050,0.000278,0.000118,0.000118,0.002205,0.363449,-0.004198,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000249,0.000049,0.000253,0.000359,0.000359,0.002005,0.359064,-0.004385,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000226,0.000048,0.000231,0.000536,0.000536,0.001827,0.354558,-0.004506,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000206,0.000048,0.000212,0.000633,0.000633,0.001669,0.350011,-0.004547,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000188,0.000047,0.000194,0.000518,0.000518,0.001527,0.345634,-0.004378,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000659,0.000017,0.000030,0.000017,0.000007,0.000173,0.000046,0.000196,0.000489,0.000489,0.001401,0.341960,-0.003673,1.000000,0.000014 +20,2022-08-01 20:00:00,0.000810,0.000082,0.000135,0.000082,0.000007,0.000158,0.000046,0.000248,0.000407,0.000407,0.001289,0.338458,-0.003502,1.000000,0.000067 +21,2022-08-01 21:00:00,0.001010,0.000214,0.000317,0.000214,0.000008,0.000146,0.000045,0.000368,0.000322,0.000322,0.001188,0.335101,-0.003358,1.000000,0.000169 +22,2022-08-01 22:00:00,0.000827,0.000229,0.000223,0.000229,0.000009,0.000135,0.000045,0.000372,0.000275,0.000275,0.001098,0.331742,-0.003359,1.000000,0.000164 +23,2022-08-01 23:00:00,0.000841,0.000280,0.000292,0.000280,0.000010,0.000125,0.000044,0.000414,0.000185,0.000185,0.001018,0.328459,-0.003283,1.000000,0.000176 +24,2022-08-02 00:00:00,0.000832,0.000298,0.000328,0.000298,0.000010,0.000116,0.000044,0.000424,0.000125,0.000125,0.000946,0.325233,-0.003226,1.000000,0.000206 +25,2022-08-02 01:00:00,0.001449,0.000625,0.000880,0.000625,0.000011,0.000108,0.000043,0.000744,0.000049,0.000049,0.000882,0.322184,-0.003049,1.000000,0.000462 +26,2022-08-02 02:00:00,0.002000,0.001063,0.001413,0.001063,0.000012,0.000101,0.000043,0.001176,0.000000,0.000000,0.000824,0.319239,-0.002945,1.000000,0.000812 +27,2022-08-02 03:00:00,0.001970,0.001290,0.001383,0.001290,0.000013,0.000094,0.000043,0.001397,0.000000,0.000000,0.000773,0.316330,-0.002909,1.000000,0.000905 +28,2022-08-02 04:00:00,0.001974,0.001390,0.001384,0.001390,0.000014,0.000089,0.000042,0.001492,0.000000,0.000000,0.000726,0.313459,-0.002871,1.000000,0.000900 +29,2022-08-02 05:00:00,0.001778,0.001286,0.001205,0.001286,0.000015,0.000083,0.000042,0.001384,0.000000,0.000000,0.000684,0.310606,-0.002852,1.000000,0.000819 +30,2022-08-02 06:00:00,0.001801,0.001251,0.001224,0.001251,0.000016,0.000079,0.000041,0.001346,0.000000,0.000000,0.000647,0.307793,-0.002813,1.000000,0.000792 +31,2022-08-02 07:00:00,0.000000,0.000547,0.000000,0.000547,0.000017,0.000075,0.000041,0.000639,0.000000,0.000000,0.000613,0.304444,-0.003349,1.000000,0.000245 +32,2022-08-02 08:00:00,0.000000,0.000245,0.000000,0.000245,0.000018,0.000071,0.000040,0.000334,0.000000,0.000000,0.000582,0.301137,-0.003308,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000068,0.000040,0.000086,0.000000,0.000000,0.000555,0.297869,-0.003267,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000064,0.000039,0.000084,0.000000,0.000000,0.000530,0.294642,-0.003227,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000062,0.000039,0.000083,0.000000,0.000000,0.000507,0.291454,-0.003188,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000059,0.000038,0.000081,0.000000,0.000000,0.000486,0.288306,-0.003149,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000500,0.000099,0.000181,0.000099,0.000023,0.000057,0.000038,0.000179,0.000000,0.000000,0.000467,0.285511,-0.002795,1.000000,0.000081 +38,2022-08-02 14:00:00,0.000400,0.000084,0.000070,0.000084,0.000024,0.000055,0.000038,0.000163,0.000112,0.000112,0.000450,0.282650,-0.002861,1.000000,0.000068 +39,2022-08-02 15:00:00,0.000400,0.000059,0.000010,0.000059,0.000026,0.000053,0.000037,0.000138,0.000299,0.000299,0.000434,0.279698,-0.002951,1.000000,0.000019 +40,2022-08-02 16:00:00,0.000457,0.000017,0.000000,0.000017,0.000027,0.000051,0.000037,0.000095,0.000439,0.000439,0.000420,0.276711,-0.002987,1.000000,0.000002 +41,2022-08-02 17:00:00,0.000500,0.000002,0.000000,0.000002,0.000028,0.000049,0.000036,0.000080,0.000527,0.000527,0.000407,0.273716,-0.002995,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000700,0.000008,0.000015,0.000008,0.000029,0.000048,0.000036,0.000085,0.000577,0.000577,0.000395,0.270892,-0.002824,1.000000,0.000007 +43,2022-08-02 19:00:00,0.000137,0.000004,0.000000,0.000004,0.000030,0.000047,0.000035,0.000081,0.000522,0.000522,0.000383,0.267614,-0.003278,1.000000,0.000003 +44,2022-08-02 20:00:00,0.000063,0.000003,0.000000,0.000003,0.000032,0.000045,0.000035,0.000080,0.000473,0.000473,0.000373,0.264352,-0.003262,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000044,0.000034,0.000077,0.000446,0.000446,0.000363,0.261157,-0.003195,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000043,0.000034,0.000077,0.000398,0.000398,0.000354,0.258049,-0.003108,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000042,0.000033,0.000078,0.000291,0.000291,0.000345,0.255084,-0.002965,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000037,0.000041,0.000033,0.000078,0.000156,0.000156,0.000337,0.252288,-0.002795,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000001,0.000002,0.000001,0.000038,0.000040,0.000033,0.000080,0.000017,0.000017,0.000330,0.249663,-0.002626,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000063,0.000003,0.000004,0.000003,0.000040,0.000039,0.000032,0.000082,0.000000,0.000000,0.000323,0.247084,-0.002579,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000063,0.000004,0.000004,0.000004,0.000041,0.000038,0.000032,0.000083,0.000000,0.000000,0.000316,0.244537,-0.002547,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000063,0.000004,0.000004,0.000004,0.000042,0.000038,0.000031,0.000084,0.000000,0.000000,0.000310,0.242022,-0.002516,1.000000,0.000003 +53,2022-08-03 05:00:00,0.000063,0.000004,0.000004,0.000004,0.000044,0.000037,0.000031,0.000085,0.000000,0.000000,0.000304,0.239537,-0.002485,1.000000,0.000003 +54,2022-08-03 06:00:00,0.000063,0.000004,0.000004,0.000004,0.000045,0.000036,0.000031,0.000085,0.000000,0.000000,0.000299,0.237082,-0.002454,1.000000,0.000003 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000047,0.000036,0.000030,0.000084,0.000000,0.000000,0.000293,0.234599,-0.002483,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000048,0.000035,0.000030,0.000084,0.000000,0.000000,0.000288,0.232147,-0.002453,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000034,0.000030,0.000084,0.000000,0.000000,0.000283,0.229724,-0.002423,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000034,0.000029,0.000085,0.000000,0.000000,0.000279,0.227331,-0.002393,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000033,0.000029,0.000086,0.000000,0.000000,0.000274,0.224968,-0.002364,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000033,0.000028,0.000087,0.000000,0.000000,0.000270,0.222633,-0.002335,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000032,0.000028,0.000088,0.000000,0.000000,0.000266,0.220327,-0.002306,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000032,0.000028,0.000089,0.000110,0.000110,0.000262,0.217940,-0.002387,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000031,0.000027,0.000090,0.000357,0.000357,0.000258,0.215339,-0.002602,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000031,0.000027,0.000091,0.000509,0.000509,0.000254,0.212619,-0.002720,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000030,0.000027,0.000092,0.000633,0.000633,0.000250,0.209810,-0.002809,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000030,0.000026,0.000093,0.000610,0.000610,0.000246,0.207059,-0.002751,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000029,0.000026,0.000094,0.000531,0.000531,0.000243,0.204419,-0.002640,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000826,0.000049,0.000089,0.000049,0.000066,0.000029,0.000025,0.000144,0.000477,0.000477,0.000239,0.202592,-0.001827,1.000000,0.000040 +69,2022-08-03 21:00:00,0.000126,0.000022,0.000000,0.000022,0.000068,0.000029,0.000025,0.000119,0.000429,0.000429,0.000236,0.200232,-0.002359,1.000000,0.000018 +70,2022-08-03 22:00:00,0.000000,0.000018,0.000000,0.000018,0.000070,0.000028,0.000025,0.000116,0.000354,0.000354,0.000232,0.197851,-0.002381,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000028,0.000024,0.000099,0.000268,0.000268,0.000229,0.195584,-0.002267,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000027,0.000024,0.000100,0.000169,0.000169,0.000226,0.193442,-0.002142,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000027,0.000024,0.000101,0.000027,0.000027,0.000222,0.191467,-0.001975,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000027,0.000023,0.000103,0.000000,0.000000,0.000219,0.189542,-0.001924,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000026,0.000023,0.000104,0.000000,0.000000,0.000216,0.187641,-0.001901,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000026,0.000023,0.000105,0.000000,0.000000,0.000213,0.185764,-0.001878,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000025,0.000023,0.000107,0.000000,0.000000,0.000210,0.183909,-0.001855,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000025,0.000022,0.000108,0.000000,0.000000,0.000208,0.182077,-0.001832,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000025,0.000022,0.000109,0.000000,0.000000,0.000205,0.180268,-0.001810,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000024,0.000022,0.000111,0.000000,0.000000,0.000202,0.178480,-0.001787,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000024,0.000022,0.000112,0.000000,0.000000,0.000199,0.176715,-0.001765,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000024,0.000021,0.000113,0.000000,0.000000,0.000197,0.174971,-0.001744,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000024,0.000021,0.000115,0.000000,0.000000,0.000194,0.173248,-0.001723,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000023,0.000021,0.000116,0.000000,0.000000,0.000192,0.171547,-0.001701,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000023,0.000020,0.000117,0.000000,0.000000,0.000189,0.169866,-0.001681,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000023,0.000020,0.000119,0.000110,0.000110,0.000187,0.168098,-0.001768,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000022,0.000020,0.000120,0.000359,0.000359,0.000185,0.166105,-0.001993,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000022,0.000020,0.000122,0.000529,0.000529,0.000182,0.163968,-0.002137,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000022,0.000019,0.000123,0.000630,0.000630,0.000180,0.161758,-0.002210,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000021,0.000019,0.000124,0.000719,0.000719,0.000177,0.159487,-0.002271,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000021,0.000019,0.000126,0.000624,0.000624,0.000175,0.157338,-0.002149,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000021,0.000018,0.000127,0.000573,0.000573,0.000172,0.155266,-0.002072,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000021,0.000018,0.000129,0.000502,0.000502,0.000169,0.153289,-0.001977,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000020,0.000018,0.000130,0.000422,0.000422,0.000167,0.151415,-0.001874,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000020,0.000017,0.000132,0.000316,0.000316,0.000164,0.149668,-0.001747,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000020,0.000017,0.000133,0.000176,0.000176,0.000162,0.148082,-0.001586,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000019,0.000017,0.000134,0.000030,0.000030,0.000160,0.146659,-0.001423,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000019,0.000017,0.000136,0.000000,0.000000,0.000157,0.145283,-0.001376,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000019,0.000017,0.000137,0.000000,0.000000,0.000155,0.143924,-0.001359,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000019,0.000016,0.000139,0.000000,0.000000,0.000153,0.142582,-0.001342,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000018,0.000016,0.000140,0.000000,0.000000,0.000151,0.141256,-0.001326,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000018,0.000016,0.000142,0.000000,0.000000,0.000149,0.139946,-0.001310,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000018,0.000016,0.000143,0.000000,0.000000,0.000147,0.138652,-0.001294,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000018,0.000016,0.000145,0.000000,0.000000,0.000145,0.137374,-0.001278,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000017,0.000015,0.000146,0.000000,0.000000,0.000143,0.136112,-0.001262,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000017,0.000015,0.000148,0.000000,0.000000,0.000141,0.134865,-0.001247,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000017,0.000015,0.000149,0.000000,0.000000,0.000139,0.133634,-0.001232,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000017,0.000015,0.000151,0.000000,0.000000,0.000137,0.132418,-0.001216,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000016,0.000015,0.000152,0.000000,0.000000,0.000136,0.131216,-0.001202,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000016,0.000014,0.000154,0.000121,0.000121,0.000134,0.129910,-0.001306,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000016,0.000014,0.000155,0.000365,0.000365,0.000132,0.128378,-0.001531,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000016,0.000014,0.000157,0.000531,0.000531,0.000130,0.126701,-0.001677,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000016,0.000014,0.000158,0.000650,0.000650,0.000128,0.124928,-0.001774,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000015,0.000013,0.000160,0.000630,0.000630,0.000127,0.123195,-0.001732,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000015,0.000013,0.000161,0.000593,0.000593,0.000125,0.121521,-0.001674,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000015,0.000013,0.000163,0.000512,0.000512,0.000123,0.119948,-0.001574,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000015,0.000013,0.000164,0.000479,0.000479,0.000121,0.118426,-0.001522,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000014,0.000012,0.000166,0.000397,0.000397,0.000119,0.117003,-0.001423,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000153,0.000014,0.000012,0.000167,0.000298,0.000298,0.000117,0.115758,-0.001245,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000014,0.000012,0.000169,0.000167,0.000167,0.000115,0.114595,-0.001163,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000126,0.000003,0.000006,0.000003,0.000156,0.000014,0.000012,0.000173,0.000042,0.000042,0.000114,0.113689,-0.000906,1.000000,0.000003 +122,2022-08-06 02:00:00,0.000252,0.000026,0.000045,0.000026,0.000158,0.000014,0.000012,0.000198,0.000000,0.000000,0.000112,0.112921,-0.000768,1.000000,0.000022 +123,2022-08-06 03:00:00,0.000063,0.000014,0.000003,0.000014,0.000160,0.000013,0.000012,0.000187,0.000000,0.000000,0.000110,0.112017,-0.000904,1.000000,0.000010 +124,2022-08-06 04:00:00,0.000000,0.000010,0.000000,0.000010,0.000162,0.000013,0.000012,0.000185,0.000000,0.000000,0.000109,0.111065,-0.000952,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000163,0.000013,0.000011,0.000177,0.000000,0.000000,0.000107,0.110125,-0.000940,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000013,0.000011,0.000178,0.000000,0.000000,0.000106,0.109197,-0.000929,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000013,0.000011,0.000179,0.000000,0.000000,0.000104,0.108279,-0.000917,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000012,0.000011,0.000181,0.000000,0.000000,0.000103,0.107373,-0.000906,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000012,0.000011,0.000182,0.000000,0.000000,0.000102,0.106479,-0.000895,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000012,0.000011,0.000184,0.000000,0.000000,0.000100,0.105595,-0.000884,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000012,0.000011,0.000185,0.000000,0.000000,0.000099,0.104721,-0.000873,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000012,0.000011,0.000187,0.000000,0.000000,0.000098,0.103859,-0.000862,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000012,0.000010,0.000188,0.000000,0.000000,0.000096,0.103007,-0.000852,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000011,0.000010,0.000190,0.000104,0.000104,0.000095,0.102063,-0.000944,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000011,0.000010,0.000191,0.000339,0.000339,0.000094,0.100898,-0.001165,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000011,0.000010,0.000193,0.000510,0.000510,0.000092,0.099579,-0.001320,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000011,0.000010,0.000194,0.000626,0.000626,0.000091,0.098161,-0.001418,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000011,0.000009,0.000196,0.000691,0.000691,0.000090,0.096696,-0.001464,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000011,0.000009,0.000197,0.000652,0.000652,0.000088,0.095288,-0.001408,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000010,0.000009,0.000199,0.000578,0.000578,0.000087,0.093970,-0.001318,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000010,0.000009,0.000200,0.000499,0.000000,0.000085,0.093239,-0.000731,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000010,0.000009,0.000202,0.000425,0.000000,0.000084,0.092518,-0.000722,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000010,0.000009,0.000203,0.000308,0.000000,0.000083,0.091805,-0.000713,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000010,0.000009,0.000205,0.000168,0.000000,0.000081,0.091100,-0.000704,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000010,0.000008,0.000206,0.000026,0.000000,0.000080,0.090405,-0.000696,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000010,0.000008,0.000208,0.000000,0.000000,0.000079,0.089717,-0.000687,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000009,0.000008,0.000209,0.000000,0.000000,0.000078,0.089039,-0.000679,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000009,0.000008,0.000210,0.000000,0.000000,0.000077,0.088368,-0.000670,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000009,0.000008,0.000212,0.000000,0.000000,0.000076,0.087706,-0.000662,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000009,0.000008,0.000213,0.000000,0.000000,0.000075,0.087052,-0.000654,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000009,0.000008,0.000215,0.000000,0.000000,0.000074,0.086406,-0.000646,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000009,0.000008,0.000216,0.000000,0.000000,0.000073,0.085768,-0.000638,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000009,0.000008,0.000218,0.000000,0.000000,0.000072,0.085137,-0.000630,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000009,0.000008,0.000219,0.000000,0.000000,0.000071,0.084514,-0.000623,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000008,0.000007,0.000221,0.000000,0.000000,0.000070,0.083899,-0.000615,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000008,0.000007,0.000222,0.000000,0.000000,0.000069,0.083292,-0.000608,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000008,0.000007,0.000223,0.000000,0.000000,0.000068,0.082692,-0.000600,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000008,0.000007,0.000225,0.000099,0.000000,0.000067,0.082099,-0.000593,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000008,0.000007,0.000226,0.000348,0.000000,0.000066,0.081514,-0.000585,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000008,0.000007,0.000228,0.000517,0.000000,0.000065,0.080935,-0.000578,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000008,0.000007,0.000229,0.000626,0.000000,0.000064,0.080364,-0.000571,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000008,0.000007,0.000231,0.000652,0.000000,0.000064,0.079800,-0.000564,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000008,0.000007,0.000232,0.000595,0.000000,0.000063,0.079242,-0.000557,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000008,0.000007,0.000233,0.000544,0.000000,0.000062,0.078692,-0.000551,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000007,0.000007,0.000235,0.000475,0.000000,0.000061,0.078148,-0.000544,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000007,0.000007,0.000236,0.000396,0.000000,0.000061,0.077611,-0.000537,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000007,0.000006,0.000238,0.000290,0.000000,0.000060,0.077081,-0.000531,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000007,0.000006,0.000239,0.000132,0.000000,0.000059,0.076557,-0.000524,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000007,0.000006,0.000240,0.000009,0.000000,0.000058,0.076039,-0.000518,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000007,0.000006,0.000242,0.000000,0.000000,0.000058,0.075528,-0.000511,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000007,0.000006,0.000243,0.000000,0.000000,0.000057,0.075023,-0.000505,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000007,0.000006,0.000245,0.000000,0.000000,0.000056,0.074524,-0.000499,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000007,0.000006,0.000246,0.000000,0.000000,0.000055,0.074031,-0.000493,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000007,0.000006,0.000247,0.000000,0.000000,0.000055,0.073544,-0.000487,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000007,0.000006,0.000249,0.000000,0.000000,0.000054,0.073064,-0.000481,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000006,0.000006,0.000250,0.000000,0.000000,0.000053,0.072589,-0.000475,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000006,0.000006,0.000251,0.000000,0.000000,0.000053,0.072120,-0.000469,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000006,0.000006,0.000253,0.000000,0.000000,0.000052,0.071656,-0.000463,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000006,0.000006,0.000254,0.000000,0.000000,0.000051,0.071199,-0.000458,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000006,0.000006,0.000255,0.000000,0.000000,0.000051,0.070747,-0.000452,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000006,0.000005,0.000257,0.000000,0.000000,0.000050,0.070300,-0.000446,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000006,0.000005,0.000258,0.000083,0.000000,0.000050,0.069859,-0.000441,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000006,0.000005,0.000259,0.000338,0.000000,0.000049,0.069424,-0.000436,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000006,0.000005,0.000261,0.000495,0.000000,0.000048,0.068993,-0.000430,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000006,0.000005,0.000262,0.000611,0.000000,0.000048,0.068568,-0.000425,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000006,0.000005,0.000263,0.000645,0.000000,0.000047,0.068148,-0.000420,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000006,0.000005,0.000264,0.000607,0.000000,0.000047,0.067734,-0.000415,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000006,0.000005,0.000266,0.000531,0.000000,0.000046,0.067324,-0.000410,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000005,0.000005,0.000267,0.000476,0.000000,0.000045,0.066920,-0.000405,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000005,0.000005,0.000268,0.000410,0.000000,0.000045,0.066520,-0.000400,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000005,0.000005,0.000270,0.000297,0.000000,0.000044,0.066125,-0.000395,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000005,0.000005,0.000271,0.000150,0.000000,0.000044,0.065735,-0.000390,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000005,0.000005,0.000272,0.000006,0.000000,0.000043,0.065350,-0.000385,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000268,0.000005,0.000005,0.000273,0.000000,0.000000,0.000043,0.064970,-0.000380,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000269,0.000005,0.000005,0.000275,0.000000,0.000000,0.000042,0.064594,-0.000376,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000271,0.000005,0.000005,0.000276,0.000000,0.000000,0.000042,0.064223,-0.000371,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000272,0.000005,0.000004,0.000277,0.000000,0.000000,0.000041,0.063856,-0.000367,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000273,0.000005,0.000004,0.000278,0.000000,0.000000,0.000041,0.063494,-0.000362,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000275,0.000005,0.000004,0.000279,0.000000,0.000000,0.000040,0.063136,-0.000358,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000276,0.000005,0.000004,0.000281,0.000000,0.000000,0.000040,0.062783,-0.000353,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000277,0.000005,0.000004,0.000282,0.000000,0.000000,0.000039,0.062434,-0.000349,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000278,0.000005,0.000004,0.000283,0.000000,0.000000,0.000039,0.062089,-0.000345,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000280,0.000005,0.000004,0.000284,0.000000,0.000000,0.000038,0.061749,-0.000340,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000281,0.000005,0.000004,0.000285,0.000000,0.000000,0.000038,0.061413,-0.000336,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000282,0.000005,0.000004,0.000287,0.000000,0.000000,0.000037,0.061080,-0.000332,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000283,0.000004,0.000004,0.000288,0.000092,0.000000,0.000037,0.060752,-0.000328,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619317.csv b/test/channel_loss/channel_forcing/et/cat-2619317.csv new file mode 100644 index 000000000..98fc0c760 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619317.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000000,0.001493,0.000521,0.001493,0.000141,0.000141,0.010622,0.423988,-0.004954,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001357,0.000513,0.001357,0.000030,0.000030,0.009778,0.419211,-0.004777,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001241,0.000505,0.001241,0.000000,0.000000,0.009042,0.414534,-0.004676,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001142,0.000498,0.001142,0.000000,0.000000,0.008397,0.409927,-0.004607,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001056,0.000490,0.001056,0.000000,0.000000,0.007831,0.405389,-0.004538,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000982,0.000483,0.000982,0.000000,0.000000,0.007332,0.400919,-0.004471,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000917,0.000476,0.000917,0.000000,0.000000,0.006891,0.396515,-0.004404,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000860,0.000469,0.000861,0.000000,0.000000,0.006500,0.392177,-0.004338,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000810,0.000462,0.000811,0.000000,0.000000,0.006151,0.387903,-0.004274,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000765,0.000455,0.000767,0.000000,0.000000,0.005841,0.383693,-0.004210,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000726,0.000448,0.000728,0.000000,0.000000,0.005563,0.379546,-0.004147,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000691,0.000441,0.000693,0.000000,0.000000,0.005313,0.375460,-0.004086,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000660,0.000435,0.000662,0.000000,0.000000,0.005088,0.371435,-0.004025,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000632,0.000428,0.000634,0.000000,0.000000,0.004884,0.367471,-0.003965,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000606,0.000422,0.000609,0.000115,0.000115,0.004700,0.363451,-0.004019,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000583,0.000415,0.000587,0.000349,0.000349,0.004532,0.359262,-0.004190,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000562,0.000408,0.000566,0.000523,0.000523,0.004378,0.354963,-0.004299,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000543,0.000401,0.000547,0.000616,0.000616,0.004236,0.350637,-0.004326,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000525,0.000394,0.000530,0.000498,0.000498,0.004105,0.346491,-0.004145,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000993,0.000017,0.000032,0.000017,0.000006,0.000509,0.000389,0.000532,0.000472,0.000472,0.003985,0.343380,-0.003111,1.000000,0.000014 +20,2022-08-01 20:00:00,0.001086,0.000038,0.000055,0.000038,0.000006,0.000494,0.000384,0.000539,0.000391,0.000391,0.003875,0.340464,-0.002916,1.000000,0.000031 +21,2022-08-01 21:00:00,0.001168,0.000064,0.000080,0.000064,0.000007,0.000480,0.000380,0.000552,0.000320,0.000320,0.003774,0.337718,-0.002747,1.000000,0.000047 +22,2022-08-01 22:00:00,0.001089,0.000073,0.000075,0.000073,0.000008,0.000468,0.000375,0.000548,0.000265,0.000265,0.003681,0.334992,-0.002725,1.000000,0.000050 +23,2022-08-01 23:00:00,0.001133,0.000089,0.000099,0.000089,0.000008,0.000457,0.000371,0.000554,0.000180,0.000180,0.003596,0.332412,-0.002581,1.000000,0.000060 +24,2022-08-02 00:00:00,0.001076,0.000094,0.000099,0.000094,0.000009,0.000446,0.000367,0.000550,0.000120,0.000120,0.003517,0.329873,-0.002539,1.000000,0.000064 +25,2022-08-02 01:00:00,0.001839,0.000220,0.000318,0.000220,0.000010,0.000436,0.000364,0.000666,0.000047,0.000047,0.003444,0.327979,-0.001894,1.000000,0.000163 +26,2022-08-02 02:00:00,0.002019,0.000316,0.000394,0.000316,0.000011,0.000428,0.000361,0.000754,0.000000,0.000000,0.003377,0.326262,-0.001717,1.000000,0.000241 +27,2022-08-02 03:00:00,0.002004,0.000375,0.000388,0.000375,0.000011,0.000419,0.000358,0.000806,0.000000,0.000000,0.003316,0.324563,-0.001700,1.000000,0.000253 +28,2022-08-02 04:00:00,0.002015,0.000390,0.000390,0.000390,0.000012,0.000412,0.000355,0.000815,0.000000,0.000000,0.003260,0.322897,-0.001666,1.000000,0.000253 +29,2022-08-02 05:00:00,0.001952,0.000377,0.000368,0.000377,0.000013,0.000405,0.000353,0.000795,0.000000,0.000000,0.003207,0.321215,-0.001681,1.000000,0.000244 +30,2022-08-02 06:00:00,0.001955,0.000372,0.000368,0.000372,0.000014,0.000399,0.000350,0.000785,0.000000,0.000000,0.003159,0.319562,-0.001653,1.000000,0.000239 +31,2022-08-02 07:00:00,0.000000,0.000165,0.000000,0.000165,0.000015,0.000392,0.000345,0.000573,0.000000,0.000000,0.003111,0.316370,-0.003192,1.000000,0.000074 +32,2022-08-02 08:00:00,0.000000,0.000074,0.000000,0.000074,0.000016,0.000386,0.000340,0.000475,0.000000,0.000000,0.003064,0.313226,-0.003144,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000380,0.000335,0.000397,0.000000,0.000000,0.003019,0.310128,-0.003098,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000374,0.000330,0.000392,0.000000,0.000000,0.002974,0.307077,-0.003052,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000369,0.000325,0.000387,0.000000,0.000000,0.002930,0.304071,-0.003006,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000363,0.000320,0.000382,0.000000,0.000000,0.002887,0.301109,-0.002961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000506,0.000015,0.000028,0.000015,0.000020,0.000358,0.000316,0.000393,0.000000,0.000000,0.002845,0.298663,-0.002446,1.000000,0.000012 +38,2022-08-02 14:00:00,0.000406,0.000012,0.000010,0.000012,0.000021,0.000352,0.000312,0.000386,0.000109,0.000109,0.002805,0.296065,-0.002598,1.000000,0.000010 +39,2022-08-02 15:00:00,0.000421,0.000009,0.000002,0.000009,0.000022,0.000347,0.000307,0.000378,0.000285,0.000285,0.002765,0.293355,-0.002710,1.000000,0.000003 +40,2022-08-02 16:00:00,0.000492,0.000003,0.000001,0.000003,0.000023,0.000342,0.000303,0.000368,0.000421,0.000421,0.002726,0.290623,-0.002732,1.000000,0.000001 +41,2022-08-02 17:00:00,0.000513,0.000001,0.000000,0.000001,0.000024,0.000337,0.000298,0.000362,0.000506,0.000506,0.002687,0.287869,-0.002754,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000625,0.000000,0.000001,0.000000,0.000025,0.000332,0.000294,0.000358,0.000555,0.000555,0.002649,0.285217,-0.002652,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000153,0.000000,0.000000,0.000000,0.000027,0.000327,0.000289,0.000354,0.000502,0.000502,0.002611,0.282193,-0.003024,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000109,0.000000,0.000000,0.000000,0.000028,0.000322,0.000284,0.000350,0.000455,0.000455,0.002573,0.279217,-0.002976,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000317,0.000279,0.000346,0.000444,0.000444,0.002535,0.276250,-0.002966,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000312,0.000275,0.000342,0.000388,0.000388,0.002497,0.273383,-0.002867,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000064,0.000000,0.000000,0.000000,0.000031,0.000307,0.000270,0.000338,0.000284,0.000284,0.002460,0.270662,-0.002721,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000113,0.000000,0.000000,0.000000,0.000032,0.000303,0.000266,0.000335,0.000154,0.000154,0.002423,0.268158,-0.002504,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000094,0.000000,0.000001,0.000000,0.000033,0.000298,0.000262,0.000332,0.000018,0.000018,0.002387,0.265806,-0.002352,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000094,0.000001,0.000001,0.000001,0.000034,0.000294,0.000258,0.000329,0.000000,0.000000,0.002352,0.263507,-0.002300,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000119,0.000001,0.000001,0.000001,0.000036,0.000289,0.000255,0.000326,0.000000,0.000000,0.002318,0.261265,-0.002242,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000143,0.000002,0.000002,0.000002,0.000037,0.000285,0.000251,0.000323,0.000000,0.000000,0.002284,0.259080,-0.002185,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000149,0.000002,0.000002,0.000002,0.000038,0.000281,0.000248,0.000321,0.000000,0.000000,0.002251,0.256933,-0.002147,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000160,0.000002,0.000003,0.000002,0.000039,0.000276,0.000244,0.000318,0.000000,0.000000,0.002219,0.254829,-0.002104,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000041,0.000272,0.000241,0.000314,0.000000,0.000000,0.002187,0.252601,-0.002228,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000042,0.000268,0.000237,0.000311,0.000000,0.000000,0.002156,0.250406,-0.002195,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000264,0.000233,0.000307,0.000000,0.000000,0.002125,0.248245,-0.002162,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000260,0.000230,0.000305,0.000000,0.000000,0.002095,0.246115,-0.002130,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000257,0.000227,0.000302,0.000000,0.000000,0.002065,0.244017,-0.002098,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000253,0.000223,0.000300,0.000000,0.000000,0.002035,0.241950,-0.002067,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000249,0.000220,0.000297,0.000000,0.000000,0.002006,0.239914,-0.002036,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000245,0.000216,0.000295,0.000108,0.000108,0.001977,0.237802,-0.002112,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000242,0.000213,0.000292,0.000353,0.000353,0.001948,0.235480,-0.002322,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000238,0.000209,0.000290,0.000502,0.000502,0.001918,0.233046,-0.002434,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000234,0.000205,0.000288,0.000621,0.000621,0.001889,0.230531,-0.002515,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000230,0.000201,0.000285,0.000596,0.000596,0.001859,0.228078,-0.002453,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000056,0.000227,0.000197,0.000283,0.000507,0.000507,0.001829,0.225758,-0.002321,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000439,0.000000,0.000000,0.000000,0.000057,0.000223,0.000194,0.000280,0.000465,0.000465,0.001800,0.223938,-0.001820,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000068,0.000000,0.000000,0.000000,0.000059,0.000219,0.000190,0.000278,0.000421,0.000421,0.001771,0.221822,-0.002115,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000006,0.000000,0.000000,0.000000,0.000060,0.000216,0.000187,0.000276,0.000343,0.000343,0.001742,0.219754,-0.002068,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000212,0.000184,0.000273,0.000262,0.000262,0.001714,0.217790,-0.001964,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000209,0.000181,0.000271,0.000166,0.000166,0.001686,0.215951,-0.001840,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000205,0.000178,0.000269,0.000027,0.000027,0.001659,0.214275,-0.001676,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000202,0.000175,0.000267,0.000000,0.000000,0.001633,0.212651,-0.001624,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000199,0.000173,0.000265,0.000000,0.000000,0.001607,0.211052,-0.001600,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000195,0.000170,0.000264,0.000000,0.000000,0.001582,0.209476,-0.001576,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000192,0.000168,0.000262,0.000000,0.000000,0.001557,0.207924,-0.001552,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000189,0.000165,0.000260,0.000000,0.000000,0.001533,0.206395,-0.001529,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000186,0.000163,0.000259,0.000000,0.000000,0.001510,0.204888,-0.001506,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000183,0.000160,0.000257,0.000000,0.000000,0.001487,0.203405,-0.001484,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000180,0.000158,0.000256,0.000000,0.000000,0.001464,0.201943,-0.001462,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000178,0.000156,0.000254,0.000000,0.000000,0.001442,0.200503,-0.001440,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000175,0.000153,0.000253,0.000000,0.000000,0.001420,0.199084,-0.001419,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000172,0.000151,0.000252,0.000000,0.000000,0.001399,0.197687,-0.001397,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000170,0.000149,0.000251,0.000000,0.000000,0.001378,0.196310,-0.001377,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000167,0.000146,0.000249,0.000107,0.000107,0.001357,0.194848,-0.001462,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000164,0.000144,0.000248,0.000350,0.000350,0.001336,0.193169,-0.001679,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000162,0.000141,0.000247,0.000515,0.000515,0.001315,0.191353,-0.001817,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000159,0.000138,0.000246,0.000614,0.000614,0.001293,0.189466,-0.001887,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000156,0.000134,0.000244,0.000701,0.000701,0.001271,0.187521,-0.001945,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000154,0.000131,0.000243,0.000628,0.000628,0.001249,0.185677,-0.001843,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000151,0.000128,0.000242,0.000558,0.000558,0.001227,0.183930,-0.001747,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000148,0.000126,0.000240,0.000493,0.000493,0.001205,0.182273,-0.001658,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000145,0.000123,0.000239,0.000411,0.000411,0.001183,0.180721,-0.001552,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000143,0.000121,0.000238,0.000309,0.000309,0.001161,0.179292,-0.001429,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000140,0.000119,0.000236,0.000174,0.000174,0.001140,0.178018,-0.001274,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000137,0.000117,0.000235,0.000031,0.000031,0.001119,0.176904,-0.001114,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000135,0.000115,0.000234,0.000000,0.000000,0.001100,0.175837,-0.001067,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000133,0.000114,0.000233,0.000000,0.000000,0.001081,0.174786,-0.001051,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000130,0.000112,0.000232,0.000000,0.000000,0.001062,0.173751,-0.001035,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000128,0.000110,0.000232,0.000000,0.000000,0.001045,0.172731,-0.001020,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000126,0.000109,0.000231,0.000000,0.000000,0.001027,0.171726,-0.001005,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000124,0.000107,0.000230,0.000000,0.000000,0.001010,0.170736,-0.000990,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000122,0.000105,0.000230,0.000000,0.000000,0.000994,0.169761,-0.000975,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000120,0.000104,0.000229,0.000000,0.000000,0.000978,0.168800,-0.000961,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000118,0.000102,0.000228,0.000000,0.000000,0.000962,0.167854,-0.000946,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000116,0.000101,0.000228,0.000000,0.000000,0.000947,0.166922,-0.000932,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000114,0.000099,0.000228,0.000000,0.000000,0.000932,0.166003,-0.000918,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000112,0.000098,0.000227,0.000000,0.000000,0.000918,0.165099,-0.000905,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000110,0.000096,0.000227,0.000119,0.000119,0.000903,0.164090,-0.001008,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000109,0.000094,0.000226,0.000357,0.000357,0.000889,0.162863,-0.001228,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000107,0.000092,0.000226,0.000517,0.000517,0.000874,0.161495,-0.001367,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000105,0.000089,0.000225,0.000635,0.000635,0.000858,0.160032,-0.001463,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000103,0.000087,0.000225,0.000611,0.000611,0.000842,0.158614,-0.001418,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000101,0.000085,0.000224,0.000575,0.000575,0.000826,0.157253,-0.001361,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000099,0.000083,0.000224,0.000496,0.000496,0.000810,0.155990,-0.001263,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000097,0.000081,0.000223,0.000478,0.000478,0.000794,0.154763,-0.001227,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000095,0.000079,0.000222,0.000387,0.000387,0.000778,0.153645,-0.001118,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000093,0.000077,0.000222,0.000292,0.000292,0.000762,0.152637,-0.001008,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000091,0.000076,0.000221,0.000168,0.000168,0.000747,0.151766,-0.000871,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000056,0.000000,0.000000,0.000000,0.000131,0.000089,0.000075,0.000221,0.000041,0.000041,0.000732,0.151088,-0.000678,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000109,0.000001,0.000001,0.000001,0.000133,0.000088,0.000074,0.000221,0.000000,0.000000,0.000719,0.150512,-0.000576,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000134,0.000086,0.000073,0.000221,0.000000,0.000000,0.000705,0.149839,-0.000673,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000084,0.000072,0.000220,0.000000,0.000000,0.000693,0.149175,-0.000664,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000083,0.000071,0.000220,0.000000,0.000000,0.000680,0.148521,-0.000654,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000081,0.000070,0.000220,0.000000,0.000000,0.000668,0.147877,-0.000644,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000080,0.000069,0.000220,0.000000,0.000000,0.000657,0.147242,-0.000635,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000079,0.000068,0.000220,0.000000,0.000000,0.000646,0.146617,-0.000625,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000077,0.000067,0.000220,0.000000,0.000000,0.000635,0.146001,-0.000616,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000076,0.000066,0.000220,0.000000,0.000000,0.000624,0.145395,-0.000607,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000075,0.000065,0.000220,0.000000,0.000000,0.000614,0.144797,-0.000598,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000074,0.000064,0.000220,0.000000,0.000000,0.000604,0.144208,-0.000589,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000072,0.000063,0.000220,0.000000,0.000000,0.000594,0.143628,-0.000580,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000071,0.000062,0.000220,0.000101,0.000101,0.000585,0.142957,-0.000671,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000060,0.000220,0.000328,0.000328,0.000575,0.142072,-0.000885,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000069,0.000058,0.000220,0.000497,0.000497,0.000564,0.141034,-0.001038,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000067,0.000057,0.000220,0.000611,0.000611,0.000553,0.139900,-0.001135,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000066,0.000055,0.000220,0.000672,0.000672,0.000542,0.138722,-0.001177,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000065,0.000053,0.000220,0.000634,0.000634,0.000530,0.137599,-0.001123,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000063,0.000051,0.000220,0.000558,0.000558,0.000518,0.136567,-0.001032,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000062,0.000050,0.000220,0.000492,0.000492,0.000506,0.135616,-0.000951,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000060,0.000048,0.000219,0.000416,0.000416,0.000494,0.134755,-0.000861,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000059,0.000047,0.000219,0.000303,0.000303,0.000483,0.134018,-0.000737,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000057,0.000046,0.000219,0.000165,0.000165,0.000471,0.133427,-0.000591,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000056,0.000045,0.000219,0.000026,0.000026,0.000461,0.132982,-0.000445,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000055,0.000045,0.000219,0.000000,0.000000,0.000450,0.132569,-0.000413,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000044,0.000219,0.000000,0.000000,0.000441,0.132162,-0.000407,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000043,0.000219,0.000000,0.000000,0.000431,0.131762,-0.000401,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000219,0.000000,0.000000,0.000423,0.131367,-0.000395,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000220,0.000000,0.000000,0.000414,0.130978,-0.000389,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000041,0.000220,0.000000,0.000000,0.000406,0.130596,-0.000383,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000041,0.000220,0.000000,0.000000,0.000399,0.130218,-0.000377,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000040,0.000220,0.000000,0.000000,0.000391,0.129847,-0.000372,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000040,0.000221,0.000000,0.000000,0.000384,0.129481,-0.000366,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000039,0.000221,0.000000,0.000000,0.000377,0.129120,-0.000361,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000045,0.000038,0.000222,0.000000,0.000000,0.000371,0.128765,-0.000355,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000038,0.000222,0.000000,0.000000,0.000364,0.128415,-0.000350,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000097,0.000097,0.000358,0.127974,-0.000441,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000036,0.000223,0.000340,0.000340,0.000351,0.127301,-0.000673,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000035,0.000223,0.000505,0.000505,0.000344,0.126476,-0.000825,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000033,0.000223,0.000611,0.000611,0.000336,0.125558,-0.000918,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000040,0.000032,0.000223,0.000634,0.000634,0.000328,0.124631,-0.000927,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000039,0.000030,0.000224,0.000577,0.000577,0.000320,0.123774,-0.000857,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000029,0.000224,0.000527,0.000527,0.000311,0.122979,-0.000795,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000028,0.000224,0.000469,0.000469,0.000302,0.122254,-0.000726,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000027,0.000224,0.000385,0.000385,0.000293,0.121622,-0.000632,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000026,0.000224,0.000282,0.000282,0.000284,0.121101,-0.000521,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000025,0.000224,0.000130,0.000130,0.000276,0.120737,-0.000364,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000025,0.000224,0.000010,0.000010,0.000268,0.120497,-0.000240,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000024,0.000224,0.000000,0.000000,0.000261,0.120270,-0.000227,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000024,0.000225,0.000000,0.000000,0.000255,0.120047,-0.000223,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000024,0.000225,0.000000,0.000000,0.000248,0.119826,-0.000220,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000023,0.000225,0.000000,0.000000,0.000242,0.119610,-0.000217,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000197,0.000029,0.000023,0.000226,0.000000,0.000000,0.000237,0.119397,-0.000212,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000231,0.119188,-0.000210,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000022,0.000227,0.000000,0.000000,0.000226,0.118980,-0.000207,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000000,0.000000,0.000221,0.118776,-0.000204,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000228,0.000000,0.000000,0.000217,0.118575,-0.000201,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000202,0.000026,0.000021,0.000228,0.000000,0.000000,0.000213,0.118378,-0.000197,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000229,0.000000,0.000000,0.000208,0.118183,-0.000195,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000000,0.000000,0.000204,0.117991,-0.000192,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000205,0.000024,0.000020,0.000230,0.000082,0.000082,0.000200,0.117723,-0.000268,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000230,0.000326,0.000326,0.000196,0.117216,-0.000506,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000018,0.000231,0.000481,0.000481,0.000191,0.116565,-0.000652,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000017,0.000231,0.000603,0.000603,0.000186,0.115802,-0.000763,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000016,0.000231,0.000630,0.000630,0.000180,0.115025,-0.000777,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000021,0.000015,0.000232,0.000598,0.000598,0.000174,0.114290,-0.000735,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000020,0.000014,0.000232,0.000515,0.000515,0.000167,0.113649,-0.000641,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000013,0.000232,0.000470,0.000470,0.000161,0.113061,-0.000588,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000012,0.000232,0.000401,0.000401,0.000154,0.112550,-0.000511,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000018,0.000011,0.000232,0.000292,0.000292,0.000147,0.112154,-0.000396,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000011,0.000232,0.000146,0.000146,0.000141,0.111907,-0.000247,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000011,0.000233,0.000006,0.000006,0.000135,0.111803,-0.000104,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000016,0.000011,0.000233,0.000000,0.000000,0.000130,0.111705,-0.000097,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000010,0.000233,0.000000,0.000000,0.000125,0.111610,-0.000096,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000010,0.000234,0.000000,0.000000,0.000121,0.111515,-0.000094,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000014,0.000010,0.000234,0.000000,0.000000,0.000117,0.111422,-0.000093,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000014,0.000010,0.000235,0.000000,0.000000,0.000113,0.111331,-0.000092,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000013,0.000010,0.000235,0.000000,0.000000,0.000109,0.111240,-0.000090,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000013,0.000010,0.000236,0.000000,0.000000,0.000106,0.111151,-0.000089,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000012,0.000009,0.000236,0.000000,0.000000,0.000103,0.111064,-0.000088,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000012,0.000009,0.000237,0.000000,0.000000,0.000100,0.110977,-0.000086,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000012,0.000009,0.000237,0.000000,0.000000,0.000098,0.110893,-0.000085,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000012,0.000009,0.000238,0.000000,0.000000,0.000095,0.110809,-0.000084,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000011,0.000009,0.000239,0.000000,0.000000,0.000093,0.110726,-0.000082,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000011,0.000009,0.000239,0.000090,0.000090,0.000091,0.110556,-0.000170,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2619318.csv b/test/channel_loss/channel_forcing/et/cat-2619318.csv new file mode 100644 index 000000000..78afe07e3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2619318.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000000,0.001472,0.000370,0.001472,0.000146,0.000146,0.010494,0.427525,-0.004371,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001319,0.000365,0.001319,0.000031,0.000031,0.009540,0.423273,-0.004252,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001190,0.000359,0.001190,0.000000,0.000000,0.008709,0.419117,-0.004156,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001079,0.000353,0.001079,0.000000,0.000000,0.007984,0.415026,-0.004092,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000984,0.000348,0.000984,0.000000,0.000000,0.007348,0.410997,-0.004029,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000902,0.000343,0.000902,0.000000,0.000000,0.006789,0.407030,-0.003967,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000830,0.000337,0.000831,0.000000,0.000000,0.006296,0.403125,-0.003905,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000768,0.000332,0.000769,0.000000,0.000000,0.005860,0.399280,-0.003845,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000713,0.000327,0.000714,0.000000,0.000000,0.005473,0.395494,-0.003786,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000665,0.000322,0.000667,0.000000,0.000000,0.005130,0.391766,-0.003728,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000623,0.000317,0.000625,0.000000,0.000000,0.004824,0.388096,-0.003670,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000585,0.000312,0.000587,0.000000,0.000000,0.004550,0.384483,-0.003614,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000552,0.000307,0.000554,0.000000,0.000000,0.004306,0.380925,-0.003558,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000522,0.000303,0.000525,0.000000,0.000000,0.004086,0.377422,-0.003503,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000496,0.000298,0.000499,0.000115,0.000115,0.003888,0.373859,-0.003563,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000472,0.000293,0.000475,0.000347,0.000347,0.003709,0.370123,-0.003736,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000450,0.000287,0.000454,0.000519,0.000519,0.003547,0.366275,-0.003848,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000430,0.000282,0.000435,0.000603,0.000603,0.003399,0.362404,-0.003871,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000412,0.000277,0.000417,0.000487,0.000487,0.003263,0.358706,-0.003697,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001171,0.000040,0.000073,0.000040,0.000005,0.000396,0.000274,0.000442,0.000464,0.000464,0.003141,0.356171,-0.002536,1.000000,0.000033 +20,2022-08-01 20:00:00,0.001353,0.000089,0.000129,0.000089,0.000006,0.000382,0.000271,0.000477,0.000392,0.000392,0.003030,0.353868,-0.002303,1.000000,0.000073 +21,2022-08-01 21:00:00,0.001288,0.000117,0.000128,0.000117,0.000006,0.000368,0.000268,0.000492,0.000330,0.000330,0.002929,0.351599,-0.002269,1.000000,0.000083 +22,2022-08-01 22:00:00,0.001236,0.000129,0.000130,0.000129,0.000007,0.000356,0.000265,0.000493,0.000268,0.000268,0.002837,0.349372,-0.002227,1.000000,0.000084 +23,2022-08-01 23:00:00,0.001206,0.000137,0.000143,0.000137,0.000008,0.000346,0.000262,0.000490,0.000184,0.000184,0.002754,0.347221,-0.002151,1.000000,0.000090 +24,2022-08-02 00:00:00,0.001207,0.000150,0.000160,0.000150,0.000008,0.000336,0.000259,0.000494,0.000120,0.000120,0.002677,0.345149,-0.002072,1.000000,0.000101 +25,2022-08-02 01:00:00,0.001956,0.000312,0.000442,0.000312,0.000009,0.000326,0.000257,0.000647,0.000049,0.000049,0.002607,0.343640,-0.001509,1.000000,0.000231 +26,2022-08-02 02:00:00,0.002164,0.000446,0.000551,0.000446,0.000010,0.000318,0.000255,0.000774,0.000000,0.000000,0.002544,0.342300,-0.001340,1.000000,0.000336 +27,2022-08-02 03:00:00,0.002147,0.000524,0.000542,0.000524,0.000010,0.000311,0.000253,0.000846,0.000000,0.000000,0.002487,0.340973,-0.001328,1.000000,0.000354 +28,2022-08-02 04:00:00,0.002154,0.000545,0.000544,0.000545,0.000011,0.000304,0.000252,0.000860,0.000000,0.000000,0.002434,0.339670,-0.001302,1.000000,0.000353 +29,2022-08-02 05:00:00,0.002147,0.000542,0.000540,0.000542,0.000012,0.000298,0.000250,0.000851,0.000000,0.000000,0.002386,0.338385,-0.001285,1.000000,0.000352 +30,2022-08-02 06:00:00,0.002137,0.000538,0.000535,0.000538,0.000013,0.000292,0.000248,0.000843,0.000000,0.000000,0.002342,0.337115,-0.001270,1.000000,0.000349 +31,2022-08-02 07:00:00,0.000000,0.000242,0.000000,0.000242,0.000013,0.000287,0.000244,0.000542,0.000000,0.000000,0.002299,0.334288,-0.002828,1.000000,0.000107 +32,2022-08-02 08:00:00,0.000000,0.000107,0.000000,0.000107,0.000014,0.000281,0.000240,0.000403,0.000000,0.000000,0.002258,0.331503,-0.002784,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000276,0.000237,0.000291,0.000000,0.000000,0.002219,0.328762,-0.002741,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000271,0.000233,0.000287,0.000000,0.000000,0.002181,0.326063,-0.002699,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000267,0.000230,0.000283,0.000000,0.000000,0.002143,0.323405,-0.002657,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000262,0.000226,0.000280,0.000000,0.000000,0.002107,0.320789,-0.002617,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000520,0.000021,0.000038,0.000021,0.000018,0.000258,0.000223,0.000297,0.000000,0.000000,0.002073,0.318687,-0.002102,1.000000,0.000017 +38,2022-08-02 14:00:00,0.000420,0.000017,0.000014,0.000017,0.000019,0.000253,0.000220,0.000290,0.000110,0.000110,0.002039,0.316434,-0.002253,1.000000,0.000014 +39,2022-08-02 15:00:00,0.000500,0.000015,0.000007,0.000015,0.000020,0.000249,0.000217,0.000284,0.000284,0.000284,0.002007,0.314131,-0.002303,1.000000,0.000006 +40,2022-08-02 16:00:00,0.000500,0.000005,0.000001,0.000005,0.000021,0.000245,0.000214,0.000271,0.000416,0.000416,0.001976,0.311739,-0.002392,1.000000,0.000002 +41,2022-08-02 17:00:00,0.000539,0.000002,0.000000,0.000002,0.000022,0.000241,0.000211,0.000265,0.000498,0.000498,0.001945,0.309342,-0.002397,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000600,0.000001,0.000001,0.000001,0.000023,0.000237,0.000207,0.000261,0.000541,0.000541,0.001915,0.307000,-0.002342,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000172,0.000000,0.000000,0.000000,0.000024,0.000234,0.000204,0.000258,0.000489,0.000489,0.001885,0.304325,-0.002676,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000196,0.000000,0.000000,0.000000,0.000025,0.000230,0.000200,0.000255,0.000449,0.000449,0.001855,0.301754,-0.002571,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000075,0.000000,0.000000,0.000000,0.000026,0.000226,0.000197,0.000252,0.000456,0.000456,0.001826,0.299095,-0.002658,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000222,0.000193,0.000250,0.000394,0.000394,0.001796,0.296527,-0.002568,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000219,0.000190,0.000247,0.000287,0.000287,0.001768,0.294104,-0.002423,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000029,0.000215,0.000187,0.000244,0.000157,0.000157,0.001739,0.291909,-0.002195,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000126,0.000001,0.000002,0.000001,0.000030,0.000212,0.000184,0.000243,0.000020,0.000020,0.001712,0.289881,-0.002028,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000133,0.000002,0.000002,0.000002,0.000031,0.000208,0.000182,0.000241,0.000000,0.000000,0.001685,0.287909,-0.001972,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000183,0.000003,0.000005,0.000003,0.000032,0.000205,0.000179,0.000241,0.000000,0.000000,0.001659,0.286016,-0.001894,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000204,0.000005,0.000006,0.000005,0.000033,0.000202,0.000176,0.000240,0.000000,0.000000,0.001634,0.284170,-0.001845,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000200,0.000005,0.000006,0.000005,0.000035,0.000199,0.000174,0.000239,0.000000,0.000000,0.001609,0.282350,-0.001820,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000216,0.000006,0.000006,0.000006,0.000036,0.000196,0.000172,0.000237,0.000000,0.000000,0.001585,0.280572,-0.001778,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000037,0.000193,0.000169,0.000232,0.000000,0.000000,0.001561,0.278616,-0.001956,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000038,0.000190,0.000166,0.000229,0.000000,0.000000,0.001538,0.276690,-0.001926,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000187,0.000164,0.000226,0.000000,0.000000,0.001515,0.274793,-0.001897,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000184,0.000161,0.000224,0.000000,0.000000,0.001492,0.272926,-0.001867,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000181,0.000159,0.000222,0.000000,0.000000,0.001470,0.271087,-0.001839,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000178,0.000156,0.000221,0.000000,0.000000,0.001448,0.269277,-0.001810,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000176,0.000154,0.000219,0.000000,0.000000,0.001426,0.267495,-0.001782,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000173,0.000151,0.000218,0.000107,0.000107,0.001404,0.265635,-0.001860,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000170,0.000149,0.000216,0.000350,0.000350,0.001383,0.263564,-0.002070,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000167,0.000146,0.000215,0.000498,0.000498,0.001361,0.261380,-0.002185,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000165,0.000143,0.000213,0.000607,0.000607,0.001339,0.259121,-0.002258,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000162,0.000140,0.000211,0.000576,0.000576,0.001316,0.256928,-0.002193,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000080,0.000000,0.000000,0.000000,0.000051,0.000159,0.000137,0.000210,0.000501,0.000501,0.001294,0.254922,-0.002007,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000089,0.000000,0.000000,0.000000,0.000052,0.000156,0.000134,0.000208,0.000454,0.000454,0.001272,0.253001,-0.001920,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000100,0.000000,0.000000,0.000000,0.000053,0.000154,0.000132,0.000207,0.000427,0.000427,0.001250,0.251148,-0.001853,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000051,0.000000,0.000000,0.000000,0.000054,0.000151,0.000129,0.000205,0.000344,0.000344,0.001229,0.249356,-0.001792,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000056,0.000148,0.000127,0.000204,0.000264,0.000264,0.001207,0.247623,-0.001733,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000057,0.000146,0.000125,0.000203,0.000169,0.000169,0.001187,0.246011,-0.001612,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000143,0.000123,0.000201,0.000030,0.000030,0.001166,0.244558,-0.001453,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000141,0.000121,0.000200,0.000000,0.000000,0.001147,0.243157,-0.001401,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000138,0.000119,0.000199,0.000000,0.000000,0.001128,0.241777,-0.001380,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000136,0.000117,0.000198,0.000000,0.000000,0.001109,0.240419,-0.001358,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000134,0.000116,0.000197,0.000000,0.000000,0.001091,0.239081,-0.001337,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000132,0.000114,0.000196,0.000000,0.000000,0.001073,0.237764,-0.001317,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000129,0.000112,0.000195,0.000000,0.000000,0.001055,0.236468,-0.001297,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000127,0.000110,0.000194,0.000000,0.000000,0.001038,0.235191,-0.001277,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000125,0.000109,0.000193,0.000000,0.000000,0.001022,0.233934,-0.001257,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000123,0.000107,0.000193,0.000000,0.000000,0.001006,0.232697,-0.001238,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000121,0.000105,0.000192,0.000000,0.000000,0.000990,0.231478,-0.001218,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000119,0.000104,0.000191,0.000000,0.000000,0.000974,0.230278,-0.001200,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000117,0.000102,0.000191,0.000000,0.000000,0.000959,0.229097,-0.001181,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000115,0.000100,0.000190,0.000108,0.000108,0.000943,0.227828,-0.001270,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000114,0.000098,0.000189,0.000350,0.000350,0.000928,0.226339,-0.001489,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000112,0.000096,0.000189,0.000515,0.000515,0.000913,0.224711,-0.001628,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000110,0.000094,0.000188,0.000602,0.000602,0.000897,0.223024,-0.001688,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000108,0.000091,0.000187,0.000676,0.000676,0.000881,0.221289,-0.001735,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000106,0.000089,0.000186,0.000616,0.000616,0.000864,0.219640,-0.001649,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000104,0.000087,0.000186,0.000544,0.000544,0.000848,0.218087,-0.001553,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000102,0.000085,0.000185,0.000503,0.000503,0.000831,0.216599,-0.001488,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000100,0.000083,0.000184,0.000415,0.000415,0.000815,0.215220,-0.001379,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000098,0.000082,0.000183,0.000314,0.000314,0.000799,0.213962,-0.001258,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000096,0.000080,0.000183,0.000177,0.000177,0.000783,0.212858,-0.001104,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000094,0.000079,0.000182,0.000033,0.000033,0.000768,0.211912,-0.000945,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000092,0.000078,0.000182,0.000000,0.000000,0.000754,0.211014,-0.000898,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000090,0.000076,0.000181,0.000000,0.000000,0.000740,0.210130,-0.000884,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000089,0.000075,0.000181,0.000000,0.000000,0.000726,0.209259,-0.000871,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000087,0.000074,0.000181,0.000000,0.000000,0.000713,0.208402,-0.000857,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000085,0.000073,0.000180,0.000000,0.000000,0.000701,0.207558,-0.000844,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000084,0.000072,0.000180,0.000000,0.000000,0.000689,0.206727,-0.000831,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000083,0.000071,0.000180,0.000000,0.000000,0.000677,0.205909,-0.000818,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000081,0.000070,0.000180,0.000000,0.000000,0.000665,0.205103,-0.000806,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000080,0.000069,0.000180,0.000000,0.000000,0.000654,0.204310,-0.000793,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000078,0.000067,0.000180,0.000000,0.000000,0.000643,0.203529,-0.000781,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000077,0.000066,0.000179,0.000000,0.000000,0.000632,0.202760,-0.000769,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000076,0.000065,0.000179,0.000000,0.000000,0.000622,0.202003,-0.000757,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000075,0.000064,0.000179,0.000120,0.000120,0.000612,0.201140,-0.000863,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000073,0.000063,0.000179,0.000359,0.000359,0.000601,0.200055,-0.001085,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000072,0.000061,0.000179,0.000519,0.000519,0.000590,0.198829,-0.001226,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000071,0.000059,0.000179,0.000627,0.000627,0.000579,0.197514,-0.001314,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000069,0.000058,0.000179,0.000601,0.000601,0.000568,0.196246,-0.001268,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000068,0.000056,0.000179,0.000566,0.000566,0.000556,0.195033,-0.001214,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000066,0.000054,0.000179,0.000496,0.000496,0.000544,0.193907,-0.001126,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000065,0.000053,0.000178,0.000492,0.000492,0.000532,0.192801,-0.001105,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000063,0.000052,0.000178,0.000397,0.000397,0.000521,0.191807,-0.000994,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000062,0.000050,0.000178,0.000297,0.000297,0.000509,0.190927,-0.000881,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000061,0.000049,0.000178,0.000170,0.000170,0.000498,0.190185,-0.000742,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000059,0.000049,0.000178,0.000043,0.000043,0.000487,0.189579,-0.000606,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000058,0.000048,0.000178,0.000000,0.000000,0.000477,0.189025,-0.000554,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000057,0.000047,0.000178,0.000000,0.000000,0.000467,0.188480,-0.000545,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000056,0.000046,0.000178,0.000000,0.000000,0.000458,0.187943,-0.000537,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000055,0.000046,0.000178,0.000000,0.000000,0.000449,0.187414,-0.000529,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000054,0.000045,0.000178,0.000000,0.000000,0.000440,0.186893,-0.000521,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000053,0.000044,0.000178,0.000000,0.000000,0.000432,0.186381,-0.000513,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000052,0.000044,0.000179,0.000000,0.000000,0.000424,0.185876,-0.000505,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000051,0.000043,0.000179,0.000000,0.000000,0.000417,0.185379,-0.000497,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000050,0.000042,0.000179,0.000000,0.000000,0.000409,0.184890,-0.000489,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000049,0.000042,0.000179,0.000000,0.000000,0.000402,0.184409,-0.000482,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000048,0.000041,0.000180,0.000000,0.000000,0.000395,0.183934,-0.000474,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000047,0.000040,0.000180,0.000000,0.000000,0.000388,0.183467,-0.000467,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000046,0.000040,0.000180,0.000102,0.000102,0.000381,0.182907,-0.000560,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000045,0.000039,0.000181,0.000329,0.000329,0.000374,0.182132,-0.000775,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000045,0.000037,0.000181,0.000494,0.000494,0.000367,0.181207,-0.000925,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000044,0.000036,0.000181,0.000602,0.000602,0.000359,0.180189,-0.001018,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000043,0.000034,0.000181,0.000659,0.000659,0.000351,0.179131,-0.001058,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000042,0.000033,0.000181,0.000625,0.000625,0.000343,0.178123,-0.001009,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000041,0.000032,0.000182,0.000561,0.000561,0.000334,0.177193,-0.000930,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000039,0.000031,0.000182,0.000505,0.000505,0.000325,0.176333,-0.000860,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000038,0.000030,0.000182,0.000422,0.000422,0.000316,0.175567,-0.000765,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000037,0.000029,0.000182,0.000308,0.000308,0.000308,0.174926,-0.000641,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000036,0.000028,0.000182,0.000169,0.000169,0.000300,0.174432,-0.000494,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000035,0.000028,0.000182,0.000028,0.000028,0.000292,0.174084,-0.000348,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000035,0.000027,0.000182,0.000000,0.000000,0.000285,0.173769,-0.000315,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000034,0.000027,0.000183,0.000000,0.000000,0.000278,0.173458,-0.000310,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000033,0.000026,0.000183,0.000000,0.000000,0.000271,0.173153,-0.000305,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000032,0.000026,0.000183,0.000000,0.000000,0.000265,0.172852,-0.000301,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000031,0.000026,0.000184,0.000000,0.000000,0.000259,0.172556,-0.000296,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000031,0.000025,0.000184,0.000000,0.000000,0.000254,0.172265,-0.000292,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000030,0.000025,0.000184,0.000000,0.000000,0.000248,0.171978,-0.000287,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000029,0.000024,0.000185,0.000000,0.000000,0.000243,0.171695,-0.000283,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000029,0.000024,0.000185,0.000000,0.000000,0.000238,0.171417,-0.000278,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000028,0.000024,0.000186,0.000000,0.000000,0.000234,0.171143,-0.000274,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000028,0.000023,0.000186,0.000000,0.000000,0.000229,0.170873,-0.000270,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000027,0.000023,0.000187,0.000000,0.000000,0.000225,0.170607,-0.000266,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000027,0.000022,0.000187,0.000098,0.000098,0.000221,0.170249,-0.000358,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000026,0.000022,0.000188,0.000340,0.000340,0.000216,0.169658,-0.000591,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000026,0.000021,0.000188,0.000503,0.000503,0.000211,0.168916,-0.000742,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000025,0.000020,0.000189,0.000600,0.000600,0.000206,0.168090,-0.000826,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000024,0.000018,0.000189,0.000624,0.000624,0.000200,0.167253,-0.000837,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000023,0.000017,0.000189,0.000566,0.000566,0.000194,0.166486,-0.000767,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000023,0.000016,0.000190,0.000519,0.000519,0.000188,0.165777,-0.000709,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000022,0.000016,0.000190,0.000472,0.000472,0.000181,0.165125,-0.000652,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000021,0.000015,0.000190,0.000384,0.000384,0.000175,0.164570,-0.000555,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000020,0.000014,0.000190,0.000282,0.000282,0.000168,0.164125,-0.000446,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000020,0.000014,0.000191,0.000133,0.000133,0.000163,0.163832,-0.000292,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000019,0.000014,0.000191,0.000011,0.000011,0.000157,0.163664,-0.000168,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000018,0.000013,0.000191,0.000000,0.000000,0.000152,0.163510,-0.000154,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000018,0.000013,0.000192,0.000000,0.000000,0.000147,0.163358,-0.000152,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000017,0.000013,0.000192,0.000000,0.000000,0.000143,0.163208,-0.000150,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000017,0.000013,0.000193,0.000000,0.000000,0.000139,0.163060,-0.000147,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000016,0.000013,0.000193,0.000000,0.000000,0.000135,0.162915,-0.000145,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000016,0.000012,0.000194,0.000000,0.000000,0.000132,0.162773,-0.000143,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000016,0.000012,0.000194,0.000000,0.000000,0.000128,0.162632,-0.000141,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000015,0.000012,0.000195,0.000000,0.000000,0.000125,0.162493,-0.000139,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000015,0.000012,0.000195,0.000000,0.000000,0.000122,0.162357,-0.000136,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000181,0.000014,0.000012,0.000196,0.000000,0.000000,0.000119,0.162223,-0.000134,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000014,0.000011,0.000196,0.000000,0.000000,0.000117,0.162091,-0.000132,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000183,0.000014,0.000011,0.000197,0.000000,0.000000,0.000114,0.161961,-0.000130,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000184,0.000013,0.000011,0.000198,0.000083,0.000083,0.000111,0.161754,-0.000207,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000013,0.000010,0.000198,0.000328,0.000328,0.000109,0.161306,-0.000448,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000013,0.000010,0.000199,0.000475,0.000475,0.000105,0.160720,-0.000586,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000012,0.000009,0.000199,0.000592,0.000592,0.000102,0.160028,-0.000692,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000012,0.000008,0.000199,0.000618,0.000618,0.000098,0.159321,-0.000707,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000011,0.000007,0.000200,0.000585,0.000585,0.000093,0.158657,-0.000663,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000011,0.000006,0.000200,0.000510,0.000510,0.000088,0.158078,-0.000580,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000010,0.000005,0.000200,0.000488,0.000488,0.000084,0.157529,-0.000549,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000010,0.000005,0.000201,0.000407,0.000407,0.000079,0.157068,-0.000460,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000009,0.000004,0.000201,0.000295,0.000295,0.000074,0.156725,-0.000343,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000008,0.000004,0.000201,0.000149,0.000149,0.000069,0.156531,-0.000194,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000008,0.000004,0.000201,0.000007,0.000007,0.000065,0.156479,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000007,0.000004,0.000202,0.000000,0.000000,0.000062,0.156435,-0.000044,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000007,0.000004,0.000202,0.000000,0.000000,0.000058,0.156392,-0.000043,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000007,0.000004,0.000203,0.000000,0.000000,0.000055,0.156350,-0.000042,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000006,0.000004,0.000203,0.000000,0.000000,0.000053,0.156308,-0.000042,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000006,0.000004,0.000204,0.000000,0.000000,0.000050,0.156267,-0.000041,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000006,0.000003,0.000204,0.000000,0.000000,0.000048,0.156227,-0.000040,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000006,0.000003,0.000205,0.000000,0.000000,0.000046,0.156187,-0.000040,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000005,0.000003,0.000205,0.000000,0.000000,0.000044,0.156147,-0.000039,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000005,0.000003,0.000206,0.000000,0.000000,0.000042,0.156109,-0.000039,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000005,0.000003,0.000206,0.000000,0.000000,0.000040,0.156071,-0.000038,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000005,0.000003,0.000207,0.000000,0.000000,0.000039,0.156033,-0.000037,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000005,0.000003,0.000208,0.000000,0.000000,0.000038,0.155996,-0.000037,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000004,0.000003,0.000208,0.000089,0.000089,0.000036,0.155872,-0.000124,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620679.csv b/test/channel_loss/channel_forcing/et/cat-2620679.csv new file mode 100644 index 000000000..b812e794e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620679.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000813,0.000040,0.000813,0.000192,0.000192,0.007252,0.371763,-0.000305,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000730,0.000037,0.000730,0.000070,0.000070,0.006559,0.371588,-0.000175,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000656,0.000036,0.000656,0.000000,0.000000,0.005939,0.371487,-0.000101,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000591,0.000034,0.000591,0.000000,0.000000,0.005383,0.371390,-0.000097,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000533,0.000033,0.000533,0.000000,0.000000,0.004883,0.371298,-0.000093,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000481,0.000031,0.000481,0.000000,0.000000,0.004433,0.371209,-0.000089,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000435,0.000030,0.000435,0.000000,0.000000,0.004028,0.371124,-0.000085,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000394,0.000029,0.000394,0.000000,0.000000,0.003663,0.371042,-0.000082,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000357,0.000028,0.000357,0.000000,0.000000,0.003334,0.370964,-0.000078,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000324,0.000026,0.000324,0.000000,0.000000,0.003036,0.370889,-0.000075,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000294,0.000025,0.000294,0.000000,0.000000,0.002767,0.370817,-0.000072,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000268,0.000024,0.000268,0.000000,0.000000,0.002524,0.370748,-0.000069,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000244,0.000023,0.000244,0.000000,0.000000,0.002303,0.370682,-0.000066,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000222,0.000000,0.000000,0.002104,0.370618,-0.000063,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000202,0.000019,0.000202,0.000143,0.000143,0.001921,0.370421,-0.000198,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000184,0.000013,0.000184,0.000381,0.000381,0.001750,0.370002,-0.000418,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000167,0.000004,0.000167,0.000575,0.000575,0.001587,0.369415,-0.000587,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000151,0.000000,0.000151,0.000745,0.000745,0.001437,0.368670,-0.000745,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000136,0.000690,0.000688,0.001301,0.367982,-0.000688,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000421,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000123,0.000659,0.000658,0.001178,0.367746,-0.000236,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000517,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000111,0.000600,0.000600,0.001066,0.367663,-0.000082,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000576,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000101,0.000449,0.000449,0.000966,0.367790,0.000127,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000607,0.000001,0.000001,0.000001,0.000000,0.000091,0.000000,0.000092,0.000367,0.000367,0.000875,0.368030,0.000239,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000594,0.000001,0.000002,0.000001,0.000000,0.000082,0.000000,0.000084,0.000273,0.000273,0.000792,0.368349,0.000319,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000585,0.000002,0.000003,0.000002,0.000000,0.000075,0.000000,0.000077,0.000192,0.000192,0.000718,0.368739,0.000390,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000777,0.000005,0.000008,0.000005,0.000000,0.000068,0.000004,0.000074,0.000084,0.000084,0.000654,0.369413,0.000673,1.000000,0.000004 +26,2022-08-02 02:00:00,0.000817,0.000009,0.000011,0.000009,0.000000,0.000063,0.000016,0.000072,0.000000,0.000000,0.000606,0.370174,0.000762,1.000000,0.000007 +27,2022-08-02 03:00:00,0.000818,0.000011,0.000011,0.000011,0.000000,0.000060,0.000027,0.000070,0.000000,0.000000,0.000574,0.370905,0.000731,1.000000,0.000007 +28,2022-08-02 04:00:00,0.000827,0.000011,0.000012,0.000011,0.000000,0.000057,0.000038,0.000069,0.000000,0.000000,0.000554,0.371615,0.000709,1.000000,0.000008 +29,2022-08-02 05:00:00,0.000827,0.000012,0.000012,0.000012,0.000000,0.000057,0.000048,0.000068,0.000000,0.000000,0.000545,0.372294,0.000680,1.000000,0.000008 +30,2022-08-02 06:00:00,0.000827,0.000012,0.000012,0.000012,0.000000,0.000057,0.000058,0.000068,0.000000,0.000000,0.000546,0.372946,0.000652,1.000000,0.000008 +31,2022-08-02 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000000,0.000057,0.000055,0.000062,0.000000,0.000000,0.000545,0.372790,-0.000157,1.000000,0.000002 +32,2022-08-02 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000000,0.000056,0.000053,0.000059,0.000000,0.000000,0.000542,0.372639,-0.000150,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000056,0.000051,0.000056,0.000000,0.000000,0.000537,0.372495,-0.000144,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000055,0.000049,0.000055,0.000000,0.000000,0.000531,0.372357,-0.000138,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000054,0.000047,0.000054,0.000000,0.000000,0.000523,0.372225,-0.000132,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000053,0.000045,0.000054,0.000000,0.000000,0.000515,0.372098,-0.000127,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000052,0.000043,0.000053,0.000000,0.000000,0.000505,0.371976,-0.000122,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000051,0.000039,0.000051,0.000123,0.000123,0.000494,0.371741,-0.000235,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000049,0.000033,0.000050,0.000325,0.000325,0.000477,0.371322,-0.000419,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000047,0.000025,0.000047,0.000493,0.000493,0.000455,0.370760,-0.000563,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000044,0.000014,0.000044,0.000641,0.000641,0.000425,0.370079,-0.000681,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000040,0.000757,0.000757,0.000387,0.369315,-0.000764,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000037,0.000742,0.000742,0.000351,0.368573,-0.000742,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000033,0.000671,0.000670,0.000318,0.367904,-0.000670,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000030,0.000600,0.000597,0.000288,0.367307,-0.000597,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000027,0.000478,0.000474,0.000261,0.366832,-0.000474,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000025,0.000366,0.000362,0.000237,0.366470,-0.000362,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000023,0.000219,0.000216,0.000215,0.366254,-0.000216,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000021,0.000066,0.000065,0.000195,0.366188,-0.000065,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000019,0.000000,0.000000,0.000176,0.366188,0.000000,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000017,0.000000,0.000000,0.000160,0.366188,0.000000,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000015,0.000000,0.000000,0.000145,0.366188,0.000000,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000014,0.000000,0.000000,0.000131,0.366188,0.000000,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000012,0.000000,0.000013,0.000000,0.000000,0.000119,0.366188,0.000000,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000011,0.000000,0.000012,0.000000,0.000000,0.000108,0.366188,0.000000,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000010,0.000000,0.000011,0.000000,0.000000,0.000098,0.366188,0.000000,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000009,0.000000,0.000010,0.000000,0.000000,0.000089,0.366188,0.000000,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000008,0.000000,0.000009,0.000000,0.000000,0.000080,0.366188,0.000000,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000008,0.000000,0.000008,0.000000,0.000000,0.000073,0.366188,0.000000,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000007,0.000000,0.000007,0.000000,0.000000,0.000066,0.366188,0.000000,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000006,0.000000,0.000007,0.000000,0.000000,0.000060,0.366188,0.000000,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000006,0.000000,0.000006,0.000138,0.000136,0.000054,0.366052,-0.000136,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000005,0.000000,0.000006,0.000383,0.000378,0.000049,0.365674,-0.000378,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000005,0.000000,0.000005,0.000576,0.000568,0.000045,0.365107,-0.000568,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000004,0.000000,0.000005,0.000743,0.000731,0.000040,0.364376,-0.000731,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000004,0.000000,0.000004,0.000768,0.000753,0.000037,0.363623,-0.000753,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000003,0.000000,0.000004,0.000736,0.000719,0.000033,0.362904,-0.000719,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000003,0.000000,0.000004,0.000673,0.000655,0.000030,0.362249,-0.000655,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000003,0.000000,0.000004,0.000574,0.000558,0.000027,0.361691,-0.000558,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000003,0.000000,0.000003,0.000477,0.000462,0.000025,0.361229,-0.000462,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000002,0.000000,0.000003,0.000361,0.000349,0.000022,0.360880,-0.000349,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000002,0.000000,0.000003,0.000224,0.000216,0.000020,0.360664,-0.000216,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000002,0.000000,0.000003,0.000080,0.000077,0.000018,0.360586,-0.000077,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000002,0.000000,0.000003,0.000000,0.000000,0.000017,0.360586,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000001,0.000002,0.000000,0.000002,0.000000,0.000000,0.000015,0.360588,0.000002,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000014,0.360588,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000012,0.360588,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000011,0.360588,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000010,0.360588,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000009,0.360588,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000008,0.360588,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000008,0.360588,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000007,0.360588,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000006,0.360588,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000002,0.000000,0.000000,0.000006,0.360588,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000001,0.000000,0.000001,0.000132,0.000128,0.000005,0.360460,-0.000128,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000374,0.000361,0.000005,0.360100,-0.000361,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000570,0.000549,0.000004,0.359551,-0.000549,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000746,0.000716,0.000004,0.358835,-0.000716,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000875,0.000837,0.000003,0.357997,-0.000837,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000858,0.000819,0.000003,0.357178,-0.000819,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000756,0.000719,0.000003,0.356460,-0.000719,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000633,0.000600,0.000003,0.355860,-0.000600,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000509,0.000481,0.000002,0.355380,-0.000481,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000391,0.000368,0.000002,0.355011,-0.000368,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000229,0.000215,0.000002,0.354796,-0.000215,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000086,0.000081,0.000002,0.354715,-0.000081,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000002,0.354715,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.354715,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000149,0.000140,0.000000,0.354575,-0.000140,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000384,0.000361,0.000000,0.354213,-0.000361,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000578,0.000542,0.000000,0.353671,-0.000542,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000751,0.000703,0.000000,0.352968,-0.000703,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000792,0.000740,0.000000,0.352228,-0.000740,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000765,0.000712,0.000000,0.351517,-0.000712,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000684,0.000634,0.000000,0.350883,-0.000634,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000586,0.000542,0.000000,0.350341,-0.000542,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000475,0.000438,0.000000,0.349903,-0.000438,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000361,0.000332,0.000000,0.349571,-0.000332,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000215,0.000198,0.000000,0.349373,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000084,0.000077,0.000000,0.349296,-0.000077,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.349296,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000128,0.000118,0.000000,0.349178,-0.000118,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000370,0.000340,0.000000,0.348838,-0.000340,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000568,0.000521,0.000000,0.348318,-0.000521,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000745,0.000681,0.000000,0.347637,-0.000681,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000876,0.000798,0.000000,0.346839,-0.000798,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000860,0.000781,0.000000,0.346058,-0.000781,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000000,0.000000,0.000001,0.000786,0.000711,0.000000,0.345347,-0.000711,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000641,0.000578,0.000000,0.344769,-0.000578,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000517,0.000465,0.000000,0.344304,-0.000465,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000392,0.000351,0.000000,0.343952,-0.000351,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000227,0.000203,0.000000,0.343749,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000078,0.000070,0.000000,0.343679,-0.000070,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.343679,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000126,0.000113,0.000000,0.343566,-0.000113,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000360,0.000322,0.000000,0.343243,-0.000322,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000554,0.000494,0.000000,0.342749,-0.000494,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000720,0.000641,0.000000,0.342108,-0.000641,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000800,0.000711,0.000000,0.341397,-0.000711,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000786,0.000696,0.000000,0.340701,-0.000696,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000714,0.000630,0.000000,0.340071,-0.000630,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000586,0.000515,0.000000,0.339556,-0.000515,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000470,0.000413,0.000000,0.339143,-0.000413,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000363,0.000318,0.000000,0.338825,-0.000318,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000192,0.000168,0.000000,0.338656,-0.000168,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000037,0.000033,0.000000,0.338624,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338624,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338625,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338626,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338627,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338628,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.338628,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000107,0.000093,0.000000,0.338534,-0.000093,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000349,0.000305,0.000000,0.338229,-0.000305,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000550,0.000480,0.000000,0.337749,-0.000480,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000724,0.000630,0.000000,0.337119,-0.000630,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000851,0.000739,0.000000,0.336381,-0.000739,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000834,0.000721,0.000000,0.335660,-0.000721,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000048,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000752,0.000655,0.000000,0.335053,-0.000607,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000646,0.000555,0.000000,0.334497,-0.000555,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000517,0.000443,0.000000,0.334055,-0.000443,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000393,0.000336,0.000000,0.333719,-0.000336,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000216,0.000184,0.000000,0.333534,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000060,0.000051,0.000000,0.333484,-0.000051,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000000,0.000000,0.000000,0.333484,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000000,0.000000,0.000002,0.000119,0.000101,0.000000,0.333382,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620680.csv b/test/channel_loss/channel_forcing/et/cat-2620680.csv new file mode 100644 index 000000000..cb9eb3ba4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620680.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000815,0.000067,0.000815,0.000196,0.000196,0.009010,0.376736,-0.001722,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000065,0.000748,0.000070,0.000070,0.008327,0.375177,-0.001559,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000063,0.000688,0.000000,0.000000,0.007702,0.373724,-0.001453,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000634,0.000062,0.000634,0.000000,0.000000,0.007130,0.372305,-0.001419,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000061,0.000584,0.000000,0.000000,0.006606,0.370919,-0.001386,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000539,0.000059,0.000540,0.000000,0.000000,0.006126,0.369566,-0.001353,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000499,0.000058,0.000499,0.000000,0.000000,0.005685,0.368246,-0.001321,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000461,0.000056,0.000462,0.000000,0.000000,0.005280,0.366956,-0.001290,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000427,0.000055,0.000428,0.000000,0.000000,0.004908,0.365696,-0.001259,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000396,0.000054,0.000397,0.000000,0.000000,0.004565,0.364467,-0.001230,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000368,0.000052,0.000368,0.000000,0.000000,0.004250,0.363266,-0.001201,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000342,0.000051,0.000342,0.000000,0.000000,0.003960,0.362094,-0.001172,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000318,0.000050,0.000319,0.000000,0.000000,0.003692,0.360949,-0.001145,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000296,0.000049,0.000297,0.000000,0.000000,0.003445,0.359831,-0.001118,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000276,0.000048,0.000277,0.000142,0.000142,0.003216,0.358601,-0.001230,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000257,0.000046,0.000258,0.000385,0.000385,0.003005,0.357164,-0.001438,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000240,0.000044,0.000241,0.000582,0.000582,0.002810,0.355567,-0.001596,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000224,0.000042,0.000226,0.000753,0.000753,0.002628,0.353842,-0.001726,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000209,0.000041,0.000211,0.000696,0.000696,0.002459,0.352212,-0.001630,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000441,0.000000,0.000000,0.000000,0.000002,0.000196,0.000040,0.000198,0.000675,0.000675,0.002303,0.351072,-0.001140,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000574,0.000000,0.000000,0.000000,0.000002,0.000183,0.000039,0.000185,0.000605,0.000605,0.002159,0.350156,-0.000915,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000664,0.000002,0.000003,0.000002,0.000002,0.000172,0.000038,0.000176,0.000452,0.000452,0.002025,0.349497,-0.000659,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000732,0.000006,0.000010,0.000006,0.000002,0.000161,0.000037,0.000170,0.000374,0.000374,0.001901,0.348990,-0.000507,1.000000,0.000005 +23,2022-08-01 23:00:00,0.000651,0.000009,0.000011,0.000009,0.000003,0.000151,0.000037,0.000163,0.000272,0.000272,0.001787,0.348514,-0.000476,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000611,0.000012,0.000013,0.000012,0.000003,0.000142,0.000036,0.000157,0.000194,0.000194,0.001681,0.348085,-0.000430,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000859,0.000029,0.000043,0.000029,0.000003,0.000134,0.000036,0.000166,0.000086,0.000086,0.001584,0.347983,-0.000102,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000969,0.000050,0.000067,0.000050,0.000003,0.000126,0.000036,0.000179,0.000000,0.000000,0.001494,0.348052,0.000069,1.000000,0.000039 +27,2022-08-02 03:00:00,0.000982,0.000063,0.000068,0.000063,0.000004,0.000119,0.000036,0.000185,0.000000,0.000000,0.001411,0.348130,0.000079,1.000000,0.000044 +28,2022-08-02 04:00:00,0.000988,0.000069,0.000069,0.000069,0.000004,0.000113,0.000037,0.000185,0.000000,0.000000,0.001336,0.348213,0.000082,1.000000,0.000045 +29,2022-08-02 05:00:00,0.000988,0.000069,0.000069,0.000069,0.000004,0.000107,0.000037,0.000180,0.000000,0.000000,0.001266,0.348293,0.000080,1.000000,0.000045 +30,2022-08-02 06:00:00,0.000988,0.000069,0.000069,0.000069,0.000004,0.000101,0.000037,0.000175,0.000000,0.000000,0.001201,0.348371,0.000078,1.000000,0.000045 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000005,0.000096,0.000036,0.000132,0.000000,0.000000,0.001141,0.347550,-0.000821,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000005,0.000091,0.000035,0.000110,0.000000,0.000000,0.001085,0.346748,-0.000802,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000087,0.000034,0.000092,0.000000,0.000000,0.001032,0.345965,-0.000783,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000083,0.000033,0.000088,0.000000,0.000000,0.000983,0.345201,-0.000764,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000079,0.000033,0.000084,0.000000,0.000000,0.000937,0.344455,-0.000746,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000075,0.000032,0.000081,0.000000,0.000000,0.000894,0.343726,-0.000729,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000072,0.000031,0.000078,0.000000,0.000000,0.000853,0.343015,-0.000711,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000068,0.000030,0.000075,0.000122,0.000122,0.000815,0.342201,-0.000814,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000065,0.000029,0.000072,0.000328,0.000328,0.000779,0.341205,-0.000996,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000062,0.000028,0.000070,0.000494,0.000494,0.000745,0.340071,-0.001134,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000060,0.000027,0.000067,0.000640,0.000640,0.000712,0.338821,-0.001250,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000057,0.000025,0.000065,0.000761,0.000761,0.000680,0.337482,-0.001339,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000054,0.000024,0.000062,0.000743,0.000743,0.000649,0.336192,-0.001289,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000052,0.000023,0.000060,0.000677,0.000677,0.000620,0.334997,-0.001195,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000050,0.000021,0.000058,0.000606,0.000606,0.000592,0.333900,-0.001097,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000047,0.000020,0.000056,0.000484,0.000484,0.000565,0.332948,-0.000953,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000045,0.000020,0.000054,0.000368,0.000368,0.000540,0.332131,-0.000817,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000043,0.000019,0.000053,0.000221,0.000221,0.000515,0.331477,-0.000654,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000041,0.000018,0.000051,0.000067,0.000067,0.000493,0.330989,-0.000488,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000039,0.000018,0.000050,0.000000,0.000000,0.000471,0.330577,-0.000411,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000038,0.000018,0.000048,0.000000,0.000000,0.000451,0.330176,-0.000401,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000036,0.000017,0.000047,0.000000,0.000000,0.000432,0.329784,-0.000392,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000035,0.000017,0.000046,0.000000,0.000000,0.000414,0.329402,-0.000383,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000033,0.000016,0.000045,0.000000,0.000000,0.000397,0.329028,-0.000374,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000032,0.000016,0.000044,0.000000,0.000000,0.000381,0.328663,-0.000365,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000031,0.000016,0.000043,0.000000,0.000000,0.000366,0.328307,-0.000356,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000029,0.000015,0.000042,0.000000,0.000000,0.000352,0.327959,-0.000348,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000028,0.000015,0.000041,0.000000,0.000000,0.000339,0.327620,-0.000340,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000027,0.000014,0.000040,0.000000,0.000000,0.000326,0.327288,-0.000332,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000014,0.000040,0.000000,0.000000,0.000314,0.326964,-0.000324,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000014,0.000039,0.000000,0.000000,0.000302,0.326648,-0.000316,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000024,0.000013,0.000039,0.000138,0.000138,0.000291,0.326205,-0.000443,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000023,0.000013,0.000038,0.000387,0.000387,0.000281,0.325529,-0.000676,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000023,0.000012,0.000038,0.000583,0.000583,0.000270,0.324677,-0.000852,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000011,0.000037,0.000750,0.000750,0.000259,0.323682,-0.000995,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000021,0.000010,0.000036,0.000784,0.000784,0.000248,0.322678,-0.001005,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000020,0.000009,0.000036,0.000747,0.000747,0.000237,0.321734,-0.000944,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000019,0.000008,0.000035,0.000685,0.000685,0.000226,0.320872,-0.000862,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000018,0.000007,0.000035,0.000585,0.000585,0.000215,0.320128,-0.000744,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000017,0.000006,0.000034,0.000487,0.000487,0.000204,0.319498,-0.000630,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000016,0.000006,0.000034,0.000366,0.000366,0.000193,0.319001,-0.000497,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000005,0.000033,0.000227,0.000227,0.000184,0.318651,-0.000350,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000005,0.000033,0.000081,0.000081,0.000174,0.318452,-0.000199,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000005,0.000032,0.000000,0.000000,0.000165,0.318337,-0.000115,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000005,0.000032,0.000000,0.000000,0.000157,0.318224,-0.000113,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000005,0.000032,0.000000,0.000000,0.000150,0.318114,-0.000110,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000005,0.000031,0.000000,0.000000,0.000142,0.318007,-0.000107,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000005,0.000031,0.000000,0.000000,0.000136,0.317902,-0.000105,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000004,0.000031,0.000000,0.000000,0.000129,0.317799,-0.000102,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000010,0.000004,0.000031,0.000000,0.000000,0.000123,0.317699,-0.000100,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000004,0.000031,0.000000,0.000000,0.000118,0.317602,-0.000098,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000030,0.000000,0.000000,0.000113,0.317506,-0.000095,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000030,0.000000,0.000000,0.000108,0.317413,-0.000093,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000009,0.000004,0.000030,0.000000,0.000000,0.000103,0.317323,-0.000091,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000004,0.000030,0.000000,0.000000,0.000099,0.317234,-0.000089,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000004,0.000030,0.000133,0.000133,0.000095,0.317018,-0.000216,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000003,0.000030,0.000379,0.000379,0.000090,0.316566,-0.000452,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000003,0.000030,0.000576,0.000576,0.000086,0.315933,-0.000633,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000002,0.000030,0.000754,0.000754,0.000081,0.315141,-0.000792,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000001,0.000030,0.000886,0.000886,0.000075,0.314238,-0.000902,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000030,0.000873,0.000873,0.000069,0.313366,-0.000873,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000030,0.000770,0.000769,0.000064,0.312597,-0.000769,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000029,0.000637,0.000634,0.000059,0.311963,-0.000634,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000029,0.000519,0.000514,0.000054,0.311449,-0.000514,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000396,0.000392,0.000050,0.311057,-0.000392,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000232,0.000229,0.000046,0.310828,-0.000229,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000029,0.000088,0.000087,0.000043,0.310741,-0.000087,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000040,0.310741,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000037,0.310741,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000029,0.000000,0.000000,0.000034,0.310741,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000029,0.000000,0.000000,0.000031,0.310741,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000030,0.000000,0.000000,0.000029,0.310741,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000030,0.000000,0.000000,0.000027,0.310741,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000024,0.310741,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000023,0.310741,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000021,0.310741,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000030,0.000000,0.000000,0.000019,0.310741,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000000,0.000000,0.000018,0.310741,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000031,0.000000,0.000000,0.000016,0.310741,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000031,0.000149,0.000147,0.000015,0.310594,-0.000147,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000391,0.000385,0.000014,0.310210,-0.000385,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000586,0.000575,0.000013,0.309635,-0.000575,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000760,0.000744,0.000012,0.308891,-0.000744,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000031,0.000800,0.000779,0.000011,0.308112,-0.000779,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000768,0.000745,0.000010,0.307367,-0.000745,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000678,0.000655,0.000009,0.306711,-0.000655,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000578,0.000557,0.000009,0.306154,-0.000557,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000032,0.000482,0.000462,0.000008,0.305692,-0.000462,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000032,0.000353,0.000338,0.000007,0.305354,-0.000338,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000216,0.000206,0.000007,0.305147,-0.000206,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000084,0.000081,0.000006,0.305067,-0.000081,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000006,0.305067,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.305067,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000005,0.305067,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000005,0.305067,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.305067,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.305067,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.305067,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.305067,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.305067,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.305067,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.305067,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000002,0.305067,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000128,0.000122,0.000002,0.304945,-0.000122,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000375,0.000358,0.000002,0.304587,-0.000358,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000574,0.000547,0.000002,0.304040,-0.000547,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000750,0.000712,0.000002,0.303329,-0.000712,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000037,0.000890,0.000840,0.000002,0.302488,-0.000840,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000869,0.000817,0.000001,0.301671,-0.000817,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000792,0.000741,0.000001,0.300930,-0.000741,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000641,0.000597,0.000001,0.300333,-0.000597,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000523,0.000485,0.000001,0.299848,-0.000485,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000394,0.000365,0.000001,0.299483,-0.000365,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000228,0.000211,0.000001,0.299272,-0.000211,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000079,0.000072,0.000001,0.299200,-0.000072,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.299200,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.299200,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.299200,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.299200,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.299200,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.299200,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000126,0.000116,0.000000,0.299083,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000365,0.000336,0.000000,0.298747,-0.000336,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000564,0.000519,0.000000,0.298228,-0.000519,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000728,0.000668,0.000000,0.297560,-0.000668,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000817,0.000747,0.000000,0.296814,-0.000747,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000042,0.000805,0.000732,0.000000,0.296082,-0.000732,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000721,0.000653,0.000000,0.295429,-0.000653,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000598,0.000540,0.000000,0.294889,-0.000540,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000478,0.000430,0.000000,0.294459,-0.000430,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000371,0.000332,0.000000,0.294127,-0.000332,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000195,0.000175,0.000000,0.293952,-0.000175,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000038,0.000034,0.000000,0.293918,-0.000034,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.293918,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000107,0.000095,0.000000,0.293822,-0.000095,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000353,0.000315,0.000000,0.293507,-0.000315,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000560,0.000500,0.000000,0.293007,-0.000500,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000731,0.000649,0.000000,0.292358,-0.000649,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000862,0.000763,0.000000,0.291595,-0.000763,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000845,0.000744,0.000000,0.290851,-0.000744,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000764,0.000672,0.000000,0.290195,-0.000655,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000650,0.000568,0.000000,0.289628,-0.000568,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000521,0.000454,0.000000,0.289174,-0.000454,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000399,0.000346,0.000000,0.288828,-0.000346,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000220,0.000190,0.000000,0.288637,-0.000190,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000060,0.000052,0.000000,0.288585,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.288585,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000118,0.000102,0.000000,0.288483,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620681.csv b/test/channel_loss/channel_forcing/et/cat-2620681.csv new file mode 100644 index 000000000..36959ea70 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620681.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000812,0.000030,0.000812,0.000199,0.000199,0.008980,0.378097,-0.000608,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000742,0.000029,0.000742,0.000071,0.000071,0.008267,0.377630,-0.000467,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000680,0.000029,0.000680,0.000000,0.000000,0.007615,0.377244,-0.000385,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000623,0.000028,0.000623,0.000000,0.000000,0.007020,0.376870,-0.000375,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000572,0.000027,0.000572,0.000000,0.000000,0.006475,0.376505,-0.000365,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000525,0.000026,0.000525,0.000000,0.000000,0.005976,0.376151,-0.000355,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000483,0.000026,0.000483,0.000000,0.000000,0.005518,0.375806,-0.000345,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000445,0.000025,0.000445,0.000000,0.000000,0.005099,0.375470,-0.000335,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000410,0.000024,0.000410,0.000000,0.000000,0.004713,0.375144,-0.000326,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000378,0.000023,0.000378,0.000000,0.000000,0.004359,0.374827,-0.000317,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000348,0.000023,0.000348,0.000000,0.000000,0.004034,0.374519,-0.000309,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000322,0.000022,0.000322,0.000000,0.000000,0.003734,0.374219,-0.000300,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000297,0.000022,0.000297,0.000000,0.000000,0.003459,0.373927,-0.000292,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000275,0.000021,0.000275,0.000000,0.000000,0.003205,0.373643,-0.000284,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000254,0.000020,0.000254,0.000141,0.000141,0.002971,0.373230,-0.000413,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000235,0.000386,0.000386,0.002755,0.372590,-0.000640,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000218,0.000581,0.000581,0.002555,0.371777,-0.000812,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000201,0.000015,0.000202,0.000748,0.000748,0.002368,0.370825,-0.000952,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000186,0.000013,0.000187,0.000692,0.000692,0.002195,0.369953,-0.000872,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000506,0.000000,0.000000,0.000000,0.000000,0.000173,0.000013,0.000173,0.000687,0.000687,0.002035,0.369602,-0.000351,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000639,0.000000,0.000000,0.000000,0.000001,0.000160,0.000012,0.000160,0.000603,0.000603,0.001888,0.369472,-0.000131,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000537,0.000000,0.000000,0.000000,0.000001,0.000148,0.000012,0.000149,0.000449,0.000449,0.001752,0.369396,-0.000076,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000626,0.000002,0.000003,0.000002,0.000001,0.000137,0.000012,0.000140,0.000378,0.000378,0.001627,0.369475,0.000079,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000506,0.000002,0.000002,0.000002,0.000001,0.000128,0.000012,0.000130,0.000276,0.000276,0.001512,0.369535,0.000060,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000604,0.000005,0.000007,0.000005,0.000001,0.000119,0.000013,0.000124,0.000196,0.000196,0.001406,0.369762,0.000227,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000706,0.000011,0.000016,0.000011,0.000001,0.000110,0.000014,0.000122,0.000089,0.000089,0.001309,0.370177,0.000415,1.000000,0.000009 +26,2022-08-02 02:00:00,0.000893,0.000024,0.000033,0.000024,0.000001,0.000103,0.000015,0.000127,0.000000,0.000000,0.001222,0.370832,0.000656,1.000000,0.000018 +27,2022-08-02 03:00:00,0.000893,0.000030,0.000033,0.000030,0.000001,0.000096,0.000016,0.000127,0.000000,0.000000,0.001142,0.371469,0.000637,1.000000,0.000022 +28,2022-08-02 04:00:00,0.000908,0.000034,0.000034,0.000034,0.000001,0.000090,0.000018,0.000125,0.000000,0.000000,0.001070,0.372103,0.000634,1.000000,0.000022 +29,2022-08-02 05:00:00,0.000912,0.000034,0.000035,0.000034,0.000001,0.000084,0.000019,0.000120,0.000000,0.000000,0.001005,0.372722,0.000619,1.000000,0.000022 +30,2022-08-02 06:00:00,0.000919,0.000035,0.000035,0.000035,0.000001,0.000079,0.000020,0.000115,0.000000,0.000000,0.000946,0.373330,0.000609,1.000000,0.000023 +31,2022-08-02 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000001,0.000075,0.000020,0.000092,0.000000,0.000000,0.000891,0.373063,-0.000267,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000001,0.000070,0.000019,0.000079,0.000000,0.000000,0.000840,0.372803,-0.000260,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000066,0.000019,0.000068,0.000000,0.000000,0.000792,0.372550,-0.000253,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000063,0.000018,0.000064,0.000000,0.000000,0.000747,0.372304,-0.000246,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000059,0.000018,0.000061,0.000000,0.000000,0.000706,0.372064,-0.000239,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000056,0.000017,0.000057,0.000000,0.000000,0.000667,0.371832,-0.000233,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000053,0.000017,0.000054,0.000000,0.000000,0.000631,0.371605,-0.000226,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000050,0.000016,0.000052,0.000122,0.000122,0.000597,0.371266,-0.000339,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000047,0.000015,0.000049,0.000332,0.000332,0.000565,0.370733,-0.000534,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000045,0.000014,0.000046,0.000494,0.000494,0.000534,0.370056,-0.000676,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000042,0.000012,0.000044,0.000634,0.000634,0.000504,0.369262,-0.000794,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000040,0.000010,0.000042,0.000756,0.000756,0.000474,0.368370,-0.000892,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000037,0.000008,0.000039,0.000728,0.000728,0.000445,0.367531,-0.000840,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000035,0.000007,0.000037,0.000675,0.000675,0.000417,0.366766,-0.000765,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000033,0.000005,0.000035,0.000603,0.000603,0.000390,0.366091,-0.000674,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000030,0.000004,0.000033,0.000487,0.000487,0.000363,0.365549,-0.000543,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000028,0.000003,0.000031,0.000369,0.000369,0.000338,0.365136,-0.000413,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000026,0.000003,0.000029,0.000222,0.000222,0.000315,0.364877,-0.000259,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000024,0.000003,0.000027,0.000068,0.000068,0.000293,0.364776,-0.000101,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000023,0.000002,0.000025,0.000000,0.000000,0.000273,0.364743,-0.000033,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000021,0.000002,0.000024,0.000000,0.000000,0.000254,0.364711,-0.000032,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000020,0.000002,0.000022,0.000000,0.000000,0.000236,0.364680,-0.000031,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000018,0.000002,0.000021,0.000000,0.000000,0.000220,0.364649,-0.000030,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000017,0.000002,0.000020,0.000000,0.000000,0.000205,0.364620,-0.000029,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000016,0.000002,0.000019,0.000000,0.000000,0.000191,0.364591,-0.000029,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000015,0.000002,0.000018,0.000000,0.000000,0.000179,0.364564,-0.000028,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000014,0.000002,0.000017,0.000000,0.000000,0.000167,0.364536,-0.000027,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000013,0.000002,0.000016,0.000000,0.000000,0.000156,0.364510,-0.000026,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000012,0.000002,0.000015,0.000000,0.000000,0.000145,0.364484,-0.000026,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000011,0.000002,0.000015,0.000000,0.000000,0.000136,0.364460,-0.000025,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000011,0.000002,0.000014,0.000000,0.000000,0.000127,0.364435,-0.000024,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000010,0.000001,0.000013,0.000137,0.000137,0.000119,0.364278,-0.000157,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000009,0.000001,0.000013,0.000390,0.000390,0.000110,0.363879,-0.000399,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000008,0.000000,0.000012,0.000584,0.000584,0.000102,0.363296,-0.000584,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000008,0.000000,0.000012,0.000746,0.000745,0.000094,0.362550,-0.000745,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000007,0.000000,0.000011,0.000792,0.000789,0.000087,0.361762,-0.000789,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000007,0.000000,0.000011,0.000759,0.000753,0.000080,0.361009,-0.000753,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000006,0.000000,0.000010,0.000687,0.000680,0.000074,0.360330,-0.000680,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000006,0.000000,0.000010,0.000594,0.000586,0.000068,0.359744,-0.000586,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000005,0.000000,0.000009,0.000497,0.000488,0.000063,0.359255,-0.000488,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000005,0.000000,0.000009,0.000370,0.000363,0.000058,0.358892,-0.000363,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000009,0.000229,0.000224,0.000054,0.358668,-0.000224,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000082,0.000080,0.000050,0.358588,-0.000080,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000000,0.000000,0.000046,0.358588,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000000,0.000000,0.000042,0.358588,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000003,0.000000,0.000008,0.000000,0.000000,0.000039,0.358588,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000003,0.000000,0.000008,0.000000,0.000000,0.000036,0.358588,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000003,0.000000,0.000007,0.000000,0.000000,0.000033,0.358588,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000003,0.000000,0.000007,0.000000,0.000000,0.000031,0.358588,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000028,0.358588,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000026,0.358588,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000024,0.358588,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000022,0.358588,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000021,0.358588,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000007,0.000000,0.000000,0.000019,0.358588,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000007,0.000133,0.000130,0.000018,0.358458,-0.000130,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000007,0.000383,0.000375,0.000016,0.358083,-0.000375,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000007,0.000576,0.000563,0.000015,0.357520,-0.000563,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000007,0.000753,0.000734,0.000014,0.356786,-0.000734,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000886,0.000861,0.000013,0.355926,-0.000861,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000874,0.000846,0.000012,0.355080,-0.000846,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000774,0.000746,0.000011,0.354333,-0.000746,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000632,0.000607,0.000010,0.353727,-0.000607,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000525,0.000503,0.000009,0.353224,-0.000503,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000399,0.000382,0.000009,0.352842,-0.000382,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000233,0.000223,0.000008,0.352619,-0.000223,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000090,0.000085,0.000007,0.352534,-0.000085,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000006,0.000000,0.000000,0.000007,0.352534,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000001,0.000000,0.000007,0.000000,0.000000,0.000006,0.352534,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000006,0.352534,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000005,0.352534,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000005,0.352534,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000004,0.352534,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000004,0.352534,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000004,0.352534,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000004,0.352534,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000003,0.352534,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000003,0.352534,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000003,0.352534,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000149,0.000142,0.000003,0.352391,-0.000142,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000396,0.000377,0.000002,0.352015,-0.000377,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000588,0.000559,0.000002,0.351456,-0.000559,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000758,0.000719,0.000002,0.350736,-0.000719,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000797,0.000753,0.000002,0.349983,-0.000753,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000769,0.000725,0.000002,0.349258,-0.000725,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000657,0.000617,0.000002,0.348642,-0.000617,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000566,0.000530,0.000001,0.348111,-0.000530,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000481,0.000450,0.000001,0.347662,-0.000450,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000340,0.000317,0.000001,0.347345,-0.000317,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000215,0.000200,0.000001,0.347145,-0.000200,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000085,0.000079,0.000001,0.347066,-0.000079,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000008,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000001,0.347066,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.347066,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.347066,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.347066,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000126,0.000117,0.000000,0.346950,-0.000116,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000378,0.000352,0.000000,0.346599,-0.000351,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000575,0.000534,0.000000,0.346065,-0.000534,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000742,0.000687,0.000000,0.345378,-0.000687,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000892,0.000823,0.000000,0.344555,-0.000823,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000866,0.000796,0.000000,0.343758,-0.000796,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000786,0.000720,0.000000,0.343039,-0.000720,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000634,0.000579,0.000000,0.342460,-0.000579,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000526,0.000479,0.000000,0.341980,-0.000479,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000396,0.000359,0.000000,0.341621,-0.000359,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000228,0.000207,0.000000,0.341414,-0.000207,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000078,0.000071,0.000000,0.341343,-0.000071,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.341343,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000126,0.000114,0.000000,0.341229,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000367,0.000332,0.000000,0.340897,-0.000332,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000570,0.000515,0.000000,0.340381,-0.000515,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000730,0.000658,0.000000,0.339723,-0.000658,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000834,0.000750,0.000000,0.338974,-0.000750,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000815,0.000730,0.000000,0.338244,-0.000730,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000723,0.000645,0.000000,0.337598,-0.000645,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000610,0.000543,0.000000,0.337055,-0.000543,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000490,0.000434,0.000000,0.336621,-0.000434,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000378,0.000335,0.000000,0.336286,-0.000335,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000199,0.000176,0.000000,0.336110,-0.000176,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000039,0.000035,0.000000,0.336076,-0.000035,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336076,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336078,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.336078,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000106,0.000094,0.000000,0.335986,-0.000092,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000354,0.000312,0.000000,0.335673,-0.000312,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000566,0.000499,0.000000,0.335174,-0.000499,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000730,0.000642,0.000000,0.334532,-0.000642,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000863,0.000757,0.000000,0.333776,-0.000757,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000852,0.000744,0.000000,0.333032,-0.000744,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000765,0.000666,0.000000,0.332366,-0.000666,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000648,0.000562,0.000000,0.331804,-0.000562,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000524,0.000454,0.000000,0.331351,-0.000454,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000404,0.000348,0.000000,0.331003,-0.000348,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000224,0.000193,0.000000,0.330810,-0.000193,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000061,0.000053,0.000000,0.330757,-0.000053,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.330757,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000117,0.000101,0.000000,0.330656,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620682.csv b/test/channel_loss/channel_forcing/et/cat-2620682.csv new file mode 100644 index 000000000..45aa5c87a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620682.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000042,0.000000,0.000000,0.000000,0.000000,0.000814,0.000055,0.000814,0.000197,0.000197,0.009002,0.377122,-0.001240,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000747,0.000054,0.000747,0.000070,0.000070,0.008310,0.375995,-0.001127,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000686,0.000053,0.000686,0.000000,0.000000,0.007677,0.374964,-0.001030,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000630,0.000051,0.000630,0.000000,0.000000,0.007097,0.373960,-0.001005,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000580,0.000050,0.000581,0.000000,0.000000,0.006567,0.372980,-0.000980,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000535,0.000049,0.000535,0.000000,0.000000,0.006081,0.372025,-0.000955,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000494,0.000047,0.000494,0.000000,0.000000,0.005634,0.371094,-0.000931,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000456,0.000046,0.000456,0.000000,0.000000,0.005224,0.370185,-0.000908,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000422,0.000045,0.000422,0.000000,0.000000,0.004848,0.369300,-0.000885,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000390,0.000044,0.000391,0.000000,0.000000,0.004502,0.368437,-0.000863,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000362,0.000043,0.000362,0.000000,0.000000,0.004183,0.367595,-0.000842,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000335,0.000042,0.000336,0.000000,0.000000,0.003889,0.366774,-0.000821,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000311,0.000041,0.000312,0.000000,0.000000,0.003619,0.365974,-0.000800,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000289,0.000040,0.000290,0.000000,0.000000,0.003369,0.365194,-0.000780,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000269,0.000039,0.000270,0.000146,0.000146,0.003139,0.364291,-0.000903,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000250,0.000037,0.000251,0.000392,0.000392,0.002926,0.363171,-0.001120,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000233,0.000035,0.000234,0.000572,0.000572,0.002729,0.361902,-0.001268,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000217,0.000034,0.000218,0.000723,0.000723,0.002546,0.360519,-0.001384,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000202,0.000032,0.000203,0.000660,0.000660,0.002376,0.359231,-0.001288,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000560,0.000000,0.000000,0.000000,0.000001,0.000188,0.000031,0.000190,0.000645,0.000645,0.002218,0.358537,-0.000694,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000633,0.000000,0.000000,0.000000,0.000001,0.000176,0.000030,0.000177,0.000566,0.000566,0.002073,0.358007,-0.000530,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000659,0.000002,0.000003,0.000002,0.000002,0.000164,0.000030,0.000168,0.000429,0.000429,0.001939,0.357647,-0.000361,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000731,0.000005,0.000008,0.000005,0.000002,0.000154,0.000030,0.000161,0.000366,0.000366,0.001815,0.357422,-0.000224,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000697,0.000008,0.000011,0.000008,0.000002,0.000144,0.000029,0.000154,0.000279,0.000279,0.001700,0.357254,-0.000169,1.000000,0.000006 +24,2022-08-02 00:00:00,0.000698,0.000013,0.000015,0.000013,0.000002,0.000135,0.000029,0.000149,0.000190,0.000190,0.001595,0.357171,-0.000083,1.000000,0.000009 +25,2022-08-02 01:00:00,0.000903,0.000027,0.000039,0.000027,0.000002,0.000126,0.000030,0.000156,0.000086,0.000086,0.001498,0.357369,0.000198,1.000000,0.000021 +26,2022-08-02 02:00:00,0.000906,0.000039,0.000048,0.000039,0.000002,0.000119,0.000030,0.000160,0.000000,0.000000,0.001409,0.357640,0.000271,1.000000,0.000029 +27,2022-08-02 03:00:00,0.000896,0.000046,0.000047,0.000046,0.000003,0.000112,0.000030,0.000160,0.000000,0.000000,0.001328,0.357896,0.000256,1.000000,0.000031 +28,2022-08-02 04:00:00,0.000898,0.000047,0.000047,0.000047,0.000003,0.000105,0.000031,0.000155,0.000000,0.000000,0.001253,0.358147,0.000251,1.000000,0.000031 +29,2022-08-02 05:00:00,0.000924,0.000049,0.000050,0.000049,0.000003,0.000100,0.000031,0.000151,0.000000,0.000000,0.001184,0.358415,0.000267,1.000000,0.000032 +30,2022-08-02 06:00:00,0.000940,0.000050,0.000052,0.000050,0.000003,0.000094,0.000031,0.000148,0.000000,0.000000,0.001121,0.358690,0.000275,1.000000,0.000033 +31,2022-08-02 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000003,0.000089,0.000031,0.000115,0.000000,0.000000,0.001062,0.358091,-0.000598,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000003,0.000085,0.000030,0.000098,0.000000,0.000000,0.001007,0.357508,-0.000583,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000080,0.000029,0.000084,0.000000,0.000000,0.000956,0.356939,-0.000569,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000076,0.000028,0.000080,0.000000,0.000000,0.000908,0.356384,-0.000555,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000072,0.000028,0.000076,0.000000,0.000000,0.000863,0.355844,-0.000541,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000069,0.000027,0.000073,0.000000,0.000000,0.000821,0.355316,-0.000527,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000015,0.000000,0.000000,0.000000,0.000004,0.000066,0.000026,0.000070,0.000000,0.000000,0.000782,0.354817,-0.000499,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000036,0.000000,0.000000,0.000000,0.000005,0.000062,0.000025,0.000067,0.000126,0.000126,0.000745,0.354228,-0.000589,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000034,0.000000,0.000000,0.000000,0.000005,0.000059,0.000024,0.000064,0.000334,0.000334,0.000710,0.353448,-0.000780,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000019,0.000000,0.000000,0.000000,0.000005,0.000057,0.000023,0.000062,0.000487,0.000487,0.000677,0.352524,-0.000924,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000010,0.000000,0.000000,0.000000,0.000005,0.000054,0.000022,0.000059,0.000616,0.000616,0.000645,0.351488,-0.001036,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000023,0.000000,0.000000,0.000000,0.000005,0.000051,0.000020,0.000057,0.000725,0.000725,0.000614,0.350385,-0.001103,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000049,0.000019,0.000054,0.000697,0.000697,0.000584,0.349314,-0.001070,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000046,0.000018,0.000052,0.000635,0.000635,0.000555,0.348331,-0.000984,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000010,0.000000,0.000000,0.000000,0.000006,0.000044,0.000017,0.000050,0.000578,0.000578,0.000528,0.347437,-0.000894,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000010,0.000000,0.000000,0.000000,0.000006,0.000042,0.000016,0.000048,0.000475,0.000475,0.000501,0.346666,-0.000771,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000006,0.000040,0.000015,0.000046,0.000360,0.000360,0.000476,0.346026,-0.000640,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000007,0.000038,0.000014,0.000045,0.000218,0.000218,0.000453,0.345541,-0.000485,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000032,0.000000,0.000000,0.000000,0.000007,0.000036,0.000014,0.000043,0.000064,0.000064,0.000430,0.345240,-0.000301,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000034,0.000000,0.000000,0.000000,0.000007,0.000034,0.000013,0.000041,0.000000,0.000000,0.000410,0.345011,-0.000229,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000032,0.000000,0.000000,0.000000,0.000007,0.000033,0.000013,0.000040,0.000000,0.000000,0.000390,0.344785,-0.000226,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000029,0.000000,0.000000,0.000000,0.000008,0.000031,0.000013,0.000039,0.000000,0.000000,0.000372,0.344562,-0.000223,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000036,0.000000,0.000000,0.000000,0.000008,0.000030,0.000013,0.000038,0.000000,0.000000,0.000355,0.344352,-0.000210,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000039,0.000000,0.000000,0.000000,0.000008,0.000028,0.000012,0.000036,0.000000,0.000000,0.000339,0.344149,-0.000203,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000027,0.000012,0.000035,0.000000,0.000000,0.000324,0.343914,-0.000235,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000026,0.000012,0.000034,0.000000,0.000000,0.000310,0.343685,-0.000229,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000025,0.000011,0.000034,0.000000,0.000000,0.000296,0.343461,-0.000224,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000024,0.000011,0.000033,0.000000,0.000000,0.000284,0.343243,-0.000218,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000023,0.000011,0.000032,0.000000,0.000000,0.000272,0.343031,-0.000213,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000022,0.000011,0.000031,0.000000,0.000000,0.000261,0.342823,-0.000207,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000021,0.000010,0.000031,0.000000,0.000000,0.000250,0.342621,-0.000202,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000020,0.000010,0.000030,0.000141,0.000141,0.000240,0.342286,-0.000335,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000019,0.000009,0.000029,0.000392,0.000392,0.000230,0.341715,-0.000571,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000018,0.000008,0.000029,0.000573,0.000573,0.000220,0.340981,-0.000733,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000017,0.000007,0.000028,0.000725,0.000725,0.000209,0.340118,-0.000863,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000017,0.000006,0.000027,0.000758,0.000758,0.000199,0.339244,-0.000874,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000018,0.000000,0.000000,0.000000,0.000011,0.000016,0.000005,0.000027,0.000726,0.000726,0.000188,0.338442,-0.000803,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000011,0.000015,0.000004,0.000026,0.000653,0.000653,0.000177,0.337721,-0.000720,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000018,0.000000,0.000000,0.000000,0.000012,0.000014,0.000003,0.000025,0.000573,0.000573,0.000166,0.337106,-0.000615,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000018,0.000000,0.000000,0.000000,0.000012,0.000013,0.000002,0.000025,0.000479,0.000479,0.000156,0.336598,-0.000508,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000012,0.000012,0.000002,0.000024,0.000362,0.000362,0.000146,0.336207,-0.000391,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000012,0.000011,0.000002,0.000024,0.000228,0.000228,0.000136,0.335958,-0.000249,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000011,0.000001,0.000023,0.000078,0.000078,0.000127,0.335851,-0.000107,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000010,0.000001,0.000023,0.000000,0.000000,0.000118,0.335823,-0.000028,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000009,0.000001,0.000022,0.000000,0.000000,0.000111,0.335796,-0.000027,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000009,0.000001,0.000022,0.000000,0.000000,0.000103,0.335769,-0.000027,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000008,0.000001,0.000021,0.000000,0.000000,0.000097,0.335743,-0.000026,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000008,0.000001,0.000021,0.000000,0.000000,0.000090,0.335717,-0.000025,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000007,0.000001,0.000021,0.000000,0.000000,0.000085,0.335693,-0.000025,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000007,0.000001,0.000021,0.000000,0.000000,0.000079,0.335668,-0.000024,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000006,0.000001,0.000020,0.000000,0.000000,0.000074,0.335645,-0.000024,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000006,0.000001,0.000020,0.000000,0.000000,0.000070,0.335622,-0.000023,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000005,0.000001,0.000020,0.000000,0.000000,0.000065,0.335600,-0.000022,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000005,0.000001,0.000020,0.000000,0.000000,0.000061,0.335578,-0.000022,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000005,0.000001,0.000020,0.000000,0.000000,0.000058,0.335557,-0.000021,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000004,0.000001,0.000020,0.000136,0.000136,0.000054,0.335403,-0.000154,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000004,0.000000,0.000020,0.000386,0.000386,0.000050,0.335009,-0.000393,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000004,0.000000,0.000020,0.000571,0.000571,0.000046,0.334439,-0.000571,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000004,0.000000,0.000020,0.000728,0.000727,0.000043,0.333712,-0.000727,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000003,0.000000,0.000019,0.000856,0.000852,0.000039,0.332860,-0.000852,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000003,0.000000,0.000019,0.000830,0.000822,0.000036,0.332037,-0.000822,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000003,0.000000,0.000019,0.000736,0.000727,0.000034,0.331310,-0.000727,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000003,0.000000,0.000019,0.000606,0.000596,0.000031,0.330714,-0.000596,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000002,0.000000,0.000019,0.000510,0.000501,0.000029,0.330214,-0.000501,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000002,0.000000,0.000019,0.000387,0.000379,0.000026,0.329834,-0.000379,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000002,0.000000,0.000019,0.000232,0.000226,0.000024,0.329608,-0.000226,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000019,0.000086,0.000084,0.000023,0.329524,-0.000084,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000020,0.000000,0.000000,0.000021,0.329524,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000020,0.000000,0.000000,0.000019,0.329524,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000001,0.000000,0.000020,0.000000,0.000000,0.000018,0.329524,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000001,0.000000,0.000020,0.000000,0.000000,0.000016,0.329524,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000020,0.000000,0.000000,0.000015,0.329524,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000020,0.000000,0.000000,0.000014,0.329524,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000020,0.000000,0.000000,0.000013,0.329524,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000020,0.000000,0.000000,0.000012,0.329524,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000020,0.000000,0.000000,0.000011,0.329524,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000020,0.000000,0.000000,0.000010,0.329524,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000020,0.000000,0.000000,0.000009,0.329524,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000009,0.329524,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000152,0.000149,0.000008,0.329376,-0.000149,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000397,0.000387,0.000007,0.328989,-0.000387,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000578,0.000562,0.000007,0.328427,-0.000562,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000021,0.000731,0.000709,0.000006,0.327717,-0.000709,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000759,0.000734,0.000006,0.326983,-0.000734,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000016,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000728,0.000701,0.000005,0.326298,-0.000686,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000016,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000022,0.000623,0.000598,0.000005,0.325715,-0.000583,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000018,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000022,0.000554,0.000531,0.000005,0.325202,-0.000513,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000018,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000022,0.000458,0.000438,0.000004,0.324783,-0.000420,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000018,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000330,0.000315,0.000004,0.324486,-0.000297,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000016,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000209,0.000200,0.000004,0.324302,-0.000184,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000052,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000082,0.000080,0.000003,0.324273,-0.000029,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000052,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000003,0.324325,0.000052,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000059,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000023,0.000000,0.000000,0.000003,0.324384,0.000059,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000074,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000023,0.000000,0.000000,0.000003,0.324457,0.000073,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000091,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000002,0.324548,0.000090,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000106,0.000001,0.000001,0.000001,0.000023,0.000000,0.000000,0.000024,0.000000,0.000000,0.000002,0.324653,0.000105,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000002,0.324653,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000002,0.324653,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000002,0.324653,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000024,0.000000,0.000000,0.000002,0.324653,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000001,0.324653,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000001,0.324653,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000001,0.324653,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000131,0.000125,0.000001,0.324528,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000378,0.000360,0.000001,0.324169,-0.000360,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000560,0.000532,0.000001,0.323637,-0.000532,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000711,0.000674,0.000001,0.322963,-0.000674,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000842,0.000795,0.000001,0.322168,-0.000795,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000813,0.000764,0.000001,0.321404,-0.000764,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000735,0.000689,0.000001,0.320715,-0.000689,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000611,0.000571,0.000001,0.320145,-0.000571,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000510,0.000475,0.000001,0.319670,-0.000475,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000387,0.000359,0.000001,0.319311,-0.000359,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000226,0.000210,0.000001,0.319101,-0.000210,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000075,0.000070,0.000000,0.319031,-0.000070,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.319031,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000130,0.000120,0.000000,0.318911,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000372,0.000344,0.000000,0.318567,-0.000344,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000558,0.000515,0.000000,0.318053,-0.000515,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000706,0.000650,0.000000,0.317403,-0.000650,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000804,0.000737,0.000000,0.316665,-0.000737,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000775,0.000708,0.000000,0.315957,-0.000708,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000692,0.000630,0.000000,0.315327,-0.000630,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000593,0.000538,0.000000,0.314789,-0.000538,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000485,0.000439,0.000000,0.314350,-0.000439,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000371,0.000335,0.000000,0.314015,-0.000335,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000194,0.000175,0.000000,0.313840,-0.000175,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000039,0.000035,0.000000,0.313805,-0.000035,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313805,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313805,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313805,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313805,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313805,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313807,0.000002,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.313808,0.000001,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.313810,0.000002,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.313812,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.313814,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.313816,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.313816,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000110,0.000099,0.000000,0.313716,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000359,0.000323,0.000000,0.313393,-0.000323,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000553,0.000497,0.000000,0.312896,-0.000497,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000706,0.000632,0.000000,0.312263,-0.000632,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000834,0.000745,0.000000,0.311519,-0.000745,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000807,0.000718,0.000000,0.310801,-0.000718,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000727,0.000644,0.000000,0.310157,-0.000644,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000624,0.000551,0.000000,0.309606,-0.000551,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000510,0.000449,0.000000,0.309157,-0.000449,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000387,0.000340,0.000000,0.308817,-0.000340,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000217,0.000191,0.000000,0.308626,-0.000191,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000058,0.000050,0.000000,0.308576,-0.000050,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.308576,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000120,0.000105,0.000000,0.308471,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620683.csv b/test/channel_loss/channel_forcing/et/cat-2620683.csv new file mode 100644 index 000000000..ce9b765e7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620683.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000138,0.000000,0.000000,0.000000,0.000000,0.000815,0.000063,0.000815,0.000187,0.000187,0.009010,0.376884,-0.001534,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000062,0.000748,0.000065,0.000065,0.008324,0.375370,-0.001514,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000060,0.000688,0.000000,0.000000,0.007697,0.373956,-0.001414,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000633,0.000059,0.000633,0.000000,0.000000,0.007123,0.372575,-0.001381,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000583,0.000058,0.000583,0.000000,0.000000,0.006597,0.371227,-0.001348,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000538,0.000056,0.000538,0.000000,0.000000,0.006115,0.369911,-0.001316,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000497,0.000055,0.000497,0.000000,0.000000,0.005673,0.368626,-0.001285,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000460,0.000054,0.000460,0.000000,0.000000,0.005266,0.367372,-0.001255,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000426,0.000052,0.000426,0.000000,0.000000,0.004893,0.366147,-0.001225,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000395,0.000051,0.000395,0.000000,0.000000,0.004549,0.364951,-0.001196,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000366,0.000050,0.000367,0.000000,0.000000,0.004233,0.363783,-0.001168,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000340,0.000049,0.000341,0.000000,0.000000,0.003941,0.362644,-0.001140,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000316,0.000048,0.000317,0.000000,0.000000,0.003673,0.361531,-0.001113,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000294,0.000046,0.000295,0.000000,0.000000,0.003425,0.360444,-0.001087,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000274,0.000045,0.000275,0.000147,0.000147,0.003196,0.359240,-0.001204,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000255,0.000044,0.000256,0.000386,0.000386,0.002985,0.357831,-0.001409,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000238,0.000042,0.000239,0.000551,0.000551,0.002789,0.356294,-0.001537,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000222,0.000040,0.000224,0.000675,0.000675,0.002607,0.354673,-0.001622,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000207,0.000039,0.000209,0.000605,0.000605,0.002438,0.353158,-0.001515,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000565,0.000000,0.000000,0.000000,0.000002,0.000194,0.000038,0.000196,0.000571,0.000571,0.002282,0.352263,-0.000895,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000514,0.000000,0.000000,0.000000,0.000002,0.000181,0.000037,0.000183,0.000504,0.000504,0.002138,0.351406,-0.000858,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000647,0.000002,0.000004,0.000002,0.000002,0.000170,0.000036,0.000175,0.000397,0.000397,0.002005,0.350799,-0.000607,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000686,0.000006,0.000009,0.000006,0.000002,0.000159,0.000036,0.000167,0.000339,0.000339,0.001881,0.350296,-0.000503,1.000000,0.000005 +23,2022-08-01 23:00:00,0.000660,0.000009,0.000011,0.000009,0.000003,0.000149,0.000035,0.000161,0.000264,0.000264,0.001767,0.349851,-0.000445,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000666,0.000014,0.000017,0.000014,0.000003,0.000140,0.000035,0.000157,0.000177,0.000177,0.001662,0.349502,-0.000349,1.000000,0.000010 +25,2022-08-02 01:00:00,0.000982,0.000037,0.000055,0.000037,0.000003,0.000132,0.000035,0.000172,0.000081,0.000081,0.001565,0.349526,0.000024,1.000000,0.000028 +26,2022-08-02 02:00:00,0.000973,0.000052,0.000064,0.000052,0.000003,0.000124,0.000035,0.000180,0.000000,0.000000,0.001476,0.349612,0.000085,1.000000,0.000040 +27,2022-08-02 03:00:00,0.000953,0.000061,0.000062,0.000061,0.000004,0.000117,0.000035,0.000182,0.000000,0.000000,0.001393,0.349677,0.000066,1.000000,0.000041 +28,2022-08-02 04:00:00,0.000944,0.000062,0.000061,0.000062,0.000004,0.000111,0.000035,0.000176,0.000000,0.000000,0.001318,0.349734,0.000057,1.000000,0.000040 +29,2022-08-02 05:00:00,0.001038,0.000067,0.000073,0.000067,0.000004,0.000105,0.000035,0.000176,0.000000,0.000000,0.001248,0.349869,0.000135,1.000000,0.000045 +30,2022-08-02 06:00:00,0.001055,0.000072,0.000075,0.000072,0.000004,0.000100,0.000036,0.000175,0.000000,0.000000,0.001184,0.350016,0.000146,1.000000,0.000048 +31,2022-08-02 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000004,0.000095,0.000035,0.000132,0.000000,0.000000,0.001124,0.349202,-0.000814,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000005,0.000090,0.000034,0.000110,0.000000,0.000000,0.001068,0.348407,-0.000795,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000085,0.000033,0.000090,0.000000,0.000000,0.001016,0.347631,-0.000776,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000081,0.000032,0.000086,0.000000,0.000000,0.000967,0.346874,-0.000757,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000077,0.000032,0.000083,0.000000,0.000000,0.000922,0.346134,-0.000740,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000074,0.000031,0.000080,0.000000,0.000000,0.000879,0.345412,-0.000722,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000099,0.000000,0.000001,0.000000,0.000006,0.000070,0.000030,0.000077,0.000000,0.000000,0.000839,0.344804,-0.000608,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000209,0.000000,0.000000,0.000000,0.000006,0.000067,0.000030,0.000074,0.000129,0.000129,0.000801,0.344191,-0.000613,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000117,0.000000,0.000000,0.000000,0.000007,0.000064,0.000029,0.000071,0.000327,0.000327,0.000765,0.343309,-0.000881,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000117,0.000000,0.000000,0.000000,0.000007,0.000061,0.000028,0.000068,0.000465,0.000465,0.000732,0.342315,-0.000995,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000059,0.000026,0.000066,0.000576,0.000576,0.000700,0.341182,-0.001132,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000160,0.000000,0.000000,0.000000,0.000008,0.000056,0.000025,0.000064,0.000674,0.000674,0.000669,0.340076,-0.001107,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000054,0.000024,0.000061,0.000638,0.000638,0.000639,0.338874,-0.001201,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000051,0.000023,0.000059,0.000572,0.000572,0.000611,0.337765,-0.001109,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000056,0.000000,0.000000,0.000000,0.000008,0.000049,0.000022,0.000057,0.000539,0.000539,0.000584,0.336770,-0.000995,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000056,0.000000,0.000000,0.000000,0.000009,0.000047,0.000021,0.000056,0.000454,0.000454,0.000558,0.335881,-0.000889,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000009,0.000045,0.000020,0.000054,0.000342,0.000342,0.000534,0.335125,-0.000756,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000056,0.000000,0.000000,0.000000,0.000009,0.000043,0.000020,0.000052,0.000208,0.000208,0.000511,0.334515,-0.000610,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000120,0.000000,0.000000,0.000000,0.000010,0.000041,0.000019,0.000051,0.000058,0.000058,0.000489,0.334128,-0.000387,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000120,0.000001,0.000001,0.000001,0.000010,0.000039,0.000019,0.000050,0.000000,0.000000,0.000469,0.333807,-0.000321,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000120,0.000001,0.000001,0.000001,0.000010,0.000038,0.000018,0.000049,0.000000,0.000000,0.000450,0.333492,-0.000314,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000116,0.000001,0.000001,0.000001,0.000011,0.000036,0.000018,0.000048,0.000000,0.000000,0.000432,0.333182,-0.000311,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000120,0.000001,0.000001,0.000001,0.000011,0.000035,0.000018,0.000047,0.000000,0.000000,0.000415,0.332882,-0.000300,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000123,0.000001,0.000001,0.000001,0.000011,0.000033,0.000018,0.000046,0.000000,0.000000,0.000399,0.332593,-0.000289,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000032,0.000017,0.000044,0.000000,0.000000,0.000384,0.332191,-0.000401,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000031,0.000017,0.000043,0.000000,0.000000,0.000370,0.331799,-0.000392,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000030,0.000016,0.000042,0.000000,0.000000,0.000357,0.331417,-0.000383,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000029,0.000016,0.000041,0.000000,0.000000,0.000344,0.331043,-0.000374,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000028,0.000016,0.000041,0.000000,0.000000,0.000332,0.330679,-0.000365,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000027,0.000015,0.000040,0.000000,0.000000,0.000320,0.330322,-0.000356,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000015,0.000040,0.000000,0.000000,0.000309,0.329975,-0.000348,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000014,0.000039,0.000142,0.000142,0.000299,0.329497,-0.000478,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000024,0.000014,0.000038,0.000386,0.000386,0.000288,0.328792,-0.000705,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000023,0.000013,0.000038,0.000551,0.000551,0.000278,0.327943,-0.000849,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000012,0.000037,0.000682,0.000682,0.000267,0.326986,-0.000957,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000021,0.000011,0.000037,0.000701,0.000701,0.000257,0.326033,-0.000953,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000069,0.000000,0.000000,0.000000,0.000016,0.000021,0.000010,0.000036,0.000665,0.000665,0.000246,0.325205,-0.000828,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000120,0.000000,0.000000,0.000000,0.000016,0.000020,0.000009,0.000036,0.000590,0.000590,0.000236,0.324520,-0.000685,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000088,0.000000,0.000000,0.000000,0.000016,0.000019,0.000009,0.000035,0.000534,0.000534,0.000225,0.323874,-0.000646,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000069,0.000000,0.000000,0.000000,0.000017,0.000018,0.000008,0.000035,0.000444,0.000444,0.000215,0.323313,-0.000561,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000017,0.000007,0.000034,0.000342,0.000342,0.000206,0.322854,-0.000459,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000016,0.000007,0.000034,0.000217,0.000217,0.000196,0.322528,-0.000326,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000016,0.000007,0.000033,0.000072,0.000072,0.000188,0.322294,-0.000234,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000007,0.000033,0.000000,0.000000,0.000179,0.322137,-0.000158,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000007,0.000033,0.000000,0.000000,0.000172,0.321983,-0.000154,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000006,0.000033,0.000000,0.000000,0.000164,0.321833,-0.000150,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000006,0.000032,0.000000,0.000000,0.000157,0.321686,-0.000147,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000006,0.000032,0.000000,0.000000,0.000151,0.321543,-0.000143,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000032,0.000000,0.000000,0.000145,0.321403,-0.000140,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000032,0.000000,0.000000,0.000139,0.321267,-0.000136,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000000,0.000000,0.000134,0.321133,-0.000133,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000000,0.000000,0.000129,0.321003,-0.000130,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000005,0.000031,0.000000,0.000000,0.000124,0.320876,-0.000127,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000005,0.000031,0.000000,0.000000,0.000119,0.320752,-0.000124,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000005,0.000031,0.000000,0.000000,0.000115,0.320631,-0.000121,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000009,0.000005,0.000031,0.000138,0.000138,0.000110,0.320378,-0.000253,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000009,0.000004,0.000031,0.000382,0.000382,0.000106,0.319894,-0.000485,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000004,0.000031,0.000550,0.000550,0.000101,0.319256,-0.000638,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000003,0.000031,0.000683,0.000683,0.000096,0.318503,-0.000753,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000002,0.000031,0.000799,0.000799,0.000091,0.317656,-0.000847,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000007,0.000001,0.000031,0.000741,0.000741,0.000085,0.316884,-0.000771,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000007,0.000001,0.000031,0.000674,0.000674,0.000079,0.316197,-0.000687,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000030,0.000556,0.000556,0.000073,0.315641,-0.000556,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000006,0.000000,0.000030,0.000483,0.000483,0.000067,0.315158,-0.000483,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000030,0.000366,0.000365,0.000062,0.314793,-0.000365,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000030,0.000223,0.000222,0.000057,0.314571,-0.000222,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000079,0.000079,0.000053,0.314492,-0.000079,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000049,0.314492,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000045,0.314492,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000042,0.314492,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000038,0.314492,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000035,0.314492,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000033,0.314492,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000003,0.000000,0.000030,0.000000,0.000000,0.000030,0.314492,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000028,0.314492,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000026,0.314492,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000024,0.314492,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000022,0.314492,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000020,0.314492,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000151,0.000150,0.000019,0.314342,-0.000150,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000387,0.000384,0.000017,0.313958,-0.000384,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000549,0.000544,0.000016,0.313413,-0.000544,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000032,0.000683,0.000675,0.000015,0.312739,-0.000675,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000701,0.000690,0.000014,0.312049,-0.000690,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000664,0.000652,0.000013,0.311459,-0.000590,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000581,0.000569,0.000012,0.310953,-0.000506,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000516,0.000505,0.000011,0.310511,-0.000442,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000032,0.000437,0.000427,0.000010,0.310147,-0.000364,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000325,0.000317,0.000009,0.309893,-0.000254,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000205,0.000200,0.000008,0.309755,-0.000138,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000176,0.000000,0.000001,0.000000,0.000032,0.000001,0.000000,0.000033,0.000080,0.000080,0.000008,0.309851,0.000096,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000181,0.000001,0.000002,0.000001,0.000033,0.000001,0.000000,0.000035,0.000000,0.000000,0.000007,0.310029,0.000179,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000197,0.000002,0.000003,0.000002,0.000033,0.000001,0.000000,0.000036,0.000000,0.000000,0.000007,0.310224,0.000195,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000206,0.000003,0.000003,0.000003,0.000033,0.000001,0.000000,0.000036,0.000000,0.000000,0.000006,0.310427,0.000203,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000257,0.000004,0.000004,0.000004,0.000033,0.000000,0.000000,0.000038,0.000000,0.000000,0.000006,0.310680,0.000252,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000243,0.000004,0.000004,0.000004,0.000034,0.000000,0.000000,0.000038,0.000000,0.000000,0.000005,0.310919,0.000239,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000034,0.000000,0.000000,0.000036,0.000000,0.000000,0.000005,0.310919,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.310919,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.310919,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.310919,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.310919,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.310919,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000000,0.000000,0.000003,0.310919,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000133,0.000129,0.000003,0.310790,-0.000129,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000370,0.000361,0.000003,0.310429,-0.000361,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000536,0.000521,0.000002,0.309908,-0.000521,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000037,0.000665,0.000645,0.000002,0.309262,-0.000645,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000776,0.000750,0.000002,0.308512,-0.000750,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000745,0.000717,0.000002,0.307796,-0.000717,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000664,0.000637,0.000002,0.307159,-0.000637,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000573,0.000548,0.000002,0.306611,-0.000548,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000484,0.000461,0.000001,0.306150,-0.000461,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000366,0.000348,0.000001,0.305803,-0.000348,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000217,0.000206,0.000001,0.305596,-0.000206,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000070,0.000066,0.000001,0.305530,-0.000066,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.305530,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.305530,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.305530,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000131,0.000124,0.000000,0.305406,-0.000124,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000367,0.000348,0.000000,0.305059,-0.000348,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000533,0.000504,0.000000,0.304555,-0.000504,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000042,0.000664,0.000626,0.000000,0.303929,-0.000626,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000750,0.000704,0.000000,0.303225,-0.000704,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000710,0.000663,0.000000,0.302562,-0.000663,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000633,0.000589,0.000000,0.301972,-0.000589,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000559,0.000518,0.000000,0.301454,-0.000518,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000468,0.000433,0.000000,0.301021,-0.000433,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000355,0.000327,0.000000,0.300694,-0.000327,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000186,0.000171,0.000000,0.300522,-0.000171,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000037,0.000034,0.000000,0.300488,-0.000034,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.300488,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000111,0.000102,0.000000,0.300386,-0.000102,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000352,0.000324,0.000000,0.300062,-0.000324,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000525,0.000482,0.000000,0.299580,-0.000482,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000659,0.000603,0.000000,0.298977,-0.000603,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000769,0.000702,0.000000,0.298276,-0.000702,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000722,0.000656,0.000000,0.297619,-0.000656,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000656,0.000594,0.000000,0.297026,-0.000594,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000571,0.000515,0.000000,0.296510,-0.000515,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000482,0.000434,0.000000,0.296076,-0.000434,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000362,0.000325,0.000000,0.295751,-0.000325,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000206,0.000184,0.000000,0.295567,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000052,0.000047,0.000000,0.295521,-0.000047,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.295521,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000123,0.000110,0.000000,0.295411,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620684.csv b/test/channel_loss/channel_forcing/et/cat-2620684.csv new file mode 100644 index 000000000..b656f6e35 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620684.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000000,0.000815,0.000066,0.000815,0.000183,0.000183,0.009012,0.376251,-0.001402,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000064,0.000748,0.000063,0.000063,0.008328,0.374878,-0.001374,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000063,0.000688,0.000000,0.000000,0.007703,0.373598,-0.001279,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000634,0.000061,0.000634,0.000000,0.000000,0.007131,0.372350,-0.001248,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000060,0.000584,0.000000,0.000000,0.006607,0.371132,-0.001218,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000539,0.000058,0.000539,0.000000,0.000000,0.006126,0.369944,-0.001188,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000498,0.000057,0.000499,0.000000,0.000000,0.005684,0.368784,-0.001160,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000461,0.000056,0.000461,0.000000,0.000000,0.005279,0.367653,-0.001131,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000427,0.000054,0.000427,0.000000,0.000000,0.004906,0.366549,-0.001104,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000396,0.000053,0.000396,0.000000,0.000000,0.004563,0.365472,-0.001077,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000367,0.000052,0.000368,0.000000,0.000000,0.004247,0.364421,-0.001051,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000341,0.000050,0.000342,0.000000,0.000000,0.003956,0.363396,-0.001025,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000317,0.000049,0.000318,0.000000,0.000000,0.003688,0.362395,-0.001001,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000295,0.000048,0.000296,0.000000,0.000000,0.003441,0.361419,-0.000976,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000275,0.000047,0.000276,0.000145,0.000145,0.003212,0.360325,-0.001094,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000257,0.000045,0.000258,0.000382,0.000382,0.003001,0.359026,-0.001299,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000239,0.000043,0.000241,0.000548,0.000548,0.002804,0.357597,-0.001429,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000224,0.000041,0.000225,0.000671,0.000671,0.002622,0.356083,-0.001514,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000209,0.000040,0.000210,0.000593,0.000593,0.002453,0.354682,-0.001401,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000637,0.000000,0.000000,0.000000,0.000002,0.000195,0.000039,0.000197,0.000565,0.000565,0.002297,0.353963,-0.000719,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000478,0.000000,0.000000,0.000000,0.000002,0.000183,0.000038,0.000185,0.000493,0.000493,0.002152,0.353176,-0.000787,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000531,0.000001,0.000001,0.000001,0.000002,0.000171,0.000037,0.000174,0.000387,0.000387,0.002018,0.352563,-0.000613,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000523,0.000002,0.000002,0.000002,0.000002,0.000160,0.000036,0.000164,0.000329,0.000329,0.001894,0.352012,-0.000551,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000564,0.000004,0.000006,0.000004,0.000002,0.000151,0.000036,0.000157,0.000257,0.000257,0.001780,0.351582,-0.000430,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000603,0.000008,0.000011,0.000008,0.000003,0.000141,0.000036,0.000152,0.000173,0.000173,0.001674,0.351276,-0.000305,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001030,0.000034,0.000054,0.000034,0.000003,0.000133,0.000036,0.000170,0.000079,0.000079,0.001577,0.351445,0.000169,1.000000,0.000027 +26,2022-08-02 02:00:00,0.000998,0.000048,0.000059,0.000048,0.000003,0.000125,0.000036,0.000177,0.000000,0.000000,0.001487,0.351651,0.000206,1.000000,0.000037 +27,2022-08-02 03:00:00,0.000992,0.000058,0.000059,0.000058,0.000003,0.000118,0.000036,0.000179,0.000000,0.000000,0.001405,0.351846,0.000195,1.000000,0.000038 +28,2022-08-02 04:00:00,0.000991,0.000059,0.000059,0.000059,0.000003,0.000112,0.000037,0.000174,0.000000,0.000000,0.001330,0.352036,0.000190,1.000000,0.000038 +29,2022-08-02 05:00:00,0.001054,0.000063,0.000066,0.000063,0.000004,0.000106,0.000037,0.000172,0.000000,0.000000,0.001260,0.352276,0.000239,1.000000,0.000041 +30,2022-08-02 06:00:00,0.001000,0.000061,0.000060,0.000061,0.000004,0.000101,0.000037,0.000165,0.000000,0.000000,0.001197,0.352463,0.000187,1.000000,0.000040 +31,2022-08-02 07:00:00,0.000000,0.000028,0.000000,0.000028,0.000004,0.000096,0.000036,0.000128,0.000000,0.000000,0.001137,0.351728,-0.000735,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000004,0.000091,0.000035,0.000107,0.000000,0.000000,0.001082,0.351010,-0.000717,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000086,0.000034,0.000091,0.000000,0.000000,0.001029,0.350311,-0.000700,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000082,0.000034,0.000087,0.000000,0.000000,0.000981,0.349628,-0.000683,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000078,0.000033,0.000083,0.000000,0.000000,0.000935,0.348962,-0.000666,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000075,0.000032,0.000080,0.000000,0.000000,0.000892,0.348312,-0.000650,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000005,0.000071,0.000031,0.000077,0.000000,0.000000,0.000852,0.347774,-0.000537,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000192,0.000000,0.000000,0.000000,0.000006,0.000068,0.000031,0.000074,0.000128,0.000128,0.000814,0.347215,-0.000560,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000188,0.000000,0.000000,0.000000,0.000006,0.000065,0.000030,0.000071,0.000326,0.000326,0.000779,0.346472,-0.000743,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000139,0.000000,0.000000,0.000000,0.000006,0.000062,0.000029,0.000069,0.000465,0.000465,0.000745,0.345564,-0.000908,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000006,0.000060,0.000027,0.000066,0.000570,0.000570,0.000713,0.344501,-0.001062,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000057,0.000026,0.000064,0.000658,0.000658,0.000682,0.343503,-0.000998,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000055,0.000025,0.000062,0.000613,0.000613,0.000652,0.342387,-0.001116,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000052,0.000023,0.000059,0.000554,0.000554,0.000623,0.341356,-0.001031,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000042,0.000000,0.000000,0.000000,0.000008,0.000050,0.000022,0.000057,0.000526,0.000526,0.000595,0.340419,-0.000937,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000042,0.000000,0.000000,0.000000,0.000008,0.000048,0.000021,0.000055,0.000447,0.000447,0.000569,0.339582,-0.000837,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000048,0.000000,0.000000,0.000000,0.000008,0.000046,0.000020,0.000054,0.000338,0.000338,0.000544,0.338877,-0.000705,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000042,0.000000,0.000000,0.000000,0.000008,0.000044,0.000020,0.000052,0.000205,0.000205,0.000520,0.338313,-0.000564,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000089,0.000000,0.000000,0.000000,0.000009,0.000042,0.000019,0.000050,0.000055,0.000055,0.000498,0.337954,-0.000359,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000089,0.000000,0.000000,0.000000,0.000009,0.000040,0.000019,0.000049,0.000000,0.000000,0.000477,0.337658,-0.000296,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000106,0.000001,0.000001,0.000001,0.000009,0.000038,0.000019,0.000048,0.000000,0.000000,0.000457,0.337385,-0.000273,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000087,0.000001,0.000000,0.000001,0.000010,0.000037,0.000018,0.000047,0.000000,0.000000,0.000439,0.337101,-0.000284,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000123,0.000001,0.000001,0.000001,0.000010,0.000035,0.000018,0.000046,0.000000,0.000000,0.000422,0.336858,-0.000243,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000106,0.000001,0.000001,0.000001,0.000010,0.000034,0.000018,0.000045,0.000000,0.000000,0.000405,0.336605,-0.000253,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000033,0.000017,0.000043,0.000000,0.000000,0.000390,0.336255,-0.000350,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000031,0.000017,0.000042,0.000000,0.000000,0.000375,0.335913,-0.000341,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000030,0.000016,0.000041,0.000000,0.000000,0.000362,0.335580,-0.000333,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000029,0.000016,0.000040,0.000000,0.000000,0.000349,0.335255,-0.000325,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000028,0.000016,0.000040,0.000000,0.000000,0.000336,0.334938,-0.000317,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000027,0.000015,0.000039,0.000000,0.000000,0.000324,0.334629,-0.000309,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000026,0.000015,0.000038,0.000000,0.000000,0.000313,0.334327,-0.000302,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000025,0.000014,0.000038,0.000140,0.000140,0.000302,0.333896,-0.000431,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000024,0.000014,0.000037,0.000387,0.000387,0.000291,0.333234,-0.000662,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000023,0.000013,0.000037,0.000552,0.000552,0.000280,0.332427,-0.000806,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000022,0.000011,0.000036,0.000677,0.000677,0.000269,0.331518,-0.000909,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000022,0.000010,0.000035,0.000690,0.000690,0.000258,0.330619,-0.000900,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000044,0.000000,0.000000,0.000000,0.000014,0.000021,0.000009,0.000035,0.000643,0.000643,0.000247,0.329830,-0.000789,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000257,0.000000,0.000000,0.000000,0.000014,0.000020,0.000009,0.000034,0.000574,0.000574,0.000236,0.329335,-0.000495,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000121,0.000000,0.000000,0.000000,0.000015,0.000019,0.000008,0.000033,0.000520,0.000520,0.000225,0.328772,-0.000563,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000015,0.000018,0.000007,0.000033,0.000431,0.000431,0.000215,0.328235,-0.000538,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000017,0.000000,0.000000,0.000000,0.000015,0.000017,0.000007,0.000032,0.000333,0.000333,0.000204,0.327779,-0.000455,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000017,0.000000,0.000000,0.000000,0.000016,0.000016,0.000006,0.000032,0.000213,0.000213,0.000195,0.327452,-0.000327,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000015,0.000006,0.000031,0.000070,0.000070,0.000185,0.327256,-0.000196,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000015,0.000006,0.000031,0.000000,0.000000,0.000177,0.327133,-0.000123,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000014,0.000006,0.000031,0.000000,0.000000,0.000169,0.327014,-0.000120,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000006,0.000030,0.000000,0.000000,0.000161,0.326896,-0.000117,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000006,0.000030,0.000000,0.000000,0.000154,0.326782,-0.000114,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000005,0.000030,0.000000,0.000000,0.000147,0.326671,-0.000111,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000005,0.000029,0.000000,0.000000,0.000141,0.326562,-0.000109,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000005,0.000029,0.000000,0.000000,0.000135,0.326456,-0.000106,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000005,0.000029,0.000000,0.000000,0.000129,0.326352,-0.000104,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000005,0.000029,0.000000,0.000000,0.000124,0.326252,-0.000101,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000005,0.000029,0.000000,0.000000,0.000119,0.326153,-0.000099,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000029,0.000000,0.000000,0.000114,0.326057,-0.000096,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000028,0.000000,0.000000,0.000109,0.325963,-0.000094,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000028,0.000136,0.000136,0.000105,0.325739,-0.000224,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000383,0.000383,0.000100,0.325279,-0.000460,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000003,0.000028,0.000550,0.000550,0.000095,0.324667,-0.000611,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000002,0.000028,0.000677,0.000677,0.000090,0.323947,-0.000720,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000001,0.000028,0.000787,0.000787,0.000084,0.323137,-0.000810,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000006,0.000000,0.000028,0.000714,0.000714,0.000078,0.322417,-0.000720,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000006,0.000000,0.000027,0.000653,0.000653,0.000072,0.321764,-0.000653,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000027,0.000551,0.000549,0.000066,0.321214,-0.000549,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000478,0.000475,0.000061,0.320739,-0.000475,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000360,0.000358,0.000057,0.320381,-0.000358,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000004,0.000000,0.000027,0.000219,0.000218,0.000052,0.320164,-0.000218,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000076,0.000076,0.000048,0.320088,-0.000076,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000000,0.000000,0.000045,0.320088,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000027,0.000000,0.000000,0.000041,0.320088,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000038,0.320088,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000035,0.320088,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000032,0.320088,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000027,0.000000,0.000000,0.000030,0.320088,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000028,0.320088,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000025,0.320088,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000023,0.320088,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000022,0.320088,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000027,0.000000,0.000000,0.000020,0.320088,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000027,0.000000,0.000000,0.000018,0.320088,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000028,0.000148,0.000147,0.000017,0.319942,-0.000147,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000028,0.000387,0.000382,0.000016,0.319559,-0.000382,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000551,0.000544,0.000015,0.319015,-0.000544,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000679,0.000668,0.000013,0.318347,-0.000668,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000687,0.000674,0.000012,0.317673,-0.000674,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000044,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000641,0.000628,0.000011,0.317088,-0.000584,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000044,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000028,0.000567,0.000554,0.000011,0.316578,-0.000510,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000046,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000495,0.000483,0.000010,0.316141,-0.000437,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000434,0.000423,0.000009,0.315781,-0.000360,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000325,0.000317,0.000008,0.315527,-0.000254,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000202,0.000197,0.000008,0.315392,-0.000134,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000208,0.000001,0.000001,0.000001,0.000029,0.000001,0.000000,0.000030,0.000077,0.000077,0.000007,0.315522,0.000129,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000356,0.000004,0.000007,0.000004,0.000029,0.000001,0.000000,0.000034,0.000000,0.000000,0.000007,0.315870,0.000349,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000312,0.000005,0.000006,0.000005,0.000029,0.000001,0.000000,0.000035,0.000000,0.000000,0.000006,0.316177,0.000307,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000227,0.000004,0.000003,0.000004,0.000029,0.000000,0.000000,0.000034,0.000000,0.000000,0.000006,0.316401,0.000224,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000300,0.000005,0.000005,0.000005,0.000030,0.000000,0.000000,0.000035,0.000000,0.000000,0.000005,0.316696,0.000295,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000223,0.000003,0.000003,0.000003,0.000030,0.000000,0.000000,0.000034,0.000000,0.000000,0.000005,0.316916,0.000220,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000030,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.316916,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.316916,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.316916,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000003,0.316916,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000003,0.316916,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000003,0.316916,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.316916,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000130,0.000127,0.000003,0.316789,-0.000127,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000369,0.000359,0.000002,0.316430,-0.000359,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000535,0.000519,0.000002,0.315910,-0.000519,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000661,0.000641,0.000002,0.315269,-0.000641,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000757,0.000731,0.000002,0.314539,-0.000731,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000720,0.000693,0.000002,0.313845,-0.000693,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000641,0.000614,0.000002,0.313231,-0.000614,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000566,0.000541,0.000001,0.312690,-0.000541,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000478,0.000456,0.000001,0.312234,-0.000456,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000361,0.000343,0.000001,0.311891,-0.000343,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000215,0.000205,0.000001,0.311687,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000068,0.000064,0.000001,0.311622,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.311622,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.311622,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.311622,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.311622,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000128,0.000122,0.000000,0.311501,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000367,0.000348,0.000000,0.311152,-0.000348,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000533,0.000504,0.000000,0.310648,-0.000504,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000662,0.000624,0.000000,0.310024,-0.000624,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000735,0.000691,0.000000,0.309333,-0.000691,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000692,0.000648,0.000000,0.308685,-0.000648,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000617,0.000576,0.000000,0.308109,-0.000576,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000549,0.000511,0.000000,0.307598,-0.000511,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000465,0.000431,0.000000,0.307167,-0.000431,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000352,0.000326,0.000000,0.306841,-0.000326,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000183,0.000169,0.000000,0.306672,-0.000169,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000036,0.000033,0.000000,0.306639,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306639,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000108,0.000100,0.000000,0.306538,-0.000100,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000352,0.000325,0.000000,0.306213,-0.000325,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000524,0.000483,0.000000,0.305731,-0.000483,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000653,0.000600,0.000000,0.305130,-0.000600,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000755,0.000692,0.000000,0.304439,-0.000692,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000701,0.000640,0.000000,0.303799,-0.000640,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000637,0.000580,0.000000,0.303219,-0.000580,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000563,0.000510,0.000000,0.302709,-0.000510,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000472,0.000427,0.000000,0.302282,-0.000427,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000354,0.000319,0.000000,0.301963,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000201,0.000181,0.000000,0.301781,-0.000181,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000049,0.000044,0.000000,0.301737,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.301737,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000120,0.000108,0.000000,0.301629,-0.000108,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620685.csv b/test/channel_loss/channel_forcing/et/cat-2620685.csv new file mode 100644 index 000000000..ef8cebcca --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620685.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000000,0.000818,0.000102,0.000818,0.000180,0.000180,0.009045,0.374274,-0.002709,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000754,0.000100,0.000754,0.000060,0.000060,0.008390,0.371625,-0.002650,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000697,0.000097,0.000697,0.000000,0.000000,0.007791,0.369089,-0.002536,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000644,0.000095,0.000644,0.000000,0.000000,0.007242,0.366605,-0.002484,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000094,0.000597,0.000000,0.000000,0.006739,0.364172,-0.002433,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000553,0.000092,0.000554,0.000000,0.000000,0.006277,0.361790,-0.002383,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000514,0.000090,0.000514,0.000000,0.000000,0.005853,0.359456,-0.002334,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000478,0.000088,0.000478,0.000000,0.000000,0.005463,0.357170,-0.002286,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000445,0.000086,0.000446,0.000000,0.000000,0.005104,0.354932,-0.002239,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000415,0.000084,0.000416,0.000000,0.000000,0.004773,0.352739,-0.002193,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000387,0.000083,0.000388,0.000000,0.000000,0.004468,0.350592,-0.002147,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000362,0.000081,0.000363,0.000000,0.000000,0.004187,0.348488,-0.002103,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000339,0.000079,0.000340,0.000000,0.000000,0.003928,0.346428,-0.002060,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000317,0.000078,0.000319,0.000000,0.000000,0.003688,0.344411,-0.002018,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000298,0.000076,0.000300,0.000139,0.000139,0.003466,0.342298,-0.002112,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000280,0.000074,0.000282,0.000377,0.000377,0.003260,0.339997,-0.002302,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000263,0.000072,0.000265,0.000549,0.000549,0.003070,0.337574,-0.002423,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000247,0.000070,0.000250,0.000669,0.000669,0.002893,0.335083,-0.002491,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000233,0.000068,0.000236,0.000594,0.000594,0.002728,0.332716,-0.002366,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000590,0.000000,0.000000,0.000000,0.000003,0.000219,0.000067,0.000223,0.000561,0.000561,0.002575,0.331008,-0.001708,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000419,0.000000,0.000000,0.000000,0.000004,0.000207,0.000065,0.000211,0.000487,0.000487,0.002434,0.329241,-0.001767,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000437,0.000000,0.000000,0.000000,0.000004,0.000196,0.000064,0.000200,0.000373,0.000373,0.002302,0.327639,-0.001602,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000500,0.000002,0.000003,0.000002,0.000004,0.000185,0.000063,0.000191,0.000315,0.000315,0.002180,0.326186,-0.001453,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000450,0.000002,0.000003,0.000002,0.000005,0.000175,0.000062,0.000183,0.000245,0.000245,0.002066,0.324782,-0.001404,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000480,0.000005,0.000007,0.000005,0.000005,0.000166,0.000061,0.000177,0.000169,0.000169,0.001961,0.323508,-0.001275,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000874,0.000028,0.000046,0.000028,0.000006,0.000158,0.000060,0.000191,0.000075,0.000075,0.001863,0.322699,-0.000809,1.000000,0.000022 +26,2022-08-02 02:00:00,0.001077,0.000058,0.000082,0.000058,0.000006,0.000150,0.000060,0.000214,0.000000,0.000000,0.001773,0.322144,-0.000555,1.000000,0.000046 +27,2022-08-02 03:00:00,0.001093,0.000076,0.000084,0.000076,0.000006,0.000143,0.000059,0.000225,0.000000,0.000000,0.001689,0.321614,-0.000530,1.000000,0.000054 +28,2022-08-02 04:00:00,0.001088,0.000083,0.000083,0.000083,0.000007,0.000136,0.000059,0.000226,0.000000,0.000000,0.001612,0.321091,-0.000523,1.000000,0.000054 +29,2022-08-02 05:00:00,0.001094,0.000084,0.000084,0.000084,0.000007,0.000130,0.000058,0.000221,0.000000,0.000000,0.001540,0.320584,-0.000507,1.000000,0.000054 +30,2022-08-02 06:00:00,0.001075,0.000082,0.000081,0.000082,0.000008,0.000124,0.000058,0.000214,0.000000,0.000000,0.001474,0.320071,-0.000512,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000008,0.000119,0.000057,0.000164,0.000000,0.000000,0.001412,0.318596,-0.001476,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000009,0.000114,0.000056,0.000139,0.000000,0.000000,0.001353,0.317151,-0.001445,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000109,0.000054,0.000119,0.000000,0.000000,0.001298,0.315735,-0.001416,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000105,0.000053,0.000115,0.000000,0.000000,0.001247,0.314349,-0.001386,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000101,0.000052,0.000111,0.000000,0.000000,0.001198,0.312991,-0.001358,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000097,0.000051,0.000108,0.000000,0.000000,0.001152,0.311661,-0.001330,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000011,0.000093,0.000050,0.000105,0.000000,0.000000,0.001109,0.310456,-0.001205,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000250,0.000001,0.000001,0.000001,0.000012,0.000090,0.000049,0.000102,0.000124,0.000124,0.001069,0.309301,-0.001155,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000000,0.000000,0.000000,0.000012,0.000087,0.000048,0.000099,0.000320,0.000320,0.001030,0.307929,-0.001372,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000136,0.000000,0.000000,0.000000,0.000013,0.000083,0.000047,0.000097,0.000464,0.000464,0.000994,0.306382,-0.001547,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000089,0.000000,0.000000,0.000000,0.000013,0.000080,0.000046,0.000094,0.000570,0.000570,0.000959,0.304717,-0.001665,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000174,0.000000,0.000000,0.000000,0.000014,0.000078,0.000044,0.000092,0.000659,0.000659,0.000925,0.303081,-0.001635,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000075,0.000043,0.000089,0.000590,0.000590,0.000893,0.301377,-0.001704,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000072,0.000042,0.000087,0.000549,0.000549,0.000862,0.299748,-0.001629,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000057,0.000000,0.000000,0.000000,0.000016,0.000070,0.000040,0.000086,0.000528,0.000528,0.000833,0.298230,-0.001519,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000057,0.000000,0.000000,0.000000,0.000016,0.000067,0.000039,0.000084,0.000450,0.000450,0.000804,0.296819,-0.001411,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000065,0.000038,0.000082,0.000337,0.000337,0.000777,0.295548,-0.001271,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000057,0.000000,0.000000,0.000000,0.000017,0.000063,0.000037,0.000080,0.000205,0.000205,0.000752,0.294431,-0.001117,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000115,0.000000,0.000000,0.000000,0.000018,0.000061,0.000037,0.000079,0.000054,0.000054,0.000727,0.293542,-0.000889,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000122,0.000001,0.000001,0.000001,0.000019,0.000059,0.000036,0.000078,0.000000,0.000000,0.000704,0.292731,-0.000812,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000115,0.000001,0.000001,0.000001,0.000019,0.000057,0.000035,0.000077,0.000000,0.000000,0.000682,0.291929,-0.000802,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000088,0.000001,0.000001,0.000001,0.000020,0.000055,0.000035,0.000076,0.000000,0.000000,0.000661,0.291118,-0.000811,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000166,0.000001,0.000002,0.000001,0.000021,0.000054,0.000034,0.000076,0.000000,0.000000,0.000642,0.290398,-0.000720,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000113,0.000001,0.000001,0.000001,0.000021,0.000052,0.000033,0.000074,0.000000,0.000000,0.000623,0.289642,-0.000756,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000022,0.000051,0.000033,0.000073,0.000000,0.000000,0.000605,0.288793,-0.000850,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000049,0.000032,0.000072,0.000000,0.000000,0.000588,0.287960,-0.000832,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000048,0.000031,0.000071,0.000000,0.000000,0.000571,0.287145,-0.000815,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000046,0.000031,0.000070,0.000000,0.000000,0.000555,0.286347,-0.000798,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000045,0.000030,0.000070,0.000000,0.000000,0.000540,0.285565,-0.000782,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000044,0.000029,0.000069,0.000000,0.000000,0.000526,0.284799,-0.000766,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000043,0.000029,0.000068,0.000000,0.000000,0.000512,0.284049,-0.000750,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000042,0.000028,0.000068,0.000135,0.000135,0.000498,0.283182,-0.000867,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000041,0.000027,0.000067,0.000387,0.000387,0.000485,0.282086,-0.001096,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000039,0.000026,0.000067,0.000556,0.000556,0.000472,0.280847,-0.001239,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000038,0.000025,0.000067,0.000680,0.000680,0.000459,0.279512,-0.001335,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000037,0.000024,0.000066,0.000687,0.000687,0.000446,0.278198,-0.001314,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000057,0.000000,0.000000,0.000000,0.000030,0.000036,0.000023,0.000066,0.000642,0.000642,0.000433,0.277011,-0.001188,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000098,0.000000,0.000000,0.000000,0.000030,0.000035,0.000022,0.000065,0.000576,0.000576,0.000420,0.275952,-0.001058,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000077,0.000000,0.000000,0.000000,0.000031,0.000034,0.000021,0.000065,0.000520,0.000520,0.000407,0.274950,-0.001003,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000057,0.000000,0.000000,0.000000,0.000032,0.000033,0.000021,0.000065,0.000431,0.000431,0.000395,0.274036,-0.000914,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000005,0.000000,0.000000,0.000000,0.000032,0.000032,0.000020,0.000064,0.000334,0.000334,0.000383,0.273185,-0.000851,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000005,0.000000,0.000000,0.000000,0.000033,0.000031,0.000019,0.000064,0.000215,0.000215,0.000372,0.272468,-0.000717,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000030,0.000019,0.000064,0.000068,0.000068,0.000360,0.271905,-0.000563,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000029,0.000019,0.000063,0.000000,0.000000,0.000350,0.271420,-0.000485,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000028,0.000018,0.000063,0.000000,0.000000,0.000340,0.270945,-0.000475,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000028,0.000018,0.000063,0.000000,0.000000,0.000330,0.270480,-0.000465,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000027,0.000018,0.000063,0.000000,0.000000,0.000321,0.270024,-0.000456,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000026,0.000017,0.000063,0.000000,0.000000,0.000312,0.269578,-0.000446,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000025,0.000017,0.000063,0.000000,0.000000,0.000303,0.269141,-0.000437,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000025,0.000016,0.000063,0.000000,0.000000,0.000295,0.268713,-0.000428,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000024,0.000016,0.000063,0.000000,0.000000,0.000287,0.268294,-0.000419,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000023,0.000016,0.000063,0.000000,0.000000,0.000280,0.267883,-0.000411,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000023,0.000015,0.000063,0.000000,0.000000,0.000273,0.267481,-0.000402,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000022,0.000015,0.000063,0.000000,0.000000,0.000266,0.267087,-0.000394,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000022,0.000015,0.000063,0.000000,0.000000,0.000259,0.266701,-0.000386,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000021,0.000014,0.000063,0.000131,0.000131,0.000252,0.266195,-0.000506,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000020,0.000014,0.000063,0.000382,0.000382,0.000246,0.265454,-0.000741,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000020,0.000013,0.000063,0.000554,0.000554,0.000239,0.264559,-0.000894,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000019,0.000012,0.000063,0.000677,0.000677,0.000232,0.263562,-0.000997,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000019,0.000011,0.000063,0.000781,0.000781,0.000224,0.262484,-0.001078,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000018,0.000011,0.000063,0.000713,0.000713,0.000217,0.261494,-0.000990,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000017,0.000010,0.000063,0.000648,0.000648,0.000209,0.260588,-0.000906,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000017,0.000009,0.000063,0.000561,0.000561,0.000202,0.259787,-0.000801,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000016,0.000009,0.000063,0.000480,0.000480,0.000194,0.259081,-0.000706,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000016,0.000008,0.000064,0.000365,0.000365,0.000187,0.258502,-0.000579,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000015,0.000008,0.000064,0.000222,0.000222,0.000180,0.258075,-0.000427,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000014,0.000008,0.000064,0.000075,0.000075,0.000173,0.257802,-0.000273,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000014,0.000007,0.000064,0.000000,0.000000,0.000167,0.257607,-0.000195,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000013,0.000007,0.000064,0.000000,0.000000,0.000161,0.257416,-0.000191,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000013,0.000007,0.000064,0.000000,0.000000,0.000155,0.257229,-0.000187,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000012,0.000007,0.000064,0.000000,0.000000,0.000149,0.257046,-0.000183,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000012,0.000007,0.000064,0.000000,0.000000,0.000144,0.256867,-0.000179,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000012,0.000007,0.000065,0.000000,0.000000,0.000139,0.256692,-0.000176,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000011,0.000007,0.000065,0.000000,0.000000,0.000135,0.256520,-0.000172,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000011,0.000006,0.000065,0.000000,0.000000,0.000130,0.256351,-0.000168,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000011,0.000006,0.000065,0.000000,0.000000,0.000126,0.256186,-0.000165,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000010,0.000006,0.000066,0.000000,0.000000,0.000122,0.256024,-0.000162,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000010,0.000006,0.000066,0.000000,0.000000,0.000118,0.255866,-0.000158,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000010,0.000006,0.000066,0.000000,0.000000,0.000115,0.255711,-0.000155,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000009,0.000006,0.000067,0.000143,0.000143,0.000111,0.255419,-0.000292,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000009,0.000005,0.000067,0.000384,0.000384,0.000108,0.254898,-0.000521,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000009,0.000005,0.000067,0.000554,0.000554,0.000104,0.254221,-0.000677,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000008,0.000004,0.000067,0.000679,0.000679,0.000100,0.253435,-0.000786,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000008,0.000003,0.000068,0.000688,0.000688,0.000095,0.252656,-0.000779,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000045,0.000000,0.000000,0.000000,0.000060,0.000008,0.000003,0.000068,0.000636,0.000636,0.000091,0.251988,-0.000668,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000045,0.000000,0.000000,0.000000,0.000061,0.000007,0.000002,0.000068,0.000562,0.000562,0.000086,0.251406,-0.000582,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000061,0.000007,0.000002,0.000068,0.000503,0.000503,0.000081,0.250903,-0.000503,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000054,0.000000,0.000000,0.000000,0.000062,0.000006,0.000002,0.000068,0.000449,0.000449,0.000077,0.250464,-0.000440,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000054,0.000000,0.000000,0.000000,0.000063,0.000006,0.000001,0.000069,0.000337,0.000337,0.000072,0.250143,-0.000321,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000050,0.000000,0.000000,0.000000,0.000063,0.000006,0.000001,0.000069,0.000207,0.000207,0.000068,0.249951,-0.000191,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000183,0.000000,0.000001,0.000000,0.000064,0.000005,0.000001,0.000069,0.000076,0.000076,0.000064,0.250021,0.000070,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000226,0.000002,0.000003,0.000002,0.000064,0.000005,0.000002,0.000071,0.000000,0.000000,0.000060,0.250205,0.000183,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000243,0.000003,0.000004,0.000003,0.000065,0.000005,0.000002,0.000073,0.000000,0.000000,0.000057,0.250401,0.000196,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000185,0.000003,0.000002,0.000003,0.000065,0.000005,0.000002,0.000073,0.000000,0.000000,0.000054,0.250537,0.000137,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000287,0.000004,0.000005,0.000004,0.000066,0.000004,0.000002,0.000074,0.000000,0.000000,0.000052,0.250768,0.000231,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000197,0.000003,0.000003,0.000003,0.000066,0.000004,0.000002,0.000074,0.000000,0.000000,0.000050,0.250909,0.000141,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000067,0.000004,0.000002,0.000073,0.000000,0.000000,0.000048,0.250856,-0.000053,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000068,0.000004,0.000002,0.000072,0.000000,0.000000,0.000046,0.250804,-0.000052,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000004,0.000002,0.000072,0.000000,0.000000,0.000044,0.250753,-0.000051,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000004,0.000002,0.000072,0.000000,0.000000,0.000043,0.250703,-0.000050,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000003,0.000002,0.000073,0.000000,0.000000,0.000041,0.250654,-0.000049,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000002,0.000073,0.000000,0.000000,0.000040,0.250606,-0.000048,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000002,0.000073,0.000000,0.000000,0.000038,0.250560,-0.000047,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000003,0.000002,0.000074,0.000126,0.000126,0.000037,0.250390,-0.000170,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000003,0.000001,0.000074,0.000370,0.000370,0.000035,0.249985,-0.000405,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000003,0.000001,0.000075,0.000540,0.000540,0.000033,0.249422,-0.000563,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000003,0.000000,0.000075,0.000660,0.000660,0.000031,0.248753,-0.000669,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000075,0.000751,0.000751,0.000029,0.248002,-0.000751,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000076,0.000715,0.000714,0.000027,0.247288,-0.000714,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000000,0.000076,0.000637,0.000632,0.000025,0.246656,-0.000632,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000000,0.000076,0.000568,0.000561,0.000023,0.246095,-0.000561,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000483,0.000475,0.000021,0.245620,-0.000475,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000362,0.000355,0.000019,0.245265,-0.000355,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000217,0.000212,0.000018,0.245053,-0.000212,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000078,0.000066,0.000064,0.000016,0.244989,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000000,0.000000,0.000015,0.244989,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000000,0.000000,0.000014,0.244989,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000013,0.244989,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000012,0.244989,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000011,0.244989,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000010,0.244989,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000080,0.000000,0.000000,0.000009,0.244989,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000000,0.000000,0.000009,0.244989,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000000,0.000000,0.000008,0.244989,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000082,0.000000,0.000000,0.000007,0.244989,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000082,0.000000,0.000000,0.000007,0.244989,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000082,0.000000,0.000000,0.000006,0.244989,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000083,0.000126,0.000123,0.000006,0.244865,-0.000123,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000368,0.000359,0.000005,0.244507,-0.000359,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000539,0.000524,0.000005,0.243983,-0.000524,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000664,0.000643,0.000005,0.243340,-0.000643,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000739,0.000712,0.000004,0.242627,-0.000712,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000685,0.000656,0.000004,0.241971,-0.000656,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000614,0.000585,0.000004,0.241386,-0.000585,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000549,0.000521,0.000003,0.240865,-0.000521,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000468,0.000442,0.000003,0.240423,-0.000442,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000352,0.000331,0.000003,0.240091,-0.000331,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000087,0.000183,0.000172,0.000003,0.239919,-0.000172,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000035,0.000033,0.000002,0.239886,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000002,0.239886,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000002,0.239886,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000002,0.239886,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000089,0.000000,0.000000,0.000002,0.239886,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000002,0.239886,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.239886,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000105,0.000099,0.000001,0.239788,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000353,0.000331,0.000001,0.239457,-0.000331,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000531,0.000496,0.000001,0.238960,-0.000496,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000654,0.000609,0.000001,0.238352,-0.000609,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000763,0.000707,0.000001,0.237645,-0.000707,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000704,0.000649,0.000001,0.236996,-0.000649,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000632,0.000579,0.000001,0.236417,-0.000579,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000564,0.000515,0.000000,0.235902,-0.000515,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000476,0.000433,0.000000,0.235469,-0.000433,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000358,0.000324,0.000000,0.235145,-0.000324,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000203,0.000183,0.000000,0.234962,-0.000183,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000047,0.000042,0.000000,0.234920,-0.000042,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234920,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000115,0.000104,0.000000,0.234816,-0.000104,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620686.csv b/test/channel_loss/channel_forcing/et/cat-2620686.csv new file mode 100644 index 000000000..e2ddd5d17 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620686.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000000,0.000820,0.000119,0.000820,0.000177,0.000177,0.009061,0.372891,-0.002842,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000757,0.000117,0.000757,0.000059,0.000059,0.008420,0.370109,-0.002782,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000701,0.000114,0.000701,0.000000,0.000000,0.007834,0.367442,-0.002667,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000649,0.000112,0.000649,0.000000,0.000000,0.007296,0.364829,-0.002612,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000603,0.000110,0.000603,0.000000,0.000000,0.006803,0.362270,-0.002559,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000560,0.000107,0.000560,0.000000,0.000000,0.006351,0.359763,-0.002507,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000521,0.000105,0.000522,0.000000,0.000000,0.005935,0.357308,-0.002456,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000486,0.000103,0.000487,0.000000,0.000000,0.005552,0.354902,-0.002406,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000454,0.000101,0.000454,0.000000,0.000000,0.005199,0.352545,-0.002357,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000424,0.000099,0.000425,0.000000,0.000000,0.004874,0.350237,-0.002309,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000397,0.000097,0.000398,0.000000,0.000000,0.004574,0.347975,-0.002261,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000372,0.000095,0.000373,0.000000,0.000000,0.004297,0.345760,-0.002215,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000349,0.000093,0.000350,0.000000,0.000000,0.004041,0.343590,-0.002170,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000328,0.000091,0.000329,0.000000,0.000000,0.003804,0.341464,-0.002126,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000308,0.000089,0.000310,0.000138,0.000138,0.003585,0.339247,-0.002217,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000290,0.000087,0.000293,0.000375,0.000375,0.003382,0.336842,-0.002405,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000274,0.000085,0.000276,0.000546,0.000546,0.003193,0.334319,-0.002523,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000258,0.000082,0.000261,0.000663,0.000663,0.003018,0.331733,-0.002586,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000244,0.000080,0.000247,0.000584,0.000584,0.002854,0.329277,-0.002456,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000801,0.000002,0.000004,0.000002,0.000004,0.000231,0.000079,0.000236,0.000551,0.000551,0.002702,0.327684,-0.001593,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000634,0.000002,0.000002,0.000002,0.000004,0.000218,0.000077,0.000224,0.000480,0.000480,0.002562,0.326032,-0.001652,1.000000,0.000002 +21,2022-08-01 21:00:00,0.000559,0.000003,0.000002,0.000003,0.000004,0.000207,0.000076,0.000214,0.000370,0.000370,0.002431,0.324448,-0.001584,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000668,0.000006,0.000009,0.000006,0.000005,0.000196,0.000075,0.000207,0.000309,0.000309,0.002309,0.323056,-0.001392,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000568,0.000007,0.000007,0.000007,0.000005,0.000186,0.000073,0.000198,0.000241,0.000241,0.002196,0.321662,-0.001393,1.000000,0.000005 +24,2022-08-02 00:00:00,0.000688,0.000013,0.000018,0.000013,0.000005,0.000177,0.000072,0.000196,0.000165,0.000165,0.002091,0.320478,-0.001184,1.000000,0.000010 +25,2022-08-02 01:00:00,0.001045,0.000039,0.000060,0.000039,0.000006,0.000169,0.000072,0.000214,0.000074,0.000074,0.001994,0.319717,-0.000762,1.000000,0.000031 +26,2022-08-02 02:00:00,0.001100,0.000061,0.000077,0.000061,0.000006,0.000161,0.000071,0.000228,0.000000,0.000000,0.001904,0.319080,-0.000636,1.000000,0.000047 +27,2022-08-02 03:00:00,0.001100,0.000073,0.000077,0.000073,0.000007,0.000154,0.000071,0.000234,0.000000,0.000000,0.001820,0.318457,-0.000623,1.000000,0.000050 +28,2022-08-02 04:00:00,0.001100,0.000077,0.000076,0.000077,0.000007,0.000147,0.000070,0.000231,0.000000,0.000000,0.001743,0.317847,-0.000610,1.000000,0.000050 +29,2022-08-02 05:00:00,0.001100,0.000076,0.000076,0.000076,0.000008,0.000141,0.000070,0.000225,0.000000,0.000000,0.001671,0.317249,-0.000598,1.000000,0.000050 +30,2022-08-02 06:00:00,0.001100,0.000076,0.000076,0.000076,0.000008,0.000136,0.000069,0.000220,0.000000,0.000000,0.001605,0.316664,-0.000586,1.000000,0.000050 +31,2022-08-02 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000009,0.000130,0.000068,0.000173,0.000000,0.000000,0.001542,0.315087,-0.001576,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000009,0.000125,0.000066,0.000150,0.000000,0.000000,0.001483,0.313543,-0.001544,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000120,0.000065,0.000130,0.000000,0.000000,0.001428,0.312030,-0.001513,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000116,0.000064,0.000126,0.000000,0.000000,0.001376,0.310548,-0.001482,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000112,0.000062,0.000122,0.000000,0.000000,0.001326,0.309097,-0.001452,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000108,0.000061,0.000119,0.000000,0.000000,0.001279,0.307675,-0.001422,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000012,0.000104,0.000060,0.000116,0.000000,0.000000,0.001235,0.306379,-0.001296,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000300,0.000001,0.000002,0.000001,0.000012,0.000100,0.000059,0.000114,0.000123,0.000123,0.001194,0.305183,-0.001196,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000013,0.000097,0.000057,0.000111,0.000320,0.000320,0.001154,0.303724,-0.001459,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000107,0.000000,0.000000,0.000000,0.000014,0.000094,0.000056,0.000108,0.000461,0.000461,0.001116,0.302064,-0.001660,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000091,0.000054,0.000105,0.000566,0.000566,0.001080,0.300330,-0.001735,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000165,0.000000,0.000000,0.000000,0.000015,0.000088,0.000053,0.000102,0.000653,0.000653,0.001045,0.298609,-0.001721,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000085,0.000051,0.000100,0.000577,0.000577,0.001011,0.296836,-0.001773,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000082,0.000050,0.000098,0.000540,0.000540,0.000979,0.295135,-0.001701,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000080,0.000048,0.000096,0.000527,0.000527,0.000948,0.293543,-0.001591,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000077,0.000047,0.000094,0.000449,0.000449,0.000918,0.292061,-0.001482,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000075,0.000046,0.000092,0.000336,0.000336,0.000889,0.290720,-0.001341,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000072,0.000045,0.000091,0.000204,0.000204,0.000861,0.289535,-0.001185,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000126,0.000000,0.000000,0.000000,0.000019,0.000070,0.000044,0.000089,0.000052,0.000052,0.000835,0.288584,-0.000951,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000203,0.000002,0.000003,0.000002,0.000020,0.000068,0.000043,0.000089,0.000000,0.000000,0.000811,0.287777,-0.000807,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000200,0.000002,0.000003,0.000002,0.000020,0.000066,0.000042,0.000088,0.000000,0.000000,0.000787,0.286983,-0.000794,1.000000,0.000002 +52,2022-08-03 04:00:00,0.000102,0.000002,0.000001,0.000002,0.000021,0.000064,0.000042,0.000087,0.000000,0.000000,0.000765,0.286112,-0.000872,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000200,0.000002,0.000002,0.000002,0.000022,0.000062,0.000041,0.000086,0.000000,0.000000,0.000743,0.285352,-0.000760,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000107,0.000001,0.000001,0.000001,0.000022,0.000061,0.000040,0.000084,0.000000,0.000000,0.000723,0.284518,-0.000834,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000023,0.000059,0.000039,0.000083,0.000000,0.000000,0.000704,0.283598,-0.000921,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000057,0.000039,0.000081,0.000000,0.000000,0.000685,0.282696,-0.000902,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000056,0.000038,0.000080,0.000000,0.000000,0.000667,0.281813,-0.000883,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000054,0.000037,0.000079,0.000000,0.000000,0.000650,0.280947,-0.000865,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000053,0.000036,0.000079,0.000000,0.000000,0.000633,0.280100,-0.000848,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000052,0.000036,0.000078,0.000000,0.000000,0.000617,0.279269,-0.000830,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000050,0.000035,0.000077,0.000000,0.000000,0.000602,0.278456,-0.000813,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000049,0.000034,0.000077,0.000134,0.000134,0.000587,0.277528,-0.000928,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000048,0.000033,0.000076,0.000386,0.000386,0.000572,0.276371,-0.001156,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000047,0.000032,0.000076,0.000554,0.000554,0.000557,0.275074,-0.001297,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000045,0.000031,0.000075,0.000674,0.000674,0.000542,0.273686,-0.001388,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000044,0.000029,0.000075,0.000669,0.000669,0.000528,0.272331,-0.001355,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000043,0.000028,0.000074,0.000626,0.000626,0.000513,0.271108,-0.001223,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000005,0.000000,0.000000,0.000000,0.000032,0.000042,0.000027,0.000074,0.000567,0.000567,0.000499,0.269911,-0.001197,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000040,0.000026,0.000073,0.000519,0.000519,0.000484,0.268843,-0.001069,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000039,0.000025,0.000073,0.000428,0.000428,0.000470,0.267884,-0.000958,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000038,0.000025,0.000072,0.000332,0.000332,0.000457,0.266978,-0.000906,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000037,0.000024,0.000072,0.000215,0.000215,0.000444,0.266205,-0.000773,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000036,0.000023,0.000071,0.000067,0.000067,0.000431,0.265592,-0.000613,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000035,0.000023,0.000071,0.000000,0.000000,0.000419,0.265058,-0.000534,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000034,0.000022,0.000071,0.000000,0.000000,0.000407,0.264535,-0.000523,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000033,0.000022,0.000071,0.000000,0.000000,0.000396,0.264022,-0.000513,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000032,0.000022,0.000070,0.000000,0.000000,0.000386,0.263519,-0.000502,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000031,0.000021,0.000070,0.000000,0.000000,0.000375,0.263027,-0.000492,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000031,0.000021,0.000070,0.000000,0.000000,0.000366,0.262545,-0.000482,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000030,0.000020,0.000070,0.000000,0.000000,0.000356,0.262073,-0.000472,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000029,0.000020,0.000070,0.000000,0.000000,0.000347,0.261611,-0.000463,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000028,0.000019,0.000070,0.000000,0.000000,0.000338,0.261157,-0.000453,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000028,0.000019,0.000070,0.000000,0.000000,0.000330,0.260713,-0.000444,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000027,0.000019,0.000070,0.000000,0.000000,0.000321,0.260279,-0.000435,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000044,0.000026,0.000018,0.000070,0.000000,0.000000,0.000314,0.259853,-0.000425,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000026,0.000018,0.000070,0.000129,0.000129,0.000306,0.259309,-0.000544,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000025,0.000017,0.000070,0.000381,0.000381,0.000298,0.258530,-0.000780,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000024,0.000016,0.000070,0.000552,0.000552,0.000290,0.257598,-0.000931,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000024,0.000015,0.000070,0.000673,0.000673,0.000282,0.256568,-0.001031,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000023,0.000014,0.000070,0.000773,0.000773,0.000273,0.255461,-0.001107,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000022,0.000013,0.000070,0.000699,0.000699,0.000265,0.254448,-0.001012,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000021,0.000013,0.000070,0.000642,0.000642,0.000256,0.253512,-0.000936,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000021,0.000012,0.000070,0.000564,0.000564,0.000247,0.252671,-0.000841,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000020,0.000011,0.000070,0.000479,0.000479,0.000239,0.251931,-0.000740,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000019,0.000011,0.000070,0.000366,0.000366,0.000230,0.251317,-0.000615,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000018,0.000010,0.000070,0.000222,0.000222,0.000222,0.250856,-0.000461,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000018,0.000010,0.000070,0.000073,0.000073,0.000214,0.250552,-0.000305,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000017,0.000010,0.000070,0.000000,0.000000,0.000206,0.250324,-0.000227,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000017,0.000010,0.000070,0.000000,0.000000,0.000199,0.250101,-0.000223,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000016,0.000009,0.000070,0.000000,0.000000,0.000193,0.249883,-0.000218,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000016,0.000009,0.000070,0.000000,0.000000,0.000186,0.249669,-0.000214,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000015,0.000009,0.000070,0.000000,0.000000,0.000180,0.249460,-0.000209,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000015,0.000009,0.000071,0.000000,0.000000,0.000174,0.249254,-0.000205,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000009,0.000071,0.000000,0.000000,0.000169,0.249053,-0.000201,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000008,0.000071,0.000000,0.000000,0.000164,0.248856,-0.000197,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000013,0.000008,0.000071,0.000000,0.000000,0.000159,0.248664,-0.000193,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000154,0.248475,-0.000189,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000012,0.000008,0.000072,0.000000,0.000000,0.000150,0.248290,-0.000185,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000012,0.000008,0.000072,0.000000,0.000000,0.000145,0.248108,-0.000181,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000012,0.000007,0.000072,0.000142,0.000142,0.000141,0.247792,-0.000317,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000011,0.000007,0.000073,0.000384,0.000384,0.000137,0.247244,-0.000547,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000006,0.000073,0.000552,0.000552,0.000132,0.246543,-0.000701,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000011,0.000006,0.000073,0.000675,0.000675,0.000127,0.245736,-0.000807,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000010,0.000005,0.000073,0.000683,0.000683,0.000122,0.244938,-0.000798,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000064,0.000010,0.000004,0.000074,0.000636,0.000636,0.000116,0.244208,-0.000730,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000006,0.000000,0.000000,0.000000,0.000065,0.000009,0.000004,0.000074,0.000558,0.000558,0.000111,0.243570,-0.000639,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000016,0.000000,0.000000,0.000000,0.000065,0.000009,0.000003,0.000074,0.000514,0.000514,0.000105,0.242997,-0.000573,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000016,0.000000,0.000000,0.000000,0.000066,0.000008,0.000003,0.000074,0.000450,0.000450,0.000100,0.242499,-0.000499,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000016,0.000000,0.000000,0.000000,0.000066,0.000008,0.000002,0.000074,0.000338,0.000338,0.000094,0.242120,-0.000378,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000067,0.000007,0.000002,0.000074,0.000208,0.000208,0.000089,0.241868,-0.000253,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000189,0.000000,0.000001,0.000000,0.000068,0.000007,0.000002,0.000075,0.000075,0.000075,0.000084,0.241929,0.000061,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000259,0.000002,0.000004,0.000002,0.000068,0.000007,0.000002,0.000077,0.000000,0.000000,0.000080,0.242128,0.000199,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000300,0.000004,0.000005,0.000004,0.000069,0.000006,0.000003,0.000079,0.000000,0.000000,0.000076,0.242361,0.000233,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000200,0.000003,0.000002,0.000003,0.000069,0.000006,0.000003,0.000079,0.000000,0.000000,0.000073,0.242494,0.000133,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000300,0.000004,0.000005,0.000004,0.000070,0.000006,0.000003,0.000080,0.000000,0.000000,0.000070,0.242720,0.000226,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000200,0.000003,0.000002,0.000003,0.000071,0.000006,0.000003,0.000079,0.000000,0.000000,0.000068,0.242846,0.000126,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000071,0.000005,0.000003,0.000078,0.000000,0.000000,0.000065,0.242776,-0.000070,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000005,0.000003,0.000077,0.000000,0.000000,0.000063,0.242707,-0.000069,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000005,0.000003,0.000077,0.000000,0.000000,0.000061,0.242640,-0.000067,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000005,0.000003,0.000078,0.000000,0.000000,0.000059,0.242574,-0.000066,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000005,0.000003,0.000078,0.000000,0.000000,0.000057,0.242509,-0.000065,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000005,0.000003,0.000079,0.000000,0.000000,0.000055,0.242445,-0.000063,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000004,0.000003,0.000079,0.000000,0.000000,0.000053,0.242383,-0.000062,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000004,0.000002,0.000079,0.000125,0.000125,0.000051,0.242200,-0.000184,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000002,0.000080,0.000371,0.000371,0.000049,0.241779,-0.000421,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000002,0.000080,0.000541,0.000541,0.000047,0.241201,-0.000578,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000001,0.000081,0.000654,0.000654,0.000044,0.240523,-0.000678,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000003,0.000000,0.000081,0.000745,0.000745,0.000041,0.239770,-0.000753,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000003,0.000000,0.000081,0.000709,0.000709,0.000038,0.239062,-0.000709,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000003,0.000000,0.000081,0.000632,0.000631,0.000035,0.238431,-0.000631,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000000,0.000082,0.000568,0.000564,0.000032,0.237867,-0.000564,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000002,0.000000,0.000082,0.000481,0.000476,0.000030,0.237391,-0.000476,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000002,0.000000,0.000082,0.000362,0.000357,0.000028,0.237034,-0.000357,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000083,0.000217,0.000213,0.000026,0.236821,-0.000213,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000083,0.000065,0.000064,0.000024,0.236757,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000083,0.000000,0.000000,0.000022,0.236757,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000020,0.236757,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000084,0.000000,0.000000,0.000019,0.236757,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000001,0.000000,0.000085,0.000000,0.000000,0.000017,0.236757,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000085,0.000000,0.000000,0.000016,0.236757,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000085,0.000000,0.000000,0.000015,0.236757,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000013,0.236757,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000012,0.236757,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000011,0.236757,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000011,0.236757,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000087,0.000000,0.000000,0.000010,0.236757,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000009,0.236757,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000088,0.000126,0.000124,0.000008,0.236634,-0.000124,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000368,0.000360,0.000008,0.236273,-0.000360,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000538,0.000526,0.000007,0.235748,-0.000526,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000660,0.000642,0.000007,0.235106,-0.000642,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000731,0.000708,0.000006,0.234397,-0.000708,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000672,0.000647,0.000006,0.233750,-0.000647,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000600,0.000576,0.000005,0.233174,-0.000576,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000549,0.000524,0.000005,0.232650,-0.000524,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000465,0.000442,0.000004,0.232208,-0.000442,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000349,0.000331,0.000004,0.231877,-0.000331,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000182,0.000172,0.000004,0.231705,-0.000172,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000035,0.000033,0.000003,0.231672,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000003,0.231672,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.231672,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.231672,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.231672,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.231672,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.231672,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.231672,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.231672,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.231673,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000002,0.231674,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000001,0.231674,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000000,0.000000,0.000001,0.231675,0.000002,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000104,0.000099,0.000001,0.231577,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000353,0.000333,0.000001,0.231244,-0.000333,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000530,0.000498,0.000001,0.230746,-0.000498,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000650,0.000609,0.000001,0.230137,-0.000609,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000760,0.000709,0.000001,0.229428,-0.000709,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000700,0.000649,0.000001,0.228779,-0.000649,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000625,0.000577,0.000001,0.228202,-0.000577,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000565,0.000519,0.000001,0.227684,-0.000519,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000475,0.000434,0.000001,0.227249,-0.000434,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000357,0.000325,0.000001,0.226924,-0.000325,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000202,0.000184,0.000001,0.226741,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000044,0.000040,0.000001,0.226700,-0.000040,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.226700,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000113,0.000103,0.000000,0.226598,-0.000103,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620687.csv b/test/channel_loss/channel_forcing/et/cat-2620687.csv new file mode 100644 index 000000000..3fa761b51 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620687.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000104,0.000000,0.000000,0.000000,0.000000,0.000822,0.000138,0.000822,0.000178,0.000178,0.009078,0.372072,-0.002942,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000760,0.000135,0.000760,0.000057,0.000057,0.008453,0.369206,-0.002866,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000705,0.000133,0.000705,0.000000,0.000000,0.007881,0.366454,-0.002752,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000655,0.000130,0.000655,0.000000,0.000000,0.007356,0.363759,-0.002696,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000609,0.000127,0.000609,0.000000,0.000000,0.006874,0.361118,-0.002641,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000568,0.000125,0.000568,0.000000,0.000000,0.006431,0.358531,-0.002587,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000122,0.000530,0.000000,0.000000,0.006023,0.355997,-0.002534,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000495,0.000120,0.000495,0.000000,0.000000,0.005648,0.353514,-0.002483,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000463,0.000117,0.000464,0.000000,0.000000,0.005302,0.351082,-0.002432,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000434,0.000115,0.000435,0.000000,0.000000,0.004983,0.348699,-0.002383,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000407,0.000113,0.000408,0.000000,0.000000,0.004688,0.346365,-0.002334,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000110,0.000384,0.000000,0.000000,0.004416,0.344079,-0.002287,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000360,0.000108,0.000361,0.000000,0.000000,0.004164,0.341839,-0.002240,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000339,0.000106,0.000341,0.000000,0.000000,0.003931,0.339645,-0.002194,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000320,0.000104,0.000322,0.000135,0.000135,0.003715,0.337362,-0.002282,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000302,0.000101,0.000304,0.000378,0.000378,0.003514,0.334889,-0.002473,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000285,0.000098,0.000288,0.000549,0.000549,0.003327,0.332299,-0.002591,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000003,0.000270,0.000096,0.000273,0.000668,0.000668,0.003153,0.329646,-0.002653,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000256,0.000093,0.000259,0.000579,0.000579,0.002990,0.327132,-0.002514,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000888,0.000004,0.000007,0.000004,0.000004,0.000242,0.000092,0.000250,0.000551,0.000551,0.002839,0.325561,-0.001572,1.000000,0.000003 +20,2022-08-01 20:00:00,0.000683,0.000003,0.000002,0.000003,0.000004,0.000230,0.000090,0.000237,0.000480,0.000480,0.002699,0.323894,-0.001667,1.000000,0.000002 +21,2022-08-01 21:00:00,0.000548,0.000003,0.000002,0.000003,0.000004,0.000219,0.000088,0.000226,0.000358,0.000358,0.002569,0.322249,-0.001645,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000624,0.000004,0.000006,0.000004,0.000005,0.000208,0.000087,0.000217,0.000308,0.000308,0.002447,0.320758,-0.001491,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000506,0.000004,0.000004,0.000004,0.000005,0.000198,0.000085,0.000208,0.000235,0.000235,0.002334,0.319255,-0.001503,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000598,0.000008,0.000011,0.000008,0.000006,0.000189,0.000084,0.000203,0.000166,0.000166,0.002229,0.317933,-0.001322,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000905,0.000026,0.000040,0.000026,0.000006,0.000181,0.000083,0.000212,0.000072,0.000072,0.002131,0.317002,-0.000930,1.000000,0.000020 +26,2022-08-02 02:00:00,0.001101,0.000050,0.000068,0.000050,0.000006,0.000173,0.000082,0.000229,0.000000,0.000000,0.002041,0.316325,-0.000677,1.000000,0.000039 +27,2022-08-02 03:00:00,0.001101,0.000063,0.000068,0.000063,0.000007,0.000166,0.000082,0.000235,0.000000,0.000000,0.001957,0.315662,-0.000663,1.000000,0.000044 +28,2022-08-02 04:00:00,0.001109,0.000069,0.000069,0.000069,0.000007,0.000159,0.000081,0.000235,0.000000,0.000000,0.001879,0.315019,-0.000643,1.000000,0.000045 +29,2022-08-02 05:00:00,0.001100,0.000068,0.000068,0.000068,0.000008,0.000153,0.000081,0.000229,0.000000,0.000000,0.001807,0.314382,-0.000637,1.000000,0.000044 +30,2022-08-02 06:00:00,0.001100,0.000068,0.000068,0.000068,0.000008,0.000147,0.000080,0.000224,0.000000,0.000000,0.001739,0.313758,-0.000624,1.000000,0.000044 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000009,0.000142,0.000078,0.000181,0.000000,0.000000,0.001676,0.312136,-0.001622,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000009,0.000137,0.000077,0.000159,0.000000,0.000000,0.001616,0.310546,-0.001589,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000132,0.000075,0.000142,0.000000,0.000000,0.001560,0.308989,-0.001557,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000127,0.000074,0.000138,0.000000,0.000000,0.001506,0.307464,-0.001525,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000123,0.000072,0.000134,0.000000,0.000000,0.001456,0.305969,-0.001494,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000119,0.000071,0.000130,0.000000,0.000000,0.001407,0.304506,-0.001464,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000012,0.000115,0.000069,0.000127,0.000000,0.000000,0.001362,0.303169,-0.001337,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000284,0.000001,0.000002,0.000001,0.000013,0.000111,0.000068,0.000125,0.000121,0.000121,0.001319,0.301920,-0.001249,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000013,0.000108,0.000067,0.000121,0.000324,0.000324,0.001278,0.300417,-0.001503,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000104,0.000065,0.000118,0.000469,0.000469,0.001238,0.298705,-0.001712,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000101,0.000063,0.000115,0.000573,0.000573,0.001200,0.296925,-0.001780,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000234,0.000000,0.000000,0.000000,0.000015,0.000098,0.000061,0.000113,0.000652,0.000652,0.001164,0.295237,-0.001689,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000095,0.000060,0.000111,0.000563,0.000563,0.001128,0.293440,-0.001797,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000092,0.000058,0.000108,0.000539,0.000539,0.001094,0.291703,-0.001737,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000089,0.000056,0.000106,0.000531,0.000531,0.001061,0.290072,-0.001632,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000086,0.000055,0.000104,0.000452,0.000452,0.001029,0.288551,-0.001521,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000027,0.000000,0.000000,0.000000,0.000018,0.000084,0.000053,0.000102,0.000340,0.000340,0.000999,0.287135,-0.001415,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000081,0.000052,0.000100,0.000205,0.000205,0.000969,0.285916,-0.001219,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000123,0.000000,0.000000,0.000000,0.000020,0.000079,0.000051,0.000099,0.000050,0.000050,0.000941,0.284932,-0.000984,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000135,0.000001,0.000001,0.000001,0.000020,0.000077,0.000050,0.000098,0.000000,0.000000,0.000915,0.284028,-0.000904,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000171,0.000001,0.000002,0.000001,0.000021,0.000075,0.000049,0.000097,0.000000,0.000000,0.000889,0.283177,-0.000851,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000100,0.000001,0.000001,0.000001,0.000022,0.000073,0.000048,0.000095,0.000000,0.000000,0.000865,0.282275,-0.000902,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000173,0.000001,0.000002,0.000001,0.000022,0.000071,0.000048,0.000094,0.000000,0.000000,0.000842,0.281461,-0.000813,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000100,0.000001,0.000001,0.000001,0.000023,0.000069,0.000047,0.000092,0.000000,0.000000,0.000820,0.280594,-0.000867,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000067,0.000046,0.000091,0.000000,0.000000,0.000799,0.279647,-0.000947,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000065,0.000045,0.000090,0.000000,0.000000,0.000778,0.278719,-0.000928,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000064,0.000044,0.000088,0.000000,0.000000,0.000758,0.277810,-0.000909,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000062,0.000043,0.000088,0.000000,0.000000,0.000739,0.276919,-0.000890,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000060,0.000042,0.000087,0.000000,0.000000,0.000721,0.276047,-0.000872,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000059,0.000041,0.000086,0.000000,0.000000,0.000703,0.275193,-0.000855,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000057,0.000040,0.000085,0.000000,0.000000,0.000686,0.274355,-0.000837,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000056,0.000039,0.000084,0.000135,0.000135,0.000670,0.273404,-0.000952,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000055,0.000038,0.000084,0.000395,0.000395,0.000653,0.272216,-0.001188,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000053,0.000037,0.000083,0.000566,0.000566,0.000637,0.270885,-0.001331,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000004,0.000000,0.000000,0.000000,0.000031,0.000052,0.000035,0.000082,0.000680,0.000680,0.000620,0.269474,-0.001411,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000051,0.000034,0.000082,0.000674,0.000674,0.000604,0.268093,-0.001381,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000032,0.000049,0.000033,0.000081,0.000615,0.000615,0.000588,0.266896,-0.001197,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000029,0.000000,0.000000,0.000000,0.000033,0.000048,0.000032,0.000080,0.000562,0.000562,0.000572,0.265705,-0.001190,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000064,0.000000,0.000000,0.000000,0.000033,0.000046,0.000031,0.000080,0.000512,0.000512,0.000556,0.264623,-0.001082,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000045,0.000030,0.000079,0.000426,0.000426,0.000540,0.263645,-0.000978,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000044,0.000029,0.000079,0.000328,0.000328,0.000525,0.262722,-0.000923,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000043,0.000028,0.000078,0.000215,0.000215,0.000510,0.261928,-0.000794,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000041,0.000027,0.000078,0.000064,0.000064,0.000496,0.261298,-0.000629,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000040,0.000027,0.000077,0.000000,0.000000,0.000482,0.260744,-0.000554,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000039,0.000026,0.000077,0.000000,0.000000,0.000469,0.260201,-0.000543,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000038,0.000026,0.000077,0.000000,0.000000,0.000457,0.259669,-0.000532,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000037,0.000025,0.000076,0.000000,0.000000,0.000445,0.259148,-0.000521,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000036,0.000025,0.000076,0.000000,0.000000,0.000433,0.258638,-0.000510,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000035,0.000024,0.000076,0.000000,0.000000,0.000422,0.258138,-0.000500,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000034,0.000024,0.000076,0.000000,0.000000,0.000411,0.257648,-0.000490,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000033,0.000023,0.000076,0.000000,0.000000,0.000401,0.257168,-0.000480,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000033,0.000023,0.000075,0.000000,0.000000,0.000391,0.256698,-0.000470,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000032,0.000022,0.000075,0.000000,0.000000,0.000381,0.256238,-0.000461,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000031,0.000022,0.000075,0.000000,0.000000,0.000372,0.255786,-0.000451,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000045,0.000030,0.000021,0.000075,0.000000,0.000000,0.000363,0.255346,-0.000441,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000046,0.000030,0.000021,0.000075,0.000128,0.000128,0.000354,0.254788,-0.000557,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000029,0.000020,0.000075,0.000386,0.000386,0.000345,0.253989,-0.000799,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000028,0.000019,0.000075,0.000555,0.000555,0.000336,0.253040,-0.000949,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000027,0.000018,0.000075,0.000679,0.000679,0.000327,0.251989,-0.001051,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000026,0.000017,0.000075,0.000767,0.000767,0.000317,0.250873,-0.001116,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000026,0.000016,0.000075,0.000708,0.000708,0.000307,0.249837,-0.001036,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000025,0.000015,0.000075,0.000639,0.000639,0.000297,0.248891,-0.000946,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000024,0.000014,0.000075,0.000568,0.000568,0.000287,0.248033,-0.000858,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000023,0.000013,0.000074,0.000481,0.000481,0.000278,0.247278,-0.000755,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000022,0.000013,0.000074,0.000365,0.000365,0.000268,0.246652,-0.000626,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000022,0.000012,0.000074,0.000223,0.000223,0.000258,0.246178,-0.000474,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000021,0.000012,0.000074,0.000069,0.000069,0.000249,0.245864,-0.000314,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000020,0.000012,0.000074,0.000000,0.000000,0.000241,0.245624,-0.000240,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000019,0.000011,0.000074,0.000000,0.000000,0.000233,0.245389,-0.000235,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000019,0.000011,0.000074,0.000000,0.000000,0.000225,0.245159,-0.000230,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000018,0.000011,0.000074,0.000000,0.000000,0.000218,0.244933,-0.000226,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000018,0.000011,0.000074,0.000000,0.000000,0.000211,0.244712,-0.000221,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000017,0.000010,0.000075,0.000000,0.000000,0.000204,0.244496,-0.000216,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000017,0.000010,0.000075,0.000000,0.000000,0.000198,0.244284,-0.000212,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000016,0.000010,0.000075,0.000000,0.000000,0.000192,0.244076,-0.000208,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000016,0.000010,0.000075,0.000000,0.000000,0.000186,0.243873,-0.000203,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000015,0.000010,0.000075,0.000000,0.000000,0.000181,0.243673,-0.000199,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000015,0.000009,0.000076,0.000000,0.000000,0.000176,0.243478,-0.000195,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000014,0.000009,0.000076,0.000000,0.000000,0.000171,0.243287,-0.000191,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000014,0.000009,0.000076,0.000141,0.000141,0.000166,0.242961,-0.000326,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000013,0.000008,0.000076,0.000389,0.000389,0.000161,0.242399,-0.000562,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000013,0.000008,0.000077,0.000558,0.000558,0.000155,0.241683,-0.000716,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000012,0.000007,0.000077,0.000681,0.000681,0.000150,0.240861,-0.000822,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000012,0.000006,0.000077,0.000684,0.000684,0.000144,0.240053,-0.000808,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000011,0.000000,0.000000,0.000000,0.000066,0.000011,0.000005,0.000077,0.000629,0.000629,0.000137,0.239326,-0.000727,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000011,0.000000,0.000000,0.000000,0.000066,0.000011,0.000005,0.000077,0.000554,0.000554,0.000131,0.238688,-0.000639,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000017,0.000000,0.000000,0.000000,0.000067,0.000010,0.000004,0.000077,0.000518,0.000518,0.000125,0.238102,-0.000585,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000017,0.000000,0.000000,0.000000,0.000067,0.000010,0.000004,0.000077,0.000452,0.000452,0.000118,0.237594,-0.000508,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000017,0.000000,0.000000,0.000000,0.000068,0.000009,0.000003,0.000077,0.000341,0.000341,0.000112,0.237205,-0.000389,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000011,0.000000,0.000000,0.000000,0.000069,0.000009,0.000003,0.000078,0.000212,0.000212,0.000106,0.236945,-0.000260,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000184,0.000000,0.000001,0.000000,0.000069,0.000008,0.000003,0.000078,0.000072,0.000072,0.000101,0.236996,0.000051,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000274,0.000002,0.000004,0.000002,0.000070,0.000008,0.000003,0.000080,0.000000,0.000000,0.000096,0.237201,0.000205,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000279,0.000003,0.000004,0.000003,0.000071,0.000008,0.000003,0.000081,0.000000,0.000000,0.000092,0.237407,0.000206,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000200,0.000003,0.000002,0.000003,0.000071,0.000007,0.000003,0.000081,0.000000,0.000000,0.000088,0.237533,0.000126,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000291,0.000004,0.000004,0.000004,0.000072,0.000007,0.000004,0.000082,0.000000,0.000000,0.000084,0.237744,0.000210,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000201,0.000003,0.000002,0.000003,0.000072,0.000007,0.000004,0.000082,0.000000,0.000000,0.000081,0.237864,0.000121,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000073,0.000007,0.000004,0.000081,0.000000,0.000000,0.000079,0.237787,-0.000077,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000006,0.000004,0.000080,0.000000,0.000000,0.000076,0.237712,-0.000075,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000006,0.000004,0.000080,0.000000,0.000000,0.000073,0.237638,-0.000074,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000006,0.000003,0.000081,0.000000,0.000000,0.000071,0.237566,-0.000072,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000006,0.000003,0.000081,0.000000,0.000000,0.000069,0.237495,-0.000071,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000003,0.000082,0.000000,0.000000,0.000066,0.237425,-0.000069,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000003,0.000082,0.000000,0.000000,0.000064,0.237357,-0.000068,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000003,0.000082,0.000124,0.000124,0.000062,0.237170,-0.000188,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000005,0.000003,0.000083,0.000381,0.000381,0.000060,0.236734,-0.000436,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000005,0.000002,0.000083,0.000547,0.000547,0.000057,0.236144,-0.000590,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000005,0.000000,0.000000,0.000000,0.000079,0.000005,0.000001,0.000083,0.000660,0.000660,0.000054,0.235461,-0.000683,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000001,0.000084,0.000741,0.000741,0.000051,0.234707,-0.000754,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000004,0.000000,0.000084,0.000706,0.000706,0.000047,0.234001,-0.000706,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000000,0.000084,0.000624,0.000624,0.000043,0.233378,-0.000624,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000000,0.000084,0.000562,0.000559,0.000040,0.232819,-0.000559,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000003,0.000000,0.000085,0.000477,0.000473,0.000037,0.232346,-0.000473,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000003,0.000000,0.000085,0.000358,0.000353,0.000034,0.231993,-0.000353,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000003,0.000000,0.000085,0.000215,0.000212,0.000031,0.231781,-0.000212,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000086,0.000061,0.000060,0.000029,0.231721,-0.000060,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000086,0.000000,0.000000,0.000027,0.231721,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000086,0.000000,0.000000,0.000025,0.231721,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000000,0.000000,0.000023,0.231721,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000000,0.000000,0.000021,0.231721,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000000,0.000000,0.000019,0.231721,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000088,0.000000,0.000000,0.000018,0.231721,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000016,0.231721,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000089,0.000000,0.000000,0.000015,0.231721,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000014,0.231721,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000090,0.000000,0.000000,0.000013,0.231721,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000000,0.000000,0.000012,0.231721,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000000,0.000000,0.000011,0.231721,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000124,0.000122,0.000010,0.231599,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000375,0.000369,0.000009,0.231231,-0.000369,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000548,0.000536,0.000009,0.230694,-0.000536,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000664,0.000648,0.000008,0.230047,-0.000648,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000092,0.000722,0.000701,0.000007,0.229346,-0.000701,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000662,0.000640,0.000007,0.228706,-0.000640,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000093,0.000594,0.000571,0.000006,0.228135,-0.000571,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000094,0.000551,0.000528,0.000006,0.227608,-0.000528,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000466,0.000444,0.000005,0.227163,-0.000444,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000349,0.000331,0.000005,0.226832,-0.000331,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000182,0.000173,0.000005,0.226659,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000033,0.000031,0.000004,0.226628,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000004,0.226628,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000004,0.226628,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000097,0.000000,0.000000,0.000003,0.226628,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000003,0.226628,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000003,0.226628,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.226628,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000002,0.226628,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000000,0.000000,0.000002,0.226628,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000002,0.226628,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000002,0.226628,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000002,0.226628,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000002,0.226630,0.000002,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000102,0.000097,0.000001,0.226537,-0.000093,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000361,0.000342,0.000001,0.226197,-0.000340,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000538,0.000507,0.000001,0.225690,-0.000507,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000656,0.000616,0.000001,0.225074,-0.000615,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000754,0.000705,0.000001,0.224369,-0.000705,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000701,0.000652,0.000001,0.223717,-0.000652,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000623,0.000577,0.000001,0.223140,-0.000577,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000562,0.000517,0.000001,0.222623,-0.000517,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000474,0.000435,0.000001,0.222188,-0.000435,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000355,0.000324,0.000001,0.221863,-0.000324,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000203,0.000185,0.000001,0.221678,-0.000185,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000040,0.000037,0.000001,0.221642,-0.000037,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.221642,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.221642,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000000,0.221642,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000109,0.000099,0.000000,0.221542,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620688.csv b/test/channel_loss/channel_forcing/et/cat-2620688.csv new file mode 100644 index 000000000..14d918059 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620688.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000009,0.000000,0.000000,0.000000,0.000000,0.000814,0.000055,0.000814,0.000173,0.000173,0.009002,0.376522,-0.001887,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000747,0.000054,0.000747,0.000052,0.000052,0.008309,0.374788,-0.001735,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000686,0.000052,0.000686,0.000000,0.000000,0.007676,0.373143,-0.001645,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000630,0.000051,0.000630,0.000000,0.000000,0.007097,0.371536,-0.001607,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000580,0.000050,0.000581,0.000000,0.000000,0.006567,0.369965,-0.001571,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000535,0.000049,0.000535,0.000000,0.000000,0.006081,0.368430,-0.001535,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000494,0.000048,0.000494,0.000000,0.000000,0.005635,0.366930,-0.001500,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000456,0.000047,0.000456,0.000000,0.000000,0.005225,0.365464,-0.001466,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000422,0.000046,0.000422,0.000000,0.000000,0.004849,0.364032,-0.001433,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000391,0.000045,0.000391,0.000000,0.000000,0.004503,0.362632,-0.001400,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000362,0.000044,0.000362,0.000000,0.000000,0.004185,0.361263,-0.001368,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000336,0.000043,0.000336,0.000000,0.000000,0.003892,0.359926,-0.001337,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000312,0.000042,0.000312,0.000000,0.000000,0.003622,0.358619,-0.001307,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000290,0.000041,0.000291,0.000000,0.000000,0.003374,0.357342,-0.001277,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000269,0.000040,0.000270,0.000138,0.000138,0.003144,0.355960,-0.001383,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000251,0.000039,0.000252,0.000389,0.000389,0.002932,0.354363,-0.001596,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000233,0.000037,0.000235,0.000544,0.000544,0.002736,0.352651,-0.001712,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000218,0.000036,0.000219,0.000662,0.000662,0.002554,0.350863,-0.001788,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000203,0.000035,0.000205,0.000555,0.000555,0.002386,0.349220,-0.001643,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000531,0.000000,0.000000,0.000000,0.000002,0.000189,0.000034,0.000192,0.000518,0.000518,0.002230,0.348170,-0.001050,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000755,0.000004,0.000008,0.000004,0.000002,0.000177,0.000033,0.000184,0.000465,0.000465,0.002087,0.347406,-0.000763,1.000000,0.000004 +21,2022-08-01 21:00:00,0.000921,0.000018,0.000029,0.000018,0.000003,0.000166,0.000033,0.000186,0.000359,0.000359,0.001954,0.346905,-0.000501,1.000000,0.000015 +22,2022-08-01 22:00:00,0.000791,0.000021,0.000022,0.000021,0.000003,0.000155,0.000033,0.000179,0.000303,0.000303,0.001832,0.346349,-0.000556,1.000000,0.000016 +23,2022-08-01 23:00:00,0.000710,0.000023,0.000022,0.000023,0.000003,0.000145,0.000032,0.000172,0.000224,0.000224,0.001719,0.345804,-0.000545,1.000000,0.000014 +24,2022-08-02 00:00:00,0.000723,0.000026,0.000029,0.000026,0.000003,0.000136,0.000032,0.000165,0.000161,0.000161,0.001614,0.345339,-0.000465,1.000000,0.000017 +25,2022-08-02 01:00:00,0.001199,0.000073,0.000111,0.000073,0.000004,0.000128,0.000032,0.000205,0.000068,0.000068,0.001518,0.345360,0.000021,1.000000,0.000056 +26,2022-08-02 02:00:00,0.001227,0.000105,0.000130,0.000105,0.000004,0.000121,0.000032,0.000230,0.000000,0.000000,0.001429,0.345457,0.000097,1.000000,0.000081 +27,2022-08-02 03:00:00,0.001237,0.000128,0.000132,0.000128,0.000004,0.000114,0.000032,0.000245,0.000000,0.000000,0.001348,0.345559,0.000102,1.000000,0.000086 +28,2022-08-02 04:00:00,0.001302,0.000139,0.000146,0.000139,0.000004,0.000107,0.000032,0.000251,0.000000,0.000000,0.001273,0.345708,0.000150,1.000000,0.000092 +29,2022-08-02 05:00:00,0.001124,0.000123,0.000110,0.000123,0.000005,0.000101,0.000032,0.000229,0.000000,0.000000,0.001204,0.345715,0.000007,1.000000,0.000079 +30,2022-08-02 06:00:00,0.001124,0.000117,0.000110,0.000117,0.000005,0.000096,0.000032,0.000218,0.000000,0.000000,0.001140,0.345722,0.000007,1.000000,0.000072 +31,2022-08-02 07:00:00,0.000000,0.000050,0.000000,0.000050,0.000005,0.000091,0.000031,0.000146,0.000000,0.000000,0.001080,0.344738,-0.000984,1.000000,0.000022 +32,2022-08-02 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000006,0.000086,0.000031,0.000114,0.000000,0.000000,0.001025,0.343777,-0.000961,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000082,0.000030,0.000088,0.000000,0.000000,0.000973,0.342837,-0.000940,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000078,0.000029,0.000084,0.000000,0.000000,0.000925,0.341919,-0.000918,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000074,0.000029,0.000080,0.000000,0.000000,0.000880,0.341021,-0.000897,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000070,0.000028,0.000077,0.000000,0.000000,0.000838,0.340144,-0.000877,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000007,0.000067,0.000027,0.000075,0.000000,0.000000,0.000798,0.339384,-0.000760,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000138,0.000000,0.000000,0.000000,0.000008,0.000064,0.000027,0.000072,0.000127,0.000127,0.000761,0.338555,-0.000829,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000080,0.000000,0.000000,0.000000,0.000008,0.000061,0.000026,0.000069,0.000330,0.000330,0.000726,0.337491,-0.001065,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000058,0.000000,0.000000,0.000000,0.000008,0.000058,0.000025,0.000066,0.000469,0.000469,0.000693,0.336292,-0.001199,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000056,0.000000,0.000000,0.000000,0.000009,0.000055,0.000024,0.000064,0.000568,0.000568,0.000662,0.335022,-0.001270,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000192,0.000000,0.000000,0.000000,0.000009,0.000053,0.000023,0.000062,0.000636,0.000636,0.000632,0.333847,-0.001175,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000052,0.000000,0.000000,0.000000,0.000009,0.000051,0.000022,0.000060,0.000576,0.000576,0.000604,0.332622,-0.001226,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000048,0.000022,0.000058,0.000526,0.000526,0.000577,0.331421,-0.001200,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000001,0.000000,0.000000,0.000000,0.000010,0.000046,0.000021,0.000056,0.000519,0.000519,0.000552,0.330257,-0.001164,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000011,0.000044,0.000020,0.000055,0.000436,0.000436,0.000528,0.329200,-0.001057,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000042,0.000019,0.000053,0.000334,0.000334,0.000505,0.328266,-0.000934,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000004,0.000000,0.000000,0.000000,0.000011,0.000040,0.000019,0.000052,0.000198,0.000198,0.000483,0.327489,-0.000777,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000012,0.000039,0.000018,0.000050,0.000042,0.000042,0.000462,0.326935,-0.000554,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000058,0.000000,0.000000,0.000000,0.000012,0.000037,0.000018,0.000049,0.000000,0.000000,0.000443,0.326434,-0.000500,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000058,0.000000,0.000000,0.000000,0.000012,0.000036,0.000017,0.000048,0.000000,0.000000,0.000425,0.325945,-0.000489,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000058,0.000000,0.000000,0.000000,0.000013,0.000034,0.000017,0.000047,0.000000,0.000000,0.000408,0.325467,-0.000478,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000033,0.000017,0.000046,0.000000,0.000000,0.000392,0.325005,-0.000462,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000077,0.000000,0.000001,0.000000,0.000014,0.000031,0.000016,0.000046,0.000000,0.000000,0.000377,0.324567,-0.000438,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000030,0.000016,0.000045,0.000000,0.000000,0.000363,0.324064,-0.000503,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000029,0.000016,0.000044,0.000000,0.000000,0.000349,0.323572,-0.000491,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000028,0.000015,0.000043,0.000000,0.000000,0.000337,0.323092,-0.000480,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000027,0.000015,0.000042,0.000000,0.000000,0.000324,0.322623,-0.000469,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000026,0.000015,0.000042,0.000000,0.000000,0.000313,0.322164,-0.000459,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000025,0.000014,0.000041,0.000000,0.000000,0.000302,0.321716,-0.000448,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000024,0.000014,0.000041,0.000000,0.000000,0.000292,0.321278,-0.000438,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000024,0.000014,0.000040,0.000136,0.000136,0.000282,0.320717,-0.000561,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000023,0.000013,0.000040,0.000391,0.000391,0.000272,0.319919,-0.000798,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000022,0.000012,0.000040,0.000556,0.000556,0.000262,0.318979,-0.000940,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000021,0.000012,0.000039,0.000669,0.000669,0.000253,0.317949,-0.001030,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000020,0.000011,0.000039,0.000654,0.000654,0.000243,0.316958,-0.000991,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000019,0.000020,0.000010,0.000038,0.000608,0.000608,0.000234,0.316035,-0.000923,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000497,0.000000,0.000000,0.000000,0.000019,0.000019,0.000010,0.000038,0.000542,0.000542,0.000225,0.315682,-0.000353,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000167,0.000000,0.000000,0.000000,0.000020,0.000018,0.000009,0.000038,0.000488,0.000488,0.000216,0.315067,-0.000615,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000002,0.000000,0.000000,0.000000,0.000020,0.000017,0.000009,0.000038,0.000411,0.000411,0.000208,0.314380,-0.000687,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000017,0.000008,0.000037,0.000310,0.000310,0.000200,0.313805,-0.000575,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000016,0.000008,0.000037,0.000211,0.000211,0.000192,0.313341,-0.000464,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000015,0.000008,0.000037,0.000055,0.000055,0.000184,0.313039,-0.000302,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000015,0.000008,0.000037,0.000000,0.000000,0.000177,0.312798,-0.000241,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000014,0.000008,0.000037,0.000000,0.000000,0.000170,0.312563,-0.000235,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000014,0.000007,0.000036,0.000000,0.000000,0.000164,0.312333,-0.000230,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000013,0.000007,0.000036,0.000000,0.000000,0.000158,0.312108,-0.000225,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000013,0.000007,0.000036,0.000000,0.000000,0.000152,0.311889,-0.000220,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000012,0.000007,0.000036,0.000000,0.000000,0.000147,0.311674,-0.000215,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000012,0.000007,0.000036,0.000000,0.000000,0.000142,0.311464,-0.000210,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000011,0.000007,0.000036,0.000000,0.000000,0.000137,0.311259,-0.000205,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000011,0.000006,0.000036,0.000000,0.000000,0.000132,0.311059,-0.000200,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000011,0.000006,0.000036,0.000000,0.000000,0.000128,0.310863,-0.000196,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000010,0.000006,0.000036,0.000000,0.000000,0.000124,0.310672,-0.000191,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000010,0.000006,0.000036,0.000000,0.000000,0.000120,0.310485,-0.000187,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000010,0.000006,0.000036,0.000129,0.000129,0.000116,0.310176,-0.000309,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000009,0.000005,0.000037,0.000383,0.000383,0.000112,0.309626,-0.000550,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000009,0.000005,0.000037,0.000545,0.000545,0.000108,0.308930,-0.000696,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000009,0.000004,0.000037,0.000669,0.000669,0.000103,0.308129,-0.000801,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000008,0.000004,0.000037,0.000747,0.000747,0.000099,0.307269,-0.000860,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000008,0.000003,0.000037,0.000705,0.000705,0.000094,0.306471,-0.000799,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000007,0.000002,0.000037,0.000623,0.000623,0.000089,0.305770,-0.000700,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000007,0.000002,0.000037,0.000556,0.000556,0.000084,0.305152,-0.000619,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000007,0.000002,0.000037,0.000465,0.000465,0.000079,0.304636,-0.000516,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000006,0.000001,0.000037,0.000350,0.000350,0.000074,0.304244,-0.000392,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000006,0.000001,0.000037,0.000217,0.000217,0.000069,0.303991,-0.000253,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000005,0.000001,0.000037,0.000060,0.000060,0.000065,0.303898,-0.000094,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000005,0.000001,0.000037,0.000000,0.000000,0.000061,0.303865,-0.000033,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000005,0.000001,0.000037,0.000000,0.000000,0.000057,0.303832,-0.000032,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000004,0.000001,0.000037,0.000000,0.000000,0.000054,0.303801,-0.000032,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000004,0.000001,0.000037,0.000000,0.000000,0.000051,0.303770,-0.000031,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000004,0.000001,0.000037,0.000000,0.000000,0.000048,0.303740,-0.000030,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000037,0.000000,0.000000,0.000045,0.303711,-0.000029,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000037,0.000000,0.000000,0.000042,0.303682,-0.000029,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000003,0.000001,0.000038,0.000000,0.000000,0.000040,0.303654,-0.000028,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000001,0.000038,0.000000,0.000000,0.000038,0.303626,-0.000027,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000001,0.000038,0.000000,0.000000,0.000035,0.303599,-0.000027,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000001,0.000038,0.000000,0.000000,0.000034,0.303573,-0.000026,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000003,0.000001,0.000038,0.000000,0.000000,0.000032,0.303547,-0.000026,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000002,0.000001,0.000039,0.000146,0.000146,0.000030,0.303380,-0.000168,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000002,0.000000,0.000039,0.000390,0.000390,0.000028,0.302977,-0.000403,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000550,0.000550,0.000026,0.302427,-0.000550,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000671,0.000671,0.000024,0.301756,-0.000671,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000669,0.000667,0.000022,0.301089,-0.000667,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000614,0.000609,0.000020,0.300480,-0.000609,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000552,0.000546,0.000019,0.299934,-0.000546,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000525,0.000517,0.000017,0.299416,-0.000517,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000427,0.000420,0.000016,0.298997,-0.000420,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000052,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000327,0.000322,0.000015,0.298726,-0.000270,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000210,0.000206,0.000014,0.298520,-0.000206,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000095,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000068,0.000068,0.000013,0.298548,0.000027,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000190,0.000002,0.000003,0.000002,0.000040,0.000001,0.000000,0.000043,0.000000,0.000000,0.000012,0.298735,0.000187,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000090,0.000001,0.000001,0.000001,0.000041,0.000001,0.000000,0.000043,0.000000,0.000000,0.000011,0.298824,0.000089,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000022,0.000001,0.000000,0.000001,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000010,0.298846,0.000022,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000023,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000009,0.298869,0.000023,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000027,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000042,0.000000,0.000000,0.000008,0.298896,0.000027,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000042,0.000000,0.000000,0.000008,0.298896,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000007,0.298896,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000007,0.298896,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000043,0.000000,0.000000,0.000006,0.298896,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000000,0.000000,0.000006,0.298896,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000000,0.000000,0.000005,0.298896,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000005,0.298896,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000127,0.000124,0.000004,0.298772,-0.000124,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000045,0.000385,0.000377,0.000004,0.298395,-0.000377,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000536,0.000524,0.000004,0.297871,-0.000524,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000650,0.000634,0.000003,0.297238,-0.000634,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000734,0.000712,0.000003,0.296525,-0.000712,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000046,0.000690,0.000667,0.000003,0.295858,-0.000667,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000609,0.000586,0.000003,0.295272,-0.000586,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000543,0.000521,0.000003,0.294752,-0.000521,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000449,0.000430,0.000002,0.294322,-0.000430,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000339,0.000324,0.000002,0.293998,-0.000324,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000203,0.000193,0.000002,0.293804,-0.000193,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000051,0.000049,0.000002,0.293756,-0.000049,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000048,0.000000,0.000000,0.000002,0.293756,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000002,0.293756,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000001,0.293756,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000123,0.000117,0.000001,0.293639,-0.000117,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000370,0.000352,0.000001,0.293287,-0.000352,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000537,0.000509,0.000001,0.292778,-0.000509,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000648,0.000612,0.000001,0.292166,-0.000612,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000689,0.000649,0.000000,0.291517,-0.000649,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000645,0.000605,0.000000,0.290912,-0.000605,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000582,0.000544,0.000000,0.290368,-0.000544,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000539,0.000502,0.000000,0.289866,-0.000502,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000445,0.000413,0.000000,0.289453,-0.000413,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000333,0.000308,0.000000,0.289145,-0.000308,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000173,0.000160,0.000000,0.288984,-0.000160,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000029,0.000026,0.000000,0.288958,-0.000026,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.288958,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000104,0.000096,0.000000,0.288862,-0.000096,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000358,0.000330,0.000000,0.288532,-0.000330,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000527,0.000485,0.000000,0.288046,-0.000485,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000643,0.000591,0.000000,0.287455,-0.000591,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000727,0.000665,0.000000,0.286790,-0.000665,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000686,0.000625,0.000000,0.286165,-0.000625,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000614,0.000558,0.000000,0.285607,-0.000558,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000541,0.000489,0.000000,0.285118,-0.000489,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000449,0.000405,0.000000,0.284712,-0.000405,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000339,0.000305,0.000000,0.284407,-0.000305,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000193,0.000174,0.000000,0.284234,-0.000174,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000030,0.000027,0.000000,0.284207,-0.000027,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.284207,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000111,0.000099,0.000000,0.284107,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620689.csv b/test/channel_loss/channel_forcing/et/cat-2620689.csv new file mode 100644 index 000000000..29b516d0e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620689.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000813,0.000044,0.000813,0.000169,0.000169,0.008992,0.374704,-0.002731,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000043,0.000745,0.000048,0.000048,0.008291,0.372148,-0.002557,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000683,0.000042,0.000683,0.000000,0.000000,0.007650,0.369689,-0.002458,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000627,0.000042,0.000627,0.000000,0.000000,0.007064,0.367280,-0.002409,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000041,0.000577,0.000000,0.000000,0.006528,0.364920,-0.002360,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000531,0.000040,0.000531,0.000000,0.000000,0.006037,0.362607,-0.002313,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000489,0.000039,0.000490,0.000000,0.000000,0.005587,0.360341,-0.002266,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000451,0.000038,0.000452,0.000000,0.000000,0.005174,0.358121,-0.002220,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000417,0.000038,0.000417,0.000000,0.000000,0.004794,0.355945,-0.002176,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000385,0.000037,0.000386,0.000000,0.000000,0.004446,0.353814,-0.002132,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000357,0.000036,0.000357,0.000000,0.000000,0.004125,0.351725,-0.002089,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000330,0.000035,0.000331,0.000000,0.000000,0.003831,0.349678,-0.002047,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000306,0.000035,0.000307,0.000000,0.000000,0.003559,0.347673,-0.002005,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000284,0.000034,0.000285,0.000000,0.000000,0.003309,0.345708,-0.001965,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000264,0.000033,0.000265,0.000137,0.000137,0.003079,0.343648,-0.002059,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000245,0.000032,0.000247,0.000392,0.000392,0.002866,0.341381,-0.002268,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000032,0.000230,0.000543,0.000543,0.002670,0.339011,-0.002370,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000212,0.000031,0.000215,0.000661,0.000661,0.002489,0.336573,-0.002437,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000197,0.000030,0.000200,0.000540,0.000540,0.002322,0.334303,-0.002270,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000540,0.000000,0.000000,0.000000,0.000003,0.000184,0.000029,0.000187,0.000497,0.000497,0.002167,0.332649,-0.001654,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000801,0.000011,0.000020,0.000011,0.000004,0.000172,0.000029,0.000186,0.000452,0.000452,0.002024,0.331310,-0.001339,1.000000,0.000009 +21,2022-08-01 21:00:00,0.000980,0.000039,0.000062,0.000039,0.000004,0.000160,0.000028,0.000203,0.000354,0.000354,0.001892,0.330228,-0.001082,1.000000,0.000032 +22,2022-08-01 22:00:00,0.000818,0.000043,0.000043,0.000043,0.000004,0.000150,0.000028,0.000198,0.000298,0.000298,0.001771,0.329082,-0.001146,1.000000,0.000032 +23,2022-08-01 23:00:00,0.000820,0.000054,0.000056,0.000054,0.000005,0.000140,0.000028,0.000199,0.000224,0.000224,0.001658,0.328021,-0.001061,1.000000,0.000034 +24,2022-08-02 00:00:00,0.000754,0.000054,0.000056,0.000054,0.000005,0.000131,0.000027,0.000190,0.000157,0.000157,0.001554,0.326983,-0.001038,1.000000,0.000037 +25,2022-08-02 01:00:00,0.001297,0.000145,0.000217,0.000145,0.000006,0.000123,0.000027,0.000273,0.000066,0.000066,0.001458,0.326429,-0.000554,1.000000,0.000109 +26,2022-08-02 02:00:00,0.001362,0.000209,0.000260,0.000209,0.000006,0.000115,0.000027,0.000330,0.000000,0.000000,0.001370,0.325972,-0.000457,1.000000,0.000160 +27,2022-08-02 03:00:00,0.001320,0.000244,0.000246,0.000244,0.000006,0.000108,0.000027,0.000358,0.000000,0.000000,0.001288,0.325498,-0.000474,1.000000,0.000163 +28,2022-08-02 04:00:00,0.001397,0.000263,0.000272,0.000263,0.000007,0.000102,0.000027,0.000372,0.000000,0.000000,0.001213,0.325082,-0.000415,1.000000,0.000171 +29,2022-08-02 05:00:00,0.001248,0.000239,0.000221,0.000239,0.000007,0.000096,0.000026,0.000342,0.000000,0.000000,0.001143,0.324579,-0.000503,1.000000,0.000154 +30,2022-08-02 06:00:00,0.001227,0.000228,0.000214,0.000228,0.000008,0.000091,0.000026,0.000326,0.000000,0.000000,0.001078,0.324072,-0.000507,1.000000,0.000141 +31,2022-08-02 07:00:00,0.000000,0.000098,0.000000,0.000098,0.000008,0.000086,0.000026,0.000192,0.000000,0.000000,0.001019,0.322582,-0.001489,1.000000,0.000043 +32,2022-08-02 08:00:00,0.000000,0.000043,0.000000,0.000043,0.000009,0.000081,0.000025,0.000132,0.000000,0.000000,0.000963,0.321123,-0.001459,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000076,0.000025,0.000086,0.000000,0.000000,0.000911,0.319694,-0.001430,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000072,0.000024,0.000082,0.000000,0.000000,0.000863,0.318293,-0.001401,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000069,0.000024,0.000079,0.000000,0.000000,0.000818,0.316921,-0.001373,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000065,0.000023,0.000076,0.000000,0.000000,0.000776,0.315576,-0.001345,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000131,0.000002,0.000003,0.000002,0.000011,0.000062,0.000023,0.000075,0.000000,0.000000,0.000737,0.314384,-0.001192,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000125,0.000001,0.000000,0.000001,0.000012,0.000059,0.000022,0.000071,0.000128,0.000128,0.000701,0.313088,-0.001296,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000089,0.000001,0.000000,0.000001,0.000012,0.000056,0.000022,0.000069,0.000332,0.000332,0.000667,0.311583,-0.001505,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000089,0.000000,0.000000,0.000000,0.000013,0.000053,0.000021,0.000066,0.000470,0.000470,0.000635,0.309973,-0.001610,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000089,0.000000,0.000000,0.000000,0.000013,0.000051,0.000021,0.000064,0.000565,0.000565,0.000605,0.308302,-0.001671,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000224,0.000000,0.000000,0.000000,0.000014,0.000048,0.000020,0.000062,0.000623,0.000623,0.000577,0.306739,-0.001562,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000015,0.000046,0.000019,0.000061,0.000571,0.000571,0.000550,0.305097,-0.001642,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000015,0.000044,0.000019,0.000059,0.000513,0.000513,0.000525,0.303497,-0.001600,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000004,0.000000,0.000000,0.000000,0.000016,0.000042,0.000018,0.000058,0.000506,0.000506,0.000502,0.301932,-0.001565,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000016,0.000040,0.000018,0.000056,0.000424,0.000424,0.000479,0.300478,-0.001454,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000017,0.000038,0.000017,0.000055,0.000327,0.000327,0.000458,0.299154,-0.001324,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000018,0.000037,0.000017,0.000054,0.000192,0.000192,0.000439,0.298033,-0.001121,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000018,0.000035,0.000017,0.000053,0.000036,0.000036,0.000420,0.297090,-0.000943,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000058,0.000000,0.000001,0.000000,0.000019,0.000034,0.000016,0.000053,0.000000,0.000000,0.000403,0.296201,-0.000889,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000058,0.000000,0.000001,0.000000,0.000019,0.000032,0.000016,0.000052,0.000000,0.000000,0.000387,0.295330,-0.000871,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000058,0.000001,0.000001,0.000001,0.000020,0.000031,0.000016,0.000052,0.000000,0.000000,0.000371,0.294477,-0.000853,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000070,0.000001,0.000001,0.000001,0.000021,0.000030,0.000015,0.000051,0.000000,0.000000,0.000357,0.293653,-0.000824,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000080,0.000001,0.000001,0.000001,0.000021,0.000029,0.000015,0.000051,0.000000,0.000000,0.000343,0.292854,-0.000798,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000028,0.000015,0.000050,0.000000,0.000000,0.000331,0.291995,-0.000860,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000027,0.000015,0.000049,0.000000,0.000000,0.000319,0.291153,-0.000842,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000026,0.000014,0.000049,0.000000,0.000000,0.000307,0.290327,-0.000825,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000025,0.000014,0.000049,0.000000,0.000000,0.000296,0.289519,-0.000809,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000024,0.000014,0.000048,0.000000,0.000000,0.000286,0.288726,-0.000792,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000023,0.000013,0.000048,0.000000,0.000000,0.000277,0.287950,-0.000776,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000022,0.000013,0.000048,0.000000,0.000000,0.000267,0.287189,-0.000761,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000022,0.000013,0.000048,0.000133,0.000133,0.000259,0.286314,-0.000876,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000021,0.000012,0.000048,0.000388,0.000388,0.000250,0.285206,-0.001108,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000020,0.000012,0.000048,0.000547,0.000547,0.000242,0.283964,-0.001242,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000020,0.000012,0.000048,0.000660,0.000660,0.000234,0.282637,-0.001327,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000019,0.000011,0.000048,0.000639,0.000639,0.000226,0.281357,-0.001279,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000018,0.000011,0.000048,0.000592,0.000592,0.000219,0.280150,-0.001208,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000446,0.000000,0.000000,0.000000,0.000030,0.000018,0.000010,0.000048,0.000523,0.000523,0.000211,0.279471,-0.000678,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000150,0.000000,0.000000,0.000000,0.000031,0.000017,0.000010,0.000048,0.000472,0.000472,0.000204,0.278566,-0.000905,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000016,0.000010,0.000048,0.000401,0.000401,0.000198,0.277602,-0.000964,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000016,0.000009,0.000048,0.000298,0.000298,0.000191,0.276758,-0.000844,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000015,0.000009,0.000049,0.000205,0.000205,0.000185,0.276022,-0.000736,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000015,0.000009,0.000049,0.000049,0.000049,0.000179,0.275454,-0.000568,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000014,0.000009,0.000049,0.000000,0.000000,0.000173,0.274945,-0.000509,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000014,0.000009,0.000049,0.000000,0.000000,0.000168,0.274447,-0.000498,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000014,0.000008,0.000049,0.000000,0.000000,0.000163,0.273958,-0.000488,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000013,0.000008,0.000050,0.000000,0.000000,0.000158,0.273480,-0.000479,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000013,0.000008,0.000050,0.000000,0.000000,0.000153,0.273011,-0.000469,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000012,0.000008,0.000050,0.000000,0.000000,0.000149,0.272551,-0.000459,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000012,0.000008,0.000051,0.000000,0.000000,0.000144,0.272101,-0.000450,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000012,0.000008,0.000051,0.000000,0.000000,0.000140,0.271660,-0.000441,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000011,0.000007,0.000051,0.000000,0.000000,0.000136,0.271228,-0.000432,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000011,0.000007,0.000052,0.000000,0.000000,0.000133,0.270804,-0.000424,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000011,0.000007,0.000052,0.000000,0.000000,0.000129,0.270389,-0.000415,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000010,0.000007,0.000052,0.000000,0.000000,0.000126,0.269983,-0.000407,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000010,0.000007,0.000053,0.000125,0.000125,0.000122,0.269462,-0.000521,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000010,0.000007,0.000053,0.000379,0.000379,0.000119,0.268702,-0.000760,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000010,0.000006,0.000053,0.000541,0.000541,0.000116,0.267800,-0.000902,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000009,0.000006,0.000054,0.000661,0.000661,0.000112,0.266797,-0.001002,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000009,0.000006,0.000054,0.000737,0.000737,0.000109,0.265741,-0.001056,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000009,0.000005,0.000055,0.000702,0.000702,0.000105,0.264740,-0.001001,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000008,0.000005,0.000055,0.000608,0.000608,0.000101,0.263852,-0.000888,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000008,0.000005,0.000055,0.000545,0.000545,0.000098,0.263044,-0.000808,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000008,0.000004,0.000056,0.000451,0.000451,0.000094,0.262343,-0.000701,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000008,0.000004,0.000056,0.000340,0.000340,0.000091,0.261765,-0.000577,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000007,0.000004,0.000056,0.000211,0.000211,0.000087,0.261326,-0.000439,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000007,0.000004,0.000057,0.000053,0.000053,0.000084,0.261050,-0.000276,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000007,0.000004,0.000057,0.000000,0.000000,0.000081,0.260832,-0.000218,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000007,0.000004,0.000058,0.000000,0.000000,0.000078,0.260618,-0.000214,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000006,0.000004,0.000058,0.000000,0.000000,0.000076,0.260409,-0.000210,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000006,0.000004,0.000059,0.000000,0.000000,0.000073,0.260203,-0.000205,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000006,0.000003,0.000059,0.000000,0.000000,0.000071,0.260002,-0.000201,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000006,0.000003,0.000059,0.000000,0.000000,0.000068,0.259805,-0.000197,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000006,0.000003,0.000060,0.000000,0.000000,0.000066,0.259612,-0.000193,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000005,0.000003,0.000060,0.000000,0.000000,0.000064,0.259423,-0.000189,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000005,0.000003,0.000061,0.000000,0.000000,0.000062,0.259237,-0.000185,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000005,0.000003,0.000061,0.000000,0.000000,0.000060,0.259055,-0.000182,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000005,0.000003,0.000062,0.000000,0.000000,0.000059,0.258877,-0.000178,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000005,0.000003,0.000062,0.000000,0.000000,0.000057,0.258703,-0.000174,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000005,0.000003,0.000063,0.000145,0.000145,0.000055,0.258390,-0.000313,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000004,0.000003,0.000063,0.000391,0.000391,0.000053,0.257842,-0.000548,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000004,0.000002,0.000064,0.000548,0.000548,0.000052,0.257152,-0.000690,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000004,0.000002,0.000064,0.000665,0.000665,0.000050,0.256361,-0.000791,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000004,0.000002,0.000065,0.000658,0.000658,0.000048,0.255592,-0.000768,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000004,0.000002,0.000065,0.000604,0.000604,0.000045,0.254893,-0.000700,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000004,0.000001,0.000065,0.000547,0.000547,0.000043,0.254262,-0.000630,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000003,0.000001,0.000066,0.000520,0.000520,0.000041,0.253672,-0.000591,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000003,0.000001,0.000066,0.000413,0.000413,0.000039,0.253197,-0.000475,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000021,0.000000,0.000000,0.000000,0.000064,0.000003,0.000001,0.000067,0.000318,0.000318,0.000037,0.252846,-0.000351,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000003,0.000001,0.000067,0.000205,0.000205,0.000035,0.252592,-0.000254,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000103,0.000000,0.000000,0.000000,0.000065,0.000003,0.000001,0.000068,0.000062,0.000062,0.000033,0.252584,-0.000008,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000163,0.000002,0.000004,0.000002,0.000065,0.000003,0.000001,0.000070,0.000000,0.000000,0.000031,0.252692,0.000108,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000026,0.000001,0.000000,0.000001,0.000066,0.000002,0.000001,0.000069,0.000000,0.000000,0.000029,0.252668,-0.000024,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000066,0.000002,0.000001,0.000070,0.000000,0.000000,0.000028,0.252619,-0.000049,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000001,0.000069,0.000000,0.000000,0.000027,0.252570,-0.000048,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000007,0.000000,0.000000,0.000000,0.000068,0.000002,0.000001,0.000070,0.000000,0.000000,0.000025,0.252530,-0.000040,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000002,0.000001,0.000070,0.000000,0.000000,0.000024,0.252484,-0.000046,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000001,0.000071,0.000000,0.000000,0.000023,0.252438,-0.000046,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000001,0.000071,0.000000,0.000000,0.000022,0.252394,-0.000045,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000001,0.000072,0.000000,0.000000,0.000021,0.252350,-0.000044,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000001,0.000072,0.000000,0.000000,0.000020,0.252307,-0.000043,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000073,0.000000,0.000000,0.000019,0.252265,-0.000042,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000073,0.000000,0.000000,0.000018,0.252224,-0.000041,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000001,0.000073,0.000126,0.000126,0.000018,0.252061,-0.000163,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000001,0.000074,0.000382,0.000382,0.000017,0.251649,-0.000412,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000531,0.000531,0.000016,0.251100,-0.000549,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000645,0.000645,0.000015,0.250450,-0.000650,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000730,0.000730,0.000013,0.249720,-0.000730,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000683,0.000680,0.000012,0.249040,-0.000680,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000604,0.000598,0.000011,0.248441,-0.000598,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000533,0.000526,0.000011,0.247915,-0.000526,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000438,0.000431,0.000010,0.247484,-0.000431,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000077,0.000329,0.000322,0.000009,0.247162,-0.000322,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000196,0.000192,0.000008,0.246970,-0.000192,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000078,0.000045,0.000044,0.000008,0.246927,-0.000044,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000007,0.246927,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000079,0.000000,0.000000,0.000007,0.246927,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000006,0.246927,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000006,0.246927,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000081,0.000000,0.000000,0.000005,0.246927,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000005,0.246927,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000004,0.246927,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000004,0.246927,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000004,0.246927,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000003,0.246927,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000003,0.246927,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000000,0.000000,0.000003,0.246927,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000120,0.000117,0.000003,0.246809,-0.000117,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000364,0.000355,0.000003,0.246454,-0.000355,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000527,0.000512,0.000002,0.245942,-0.000512,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000638,0.000618,0.000002,0.245324,-0.000618,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000670,0.000646,0.000002,0.244678,-0.000646,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000629,0.000603,0.000002,0.244075,-0.000603,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000570,0.000543,0.000002,0.243532,-0.000543,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000528,0.000502,0.000002,0.243030,-0.000502,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000431,0.000407,0.000001,0.242622,-0.000407,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000323,0.000304,0.000001,0.242318,-0.000304,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000166,0.000156,0.000001,0.242162,-0.000156,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000025,0.000023,0.000001,0.242139,-0.000023,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.242139,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.242139,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.242139,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000103,0.000096,0.000000,0.242043,-0.000096,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000353,0.000332,0.000000,0.241711,-0.000332,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000519,0.000486,0.000000,0.241225,-0.000486,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000633,0.000591,0.000000,0.240635,-0.000591,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000709,0.000658,0.000000,0.239977,-0.000658,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000673,0.000621,0.000000,0.239355,-0.000621,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000601,0.000552,0.000000,0.238803,-0.000552,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000528,0.000483,0.000000,0.238320,-0.000483,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000431,0.000392,0.000000,0.237928,-0.000392,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000324,0.000294,0.000000,0.237634,-0.000294,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000185,0.000167,0.000000,0.237467,-0.000167,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000023,0.000021,0.000000,0.237445,-0.000021,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.237445,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000109,0.000098,0.000000,0.237347,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620690.csv b/test/channel_loss/channel_forcing/et/cat-2620690.csv new file mode 100644 index 000000000..203ac63ff --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620690.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000816,0.000072,0.000816,0.000155,0.000155,0.009018,0.373977,-0.002956,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000071,0.000749,0.000041,0.000041,0.008339,0.371192,-0.002785,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000690,0.000070,0.000690,0.000000,0.000000,0.007719,0.368501,-0.002690,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000068,0.000636,0.000000,0.000000,0.007152,0.365864,-0.002637,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000587,0.000067,0.000587,0.000000,0.000000,0.006632,0.363279,-0.002585,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000542,0.000065,0.000542,0.000000,0.000000,0.006155,0.360746,-0.002534,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000501,0.000064,0.000502,0.000000,0.000000,0.005718,0.358262,-0.002484,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000465,0.000063,0.000465,0.000000,0.000000,0.005316,0.355828,-0.002434,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000431,0.000062,0.000431,0.000000,0.000000,0.004947,0.353441,-0.002386,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000400,0.000060,0.000401,0.000000,0.000000,0.004608,0.351102,-0.002339,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000372,0.000059,0.000373,0.000000,0.000000,0.004295,0.348810,-0.002293,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000346,0.000058,0.000347,0.000000,0.000000,0.004007,0.346562,-0.002247,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000322,0.000057,0.000324,0.000000,0.000000,0.003742,0.344360,-0.002203,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000300,0.000056,0.000302,0.000000,0.000000,0.003497,0.342200,-0.002159,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000280,0.000055,0.000283,0.000129,0.000129,0.003271,0.339958,-0.002243,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000262,0.000053,0.000264,0.000382,0.000382,0.003063,0.337511,-0.002446,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000245,0.000052,0.000248,0.000537,0.000537,0.002870,0.334961,-0.002550,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000229,0.000051,0.000232,0.000647,0.000647,0.002691,0.332354,-0.002607,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000215,0.000049,0.000218,0.000524,0.000524,0.002525,0.329919,-0.002435,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000754,0.000005,0.000009,0.000005,0.000004,0.000202,0.000049,0.000210,0.000479,0.000479,0.002372,0.328307,-0.001612,1.000000,0.000004 +20,2022-08-01 20:00:00,0.000873,0.000014,0.000022,0.000014,0.000004,0.000189,0.000048,0.000208,0.000427,0.000427,0.002230,0.326881,-0.001426,1.000000,0.000012 +21,2022-08-01 21:00:00,0.001051,0.000037,0.000054,0.000037,0.000004,0.000178,0.000047,0.000219,0.000340,0.000340,0.002099,0.325712,-0.001169,1.000000,0.000029 +22,2022-08-01 22:00:00,0.000980,0.000046,0.000052,0.000046,0.000005,0.000168,0.000047,0.000219,0.000283,0.000283,0.001978,0.324554,-0.001158,1.000000,0.000034 +23,2022-08-01 23:00:00,0.000999,0.000059,0.000065,0.000059,0.000005,0.000158,0.000046,0.000222,0.000215,0.000215,0.001866,0.323491,-0.001063,1.000000,0.000039 +24,2022-08-02 00:00:00,0.000984,0.000067,0.000074,0.000067,0.000006,0.000149,0.000046,0.000222,0.000144,0.000144,0.001763,0.322495,-0.000996,1.000000,0.000046 +25,2022-08-02 01:00:00,0.001522,0.000147,0.000210,0.000147,0.000006,0.000141,0.000045,0.000294,0.000059,0.000059,0.001667,0.321997,-0.000498,1.000000,0.000109 +26,2022-08-02 02:00:00,0.001575,0.000199,0.000240,0.000199,0.000007,0.000133,0.000045,0.000339,0.000000,0.000000,0.001579,0.321589,-0.000408,1.000000,0.000150 +27,2022-08-02 03:00:00,0.001490,0.000221,0.000217,0.000221,0.000007,0.000126,0.000045,0.000354,0.000000,0.000000,0.001497,0.321129,-0.000460,1.000000,0.000146 +28,2022-08-02 04:00:00,0.001549,0.000230,0.000233,0.000230,0.000007,0.000120,0.000045,0.000357,0.000000,0.000000,0.001422,0.320720,-0.000409,1.000000,0.000148 +29,2022-08-02 05:00:00,0.001483,0.000219,0.000214,0.000219,0.000008,0.000114,0.000044,0.000341,0.000000,0.000000,0.001352,0.320272,-0.000448,1.000000,0.000143 +30,2022-08-02 06:00:00,0.001435,0.000211,0.000201,0.000211,0.000008,0.000108,0.000044,0.000328,0.000000,0.000000,0.001288,0.319799,-0.000474,1.000000,0.000133 +31,2022-08-02 07:00:00,0.000000,0.000093,0.000000,0.000093,0.000009,0.000103,0.000043,0.000205,0.000000,0.000000,0.001228,0.318126,-0.001673,1.000000,0.000040 +32,2022-08-02 08:00:00,0.000000,0.000040,0.000000,0.000040,0.000009,0.000099,0.000042,0.000148,0.000000,0.000000,0.001172,0.316486,-0.001640,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000094,0.000042,0.000104,0.000000,0.000000,0.001119,0.314878,-0.001607,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000090,0.000041,0.000100,0.000000,0.000000,0.001070,0.313303,-0.001576,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000086,0.000040,0.000097,0.000000,0.000000,0.001024,0.311758,-0.001544,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000082,0.000039,0.000094,0.000000,0.000000,0.000981,0.310244,-0.001514,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000255,0.000004,0.000007,0.000004,0.000012,0.000079,0.000038,0.000095,0.000000,0.000000,0.000940,0.309003,-0.001241,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000260,0.000003,0.000002,0.000003,0.000013,0.000076,0.000038,0.000091,0.000122,0.000122,0.000902,0.307676,-0.001327,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000228,0.000002,0.000000,0.000002,0.000013,0.000073,0.000037,0.000088,0.000324,0.000324,0.000867,0.306148,-0.001528,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000222,0.000000,0.000000,0.000000,0.000014,0.000070,0.000036,0.000084,0.000462,0.000462,0.000833,0.304511,-0.001638,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000162,0.000000,0.000000,0.000000,0.000015,0.000067,0.000035,0.000082,0.000557,0.000557,0.000801,0.302753,-0.001758,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000257,0.000000,0.000000,0.000000,0.000015,0.000065,0.000034,0.000080,0.000611,0.000611,0.000771,0.301071,-0.001682,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000016,0.000062,0.000033,0.000078,0.000559,0.000559,0.000742,0.299277,-0.001793,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000056,0.000000,0.000000,0.000000,0.000017,0.000060,0.000033,0.000076,0.000491,0.000491,0.000714,0.297584,-0.001693,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000056,0.000000,0.000000,0.000000,0.000017,0.000058,0.000032,0.000075,0.000487,0.000487,0.000688,0.295928,-0.001656,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000056,0.000000,0.000000,0.000000,0.000018,0.000056,0.000031,0.000073,0.000411,0.000411,0.000664,0.294379,-0.001549,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000018,0.000054,0.000030,0.000072,0.000313,0.000313,0.000640,0.292957,-0.001422,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000019,0.000052,0.000029,0.000071,0.000178,0.000178,0.000618,0.291697,-0.001260,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000094,0.000000,0.000000,0.000000,0.000020,0.000050,0.000029,0.000070,0.000028,0.000028,0.000597,0.290644,-0.001053,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000108,0.000001,0.000001,0.000001,0.000021,0.000048,0.000028,0.000070,0.000000,0.000000,0.000577,0.289652,-0.000991,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000146,0.000002,0.000002,0.000002,0.000021,0.000047,0.000028,0.000070,0.000000,0.000000,0.000558,0.288717,-0.000935,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000162,0.000002,0.000003,0.000002,0.000022,0.000045,0.000027,0.000069,0.000000,0.000000,0.000540,0.287815,-0.000902,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000162,0.000003,0.000003,0.000003,0.000023,0.000044,0.000027,0.000069,0.000000,0.000000,0.000524,0.286931,-0.000884,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000197,0.000003,0.000004,0.000003,0.000023,0.000042,0.000027,0.000069,0.000000,0.000000,0.000508,0.286098,-0.000833,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000024,0.000041,0.000026,0.000067,0.000000,0.000000,0.000492,0.285092,-0.001006,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000025,0.000040,0.000025,0.000065,0.000000,0.000000,0.000478,0.284106,-0.000986,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000039,0.000025,0.000064,0.000000,0.000000,0.000464,0.283139,-0.000967,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000038,0.000024,0.000064,0.000000,0.000000,0.000451,0.282192,-0.000947,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000037,0.000024,0.000063,0.000000,0.000000,0.000438,0.281263,-0.000929,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000036,0.000024,0.000063,0.000000,0.000000,0.000426,0.280353,-0.000910,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000035,0.000023,0.000063,0.000000,0.000000,0.000415,0.279461,-0.000892,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000034,0.000023,0.000063,0.000124,0.000124,0.000403,0.278464,-0.000996,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000033,0.000022,0.000063,0.000377,0.000377,0.000393,0.277240,-0.001225,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000032,0.000021,0.000062,0.000536,0.000536,0.000382,0.275884,-0.001356,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000031,0.000020,0.000062,0.000647,0.000647,0.000371,0.274446,-0.001438,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000030,0.000020,0.000062,0.000622,0.000622,0.000361,0.273061,-0.001385,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000029,0.000019,0.000062,0.000567,0.000567,0.000351,0.271757,-0.001304,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000470,0.000000,0.000000,0.000000,0.000033,0.000028,0.000019,0.000062,0.000503,0.000503,0.000341,0.271003,-0.000754,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000115,0.000000,0.000000,0.000000,0.000034,0.000028,0.000018,0.000062,0.000452,0.000452,0.000331,0.269966,-0.001037,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000027,0.000018,0.000062,0.000380,0.000380,0.000322,0.268907,-0.001059,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000026,0.000017,0.000062,0.000281,0.000281,0.000313,0.267966,-0.000941,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000025,0.000017,0.000062,0.000191,0.000191,0.000304,0.267132,-0.000834,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000025,0.000016,0.000062,0.000040,0.000040,0.000296,0.266462,-0.000670,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000024,0.000016,0.000062,0.000000,0.000000,0.000288,0.265845,-0.000617,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000023,0.000016,0.000062,0.000000,0.000000,0.000280,0.265240,-0.000605,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000023,0.000015,0.000062,0.000000,0.000000,0.000272,0.264647,-0.000593,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000022,0.000015,0.000062,0.000000,0.000000,0.000265,0.264065,-0.000581,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000022,0.000015,0.000063,0.000000,0.000000,0.000259,0.263495,-0.000570,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000021,0.000014,0.000063,0.000000,0.000000,0.000252,0.262937,-0.000559,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000020,0.000014,0.000063,0.000000,0.000000,0.000246,0.262389,-0.000548,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000020,0.000014,0.000063,0.000000,0.000000,0.000239,0.261853,-0.000537,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000019,0.000014,0.000063,0.000000,0.000000,0.000234,0.261326,-0.000526,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000019,0.000013,0.000064,0.000000,0.000000,0.000228,0.260811,-0.000516,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000019,0.000013,0.000064,0.000000,0.000000,0.000222,0.260305,-0.000505,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000018,0.000013,0.000064,0.000000,0.000000,0.000217,0.259810,-0.000495,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000018,0.000012,0.000065,0.000117,0.000117,0.000212,0.259209,-0.000601,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000017,0.000012,0.000065,0.000371,0.000371,0.000207,0.258372,-0.000837,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000017,0.000012,0.000065,0.000534,0.000534,0.000201,0.257392,-0.000980,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000016,0.000011,0.000066,0.000650,0.000650,0.000196,0.256317,-0.001075,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000016,0.000010,0.000066,0.000724,0.000724,0.000191,0.255191,-0.001126,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000015,0.000010,0.000066,0.000674,0.000674,0.000185,0.254136,-0.001055,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000015,0.000009,0.000066,0.000591,0.000591,0.000179,0.253183,-0.000952,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000014,0.000009,0.000067,0.000518,0.000518,0.000174,0.252321,-0.000863,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000014,0.000008,0.000067,0.000432,0.000432,0.000168,0.251560,-0.000760,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000014,0.000008,0.000067,0.000327,0.000327,0.000163,0.250917,-0.000643,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000013,0.000008,0.000068,0.000197,0.000197,0.000158,0.250415,-0.000502,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000013,0.000008,0.000068,0.000043,0.000043,0.000153,0.250073,-0.000342,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000012,0.000008,0.000068,0.000000,0.000000,0.000148,0.249780,-0.000293,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000012,0.000007,0.000069,0.000000,0.000000,0.000143,0.249493,-0.000287,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000012,0.000007,0.000069,0.000000,0.000000,0.000139,0.249211,-0.000281,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000011,0.000007,0.000069,0.000000,0.000000,0.000135,0.248935,-0.000276,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000011,0.000007,0.000070,0.000000,0.000000,0.000131,0.248665,-0.000270,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000011,0.000007,0.000070,0.000000,0.000000,0.000127,0.248400,-0.000265,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000010,0.000007,0.000071,0.000000,0.000000,0.000124,0.248140,-0.000260,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000010,0.000007,0.000071,0.000000,0.000000,0.000120,0.247886,-0.000255,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000010,0.000006,0.000072,0.000000,0.000000,0.000117,0.247636,-0.000250,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000009,0.000006,0.000072,0.000000,0.000000,0.000114,0.247391,-0.000245,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000009,0.000006,0.000072,0.000000,0.000000,0.000111,0.247152,-0.000240,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000009,0.000006,0.000073,0.000000,0.000000,0.000108,0.246917,-0.000235,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000009,0.000006,0.000073,0.000135,0.000135,0.000105,0.246554,-0.000362,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000008,0.000006,0.000074,0.000381,0.000381,0.000102,0.245958,-0.000596,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000008,0.000005,0.000074,0.000540,0.000540,0.000099,0.245218,-0.000740,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000008,0.000005,0.000075,0.000655,0.000655,0.000096,0.244379,-0.000839,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000008,0.000004,0.000075,0.000646,0.000646,0.000092,0.243565,-0.000814,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000007,0.000004,0.000076,0.000596,0.000596,0.000089,0.242817,-0.000748,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000007,0.000004,0.000076,0.000531,0.000531,0.000085,0.242147,-0.000670,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000007,0.000003,0.000076,0.000502,0.000502,0.000082,0.241519,-0.000629,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000007,0.000003,0.000077,0.000408,0.000408,0.000078,0.240996,-0.000523,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000006,0.000003,0.000077,0.000308,0.000308,0.000075,0.240581,-0.000415,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000006,0.000003,0.000077,0.000192,0.000192,0.000071,0.240287,-0.000293,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000072,0.000006,0.000003,0.000078,0.000054,0.000054,0.000068,0.240192,-0.000095,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000139,0.000001,0.000002,0.000001,0.000073,0.000005,0.000003,0.000079,0.000000,0.000000,0.000065,0.240229,0.000037,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000005,0.000003,0.000079,0.000000,0.000000,0.000063,0.240131,-0.000098,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000005,0.000002,0.000080,0.000000,0.000000,0.000060,0.240035,-0.000096,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000005,0.000002,0.000080,0.000000,0.000000,0.000058,0.239941,-0.000094,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000005,0.000002,0.000080,0.000000,0.000000,0.000056,0.239848,-0.000092,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000002,0.000081,0.000000,0.000000,0.000053,0.239758,-0.000090,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000002,0.000081,0.000000,0.000000,0.000052,0.239669,-0.000089,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000002,0.000082,0.000000,0.000000,0.000050,0.239582,-0.000087,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000002,0.000082,0.000000,0.000000,0.000048,0.239497,-0.000085,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000002,0.000083,0.000000,0.000000,0.000046,0.239414,-0.000084,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000002,0.000083,0.000000,0.000000,0.000045,0.239332,-0.000082,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000004,0.000002,0.000084,0.000000,0.000000,0.000043,0.239251,-0.000080,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000002,0.000084,0.000117,0.000117,0.000042,0.239058,-0.000193,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000002,0.000085,0.000366,0.000366,0.000040,0.238624,-0.000434,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000003,0.000001,0.000085,0.000521,0.000521,0.000038,0.238047,-0.000577,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000003,0.000001,0.000085,0.000635,0.000635,0.000036,0.237370,-0.000677,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000003,0.000001,0.000086,0.000714,0.000714,0.000034,0.236628,-0.000742,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000086,0.000663,0.000663,0.000032,0.235952,-0.000677,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000087,0.000587,0.000587,0.000029,0.235363,-0.000589,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000520,0.000520,0.000027,0.234843,-0.000520,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000088,0.000430,0.000428,0.000025,0.234415,-0.000428,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000322,0.000319,0.000023,0.234096,-0.000319,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000088,0.000187,0.000185,0.000021,0.233911,-0.000185,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000037,0.000037,0.000020,0.233874,-0.000037,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000089,0.000000,0.000000,0.000018,0.233874,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000090,0.000000,0.000000,0.000017,0.233874,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000000,0.000000,0.000016,0.233874,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000091,0.000000,0.000000,0.000014,0.233874,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000000,0.000000,0.000013,0.233874,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000012,0.233874,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000011,0.233874,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000092,0.000000,0.000000,0.000010,0.233874,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000000,0.000000,0.000010,0.233874,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000093,0.000000,0.000000,0.000009,0.233874,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000000,0.000000,0.000008,0.233874,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000094,0.000000,0.000000,0.000008,0.233874,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000111,0.000110,0.000007,0.233764,-0.000110,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000095,0.000354,0.000350,0.000006,0.233414,-0.000350,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000517,0.000509,0.000006,0.232905,-0.000509,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000630,0.000618,0.000005,0.232287,-0.000618,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000097,0.000659,0.000643,0.000005,0.231644,-0.000643,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000615,0.000597,0.000005,0.231047,-0.000597,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000553,0.000534,0.000004,0.230513,-0.000534,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000505,0.000486,0.000004,0.230028,-0.000486,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000412,0.000395,0.000004,0.229633,-0.000395,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000309,0.000295,0.000003,0.229338,-0.000295,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000153,0.000145,0.000003,0.229192,-0.000145,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000019,0.000018,0.000003,0.229174,-0.000018,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000003,0.229174,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000002,0.229174,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.229174,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.229174,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.229174,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.229174,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000096,0.000091,0.000001,0.229083,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000344,0.000326,0.000001,0.228756,-0.000326,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000510,0.000483,0.000001,0.228274,-0.000483,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000623,0.000588,0.000001,0.227686,-0.000588,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000693,0.000650,0.000001,0.227036,-0.000650,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000644,0.000601,0.000001,0.226435,-0.000601,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000563,0.000523,0.000001,0.225913,-0.000523,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000507,0.000468,0.000001,0.225444,-0.000468,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000414,0.000381,0.000001,0.225063,-0.000381,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000311,0.000285,0.000000,0.224778,-0.000285,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000170,0.000156,0.000000,0.224622,-0.000156,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000015,0.000014,0.000000,0.224609,-0.000014,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.224609,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000101,0.000093,0.000000,0.224516,-0.000093,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620691.csv b/test/channel_loss/channel_forcing/et/cat-2620691.csv new file mode 100644 index 000000000..86570de06 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620691.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000813,0.000041,0.000813,0.000142,0.000142,0.008990,0.377009,-0.002172,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000744,0.000040,0.000744,0.000035,0.000035,0.008286,0.374989,-0.002020,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000682,0.000040,0.000682,0.000000,0.000000,0.007643,0.373047,-0.001942,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000626,0.000039,0.000627,0.000000,0.000000,0.007055,0.371146,-0.001900,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000576,0.000038,0.000576,0.000000,0.000000,0.006517,0.369287,-0.001859,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000037,0.000530,0.000000,0.000000,0.006025,0.367467,-0.001819,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000488,0.000036,0.000488,0.000000,0.000000,0.005573,0.365687,-0.001780,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000450,0.000035,0.000450,0.000000,0.000000,0.005158,0.363945,-0.001742,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000415,0.000035,0.000416,0.000000,0.000000,0.004778,0.362241,-0.001704,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000384,0.000034,0.000384,0.000000,0.000000,0.004428,0.360574,-0.001667,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000355,0.000033,0.000356,0.000000,0.000000,0.004106,0.358942,-0.001632,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000328,0.000033,0.000329,0.000000,0.000000,0.003811,0.357346,-0.001596,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000304,0.000032,0.000305,0.000000,0.000000,0.003538,0.355784,-0.001562,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000282,0.000031,0.000283,0.000000,0.000000,0.003287,0.354256,-0.001528,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000262,0.000030,0.000263,0.000119,0.000119,0.003056,0.352644,-0.001612,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000243,0.000030,0.000244,0.000360,0.000360,0.002843,0.350831,-0.001813,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000226,0.000029,0.000227,0.000521,0.000521,0.002646,0.348899,-0.001932,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000210,0.000028,0.000212,0.000627,0.000627,0.002464,0.346906,-0.001993,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000195,0.000027,0.000198,0.000510,0.000510,0.002296,0.345070,-0.001836,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000901,0.000015,0.000027,0.000015,0.000003,0.000182,0.000027,0.000199,0.000469,0.000469,0.002141,0.344169,-0.000901,1.000000,0.000012 +20,2022-08-01 20:00:00,0.000946,0.000028,0.000040,0.000028,0.000003,0.000169,0.000026,0.000201,0.000415,0.000415,0.001998,0.343372,-0.000797,1.000000,0.000023 +21,2022-08-01 21:00:00,0.001073,0.000057,0.000075,0.000057,0.000003,0.000158,0.000026,0.000218,0.000329,0.000329,0.001866,0.342766,-0.000606,1.000000,0.000042 +22,2022-08-01 22:00:00,0.000995,0.000066,0.000071,0.000066,0.000003,0.000147,0.000026,0.000217,0.000274,0.000274,0.001744,0.342155,-0.000611,1.000000,0.000047 +23,2022-08-01 23:00:00,0.001014,0.000082,0.000089,0.000082,0.000004,0.000138,0.000025,0.000223,0.000199,0.000199,0.001632,0.341630,-0.000524,1.000000,0.000054 +24,2022-08-02 00:00:00,0.001039,0.000097,0.000110,0.000097,0.000004,0.000129,0.000025,0.000230,0.000129,0.000129,0.001528,0.341191,-0.000440,1.000000,0.000067 +25,2022-08-02 01:00:00,0.001700,0.000225,0.000328,0.000225,0.000004,0.000121,0.000025,0.000351,0.000052,0.000052,0.001433,0.341269,0.000079,1.000000,0.000169 +26,2022-08-02 02:00:00,0.001689,0.000292,0.000342,0.000292,0.000005,0.000113,0.000025,0.000410,0.000000,0.000000,0.001345,0.341371,0.000102,1.000000,0.000219 +27,2022-08-02 03:00:00,0.001691,0.000340,0.000343,0.000340,0.000005,0.000106,0.000025,0.000451,0.000000,0.000000,0.001264,0.341473,0.000101,1.000000,0.000223 +28,2022-08-02 04:00:00,0.001682,0.000341,0.000340,0.000341,0.000005,0.000100,0.000025,0.000447,0.000000,0.000000,0.001189,0.341566,0.000094,1.000000,0.000222 +29,2022-08-02 05:00:00,0.001674,0.000339,0.000337,0.000339,0.000006,0.000094,0.000025,0.000439,0.000000,0.000000,0.001120,0.341653,0.000086,1.000000,0.000220 +30,2022-08-02 06:00:00,0.001668,0.000336,0.000335,0.000336,0.000006,0.000089,0.000026,0.000431,0.000000,0.000000,0.001057,0.341733,0.000080,1.000000,0.000218 +31,2022-08-02 07:00:00,0.000000,0.000151,0.000000,0.000151,0.000006,0.000084,0.000025,0.000241,0.000000,0.000000,0.000998,0.340508,-0.001225,1.000000,0.000067 +32,2022-08-02 08:00:00,0.000000,0.000067,0.000000,0.000067,0.000007,0.000079,0.000024,0.000153,0.000000,0.000000,0.000944,0.339309,-0.001199,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000075,0.000024,0.000082,0.000000,0.000000,0.000893,0.338136,-0.001173,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000071,0.000023,0.000078,0.000000,0.000000,0.000845,0.336988,-0.001148,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000067,0.000023,0.000075,0.000000,0.000000,0.000801,0.335865,-0.001123,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000064,0.000022,0.000072,0.000000,0.000000,0.000760,0.334766,-0.001099,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000321,0.000008,0.000015,0.000008,0.000009,0.000060,0.000022,0.000077,0.000000,0.000000,0.000721,0.333991,-0.000776,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000321,0.000007,0.000006,0.000007,0.000009,0.000057,0.000022,0.000074,0.000112,0.000112,0.000685,0.333130,-0.000860,1.000000,0.000006 +39,2022-08-02 15:00:00,0.000321,0.000004,0.000000,0.000004,0.000010,0.000055,0.000021,0.000069,0.000304,0.000304,0.000652,0.332106,-0.001024,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000300,0.000001,0.000000,0.000001,0.000010,0.000052,0.000021,0.000063,0.000445,0.000445,0.000621,0.330947,-0.001160,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000206,0.000000,0.000000,0.000000,0.000011,0.000049,0.000020,0.000060,0.000537,0.000537,0.000591,0.329631,-0.001316,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000320,0.000000,0.000000,0.000000,0.000011,0.000047,0.000020,0.000058,0.000591,0.000591,0.000564,0.328401,-0.001230,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000045,0.000019,0.000056,0.000529,0.000529,0.000538,0.327007,-0.001394,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000043,0.000018,0.000055,0.000480,0.000480,0.000513,0.325692,-0.001315,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000041,0.000018,0.000053,0.000468,0.000468,0.000490,0.324417,-0.001275,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000039,0.000017,0.000052,0.000401,0.000401,0.000468,0.323234,-0.001183,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000037,0.000017,0.000051,0.000301,0.000301,0.000447,0.322174,-0.001059,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000036,0.000016,0.000050,0.000167,0.000167,0.000428,0.321269,-0.000905,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000126,0.000001,0.000001,0.000001,0.000014,0.000034,0.000016,0.000049,0.000023,0.000023,0.000410,0.320584,-0.000685,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000220,0.000004,0.000007,0.000004,0.000015,0.000033,0.000016,0.000052,0.000000,0.000000,0.000393,0.320024,-0.000561,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000200,0.000005,0.000006,0.000005,0.000015,0.000031,0.000016,0.000052,0.000000,0.000000,0.000377,0.319457,-0.000567,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000257,0.000008,0.000009,0.000008,0.000016,0.000030,0.000015,0.000054,0.000000,0.000000,0.000362,0.318955,-0.000502,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000200,0.000006,0.000006,0.000006,0.000016,0.000029,0.000015,0.000052,0.000000,0.000000,0.000348,0.318411,-0.000544,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000258,0.000008,0.000009,0.000008,0.000017,0.000028,0.000015,0.000053,0.000000,0.000000,0.000335,0.317932,-0.000479,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000017,0.000027,0.000015,0.000048,0.000000,0.000000,0.000322,0.317220,-0.000712,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000018,0.000026,0.000014,0.000045,0.000000,0.000000,0.000311,0.316523,-0.000697,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000025,0.000014,0.000043,0.000000,0.000000,0.000299,0.315841,-0.000682,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000024,0.000014,0.000043,0.000000,0.000000,0.000289,0.315174,-0.000667,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000023,0.000013,0.000043,0.000000,0.000000,0.000279,0.314521,-0.000653,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000022,0.000013,0.000042,0.000000,0.000000,0.000270,0.313883,-0.000639,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000022,0.000013,0.000042,0.000000,0.000000,0.000261,0.313258,-0.000625,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000021,0.000012,0.000042,0.000111,0.000111,0.000252,0.312538,-0.000720,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000020,0.000012,0.000042,0.000361,0.000361,0.000244,0.311588,-0.000949,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000020,0.000011,0.000042,0.000522,0.000522,0.000235,0.310502,-0.001086,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000019,0.000011,0.000041,0.000635,0.000635,0.000227,0.309329,-0.001173,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000018,0.000010,0.000041,0.000615,0.000615,0.000220,0.308200,-0.001128,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000018,0.000010,0.000041,0.000544,0.000544,0.000212,0.307166,-0.001034,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000298,0.000000,0.000000,0.000000,0.000024,0.000017,0.000010,0.000041,0.000487,0.000487,0.000205,0.306501,-0.000665,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000069,0.000000,0.000000,0.000000,0.000025,0.000016,0.000009,0.000041,0.000433,0.000433,0.000197,0.305679,-0.000822,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000016,0.000009,0.000041,0.000356,0.000356,0.000191,0.304883,-0.000796,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000015,0.000009,0.000041,0.000265,0.000265,0.000184,0.304193,-0.000691,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000015,0.000008,0.000041,0.000177,0.000177,0.000177,0.303603,-0.000590,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000014,0.000008,0.000041,0.000034,0.000034,0.000171,0.303167,-0.000436,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000014,0.000008,0.000041,0.000000,0.000000,0.000166,0.302773,-0.000394,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000013,0.000008,0.000041,0.000000,0.000000,0.000160,0.302388,-0.000385,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000013,0.000008,0.000041,0.000000,0.000000,0.000155,0.302011,-0.000377,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000012,0.000008,0.000041,0.000000,0.000000,0.000150,0.301642,-0.000369,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000012,0.000007,0.000041,0.000000,0.000000,0.000145,0.301281,-0.000361,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000012,0.000007,0.000042,0.000000,0.000000,0.000141,0.300928,-0.000353,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000011,0.000007,0.000042,0.000000,0.000000,0.000136,0.300583,-0.000346,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000011,0.000007,0.000042,0.000000,0.000000,0.000132,0.300245,-0.000338,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000011,0.000007,0.000042,0.000000,0.000000,0.000128,0.299914,-0.000331,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000010,0.000007,0.000042,0.000000,0.000000,0.000124,0.299590,-0.000324,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000010,0.000006,0.000043,0.000000,0.000000,0.000121,0.299273,-0.000317,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000010,0.000006,0.000043,0.000000,0.000000,0.000117,0.298964,-0.000310,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000009,0.000006,0.000043,0.000108,0.000108,0.000114,0.298555,-0.000409,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000009,0.000006,0.000043,0.000360,0.000360,0.000111,0.297909,-0.000646,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000009,0.000005,0.000044,0.000526,0.000526,0.000107,0.297114,-0.000795,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000009,0.000005,0.000044,0.000640,0.000640,0.000104,0.296225,-0.000889,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000005,0.000044,0.000719,0.000719,0.000100,0.295277,-0.000947,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000004,0.000044,0.000632,0.000632,0.000096,0.294436,-0.000842,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000004,0.000045,0.000583,0.000583,0.000092,0.293659,-0.000776,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000007,0.000004,0.000045,0.000506,0.000506,0.000089,0.292975,-0.000684,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000420,0.000420,0.000085,0.292390,-0.000585,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000317,0.000317,0.000081,0.291919,-0.000472,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000185,0.000185,0.000078,0.291586,-0.000333,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000046,0.000037,0.000037,0.000075,0.291406,-0.000180,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000071,0.291265,-0.000140,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000069,0.291128,-0.000137,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000003,0.000046,0.000000,0.000000,0.000066,0.290994,-0.000134,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000003,0.000047,0.000000,0.000000,0.000063,0.290863,-0.000131,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000003,0.000047,0.000000,0.000000,0.000061,0.290734,-0.000129,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000003,0.000047,0.000000,0.000000,0.000058,0.290608,-0.000126,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000003,0.000048,0.000000,0.000000,0.000056,0.290485,-0.000123,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000005,0.000002,0.000048,0.000000,0.000000,0.000054,0.290365,-0.000120,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000000,0.000000,0.000052,0.290247,-0.000118,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000050,0.290132,-0.000115,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000049,0.290019,-0.000113,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000002,0.000049,0.000000,0.000000,0.000047,0.289909,-0.000110,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000002,0.000050,0.000122,0.000122,0.000045,0.289681,-0.000227,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000002,0.000050,0.000365,0.000365,0.000044,0.289222,-0.000460,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000002,0.000050,0.000527,0.000527,0.000042,0.288613,-0.000609,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000001,0.000051,0.000642,0.000642,0.000040,0.287905,-0.000708,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000001,0.000051,0.000636,0.000636,0.000038,0.287218,-0.000687,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000001,0.000051,0.000588,0.000588,0.000036,0.286593,-0.000625,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000001,0.000052,0.000520,0.000520,0.000033,0.286048,-0.000545,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000000,0.000052,0.000491,0.000491,0.000031,0.285543,-0.000505,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000000,0.000052,0.000404,0.000404,0.000029,0.285134,-0.000409,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000000,0.000052,0.000305,0.000305,0.000027,0.284829,-0.000305,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000183,0.000183,0.000024,0.284646,-0.000183,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000064,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000048,0.000048,0.000023,0.284662,0.000016,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000090,0.000001,0.000001,0.000001,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000021,0.284751,0.000089,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000019,0.284751,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000018,0.284751,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000016,0.284751,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000055,0.000000,0.000000,0.000015,0.284751,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000014,0.284751,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000013,0.284751,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000012,0.284751,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000011,0.284751,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000056,0.000000,0.000000,0.000010,0.284751,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000000,0.000000,0.000009,0.284751,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000000,0.000000,0.000009,0.284751,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000103,0.000103,0.000008,0.284648,-0.000103,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000343,0.000342,0.000007,0.284305,-0.000342,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000058,0.000506,0.000504,0.000007,0.283802,-0.000504,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000620,0.000615,0.000006,0.283186,-0.000615,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000695,0.000687,0.000006,0.282499,-0.000687,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000639,0.000629,0.000005,0.281870,-0.000629,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000564,0.000553,0.000005,0.281317,-0.000553,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000504,0.000492,0.000005,0.280825,-0.000492,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000421,0.000410,0.000004,0.280415,-0.000410,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000316,0.000306,0.000004,0.280108,-0.000306,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000179,0.000173,0.000004,0.279935,-0.000173,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000032,0.000031,0.000003,0.279904,-0.000031,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000003,0.279904,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000003,0.279904,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000000,0.000000,0.000003,0.279904,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000002,0.279904,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.279904,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.279904,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.279904,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000099,0.000096,0.000001,0.279808,-0.000096,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000343,0.000332,0.000001,0.279476,-0.000332,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000511,0.000492,0.000001,0.278984,-0.000492,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000624,0.000600,0.000001,0.278384,-0.000600,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000651,0.000623,0.000001,0.277761,-0.000623,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000601,0.000573,0.000001,0.277189,-0.000573,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000542,0.000514,0.000001,0.276674,-0.000514,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000492,0.000466,0.000001,0.276209,-0.000466,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000400,0.000377,0.000001,0.275832,-0.000377,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000300,0.000282,0.000001,0.275550,-0.000282,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000143,0.000134,0.000001,0.275416,-0.000134,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000015,0.000014,0.000000,0.275401,-0.000014,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.275401,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.275401,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.275401,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.275401,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.275402,0.000001,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.275402,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.275402,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.275403,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.275403,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.275405,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.275406,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.275406,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000084,0.000079,0.000000,0.275327,-0.000079,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000332,0.000311,0.000000,0.275016,-0.000311,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000498,0.000466,0.000000,0.274550,-0.000466,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000614,0.000572,0.000000,0.273978,-0.000572,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000665,0.000617,0.000000,0.273360,-0.000617,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000628,0.000580,0.000000,0.272780,-0.000580,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000540,0.000498,0.000000,0.272283,-0.000498,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000482,0.000442,0.000000,0.271840,-0.000442,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000404,0.000369,0.000000,0.271471,-0.000369,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000304,0.000277,0.000000,0.271194,-0.000277,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000159,0.000145,0.000000,0.271049,-0.000145,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000010,0.000009,0.000000,0.271040,-0.000009,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.271040,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000091,0.000083,0.000000,0.270957,-0.000083,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620692.csv b/test/channel_loss/channel_forcing/et/cat-2620692.csv new file mode 100644 index 000000000..727d00d56 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620692.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000000,0.000815,0.000069,0.000815,0.000143,0.000143,0.009018,0.375369,-0.002968,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000068,0.000749,0.000034,0.000034,0.008337,0.372536,-0.002833,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000689,0.000067,0.000689,0.000000,0.000000,0.007715,0.369791,-0.002745,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000065,0.000635,0.000000,0.000000,0.007145,0.367100,-0.002691,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000586,0.000064,0.000586,0.000000,0.000000,0.006624,0.364461,-0.002639,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000541,0.000063,0.000541,0.000000,0.000000,0.006146,0.361874,-0.002587,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000500,0.000062,0.000501,0.000000,0.000000,0.005707,0.359338,-0.002536,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000463,0.000060,0.000464,0.000000,0.000000,0.005304,0.356851,-0.002487,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000429,0.000059,0.000430,0.000000,0.000000,0.004934,0.354412,-0.002438,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000399,0.000058,0.000399,0.000000,0.000000,0.004593,0.352022,-0.002391,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000370,0.000057,0.000371,0.000000,0.000000,0.004280,0.349678,-0.002344,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000344,0.000056,0.000346,0.000000,0.000000,0.003991,0.347380,-0.002298,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000321,0.000055,0.000322,0.000000,0.000000,0.003725,0.345126,-0.002253,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000299,0.000054,0.000301,0.000000,0.000000,0.003480,0.342917,-0.002209,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000279,0.000053,0.000281,0.000117,0.000117,0.003254,0.340636,-0.002281,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000260,0.000051,0.000263,0.000353,0.000353,0.003045,0.338168,-0.002468,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000243,0.000050,0.000246,0.000522,0.000522,0.002851,0.335582,-0.002585,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000228,0.000049,0.000231,0.000617,0.000617,0.002672,0.332955,-0.002628,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000213,0.000048,0.000217,0.000499,0.000499,0.002507,0.330494,-0.002461,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001004,0.000020,0.000037,0.000020,0.000004,0.000200,0.000047,0.000224,0.000469,0.000469,0.002354,0.329058,-0.001435,1.000000,0.000017 +20,2022-08-01 20:00:00,0.001112,0.000045,0.000064,0.000045,0.000004,0.000188,0.000046,0.000236,0.000400,0.000400,0.002212,0.327798,-0.001260,1.000000,0.000036 +21,2022-08-01 21:00:00,0.001147,0.000070,0.000084,0.000070,0.000004,0.000176,0.000046,0.000251,0.000327,0.000327,0.002081,0.326650,-0.001148,1.000000,0.000051 +22,2022-08-01 22:00:00,0.001054,0.000076,0.000077,0.000076,0.000005,0.000166,0.000045,0.000247,0.000268,0.000268,0.001961,0.325496,-0.001153,1.000000,0.000051 +23,2022-08-01 23:00:00,0.001020,0.000083,0.000086,0.000083,0.000005,0.000156,0.000045,0.000245,0.000187,0.000187,0.001849,0.324403,-0.001093,1.000000,0.000054 +24,2022-08-02 00:00:00,0.001005,0.000089,0.000095,0.000089,0.000006,0.000148,0.000044,0.000243,0.000124,0.000124,0.001745,0.323369,-0.001034,1.000000,0.000060 +25,2022-08-02 01:00:00,0.001625,0.000195,0.000280,0.000195,0.000006,0.000139,0.000044,0.000340,0.000050,0.000050,0.001650,0.322854,-0.000515,1.000000,0.000145 +26,2022-08-02 02:00:00,0.001831,0.000291,0.000367,0.000291,0.000007,0.000132,0.000044,0.000430,0.000000,0.000000,0.001562,0.322515,-0.000339,1.000000,0.000221 +27,2022-08-02 03:00:00,0.001809,0.000345,0.000359,0.000345,0.000007,0.000125,0.000044,0.000477,0.000000,0.000000,0.001481,0.322168,-0.000346,1.000000,0.000235 +28,2022-08-02 04:00:00,0.001812,0.000361,0.000360,0.000361,0.000008,0.000118,0.000043,0.000488,0.000000,0.000000,0.001406,0.321831,-0.000337,1.000000,0.000234 +29,2022-08-02 05:00:00,0.001821,0.000362,0.000363,0.000362,0.000008,0.000113,0.000043,0.000482,0.000000,0.000000,0.001336,0.321506,-0.000325,1.000000,0.000235 +30,2022-08-02 06:00:00,0.001824,0.000363,0.000364,0.000363,0.000009,0.000107,0.000043,0.000479,0.000000,0.000000,0.001272,0.321190,-0.000316,1.000000,0.000236 +31,2022-08-02 07:00:00,0.000000,0.000164,0.000000,0.000164,0.000009,0.000102,0.000042,0.000275,0.000000,0.000000,0.001213,0.319448,-0.001742,1.000000,0.000073 +32,2022-08-02 08:00:00,0.000000,0.000073,0.000000,0.000073,0.000010,0.000097,0.000041,0.000180,0.000000,0.000000,0.001157,0.317741,-0.001708,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000093,0.000041,0.000103,0.000000,0.000000,0.001105,0.316066,-0.001674,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000089,0.000040,0.000100,0.000000,0.000000,0.001056,0.314425,-0.001642,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000085,0.000039,0.000096,0.000000,0.000000,0.001010,0.312815,-0.001610,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000081,0.000038,0.000093,0.000000,0.000000,0.000967,0.311237,-0.001578,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000409,0.000012,0.000021,0.000012,0.000013,0.000078,0.000038,0.000102,0.000000,0.000000,0.000927,0.310070,-0.001167,1.000000,0.000010 +38,2022-08-02 14:00:00,0.000380,0.000010,0.000009,0.000010,0.000013,0.000075,0.000037,0.000098,0.000111,0.000111,0.000890,0.308800,-0.001270,1.000000,0.000008 +39,2022-08-02 15:00:00,0.000393,0.000007,0.000001,0.000007,0.000014,0.000072,0.000036,0.000093,0.000291,0.000291,0.000855,0.307400,-0.001401,1.000000,0.000002 +40,2022-08-02 16:00:00,0.000397,0.000002,0.000000,0.000002,0.000014,0.000069,0.000036,0.000085,0.000427,0.000427,0.000821,0.305898,-0.001502,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000397,0.000000,0.000000,0.000000,0.000015,0.000066,0.000035,0.000082,0.000513,0.000513,0.000790,0.304342,-0.001556,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000536,0.000000,0.000000,0.000000,0.000016,0.000064,0.000034,0.000079,0.000564,0.000564,0.000761,0.302902,-0.001440,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000112,0.000000,0.000000,0.000000,0.000016,0.000061,0.000033,0.000078,0.000510,0.000510,0.000733,0.301128,-0.001774,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000100,0.000000,0.000000,0.000000,0.000017,0.000059,0.000033,0.000076,0.000466,0.000466,0.000706,0.299419,-0.001709,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000057,0.000032,0.000075,0.000456,0.000456,0.000681,0.297718,-0.001701,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000055,0.000031,0.000073,0.000393,0.000393,0.000657,0.296111,-0.001606,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000053,0.000030,0.000072,0.000291,0.000291,0.000634,0.294637,-0.001475,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000112,0.000000,0.000000,0.000000,0.000020,0.000051,0.000030,0.000071,0.000160,0.000160,0.000613,0.293367,-0.001270,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000131,0.000001,0.000002,0.000001,0.000020,0.000050,0.000029,0.000071,0.000022,0.000022,0.000592,0.292274,-0.001093,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000176,0.000003,0.000004,0.000003,0.000021,0.000048,0.000029,0.000072,0.000000,0.000000,0.000573,0.291267,-0.001008,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000194,0.000004,0.000005,0.000004,0.000022,0.000046,0.000028,0.000072,0.000000,0.000000,0.000555,0.290295,-0.000971,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000255,0.000006,0.000008,0.000006,0.000023,0.000045,0.000028,0.000074,0.000000,0.000000,0.000538,0.289399,-0.000896,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000207,0.000006,0.000005,0.000006,0.000023,0.000044,0.000027,0.000073,0.000000,0.000000,0.000521,0.288477,-0.000923,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000270,0.000008,0.000009,0.000008,0.000024,0.000042,0.000027,0.000074,0.000000,0.000000,0.000506,0.287630,-0.000847,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000025,0.000041,0.000026,0.000069,0.000000,0.000000,0.000491,0.286544,-0.001086,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000025,0.000040,0.000026,0.000067,0.000000,0.000000,0.000477,0.285479,-0.001065,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000039,0.000025,0.000065,0.000000,0.000000,0.000464,0.284435,-0.001044,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000038,0.000025,0.000065,0.000000,0.000000,0.000451,0.283411,-0.001024,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000037,0.000024,0.000064,0.000000,0.000000,0.000439,0.282407,-0.001004,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000036,0.000024,0.000064,0.000000,0.000000,0.000427,0.281423,-0.000984,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000035,0.000023,0.000064,0.000000,0.000000,0.000416,0.280458,-0.000965,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000034,0.000023,0.000064,0.000110,0.000110,0.000405,0.279404,-0.001054,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000033,0.000022,0.000064,0.000358,0.000358,0.000394,0.278127,-0.001277,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000032,0.000022,0.000064,0.000509,0.000509,0.000384,0.276728,-0.001399,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000031,0.000021,0.000063,0.000625,0.000625,0.000373,0.275242,-0.001486,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000030,0.000020,0.000063,0.000602,0.000602,0.000363,0.273808,-0.001434,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000026,0.000000,0.000000,0.000000,0.000034,0.000029,0.000020,0.000063,0.000519,0.000519,0.000353,0.272508,-0.001300,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000361,0.000000,0.000000,0.000000,0.000035,0.000029,0.000019,0.000063,0.000472,0.000472,0.000344,0.271609,-0.000900,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000078,0.000000,0.000000,0.000000,0.000035,0.000028,0.000019,0.000063,0.000429,0.000429,0.000335,0.270492,-0.001117,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000016,0.000000,0.000000,0.000000,0.000036,0.000027,0.000018,0.000063,0.000347,0.000347,0.000325,0.269416,-0.001076,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000026,0.000018,0.000063,0.000264,0.000264,0.000317,0.268427,-0.000989,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000026,0.000017,0.000063,0.000172,0.000172,0.000308,0.267547,-0.000880,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000025,0.000017,0.000064,0.000032,0.000032,0.000300,0.266822,-0.000725,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000024,0.000016,0.000064,0.000000,0.000000,0.000292,0.266142,-0.000680,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000024,0.000016,0.000064,0.000000,0.000000,0.000284,0.265476,-0.000666,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000023,0.000016,0.000064,0.000000,0.000000,0.000277,0.264823,-0.000653,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000023,0.000016,0.000064,0.000000,0.000000,0.000270,0.264182,-0.000641,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000022,0.000015,0.000064,0.000000,0.000000,0.000264,0.263554,-0.000628,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000021,0.000015,0.000065,0.000000,0.000000,0.000257,0.262938,-0.000616,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000021,0.000015,0.000065,0.000000,0.000000,0.000251,0.262334,-0.000604,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000020,0.000014,0.000065,0.000000,0.000000,0.000245,0.261742,-0.000592,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000020,0.000014,0.000066,0.000000,0.000000,0.000239,0.261162,-0.000580,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000019,0.000014,0.000066,0.000000,0.000000,0.000233,0.260593,-0.000569,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000019,0.000014,0.000066,0.000000,0.000000,0.000228,0.260035,-0.000558,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000019,0.000013,0.000067,0.000000,0.000000,0.000223,0.259488,-0.000547,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000018,0.000013,0.000067,0.000108,0.000108,0.000217,0.258845,-0.000642,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000018,0.000013,0.000067,0.000353,0.000353,0.000212,0.257976,-0.000870,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000017,0.000012,0.000068,0.000516,0.000516,0.000207,0.256963,-0.001013,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000017,0.000012,0.000068,0.000620,0.000620,0.000202,0.255868,-0.001095,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000016,0.000011,0.000068,0.000705,0.000705,0.000196,0.254711,-0.001157,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000016,0.000010,0.000069,0.000629,0.000629,0.000191,0.253651,-0.001060,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000015,0.000010,0.000069,0.000565,0.000565,0.000185,0.252675,-0.000976,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000015,0.000010,0.000069,0.000500,0.000500,0.000180,0.251782,-0.000894,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000015,0.000009,0.000070,0.000414,0.000414,0.000175,0.250990,-0.000791,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000014,0.000009,0.000070,0.000311,0.000311,0.000169,0.250315,-0.000675,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000009,0.000070,0.000180,0.000180,0.000164,0.249782,-0.000534,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000013,0.000008,0.000071,0.000035,0.000035,0.000159,0.249401,-0.000381,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000013,0.000008,0.000071,0.000000,0.000000,0.000155,0.249061,-0.000339,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000150,0.248729,-0.000333,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000012,0.000008,0.000072,0.000000,0.000000,0.000146,0.248402,-0.000326,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000012,0.000008,0.000072,0.000000,0.000000,0.000142,0.248082,-0.000320,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000012,0.000008,0.000073,0.000000,0.000000,0.000138,0.247769,-0.000314,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000007,0.000073,0.000000,0.000000,0.000134,0.247461,-0.000307,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000011,0.000007,0.000074,0.000000,0.000000,0.000131,0.247160,-0.000301,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000011,0.000007,0.000074,0.000000,0.000000,0.000127,0.246864,-0.000296,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000010,0.000007,0.000075,0.000000,0.000000,0.000124,0.246575,-0.000290,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000010,0.000007,0.000075,0.000000,0.000000,0.000121,0.246290,-0.000284,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000010,0.000007,0.000076,0.000000,0.000000,0.000118,0.246012,-0.000279,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000010,0.000007,0.000076,0.000000,0.000000,0.000115,0.245739,-0.000273,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000009,0.000006,0.000077,0.000121,0.000121,0.000112,0.245353,-0.000386,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000009,0.000006,0.000077,0.000359,0.000359,0.000109,0.244740,-0.000613,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000009,0.000006,0.000078,0.000518,0.000518,0.000106,0.243984,-0.000757,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000009,0.000005,0.000078,0.000635,0.000635,0.000103,0.243128,-0.000856,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000008,0.000005,0.000079,0.000617,0.000617,0.000100,0.242306,-0.000822,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000008,0.000005,0.000079,0.000578,0.000578,0.000096,0.241538,-0.000767,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000008,0.000004,0.000080,0.000505,0.000505,0.000093,0.240858,-0.000681,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000007,0.000004,0.000080,0.000487,0.000487,0.000089,0.240208,-0.000650,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000007,0.000004,0.000080,0.000393,0.000393,0.000086,0.239662,-0.000546,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000007,0.000003,0.000081,0.000298,0.000298,0.000082,0.239221,-0.000441,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000003,0.000081,0.000176,0.000176,0.000079,0.238908,-0.000313,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000060,0.000000,0.000000,0.000000,0.000075,0.000006,0.000003,0.000082,0.000045,0.000045,0.000076,0.238788,-0.000120,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000060,0.000000,0.000000,0.000000,0.000076,0.000006,0.000003,0.000082,0.000000,0.000000,0.000073,0.238715,-0.000073,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000003,0.000083,0.000000,0.000000,0.000070,0.238585,-0.000131,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000003,0.000083,0.000000,0.000000,0.000068,0.238456,-0.000128,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000005,0.000003,0.000084,0.000000,0.000000,0.000066,0.238331,-0.000126,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000005,0.000003,0.000084,0.000000,0.000000,0.000063,0.238208,-0.000123,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000000,0.000000,0.000061,0.238087,-0.000121,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000000,0.000000,0.000059,0.237969,-0.000118,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000005,0.000003,0.000086,0.000000,0.000000,0.000057,0.237853,-0.000116,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000005,0.000003,0.000086,0.000000,0.000000,0.000055,0.237739,-0.000114,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000003,0.000087,0.000000,0.000000,0.000054,0.237627,-0.000112,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000003,0.000087,0.000000,0.000000,0.000052,0.237518,-0.000109,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000003,0.000088,0.000000,0.000000,0.000050,0.237411,-0.000107,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000003,0.000088,0.000103,0.000103,0.000049,0.237205,-0.000206,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000004,0.000002,0.000089,0.000333,0.000333,0.000047,0.236778,-0.000427,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000004,0.000002,0.000089,0.000498,0.000498,0.000045,0.236196,-0.000581,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000004,0.000002,0.000090,0.000611,0.000611,0.000043,0.235515,-0.000681,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000003,0.000001,0.000090,0.000677,0.000677,0.000041,0.234783,-0.000732,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000003,0.000001,0.000091,0.000634,0.000634,0.000039,0.234108,-0.000675,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000003,0.000001,0.000091,0.000560,0.000560,0.000037,0.233518,-0.000590,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000499,0.000499,0.000034,0.233000,-0.000518,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000092,0.000418,0.000418,0.000032,0.232571,-0.000428,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000093,0.000308,0.000308,0.000030,0.232259,-0.000313,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000172,0.000172,0.000027,0.232085,-0.000173,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000094,0.000030,0.000030,0.000025,0.232055,-0.000031,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000023,0.232054,-0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000094,0.000000,0.000000,0.000022,0.232054,-0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000020,0.232053,-0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000095,0.000000,0.000000,0.000018,0.232053,-0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000096,0.000000,0.000000,0.000017,0.232052,-0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000016,0.232052,-0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000014,0.232051,-0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000013,0.232051,-0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000000,0.000000,0.000012,0.232051,-0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000000,0.000000,0.000011,0.232050,-0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000000,0.000000,0.000011,0.232050,-0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000099,0.000000,0.000000,0.000010,0.232049,-0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000099,0.000099,0.000009,0.231951,-0.000099,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000100,0.000341,0.000341,0.000008,0.231610,-0.000341,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000505,0.000503,0.000008,0.231107,-0.000503,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000613,0.000608,0.000007,0.230499,-0.000608,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000102,0.000637,0.000629,0.000007,0.229869,-0.000629,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000102,0.000585,0.000574,0.000006,0.229295,-0.000574,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000532,0.000520,0.000006,0.228775,-0.000520,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000481,0.000468,0.000005,0.228307,-0.000468,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000392,0.000380,0.000005,0.227927,-0.000380,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000288,0.000278,0.000004,0.227649,-0.000278,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000137,0.000132,0.000004,0.227516,-0.000132,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000014,0.000013,0.000004,0.227503,-0.000013,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.227503,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.227503,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000003,0.227503,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000003,0.227503,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000003,0.227503,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000109,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000110,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000111,0.000000,0.000000,0.000002,0.227503,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000001,0.227504,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000083,0.000080,0.000001,0.227424,-0.000079,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000327,0.000315,0.000001,0.227110,-0.000315,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000485,0.000465,0.000001,0.226644,-0.000465,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000606,0.000579,0.000001,0.226065,-0.000579,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000641,0.000609,0.000001,0.225456,-0.000609,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000609,0.000575,0.000001,0.224881,-0.000575,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000523,0.000492,0.000001,0.224389,-0.000492,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000115,0.000479,0.000448,0.000001,0.223940,-0.000448,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000402,0.000375,0.000001,0.223565,-0.000375,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000297,0.000276,0.000001,0.223289,-0.000276,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000153,0.000142,0.000001,0.223147,-0.000142,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000009,0.000008,0.000001,0.223139,-0.000008,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000001,0.223139,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000000,0.223139,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000091,0.000084,0.000000,0.223055,-0.000084,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620693.csv b/test/channel_loss/channel_forcing/et/cat-2620693.csv new file mode 100644 index 000000000..7dd04df24 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620693.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000065,0.000000,0.000000,0.000000,0.000000,0.000816,0.000074,0.000816,0.000146,0.000146,0.009023,0.379393,-0.001602,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000750,0.000072,0.000750,0.000036,0.000036,0.008345,0.377873,-0.001519,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000690,0.000070,0.000690,0.000000,0.000000,0.007725,0.376424,-0.001449,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000068,0.000636,0.000000,0.000000,0.007157,0.375010,-0.001415,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000587,0.000067,0.000587,0.000000,0.000000,0.006637,0.373628,-0.001381,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000542,0.000065,0.000542,0.000000,0.000000,0.006160,0.372279,-0.001349,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000502,0.000064,0.000502,0.000000,0.000000,0.005723,0.370963,-0.001317,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000465,0.000062,0.000465,0.000000,0.000000,0.005320,0.369677,-0.001286,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000431,0.000061,0.000431,0.000000,0.000000,0.004950,0.368421,-0.001256,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000400,0.000059,0.000400,0.000000,0.000000,0.004609,0.367195,-0.001226,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000372,0.000058,0.000372,0.000000,0.000000,0.004296,0.365998,-0.001197,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000346,0.000057,0.000346,0.000000,0.000000,0.004007,0.364829,-0.001169,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000322,0.000055,0.000323,0.000000,0.000000,0.003740,0.363688,-0.001141,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000300,0.000054,0.000301,0.000000,0.000000,0.003494,0.362574,-0.001114,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000280,0.000053,0.000281,0.000117,0.000117,0.003266,0.361371,-0.001202,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000261,0.000051,0.000263,0.000349,0.000349,0.003056,0.359971,-0.001401,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000244,0.000049,0.000246,0.000518,0.000518,0.002861,0.358438,-0.001532,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000047,0.000230,0.000602,0.000602,0.002679,0.356860,-0.001578,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000214,0.000046,0.000215,0.000484,0.000484,0.002511,0.355435,-0.001425,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001163,0.000020,0.000036,0.000020,0.000002,0.000200,0.000045,0.000222,0.000463,0.000463,0.002356,0.355163,-0.000272,1.000000,0.000016 +20,2022-08-01 20:00:00,0.001316,0.000043,0.000062,0.000043,0.000002,0.000188,0.000045,0.000233,0.000394,0.000394,0.002214,0.355089,-0.000074,1.000000,0.000035 +21,2022-08-01 21:00:00,0.001326,0.000062,0.000072,0.000062,0.000002,0.000177,0.000045,0.000241,0.000331,0.000331,0.002082,0.355079,-0.000010,1.000000,0.000045 +22,2022-08-01 22:00:00,0.001309,0.000074,0.000079,0.000074,0.000002,0.000166,0.000045,0.000242,0.000264,0.000264,0.001961,0.355111,0.000032,1.000000,0.000050 +23,2022-08-01 23:00:00,0.001326,0.000085,0.000094,0.000085,0.000003,0.000157,0.000045,0.000245,0.000182,0.000182,0.001850,0.355224,0.000113,1.000000,0.000058 +24,2022-08-02 00:00:00,0.001319,0.000095,0.000102,0.000095,0.000003,0.000148,0.000046,0.000246,0.000125,0.000125,0.001748,0.355376,0.000151,1.000000,0.000064 +25,2022-08-02 01:00:00,0.001768,0.000156,0.000203,0.000156,0.000003,0.000140,0.000046,0.000298,0.000051,0.000051,0.001654,0.355935,0.000560,1.000000,0.000111 +26,2022-08-02 02:00:00,0.001759,0.000188,0.000212,0.000188,0.000003,0.000132,0.000047,0.000324,0.000000,0.000000,0.001569,0.356514,0.000579,1.000000,0.000136 +27,2022-08-02 03:00:00,0.001762,0.000211,0.000213,0.000211,0.000004,0.000126,0.000047,0.000340,0.000000,0.000000,0.001491,0.357081,0.000567,1.000000,0.000139 +28,2022-08-02 04:00:00,0.001760,0.000213,0.000213,0.000213,0.000004,0.000120,0.000048,0.000337,0.000000,0.000000,0.001419,0.357633,0.000552,1.000000,0.000139 +29,2022-08-02 05:00:00,0.001771,0.000215,0.000216,0.000215,0.000004,0.000114,0.000049,0.000333,0.000000,0.000000,0.001354,0.358180,0.000547,1.000000,0.000140 +30,2022-08-02 06:00:00,0.001765,0.000215,0.000215,0.000215,0.000004,0.000109,0.000049,0.000328,0.000000,0.000000,0.001294,0.358709,0.000529,1.000000,0.000140 +31,2022-08-02 07:00:00,0.000000,0.000097,0.000000,0.000097,0.000005,0.000104,0.000048,0.000206,0.000000,0.000000,0.001238,0.357712,-0.000997,1.000000,0.000043 +32,2022-08-02 08:00:00,0.000000,0.000043,0.000000,0.000043,0.000005,0.000100,0.000047,0.000148,0.000000,0.000000,0.001186,0.356738,-0.000973,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000096,0.000046,0.000101,0.000000,0.000000,0.001136,0.355788,-0.000950,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000092,0.000045,0.000097,0.000000,0.000000,0.001090,0.354860,-0.000928,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000088,0.000044,0.000094,0.000000,0.000000,0.001046,0.353954,-0.000906,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000084,0.000043,0.000090,0.000000,0.000000,0.001004,0.353069,-0.000885,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000389,0.000006,0.000011,0.000006,0.000006,0.000081,0.000042,0.000094,0.000000,0.000000,0.000965,0.352574,-0.000495,1.000000,0.000005 +38,2022-08-02 14:00:00,0.000320,0.000005,0.000003,0.000005,0.000007,0.000078,0.000041,0.000089,0.000112,0.000112,0.000929,0.351922,-0.000652,1.000000,0.000004 +39,2022-08-02 15:00:00,0.000268,0.000003,0.000000,0.000003,0.000007,0.000075,0.000040,0.000085,0.000285,0.000285,0.000894,0.351070,-0.000853,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000240,0.000001,0.000000,0.000001,0.000007,0.000072,0.000039,0.000080,0.000415,0.000415,0.000861,0.350082,-0.000988,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000240,0.000000,0.000000,0.000000,0.000008,0.000070,0.000038,0.000077,0.000494,0.000494,0.000830,0.349041,-0.001041,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000308,0.000000,0.000000,0.000000,0.000008,0.000067,0.000037,0.000075,0.000543,0.000543,0.000800,0.348043,-0.000998,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000065,0.000036,0.000073,0.000493,0.000493,0.000771,0.346878,-0.001166,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000062,0.000034,0.000071,0.000462,0.000462,0.000743,0.345770,-0.001108,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000072,0.000000,0.000000,0.000000,0.000009,0.000060,0.000033,0.000069,0.000455,0.000455,0.000716,0.344705,-0.001065,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000083,0.000000,0.000000,0.000000,0.000009,0.000058,0.000032,0.000067,0.000388,0.000388,0.000690,0.343741,-0.000964,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000091,0.000000,0.000000,0.000000,0.000010,0.000056,0.000031,0.000065,0.000285,0.000285,0.000665,0.342907,-0.000834,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000149,0.000000,0.000000,0.000000,0.000010,0.000054,0.000030,0.000064,0.000159,0.000159,0.000642,0.342273,-0.000635,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000295,0.000003,0.000005,0.000003,0.000010,0.000052,0.000030,0.000065,0.000024,0.000024,0.000620,0.341923,-0.000350,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000303,0.000005,0.000007,0.000005,0.000011,0.000050,0.000029,0.000066,0.000000,0.000000,0.000599,0.341611,-0.000311,1.000000,0.000004 +51,2022-08-03 03:00:00,0.000295,0.000006,0.000006,0.000006,0.000011,0.000048,0.000029,0.000066,0.000000,0.000000,0.000580,0.341300,-0.000312,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000303,0.000007,0.000007,0.000007,0.000011,0.000047,0.000029,0.000065,0.000000,0.000000,0.000561,0.341003,-0.000297,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000295,0.000007,0.000006,0.000007,0.000012,0.000046,0.000028,0.000064,0.000000,0.000000,0.000544,0.340706,-0.000297,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000300,0.000007,0.000007,0.000007,0.000012,0.000044,0.000028,0.000063,0.000000,0.000000,0.000528,0.340420,-0.000286,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000013,0.000043,0.000027,0.000058,0.000000,0.000000,0.000513,0.339854,-0.000566,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000013,0.000042,0.000027,0.000056,0.000000,0.000000,0.000498,0.339302,-0.000552,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000040,0.000026,0.000054,0.000000,0.000000,0.000483,0.338763,-0.000539,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000039,0.000025,0.000053,0.000000,0.000000,0.000470,0.338236,-0.000526,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000038,0.000025,0.000052,0.000000,0.000000,0.000456,0.337722,-0.000514,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000037,0.000024,0.000052,0.000000,0.000000,0.000444,0.337220,-0.000502,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000036,0.000024,0.000051,0.000000,0.000000,0.000431,0.336730,-0.000490,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000035,0.000023,0.000050,0.000111,0.000111,0.000419,0.336143,-0.000587,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000034,0.000022,0.000050,0.000356,0.000356,0.000407,0.335331,-0.000813,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000033,0.000021,0.000049,0.000497,0.000497,0.000395,0.334400,-0.000931,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000032,0.000020,0.000048,0.000610,0.000610,0.000383,0.333381,-0.001019,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000031,0.000019,0.000048,0.000586,0.000586,0.000371,0.332409,-0.000971,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000030,0.000018,0.000047,0.000515,0.000515,0.000359,0.331592,-0.000818,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000109,0.000000,0.000000,0.000000,0.000018,0.000029,0.000017,0.000047,0.000464,0.000464,0.000347,0.330888,-0.000704,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000028,0.000016,0.000046,0.000431,0.000431,0.000335,0.330188,-0.000700,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000076,0.000000,0.000000,0.000000,0.000018,0.000027,0.000015,0.000045,0.000343,0.000343,0.000323,0.329603,-0.000584,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000019,0.000026,0.000015,0.000045,0.000264,0.000264,0.000312,0.329090,-0.000513,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000052,0.000000,0.000000,0.000000,0.000019,0.000025,0.000014,0.000044,0.000174,0.000174,0.000301,0.328673,-0.000417,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000024,0.000014,0.000044,0.000034,0.000034,0.000291,0.328351,-0.000322,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000023,0.000014,0.000043,0.000000,0.000000,0.000281,0.328070,-0.000281,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000023,0.000013,0.000043,0.000000,0.000000,0.000272,0.327796,-0.000274,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000022,0.000013,0.000043,0.000000,0.000000,0.000263,0.327528,-0.000268,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000021,0.000013,0.000042,0.000000,0.000000,0.000254,0.327267,-0.000261,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000021,0.000012,0.000042,0.000000,0.000000,0.000246,0.327011,-0.000255,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000020,0.000012,0.000042,0.000000,0.000000,0.000238,0.326762,-0.000249,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000019,0.000012,0.000042,0.000000,0.000000,0.000231,0.326519,-0.000243,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000019,0.000011,0.000041,0.000000,0.000000,0.000224,0.326281,-0.000238,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000018,0.000011,0.000041,0.000000,0.000000,0.000217,0.326049,-0.000232,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000018,0.000011,0.000041,0.000000,0.000000,0.000210,0.325822,-0.000227,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000017,0.000011,0.000041,0.000000,0.000000,0.000204,0.325601,-0.000221,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000016,0.000010,0.000041,0.000000,0.000000,0.000198,0.325385,-0.000216,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000016,0.000010,0.000041,0.000110,0.000110,0.000192,0.325067,-0.000319,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000015,0.000009,0.000041,0.000350,0.000350,0.000186,0.324521,-0.000545,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000015,0.000009,0.000041,0.000507,0.000507,0.000180,0.323836,-0.000686,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000014,0.000008,0.000040,0.000601,0.000601,0.000173,0.323075,-0.000761,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000014,0.000007,0.000040,0.000687,0.000687,0.000166,0.322248,-0.000827,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000013,0.000006,0.000040,0.000614,0.000614,0.000159,0.321511,-0.000736,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000013,0.000005,0.000040,0.000549,0.000549,0.000151,0.320856,-0.000656,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000012,0.000004,0.000039,0.000499,0.000499,0.000144,0.320264,-0.000591,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000004,0.000039,0.000412,0.000412,0.000136,0.319773,-0.000492,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000003,0.000039,0.000306,0.000306,0.000129,0.319396,-0.000377,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000003,0.000039,0.000181,0.000181,0.000122,0.319149,-0.000246,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000003,0.000039,0.000037,0.000037,0.000115,0.319050,-0.000100,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000009,0.000003,0.000039,0.000000,0.000000,0.000109,0.318988,-0.000061,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000009,0.000003,0.000038,0.000000,0.000000,0.000104,0.318928,-0.000060,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000008,0.000003,0.000038,0.000000,0.000000,0.000098,0.318870,-0.000059,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000008,0.000003,0.000038,0.000000,0.000000,0.000093,0.318812,-0.000057,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000007,0.000003,0.000038,0.000000,0.000000,0.000089,0.318756,-0.000056,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000007,0.000003,0.000038,0.000000,0.000000,0.000084,0.318702,-0.000055,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000007,0.000003,0.000038,0.000000,0.000000,0.000080,0.318649,-0.000053,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000006,0.000003,0.000038,0.000000,0.000000,0.000076,0.318596,-0.000052,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000006,0.000002,0.000038,0.000000,0.000000,0.000073,0.318546,-0.000051,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000006,0.000002,0.000038,0.000000,0.000000,0.000069,0.318496,-0.000050,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000006,0.000002,0.000039,0.000000,0.000000,0.000066,0.318448,-0.000048,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000005,0.000002,0.000039,0.000000,0.000000,0.000063,0.318400,-0.000047,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000005,0.000002,0.000039,0.000121,0.000121,0.000060,0.318236,-0.000164,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000005,0.000002,0.000039,0.000357,0.000357,0.000057,0.317845,-0.000391,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000039,0.000510,0.000510,0.000054,0.317314,-0.000531,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000004,0.000000,0.000039,0.000621,0.000621,0.000050,0.316687,-0.000627,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000004,0.000000,0.000039,0.000602,0.000602,0.000046,0.316086,-0.000602,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000004,0.000000,0.000039,0.000564,0.000563,0.000042,0.315523,-0.000563,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000003,0.000000,0.000039,0.000498,0.000496,0.000039,0.315027,-0.000496,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000003,0.000000,0.000039,0.000490,0.000487,0.000036,0.314540,-0.000487,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000003,0.000000,0.000039,0.000392,0.000388,0.000033,0.314152,-0.000388,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000003,0.000000,0.000039,0.000294,0.000291,0.000031,0.313861,-0.000291,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000040,0.000176,0.000173,0.000028,0.313688,-0.000173,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000047,0.000046,0.000026,0.313642,-0.000046,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000000,0.000000,0.000024,0.313642,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000000,0.000000,0.000022,0.313642,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000002,0.000000,0.000040,0.000000,0.000000,0.000021,0.313642,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000002,0.000000,0.000040,0.000000,0.000000,0.000019,0.313642,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000041,0.000000,0.000000,0.000018,0.313642,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000041,0.000000,0.000000,0.000016,0.313642,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000015,0.313642,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000014,0.313642,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000013,0.313642,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000012,0.313642,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000011,0.313642,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000010,0.313642,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000042,0.000104,0.000102,0.000009,0.313540,-0.000102,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000328,0.000323,0.000009,0.313217,-0.000323,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000489,0.000480,0.000008,0.312737,-0.000480,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000598,0.000586,0.000007,0.312151,-0.000586,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000043,0.000659,0.000644,0.000007,0.311507,-0.000644,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000626,0.000610,0.000006,0.310897,-0.000610,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000566,0.000549,0.000006,0.310348,-0.000549,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000501,0.000485,0.000005,0.309863,-0.000485,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000417,0.000402,0.000005,0.309461,-0.000402,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000045,0.000308,0.000296,0.000005,0.309165,-0.000296,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000045,0.000173,0.000166,0.000004,0.308999,-0.000166,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000032,0.000031,0.000004,0.308967,-0.000031,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000004,0.308967,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000046,0.000000,0.000000,0.000003,0.308967,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000003,0.308967,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000003,0.308967,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000003,0.308967,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000048,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000002,0.308967,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.308967,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000100,0.000096,0.000001,0.308871,-0.000096,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000049,0.000339,0.000325,0.000001,0.308546,-0.000325,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000494,0.000474,0.000001,0.308073,-0.000474,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000595,0.000569,0.000001,0.307504,-0.000569,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000626,0.000596,0.000001,0.306908,-0.000596,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000573,0.000544,0.000001,0.306363,-0.000544,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000530,0.000501,0.000001,0.305862,-0.000501,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000483,0.000456,0.000001,0.305405,-0.000456,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000394,0.000371,0.000001,0.305035,-0.000371,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000285,0.000268,0.000001,0.304766,-0.000268,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000139,0.000130,0.000001,0.304636,-0.000130,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000016,0.000015,0.000001,0.304622,-0.000015,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000001,0.304622,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000000,0.304622,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.304622,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.304622,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.304625,0.000003,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.304628,0.000003,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.304630,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.304632,0.000003,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.304635,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.304637,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.304638,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.304638,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000084,0.000079,0.000000,0.304559,-0.000079,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000326,0.000306,0.000000,0.304253,-0.000306,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000472,0.000441,0.000000,0.303812,-0.000441,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000592,0.000552,0.000000,0.303259,-0.000552,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000626,0.000583,0.000000,0.302676,-0.000583,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000591,0.000548,0.000000,0.302128,-0.000548,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000523,0.000484,0.000000,0.301644,-0.000484,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000489,0.000451,0.000000,0.301193,-0.000451,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000402,0.000370,0.000000,0.300823,-0.000370,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000295,0.000271,0.000000,0.300552,-0.000271,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000154,0.000141,0.000000,0.300411,-0.000141,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000011,0.000010,0.000000,0.300401,-0.000010,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.300401,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000092,0.000084,0.000000,0.300317,-0.000084,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620694.csv b/test/channel_loss/channel_forcing/et/cat-2620694.csv new file mode 100644 index 000000000..d247c5850 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620694.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000813,0.000044,0.000813,0.000146,0.000146,0.008996,0.384069,-0.002670,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000044,0.000745,0.000033,0.000033,0.008295,0.381501,-0.002569,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000683,0.000043,0.000683,0.000000,0.000000,0.007654,0.379015,-0.002486,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000627,0.000042,0.000628,0.000000,0.000000,0.007069,0.376578,-0.002437,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000041,0.000577,0.000000,0.000000,0.006533,0.374188,-0.002389,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000531,0.000040,0.000531,0.000000,0.000000,0.006042,0.371846,-0.002343,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000490,0.000039,0.000490,0.000000,0.000000,0.005592,0.369549,-0.002297,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000452,0.000039,0.000452,0.000000,0.000000,0.005179,0.367298,-0.002252,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000417,0.000038,0.000418,0.000000,0.000000,0.004799,0.365090,-0.002207,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000386,0.000037,0.000386,0.000000,0.000000,0.004451,0.362926,-0.002164,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000357,0.000036,0.000358,0.000000,0.000000,0.004130,0.360805,-0.002122,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000330,0.000036,0.000332,0.000000,0.000000,0.003836,0.358725,-0.002080,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000306,0.000035,0.000308,0.000000,0.000000,0.003564,0.356686,-0.002039,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000284,0.000034,0.000286,0.000000,0.000000,0.003315,0.354686,-0.001999,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000264,0.000034,0.000266,0.000117,0.000117,0.003084,0.352612,-0.002074,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000245,0.000033,0.000247,0.000353,0.000353,0.002872,0.350347,-0.002265,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000032,0.000231,0.000524,0.000524,0.002676,0.347959,-0.002388,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000212,0.000031,0.000215,0.000608,0.000608,0.002495,0.345535,-0.002424,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000198,0.000030,0.000201,0.000490,0.000490,0.002327,0.343275,-0.002261,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001176,0.000071,0.000128,0.000071,0.000003,0.000184,0.000030,0.000258,0.000467,0.000467,0.002173,0.342108,-0.001167,1.000000,0.000058 +20,2022-08-01 20:00:00,0.001267,0.000134,0.000186,0.000134,0.000004,0.000172,0.000030,0.000310,0.000396,0.000396,0.002031,0.341067,-0.001041,1.000000,0.000109 +21,2022-08-01 21:00:00,0.001239,0.000181,0.000199,0.000181,0.000004,0.000161,0.000029,0.000346,0.000332,0.000332,0.001899,0.340067,-0.000999,1.000000,0.000127 +22,2022-08-01 22:00:00,0.001193,0.000200,0.000205,0.000200,0.000004,0.000150,0.000029,0.000354,0.000269,0.000269,0.001778,0.339098,-0.000969,1.000000,0.000132 +23,2022-08-01 23:00:00,0.001210,0.000226,0.000246,0.000226,0.000005,0.000141,0.000029,0.000372,0.000187,0.000187,0.001666,0.338207,-0.000892,1.000000,0.000152 +24,2022-08-02 00:00:00,0.001217,0.000254,0.000275,0.000254,0.000005,0.000132,0.000028,0.000391,0.000125,0.000125,0.001562,0.337371,-0.000835,1.000000,0.000173 +25,2022-08-02 01:00:00,0.001800,0.000455,0.000612,0.000455,0.000006,0.000124,0.000028,0.000584,0.000050,0.000050,0.001467,0.336866,-0.000505,1.000000,0.000330 +26,2022-08-02 02:00:00,0.002001,0.000627,0.000761,0.000627,0.000006,0.000116,0.000028,0.000749,0.000000,0.000000,0.001379,0.336471,-0.000396,1.000000,0.000465 +27,2022-08-02 03:00:00,0.001986,0.000726,0.000752,0.000726,0.000007,0.000109,0.000028,0.000842,0.000000,0.000000,0.001298,0.336078,-0.000393,1.000000,0.000491 +28,2022-08-02 04:00:00,0.001987,0.000754,0.000752,0.000754,0.000007,0.000103,0.000028,0.000864,0.000000,0.000000,0.001223,0.335693,-0.000385,1.000000,0.000489 +29,2022-08-02 05:00:00,0.001990,0.000753,0.000754,0.000753,0.000007,0.000097,0.000028,0.000857,0.000000,0.000000,0.001153,0.335318,-0.000375,1.000000,0.000490 +30,2022-08-02 06:00:00,0.001993,0.000754,0.000755,0.000754,0.000008,0.000092,0.000028,0.000853,0.000000,0.000000,0.001089,0.334952,-0.000366,1.000000,0.000490 +31,2022-08-02 07:00:00,0.000000,0.000339,0.000000,0.000339,0.000008,0.000086,0.000027,0.000434,0.000000,0.000000,0.001030,0.333379,-0.001573,1.000000,0.000151 +32,2022-08-02 08:00:00,0.000000,0.000151,0.000000,0.000151,0.000009,0.000082,0.000026,0.000242,0.000000,0.000000,0.000975,0.331837,-0.001542,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000077,0.000026,0.000087,0.000000,0.000000,0.000923,0.330325,-0.001512,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000073,0.000025,0.000083,0.000000,0.000000,0.000875,0.328843,-0.001482,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000070,0.000025,0.000080,0.000000,0.000000,0.000830,0.327390,-0.001453,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000066,0.000024,0.000077,0.000000,0.000000,0.000789,0.325965,-0.001425,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000500,0.000036,0.000065,0.000036,0.000011,0.000063,0.000024,0.000110,0.000000,0.000000,0.000750,0.324995,-0.000970,1.000000,0.000029 +38,2022-08-02 14:00:00,0.000400,0.000029,0.000023,0.000029,0.000012,0.000060,0.000024,0.000101,0.000112,0.000112,0.000714,0.323878,-0.001117,1.000000,0.000023 +39,2022-08-02 15:00:00,0.000500,0.000026,0.000013,0.000026,0.000013,0.000057,0.000023,0.000095,0.000287,0.000287,0.000681,0.322719,-0.001159,1.000000,0.000010 +40,2022-08-02 16:00:00,0.000500,0.000009,0.000002,0.000009,0.000013,0.000054,0.000023,0.000076,0.000421,0.000421,0.000649,0.321461,-0.001258,1.000000,0.000003 +41,2022-08-02 17:00:00,0.000500,0.000003,0.000000,0.000003,0.000014,0.000052,0.000022,0.000069,0.000502,0.000502,0.000620,0.320151,-0.001310,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000596,0.000001,0.000001,0.000001,0.000014,0.000050,0.000022,0.000065,0.000547,0.000547,0.000592,0.318916,-0.001235,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000064,0.000000,0.000000,0.000000,0.000015,0.000047,0.000021,0.000062,0.000500,0.000500,0.000566,0.317231,-0.001685,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000075,0.000000,0.000000,0.000000,0.000015,0.000045,0.000021,0.000061,0.000461,0.000461,0.000542,0.315627,-0.001604,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000043,0.000020,0.000059,0.000458,0.000458,0.000519,0.314046,-0.001581,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000042,0.000020,0.000058,0.000394,0.000394,0.000497,0.312559,-0.001488,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000040,0.000019,0.000057,0.000289,0.000289,0.000477,0.311204,-0.001355,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000018,0.000038,0.000019,0.000056,0.000159,0.000159,0.000458,0.310065,-0.001139,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000144,0.000002,0.000004,0.000002,0.000019,0.000037,0.000019,0.000058,0.000022,0.000022,0.000440,0.309096,-0.000969,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000201,0.000007,0.000011,0.000007,0.000019,0.000035,0.000018,0.000062,0.000000,0.000000,0.000423,0.308217,-0.000879,1.000000,0.000006 +51,2022-08-03 03:00:00,0.000222,0.000011,0.000013,0.000011,0.000020,0.000034,0.000018,0.000065,0.000000,0.000000,0.000407,0.307373,-0.000844,1.000000,0.000008 +52,2022-08-03 04:00:00,0.000273,0.000016,0.000020,0.000016,0.000021,0.000033,0.000018,0.000070,0.000000,0.000000,0.000392,0.306589,-0.000784,1.000000,0.000012 +53,2022-08-03 05:00:00,0.000228,0.000015,0.000014,0.000015,0.000021,0.000032,0.000018,0.000068,0.000000,0.000000,0.000378,0.305783,-0.000807,1.000000,0.000010 +54,2022-08-03 06:00:00,0.000273,0.000018,0.000020,0.000018,0.000022,0.000030,0.000017,0.000071,0.000000,0.000000,0.000365,0.305030,-0.000753,1.000000,0.000012 +55,2022-08-03 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000023,0.000029,0.000017,0.000060,0.000000,0.000000,0.000352,0.304044,-0.000986,1.000000,0.000004 +56,2022-08-03 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000023,0.000028,0.000017,0.000056,0.000000,0.000000,0.000340,0.303077,-0.000967,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000027,0.000016,0.000051,0.000000,0.000000,0.000329,0.302130,-0.000948,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000027,0.000016,0.000051,0.000000,0.000000,0.000319,0.301201,-0.000929,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000026,0.000016,0.000051,0.000000,0.000000,0.000308,0.300290,-0.000911,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000025,0.000015,0.000051,0.000000,0.000000,0.000299,0.299397,-0.000893,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000024,0.000015,0.000051,0.000000,0.000000,0.000290,0.298521,-0.000875,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000023,0.000015,0.000051,0.000110,0.000110,0.000281,0.297555,-0.000966,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000023,0.000014,0.000051,0.000358,0.000358,0.000273,0.296365,-0.001191,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000022,0.000014,0.000051,0.000502,0.000502,0.000264,0.295056,-0.001309,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000021,0.000013,0.000051,0.000613,0.000613,0.000256,0.293664,-0.001392,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000013,0.000051,0.000584,0.000584,0.000249,0.292329,-0.001335,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000031,0.000020,0.000013,0.000051,0.000507,0.000507,0.000241,0.291194,-0.001135,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000028,0.000000,0.000000,0.000000,0.000032,0.000019,0.000012,0.000051,0.000463,0.000463,0.000234,0.290052,-0.001141,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000019,0.000012,0.000051,0.000432,0.000432,0.000227,0.288998,-0.001054,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000018,0.000011,0.000051,0.000346,0.000346,0.000220,0.288050,-0.000948,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000002,0.000000,0.000000,0.000000,0.000034,0.000018,0.000011,0.000051,0.000264,0.000264,0.000213,0.287140,-0.000909,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000002,0.000000,0.000000,0.000000,0.000034,0.000017,0.000011,0.000052,0.000172,0.000172,0.000207,0.286338,-0.000802,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000017,0.000011,0.000052,0.000031,0.000031,0.000201,0.285688,-0.000650,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000016,0.000010,0.000052,0.000000,0.000000,0.000195,0.285082,-0.000607,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000016,0.000010,0.000052,0.000000,0.000000,0.000189,0.284487,-0.000595,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000010,0.000053,0.000000,0.000000,0.000184,0.283904,-0.000583,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000015,0.000010,0.000053,0.000000,0.000000,0.000179,0.283332,-0.000572,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000010,0.000053,0.000000,0.000000,0.000174,0.282772,-0.000560,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000009,0.000054,0.000000,0.000000,0.000169,0.282223,-0.000549,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000014,0.000009,0.000054,0.000000,0.000000,0.000165,0.281684,-0.000539,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000013,0.000009,0.000054,0.000000,0.000000,0.000160,0.281156,-0.000528,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000013,0.000009,0.000055,0.000000,0.000000,0.000156,0.280639,-0.000518,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000013,0.000009,0.000055,0.000000,0.000000,0.000152,0.280131,-0.000507,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000012,0.000009,0.000055,0.000000,0.000000,0.000149,0.279634,-0.000498,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000012,0.000008,0.000056,0.000000,0.000000,0.000145,0.279146,-0.000488,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000012,0.000008,0.000056,0.000110,0.000110,0.000141,0.278560,-0.000586,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000011,0.000008,0.000057,0.000354,0.000354,0.000138,0.277745,-0.000814,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000011,0.000008,0.000057,0.000517,0.000517,0.000134,0.276788,-0.000958,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000011,0.000007,0.000058,0.000604,0.000604,0.000130,0.275763,-0.001024,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000011,0.000007,0.000058,0.000680,0.000680,0.000127,0.274685,-0.001078,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000010,0.000007,0.000058,0.000615,0.000615,0.000123,0.273691,-0.000994,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000010,0.000006,0.000059,0.000541,0.000541,0.000119,0.272790,-0.000901,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000010,0.000006,0.000059,0.000504,0.000504,0.000116,0.271943,-0.000847,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000009,0.000006,0.000060,0.000410,0.000410,0.000112,0.271203,-0.000739,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000009,0.000005,0.000060,0.000309,0.000309,0.000108,0.270578,-0.000625,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000009,0.000005,0.000060,0.000180,0.000180,0.000105,0.270091,-0.000487,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000008,0.000005,0.000061,0.000034,0.000034,0.000102,0.269757,-0.000334,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000008,0.000005,0.000061,0.000000,0.000000,0.000098,0.269463,-0.000294,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000008,0.000005,0.000062,0.000000,0.000000,0.000095,0.269175,-0.000288,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000008,0.000005,0.000062,0.000000,0.000000,0.000093,0.268892,-0.000283,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000007,0.000005,0.000063,0.000000,0.000000,0.000090,0.268615,-0.000277,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000007,0.000005,0.000063,0.000000,0.000000,0.000087,0.268343,-0.000272,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000007,0.000005,0.000064,0.000000,0.000000,0.000085,0.268077,-0.000266,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000007,0.000004,0.000064,0.000000,0.000000,0.000082,0.267816,-0.000261,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000007,0.000004,0.000065,0.000000,0.000000,0.000080,0.267560,-0.000256,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000006,0.000004,0.000065,0.000000,0.000000,0.000078,0.267309,-0.000251,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000006,0.000004,0.000066,0.000000,0.000000,0.000076,0.267063,-0.000246,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000006,0.000004,0.000066,0.000000,0.000000,0.000074,0.266822,-0.000241,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000006,0.000004,0.000067,0.000000,0.000000,0.000072,0.266585,-0.000236,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000006,0.000004,0.000067,0.000120,0.000120,0.000070,0.266236,-0.000350,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000006,0.000004,0.000068,0.000361,0.000361,0.000068,0.265656,-0.000579,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000006,0.000003,0.000068,0.000522,0.000522,0.000066,0.264931,-0.000725,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000005,0.000003,0.000069,0.000629,0.000629,0.000064,0.264115,-0.000816,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000005,0.000003,0.000069,0.000608,0.000608,0.000062,0.263335,-0.000779,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000005,0.000003,0.000070,0.000569,0.000569,0.000060,0.262610,-0.000726,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000005,0.000002,0.000070,0.000502,0.000502,0.000057,0.261964,-0.000646,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000005,0.000002,0.000071,0.000495,0.000495,0.000055,0.261338,-0.000626,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000004,0.000002,0.000071,0.000399,0.000399,0.000053,0.260818,-0.000520,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000004,0.000002,0.000072,0.000298,0.000298,0.000050,0.260407,-0.000411,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000004,0.000002,0.000072,0.000173,0.000173,0.000048,0.260127,-0.000280,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000004,0.000002,0.000073,0.000045,0.000045,0.000046,0.259978,-0.000149,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000004,0.000002,0.000073,0.000000,0.000000,0.000044,0.259875,-0.000102,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000004,0.000002,0.000074,0.000000,0.000000,0.000042,0.259775,-0.000100,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000003,0.000002,0.000074,0.000000,0.000000,0.000041,0.259677,-0.000098,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000003,0.000002,0.000075,0.000000,0.000000,0.000039,0.259581,-0.000096,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000003,0.000002,0.000075,0.000000,0.000000,0.000038,0.259486,-0.000094,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000003,0.000002,0.000076,0.000000,0.000000,0.000036,0.259394,-0.000093,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000003,0.000002,0.000076,0.000000,0.000000,0.000035,0.259303,-0.000091,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000003,0.000002,0.000077,0.000000,0.000000,0.000034,0.259214,-0.000089,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000003,0.000001,0.000077,0.000000,0.000000,0.000032,0.259127,-0.000087,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000003,0.000001,0.000078,0.000000,0.000000,0.000031,0.259041,-0.000086,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000003,0.000001,0.000078,0.000000,0.000000,0.000030,0.258957,-0.000084,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000002,0.000001,0.000079,0.000000,0.000000,0.000029,0.258875,-0.000082,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000002,0.000001,0.000079,0.000103,0.000103,0.000028,0.258693,-0.000182,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000002,0.000001,0.000080,0.000333,0.000333,0.000027,0.258290,-0.000403,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000002,0.000001,0.000080,0.000496,0.000496,0.000026,0.257735,-0.000556,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000002,0.000001,0.000081,0.000605,0.000605,0.000025,0.257083,-0.000652,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000002,0.000001,0.000081,0.000665,0.000665,0.000023,0.256385,-0.000698,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000002,0.000000,0.000082,0.000632,0.000632,0.000022,0.255734,-0.000652,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000002,0.000000,0.000082,0.000568,0.000568,0.000020,0.255158,-0.000576,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000082,0.000509,0.000509,0.000019,0.254649,-0.000509,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000083,0.000423,0.000422,0.000017,0.254226,-0.000422,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000083,0.000310,0.000309,0.000016,0.253917,-0.000309,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000001,0.000000,0.000084,0.000172,0.000171,0.000015,0.253746,-0.000171,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000001,0.000000,0.000084,0.000030,0.000030,0.000014,0.253716,-0.000030,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000085,0.000000,0.000000,0.000013,0.253716,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000085,0.000000,0.000000,0.000012,0.253716,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000011,0.253716,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000010,0.253716,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000009,0.253716,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000008,0.253716,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000008,0.253716,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000007,0.253716,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000007,0.253716,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000006,0.253716,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000006,0.253716,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000005,0.253716,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000099,0.000098,0.000005,0.253618,-0.000098,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000342,0.000339,0.000004,0.253280,-0.000339,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000504,0.000499,0.000004,0.252781,-0.000499,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000604,0.000595,0.000004,0.252186,-0.000595,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000632,0.000619,0.000003,0.251566,-0.000619,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000573,0.000559,0.000003,0.251007,-0.000559,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000525,0.000510,0.000003,0.250497,-0.000510,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000094,0.000482,0.000467,0.000003,0.250030,-0.000467,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000391,0.000377,0.000003,0.249653,-0.000377,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000282,0.000272,0.000002,0.249381,-0.000272,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000137,0.000131,0.000002,0.249250,-0.000131,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000013,0.000012,0.000002,0.249238,-0.000012,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.249238,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.249238,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000002,0.249238,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000001,0.249238,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000001,0.249238,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000001,0.249239,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.249239,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000083,0.000080,0.000001,0.249162,-0.000077,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000102,0.000334,0.000320,0.000001,0.248842,-0.000320,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000480,0.000458,0.000001,0.248384,-0.000458,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000595,0.000567,0.000001,0.247817,-0.000567,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000628,0.000595,0.000001,0.247222,-0.000595,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000583,0.000550,0.000000,0.246672,-0.000550,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000510,0.000479,0.000000,0.246193,-0.000479,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000493,0.000461,0.000000,0.245732,-0.000461,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000407,0.000380,0.000000,0.245352,-0.000380,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000297,0.000276,0.000000,0.245076,-0.000276,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000152,0.000141,0.000000,0.244935,-0.000141,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000009,0.000008,0.000000,0.244927,-0.000008,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.244927,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000091,0.000084,0.000000,0.244843,-0.000084,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620695.csv b/test/channel_loss/channel_forcing/et/cat-2620695.csv new file mode 100644 index 000000000..88964f95c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620695.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000066,0.000000,0.000000,0.000000,0.000000,0.001429,0.000054,0.001429,0.000146,0.000146,0.008397,0.382488,-0.001128,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001206,0.000052,0.001206,0.000035,0.000035,0.007242,0.381432,-0.001056,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001026,0.000051,0.001026,0.000000,0.000000,0.006268,0.380436,-0.000996,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000877,0.000050,0.000877,0.000000,0.000000,0.005440,0.379465,-0.000971,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000754,0.000048,0.000754,0.000000,0.000000,0.004735,0.378518,-0.000947,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000651,0.000047,0.000651,0.000000,0.000000,0.004131,0.377594,-0.000924,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000564,0.000046,0.000564,0.000000,0.000000,0.003613,0.376693,-0.000901,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000045,0.000491,0.000000,0.000000,0.003168,0.375814,-0.000879,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000428,0.000044,0.000428,0.000000,0.000000,0.002783,0.374957,-0.000857,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000375,0.000043,0.000375,0.000000,0.000000,0.002451,0.374121,-0.000836,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000329,0.000042,0.000330,0.000000,0.000000,0.002164,0.373306,-0.000815,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000290,0.000041,0.000290,0.000000,0.000000,0.001914,0.372511,-0.000795,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000256,0.000040,0.000257,0.000000,0.000000,0.001697,0.371736,-0.000775,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000227,0.000039,0.000228,0.000000,0.000000,0.001509,0.370980,-0.000756,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000202,0.000038,0.000203,0.000115,0.000115,0.001345,0.370130,-0.000850,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000180,0.000036,0.000181,0.000345,0.000345,0.001201,0.369077,-0.001053,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000161,0.000035,0.000162,0.000510,0.000510,0.001075,0.367890,-0.001187,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000144,0.000033,0.000145,0.000590,0.000590,0.000964,0.366653,-0.001237,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000129,0.000032,0.000130,0.000476,0.000476,0.000867,0.365558,-0.001095,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001265,0.000029,0.000053,0.000029,0.000001,0.000116,0.000032,0.000147,0.000456,0.000456,0.000782,0.365692,0.000134,1.000000,0.000024 +20,2022-08-01 20:00:00,0.001404,0.000058,0.000082,0.000058,0.000001,0.000105,0.000032,0.000165,0.000390,0.000390,0.000709,0.365994,0.000302,1.000000,0.000047 +21,2022-08-01 21:00:00,0.001404,0.000081,0.000091,0.000081,0.000002,0.000096,0.000033,0.000179,0.000329,0.000329,0.000646,0.366339,0.000345,1.000000,0.000057 +22,2022-08-01 22:00:00,0.001386,0.000094,0.000099,0.000094,0.000002,0.000088,0.000033,0.000183,0.000263,0.000263,0.000592,0.366715,0.000375,1.000000,0.000063 +23,2022-08-01 23:00:00,0.001404,0.000107,0.000116,0.000107,0.000002,0.000081,0.000034,0.000189,0.000186,0.000186,0.000545,0.367157,0.000443,1.000000,0.000072 +24,2022-08-02 00:00:00,0.001401,0.000119,0.000127,0.000119,0.000002,0.000075,0.000034,0.000195,0.000125,0.000125,0.000504,0.367634,0.000477,1.000000,0.000080 +25,2022-08-02 01:00:00,0.001839,0.000187,0.000240,0.000187,0.000002,0.000070,0.000035,0.000259,0.000051,0.000051,0.000470,0.368489,0.000855,1.000000,0.000133 +26,2022-08-02 02:00:00,0.001857,0.000227,0.000258,0.000227,0.000002,0.000065,0.000037,0.000295,0.000000,0.000000,0.000441,0.369372,0.000883,1.000000,0.000164 +27,2022-08-02 03:00:00,0.001849,0.000254,0.000257,0.000254,0.000002,0.000062,0.000038,0.000318,0.000000,0.000000,0.000417,0.370228,0.000856,1.000000,0.000167 +28,2022-08-02 04:00:00,0.001857,0.000258,0.000259,0.000258,0.000003,0.000059,0.000039,0.000320,0.000000,0.000000,0.000397,0.371067,0.000840,1.000000,0.000168 +29,2022-08-02 05:00:00,0.001859,0.000259,0.000260,0.000259,0.000003,0.000056,0.000040,0.000318,0.000000,0.000000,0.000381,0.371887,0.000820,1.000000,0.000169 +30,2022-08-02 06:00:00,0.001858,0.000260,0.000260,0.000260,0.000003,0.000054,0.000041,0.000317,0.000000,0.000000,0.000368,0.372685,0.000798,1.000000,0.000169 +31,2022-08-02 07:00:00,0.000000,0.000117,0.000000,0.000117,0.000003,0.000052,0.000040,0.000173,0.000000,0.000000,0.000355,0.371906,-0.000780,1.000000,0.000052 +32,2022-08-02 08:00:00,0.000000,0.000052,0.000000,0.000052,0.000003,0.000051,0.000039,0.000106,0.000000,0.000000,0.000343,0.371145,-0.000760,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000049,0.000038,0.000053,0.000000,0.000000,0.000332,0.370404,-0.000741,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000047,0.000037,0.000051,0.000000,0.000000,0.000322,0.369681,-0.000723,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000046,0.000036,0.000050,0.000000,0.000000,0.000312,0.368976,-0.000705,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000045,0.000035,0.000049,0.000000,0.000000,0.000302,0.368288,-0.000688,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000419,0.000008,0.000015,0.000008,0.000004,0.000043,0.000035,0.000056,0.000000,0.000000,0.000294,0.368012,-0.000276,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000370,0.000007,0.000006,0.000007,0.000005,0.000042,0.000034,0.000054,0.000111,0.000111,0.000286,0.367595,-0.000417,1.000000,0.000006 +39,2022-08-02 15:00:00,0.000302,0.000004,0.000000,0.000004,0.000005,0.000041,0.000033,0.000050,0.000282,0.000282,0.000278,0.366960,-0.000634,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000280,0.000001,0.000000,0.000001,0.000005,0.000040,0.000032,0.000046,0.000411,0.000411,0.000271,0.366195,-0.000766,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000280,0.000000,0.000000,0.000000,0.000005,0.000039,0.000031,0.000044,0.000488,0.000488,0.000263,0.365373,-0.000822,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000338,0.000000,0.000000,0.000000,0.000005,0.000038,0.000030,0.000043,0.000534,0.000534,0.000256,0.364583,-0.000790,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000073,0.000000,0.000000,0.000000,0.000006,0.000037,0.000029,0.000042,0.000485,0.000485,0.000248,0.363602,-0.000981,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000084,0.000000,0.000000,0.000000,0.000006,0.000035,0.000028,0.000041,0.000454,0.000454,0.000241,0.362686,-0.000916,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000092,0.000000,0.000000,0.000000,0.000006,0.000034,0.000027,0.000041,0.000453,0.000453,0.000233,0.361801,-0.000885,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000097,0.000000,0.000000,0.000000,0.000006,0.000033,0.000026,0.000040,0.000384,0.000384,0.000226,0.361010,-0.000791,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000100,0.000000,0.000000,0.000000,0.000007,0.000032,0.000025,0.000039,0.000282,0.000282,0.000218,0.360342,-0.000668,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000180,0.000000,0.000000,0.000000,0.000007,0.000031,0.000024,0.000038,0.000158,0.000158,0.000211,0.359889,-0.000453,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000332,0.000004,0.000008,0.000004,0.000007,0.000030,0.000024,0.000042,0.000024,0.000024,0.000205,0.359718,-0.000171,1.000000,0.000004 +50,2022-08-03 02:00:00,0.000332,0.000007,0.000009,0.000007,0.000007,0.000029,0.000024,0.000044,0.000000,0.000000,0.000200,0.359574,-0.000144,1.000000,0.000006 +51,2022-08-03 03:00:00,0.000332,0.000009,0.000009,0.000009,0.000008,0.000029,0.000024,0.000045,0.000000,0.000000,0.000195,0.359433,-0.000141,1.000000,0.000006 +52,2022-08-03 04:00:00,0.000332,0.000009,0.000009,0.000009,0.000008,0.000028,0.000023,0.000045,0.000000,0.000000,0.000190,0.359296,-0.000137,1.000000,0.000006 +53,2022-08-03 05:00:00,0.000332,0.000009,0.000009,0.000009,0.000008,0.000027,0.000023,0.000045,0.000000,0.000000,0.000186,0.359162,-0.000134,1.000000,0.000006 +54,2022-08-03 06:00:00,0.000325,0.000009,0.000009,0.000009,0.000009,0.000027,0.000023,0.000044,0.000000,0.000000,0.000182,0.359025,-0.000137,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000009,0.000026,0.000023,0.000039,0.000000,0.000000,0.000179,0.358583,-0.000442,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000009,0.000026,0.000022,0.000037,0.000000,0.000000,0.000175,0.358153,-0.000431,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000025,0.000021,0.000035,0.000000,0.000000,0.000171,0.357732,-0.000420,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000025,0.000021,0.000034,0.000000,0.000000,0.000168,0.357323,-0.000410,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000024,0.000020,0.000034,0.000000,0.000000,0.000164,0.356923,-0.000400,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000024,0.000020,0.000034,0.000000,0.000000,0.000160,0.356533,-0.000390,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000023,0.000019,0.000034,0.000000,0.000000,0.000157,0.356153,-0.000380,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000022,0.000019,0.000033,0.000109,0.000109,0.000153,0.355676,-0.000477,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000022,0.000018,0.000033,0.000352,0.000352,0.000149,0.354974,-0.000702,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000021,0.000017,0.000033,0.000490,0.000490,0.000144,0.354155,-0.000819,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000021,0.000016,0.000032,0.000598,0.000598,0.000140,0.353251,-0.000904,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000015,0.000032,0.000573,0.000573,0.000134,0.352393,-0.000858,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000019,0.000014,0.000031,0.000507,0.000507,0.000129,0.351682,-0.000711,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000018,0.000013,0.000031,0.000459,0.000459,0.000124,0.351036,-0.000646,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000017,0.000012,0.000030,0.000430,0.000430,0.000118,0.350434,-0.000602,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000074,0.000000,0.000000,0.000000,0.000013,0.000017,0.000011,0.000030,0.000339,0.000339,0.000113,0.349947,-0.000487,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000076,0.000000,0.000000,0.000000,0.000013,0.000016,0.000011,0.000029,0.000264,0.000264,0.000108,0.349546,-0.000400,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000075,0.000000,0.000000,0.000000,0.000014,0.000015,0.000010,0.000029,0.000173,0.000173,0.000103,0.349244,-0.000303,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000015,0.000010,0.000028,0.000034,0.000034,0.000099,0.349011,-0.000232,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000014,0.000010,0.000028,0.000000,0.000000,0.000095,0.348817,-0.000194,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000013,0.000010,0.000028,0.000000,0.000000,0.000091,0.348628,-0.000189,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000013,0.000009,0.000028,0.000000,0.000000,0.000088,0.348443,-0.000185,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000012,0.000009,0.000028,0.000000,0.000000,0.000084,0.348263,-0.000180,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000012,0.000009,0.000027,0.000000,0.000000,0.000081,0.348088,-0.000176,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000012,0.000009,0.000027,0.000000,0.000000,0.000079,0.347917,-0.000171,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000011,0.000009,0.000027,0.000000,0.000000,0.000076,0.347750,-0.000167,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000011,0.000008,0.000027,0.000000,0.000000,0.000074,0.347587,-0.000163,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000008,0.000027,0.000000,0.000000,0.000071,0.347428,-0.000159,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000008,0.000027,0.000000,0.000000,0.000069,0.347273,-0.000155,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000008,0.000027,0.000000,0.000000,0.000067,0.347122,-0.000151,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000008,0.000027,0.000000,0.000000,0.000065,0.346975,-0.000147,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000009,0.000007,0.000027,0.000110,0.000110,0.000063,0.346724,-0.000250,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000009,0.000007,0.000027,0.000349,0.000349,0.000061,0.346246,-0.000478,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000008,0.000006,0.000027,0.000506,0.000506,0.000058,0.345627,-0.000620,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000008,0.000005,0.000027,0.000593,0.000593,0.000055,0.344939,-0.000688,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000008,0.000004,0.000026,0.000671,0.000671,0.000051,0.344191,-0.000748,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000007,0.000003,0.000026,0.000608,0.000608,0.000047,0.343524,-0.000668,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000006,0.000002,0.000026,0.000536,0.000536,0.000043,0.342943,-0.000581,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000006,0.000002,0.000025,0.000500,0.000500,0.000039,0.342411,-0.000532,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000005,0.000001,0.000025,0.000409,0.000409,0.000035,0.341981,-0.000430,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000005,0.000001,0.000025,0.000306,0.000306,0.000031,0.341662,-0.000319,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000004,0.000000,0.000025,0.000181,0.000181,0.000027,0.341473,-0.000189,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000004,0.000000,0.000024,0.000036,0.000036,0.000024,0.341431,-0.000042,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000003,0.000000,0.000024,0.000000,0.000000,0.000021,0.341424,-0.000007,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000003,0.000000,0.000024,0.000000,0.000000,0.000019,0.341418,-0.000006,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000017,0.341412,-0.000006,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000015,0.341406,-0.000006,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000013,0.341400,-0.000006,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000012,0.341394,-0.000006,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000024,0.000000,0.000000,0.000011,0.341388,-0.000006,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000000,0.000000,0.000009,0.341383,-0.000005,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000000,0.000000,0.000008,0.341378,-0.000005,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000025,0.000000,0.000000,0.000008,0.341372,-0.000005,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000000,0.000000,0.000007,0.341367,-0.000005,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000000,0.000000,0.000006,0.341362,-0.000005,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000120,0.000120,0.000006,0.341241,-0.000122,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000355,0.000355,0.000005,0.340886,-0.000355,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000025,0.000508,0.000507,0.000004,0.340379,-0.000507,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000025,0.000613,0.000610,0.000004,0.339768,-0.000610,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000595,0.000591,0.000003,0.339177,-0.000591,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000554,0.000549,0.000003,0.338628,-0.000549,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000493,0.000487,0.000002,0.338141,-0.000487,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000489,0.000482,0.000002,0.337660,-0.000482,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000391,0.000384,0.000002,0.337275,-0.000384,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000027,0.000293,0.000288,0.000002,0.336988,-0.000288,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000174,0.000171,0.000001,0.336817,-0.000171,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000046,0.000045,0.000001,0.336772,-0.000045,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000001,0.336772,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.336772,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.336772,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.336772,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.336773,0.000001,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.336773,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.336773,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000103,0.000100,0.000000,0.336672,-0.000100,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000326,0.000319,0.000000,0.336353,-0.000319,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000482,0.000471,0.000000,0.335882,-0.000471,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000588,0.000573,0.000000,0.335309,-0.000573,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000650,0.000632,0.000000,0.334677,-0.000632,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000618,0.000599,0.000000,0.334078,-0.000599,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000562,0.000543,0.000000,0.333534,-0.000543,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000502,0.000484,0.000000,0.333051,-0.000484,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000415,0.000399,0.000000,0.332652,-0.000399,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000306,0.000294,0.000000,0.332358,-0.000294,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000172,0.000165,0.000000,0.332193,-0.000165,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000032,0.000031,0.000000,0.332163,-0.000031,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.332163,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000098,0.000094,0.000000,0.332069,-0.000094,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000334,0.000320,0.000000,0.331749,-0.000320,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000488,0.000466,0.000000,0.331284,-0.000466,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000586,0.000558,0.000000,0.330726,-0.000558,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000617,0.000586,0.000000,0.330140,-0.000586,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000563,0.000533,0.000000,0.329607,-0.000533,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000521,0.000492,0.000000,0.329115,-0.000492,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000480,0.000453,0.000000,0.328662,-0.000453,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000388,0.000365,0.000000,0.328298,-0.000365,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000282,0.000264,0.000000,0.328033,-0.000264,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000137,0.000128,0.000000,0.327905,-0.000128,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000015,0.000014,0.000000,0.327891,-0.000014,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.327891,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327891,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327891,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327892,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000004,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327896,0.000004,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000005,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327901,0.000005,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327904,0.000004,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000005,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.327909,0.000005,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.327913,0.000003,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.327915,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.327916,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.327916,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000084,0.000079,0.000000,0.327838,-0.000079,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000327,0.000306,0.000000,0.327531,-0.000306,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000467,0.000436,0.000000,0.327095,-0.000436,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000581,0.000542,0.000000,0.326553,-0.000542,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000620,0.000577,0.000000,0.325976,-0.000577,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000577,0.000535,0.000000,0.325441,-0.000535,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000515,0.000476,0.000000,0.324965,-0.000476,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000490,0.000452,0.000000,0.324513,-0.000452,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000399,0.000367,0.000000,0.324145,-0.000367,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000293,0.000269,0.000000,0.323876,-0.000269,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000153,0.000140,0.000000,0.323736,-0.000140,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000011,0.000010,0.000000,0.323726,-0.000010,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.323726,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000090,0.000083,0.000000,0.323644,-0.000083,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620696.csv b/test/channel_loss/channel_forcing/et/cat-2620696.csv new file mode 100644 index 000000000..d5e43d8fb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620696.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000817,0.000082,0.000817,0.000146,0.000146,0.009027,0.375788,-0.001705,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000080,0.000751,0.000036,0.000036,0.008356,0.374169,-0.001620,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000078,0.000692,0.000000,0.000000,0.007742,0.372623,-0.001546,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000638,0.000076,0.000638,0.000000,0.000000,0.007180,0.371113,-0.001510,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000590,0.000075,0.000590,0.000000,0.000000,0.006665,0.369639,-0.001474,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000545,0.000073,0.000546,0.000000,0.000000,0.006193,0.368200,-0.001439,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000505,0.000071,0.000505,0.000000,0.000000,0.005759,0.366795,-0.001405,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000468,0.000069,0.000469,0.000000,0.000000,0.005360,0.365423,-0.001372,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000435,0.000068,0.000435,0.000000,0.000000,0.004992,0.364083,-0.001340,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000404,0.000066,0.000405,0.000000,0.000000,0.004654,0.362775,-0.001308,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000376,0.000065,0.000377,0.000000,0.000000,0.004343,0.361498,-0.001277,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000350,0.000063,0.000351,0.000000,0.000000,0.004056,0.360251,-0.001247,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000327,0.000062,0.000327,0.000000,0.000000,0.003791,0.359033,-0.001218,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000305,0.000060,0.000306,0.000000,0.000000,0.003546,0.357844,-0.001189,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000059,0.000286,0.000118,0.000118,0.003320,0.356568,-0.001277,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000266,0.000057,0.000268,0.000354,0.000354,0.003111,0.355092,-0.001476,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000249,0.000055,0.000251,0.000523,0.000523,0.002916,0.353485,-0.001606,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000233,0.000053,0.000235,0.000612,0.000612,0.002736,0.351829,-0.001656,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000219,0.000051,0.000221,0.000493,0.000493,0.002568,0.350330,-0.001500,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001034,0.000010,0.000019,0.000010,0.000002,0.000205,0.000050,0.000218,0.000468,0.000468,0.002413,0.349880,-0.000449,1.000000,0.000009 +20,2022-08-01 20:00:00,0.001233,0.000027,0.000040,0.000027,0.000002,0.000193,0.000050,0.000222,0.000400,0.000400,0.002270,0.349681,-0.000199,1.000000,0.000022 +21,2022-08-01 21:00:00,0.001265,0.000042,0.000050,0.000042,0.000002,0.000181,0.000050,0.000226,0.000332,0.000332,0.002139,0.349574,-0.000107,1.000000,0.000031 +22,2022-08-01 22:00:00,0.001233,0.000050,0.000054,0.000050,0.000003,0.000171,0.000050,0.000224,0.000266,0.000266,0.002018,0.349500,-0.000074,1.000000,0.000034 +23,2022-08-01 23:00:00,0.001233,0.000058,0.000063,0.000058,0.000003,0.000161,0.000050,0.000223,0.000185,0.000185,0.001906,0.349498,-0.000002,1.000000,0.000039 +24,2022-08-02 00:00:00,0.001230,0.000065,0.000070,0.000065,0.000003,0.000153,0.000050,0.000221,0.000127,0.000127,0.001804,0.349543,0.000045,1.000000,0.000044 +25,2022-08-02 01:00:00,0.001683,0.000111,0.000148,0.000111,0.000003,0.000145,0.000051,0.000259,0.000052,0.000052,0.001710,0.350026,0.000483,1.000000,0.000080 +26,2022-08-02 02:00:00,0.001680,0.000137,0.000157,0.000137,0.000004,0.000137,0.000051,0.000278,0.000000,0.000000,0.001624,0.350537,0.000511,1.000000,0.000100 +27,2022-08-02 03:00:00,0.001673,0.000154,0.000156,0.000154,0.000004,0.000130,0.000052,0.000289,0.000000,0.000000,0.001545,0.351030,0.000493,1.000000,0.000101 +28,2022-08-02 04:00:00,0.001679,0.000157,0.000157,0.000157,0.000004,0.000124,0.000052,0.000285,0.000000,0.000000,0.001473,0.351516,0.000486,1.000000,0.000102 +29,2022-08-02 05:00:00,0.001683,0.000157,0.000158,0.000157,0.000004,0.000119,0.000053,0.000280,0.000000,0.000000,0.001408,0.351994,0.000477,1.000000,0.000102 +30,2022-08-02 06:00:00,0.001688,0.000158,0.000159,0.000158,0.000005,0.000114,0.000054,0.000276,0.000000,0.000000,0.001348,0.352464,0.000470,1.000000,0.000103 +31,2022-08-02 07:00:00,0.000000,0.000071,0.000000,0.000071,0.000005,0.000109,0.000052,0.000185,0.000000,0.000000,0.001291,0.351430,-0.001034,1.000000,0.000032 +32,2022-08-02 08:00:00,0.000000,0.000032,0.000000,0.000032,0.000005,0.000104,0.000051,0.000141,0.000000,0.000000,0.001238,0.350421,-0.001009,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000100,0.000050,0.000105,0.000000,0.000000,0.001188,0.349435,-0.000986,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000096,0.000049,0.000102,0.000000,0.000000,0.001141,0.348473,-0.000962,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000092,0.000048,0.000098,0.000000,0.000000,0.001096,0.347533,-0.000940,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000089,0.000046,0.000095,0.000000,0.000000,0.001054,0.346615,-0.000917,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000347,0.000004,0.000007,0.000004,0.000007,0.000085,0.000046,0.000096,0.000000,0.000000,0.001015,0.346052,-0.000564,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000280,0.000003,0.000002,0.000003,0.000007,0.000082,0.000045,0.000092,0.000113,0.000113,0.000978,0.345330,-0.000721,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000221,0.000002,0.000000,0.000002,0.000007,0.000079,0.000044,0.000088,0.000290,0.000290,0.000942,0.344397,-0.000933,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000211,0.000000,0.000000,0.000000,0.000008,0.000076,0.000042,0.000084,0.000423,0.000423,0.000908,0.343347,-0.001051,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000212,0.000000,0.000000,0.000000,0.000008,0.000073,0.000041,0.000082,0.000506,0.000506,0.000876,0.342241,-0.001105,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000283,0.000000,0.000000,0.000000,0.000008,0.000071,0.000040,0.000079,0.000558,0.000558,0.000845,0.341181,-0.001061,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000068,0.000038,0.000077,0.000505,0.000505,0.000815,0.339982,-0.001199,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000074,0.000000,0.000000,0.000000,0.000009,0.000066,0.000037,0.000075,0.000470,0.000470,0.000786,0.338856,-0.001125,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000085,0.000000,0.000000,0.000000,0.000009,0.000064,0.000036,0.000073,0.000458,0.000458,0.000758,0.337779,-0.001077,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000091,0.000000,0.000000,0.000000,0.000010,0.000061,0.000034,0.000071,0.000392,0.000392,0.000731,0.336798,-0.000981,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000097,0.000000,0.000000,0.000000,0.000010,0.000059,0.000033,0.000069,0.000289,0.000289,0.000705,0.335946,-0.000852,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000011,0.000057,0.000033,0.000068,0.000162,0.000162,0.000681,0.335268,-0.000679,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000279,0.000002,0.000004,0.000002,0.000011,0.000055,0.000032,0.000068,0.000025,0.000025,0.000658,0.334884,-0.000383,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000300,0.000004,0.000005,0.000004,0.000011,0.000053,0.000032,0.000068,0.000000,0.000000,0.000636,0.334553,-0.000331,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000279,0.000005,0.000005,0.000005,0.000012,0.000052,0.000031,0.000068,0.000000,0.000000,0.000616,0.334210,-0.000343,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000300,0.000005,0.000005,0.000005,0.000012,0.000050,0.000031,0.000067,0.000000,0.000000,0.000597,0.333894,-0.000315,1.000000,0.000003 +53,2022-08-03 05:00:00,0.000279,0.000005,0.000005,0.000005,0.000012,0.000048,0.000030,0.000066,0.000000,0.000000,0.000579,0.333567,-0.000328,1.000000,0.000003 +54,2022-08-03 06:00:00,0.000300,0.000005,0.000005,0.000005,0.000013,0.000047,0.000030,0.000065,0.000000,0.000000,0.000562,0.333267,-0.000300,1.000000,0.000003 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000013,0.000046,0.000029,0.000061,0.000000,0.000000,0.000546,0.332686,-0.000581,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000014,0.000044,0.000029,0.000059,0.000000,0.000000,0.000530,0.332119,-0.000567,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000043,0.000028,0.000057,0.000000,0.000000,0.000515,0.331565,-0.000554,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000042,0.000027,0.000056,0.000000,0.000000,0.000501,0.331024,-0.000541,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000041,0.000027,0.000056,0.000000,0.000000,0.000487,0.330496,-0.000528,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000040,0.000026,0.000055,0.000000,0.000000,0.000473,0.329981,-0.000515,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000038,0.000025,0.000054,0.000000,0.000000,0.000460,0.329478,-0.000503,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000037,0.000025,0.000053,0.000112,0.000112,0.000448,0.328877,-0.000601,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000036,0.000024,0.000053,0.000360,0.000360,0.000435,0.328048,-0.000829,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000035,0.000023,0.000052,0.000505,0.000505,0.000422,0.327097,-0.000951,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000034,0.000021,0.000052,0.000621,0.000621,0.000409,0.326055,-0.001042,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000033,0.000020,0.000051,0.000598,0.000598,0.000396,0.325061,-0.000994,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000032,0.000000,0.000000,0.000000,0.000018,0.000032,0.000019,0.000050,0.000526,0.000526,0.000383,0.324192,-0.000869,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000162,0.000000,0.000000,0.000000,0.000019,0.000031,0.000018,0.000049,0.000472,0.000472,0.000371,0.323522,-0.000669,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000071,0.000000,0.000000,0.000000,0.000019,0.000030,0.000017,0.000049,0.000433,0.000433,0.000358,0.322818,-0.000704,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000042,0.000000,0.000000,0.000000,0.000019,0.000029,0.000017,0.000048,0.000347,0.000347,0.000346,0.322186,-0.000632,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000013,0.000000,0.000000,0.000000,0.000020,0.000028,0.000016,0.000048,0.000264,0.000264,0.000334,0.321621,-0.000565,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000012,0.000000,0.000000,0.000000,0.000020,0.000027,0.000015,0.000047,0.000175,0.000175,0.000322,0.321155,-0.000466,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000026,0.000015,0.000047,0.000035,0.000035,0.000311,0.320826,-0.000329,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000025,0.000015,0.000046,0.000000,0.000000,0.000300,0.320539,-0.000287,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000024,0.000014,0.000046,0.000000,0.000000,0.000290,0.320258,-0.000280,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000023,0.000014,0.000045,0.000000,0.000000,0.000281,0.319985,-0.000274,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000023,0.000014,0.000045,0.000000,0.000000,0.000272,0.319717,-0.000267,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000022,0.000013,0.000045,0.000000,0.000000,0.000263,0.319456,-0.000261,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000021,0.000013,0.000044,0.000000,0.000000,0.000255,0.319201,-0.000255,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000021,0.000013,0.000044,0.000000,0.000000,0.000247,0.318952,-0.000249,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000020,0.000012,0.000044,0.000000,0.000000,0.000239,0.318709,-0.000243,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000019,0.000012,0.000044,0.000000,0.000000,0.000232,0.318472,-0.000237,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000019,0.000012,0.000044,0.000000,0.000000,0.000225,0.318241,-0.000232,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000018,0.000011,0.000043,0.000000,0.000000,0.000218,0.318014,-0.000226,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000018,0.000011,0.000043,0.000000,0.000000,0.000212,0.317793,-0.000221,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000017,0.000011,0.000043,0.000110,0.000110,0.000205,0.317470,-0.000324,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000017,0.000010,0.000043,0.000353,0.000353,0.000199,0.316917,-0.000553,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000016,0.000009,0.000043,0.000513,0.000513,0.000192,0.316222,-0.000695,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000015,0.000008,0.000043,0.000613,0.000613,0.000185,0.315445,-0.000777,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000015,0.000007,0.000042,0.000701,0.000701,0.000177,0.314601,-0.000844,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000014,0.000006,0.000042,0.000622,0.000622,0.000170,0.313854,-0.000747,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000013,0.000006,0.000042,0.000561,0.000561,0.000162,0.313183,-0.000670,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000013,0.000005,0.000042,0.000500,0.000500,0.000154,0.312588,-0.000595,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000012,0.000004,0.000041,0.000414,0.000414,0.000146,0.312091,-0.000498,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000011,0.000004,0.000041,0.000308,0.000308,0.000138,0.311709,-0.000382,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000011,0.000003,0.000041,0.000183,0.000183,0.000130,0.311459,-0.000250,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000010,0.000003,0.000041,0.000037,0.000037,0.000124,0.311356,-0.000103,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000010,0.000003,0.000041,0.000000,0.000000,0.000117,0.311292,-0.000064,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000009,0.000003,0.000040,0.000000,0.000000,0.000111,0.311230,-0.000062,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000009,0.000003,0.000040,0.000000,0.000000,0.000105,0.311169,-0.000061,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000008,0.000003,0.000040,0.000000,0.000000,0.000100,0.311110,-0.000059,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000008,0.000003,0.000040,0.000000,0.000000,0.000095,0.311052,-0.000058,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000008,0.000003,0.000040,0.000000,0.000000,0.000090,0.310995,-0.000057,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000007,0.000003,0.000040,0.000000,0.000000,0.000086,0.310940,-0.000055,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000007,0.000003,0.000040,0.000000,0.000000,0.000082,0.310886,-0.000054,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000003,0.000040,0.000000,0.000000,0.000078,0.310834,-0.000053,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000003,0.000041,0.000000,0.000000,0.000074,0.310782,-0.000051,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000006,0.000003,0.000041,0.000000,0.000000,0.000071,0.310732,-0.000050,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000006,0.000002,0.000041,0.000000,0.000000,0.000068,0.310683,-0.000049,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000005,0.000002,0.000041,0.000122,0.000122,0.000065,0.310516,-0.000167,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000002,0.000041,0.000360,0.000360,0.000061,0.310120,-0.000396,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000001,0.000041,0.000515,0.000515,0.000058,0.309583,-0.000538,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000000,0.000041,0.000630,0.000630,0.000054,0.308946,-0.000637,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000000,0.000041,0.000612,0.000612,0.000050,0.308333,-0.000612,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000000,0.000041,0.000573,0.000572,0.000046,0.307761,-0.000572,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000000,0.000041,0.000505,0.000503,0.000042,0.307258,-0.000503,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000003,0.000000,0.000041,0.000491,0.000488,0.000039,0.306770,-0.000488,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000003,0.000000,0.000041,0.000395,0.000391,0.000036,0.306379,-0.000391,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000000,0.000041,0.000298,0.000294,0.000033,0.306085,-0.000294,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000000,0.000042,0.000178,0.000176,0.000031,0.305909,-0.000176,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000023,0.000000,0.000000,0.000000,0.000039,0.000002,0.000000,0.000042,0.000048,0.000047,0.000028,0.305885,-0.000024,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000023,0.000000,0.000000,0.000000,0.000040,0.000002,0.000000,0.000042,0.000000,0.000000,0.000026,0.305908,0.000023,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000002,0.000000,0.000042,0.000000,0.000000,0.000024,0.305908,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000002,0.000000,0.000042,0.000000,0.000000,0.000022,0.305908,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000042,0.000000,0.000000,0.000021,0.305908,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000043,0.000000,0.000000,0.000019,0.305908,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000043,0.000000,0.000000,0.000018,0.305908,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000016,0.305908,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000015,0.305908,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000014,0.305908,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000013,0.305908,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000012,0.305908,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000011,0.305908,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000044,0.000105,0.000103,0.000010,0.305804,-0.000103,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000332,0.000327,0.000009,0.305477,-0.000327,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000495,0.000487,0.000009,0.304990,-0.000487,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000607,0.000595,0.000008,0.304395,-0.000595,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000045,0.000672,0.000657,0.000007,0.303739,-0.000657,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000633,0.000617,0.000007,0.303122,-0.000617,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000569,0.000552,0.000006,0.302569,-0.000552,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000502,0.000486,0.000006,0.302084,-0.000486,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000419,0.000404,0.000005,0.301680,-0.000404,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000310,0.000299,0.000005,0.301381,-0.000299,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000175,0.000168,0.000004,0.301212,-0.000168,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000033,0.000032,0.000004,0.301181,-0.000032,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000004,0.301181,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000048,0.000000,0.000000,0.000004,0.301181,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000003,0.301181,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000003,0.301181,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000003,0.301181,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000003,0.301181,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.301181,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000051,0.000101,0.000097,0.000001,0.301084,-0.000097,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000342,0.000329,0.000001,0.300755,-0.000329,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000501,0.000480,0.000001,0.300275,-0.000480,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000605,0.000579,0.000001,0.299696,-0.000579,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000052,0.000636,0.000606,0.000001,0.299090,-0.000606,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000584,0.000555,0.000001,0.298536,-0.000555,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000536,0.000507,0.000001,0.298028,-0.000507,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000486,0.000459,0.000001,0.297569,-0.000459,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000397,0.000374,0.000001,0.297195,-0.000374,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000290,0.000273,0.000001,0.296922,-0.000273,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000141,0.000132,0.000001,0.296790,-0.000132,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000016,0.000015,0.000001,0.296775,-0.000015,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000001,0.296775,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000001,0.296775,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.296775,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.296775,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.296778,0.000003,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.296781,0.000003,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.296783,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.296786,0.000003,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.296789,0.000003,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.296792,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.296793,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.296793,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000085,0.000080,0.000000,0.296714,-0.000080,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000328,0.000308,0.000000,0.296406,-0.000308,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000057,0.000479,0.000449,0.000000,0.295957,-0.000449,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000602,0.000562,0.000000,0.295395,-0.000562,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000639,0.000595,0.000000,0.294800,-0.000595,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000605,0.000561,0.000000,0.294239,-0.000561,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000531,0.000491,0.000000,0.293748,-0.000491,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000488,0.000450,0.000000,0.293297,-0.000450,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000404,0.000372,0.000000,0.292926,-0.000372,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000298,0.000274,0.000000,0.292652,-0.000274,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000156,0.000143,0.000000,0.292509,-0.000143,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000012,0.000011,0.000000,0.292499,-0.000011,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.292499,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000092,0.000085,0.000000,0.292414,-0.000085,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620697.csv b/test/channel_loss/channel_forcing/et/cat-2620697.csv new file mode 100644 index 000000000..2f5a43ae1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620697.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001490,0.000422,0.001490,0.000202,0.000202,0.008694,0.369134,-0.003820,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001313,0.000413,0.001313,0.000066,0.000066,0.007794,0.365338,-0.003796,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001168,0.000405,0.001168,0.000000,0.000000,0.007031,0.361682,-0.003656,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001047,0.000397,0.001048,0.000000,0.000000,0.006380,0.358099,-0.003583,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000946,0.000389,0.000946,0.000000,0.000000,0.005822,0.354588,-0.003512,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000861,0.000381,0.000861,0.000000,0.000000,0.005342,0.351146,-0.003442,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000788,0.000373,0.000789,0.000000,0.000000,0.004928,0.347773,-0.003373,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000726,0.000366,0.000726,0.000000,0.000000,0.004568,0.344467,-0.003306,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000672,0.000359,0.000673,0.000000,0.000000,0.004254,0.341228,-0.003240,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000626,0.000352,0.000627,0.000000,0.000000,0.003980,0.338052,-0.003175,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000585,0.000344,0.000587,0.000000,0.000000,0.003739,0.334941,-0.003112,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000550,0.000338,0.000552,0.000000,0.000000,0.003526,0.331891,-0.003050,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000519,0.000331,0.000521,0.000000,0.000000,0.003338,0.328902,-0.002989,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000492,0.000324,0.000494,0.000000,0.000000,0.003171,0.325972,-0.002929,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000467,0.000317,0.000470,0.000150,0.000150,0.003021,0.322955,-0.003018,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000445,0.000310,0.000448,0.000401,0.000401,0.002886,0.319751,-0.003204,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000425,0.000303,0.000429,0.000573,0.000573,0.002763,0.316443,-0.003308,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000407,0.000295,0.000411,0.000684,0.000684,0.002651,0.313091,-0.003352,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000391,0.000288,0.000395,0.000625,0.000625,0.002548,0.309864,-0.003227,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000387,0.000000,0.000000,0.000000,0.000005,0.000376,0.000282,0.000380,0.000582,0.000582,0.002454,0.307122,-0.002742,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000323,0.000000,0.000000,0.000000,0.000005,0.000362,0.000276,0.000367,0.000517,0.000517,0.002368,0.304437,-0.002686,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000405,0.000000,0.000000,0.000000,0.000005,0.000349,0.000270,0.000355,0.000412,0.000412,0.002289,0.301988,-0.002449,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000314,0.000000,0.000000,0.000000,0.000006,0.000338,0.000265,0.000344,0.000362,0.000362,0.002216,0.299548,-0.002439,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000317,0.000000,0.000000,0.000000,0.000006,0.000327,0.000260,0.000334,0.000276,0.000276,0.002148,0.297244,-0.002304,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000292,0.000000,0.000000,0.000000,0.000007,0.000317,0.000255,0.000325,0.000176,0.000176,0.002085,0.295058,-0.002185,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000764,0.000009,0.000016,0.000009,0.000008,0.000308,0.000251,0.000325,0.000085,0.000085,0.002028,0.293455,-0.001604,1.000000,0.000007 +26,2022-08-02 02:00:00,0.001000,0.000022,0.000033,0.000022,0.000008,0.000300,0.000248,0.000330,0.000000,0.000000,0.001976,0.292179,-0.001275,1.000000,0.000018 +27,2022-08-02 03:00:00,0.000926,0.000027,0.000029,0.000027,0.000009,0.000293,0.000245,0.000328,0.000000,0.000000,0.001929,0.290862,-0.001317,1.000000,0.000020 +28,2022-08-02 04:00:00,0.000979,0.000031,0.000032,0.000031,0.000009,0.000286,0.000242,0.000326,0.000000,0.000000,0.001885,0.289620,-0.001243,1.000000,0.000020 +29,2022-08-02 05:00:00,0.000945,0.000030,0.000030,0.000030,0.000010,0.000280,0.000240,0.000319,0.000000,0.000000,0.001845,0.288371,-0.001249,1.000000,0.000020 +30,2022-08-02 06:00:00,0.000913,0.000029,0.000028,0.000029,0.000010,0.000274,0.000237,0.000313,0.000000,0.000000,0.001808,0.287117,-0.001254,1.000000,0.000018 +31,2022-08-02 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000011,0.000268,0.000232,0.000292,0.000000,0.000000,0.001772,0.285021,-0.002096,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000012,0.000263,0.000227,0.000280,0.000000,0.000000,0.001737,0.282967,-0.002054,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000257,0.000223,0.000270,0.000000,0.000000,0.001702,0.280953,-0.002013,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000252,0.000218,0.000265,0.000000,0.000000,0.001669,0.278980,-0.001973,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000247,0.000214,0.000261,0.000000,0.000000,0.001636,0.277046,-0.001934,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000242,0.000210,0.000256,0.000000,0.000000,0.001604,0.275151,-0.001895,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000079,0.000000,0.000000,0.000000,0.000015,0.000237,0.000206,0.000252,0.000000,0.000000,0.001572,0.273371,-0.001780,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000079,0.000000,0.000000,0.000000,0.000016,0.000232,0.000202,0.000248,0.000124,0.000124,0.001542,0.271505,-0.001866,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000079,0.000000,0.000000,0.000000,0.000017,0.000228,0.000197,0.000244,0.000344,0.000344,0.001511,0.269460,-0.002044,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000079,0.000000,0.000000,0.000000,0.000017,0.000223,0.000192,0.000240,0.000489,0.000489,0.001480,0.267314,-0.002146,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000079,0.000000,0.000000,0.000000,0.000018,0.000218,0.000187,0.000236,0.000595,0.000595,0.001449,0.265107,-0.002207,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000466,0.000000,0.000000,0.000000,0.000019,0.000213,0.000183,0.000232,0.000683,0.000683,0.001419,0.263237,-0.001870,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000209,0.000178,0.000228,0.000637,0.000637,0.001388,0.260992,-0.002245,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000204,0.000173,0.000224,0.000558,0.000558,0.001357,0.258870,-0.002123,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000199,0.000169,0.000220,0.000529,0.000529,0.001327,0.256818,-0.002052,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000195,0.000164,0.000216,0.000461,0.000461,0.001296,0.254875,-0.001943,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000190,0.000160,0.000213,0.000346,0.000346,0.001266,0.253083,-0.001792,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000186,0.000156,0.000209,0.000211,0.000211,0.001237,0.251458,-0.001624,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000181,0.000153,0.000205,0.000055,0.000055,0.001209,0.250019,-0.001439,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000177,0.000150,0.000202,0.000000,0.000000,0.001182,0.248663,-0.001356,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000173,0.000147,0.000199,0.000000,0.000000,0.001156,0.247333,-0.001329,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000169,0.000144,0.000196,0.000000,0.000000,0.001131,0.246030,-0.001303,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000166,0.000141,0.000193,0.000000,0.000000,0.001107,0.244753,-0.001277,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000162,0.000139,0.000190,0.000000,0.000000,0.001083,0.243502,-0.001251,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000159,0.000136,0.000188,0.000000,0.000000,0.001061,0.242276,-0.001226,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000155,0.000133,0.000185,0.000000,0.000000,0.001038,0.241074,-0.001202,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000152,0.000130,0.000183,0.000000,0.000000,0.001017,0.239895,-0.001178,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000149,0.000128,0.000180,0.000000,0.000000,0.000996,0.238741,-0.001155,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000146,0.000125,0.000178,0.000000,0.000000,0.000976,0.237609,-0.001132,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000143,0.000123,0.000176,0.000000,0.000000,0.000956,0.236500,-0.001109,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000140,0.000120,0.000174,0.000000,0.000000,0.000936,0.235414,-0.001087,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000137,0.000118,0.000172,0.000147,0.000147,0.000917,0.234204,-0.001209,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000134,0.000114,0.000170,0.000408,0.000408,0.000898,0.232764,-0.001440,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000131,0.000111,0.000168,0.000577,0.000577,0.000878,0.231186,-0.001577,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000128,0.000107,0.000165,0.000688,0.000688,0.000857,0.229531,-0.001655,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000124,0.000103,0.000163,0.000721,0.000721,0.000836,0.227876,-0.001655,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000121,0.000100,0.000161,0.000685,0.000685,0.000814,0.226290,-0.001586,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000956,0.000002,0.000004,0.000002,0.000040,0.000118,0.000099,0.000161,0.000588,0.000588,0.000795,0.225763,-0.000527,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000192,0.000001,0.000000,0.000001,0.000041,0.000115,0.000096,0.000158,0.000540,0.000540,0.000775,0.224550,-0.001213,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000042,0.000112,0.000093,0.000155,0.000462,0.000462,0.000756,0.223248,-0.001302,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000110,0.000090,0.000153,0.000352,0.000352,0.000737,0.222081,-0.001167,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000107,0.000088,0.000151,0.000216,0.000216,0.000718,0.221070,-0.001011,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000104,0.000086,0.000149,0.000069,0.000069,0.000700,0.220223,-0.000847,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000101,0.000084,0.000147,0.000000,0.000000,0.000683,0.219460,-0.000762,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000099,0.000083,0.000146,0.000000,0.000000,0.000667,0.218713,-0.000747,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000097,0.000081,0.000144,0.000000,0.000000,0.000651,0.217981,-0.000732,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000094,0.000079,0.000143,0.000000,0.000000,0.000636,0.217264,-0.000718,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000092,0.000078,0.000142,0.000000,0.000000,0.000622,0.216560,-0.000703,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000090,0.000076,0.000140,0.000000,0.000000,0.000608,0.215871,-0.000689,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000088,0.000075,0.000139,0.000000,0.000000,0.000594,0.215196,-0.000675,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000086,0.000073,0.000138,0.000000,0.000000,0.000581,0.214534,-0.000662,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000084,0.000072,0.000137,0.000000,0.000000,0.000569,0.213885,-0.000649,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000083,0.000070,0.000136,0.000000,0.000000,0.000557,0.213249,-0.000636,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000081,0.000069,0.000135,0.000000,0.000000,0.000545,0.212626,-0.000623,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000079,0.000068,0.000135,0.000000,0.000000,0.000534,0.212015,-0.000611,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000077,0.000066,0.000134,0.000140,0.000140,0.000522,0.211279,-0.000736,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000076,0.000064,0.000133,0.000401,0.000401,0.000510,0.210302,-0.000977,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000074,0.000061,0.000132,0.000566,0.000566,0.000498,0.209183,-0.001119,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000072,0.000058,0.000131,0.000695,0.000695,0.000485,0.207959,-0.001224,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000070,0.000056,0.000130,0.000794,0.000794,0.000471,0.206664,-0.001295,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000067,0.000053,0.000128,0.000760,0.000760,0.000456,0.205427,-0.001237,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000065,0.000050,0.000127,0.000661,0.000661,0.000441,0.204312,-0.001115,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000063,0.000048,0.000126,0.000548,0.000548,0.000426,0.203330,-0.000982,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000061,0.000046,0.000124,0.000476,0.000476,0.000411,0.202438,-0.000892,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000059,0.000044,0.000123,0.000364,0.000364,0.000397,0.201673,-0.000765,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000057,0.000043,0.000122,0.000225,0.000225,0.000383,0.201061,-0.000612,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000055,0.000042,0.000121,0.000083,0.000083,0.000370,0.200599,-0.000462,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000053,0.000041,0.000120,0.000000,0.000000,0.000358,0.200228,-0.000371,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000051,0.000040,0.000119,0.000000,0.000000,0.000347,0.199865,-0.000364,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000050,0.000039,0.000118,0.000000,0.000000,0.000337,0.199508,-0.000356,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000048,0.000039,0.000118,0.000000,0.000000,0.000327,0.199159,-0.000349,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000047,0.000038,0.000117,0.000000,0.000000,0.000318,0.198817,-0.000342,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000046,0.000037,0.000117,0.000000,0.000000,0.000310,0.198481,-0.000335,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000045,0.000036,0.000117,0.000000,0.000000,0.000302,0.198153,-0.000329,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000043,0.000036,0.000116,0.000000,0.000000,0.000294,0.197830,-0.000322,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000042,0.000035,0.000116,0.000000,0.000000,0.000287,0.197515,-0.000316,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000041,0.000034,0.000116,0.000000,0.000000,0.000280,0.197205,-0.000309,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000040,0.000034,0.000116,0.000000,0.000000,0.000273,0.196902,-0.000303,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000039,0.000033,0.000115,0.000000,0.000000,0.000266,0.196605,-0.000297,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000038,0.000032,0.000115,0.000151,0.000151,0.000260,0.196166,-0.000439,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000037,0.000030,0.000115,0.000403,0.000403,0.000253,0.195488,-0.000677,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000036,0.000029,0.000115,0.000571,0.000571,0.000245,0.194660,-0.000829,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000035,0.000026,0.000114,0.000692,0.000692,0.000237,0.193729,-0.000931,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000034,0.000024,0.000114,0.000691,0.000691,0.000228,0.192818,-0.000911,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000081,0.000032,0.000023,0.000113,0.000654,0.000654,0.000218,0.192023,-0.000795,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000082,0.000031,0.000021,0.000113,0.000561,0.000561,0.000208,0.191335,-0.000688,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000083,0.000029,0.000020,0.000112,0.000486,0.000486,0.000199,0.190734,-0.000601,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000084,0.000028,0.000019,0.000111,0.000408,0.000408,0.000189,0.190222,-0.000512,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000128,0.000000,0.000000,0.000000,0.000084,0.000027,0.000018,0.000111,0.000322,0.000322,0.000181,0.189867,-0.000354,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000085,0.000025,0.000017,0.000110,0.000200,0.000200,0.000172,0.189576,-0.000291,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000472,0.000002,0.000004,0.000002,0.000086,0.000024,0.000018,0.000113,0.000081,0.000081,0.000166,0.189804,0.000228,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000792,0.000011,0.000017,0.000011,0.000087,0.000024,0.000019,0.000121,0.000000,0.000000,0.000161,0.190408,0.000603,1.000000,0.000009 +123,2022-08-06 03:00:00,0.000568,0.000010,0.000009,0.000010,0.000087,0.000023,0.000020,0.000121,0.000000,0.000000,0.000157,0.190788,0.000380,1.000000,0.000007 +124,2022-08-06 04:00:00,0.000499,0.000009,0.000007,0.000009,0.000088,0.000023,0.000020,0.000120,0.000000,0.000000,0.000155,0.191095,0.000307,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000499,0.000007,0.000007,0.000007,0.000089,0.000023,0.000021,0.000119,0.000000,0.000000,0.000154,0.191396,0.000301,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000502,0.000007,0.000007,0.000007,0.000090,0.000023,0.000022,0.000119,0.000000,0.000000,0.000153,0.191694,0.000298,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000091,0.000022,0.000021,0.000116,0.000000,0.000000,0.000152,0.191500,-0.000193,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000091,0.000022,0.000021,0.000115,0.000000,0.000000,0.000151,0.191311,-0.000190,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000022,0.000021,0.000114,0.000000,0.000000,0.000149,0.191125,-0.000186,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000022,0.000020,0.000115,0.000000,0.000000,0.000148,0.190943,-0.000182,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000021,0.000020,0.000115,0.000000,0.000000,0.000146,0.190765,-0.000178,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000021,0.000019,0.000115,0.000000,0.000000,0.000144,0.190590,-0.000175,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000021,0.000019,0.000116,0.000000,0.000000,0.000142,0.190418,-0.000171,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000021,0.000018,0.000116,0.000133,0.000133,0.000140,0.190121,-0.000298,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000020,0.000017,0.000117,0.000386,0.000386,0.000137,0.189580,-0.000540,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000020,0.000016,0.000117,0.000561,0.000561,0.000133,0.188879,-0.000701,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000019,0.000014,0.000117,0.000683,0.000683,0.000128,0.188073,-0.000806,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000018,0.000012,0.000117,0.000785,0.000785,0.000121,0.187182,-0.000891,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000017,0.000010,0.000116,0.000744,0.000744,0.000114,0.186350,-0.000832,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000016,0.000008,0.000116,0.000648,0.000648,0.000107,0.185628,-0.000722,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000015,0.000007,0.000115,0.000558,0.000558,0.000099,0.185009,-0.000619,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000013,0.000006,0.000115,0.000475,0.000475,0.000091,0.184483,-0.000525,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000012,0.000005,0.000114,0.000362,0.000362,0.000084,0.184079,-0.000404,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000011,0.000004,0.000114,0.000218,0.000218,0.000077,0.183824,-0.000255,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000010,0.000004,0.000114,0.000069,0.000069,0.000070,0.183720,-0.000104,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000009,0.000004,0.000114,0.000000,0.000000,0.000064,0.183686,-0.000034,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000009,0.000004,0.000114,0.000000,0.000000,0.000059,0.183652,-0.000034,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000008,0.000004,0.000114,0.000000,0.000000,0.000055,0.183619,-0.000033,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000008,0.000004,0.000114,0.000000,0.000000,0.000051,0.183587,-0.000032,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000007,0.000004,0.000114,0.000000,0.000000,0.000048,0.183555,-0.000032,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000007,0.000003,0.000114,0.000000,0.000000,0.000045,0.183524,-0.000031,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000006,0.000003,0.000114,0.000000,0.000000,0.000042,0.183493,-0.000030,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000006,0.000003,0.000115,0.000000,0.000000,0.000039,0.183463,-0.000030,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000005,0.000003,0.000115,0.000000,0.000000,0.000037,0.183434,-0.000029,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000005,0.000003,0.000115,0.000000,0.000000,0.000035,0.183405,-0.000029,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000005,0.000003,0.000116,0.000000,0.000000,0.000033,0.183377,-0.000028,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000005,0.000003,0.000116,0.000000,0.000000,0.000032,0.183350,-0.000028,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000004,0.000003,0.000116,0.000131,0.000131,0.000030,0.183194,-0.000156,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000004,0.000002,0.000117,0.000387,0.000387,0.000028,0.182791,-0.000403,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000004,0.000001,0.000117,0.000567,0.000567,0.000025,0.182220,-0.000571,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000003,0.000000,0.000117,0.000680,0.000680,0.000021,0.181540,-0.000680,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000003,0.000000,0.000117,0.000768,0.000765,0.000019,0.180776,-0.000765,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000002,0.000000,0.000118,0.000723,0.000715,0.000016,0.180061,-0.000715,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000002,0.000000,0.000118,0.000625,0.000615,0.000014,0.179446,-0.000615,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000002,0.000000,0.000118,0.000567,0.000554,0.000012,0.178892,-0.000554,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000002,0.000000,0.000118,0.000484,0.000470,0.000011,0.178422,-0.000470,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000119,0.000367,0.000355,0.000009,0.178067,-0.000355,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000119,0.000191,0.000184,0.000008,0.177883,-0.000184,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000120,0.000033,0.000032,0.000007,0.177851,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000120,0.000000,0.000000,0.000006,0.177851,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000000,0.000000,0.000005,0.177851,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000000,0.000000,0.000005,0.177851,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000001,0.000000,0.000122,0.000000,0.000000,0.000004,0.177851,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000001,0.000000,0.000122,0.000000,0.000000,0.000004,0.177851,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000003,0.177851,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000000,0.000000,0.000003,0.177851,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000000,0.000000,0.000002,0.177851,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000000,0.000000,0.000002,0.177851,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000000,0.000000,0.000002,0.177851,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000002,0.177851,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000001,0.177851,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000111,0.000107,0.000001,0.177745,-0.000106,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000371,0.000356,0.000001,0.177389,-0.000356,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000551,0.000528,0.000001,0.176861,-0.000528,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000668,0.000637,0.000001,0.176224,-0.000637,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000765,0.000725,0.000001,0.175498,-0.000725,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000737,0.000694,0.000001,0.174804,-0.000694,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000631,0.000590,0.000001,0.174214,-0.000590,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000566,0.000527,0.000000,0.173687,-0.000527,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000482,0.000446,0.000000,0.173241,-0.000446,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000365,0.000336,0.000000,0.172906,-0.000336,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000214,0.000196,0.000000,0.172709,-0.000196,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000055,0.000050,0.000000,0.172659,-0.000050,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000000,0.172659,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000122,0.000112,0.000000,0.172547,-0.000112,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620698.csv b/test/channel_loss/channel_forcing/et/cat-2620698.csv new file mode 100644 index 000000000..4ca1924a7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620698.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000187,0.000000,0.000000,0.000000,0.000000,0.000832,0.000254,0.000832,0.000189,0.000189,0.009184,0.373402,-0.002956,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000780,0.000248,0.000780,0.000060,0.000060,0.008652,0.370451,-0.002950,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000732,0.000243,0.000732,0.000000,0.000000,0.008163,0.367622,-0.002829,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000689,0.000238,0.000689,0.000000,0.000000,0.007712,0.364853,-0.002769,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000649,0.000233,0.000649,0.000000,0.000000,0.007296,0.362143,-0.002710,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000613,0.000228,0.000613,0.000000,0.000000,0.006911,0.359491,-0.002653,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000579,0.000223,0.000580,0.000000,0.000000,0.006555,0.356894,-0.002596,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000548,0.000218,0.000549,0.000000,0.000000,0.006225,0.354353,-0.002541,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000520,0.000214,0.000521,0.000000,0.000000,0.005919,0.351866,-0.002487,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000494,0.000209,0.000495,0.000000,0.000000,0.005634,0.349431,-0.002435,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000469,0.000205,0.000470,0.000000,0.000000,0.005370,0.347048,-0.002383,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000447,0.000200,0.000448,0.000000,0.000000,0.005123,0.344716,-0.002332,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000426,0.000196,0.000427,0.000000,0.000000,0.004894,0.342433,-0.002283,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000406,0.000192,0.000408,0.000000,0.000000,0.004679,0.340199,-0.002234,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000388,0.000188,0.000390,0.000145,0.000145,0.004479,0.337871,-0.002328,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000371,0.000183,0.000374,0.000389,0.000389,0.004291,0.335352,-0.002518,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000355,0.000178,0.000358,0.000554,0.000554,0.004113,0.332726,-0.002627,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000340,0.000173,0.000343,0.000664,0.000664,0.003946,0.330048,-0.002678,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000326,0.000168,0.000330,0.000596,0.000596,0.003788,0.327492,-0.002555,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000339,0.000000,0.000000,0.000000,0.000004,0.000313,0.000164,0.000317,0.000551,0.000551,0.003639,0.325367,-0.002125,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000004,0.000301,0.000161,0.000305,0.000479,0.000479,0.003499,0.323336,-0.002031,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000379,0.000000,0.000000,0.000000,0.000004,0.000289,0.000157,0.000293,0.000383,0.000383,0.003368,0.321502,-0.001833,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000316,0.000000,0.000000,0.000000,0.000005,0.000278,0.000154,0.000283,0.000338,0.000338,0.003243,0.319691,-0.001811,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000316,0.000000,0.000000,0.000000,0.000005,0.000268,0.000151,0.000273,0.000257,0.000257,0.003126,0.317997,-0.001694,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000316,0.000001,0.000001,0.000001,0.000005,0.000258,0.000148,0.000264,0.000170,0.000170,0.003016,0.316423,-0.001574,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000640,0.000007,0.000013,0.000007,0.000006,0.000249,0.000146,0.000262,0.000077,0.000077,0.002913,0.315279,-0.001144,1.000000,0.000006 +26,2022-08-02 02:00:00,0.000949,0.000023,0.000035,0.000023,0.000006,0.000240,0.000144,0.000270,0.000000,0.000000,0.002817,0.314515,-0.000764,1.000000,0.000019 +27,2022-08-02 03:00:00,0.000948,0.000031,0.000035,0.000031,0.000007,0.000233,0.000143,0.000270,0.000000,0.000000,0.002727,0.313767,-0.000748,1.000000,0.000023 +28,2022-08-02 04:00:00,0.000957,0.000036,0.000036,0.000036,0.000007,0.000225,0.000141,0.000268,0.000000,0.000000,0.002643,0.313042,-0.000725,1.000000,0.000023 +29,2022-08-02 05:00:00,0.000958,0.000036,0.000036,0.000036,0.000008,0.000218,0.000140,0.000262,0.000000,0.000000,0.002565,0.312334,-0.000708,1.000000,0.000023 +30,2022-08-02 06:00:00,0.000925,0.000035,0.000034,0.000035,0.000008,0.000212,0.000139,0.000255,0.000000,0.000000,0.002491,0.311611,-0.000723,1.000000,0.000022 +31,2022-08-02 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000009,0.000206,0.000136,0.000230,0.000000,0.000000,0.002421,0.310030,-0.001580,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000009,0.000200,0.000133,0.000216,0.000000,0.000000,0.002354,0.308484,-0.001547,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000195,0.000130,0.000204,0.000000,0.000000,0.002290,0.306970,-0.001514,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000189,0.000127,0.000199,0.000000,0.000000,0.002228,0.305488,-0.001482,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000184,0.000125,0.000195,0.000000,0.000000,0.002168,0.304037,-0.001450,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000179,0.000122,0.000190,0.000000,0.000000,0.002111,0.302618,-0.001420,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000174,0.000120,0.000186,0.000000,0.000000,0.002056,0.301326,-0.001292,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000170,0.000117,0.000182,0.000123,0.000123,0.002004,0.299941,-0.001385,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000165,0.000114,0.000178,0.000331,0.000331,0.001952,0.298382,-0.001559,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000161,0.000111,0.000175,0.000467,0.000467,0.001902,0.296723,-0.001659,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000157,0.000108,0.000171,0.000571,0.000571,0.001853,0.294998,-0.001725,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000308,0.000000,0.000000,0.000000,0.000015,0.000153,0.000105,0.000167,0.000653,0.000653,0.001806,0.293433,-0.001565,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000149,0.000102,0.000164,0.000584,0.000584,0.001758,0.291666,-0.001767,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000145,0.000098,0.000161,0.000532,0.000532,0.001712,0.289988,-0.001678,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000141,0.000095,0.000157,0.000509,0.000509,0.001667,0.288369,-0.001619,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000137,0.000093,0.000154,0.000443,0.000443,0.001622,0.286848,-0.001521,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000133,0.000090,0.000151,0.000333,0.000333,0.001579,0.285467,-0.001381,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000130,0.000088,0.000148,0.000201,0.000201,0.001537,0.284244,-0.001223,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000126,0.000086,0.000145,0.000051,0.000051,0.001497,0.283195,-0.001049,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000123,0.000084,0.000143,0.000000,0.000000,0.001458,0.282217,-0.000977,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000120,0.000082,0.000140,0.000000,0.000000,0.001420,0.281261,-0.000957,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000117,0.000080,0.000138,0.000000,0.000000,0.001384,0.280324,-0.000936,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000114,0.000079,0.000135,0.000000,0.000000,0.001349,0.279408,-0.000916,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000111,0.000077,0.000133,0.000000,0.000000,0.001316,0.278511,-0.000897,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000108,0.000075,0.000131,0.000000,0.000000,0.001283,0.277633,-0.000878,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000105,0.000074,0.000129,0.000000,0.000000,0.001252,0.276774,-0.000859,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000103,0.000072,0.000127,0.000000,0.000000,0.001221,0.275933,-0.000841,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000100,0.000071,0.000125,0.000000,0.000000,0.001192,0.275109,-0.000823,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000098,0.000069,0.000123,0.000000,0.000000,0.001163,0.274304,-0.000806,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000095,0.000068,0.000122,0.000000,0.000000,0.001135,0.273515,-0.000789,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000093,0.000066,0.000120,0.000000,0.000000,0.001109,0.272743,-0.000772,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000091,0.000065,0.000118,0.000141,0.000141,0.001082,0.271849,-0.000894,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000089,0.000063,0.000117,0.000395,0.000395,0.001056,0.270726,-0.001123,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000087,0.000060,0.000115,0.000556,0.000556,0.001030,0.269469,-0.001257,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000084,0.000058,0.000114,0.000671,0.000671,0.001003,0.268126,-0.001343,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000082,0.000055,0.000112,0.000687,0.000687,0.000977,0.266796,-0.001330,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000080,0.000053,0.000111,0.000649,0.000649,0.000950,0.265532,-0.001265,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000675,0.000000,0.000000,0.000000,0.000031,0.000078,0.000052,0.000109,0.000565,0.000565,0.000924,0.265036,-0.000495,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000189,0.000000,0.000000,0.000000,0.000032,0.000075,0.000050,0.000108,0.000507,0.000507,0.000899,0.264134,-0.000903,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000073,0.000048,0.000106,0.000438,0.000438,0.000874,0.263132,-0.001002,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000071,0.000047,0.000105,0.000333,0.000333,0.000850,0.262254,-0.000878,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000069,0.000045,0.000103,0.000207,0.000207,0.000826,0.261518,-0.000736,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000067,0.000044,0.000102,0.000064,0.000064,0.000803,0.260938,-0.000580,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000065,0.000043,0.000101,0.000000,0.000000,0.000781,0.260433,-0.000505,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000064,0.000042,0.000100,0.000000,0.000000,0.000760,0.259939,-0.000494,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000062,0.000042,0.000099,0.000000,0.000000,0.000739,0.259455,-0.000484,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000060,0.000041,0.000098,0.000000,0.000000,0.000720,0.258981,-0.000474,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000059,0.000040,0.000097,0.000000,0.000000,0.000701,0.258518,-0.000464,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000057,0.000039,0.000096,0.000000,0.000000,0.000683,0.258064,-0.000454,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000056,0.000038,0.000095,0.000000,0.000000,0.000665,0.257620,-0.000444,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000054,0.000037,0.000095,0.000000,0.000000,0.000648,0.257185,-0.000435,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000053,0.000037,0.000094,0.000000,0.000000,0.000632,0.256760,-0.000425,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000052,0.000036,0.000093,0.000000,0.000000,0.000616,0.256343,-0.000416,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000050,0.000035,0.000093,0.000000,0.000000,0.000601,0.255936,-0.000408,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000049,0.000034,0.000092,0.000000,0.000000,0.000586,0.255537,-0.000399,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000048,0.000033,0.000091,0.000138,0.000138,0.000572,0.255012,-0.000525,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000047,0.000032,0.000091,0.000393,0.000393,0.000557,0.254247,-0.000764,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000045,0.000030,0.000090,0.000550,0.000550,0.000542,0.253346,-0.000902,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000044,0.000028,0.000090,0.000670,0.000670,0.000526,0.252346,-0.000999,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000043,0.000026,0.000089,0.000762,0.000762,0.000510,0.251278,-0.001069,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000041,0.000024,0.000088,0.000727,0.000727,0.000493,0.250266,-0.001012,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000040,0.000023,0.000087,0.000624,0.000624,0.000476,0.249376,-0.000890,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000038,0.000021,0.000087,0.000531,0.000531,0.000459,0.248597,-0.000779,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000037,0.000020,0.000086,0.000466,0.000466,0.000442,0.247898,-0.000699,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000036,0.000019,0.000085,0.000352,0.000352,0.000426,0.247325,-0.000573,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000034,0.000018,0.000085,0.000216,0.000216,0.000410,0.246897,-0.000428,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000033,0.000018,0.000084,0.000076,0.000076,0.000394,0.246616,-0.000281,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000032,0.000017,0.000083,0.000000,0.000000,0.000380,0.246415,-0.000201,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000031,0.000017,0.000083,0.000000,0.000000,0.000366,0.246218,-0.000197,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000030,0.000017,0.000082,0.000000,0.000000,0.000353,0.246025,-0.000193,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000028,0.000016,0.000082,0.000000,0.000000,0.000341,0.245836,-0.000189,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000028,0.000016,0.000082,0.000000,0.000000,0.000329,0.245652,-0.000185,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000027,0.000016,0.000081,0.000000,0.000000,0.000318,0.245471,-0.000181,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000026,0.000015,0.000081,0.000000,0.000000,0.000308,0.245294,-0.000177,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000025,0.000015,0.000081,0.000000,0.000000,0.000298,0.245121,-0.000173,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000024,0.000015,0.000081,0.000000,0.000000,0.000288,0.244952,-0.000169,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000023,0.000014,0.000081,0.000000,0.000000,0.000279,0.244786,-0.000166,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000023,0.000014,0.000081,0.000000,0.000000,0.000271,0.244623,-0.000162,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000022,0.000014,0.000080,0.000000,0.000000,0.000263,0.244465,-0.000159,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000021,0.000013,0.000080,0.000147,0.000147,0.000254,0.244165,-0.000300,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000021,0.000012,0.000080,0.000389,0.000389,0.000246,0.243635,-0.000530,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000020,0.000011,0.000080,0.000551,0.000551,0.000237,0.242958,-0.000677,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000019,0.000009,0.000080,0.000671,0.000671,0.000227,0.242178,-0.000780,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000018,0.000008,0.000080,0.000662,0.000662,0.000217,0.241423,-0.000755,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000062,0.000017,0.000007,0.000079,0.000621,0.000621,0.000207,0.240786,-0.000636,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000016,0.000006,0.000079,0.000536,0.000536,0.000196,0.240247,-0.000540,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000015,0.000005,0.000079,0.000476,0.000476,0.000186,0.239776,-0.000470,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000015,0.000004,0.000079,0.000404,0.000404,0.000175,0.239386,-0.000390,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000098,0.000000,0.000000,0.000000,0.000065,0.000014,0.000004,0.000078,0.000319,0.000319,0.000165,0.239122,-0.000264,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000013,0.000003,0.000078,0.000196,0.000196,0.000156,0.238950,-0.000173,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000348,0.000001,0.000003,0.000001,0.000066,0.000012,0.000004,0.000079,0.000076,0.000076,0.000147,0.239175,0.000225,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000483,0.000005,0.000008,0.000005,0.000066,0.000012,0.000005,0.000083,0.000000,0.000000,0.000140,0.239597,0.000422,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000480,0.000007,0.000008,0.000007,0.000067,0.000011,0.000005,0.000085,0.000000,0.000000,0.000134,0.240006,0.000409,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000428,0.000007,0.000006,0.000007,0.000067,0.000011,0.000006,0.000085,0.000000,0.000000,0.000129,0.240358,0.000352,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000421,0.000007,0.000006,0.000007,0.000068,0.000010,0.000007,0.000085,0.000000,0.000000,0.000126,0.240696,0.000338,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000421,0.000006,0.000006,0.000006,0.000069,0.000010,0.000007,0.000085,0.000000,0.000000,0.000123,0.241027,0.000331,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000069,0.000010,0.000007,0.000082,0.000000,0.000000,0.000120,0.240944,-0.000083,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000070,0.000010,0.000007,0.000081,0.000000,0.000000,0.000117,0.240864,-0.000081,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000010,0.000007,0.000080,0.000000,0.000000,0.000114,0.240784,-0.000079,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000009,0.000007,0.000080,0.000000,0.000000,0.000112,0.240707,-0.000077,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000009,0.000007,0.000080,0.000000,0.000000,0.000109,0.240631,-0.000076,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000009,0.000006,0.000081,0.000000,0.000000,0.000107,0.240557,-0.000074,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000009,0.000006,0.000081,0.000000,0.000000,0.000104,0.240485,-0.000073,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000008,0.000006,0.000081,0.000131,0.000131,0.000102,0.240285,-0.000199,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000008,0.000005,0.000082,0.000377,0.000377,0.000098,0.239849,-0.000436,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000008,0.000004,0.000082,0.000538,0.000538,0.000094,0.239265,-0.000584,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000003,0.000082,0.000650,0.000650,0.000090,0.238584,-0.000681,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000001,0.000082,0.000734,0.000734,0.000084,0.237835,-0.000749,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000000,0.000082,0.000700,0.000700,0.000078,0.237135,-0.000700,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000000,0.000082,0.000612,0.000612,0.000072,0.236523,-0.000612,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000000,0.000082,0.000538,0.000536,0.000066,0.235987,-0.000536,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000000,0.000082,0.000465,0.000461,0.000061,0.235526,-0.000461,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000005,0.000000,0.000082,0.000350,0.000346,0.000056,0.235180,-0.000346,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000000,0.000082,0.000206,0.000203,0.000052,0.234977,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000000,0.000083,0.000062,0.000062,0.000048,0.234915,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000000,0.000083,0.000000,0.000000,0.000044,0.234915,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000000,0.000000,0.000041,0.234915,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000000,0.000000,0.000038,0.234915,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000000,0.000083,0.000000,0.000000,0.000035,0.234915,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000000,0.000084,0.000000,0.000000,0.000032,0.234915,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000084,0.000000,0.000000,0.000030,0.234915,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000027,0.234915,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000085,0.000000,0.000000,0.000025,0.234915,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000023,0.234915,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000022,0.234915,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000085,0.000000,0.000000,0.000020,0.234915,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000086,0.000000,0.000000,0.000018,0.234915,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000129,0.000127,0.000017,0.234788,-0.000127,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000377,0.000371,0.000016,0.234417,-0.000371,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000544,0.000534,0.000014,0.233883,-0.000534,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000658,0.000644,0.000013,0.233239,-0.000644,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000734,0.000715,0.000012,0.232524,-0.000715,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000683,0.000661,0.000011,0.231863,-0.000661,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000596,0.000574,0.000011,0.231288,-0.000574,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000545,0.000523,0.000010,0.230765,-0.000523,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000470,0.000450,0.000009,0.230316,-0.000450,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000089,0.000352,0.000336,0.000008,0.229980,-0.000336,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000182,0.000173,0.000008,0.229807,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000030,0.000029,0.000007,0.229778,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000090,0.000000,0.000000,0.000007,0.229778,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000000,0.000000,0.000006,0.229778,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000006,0.229778,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000005,0.229778,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000000,0.000000,0.000005,0.229778,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000004,0.229778,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000000,0.000000,0.000004,0.229778,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000004,0.229778,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000003,0.229778,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.229778,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.229778,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.229778,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000109,0.000104,0.000002,0.229674,-0.000104,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000364,0.000345,0.000002,0.229329,-0.000345,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000532,0.000504,0.000002,0.228825,-0.000504,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000647,0.000611,0.000002,0.228214,-0.000611,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000740,0.000695,0.000002,0.227519,-0.000695,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000695,0.000650,0.000002,0.226869,-0.000650,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000603,0.000561,0.000002,0.226309,-0.000561,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000540,0.000501,0.000001,0.225808,-0.000501,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000468,0.000432,0.000001,0.225375,-0.000432,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000353,0.000325,0.000001,0.225051,-0.000325,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000204,0.000187,0.000001,0.224863,-0.000187,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000048,0.000044,0.000001,0.224819,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224819,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224819,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224819,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224819,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000120,0.000110,0.000000,0.224709,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620699.csv b/test/channel_loss/channel_forcing/et/cat-2620699.csv new file mode 100644 index 000000000..bcc216dc3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620699.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000154,0.000000,0.000000,0.000000,0.000000,0.000828,0.000214,0.000828,0.000178,0.000178,0.009150,0.375260,-0.002760,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000210,0.000773,0.000056,0.000056,0.008586,0.372527,-0.002733,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000723,0.000205,0.000723,0.000000,0.000000,0.008068,0.369908,-0.002619,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000201,0.000677,0.000000,0.000000,0.007592,0.367346,-0.002563,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000196,0.000636,0.000000,0.000000,0.007153,0.364838,-0.002508,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000192,0.000597,0.000000,0.000000,0.006748,0.362384,-0.002454,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000562,0.000188,0.000563,0.000000,0.000000,0.006374,0.359983,-0.002401,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000184,0.000530,0.000000,0.000000,0.006028,0.357633,-0.002350,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000500,0.000180,0.000501,0.000000,0.000000,0.005707,0.355334,-0.002299,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000473,0.000176,0.000474,0.000000,0.000000,0.005411,0.353084,-0.002250,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000448,0.000172,0.000449,0.000000,0.000000,0.005135,0.350882,-0.002202,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000425,0.000169,0.000426,0.000000,0.000000,0.004880,0.348728,-0.002154,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000403,0.000165,0.000404,0.000000,0.000000,0.004642,0.346619,-0.002108,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000383,0.000162,0.000385,0.000000,0.000000,0.004421,0.344556,-0.002063,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000364,0.000158,0.000366,0.000144,0.000144,0.004214,0.342397,-0.002160,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000347,0.000154,0.000349,0.000392,0.000392,0.004021,0.340040,-0.002356,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000331,0.000150,0.000333,0.000545,0.000545,0.003840,0.337585,-0.002456,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000316,0.000145,0.000318,0.000644,0.000644,0.003669,0.335085,-0.002500,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000301,0.000141,0.000304,0.000563,0.000563,0.003509,0.332719,-0.002366,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000317,0.000000,0.000000,0.000000,0.000003,0.000288,0.000138,0.000291,0.000514,0.000514,0.003359,0.330762,-0.001957,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000004,0.000276,0.000135,0.000279,0.000449,0.000449,0.003218,0.328909,-0.001853,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000379,0.000000,0.000000,0.000000,0.000004,0.000264,0.000132,0.000268,0.000369,0.000369,0.003086,0.327236,-0.001673,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000316,0.000000,0.000000,0.000000,0.000004,0.000253,0.000129,0.000258,0.000332,0.000332,0.002962,0.325573,-0.001662,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000317,0.000000,0.000000,0.000000,0.000005,0.000243,0.000126,0.000248,0.000253,0.000253,0.002845,0.324024,-0.001549,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000316,0.000001,0.000001,0.000001,0.000005,0.000233,0.000124,0.000239,0.000163,0.000163,0.002736,0.322594,-0.001430,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000632,0.000008,0.000014,0.000008,0.000006,0.000224,0.000122,0.000238,0.000074,0.000074,0.002633,0.321578,-0.001016,1.000000,0.000007 +26,2022-08-02 02:00:00,0.000940,0.000025,0.000039,0.000025,0.000006,0.000216,0.000121,0.000247,0.000000,0.000000,0.002538,0.320934,-0.000645,1.000000,0.000021 +27,2022-08-02 03:00:00,0.000941,0.000034,0.000039,0.000034,0.000006,0.000208,0.000120,0.000249,0.000000,0.000000,0.002450,0.320305,-0.000629,1.000000,0.000026 +28,2022-08-02 04:00:00,0.000967,0.000041,0.000042,0.000041,0.000007,0.000201,0.000119,0.000249,0.000000,0.000000,0.002367,0.319712,-0.000592,1.000000,0.000027 +29,2022-08-02 05:00:00,0.000949,0.000040,0.000040,0.000040,0.000007,0.000195,0.000118,0.000242,0.000000,0.000000,0.002291,0.319116,-0.000596,1.000000,0.000026 +30,2022-08-02 06:00:00,0.000882,0.000037,0.000035,0.000037,0.000008,0.000188,0.000117,0.000233,0.000000,0.000000,0.002219,0.318472,-0.000643,1.000000,0.000024 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000008,0.000182,0.000114,0.000207,0.000000,0.000000,0.002151,0.317014,-0.001459,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000009,0.000177,0.000112,0.000192,0.000000,0.000000,0.002086,0.315586,-0.001428,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000172,0.000109,0.000181,0.000000,0.000000,0.002024,0.314189,-0.001397,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000166,0.000107,0.000176,0.000000,0.000000,0.001964,0.312822,-0.001367,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000162,0.000105,0.000172,0.000000,0.000000,0.001908,0.311485,-0.001338,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000157,0.000103,0.000167,0.000000,0.000000,0.001853,0.310176,-0.001309,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000011,0.000152,0.000101,0.000164,0.000000,0.000000,0.001802,0.308993,-0.001183,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000148,0.000098,0.000160,0.000126,0.000126,0.001752,0.307712,-0.001281,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000144,0.000096,0.000156,0.000335,0.000335,0.001704,0.306253,-0.001458,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000140,0.000093,0.000153,0.000463,0.000463,0.001657,0.304701,-0.001552,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000136,0.000090,0.000149,0.000556,0.000556,0.001611,0.303092,-0.001609,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000402,0.000000,0.000000,0.000000,0.000014,0.000132,0.000088,0.000146,0.000624,0.000624,0.001567,0.301746,-0.001346,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000016,0.000000,0.000000,0.000000,0.000014,0.000129,0.000085,0.000143,0.000560,0.000560,0.001524,0.300114,-0.001631,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000125,0.000083,0.000140,0.000508,0.000508,0.001481,0.298552,-0.001562,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000121,0.000080,0.000137,0.000498,0.000498,0.001440,0.297034,-0.001518,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000118,0.000078,0.000134,0.000430,0.000430,0.001399,0.295614,-0.001420,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000115,0.000075,0.000131,0.000323,0.000323,0.001360,0.294329,-0.001284,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000111,0.000073,0.000128,0.000194,0.000194,0.001322,0.293199,-0.001131,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000108,0.000072,0.000126,0.000045,0.000045,0.001286,0.292238,-0.000960,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000105,0.000070,0.000123,0.000000,0.000000,0.001251,0.291342,-0.000896,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000102,0.000069,0.000121,0.000000,0.000000,0.001217,0.290466,-0.000877,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000100,0.000067,0.000119,0.000000,0.000000,0.001185,0.289608,-0.000858,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000097,0.000066,0.000117,0.000000,0.000000,0.001153,0.288769,-0.000839,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000094,0.000064,0.000115,0.000000,0.000000,0.001123,0.287947,-0.000821,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000092,0.000063,0.000113,0.000000,0.000000,0.001094,0.287144,-0.000804,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000090,0.000062,0.000111,0.000000,0.000000,0.001066,0.286357,-0.000786,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000087,0.000060,0.000110,0.000000,0.000000,0.001039,0.285588,-0.000770,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000085,0.000059,0.000108,0.000000,0.000000,0.001013,0.284835,-0.000753,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000083,0.000058,0.000107,0.000000,0.000000,0.000988,0.284098,-0.000737,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000081,0.000056,0.000105,0.000000,0.000000,0.000964,0.283377,-0.000721,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000079,0.000055,0.000104,0.000000,0.000000,0.000940,0.282671,-0.000706,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000077,0.000054,0.000102,0.000138,0.000138,0.000917,0.281845,-0.000826,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000075,0.000052,0.000101,0.000391,0.000391,0.000894,0.280790,-0.001055,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000073,0.000050,0.000100,0.000541,0.000541,0.000871,0.279610,-0.001180,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000071,0.000048,0.000098,0.000650,0.000650,0.000848,0.278350,-0.001261,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000069,0.000046,0.000097,0.000651,0.000651,0.000824,0.277115,-0.001234,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000067,0.000044,0.000096,0.000601,0.000601,0.000801,0.275956,-0.001159,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000695,0.000001,0.000001,0.000001,0.000029,0.000065,0.000043,0.000095,0.000529,0.000529,0.000779,0.275571,-0.000385,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000189,0.000000,0.000000,0.000000,0.000030,0.000063,0.000042,0.000094,0.000478,0.000478,0.000757,0.274751,-0.000820,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000062,0.000040,0.000092,0.000426,0.000426,0.000735,0.273814,-0.000937,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000060,0.000039,0.000091,0.000318,0.000318,0.000714,0.273002,-0.000812,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000058,0.000037,0.000090,0.000201,0.000201,0.000694,0.272323,-0.000679,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000056,0.000037,0.000089,0.000059,0.000059,0.000674,0.271797,-0.000526,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000055,0.000036,0.000088,0.000000,0.000000,0.000655,0.271340,-0.000457,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000053,0.000035,0.000087,0.000000,0.000000,0.000637,0.270893,-0.000447,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000052,0.000034,0.000086,0.000000,0.000000,0.000619,0.270455,-0.000438,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000050,0.000034,0.000085,0.000000,0.000000,0.000602,0.270027,-0.000428,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000049,0.000033,0.000085,0.000000,0.000000,0.000586,0.269608,-0.000419,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000048,0.000032,0.000084,0.000000,0.000000,0.000571,0.269198,-0.000410,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000046,0.000031,0.000083,0.000000,0.000000,0.000556,0.268796,-0.000401,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000045,0.000031,0.000083,0.000000,0.000000,0.000541,0.268404,-0.000393,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000044,0.000030,0.000082,0.000000,0.000000,0.000527,0.268019,-0.000384,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000043,0.000029,0.000082,0.000000,0.000000,0.000514,0.267643,-0.000376,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000042,0.000029,0.000081,0.000000,0.000000,0.000501,0.267275,-0.000368,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000041,0.000028,0.000081,0.000000,0.000000,0.000488,0.266915,-0.000360,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000040,0.000027,0.000080,0.000134,0.000134,0.000476,0.266432,-0.000483,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000039,0.000026,0.000080,0.000386,0.000386,0.000463,0.265713,-0.000719,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000038,0.000025,0.000079,0.000539,0.000539,0.000450,0.264859,-0.000854,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000036,0.000023,0.000079,0.000648,0.000648,0.000437,0.263917,-0.000942,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000035,0.000021,0.000078,0.000733,0.000733,0.000423,0.262913,-0.001005,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000034,0.000020,0.000078,0.000676,0.000676,0.000408,0.261985,-0.000928,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000033,0.000018,0.000077,0.000588,0.000588,0.000394,0.261162,-0.000822,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000032,0.000017,0.000077,0.000518,0.000518,0.000379,0.260426,-0.000736,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000030,0.000016,0.000076,0.000452,0.000452,0.000365,0.259771,-0.000656,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000029,0.000015,0.000075,0.000339,0.000339,0.000350,0.259240,-0.000531,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000028,0.000014,0.000075,0.000206,0.000206,0.000337,0.258850,-0.000389,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000027,0.000014,0.000074,0.000069,0.000069,0.000324,0.258603,-0.000247,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000026,0.000014,0.000074,0.000000,0.000000,0.000311,0.258429,-0.000174,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000025,0.000013,0.000074,0.000000,0.000000,0.000300,0.258259,-0.000170,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000024,0.000013,0.000073,0.000000,0.000000,0.000289,0.258093,-0.000167,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000023,0.000013,0.000073,0.000000,0.000000,0.000278,0.257930,-0.000163,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000022,0.000012,0.000073,0.000000,0.000000,0.000268,0.257770,-0.000159,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000022,0.000012,0.000072,0.000000,0.000000,0.000259,0.257614,-0.000156,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000021,0.000012,0.000072,0.000000,0.000000,0.000250,0.257461,-0.000153,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000020,0.000012,0.000072,0.000000,0.000000,0.000242,0.257312,-0.000149,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000019,0.000011,0.000072,0.000000,0.000000,0.000234,0.257166,-0.000146,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000019,0.000011,0.000072,0.000000,0.000000,0.000226,0.257023,-0.000143,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000018,0.000011,0.000072,0.000000,0.000000,0.000219,0.256883,-0.000140,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000018,0.000011,0.000072,0.000000,0.000000,0.000212,0.256746,-0.000137,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000017,0.000010,0.000072,0.000146,0.000146,0.000205,0.256469,-0.000277,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000016,0.000009,0.000072,0.000388,0.000388,0.000198,0.255962,-0.000508,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000016,0.000008,0.000072,0.000540,0.000540,0.000190,0.255316,-0.000646,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000015,0.000007,0.000072,0.000651,0.000651,0.000182,0.254575,-0.000740,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000006,0.000072,0.000633,0.000633,0.000173,0.253868,-0.000707,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000058,0.000014,0.000005,0.000071,0.000590,0.000590,0.000164,0.253280,-0.000588,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000058,0.000013,0.000004,0.000071,0.000516,0.000516,0.000155,0.252777,-0.000503,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000059,0.000012,0.000003,0.000071,0.000471,0.000471,0.000146,0.252330,-0.000448,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000059,0.000011,0.000003,0.000071,0.000391,0.000391,0.000137,0.251970,-0.000360,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000108,0.000000,0.000000,0.000000,0.000060,0.000011,0.000002,0.000071,0.000303,0.000303,0.000129,0.251747,-0.000222,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000060,0.000010,0.000002,0.000071,0.000188,0.000188,0.000121,0.251598,-0.000149,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000331,0.000001,0.000003,0.000001,0.000061,0.000009,0.000002,0.000072,0.000071,0.000071,0.000114,0.251827,0.000229,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000451,0.000005,0.000008,0.000005,0.000062,0.000009,0.000003,0.000076,0.000000,0.000000,0.000108,0.252232,0.000405,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000468,0.000007,0.000009,0.000007,0.000062,0.000009,0.000004,0.000078,0.000000,0.000000,0.000103,0.252644,0.000412,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000395,0.000007,0.000006,0.000007,0.000063,0.000008,0.000004,0.000078,0.000000,0.000000,0.000099,0.252979,0.000335,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000400,0.000007,0.000006,0.000007,0.000063,0.000008,0.000005,0.000078,0.000000,0.000000,0.000096,0.253311,0.000332,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000400,0.000006,0.000006,0.000006,0.000064,0.000008,0.000005,0.000078,0.000000,0.000000,0.000093,0.253636,0.000325,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000064,0.000008,0.000005,0.000075,0.000000,0.000000,0.000091,0.253569,-0.000067,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000065,0.000007,0.000005,0.000073,0.000000,0.000000,0.000089,0.253503,-0.000066,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000007,0.000005,0.000072,0.000000,0.000000,0.000087,0.253438,-0.000064,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000007,0.000005,0.000073,0.000000,0.000000,0.000084,0.253375,-0.000063,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000007,0.000005,0.000073,0.000000,0.000000,0.000082,0.253314,-0.000062,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000007,0.000005,0.000073,0.000000,0.000000,0.000080,0.253253,-0.000060,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000007,0.000005,0.000074,0.000000,0.000000,0.000079,0.253194,-0.000059,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000006,0.000004,0.000074,0.000130,0.000130,0.000076,0.253009,-0.000185,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000006,0.000004,0.000074,0.000374,0.000374,0.000074,0.252590,-0.000419,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000006,0.000003,0.000074,0.000524,0.000524,0.000071,0.252032,-0.000558,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000006,0.000002,0.000075,0.000632,0.000632,0.000067,0.251381,-0.000651,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000005,0.000000,0.000075,0.000710,0.000710,0.000062,0.250668,-0.000713,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000005,0.000000,0.000075,0.000666,0.000666,0.000057,0.250002,-0.000666,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000004,0.000000,0.000075,0.000583,0.000582,0.000053,0.249420,-0.000582,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000004,0.000000,0.000075,0.000524,0.000521,0.000049,0.248900,-0.000521,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000004,0.000000,0.000075,0.000452,0.000447,0.000045,0.248452,-0.000447,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000003,0.000000,0.000075,0.000337,0.000332,0.000041,0.248120,-0.000332,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000003,0.000000,0.000076,0.000197,0.000194,0.000038,0.247926,-0.000194,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000003,0.000000,0.000076,0.000057,0.000056,0.000035,0.247870,-0.000056,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000003,0.000000,0.000076,0.000000,0.000000,0.000033,0.247870,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000003,0.000000,0.000076,0.000000,0.000000,0.000030,0.247870,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000000,0.000076,0.000000,0.000000,0.000028,0.247870,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000000,0.000000,0.000026,0.247870,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000000,0.000000,0.000024,0.247870,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000000,0.000000,0.000022,0.247870,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000002,0.000000,0.000078,0.000000,0.000000,0.000020,0.247870,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000002,0.000000,0.000078,0.000000,0.000000,0.000019,0.247870,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000000,0.000000,0.000017,0.247870,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000079,0.000000,0.000000,0.000016,0.247870,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000015,0.247870,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000014,0.247870,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000125,0.000123,0.000012,0.247747,-0.000123,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000370,0.000363,0.000012,0.247384,-0.000363,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000525,0.000514,0.000011,0.246869,-0.000514,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000080,0.000635,0.000621,0.000010,0.246249,-0.000621,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000695,0.000676,0.000009,0.245573,-0.000676,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000647,0.000627,0.000008,0.244946,-0.000627,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000081,0.000564,0.000544,0.000008,0.244402,-0.000544,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000082,0.000529,0.000508,0.000007,0.243894,-0.000508,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000082,0.000455,0.000435,0.000007,0.243459,-0.000435,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000083,0.000337,0.000322,0.000006,0.243137,-0.000322,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000083,0.000173,0.000165,0.000006,0.242972,-0.000165,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000027,0.000026,0.000005,0.242946,-0.000026,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000000,0.000000,0.000005,0.242946,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000004,0.242946,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000004,0.242946,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000000,0.000000,0.000004,0.242946,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000003,0.242946,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000003,0.242946,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000086,0.000000,0.000000,0.000003,0.242946,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000003,0.242946,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000003,0.242946,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000087,0.000000,0.000000,0.000002,0.242946,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000002,0.242946,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000002,0.242946,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000088,0.000108,0.000103,0.000002,0.242843,-0.000103,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000357,0.000340,0.000002,0.242503,-0.000340,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000516,0.000490,0.000002,0.242013,-0.000490,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000089,0.000625,0.000591,0.000001,0.241423,-0.000591,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000702,0.000661,0.000001,0.240761,-0.000661,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000656,0.000616,0.000001,0.240146,-0.000616,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000090,0.000572,0.000535,0.000001,0.239611,-0.000535,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000527,0.000490,0.000001,0.239121,-0.000490,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000455,0.000422,0.000001,0.238699,-0.000422,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000337,0.000311,0.000001,0.238388,-0.000311,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000194,0.000179,0.000001,0.238208,-0.000179,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000042,0.000039,0.000001,0.238170,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.238170,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.238170,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.238170,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.238170,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.238170,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.238170,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000119,0.000109,0.000000,0.238060,-0.000109,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620700.csv b/test/channel_loss/channel_forcing/et/cat-2620700.csv new file mode 100644 index 000000000..82c461e3f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620700.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000102,0.000000,0.000000,0.000000,0.000000,0.000825,0.000174,0.000825,0.000170,0.000170,0.009111,0.376726,-0.002961,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000766,0.000170,0.000766,0.000053,0.000053,0.008514,0.373840,-0.002886,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000714,0.000167,0.000714,0.000000,0.000000,0.007968,0.371065,-0.002775,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000665,0.000163,0.000666,0.000000,0.000000,0.007465,0.368346,-0.002719,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000622,0.000160,0.000622,0.000000,0.000000,0.007004,0.365683,-0.002663,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000157,0.000582,0.000000,0.000000,0.006579,0.363075,-0.002609,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000545,0.000154,0.000545,0.000000,0.000000,0.006188,0.360519,-0.002556,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000511,0.000150,0.000512,0.000000,0.000000,0.005827,0.358016,-0.002503,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000481,0.000147,0.000481,0.000000,0.000000,0.005493,0.355563,-0.002452,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000452,0.000144,0.000453,0.000000,0.000000,0.005185,0.353161,-0.002402,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000426,0.000141,0.000427,0.000000,0.000000,0.004900,0.350808,-0.002353,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000403,0.000139,0.000404,0.000000,0.000000,0.004636,0.348502,-0.002305,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000380,0.000136,0.000382,0.000000,0.000000,0.004391,0.346244,-0.002258,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000360,0.000133,0.000362,0.000000,0.000000,0.004164,0.344032,-0.002212,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000341,0.000130,0.000343,0.000141,0.000141,0.003953,0.341727,-0.002305,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000324,0.000127,0.000326,0.000382,0.000382,0.003757,0.339233,-0.002494,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000307,0.000124,0.000310,0.000529,0.000529,0.003573,0.336645,-0.002588,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000292,0.000120,0.000295,0.000629,0.000629,0.003402,0.334013,-0.002632,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000278,0.000117,0.000281,0.000536,0.000536,0.003241,0.331525,-0.002488,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000377,0.000000,0.000000,0.000000,0.000004,0.000265,0.000115,0.000268,0.000499,0.000499,0.003091,0.329494,-0.002031,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000332,0.000000,0.000000,0.000000,0.000004,0.000252,0.000112,0.000256,0.000432,0.000432,0.002951,0.327525,-0.001969,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000413,0.000000,0.000000,0.000000,0.000004,0.000241,0.000110,0.000245,0.000348,0.000348,0.002820,0.325758,-0.001767,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000332,0.000000,0.000000,0.000000,0.000005,0.000230,0.000108,0.000235,0.000315,0.000315,0.002698,0.323981,-0.001778,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000377,0.000001,0.000001,0.000001,0.000005,0.000220,0.000106,0.000226,0.000239,0.000239,0.002584,0.322356,-0.001624,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000332,0.000001,0.000002,0.000001,0.000006,0.000211,0.000104,0.000218,0.000158,0.000158,0.002477,0.320800,-0.001557,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000651,0.000013,0.000022,0.000013,0.000006,0.000202,0.000102,0.000221,0.000071,0.000071,0.002377,0.319653,-0.001147,1.000000,0.000010 +26,2022-08-02 02:00:00,0.001037,0.000043,0.000068,0.000043,0.000006,0.000194,0.000102,0.000244,0.000000,0.000000,0.002285,0.318932,-0.000721,1.000000,0.000035 +27,2022-08-02 03:00:00,0.001059,0.000060,0.000071,0.000060,0.000007,0.000187,0.000101,0.000254,0.000000,0.000000,0.002199,0.318245,-0.000687,1.000000,0.000046 +28,2022-08-02 04:00:00,0.001065,0.000071,0.000072,0.000071,0.000007,0.000180,0.000100,0.000258,0.000000,0.000000,0.002119,0.317577,-0.000668,1.000000,0.000046 +29,2022-08-02 05:00:00,0.000959,0.000064,0.000058,0.000064,0.000008,0.000173,0.000099,0.000245,0.000000,0.000000,0.002044,0.316832,-0.000745,1.000000,0.000041 +30,2022-08-02 06:00:00,0.000982,0.000062,0.000061,0.000062,0.000008,0.000167,0.000098,0.000238,0.000000,0.000000,0.001975,0.316122,-0.000710,1.000000,0.000039 +31,2022-08-02 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000009,0.000162,0.000096,0.000197,0.000000,0.000000,0.001909,0.314525,-0.001598,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000009,0.000156,0.000094,0.000178,0.000000,0.000000,0.001847,0.312959,-0.001565,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000151,0.000092,0.000161,0.000000,0.000000,0.001788,0.311426,-0.001533,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000146,0.000090,0.000157,0.000000,0.000000,0.001732,0.309924,-0.001502,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000142,0.000088,0.000153,0.000000,0.000000,0.001678,0.308453,-0.001471,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000137,0.000087,0.000149,0.000000,0.000000,0.001627,0.307011,-0.001441,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000012,0.000133,0.000085,0.000146,0.000000,0.000000,0.001579,0.305697,-0.001315,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000129,0.000083,0.000142,0.000124,0.000124,0.001533,0.304288,-0.001409,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000126,0.000081,0.000139,0.000323,0.000323,0.001489,0.302713,-0.001575,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000122,0.000079,0.000136,0.000445,0.000445,0.001446,0.301051,-0.001662,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000099,0.000000,0.000000,0.000000,0.000014,0.000118,0.000077,0.000133,0.000534,0.000534,0.001404,0.299334,-0.001716,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000332,0.000000,0.000000,0.000000,0.000015,0.000115,0.000075,0.000130,0.000593,0.000593,0.001365,0.297823,-0.001511,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000049,0.000000,0.000000,0.000000,0.000016,0.000112,0.000073,0.000127,0.000531,0.000531,0.001326,0.296126,-0.001697,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000108,0.000071,0.000125,0.000484,0.000484,0.001288,0.294462,-0.001665,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000105,0.000069,0.000122,0.000476,0.000476,0.001252,0.292839,-0.001623,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000102,0.000067,0.000120,0.000416,0.000416,0.001216,0.291309,-0.001530,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000099,0.000065,0.000118,0.000310,0.000310,0.001182,0.289913,-0.001396,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000097,0.000064,0.000115,0.000188,0.000188,0.001149,0.288666,-0.001247,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000094,0.000062,0.000113,0.000042,0.000042,0.001118,0.287587,-0.001079,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000091,0.000061,0.000111,0.000000,0.000000,0.001087,0.286571,-0.001016,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000089,0.000060,0.000110,0.000000,0.000000,0.001058,0.285576,-0.000995,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000087,0.000059,0.000108,0.000000,0.000000,0.001030,0.284601,-0.000975,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000084,0.000057,0.000106,0.000000,0.000000,0.001003,0.283646,-0.000955,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000082,0.000056,0.000105,0.000000,0.000000,0.000977,0.282711,-0.000935,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000080,0.000055,0.000103,0.000000,0.000000,0.000952,0.281795,-0.000916,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000078,0.000054,0.000102,0.000000,0.000000,0.000929,0.280897,-0.000898,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000076,0.000053,0.000101,0.000000,0.000000,0.000905,0.280018,-0.000879,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000074,0.000052,0.000099,0.000000,0.000000,0.000883,0.279157,-0.000861,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000072,0.000051,0.000098,0.000000,0.000000,0.000861,0.278313,-0.000844,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000070,0.000050,0.000097,0.000000,0.000000,0.000841,0.277486,-0.000827,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000069,0.000049,0.000096,0.000000,0.000000,0.000821,0.276677,-0.000810,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000067,0.000047,0.000095,0.000136,0.000136,0.000801,0.275751,-0.000926,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000065,0.000046,0.000094,0.000383,0.000383,0.000781,0.274602,-0.001149,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000064,0.000044,0.000093,0.000527,0.000527,0.000762,0.273334,-0.001267,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000062,0.000043,0.000092,0.000629,0.000629,0.000743,0.271993,-0.001341,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000061,0.000041,0.000091,0.000623,0.000623,0.000723,0.270686,-0.001307,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000059,0.000040,0.000091,0.000570,0.000570,0.000704,0.269456,-0.001229,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000678,0.000001,0.000002,0.000001,0.000032,0.000057,0.000039,0.000091,0.000503,0.000503,0.000685,0.268979,-0.000477,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000189,0.000000,0.000000,0.000000,0.000033,0.000056,0.000038,0.000089,0.000462,0.000462,0.000667,0.268076,-0.000903,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000054,0.000037,0.000088,0.000411,0.000411,0.000650,0.267056,-0.001020,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000053,0.000035,0.000087,0.000307,0.000307,0.000632,0.266158,-0.000898,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000051,0.000035,0.000087,0.000197,0.000197,0.000615,0.265387,-0.000771,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000050,0.000034,0.000086,0.000056,0.000056,0.000599,0.264769,-0.000618,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000049,0.000033,0.000085,0.000000,0.000000,0.000583,0.264219,-0.000550,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000048,0.000032,0.000085,0.000000,0.000000,0.000568,0.263680,-0.000539,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000046,0.000032,0.000084,0.000000,0.000000,0.000554,0.263152,-0.000528,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000045,0.000031,0.000084,0.000000,0.000000,0.000539,0.262634,-0.000517,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000044,0.000030,0.000083,0.000000,0.000000,0.000526,0.262128,-0.000507,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000043,0.000030,0.000083,0.000000,0.000000,0.000513,0.261631,-0.000496,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000042,0.000029,0.000083,0.000000,0.000000,0.000500,0.261145,-0.000486,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000041,0.000029,0.000082,0.000000,0.000000,0.000488,0.260668,-0.000476,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000040,0.000028,0.000082,0.000000,0.000000,0.000476,0.260202,-0.000467,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000039,0.000027,0.000082,0.000000,0.000000,0.000465,0.259745,-0.000457,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000038,0.000027,0.000081,0.000000,0.000000,0.000454,0.259297,-0.000448,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000037,0.000026,0.000081,0.000000,0.000000,0.000443,0.258858,-0.000439,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000036,0.000026,0.000081,0.000133,0.000133,0.000433,0.258299,-0.000560,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000035,0.000025,0.000081,0.000376,0.000376,0.000422,0.257512,-0.000787,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000034,0.000024,0.000081,0.000527,0.000527,0.000411,0.256593,-0.000919,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000033,0.000022,0.000080,0.000632,0.000632,0.000400,0.255590,-0.001003,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000032,0.000021,0.000080,0.000704,0.000704,0.000389,0.254537,-0.001053,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000031,0.000020,0.000080,0.000643,0.000643,0.000377,0.253566,-0.000971,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000030,0.000019,0.000080,0.000568,0.000568,0.000365,0.252687,-0.000878,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000029,0.000018,0.000079,0.000505,0.000505,0.000353,0.251889,-0.000799,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000029,0.000017,0.000079,0.000439,0.000439,0.000341,0.251171,-0.000717,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000028,0.000016,0.000079,0.000328,0.000328,0.000330,0.250577,-0.000595,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000027,0.000015,0.000079,0.000201,0.000201,0.000319,0.250119,-0.000458,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000026,0.000015,0.000078,0.000065,0.000065,0.000308,0.249804,-0.000315,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000025,0.000015,0.000078,0.000000,0.000000,0.000298,0.249559,-0.000245,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000024,0.000014,0.000078,0.000000,0.000000,0.000288,0.249319,-0.000240,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000023,0.000014,0.000078,0.000000,0.000000,0.000279,0.249083,-0.000235,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000023,0.000014,0.000078,0.000000,0.000000,0.000270,0.248853,-0.000230,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000022,0.000014,0.000078,0.000000,0.000000,0.000262,0.248628,-0.000226,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000013,0.000078,0.000000,0.000000,0.000254,0.248406,-0.000221,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000013,0.000078,0.000000,0.000000,0.000247,0.248190,-0.000217,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000020,0.000013,0.000078,0.000000,0.000000,0.000239,0.247978,-0.000212,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000019,0.000012,0.000078,0.000000,0.000000,0.000232,0.247770,-0.000208,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000019,0.000012,0.000078,0.000000,0.000000,0.000226,0.247567,-0.000204,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000018,0.000012,0.000078,0.000000,0.000000,0.000220,0.247367,-0.000199,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000018,0.000012,0.000078,0.000000,0.000000,0.000213,0.247172,-0.000195,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000017,0.000011,0.000079,0.000145,0.000145,0.000208,0.246839,-0.000333,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000017,0.000011,0.000079,0.000381,0.000381,0.000201,0.246281,-0.000558,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000016,0.000010,0.000079,0.000529,0.000529,0.000195,0.245590,-0.000691,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000016,0.000009,0.000079,0.000634,0.000634,0.000188,0.244809,-0.000781,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000015,0.000008,0.000079,0.000613,0.000613,0.000181,0.244065,-0.000744,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000014,0.000007,0.000079,0.000568,0.000568,0.000173,0.243442,-0.000623,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000014,0.000006,0.000079,0.000498,0.000498,0.000166,0.242901,-0.000542,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000013,0.000006,0.000079,0.000460,0.000460,0.000158,0.242408,-0.000493,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000013,0.000005,0.000079,0.000393,0.000393,0.000151,0.241991,-0.000417,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000067,0.000012,0.000005,0.000079,0.000293,0.000293,0.000144,0.241680,-0.000311,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000011,0.000005,0.000079,0.000185,0.000185,0.000137,0.241482,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000316,0.000002,0.000004,0.000002,0.000068,0.000011,0.000005,0.000081,0.000067,0.000067,0.000131,0.241647,0.000165,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000399,0.000006,0.000009,0.000006,0.000069,0.000010,0.000005,0.000085,0.000000,0.000000,0.000126,0.241950,0.000303,1.000000,0.000005 +123,2022-08-06 03:00:00,0.000422,0.000008,0.000010,0.000008,0.000069,0.000010,0.000006,0.000088,0.000000,0.000000,0.000121,0.242268,0.000318,1.000000,0.000006 +124,2022-08-06 04:00:00,0.000344,0.000008,0.000007,0.000008,0.000070,0.000010,0.000006,0.000088,0.000000,0.000000,0.000117,0.242508,0.000239,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000344,0.000007,0.000007,0.000007,0.000071,0.000010,0.000006,0.000088,0.000000,0.000000,0.000114,0.242742,0.000234,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000400,0.000008,0.000009,0.000008,0.000071,0.000009,0.000007,0.000089,0.000000,0.000000,0.000111,0.243023,0.000282,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000072,0.000009,0.000006,0.000084,0.000000,0.000000,0.000109,0.242917,-0.000107,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000072,0.000009,0.000006,0.000083,0.000000,0.000000,0.000106,0.242812,-0.000105,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000009,0.000006,0.000082,0.000000,0.000000,0.000104,0.242710,-0.000102,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000008,0.000006,0.000082,0.000000,0.000000,0.000101,0.242609,-0.000100,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000008,0.000006,0.000082,0.000000,0.000000,0.000099,0.242511,-0.000098,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000008,0.000006,0.000083,0.000000,0.000000,0.000097,0.242415,-0.000096,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000008,0.000006,0.000083,0.000000,0.000000,0.000094,0.242320,-0.000094,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000008,0.000005,0.000084,0.000127,0.000127,0.000092,0.242103,-0.000217,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000007,0.000005,0.000084,0.000369,0.000369,0.000090,0.241654,-0.000449,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000007,0.000004,0.000084,0.000514,0.000514,0.000086,0.241072,-0.000582,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000007,0.000003,0.000085,0.000615,0.000615,0.000083,0.240403,-0.000670,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000007,0.000002,0.000085,0.000685,0.000685,0.000079,0.239678,-0.000724,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000002,0.000085,0.000644,0.000644,0.000074,0.239009,-0.000669,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000001,0.000085,0.000556,0.000556,0.000069,0.238440,-0.000569,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000000,0.000085,0.000510,0.000510,0.000064,0.237927,-0.000513,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000000,0.000085,0.000440,0.000440,0.000059,0.237487,-0.000440,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000005,0.000000,0.000085,0.000323,0.000322,0.000054,0.237165,-0.000322,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000000,0.000086,0.000193,0.000192,0.000050,0.236972,-0.000192,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000000,0.000086,0.000054,0.000053,0.000046,0.236919,-0.000053,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000000,0.000086,0.000000,0.000000,0.000043,0.236919,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000003,0.000000,0.000086,0.000000,0.000000,0.000040,0.236919,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000087,0.000000,0.000000,0.000037,0.236919,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000087,0.000000,0.000000,0.000034,0.236919,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000000,0.000087,0.000000,0.000000,0.000031,0.236919,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000000,0.000000,0.000029,0.236919,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000000,0.000000,0.000027,0.236919,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000000,0.000000,0.000024,0.236919,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000088,0.000000,0.000000,0.000023,0.236919,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000021,0.236919,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000089,0.000000,0.000000,0.000019,0.236919,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000090,0.000000,0.000000,0.000018,0.236919,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000123,0.000122,0.000016,0.236797,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000361,0.000359,0.000015,0.236438,-0.000359,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000091,0.000509,0.000504,0.000014,0.235934,-0.000504,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000614,0.000606,0.000013,0.235328,-0.000606,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000663,0.000652,0.000012,0.234676,-0.000652,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000619,0.000606,0.000011,0.234070,-0.000606,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000537,0.000523,0.000010,0.233547,-0.000523,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000507,0.000492,0.000009,0.233056,-0.000492,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000439,0.000425,0.000009,0.232631,-0.000425,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000093,0.000324,0.000312,0.000008,0.232319,-0.000312,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000167,0.000161,0.000007,0.232158,-0.000161,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000094,0.000026,0.000025,0.000007,0.232133,-0.000025,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000000,0.000000,0.000006,0.232133,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000000,0.000000,0.000006,0.232133,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000005,0.232133,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000005,0.232133,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000005,0.232133,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000004,0.232133,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000004,0.232133,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000004,0.232133,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.232133,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.232133,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.232133,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000003,0.232133,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000105,0.000101,0.000002,0.232031,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000350,0.000336,0.000002,0.231696,-0.000336,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000502,0.000481,0.000002,0.231215,-0.000481,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000607,0.000580,0.000002,0.230635,-0.000580,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000676,0.000642,0.000002,0.229993,-0.000642,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000631,0.000597,0.000002,0.229396,-0.000597,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000551,0.000519,0.000001,0.228877,-0.000519,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000511,0.000480,0.000001,0.228397,-0.000480,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000444,0.000415,0.000001,0.227983,-0.000415,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000322,0.000300,0.000001,0.227682,-0.000300,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000187,0.000174,0.000001,0.227508,-0.000174,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000038,0.000035,0.000001,0.227473,-0.000035,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000001,0.227473,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.227473,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.227473,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.227473,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.227473,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000117,0.000108,0.000000,0.227365,-0.000108,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620701.csv b/test/channel_loss/channel_forcing/et/cat-2620701.csv new file mode 100644 index 000000000..0bf0417cf --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620701.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000000,0.000819,0.000114,0.000819,0.000170,0.000170,0.009056,0.374181,-0.002635,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000756,0.000111,0.000756,0.000051,0.000051,0.008411,0.371660,-0.002521,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000699,0.000109,0.000699,0.000000,0.000000,0.007821,0.369243,-0.002417,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000648,0.000107,0.000648,0.000000,0.000000,0.007280,0.366876,-0.002366,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000601,0.000105,0.000601,0.000000,0.000000,0.006783,0.364560,-0.002316,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000558,0.000102,0.000558,0.000000,0.000000,0.006328,0.362292,-0.002268,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000519,0.000100,0.000519,0.000000,0.000000,0.005909,0.360073,-0.002220,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000484,0.000098,0.000484,0.000000,0.000000,0.005523,0.357900,-0.002173,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000451,0.000096,0.000452,0.000000,0.000000,0.005168,0.355773,-0.002127,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000421,0.000094,0.000422,0.000000,0.000000,0.004841,0.353690,-0.002082,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000394,0.000092,0.000395,0.000000,0.000000,0.004540,0.351652,-0.002038,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000369,0.000090,0.000370,0.000000,0.000000,0.004261,0.349657,-0.001995,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000346,0.000088,0.000347,0.000000,0.000000,0.004004,0.347703,-0.001953,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000324,0.000086,0.000326,0.000000,0.000000,0.003766,0.345791,-0.001912,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000305,0.000084,0.000307,0.000140,0.000140,0.003545,0.343783,-0.002009,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000287,0.000082,0.000289,0.000384,0.000384,0.003341,0.341578,-0.002205,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000270,0.000080,0.000272,0.000530,0.000530,0.003151,0.339275,-0.002302,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000254,0.000078,0.000257,0.000634,0.000634,0.002974,0.336920,-0.002355,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000240,0.000076,0.000243,0.000532,0.000532,0.002810,0.334714,-0.002206,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000350,0.000000,0.000000,0.000000,0.000003,0.000227,0.000074,0.000230,0.000495,0.000495,0.002657,0.332934,-0.001781,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000374,0.000000,0.000000,0.000000,0.000004,0.000214,0.000072,0.000218,0.000432,0.000432,0.002515,0.331277,-0.001657,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000429,0.000000,0.000000,0.000000,0.000004,0.000203,0.000071,0.000207,0.000342,0.000342,0.002383,0.329795,-0.001482,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000359,0.000000,0.000000,0.000000,0.000004,0.000192,0.000069,0.000196,0.000310,0.000310,0.002261,0.328309,-0.001486,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000385,0.000001,0.000001,0.000001,0.000005,0.000182,0.000068,0.000188,0.000236,0.000236,0.002146,0.326951,-0.001359,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000367,0.000002,0.000003,0.000002,0.000005,0.000173,0.000067,0.000180,0.000158,0.000158,0.002040,0.325678,-0.001272,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000799,0.000019,0.000033,0.000019,0.000005,0.000164,0.000066,0.000189,0.000070,0.000070,0.001942,0.324911,-0.000767,1.000000,0.000015 +26,2022-08-02 02:00:00,0.001169,0.000054,0.000083,0.000054,0.000006,0.000157,0.000066,0.000217,0.000000,0.000000,0.001851,0.324544,-0.000368,1.000000,0.000044 +27,2022-08-02 03:00:00,0.001137,0.000070,0.000078,0.000070,0.000006,0.000149,0.000065,0.000226,0.000000,0.000000,0.001767,0.324156,-0.000388,1.000000,0.000052 +28,2022-08-02 04:00:00,0.001134,0.000079,0.000078,0.000079,0.000006,0.000143,0.000065,0.000228,0.000000,0.000000,0.001689,0.323774,-0.000381,1.000000,0.000051 +29,2022-08-02 05:00:00,0.001015,0.000070,0.000063,0.000070,0.000007,0.000137,0.000064,0.000213,0.000000,0.000000,0.001617,0.323299,-0.000475,1.000000,0.000044 +30,2022-08-02 06:00:00,0.001043,0.000068,0.000066,0.000068,0.000007,0.000131,0.000064,0.000206,0.000000,0.000000,0.001550,0.322858,-0.000441,1.000000,0.000042 +31,2022-08-02 07:00:00,0.000000,0.000029,0.000000,0.000029,0.000008,0.000125,0.000063,0.000162,0.000000,0.000000,0.001487,0.321470,-0.001388,1.000000,0.000013 +32,2022-08-02 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000008,0.000120,0.000061,0.000142,0.000000,0.000000,0.001428,0.320111,-0.001359,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000116,0.000060,0.000124,0.000000,0.000000,0.001372,0.318781,-0.001330,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000111,0.000059,0.000120,0.000000,0.000000,0.001320,0.317479,-0.001302,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000107,0.000058,0.000117,0.000000,0.000000,0.001271,0.316204,-0.001275,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000103,0.000056,0.000113,0.000000,0.000000,0.001224,0.314956,-0.001248,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000011,0.000099,0.000055,0.000110,0.000000,0.000000,0.001180,0.313832,-0.001124,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000104,0.000000,0.000000,0.000000,0.000011,0.000096,0.000054,0.000107,0.000125,0.000125,0.001138,0.312614,-0.001218,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000104,0.000000,0.000000,0.000000,0.000012,0.000092,0.000053,0.000104,0.000325,0.000325,0.001099,0.311226,-0.001388,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000101,0.000000,0.000000,0.000000,0.000012,0.000089,0.000051,0.000101,0.000447,0.000447,0.001061,0.309744,-0.001482,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000101,0.000000,0.000000,0.000000,0.000013,0.000086,0.000050,0.000099,0.000536,0.000536,0.001024,0.308207,-0.001537,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000273,0.000000,0.000000,0.000000,0.000013,0.000083,0.000048,0.000096,0.000593,0.000593,0.000990,0.306815,-0.001392,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000045,0.000000,0.000000,0.000000,0.000014,0.000080,0.000047,0.000094,0.000532,0.000532,0.000956,0.305288,-0.001527,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000078,0.000045,0.000092,0.000485,0.000485,0.000924,0.303796,-0.001492,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000075,0.000044,0.000090,0.000479,0.000479,0.000893,0.302341,-0.001455,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000072,0.000043,0.000088,0.000417,0.000417,0.000864,0.300978,-0.001363,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000070,0.000042,0.000086,0.000313,0.000313,0.000835,0.299745,-0.001233,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000068,0.000040,0.000084,0.000189,0.000189,0.000808,0.298660,-0.001086,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000066,0.000040,0.000083,0.000041,0.000041,0.000782,0.297742,-0.000918,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000063,0.000039,0.000081,0.000000,0.000000,0.000757,0.296883,-0.000858,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000061,0.000038,0.000080,0.000000,0.000000,0.000734,0.296043,-0.000840,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000060,0.000037,0.000078,0.000000,0.000000,0.000711,0.295220,-0.000823,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000058,0.000036,0.000077,0.000000,0.000000,0.000690,0.294415,-0.000805,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000056,0.000036,0.000076,0.000000,0.000000,0.000669,0.293627,-0.000788,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000054,0.000035,0.000075,0.000000,0.000000,0.000650,0.292855,-0.000772,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000053,0.000034,0.000074,0.000000,0.000000,0.000631,0.292100,-0.000755,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000051,0.000033,0.000073,0.000000,0.000000,0.000613,0.291360,-0.000739,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000050,0.000033,0.000072,0.000000,0.000000,0.000596,0.290636,-0.000724,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000048,0.000032,0.000071,0.000000,0.000000,0.000579,0.289928,-0.000709,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000047,0.000031,0.000071,0.000000,0.000000,0.000564,0.289234,-0.000694,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000046,0.000031,0.000070,0.000000,0.000000,0.000548,0.288555,-0.000679,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000045,0.000030,0.000069,0.000135,0.000135,0.000534,0.287758,-0.000797,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000043,0.000029,0.000069,0.000386,0.000386,0.000519,0.286732,-0.001026,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000042,0.000028,0.000068,0.000531,0.000531,0.000505,0.285587,-0.001146,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000041,0.000027,0.000067,0.000636,0.000636,0.000490,0.284362,-0.001224,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000040,0.000025,0.000067,0.000621,0.000621,0.000476,0.283178,-0.001184,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000039,0.000024,0.000066,0.000568,0.000568,0.000462,0.282071,-0.001107,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000607,0.000000,0.000001,0.000000,0.000028,0.000037,0.000024,0.000066,0.000503,0.000503,0.000448,0.281644,-0.000427,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000166,0.000000,0.000000,0.000000,0.000029,0.000036,0.000023,0.000065,0.000469,0.000469,0.000435,0.280829,-0.000815,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000035,0.000022,0.000065,0.000411,0.000411,0.000422,0.279925,-0.000904,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000034,0.000022,0.000064,0.000306,0.000306,0.000409,0.279143,-0.000782,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000033,0.000021,0.000064,0.000200,0.000200,0.000397,0.278481,-0.000662,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000032,0.000020,0.000064,0.000055,0.000055,0.000385,0.277975,-0.000506,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000031,0.000020,0.000063,0.000000,0.000000,0.000374,0.277534,-0.000442,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000030,0.000020,0.000063,0.000000,0.000000,0.000363,0.277101,-0.000432,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000029,0.000019,0.000063,0.000000,0.000000,0.000353,0.276678,-0.000423,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000029,0.000019,0.000062,0.000000,0.000000,0.000343,0.276264,-0.000414,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000028,0.000018,0.000062,0.000000,0.000000,0.000333,0.275859,-0.000405,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000027,0.000018,0.000062,0.000000,0.000000,0.000324,0.275462,-0.000397,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000026,0.000018,0.000062,0.000000,0.000000,0.000315,0.275073,-0.000389,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000026,0.000017,0.000062,0.000000,0.000000,0.000307,0.274693,-0.000380,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000025,0.000017,0.000062,0.000000,0.000000,0.000299,0.274320,-0.000372,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000024,0.000016,0.000062,0.000000,0.000000,0.000291,0.273956,-0.000365,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000024,0.000016,0.000062,0.000000,0.000000,0.000283,0.273599,-0.000357,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000023,0.000016,0.000062,0.000000,0.000000,0.000276,0.273250,-0.000349,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000022,0.000015,0.000062,0.000131,0.000131,0.000269,0.272779,-0.000471,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000022,0.000015,0.000062,0.000378,0.000378,0.000262,0.272077,-0.000702,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000021,0.000014,0.000062,0.000531,0.000531,0.000254,0.271240,-0.000837,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000021,0.000013,0.000062,0.000637,0.000637,0.000247,0.270317,-0.000924,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000020,0.000012,0.000062,0.000707,0.000707,0.000239,0.269344,-0.000973,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000019,0.000011,0.000062,0.000647,0.000647,0.000231,0.268452,-0.000892,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000019,0.000010,0.000062,0.000573,0.000573,0.000222,0.267650,-0.000802,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000018,0.000010,0.000061,0.000513,0.000513,0.000214,0.266924,-0.000726,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000017,0.000009,0.000061,0.000447,0.000447,0.000206,0.266278,-0.000646,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000017,0.000008,0.000061,0.000332,0.000332,0.000198,0.265758,-0.000520,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000016,0.000008,0.000061,0.000205,0.000205,0.000190,0.265373,-0.000385,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000015,0.000008,0.000061,0.000063,0.000063,0.000183,0.265136,-0.000237,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000015,0.000008,0.000061,0.000000,0.000000,0.000176,0.264965,-0.000171,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000014,0.000008,0.000061,0.000000,0.000000,0.000169,0.264798,-0.000167,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000014,0.000007,0.000061,0.000000,0.000000,0.000163,0.264634,-0.000164,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000013,0.000007,0.000061,0.000000,0.000000,0.000157,0.264474,-0.000160,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000013,0.000007,0.000062,0.000000,0.000000,0.000152,0.264317,-0.000157,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000012,0.000007,0.000062,0.000000,0.000000,0.000146,0.264164,-0.000154,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000012,0.000007,0.000062,0.000000,0.000000,0.000141,0.264013,-0.000150,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000011,0.000007,0.000062,0.000000,0.000000,0.000137,0.263866,-0.000147,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000011,0.000007,0.000062,0.000000,0.000000,0.000132,0.263722,-0.000144,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000011,0.000006,0.000062,0.000000,0.000000,0.000128,0.263581,-0.000141,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000010,0.000006,0.000063,0.000000,0.000000,0.000124,0.263443,-0.000138,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000010,0.000006,0.000063,0.000000,0.000000,0.000120,0.263308,-0.000135,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000010,0.000006,0.000063,0.000145,0.000145,0.000116,0.263034,-0.000274,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000009,0.000005,0.000063,0.000384,0.000384,0.000112,0.262532,-0.000502,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000009,0.000005,0.000063,0.000534,0.000534,0.000108,0.261894,-0.000638,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000009,0.000004,0.000064,0.000640,0.000640,0.000103,0.261165,-0.000729,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000008,0.000003,0.000064,0.000619,0.000619,0.000098,0.260472,-0.000693,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000042,0.000000,0.000000,0.000000,0.000056,0.000008,0.000003,0.000064,0.000573,0.000573,0.000093,0.259879,-0.000593,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000042,0.000000,0.000000,0.000000,0.000057,0.000007,0.000002,0.000064,0.000505,0.000505,0.000088,0.259366,-0.000513,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000044,0.000000,0.000000,0.000000,0.000057,0.000007,0.000002,0.000064,0.000471,0.000471,0.000083,0.258898,-0.000467,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000058,0.000007,0.000001,0.000064,0.000402,0.000402,0.000078,0.258508,-0.000390,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000058,0.000006,0.000001,0.000064,0.000298,0.000298,0.000073,0.258242,-0.000266,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000042,0.000000,0.000000,0.000000,0.000059,0.000006,0.000001,0.000065,0.000190,0.000190,0.000068,0.258072,-0.000170,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000269,0.000001,0.000002,0.000001,0.000059,0.000005,0.000001,0.000066,0.000066,0.000066,0.000064,0.258246,0.000175,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000417,0.000006,0.000010,0.000006,0.000060,0.000005,0.000002,0.000071,0.000000,0.000000,0.000061,0.258619,0.000373,1.000000,0.000005 +123,2022-08-06 03:00:00,0.000322,0.000006,0.000006,0.000006,0.000060,0.000005,0.000002,0.000071,0.000000,0.000000,0.000058,0.258896,0.000276,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000253,0.000005,0.000004,0.000005,0.000061,0.000005,0.000002,0.000071,0.000000,0.000000,0.000055,0.259100,0.000205,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000296,0.000005,0.000005,0.000005,0.000061,0.000004,0.000002,0.000071,0.000000,0.000000,0.000053,0.259342,0.000241,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000313,0.000005,0.000005,0.000005,0.000062,0.000004,0.000002,0.000071,0.000000,0.000000,0.000051,0.259594,0.000253,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000062,0.000004,0.000002,0.000069,0.000000,0.000000,0.000050,0.259540,-0.000054,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000063,0.000004,0.000002,0.000068,0.000000,0.000000,0.000048,0.259487,-0.000053,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000004,0.000002,0.000067,0.000000,0.000000,0.000046,0.259436,-0.000052,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000004,0.000002,0.000068,0.000000,0.000000,0.000045,0.259385,-0.000051,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000004,0.000002,0.000068,0.000000,0.000000,0.000044,0.259336,-0.000050,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000004,0.000002,0.000068,0.000000,0.000000,0.000042,0.259287,-0.000048,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000003,0.000002,0.000069,0.000000,0.000000,0.000041,0.259240,-0.000047,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000003,0.000002,0.000069,0.000127,0.000127,0.000040,0.259068,-0.000171,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000003,0.000002,0.000069,0.000374,0.000374,0.000038,0.258659,-0.000409,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000003,0.000001,0.000070,0.000518,0.000518,0.000036,0.258118,-0.000541,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000003,0.000000,0.000070,0.000622,0.000622,0.000034,0.257487,-0.000631,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000003,0.000000,0.000070,0.000692,0.000692,0.000031,0.256795,-0.000692,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000002,0.000000,0.000071,0.000647,0.000646,0.000029,0.256149,-0.000646,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000000,0.000071,0.000560,0.000556,0.000027,0.255593,-0.000556,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000000,0.000071,0.000514,0.000509,0.000024,0.255084,-0.000509,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000000,0.000071,0.000441,0.000435,0.000023,0.254649,-0.000435,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000000,0.000072,0.000321,0.000315,0.000021,0.254333,-0.000315,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000000,0.000072,0.000197,0.000193,0.000019,0.254140,-0.000193,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000052,0.000051,0.000018,0.254089,-0.000051,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000073,0.000000,0.000000,0.000016,0.254089,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000000,0.000000,0.000015,0.254089,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000000,0.000000,0.000014,0.254089,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000000,0.000000,0.000013,0.254089,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000000,0.000000,0.000012,0.254089,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000074,0.000000,0.000000,0.000011,0.254089,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000010,0.254089,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000009,0.254089,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000009,0.254089,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000008,0.254089,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000076,0.000000,0.000000,0.000007,0.254089,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000000,0.000000,0.000007,0.254089,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000122,0.000120,0.000006,0.253969,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000364,0.000356,0.000006,0.253613,-0.000356,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000078,0.000512,0.000500,0.000005,0.253113,-0.000500,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000618,0.000602,0.000005,0.252512,-0.000602,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000658,0.000638,0.000005,0.251874,-0.000638,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000079,0.000613,0.000591,0.000004,0.251282,-0.000591,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000542,0.000520,0.000004,0.250762,-0.000520,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000509,0.000487,0.000004,0.250275,-0.000487,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000437,0.000417,0.000003,0.249858,-0.000417,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000322,0.000306,0.000003,0.249552,-0.000306,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000081,0.000167,0.000159,0.000003,0.249394,-0.000159,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000026,0.000025,0.000003,0.249369,-0.000025,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000082,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000083,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000002,0.249369,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000001,0.249369,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000105,0.000100,0.000001,0.249270,-0.000100,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000353,0.000335,0.000001,0.248935,-0.000335,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000505,0.000477,0.000001,0.248458,-0.000477,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000612,0.000576,0.000001,0.247882,-0.000576,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000677,0.000635,0.000001,0.247247,-0.000635,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000637,0.000594,0.000001,0.246653,-0.000594,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000558,0.000518,0.000001,0.246135,-0.000518,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000088,0.000513,0.000475,0.000001,0.245661,-0.000475,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000443,0.000409,0.000000,0.245252,-0.000409,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000321,0.000295,0.000000,0.244957,-0.000295,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000187,0.000171,0.000000,0.244786,-0.000171,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000034,0.000031,0.000000,0.244754,-0.000031,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.244754,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000115,0.000105,0.000000,0.244649,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620702.csv b/test/channel_loss/channel_forcing/et/cat-2620702.csv new file mode 100644 index 000000000..67cb34a5b --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620702.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000066,0.000000,0.000000,0.000000,0.000000,0.000816,0.000071,0.000816,0.000172,0.000172,0.009017,0.376417,-0.001494,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000070,0.000749,0.000052,0.000052,0.008337,0.375011,-0.001406,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000689,0.000068,0.000689,0.000000,0.000000,0.007716,0.373691,-0.001321,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000066,0.000635,0.000000,0.000000,0.007147,0.372402,-0.001289,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000586,0.000065,0.000586,0.000000,0.000000,0.006625,0.371144,-0.001258,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000541,0.000063,0.000541,0.000000,0.000000,0.006147,0.369917,-0.001227,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000501,0.000062,0.000501,0.000000,0.000000,0.005708,0.368720,-0.001197,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000463,0.000060,0.000464,0.000000,0.000000,0.005305,0.367551,-0.001168,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000430,0.000059,0.000430,0.000000,0.000000,0.004934,0.366411,-0.001140,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000399,0.000057,0.000399,0.000000,0.000000,0.004592,0.365299,-0.001113,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000370,0.000056,0.000371,0.000000,0.000000,0.004278,0.364213,-0.001086,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000344,0.000054,0.000345,0.000000,0.000000,0.003988,0.363154,-0.001059,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000320,0.000053,0.000321,0.000000,0.000000,0.003721,0.362120,-0.001034,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000298,0.000052,0.000299,0.000000,0.000000,0.003474,0.361112,-0.001009,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000278,0.000050,0.000279,0.000139,0.000139,0.003246,0.359992,-0.001120,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000260,0.000049,0.000261,0.000383,0.000383,0.003035,0.358661,-0.001330,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000243,0.000047,0.000244,0.000528,0.000528,0.002840,0.357221,-0.001440,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000227,0.000045,0.000228,0.000641,0.000641,0.002658,0.355705,-0.001516,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000212,0.000043,0.000213,0.000537,0.000537,0.002489,0.354328,-0.001378,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000557,0.000000,0.000000,0.000000,0.000002,0.000198,0.000042,0.000200,0.000502,0.000502,0.002333,0.353561,-0.000767,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000656,0.000001,0.000003,0.000001,0.000002,0.000186,0.000041,0.000189,0.000447,0.000447,0.002189,0.352960,-0.000601,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000616,0.000003,0.000004,0.000003,0.000002,0.000174,0.000041,0.000179,0.000345,0.000345,0.002055,0.352434,-0.000526,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000556,0.000004,0.000004,0.000004,0.000002,0.000164,0.000040,0.000170,0.000306,0.000306,0.001932,0.351900,-0.000533,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000524,0.000005,0.000005,0.000005,0.000002,0.000154,0.000039,0.000161,0.000232,0.000232,0.001817,0.351419,-0.000481,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000507,0.000006,0.000007,0.000006,0.000003,0.000145,0.000039,0.000153,0.000160,0.000160,0.001712,0.351001,-0.000418,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000972,0.000028,0.000047,0.000028,0.000003,0.000136,0.000039,0.000168,0.000070,0.000070,0.001614,0.351097,0.000095,1.000000,0.000022 +26,2022-08-02 02:00:00,0.001206,0.000058,0.000082,0.000058,0.000003,0.000129,0.000040,0.000190,0.000000,0.000000,0.001525,0.351452,0.000355,1.000000,0.000046 +27,2022-08-02 03:00:00,0.001208,0.000075,0.000082,0.000075,0.000003,0.000122,0.000040,0.000200,0.000000,0.000000,0.001443,0.351800,0.000348,1.000000,0.000053 +28,2022-08-02 04:00:00,0.001193,0.000081,0.000080,0.000081,0.000003,0.000115,0.000040,0.000200,0.000000,0.000000,0.001368,0.352127,0.000327,1.000000,0.000053 +29,2022-08-02 05:00:00,0.001102,0.000074,0.000069,0.000074,0.000004,0.000109,0.000041,0.000187,0.000000,0.000000,0.001300,0.352369,0.000241,1.000000,0.000047 +30,2022-08-02 06:00:00,0.001104,0.000071,0.000069,0.000071,0.000004,0.000104,0.000041,0.000179,0.000000,0.000000,0.001237,0.352606,0.000237,1.000000,0.000045 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000004,0.000099,0.000040,0.000134,0.000000,0.000000,0.001178,0.351828,-0.000778,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000004,0.000094,0.000039,0.000113,0.000000,0.000000,0.001122,0.351068,-0.000759,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000090,0.000038,0.000095,0.000000,0.000000,0.001070,0.350327,-0.000741,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000086,0.000037,0.000091,0.000000,0.000000,0.001022,0.349604,-0.000723,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000082,0.000036,0.000087,0.000000,0.000000,0.000976,0.348899,-0.000706,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000078,0.000035,0.000084,0.000000,0.000000,0.000933,0.348210,-0.000688,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000006,0.000075,0.000035,0.000081,0.000000,0.000000,0.000893,0.347636,-0.000575,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000072,0.000034,0.000078,0.000126,0.000126,0.000855,0.347043,-0.000593,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000069,0.000033,0.000075,0.000323,0.000323,0.000819,0.346272,-0.000770,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000006,0.000066,0.000032,0.000072,0.000453,0.000453,0.000785,0.345303,-0.000969,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000007,0.000063,0.000030,0.000070,0.000546,0.000546,0.000752,0.344267,-0.001036,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000312,0.000000,0.000000,0.000000,0.000007,0.000060,0.000029,0.000067,0.000607,0.000607,0.000721,0.343403,-0.000864,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000061,0.000000,0.000000,0.000000,0.000007,0.000058,0.000028,0.000065,0.000549,0.000549,0.000691,0.342371,-0.001031,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000055,0.000027,0.000063,0.000503,0.000503,0.000662,0.341350,-0.001021,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000027,0.000000,0.000000,0.000000,0.000008,0.000053,0.000025,0.000061,0.000495,0.000495,0.000635,0.340388,-0.000962,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000027,0.000000,0.000000,0.000000,0.000008,0.000051,0.000024,0.000059,0.000422,0.000422,0.000608,0.339520,-0.000868,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000049,0.000023,0.000057,0.000322,0.000322,0.000583,0.338745,-0.000775,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000043,0.000000,0.000000,0.000000,0.000009,0.000047,0.000023,0.000055,0.000194,0.000194,0.000558,0.338156,-0.000589,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000041,0.000000,0.000000,0.000000,0.000009,0.000045,0.000022,0.000054,0.000042,0.000042,0.000536,0.337726,-0.000430,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000041,0.000000,0.000000,0.000000,0.000009,0.000043,0.000022,0.000052,0.000000,0.000000,0.000514,0.337348,-0.000378,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000041,0.000000,0.000000,0.000000,0.000010,0.000041,0.000021,0.000051,0.000000,0.000000,0.000494,0.336979,-0.000369,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000041,0.000000,0.000000,0.000000,0.000010,0.000040,0.000021,0.000050,0.000000,0.000000,0.000475,0.336619,-0.000360,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000056,0.000000,0.000000,0.000000,0.000010,0.000038,0.000020,0.000049,0.000000,0.000000,0.000457,0.336282,-0.000337,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000062,0.000000,0.000000,0.000000,0.000011,0.000037,0.000020,0.000047,0.000000,0.000000,0.000440,0.335959,-0.000323,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000035,0.000019,0.000046,0.000000,0.000000,0.000424,0.335583,-0.000375,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000034,0.000019,0.000045,0.000000,0.000000,0.000408,0.335217,-0.000366,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000033,0.000018,0.000044,0.000000,0.000000,0.000394,0.334860,-0.000357,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000032,0.000018,0.000044,0.000000,0.000000,0.000380,0.334512,-0.000349,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000031,0.000017,0.000043,0.000000,0.000000,0.000367,0.334172,-0.000340,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000030,0.000017,0.000042,0.000000,0.000000,0.000354,0.333840,-0.000332,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000029,0.000017,0.000041,0.000000,0.000000,0.000342,0.333516,-0.000324,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000028,0.000016,0.000041,0.000136,0.000136,0.000331,0.333067,-0.000449,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000027,0.000015,0.000040,0.000383,0.000383,0.000319,0.332388,-0.000679,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000014,0.000039,0.000536,0.000536,0.000308,0.331577,-0.000811,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000013,0.000039,0.000645,0.000645,0.000296,0.330678,-0.000899,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000024,0.000012,0.000038,0.000631,0.000631,0.000284,0.329815,-0.000863,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000043,0.000000,0.000000,0.000000,0.000015,0.000023,0.000011,0.000037,0.000576,0.000576,0.000273,0.329069,-0.000746,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000416,0.000000,0.000000,0.000000,0.000015,0.000022,0.000011,0.000037,0.000519,0.000519,0.000261,0.328760,-0.000309,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000015,0.000021,0.000010,0.000036,0.000476,0.000476,0.000250,0.328217,-0.000542,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000027,0.000000,0.000000,0.000000,0.000016,0.000020,0.000009,0.000036,0.000409,0.000409,0.000240,0.327657,-0.000560,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000019,0.000009,0.000035,0.000308,0.000308,0.000229,0.327183,-0.000474,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000018,0.000008,0.000034,0.000205,0.000205,0.000219,0.326820,-0.000363,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000017,0.000008,0.000034,0.000056,0.000056,0.000209,0.326612,-0.000208,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000017,0.000008,0.000034,0.000000,0.000000,0.000200,0.326463,-0.000149,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000016,0.000007,0.000033,0.000000,0.000000,0.000192,0.326318,-0.000145,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000015,0.000007,0.000033,0.000000,0.000000,0.000184,0.326176,-0.000142,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000007,0.000032,0.000000,0.000000,0.000176,0.326038,-0.000138,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000007,0.000032,0.000000,0.000000,0.000169,0.325903,-0.000135,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000007,0.000032,0.000000,0.000000,0.000162,0.325771,-0.000132,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000007,0.000032,0.000000,0.000000,0.000156,0.325643,-0.000128,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000006,0.000032,0.000000,0.000000,0.000150,0.325518,-0.000125,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000006,0.000031,0.000000,0.000000,0.000144,0.325395,-0.000122,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000031,0.000000,0.000000,0.000139,0.325276,-0.000119,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000006,0.000031,0.000000,0.000000,0.000133,0.325159,-0.000116,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000006,0.000031,0.000000,0.000000,0.000129,0.325046,-0.000114,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000006,0.000031,0.000132,0.000132,0.000124,0.324806,-0.000239,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000005,0.000031,0.000375,0.000375,0.000119,0.324336,-0.000471,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000031,0.000531,0.000531,0.000114,0.323724,-0.000612,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000003,0.000030,0.000646,0.000646,0.000108,0.323015,-0.000709,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000002,0.000030,0.000721,0.000721,0.000102,0.322250,-0.000765,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000001,0.000030,0.000675,0.000675,0.000095,0.321549,-0.000701,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000001,0.000030,0.000594,0.000594,0.000088,0.320943,-0.000606,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000000,0.000029,0.000531,0.000531,0.000082,0.320412,-0.000531,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000000,0.000029,0.000453,0.000452,0.000075,0.319960,-0.000452,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000000,0.000029,0.000340,0.000339,0.000069,0.319621,-0.000339,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000211,0.000210,0.000064,0.319411,-0.000210,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000062,0.000061,0.000059,0.319350,-0.000061,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000000,0.000000,0.000055,0.319350,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000029,0.000000,0.000000,0.000050,0.319350,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000000,0.000000,0.000047,0.319350,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000000,0.000000,0.000043,0.319350,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000029,0.000000,0.000000,0.000040,0.319350,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000037,0.319350,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000034,0.319350,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000031,0.319350,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000029,0.000000,0.000000,0.000029,0.319350,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000027,0.319350,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000025,0.319350,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000023,0.319350,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000147,0.000146,0.000021,0.319204,-0.000146,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000029,0.000382,0.000380,0.000019,0.318824,-0.000380,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000535,0.000531,0.000018,0.318293,-0.000531,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000030,0.000648,0.000641,0.000016,0.317652,-0.000641,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000030,0.000638,0.000629,0.000015,0.317023,-0.000629,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000590,0.000580,0.000014,0.316443,-0.000580,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000526,0.000516,0.000013,0.315928,-0.000516,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000494,0.000483,0.000012,0.315444,-0.000483,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000409,0.000398,0.000011,0.315046,-0.000398,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000055,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000308,0.000301,0.000010,0.314799,-0.000246,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000201,0.000195,0.000009,0.314604,-0.000195,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000186,0.000000,0.000001,0.000000,0.000030,0.000001,0.000000,0.000031,0.000067,0.000067,0.000009,0.314723,0.000119,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000314,0.000003,0.000005,0.000003,0.000030,0.000001,0.000000,0.000034,0.000000,0.000000,0.000008,0.315032,0.000309,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000261,0.000004,0.000004,0.000004,0.000031,0.000001,0.000000,0.000035,0.000000,0.000000,0.000007,0.315289,0.000257,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000200,0.000003,0.000002,0.000003,0.000031,0.000001,0.000000,0.000035,0.000000,0.000000,0.000007,0.315487,0.000198,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000229,0.000003,0.000003,0.000003,0.000031,0.000001,0.000000,0.000035,0.000000,0.000000,0.000006,0.315713,0.000227,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000205,0.000002,0.000002,0.000002,0.000031,0.000000,0.000000,0.000034,0.000000,0.000000,0.000006,0.315916,0.000203,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.315916,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.315916,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000005,0.315916,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.315916,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.315916,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.315916,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.315916,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000128,0.000125,0.000003,0.315791,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000375,0.000367,0.000003,0.315424,-0.000367,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000519,0.000506,0.000003,0.314918,-0.000506,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000631,0.000613,0.000002,0.314305,-0.000613,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000710,0.000689,0.000002,0.313616,-0.000689,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000670,0.000647,0.000002,0.312969,-0.000647,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000587,0.000565,0.000002,0.312404,-0.000565,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000524,0.000503,0.000002,0.311901,-0.000503,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000440,0.000421,0.000002,0.311481,-0.000421,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000327,0.000312,0.000001,0.311168,-0.000312,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000200,0.000190,0.000001,0.310978,-0.000190,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000052,0.000049,0.000001,0.310929,-0.000049,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310929,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.310929,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000123,0.000117,0.000000,0.310812,-0.000117,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000361,0.000343,0.000000,0.310469,-0.000343,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000516,0.000490,0.000000,0.309978,-0.000490,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000625,0.000592,0.000000,0.309387,-0.000592,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000663,0.000627,0.000000,0.308760,-0.000627,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000621,0.000585,0.000000,0.308175,-0.000585,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000558,0.000523,0.000000,0.307651,-0.000523,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000522,0.000489,0.000000,0.307162,-0.000489,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000436,0.000407,0.000000,0.306755,-0.000407,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000324,0.000302,0.000000,0.306453,-0.000302,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000170,0.000158,0.000000,0.306295,-0.000158,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000027,0.000025,0.000000,0.306270,-0.000025,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306270,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306272,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306272,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306273,0.000001,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000105,0.000098,0.000000,0.306175,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000350,0.000324,0.000000,0.305851,-0.000324,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000508,0.000470,0.000000,0.305380,-0.000470,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000620,0.000573,0.000000,0.304807,-0.000573,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000694,0.000640,0.000000,0.304168,-0.000640,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000658,0.000604,0.000000,0.303564,-0.000604,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000585,0.000535,0.000000,0.303029,-0.000535,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000523,0.000477,0.000000,0.302551,-0.000477,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000444,0.000404,0.000000,0.302147,-0.000404,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000327,0.000297,0.000000,0.301850,-0.000297,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000190,0.000172,0.000000,0.301678,-0.000172,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000033,0.000030,0.000000,0.301648,-0.000030,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301648,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000115,0.000104,0.000000,0.301544,-0.000104,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620703.csv b/test/channel_loss/channel_forcing/et/cat-2620703.csv new file mode 100644 index 000000000..bb91f7550 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620703.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000813,0.000048,0.000813,0.000172,0.000172,0.008996,0.377799,-0.001382,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000047,0.000745,0.000052,0.000052,0.008297,0.376506,-0.001293,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000046,0.000684,0.000000,0.000000,0.007659,0.375294,-0.001212,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000045,0.000628,0.000000,0.000000,0.007075,0.374112,-0.001182,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000044,0.000578,0.000000,0.000000,0.006541,0.372958,-0.001154,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000043,0.000532,0.000000,0.000000,0.006051,0.371832,-0.001126,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000042,0.000491,0.000000,0.000000,0.005602,0.370732,-0.001099,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000041,0.000453,0.000000,0.000000,0.005190,0.369660,-0.001073,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000040,0.000419,0.000000,0.000000,0.004811,0.368613,-0.001047,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000387,0.000039,0.000387,0.000000,0.000000,0.004462,0.367591,-0.001022,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000358,0.000038,0.000358,0.000000,0.000000,0.004142,0.366594,-0.000997,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000037,0.000332,0.000000,0.000000,0.003847,0.365621,-0.000973,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000307,0.000036,0.000308,0.000000,0.000000,0.003576,0.364671,-0.000950,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000035,0.000286,0.000000,0.000000,0.003325,0.363744,-0.000927,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000265,0.000034,0.000266,0.000139,0.000139,0.003095,0.362703,-0.001040,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000033,0.000247,0.000385,0.000385,0.002881,0.361448,-0.001255,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000229,0.000032,0.000230,0.000532,0.000532,0.002684,0.360080,-0.001368,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000213,0.000030,0.000214,0.000646,0.000646,0.002501,0.358632,-0.001447,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000198,0.000029,0.000200,0.000538,0.000538,0.002332,0.357326,-0.001307,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000611,0.000001,0.000001,0.000001,0.000002,0.000185,0.000028,0.000187,0.000504,0.000504,0.002176,0.356679,-0.000647,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000642,0.000002,0.000003,0.000002,0.000002,0.000172,0.000028,0.000176,0.000450,0.000450,0.002031,0.356128,-0.000551,1.000000,0.000002 +21,2022-08-01 21:00:00,0.000705,0.000007,0.000010,0.000007,0.000002,0.000161,0.000028,0.000169,0.000350,0.000350,0.001898,0.355744,-0.000385,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000620,0.000007,0.000008,0.000007,0.000002,0.000150,0.000027,0.000160,0.000308,0.000308,0.001775,0.355328,-0.000416,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000506,0.000007,0.000006,0.000007,0.000002,0.000140,0.000027,0.000150,0.000231,0.000231,0.001662,0.354888,-0.000440,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000514,0.000009,0.000010,0.000009,0.000002,0.000131,0.000026,0.000143,0.000159,0.000159,0.001557,0.354533,-0.000355,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001001,0.000041,0.000067,0.000041,0.000003,0.000123,0.000027,0.000166,0.000070,0.000070,0.001460,0.354693,0.000160,1.000000,0.000032 +26,2022-08-02 02:00:00,0.001200,0.000079,0.000109,0.000079,0.000003,0.000116,0.000027,0.000197,0.000000,0.000000,0.001372,0.355071,0.000378,1.000000,0.000062 +27,2022-08-02 03:00:00,0.001191,0.000100,0.000107,0.000100,0.000003,0.000109,0.000027,0.000211,0.000000,0.000000,0.001290,0.355433,0.000362,1.000000,0.000070 +28,2022-08-02 04:00:00,0.001258,0.000114,0.000119,0.000114,0.000003,0.000102,0.000028,0.000220,0.000000,0.000000,0.001216,0.355839,0.000406,1.000000,0.000075 +29,2022-08-02 05:00:00,0.001090,0.000101,0.000091,0.000101,0.000003,0.000096,0.000028,0.000201,0.000000,0.000000,0.001147,0.356100,0.000261,1.000000,0.000065 +30,2022-08-02 06:00:00,0.001094,0.000097,0.000091,0.000097,0.000004,0.000091,0.000028,0.000191,0.000000,0.000000,0.001084,0.356358,0.000258,1.000000,0.000059 +31,2022-08-02 07:00:00,0.000000,0.000041,0.000000,0.000041,0.000004,0.000086,0.000027,0.000131,0.000000,0.000000,0.001025,0.355631,-0.000727,1.000000,0.000018 +32,2022-08-02 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000004,0.000081,0.000027,0.000104,0.000000,0.000000,0.000971,0.354921,-0.000710,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000077,0.000026,0.000081,0.000000,0.000000,0.000920,0.354228,-0.000693,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000073,0.000026,0.000078,0.000000,0.000000,0.000872,0.353553,-0.000676,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000069,0.000025,0.000074,0.000000,0.000000,0.000827,0.352893,-0.000660,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000066,0.000024,0.000071,0.000000,0.000000,0.000786,0.352249,-0.000644,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000005,0.000063,0.000024,0.000068,0.000000,0.000000,0.000747,0.351718,-0.000532,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000200,0.000000,0.000000,0.000000,0.000005,0.000060,0.000023,0.000065,0.000127,0.000127,0.000711,0.351172,-0.000545,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000200,0.000000,0.000000,0.000000,0.000006,0.000057,0.000023,0.000063,0.000325,0.000325,0.000677,0.350448,-0.000724,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000006,0.000054,0.000022,0.000060,0.000456,0.000456,0.000645,0.349516,-0.000933,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000006,0.000051,0.000021,0.000058,0.000550,0.000550,0.000614,0.348514,-0.001002,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000007,0.000049,0.000020,0.000055,0.000611,0.000611,0.000585,0.347672,-0.000842,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000062,0.000000,0.000000,0.000000,0.000007,0.000047,0.000019,0.000053,0.000559,0.000559,0.000558,0.346669,-0.001004,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000044,0.000018,0.000051,0.000508,0.000508,0.000531,0.345678,-0.000990,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000015,0.000000,0.000000,0.000000,0.000007,0.000042,0.000017,0.000050,0.000502,0.000502,0.000506,0.344733,-0.000945,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000015,0.000000,0.000000,0.000000,0.000008,0.000040,0.000017,0.000048,0.000423,0.000423,0.000483,0.343887,-0.000846,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000038,0.000016,0.000046,0.000323,0.000323,0.000460,0.343145,-0.000743,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000015,0.000000,0.000000,0.000000,0.000008,0.000037,0.000015,0.000045,0.000194,0.000194,0.000439,0.342561,-0.000583,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000035,0.000015,0.000043,0.000042,0.000042,0.000419,0.342187,-0.000375,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000033,0.000015,0.000042,0.000000,0.000000,0.000400,0.341861,-0.000325,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000032,0.000014,0.000041,0.000000,0.000000,0.000382,0.341544,-0.000317,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000088,0.000000,0.000001,0.000000,0.000009,0.000031,0.000014,0.000040,0.000000,0.000000,0.000366,0.341259,-0.000285,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000100,0.000001,0.000001,0.000001,0.000010,0.000029,0.000014,0.000039,0.000000,0.000000,0.000350,0.340992,-0.000267,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000100,0.000001,0.000001,0.000001,0.000010,0.000028,0.000014,0.000039,0.000000,0.000000,0.000336,0.340731,-0.000261,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000027,0.000013,0.000037,0.000000,0.000000,0.000322,0.340379,-0.000351,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000026,0.000013,0.000036,0.000000,0.000000,0.000309,0.340037,-0.000343,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000025,0.000013,0.000036,0.000000,0.000000,0.000297,0.339702,-0.000335,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000024,0.000012,0.000035,0.000000,0.000000,0.000286,0.339375,-0.000327,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000023,0.000012,0.000034,0.000000,0.000000,0.000275,0.339056,-0.000319,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000022,0.000012,0.000034,0.000000,0.000000,0.000265,0.338745,-0.000311,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000021,0.000011,0.000033,0.000000,0.000000,0.000255,0.338442,-0.000304,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000011,0.000033,0.000135,0.000135,0.000245,0.338013,-0.000428,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000010,0.000032,0.000383,0.000383,0.000236,0.337353,-0.000660,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000019,0.000010,0.000032,0.000538,0.000538,0.000227,0.336558,-0.000795,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000018,0.000009,0.000031,0.000650,0.000650,0.000218,0.335673,-0.000885,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000017,0.000008,0.000031,0.000634,0.000634,0.000208,0.334824,-0.000849,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000019,0.000000,0.000000,0.000000,0.000014,0.000017,0.000007,0.000030,0.000579,0.000579,0.000199,0.334068,-0.000756,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000462,0.000000,0.000000,0.000000,0.000014,0.000016,0.000007,0.000030,0.000523,0.000523,0.000190,0.333818,-0.000250,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000014,0.000015,0.000007,0.000029,0.000478,0.000478,0.000182,0.333290,-0.000528,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000015,0.000000,0.000000,0.000000,0.000015,0.000014,0.000006,0.000029,0.000407,0.000407,0.000174,0.332735,-0.000555,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000014,0.000006,0.000029,0.000307,0.000307,0.000166,0.332276,-0.000459,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000013,0.000005,0.000028,0.000206,0.000206,0.000158,0.331926,-0.000349,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000013,0.000005,0.000028,0.000055,0.000055,0.000151,0.331733,-0.000193,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000012,0.000005,0.000028,0.000000,0.000000,0.000144,0.331598,-0.000135,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000011,0.000005,0.000027,0.000000,0.000000,0.000137,0.331466,-0.000132,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000011,0.000005,0.000027,0.000000,0.000000,0.000131,0.331337,-0.000129,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000005,0.000027,0.000000,0.000000,0.000125,0.331212,-0.000126,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000005,0.000027,0.000000,0.000000,0.000120,0.331089,-0.000123,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000010,0.000005,0.000027,0.000000,0.000000,0.000115,0.330970,-0.000120,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000009,0.000004,0.000027,0.000000,0.000000,0.000110,0.330853,-0.000117,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000009,0.000004,0.000027,0.000000,0.000000,0.000106,0.330739,-0.000114,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000008,0.000004,0.000027,0.000000,0.000000,0.000101,0.330628,-0.000111,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000008,0.000004,0.000027,0.000000,0.000000,0.000097,0.330519,-0.000109,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000008,0.000004,0.000026,0.000000,0.000000,0.000094,0.330413,-0.000106,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000007,0.000004,0.000026,0.000000,0.000000,0.000090,0.330310,-0.000103,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000007,0.000004,0.000026,0.000131,0.000131,0.000087,0.330082,-0.000228,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000007,0.000003,0.000026,0.000375,0.000375,0.000083,0.329620,-0.000462,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000007,0.000003,0.000026,0.000533,0.000533,0.000079,0.329015,-0.000605,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000006,0.000002,0.000026,0.000649,0.000649,0.000075,0.328312,-0.000703,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000006,0.000001,0.000026,0.000729,0.000729,0.000070,0.327548,-0.000764,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000005,0.000001,0.000026,0.000677,0.000677,0.000066,0.326852,-0.000695,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000005,0.000000,0.000026,0.000602,0.000602,0.000061,0.326247,-0.000606,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000005,0.000000,0.000026,0.000539,0.000539,0.000056,0.325708,-0.000539,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000004,0.000000,0.000026,0.000455,0.000454,0.000052,0.325254,-0.000454,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000004,0.000000,0.000026,0.000342,0.000340,0.000048,0.324914,-0.000340,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000004,0.000000,0.000026,0.000211,0.000210,0.000044,0.324704,-0.000210,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000003,0.000000,0.000026,0.000061,0.000060,0.000041,0.324644,-0.000060,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000026,0.000000,0.000000,0.000037,0.324644,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000026,0.000000,0.000000,0.000035,0.324644,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000026,0.000000,0.000000,0.000032,0.324644,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000026,0.000000,0.000000,0.000029,0.324644,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000026,0.000000,0.000000,0.000027,0.324644,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000026,0.000000,0.000000,0.000025,0.324644,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000026,0.000000,0.000000,0.000023,0.324644,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000026,0.000000,0.000000,0.000021,0.324644,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000026,0.000000,0.000000,0.000020,0.324644,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000026,0.000000,0.000000,0.000018,0.324644,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000027,0.000000,0.000000,0.000017,0.324644,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000027,0.000000,0.000000,0.000016,0.324644,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000147,0.000145,0.000014,0.324498,-0.000145,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000384,0.000381,0.000013,0.324118,-0.000381,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000538,0.000532,0.000012,0.323585,-0.000532,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000654,0.000645,0.000011,0.322940,-0.000645,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000027,0.000646,0.000635,0.000010,0.322305,-0.000635,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000598,0.000586,0.000010,0.321719,-0.000586,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000536,0.000524,0.000009,0.321195,-0.000524,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000508,0.000495,0.000008,0.320700,-0.000495,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000028,0.000413,0.000401,0.000008,0.320299,-0.000401,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000028,0.000312,0.000305,0.000007,0.320057,-0.000241,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000203,0.000196,0.000006,0.319861,-0.000196,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000126,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000029,0.000067,0.000067,0.000006,0.319920,0.000059,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000264,0.000003,0.000005,0.000003,0.000028,0.000000,0.000000,0.000032,0.000000,0.000000,0.000006,0.320179,0.000258,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000199,0.000003,0.000003,0.000003,0.000029,0.000000,0.000000,0.000032,0.000000,0.000000,0.000005,0.320375,0.000196,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000124,0.000002,0.000001,0.000002,0.000029,0.000000,0.000000,0.000032,0.000000,0.000000,0.000005,0.320498,0.000123,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000124,0.000002,0.000001,0.000002,0.000029,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.320621,0.000123,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000124,0.000001,0.000001,0.000001,0.000029,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.320744,0.000123,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000004,0.320744,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000003,0.320744,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000003,0.320744,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000003,0.320744,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000003,0.320744,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000002,0.320744,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000002,0.320744,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000128,0.000125,0.000002,0.320619,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000376,0.000365,0.000002,0.320254,-0.000365,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000522,0.000506,0.000002,0.319748,-0.000506,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000636,0.000616,0.000002,0.319132,-0.000616,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000719,0.000693,0.000002,0.318439,-0.000693,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000677,0.000651,0.000001,0.317789,-0.000651,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000596,0.000571,0.000001,0.317218,-0.000571,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000532,0.000508,0.000001,0.316710,-0.000508,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000439,0.000417,0.000001,0.316293,-0.000417,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000331,0.000314,0.000001,0.315979,-0.000314,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000200,0.000190,0.000001,0.315789,-0.000190,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000051,0.000049,0.000001,0.315740,-0.000049,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.315740,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.315740,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000122,0.000116,0.000000,0.315625,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000361,0.000341,0.000000,0.315283,-0.000341,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000518,0.000489,0.000000,0.314794,-0.000489,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000629,0.000592,0.000000,0.314202,-0.000592,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000667,0.000626,0.000000,0.313576,-0.000626,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000627,0.000586,0.000000,0.312989,-0.000586,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000565,0.000527,0.000000,0.312463,-0.000527,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000525,0.000488,0.000000,0.311974,-0.000488,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000435,0.000404,0.000000,0.311571,-0.000404,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000325,0.000301,0.000000,0.311270,-0.000301,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000169,0.000156,0.000000,0.311114,-0.000156,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000028,0.000026,0.000000,0.311088,-0.000026,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311088,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311089,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311089,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.311090,0.000001,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000105,0.000097,0.000000,0.310993,-0.000097,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000351,0.000323,0.000000,0.310670,-0.000323,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000508,0.000468,0.000000,0.310202,-0.000468,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000624,0.000573,0.000000,0.309629,-0.000573,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000701,0.000642,0.000000,0.308987,-0.000642,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000664,0.000605,0.000000,0.308382,-0.000605,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000594,0.000540,0.000000,0.307843,-0.000540,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000528,0.000478,0.000000,0.307364,-0.000478,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000441,0.000398,0.000000,0.306966,-0.000398,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000329,0.000296,0.000000,0.306669,-0.000296,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000189,0.000170,0.000000,0.306499,-0.000170,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000032,0.000028,0.000000,0.306471,-0.000028,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306471,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000114,0.000102,0.000000,0.306369,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620704.csv b/test/channel_loss/channel_forcing/et/cat-2620704.csv new file mode 100644 index 000000000..c4cd2abd7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620704.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000054,0.000000,0.000000,0.000000,0.000000,0.000813,0.000048,0.000813,0.000170,0.000170,0.008996,0.377123,-0.002023,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000047,0.000745,0.000050,0.000050,0.008297,0.375209,-0.001915,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000046,0.000684,0.000000,0.000000,0.007659,0.373386,-0.001823,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000045,0.000628,0.000000,0.000000,0.007075,0.371602,-0.001783,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000044,0.000578,0.000000,0.000000,0.006541,0.369859,-0.001744,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000043,0.000533,0.000000,0.000000,0.006051,0.368153,-0.001705,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000042,0.000491,0.000000,0.000000,0.005603,0.366485,-0.001668,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000041,0.000453,0.000000,0.000000,0.005190,0.364854,-0.001631,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000040,0.000419,0.000000,0.000000,0.004812,0.363259,-0.001595,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000387,0.000039,0.000388,0.000000,0.000000,0.004464,0.361699,-0.001560,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000358,0.000038,0.000359,0.000000,0.000000,0.004144,0.360173,-0.001526,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000037,0.000333,0.000000,0.000000,0.003850,0.358681,-0.001492,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000037,0.000309,0.000000,0.000000,0.003579,0.357221,-0.001459,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000286,0.000036,0.000287,0.000000,0.000000,0.003329,0.355794,-0.001427,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000265,0.000035,0.000267,0.000138,0.000138,0.003099,0.354263,-0.001531,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000247,0.000034,0.000248,0.000384,0.000384,0.002886,0.352526,-0.001737,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000229,0.000033,0.000231,0.000531,0.000531,0.002690,0.350683,-0.001843,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000214,0.000032,0.000216,0.000644,0.000644,0.002508,0.348770,-0.001913,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000199,0.000031,0.000201,0.000534,0.000534,0.002340,0.347006,-0.001763,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000603,0.000001,0.000001,0.000001,0.000002,0.000185,0.000030,0.000189,0.000499,0.000499,0.002185,0.345905,-0.001101,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000691,0.000004,0.000007,0.000004,0.000003,0.000173,0.000030,0.000180,0.000446,0.000446,0.002041,0.344959,-0.000945,1.000000,0.000003 +21,2022-08-01 21:00:00,0.000723,0.000011,0.000017,0.000011,0.000003,0.000162,0.000029,0.000176,0.000347,0.000347,0.001909,0.344153,-0.000806,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000576,0.000010,0.000009,0.000010,0.000003,0.000151,0.000029,0.000165,0.000305,0.000305,0.001786,0.343270,-0.000883,1.000000,0.000007 +23,2022-08-01 23:00:00,0.000509,0.000011,0.000009,0.000011,0.000003,0.000141,0.000028,0.000155,0.000229,0.000229,0.001673,0.342414,-0.000856,1.000000,0.000006 +24,2022-08-02 00:00:00,0.000531,0.000013,0.000016,0.000013,0.000004,0.000132,0.000028,0.000149,0.000157,0.000157,0.001569,0.341663,-0.000751,1.000000,0.000009 +25,2022-08-02 01:00:00,0.001017,0.000060,0.000098,0.000060,0.000004,0.000124,0.000028,0.000188,0.000069,0.000069,0.001472,0.341410,-0.000253,1.000000,0.000048 +26,2022-08-02 02:00:00,0.001249,0.000119,0.000165,0.000119,0.000004,0.000117,0.000028,0.000240,0.000000,0.000000,0.001383,0.341391,-0.000019,1.000000,0.000094 +27,2022-08-02 03:00:00,0.001246,0.000151,0.000164,0.000151,0.000005,0.000110,0.000028,0.000266,0.000000,0.000000,0.001301,0.341370,-0.000021,1.000000,0.000107 +28,2022-08-02 04:00:00,0.001273,0.000168,0.000171,0.000168,0.000005,0.000103,0.000028,0.000276,0.000000,0.000000,0.001226,0.341369,-0.000000,1.000000,0.000110 +29,2022-08-02 05:00:00,0.001155,0.000154,0.000143,0.000154,0.000005,0.000097,0.000028,0.000257,0.000000,0.000000,0.001156,0.341281,-0.000088,1.000000,0.000098 +30,2022-08-02 06:00:00,0.001158,0.000149,0.000143,0.000149,0.000006,0.000092,0.000028,0.000246,0.000000,0.000000,0.001092,0.341198,-0.000084,1.000000,0.000093 +31,2022-08-02 07:00:00,0.000000,0.000064,0.000000,0.000064,0.000006,0.000087,0.000027,0.000157,0.000000,0.000000,0.001032,0.340123,-0.001074,1.000000,0.000029 +32,2022-08-02 08:00:00,0.000000,0.000029,0.000000,0.000029,0.000006,0.000082,0.000026,0.000117,0.000000,0.000000,0.000977,0.339073,-0.001051,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000078,0.000026,0.000084,0.000000,0.000000,0.000925,0.338045,-0.001028,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000074,0.000025,0.000081,0.000000,0.000000,0.000877,0.337040,-0.001005,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000070,0.000025,0.000077,0.000000,0.000000,0.000831,0.336057,-0.000983,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000066,0.000024,0.000074,0.000000,0.000000,0.000789,0.335096,-0.000961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000008,0.000063,0.000024,0.000072,0.000000,0.000000,0.000750,0.334252,-0.000843,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000168,0.000000,0.000000,0.000000,0.000009,0.000060,0.000023,0.000069,0.000126,0.000126,0.000714,0.333371,-0.000881,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000168,0.000000,0.000000,0.000000,0.000009,0.000057,0.000023,0.000066,0.000324,0.000324,0.000679,0.332317,-0.001054,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000009,0.000054,0.000022,0.000063,0.000455,0.000455,0.000647,0.331091,-0.001226,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000010,0.000052,0.000021,0.000061,0.000549,0.000549,0.000616,0.329800,-0.001291,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000351,0.000000,0.000000,0.000000,0.000010,0.000049,0.000021,0.000059,0.000608,0.000608,0.000588,0.328725,-0.001075,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000095,0.000000,0.000000,0.000000,0.000011,0.000047,0.000020,0.000057,0.000557,0.000557,0.000561,0.327474,-0.001252,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000045,0.000019,0.000056,0.000504,0.000504,0.000535,0.326209,-0.001265,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000004,0.000000,0.000000,0.000000,0.000011,0.000043,0.000018,0.000054,0.000497,0.000497,0.000511,0.324982,-0.001227,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000012,0.000041,0.000018,0.000053,0.000421,0.000421,0.000488,0.323857,-0.001125,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000039,0.000017,0.000051,0.000321,0.000321,0.000466,0.322851,-0.001006,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000042,0.000000,0.000000,0.000000,0.000013,0.000037,0.000017,0.000050,0.000191,0.000191,0.000446,0.322034,-0.000817,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000057,0.000000,0.000000,0.000000,0.000013,0.000036,0.000016,0.000049,0.000040,0.000040,0.000426,0.321399,-0.000635,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000057,0.000000,0.000000,0.000000,0.000013,0.000034,0.000016,0.000048,0.000000,0.000000,0.000408,0.320816,-0.000583,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000057,0.000000,0.000000,0.000000,0.000014,0.000033,0.000016,0.000047,0.000000,0.000000,0.000391,0.320246,-0.000570,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000077,0.000001,0.000001,0.000001,0.000014,0.000031,0.000015,0.000046,0.000000,0.000000,0.000375,0.319708,-0.000538,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000091,0.000001,0.000001,0.000001,0.000015,0.000030,0.000015,0.000046,0.000000,0.000000,0.000360,0.319194,-0.000513,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000091,0.000001,0.000001,0.000001,0.000015,0.000029,0.000015,0.000045,0.000000,0.000000,0.000346,0.318692,-0.000502,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000028,0.000015,0.000044,0.000000,0.000000,0.000333,0.318114,-0.000579,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000027,0.000014,0.000043,0.000000,0.000000,0.000321,0.317547,-0.000566,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000026,0.000014,0.000042,0.000000,0.000000,0.000309,0.316994,-0.000554,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000025,0.000014,0.000042,0.000000,0.000000,0.000297,0.316452,-0.000542,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000024,0.000013,0.000041,0.000000,0.000000,0.000287,0.315922,-0.000530,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000023,0.000013,0.000041,0.000000,0.000000,0.000277,0.315404,-0.000518,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000022,0.000013,0.000041,0.000000,0.000000,0.000267,0.314898,-0.000507,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000022,0.000012,0.000040,0.000134,0.000134,0.000258,0.314271,-0.000627,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000021,0.000012,0.000040,0.000382,0.000382,0.000249,0.313416,-0.000856,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000020,0.000011,0.000040,0.000536,0.000536,0.000240,0.312428,-0.000987,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000019,0.000011,0.000040,0.000647,0.000647,0.000232,0.311354,-0.001074,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000019,0.000010,0.000039,0.000631,0.000631,0.000223,0.310320,-0.001034,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000021,0.000018,0.000010,0.000039,0.000577,0.000577,0.000215,0.309367,-0.000953,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000746,0.000003,0.000006,0.000003,0.000022,0.000017,0.000009,0.000042,0.000518,0.000518,0.000207,0.309211,-0.000156,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000126,0.000001,0.000000,0.000001,0.000022,0.000017,0.000009,0.000040,0.000473,0.000473,0.000200,0.308502,-0.000710,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000004,0.000001,0.000000,0.000001,0.000023,0.000016,0.000009,0.000040,0.000404,0.000404,0.000192,0.307756,-0.000746,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000015,0.000008,0.000039,0.000304,0.000304,0.000185,0.307120,-0.000635,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000015,0.000008,0.000039,0.000204,0.000204,0.000178,0.306597,-0.000524,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000014,0.000008,0.000038,0.000053,0.000053,0.000172,0.306232,-0.000364,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000014,0.000008,0.000038,0.000000,0.000000,0.000166,0.305927,-0.000305,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000013,0.000007,0.000038,0.000000,0.000000,0.000160,0.305630,-0.000298,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000013,0.000007,0.000038,0.000000,0.000000,0.000154,0.305338,-0.000291,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000012,0.000007,0.000038,0.000000,0.000000,0.000149,0.305053,-0.000285,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000012,0.000007,0.000038,0.000000,0.000000,0.000144,0.304775,-0.000279,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000012,0.000007,0.000039,0.000000,0.000000,0.000139,0.304502,-0.000273,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000011,0.000007,0.000039,0.000000,0.000000,0.000135,0.304236,-0.000267,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000007,0.000039,0.000000,0.000000,0.000130,0.303975,-0.000261,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000006,0.000039,0.000000,0.000000,0.000126,0.303720,-0.000255,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000006,0.000039,0.000000,0.000000,0.000122,0.303471,-0.000249,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000006,0.000039,0.000000,0.000000,0.000119,0.303227,-0.000244,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000010,0.000006,0.000039,0.000000,0.000000,0.000115,0.302988,-0.000238,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000009,0.000006,0.000039,0.000129,0.000129,0.000111,0.302629,-0.000360,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000009,0.000005,0.000040,0.000374,0.000374,0.000108,0.302037,-0.000591,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000009,0.000005,0.000040,0.000532,0.000532,0.000104,0.301305,-0.000733,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000008,0.000005,0.000040,0.000647,0.000647,0.000100,0.300476,-0.000829,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000008,0.000004,0.000040,0.000725,0.000725,0.000096,0.299589,-0.000887,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000008,0.000004,0.000040,0.000673,0.000673,0.000092,0.298772,-0.000817,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000007,0.000003,0.000040,0.000597,0.000597,0.000088,0.298048,-0.000724,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000007,0.000003,0.000040,0.000534,0.000534,0.000084,0.297402,-0.000646,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000007,0.000003,0.000041,0.000451,0.000451,0.000080,0.296850,-0.000552,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000002,0.000041,0.000339,0.000339,0.000076,0.296421,-0.000430,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000006,0.000002,0.000041,0.000209,0.000209,0.000072,0.296128,-0.000293,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000006,0.000002,0.000041,0.000059,0.000059,0.000068,0.295988,-0.000139,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000002,0.000041,0.000000,0.000000,0.000065,0.295909,-0.000079,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000002,0.000041,0.000000,0.000000,0.000062,0.295832,-0.000077,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000005,0.000002,0.000041,0.000000,0.000000,0.000059,0.295756,-0.000076,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000005,0.000002,0.000042,0.000000,0.000000,0.000056,0.295682,-0.000074,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000002,0.000042,0.000000,0.000000,0.000053,0.295610,-0.000072,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000002,0.000042,0.000000,0.000000,0.000051,0.295539,-0.000071,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000002,0.000042,0.000000,0.000000,0.000049,0.295470,-0.000069,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000004,0.000002,0.000043,0.000000,0.000000,0.000046,0.295402,-0.000068,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000004,0.000002,0.000043,0.000000,0.000000,0.000044,0.295336,-0.000066,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000004,0.000002,0.000043,0.000000,0.000000,0.000042,0.295271,-0.000065,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000002,0.000043,0.000000,0.000000,0.000041,0.295208,-0.000063,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000002,0.000044,0.000000,0.000000,0.000039,0.295146,-0.000062,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000003,0.000001,0.000044,0.000145,0.000145,0.000037,0.294944,-0.000202,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000003,0.000001,0.000044,0.000383,0.000383,0.000036,0.294513,-0.000430,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000003,0.000001,0.000044,0.000537,0.000537,0.000034,0.293942,-0.000571,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000003,0.000000,0.000045,0.000652,0.000652,0.000031,0.293271,-0.000671,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000045,0.000642,0.000642,0.000029,0.292624,-0.000647,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000594,0.000594,0.000027,0.292030,-0.000594,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000531,0.000530,0.000025,0.291501,-0.000530,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000002,0.000000,0.000046,0.000503,0.000500,0.000023,0.291001,-0.000500,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000002,0.000000,0.000046,0.000410,0.000406,0.000021,0.290594,-0.000406,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000062,0.000000,0.000000,0.000000,0.000044,0.000002,0.000000,0.000046,0.000309,0.000306,0.000020,0.290350,-0.000245,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000002,0.000000,0.000046,0.000200,0.000198,0.000018,0.290152,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000150,0.000000,0.000001,0.000000,0.000045,0.000001,0.000000,0.000047,0.000065,0.000065,0.000017,0.290236,0.000084,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000311,0.000006,0.000010,0.000006,0.000046,0.000001,0.000000,0.000053,0.000000,0.000000,0.000015,0.290537,0.000301,1.000000,0.000005 +123,2022-08-06 03:00:00,0.000198,0.000005,0.000004,0.000005,0.000046,0.000001,0.000000,0.000052,0.000000,0.000000,0.000014,0.290731,0.000194,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000119,0.000004,0.000002,0.000004,0.000046,0.000001,0.000000,0.000051,0.000000,0.000000,0.000013,0.290848,0.000117,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000131,0.000002,0.000002,0.000002,0.000047,0.000001,0.000000,0.000050,0.000000,0.000000,0.000012,0.290978,0.000130,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000160,0.000002,0.000003,0.000002,0.000047,0.000001,0.000000,0.000050,0.000000,0.000000,0.000011,0.291135,0.000157,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000048,0.000001,0.000000,0.000049,0.000000,0.000000,0.000010,0.291135,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000048,0.000001,0.000000,0.000049,0.000000,0.000000,0.000010,0.291135,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000049,0.000000,0.000000,0.000009,0.291135,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000049,0.000000,0.000000,0.000008,0.291135,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000050,0.000000,0.000000,0.000007,0.291135,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000050,0.000000,0.000000,0.000007,0.291135,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000050,0.000000,0.000000,0.000006,0.291135,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000051,0.000127,0.000126,0.000006,0.291009,-0.000126,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000051,0.000374,0.000371,0.000005,0.290638,-0.000371,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000521,0.000515,0.000005,0.290122,-0.000515,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000634,0.000625,0.000005,0.289497,-0.000625,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000052,0.000714,0.000702,0.000004,0.288795,-0.000702,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000672,0.000657,0.000004,0.288138,-0.000657,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000591,0.000575,0.000004,0.287563,-0.000575,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000053,0.000527,0.000511,0.000003,0.287052,-0.000511,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000436,0.000421,0.000003,0.286631,-0.000421,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000328,0.000316,0.000003,0.286315,-0.000316,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000054,0.000198,0.000191,0.000003,0.286124,-0.000191,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000049,0.000047,0.000002,0.286077,-0.000047,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000002,0.286077,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000000,0.000000,0.000001,0.286077,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000121,0.000116,0.000001,0.285961,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000360,0.000345,0.000001,0.285616,-0.000345,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000516,0.000495,0.000001,0.285121,-0.000495,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000627,0.000599,0.000001,0.284522,-0.000599,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000664,0.000631,0.000001,0.283891,-0.000631,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000622,0.000590,0.000001,0.283301,-0.000590,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000560,0.000528,0.000001,0.282773,-0.000528,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000521,0.000490,0.000000,0.282283,-0.000490,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000432,0.000405,0.000000,0.281878,-0.000405,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000322,0.000301,0.000000,0.281577,-0.000301,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000167,0.000156,0.000000,0.281421,-0.000156,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000026,0.000025,0.000000,0.281397,-0.000025,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.281397,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.281398,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.281398,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.281398,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000104,0.000097,0.000000,0.281302,-0.000097,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000349,0.000325,0.000000,0.280977,-0.000325,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000507,0.000471,0.000000,0.280505,-0.000471,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000622,0.000576,0.000000,0.279929,-0.000576,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000697,0.000643,0.000000,0.279286,-0.000643,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000659,0.000605,0.000000,0.278681,-0.000605,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000588,0.000538,0.000000,0.278144,-0.000538,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000522,0.000476,0.000000,0.277668,-0.000476,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000437,0.000397,0.000000,0.277271,-0.000397,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000325,0.000295,0.000000,0.276976,-0.000295,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000187,0.000169,0.000000,0.276807,-0.000169,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000030,0.000027,0.000000,0.276781,-0.000027,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.276781,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000113,0.000102,0.000000,0.276679,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620705.csv b/test/channel_loss/channel_forcing/et/cat-2620705.csv new file mode 100644 index 000000000..25f83b326 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620705.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000000,0.000815,0.000060,0.000815,0.000162,0.000162,0.009007,0.376157,-0.002151,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000747,0.000059,0.000747,0.000046,0.000046,0.008318,0.374105,-0.002052,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000687,0.000058,0.000687,0.000000,0.000000,0.007689,0.372143,-0.001963,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000632,0.000056,0.000632,0.000000,0.000000,0.007114,0.370223,-0.001920,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000055,0.000582,0.000000,0.000000,0.006587,0.368345,-0.001878,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000537,0.000054,0.000537,0.000000,0.000000,0.006103,0.366508,-0.001837,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000496,0.000053,0.000496,0.000000,0.000000,0.005660,0.364711,-0.001797,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000459,0.000052,0.000459,0.000000,0.000000,0.005253,0.362953,-0.001758,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000425,0.000051,0.000425,0.000000,0.000000,0.004879,0.361234,-0.001719,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000393,0.000049,0.000394,0.000000,0.000000,0.004535,0.359552,-0.001682,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000365,0.000048,0.000366,0.000000,0.000000,0.004219,0.357907,-0.001645,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000339,0.000047,0.000340,0.000000,0.000000,0.003927,0.356298,-0.001609,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000315,0.000046,0.000316,0.000000,0.000000,0.003659,0.354723,-0.001574,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000293,0.000045,0.000294,0.000000,0.000000,0.003411,0.353183,-0.001540,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000273,0.000044,0.000274,0.000133,0.000133,0.003182,0.351546,-0.001637,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000254,0.000043,0.000256,0.000377,0.000377,0.002971,0.349707,-0.001839,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000237,0.000042,0.000239,0.000527,0.000527,0.002776,0.347761,-0.001946,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000221,0.000040,0.000223,0.000632,0.000632,0.002595,0.345754,-0.002006,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000207,0.000039,0.000209,0.000521,0.000521,0.002428,0.343900,-0.001854,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000465,0.000000,0.000000,0.000000,0.000003,0.000193,0.000038,0.000196,0.000485,0.000485,0.002273,0.342577,-0.001323,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000502,0.000000,0.000001,0.000000,0.000003,0.000181,0.000038,0.000184,0.000429,0.000429,0.002130,0.341373,-0.001204,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000571,0.000003,0.000005,0.000003,0.000003,0.000169,0.000037,0.000176,0.000340,0.000340,0.001997,0.340345,-0.001028,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000469,0.000003,0.000003,0.000003,0.000003,0.000159,0.000036,0.000165,0.000298,0.000298,0.001875,0.339282,-0.001063,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000443,0.000005,0.000005,0.000005,0.000004,0.000149,0.000035,0.000157,0.000223,0.000223,0.001761,0.338290,-0.000992,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000465,0.000007,0.000010,0.000007,0.000004,0.000140,0.000035,0.000151,0.000149,0.000149,0.001656,0.337407,-0.000883,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000817,0.000033,0.000054,0.000033,0.000004,0.000132,0.000035,0.000169,0.000064,0.000064,0.001559,0.336928,-0.000479,1.000000,0.000026 +26,2022-08-02 02:00:00,0.001300,0.000100,0.000154,0.000100,0.000005,0.000124,0.000035,0.000229,0.000000,0.000000,0.001470,0.336897,-0.000031,1.000000,0.000080 +27,2022-08-02 03:00:00,0.001256,0.000129,0.000144,0.000129,0.000005,0.000117,0.000035,0.000250,0.000000,0.000000,0.001388,0.336834,-0.000064,1.000000,0.000096 +28,2022-08-02 04:00:00,0.001290,0.000150,0.000151,0.000150,0.000005,0.000110,0.000035,0.000266,0.000000,0.000000,0.001312,0.336797,-0.000036,1.000000,0.000097 +29,2022-08-02 05:00:00,0.001185,0.000138,0.000129,0.000138,0.000006,0.000105,0.000034,0.000248,0.000000,0.000000,0.001242,0.336681,-0.000116,1.000000,0.000088 +30,2022-08-02 06:00:00,0.001210,0.000136,0.000134,0.000136,0.000006,0.000099,0.000034,0.000241,0.000000,0.000000,0.001177,0.336587,-0.000094,1.000000,0.000086 +31,2022-08-02 07:00:00,0.000000,0.000059,0.000000,0.000059,0.000006,0.000094,0.000034,0.000160,0.000000,0.000000,0.001117,0.335443,-0.001145,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000007,0.000089,0.000033,0.000123,0.000000,0.000000,0.001060,0.334323,-0.001120,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000085,0.000032,0.000092,0.000000,0.000000,0.001008,0.333228,-0.001095,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000081,0.000031,0.000088,0.000000,0.000000,0.000959,0.332157,-0.001071,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000077,0.000031,0.000085,0.000000,0.000000,0.000913,0.331109,-0.001048,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000073,0.000030,0.000081,0.000000,0.000000,0.000870,0.330084,-0.001025,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000111,0.000001,0.000001,0.000001,0.000009,0.000070,0.000030,0.000079,0.000000,0.000000,0.000830,0.329188,-0.000896,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000125,0.000000,0.000000,0.000000,0.000009,0.000066,0.000029,0.000076,0.000122,0.000122,0.000793,0.328207,-0.000981,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000125,0.000000,0.000000,0.000000,0.000010,0.000063,0.000028,0.000073,0.000316,0.000316,0.000757,0.327058,-0.001149,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000119,0.000000,0.000000,0.000000,0.000010,0.000061,0.000027,0.000071,0.000446,0.000446,0.000724,0.325801,-0.001257,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000119,0.000000,0.000000,0.000000,0.000010,0.000058,0.000026,0.000068,0.000539,0.000539,0.000692,0.324481,-0.001320,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000400,0.000000,0.000000,0.000000,0.000011,0.000055,0.000026,0.000066,0.000595,0.000595,0.000663,0.323409,-0.001072,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000011,0.000053,0.000025,0.000064,0.000545,0.000545,0.000634,0.322116,-0.001293,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000051,0.000024,0.000063,0.000488,0.000488,0.000608,0.320810,-0.001306,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000049,0.000023,0.000061,0.000483,0.000483,0.000582,0.319537,-0.001273,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000047,0.000022,0.000059,0.000412,0.000412,0.000558,0.318361,-0.001176,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000045,0.000022,0.000058,0.000310,0.000310,0.000535,0.317311,-0.001050,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000061,0.000000,0.000000,0.000000,0.000014,0.000043,0.000021,0.000056,0.000182,0.000182,0.000513,0.316468,-0.000843,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000009,0.000000,0.000000,0.000000,0.000014,0.000041,0.000021,0.000055,0.000035,0.000035,0.000493,0.315737,-0.000732,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000009,0.000000,0.000000,0.000000,0.000014,0.000040,0.000020,0.000054,0.000000,0.000000,0.000473,0.315055,-0.000682,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000009,0.000000,0.000000,0.000000,0.000015,0.000038,0.000020,0.000053,0.000000,0.000000,0.000455,0.314388,-0.000667,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000009,0.000000,0.000000,0.000000,0.000015,0.000037,0.000019,0.000052,0.000000,0.000000,0.000438,0.313736,-0.000652,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000009,0.000000,0.000000,0.000000,0.000016,0.000035,0.000019,0.000051,0.000000,0.000000,0.000422,0.313098,-0.000638,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000009,0.000000,0.000000,0.000000,0.000016,0.000034,0.000019,0.000050,0.000000,0.000000,0.000406,0.312474,-0.000624,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000033,0.000018,0.000050,0.000000,0.000000,0.000392,0.311855,-0.000619,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000032,0.000018,0.000049,0.000000,0.000000,0.000378,0.311250,-0.000605,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000030,0.000017,0.000048,0.000000,0.000000,0.000365,0.310658,-0.000592,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000029,0.000017,0.000048,0.000000,0.000000,0.000353,0.310079,-0.000579,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000028,0.000017,0.000047,0.000000,0.000000,0.000341,0.309512,-0.000567,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000028,0.000016,0.000047,0.000000,0.000000,0.000330,0.308958,-0.000554,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000027,0.000016,0.000046,0.000000,0.000000,0.000319,0.308416,-0.000542,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000026,0.000015,0.000046,0.000129,0.000129,0.000309,0.307760,-0.000656,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000025,0.000015,0.000046,0.000378,0.000378,0.000299,0.306874,-0.000886,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000024,0.000014,0.000045,0.000529,0.000529,0.000289,0.305860,-0.001014,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000023,0.000014,0.000045,0.000637,0.000637,0.000279,0.304762,-0.001098,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000022,0.000013,0.000045,0.000620,0.000620,0.000269,0.303705,-0.001057,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000022,0.000012,0.000044,0.000567,0.000567,0.000260,0.302723,-0.000982,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000519,0.000000,0.000000,0.000000,0.000023,0.000021,0.000012,0.000044,0.000505,0.000505,0.000251,0.302330,-0.000393,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000117,0.000000,0.000000,0.000000,0.000024,0.000020,0.000011,0.000044,0.000461,0.000461,0.000242,0.301596,-0.000734,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000019,0.000011,0.000044,0.000392,0.000392,0.000234,0.300832,-0.000765,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000019,0.000011,0.000044,0.000295,0.000295,0.000225,0.300178,-0.000654,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000018,0.000010,0.000043,0.000195,0.000195,0.000217,0.299636,-0.000542,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000018,0.000010,0.000043,0.000048,0.000048,0.000210,0.299251,-0.000385,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000017,0.000010,0.000043,0.000000,0.000000,0.000203,0.298920,-0.000330,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000016,0.000009,0.000043,0.000000,0.000000,0.000196,0.298597,-0.000323,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000016,0.000009,0.000043,0.000000,0.000000,0.000189,0.298281,-0.000316,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000015,0.000009,0.000043,0.000000,0.000000,0.000183,0.297971,-0.000309,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000015,0.000009,0.000043,0.000000,0.000000,0.000177,0.297669,-0.000303,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000014,0.000009,0.000043,0.000000,0.000000,0.000172,0.297373,-0.000296,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000014,0.000009,0.000043,0.000000,0.000000,0.000166,0.297083,-0.000290,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000013,0.000008,0.000043,0.000000,0.000000,0.000161,0.296800,-0.000283,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000013,0.000008,0.000043,0.000000,0.000000,0.000156,0.296523,-0.000277,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000013,0.000008,0.000043,0.000000,0.000000,0.000152,0.296252,-0.000271,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000012,0.000008,0.000044,0.000000,0.000000,0.000147,0.295987,-0.000265,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000012,0.000008,0.000044,0.000000,0.000000,0.000143,0.295728,-0.000259,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000012,0.000007,0.000044,0.000125,0.000125,0.000139,0.295352,-0.000376,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000007,0.000044,0.000370,0.000370,0.000134,0.294744,-0.000608,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000006,0.000044,0.000528,0.000528,0.000130,0.293995,-0.000749,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000006,0.000044,0.000637,0.000637,0.000126,0.293156,-0.000839,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000005,0.000044,0.000714,0.000714,0.000121,0.292260,-0.000896,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000005,0.000044,0.000655,0.000655,0.000116,0.291441,-0.000819,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000009,0.000004,0.000045,0.000581,0.000581,0.000111,0.290713,-0.000728,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000004,0.000045,0.000516,0.000516,0.000106,0.290064,-0.000649,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000004,0.000045,0.000441,0.000441,0.000101,0.289502,-0.000561,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000331,0.000331,0.000096,0.289061,-0.000442,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000200,0.000200,0.000092,0.288756,-0.000304,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000053,0.000053,0.000088,0.288603,-0.000154,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000000,0.000000,0.000083,0.288504,-0.000098,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000007,0.000003,0.000045,0.000000,0.000000,0.000080,0.288408,-0.000096,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000000,0.000000,0.000076,0.288314,-0.000094,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000073,0.288222,-0.000092,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000070,0.288132,-0.000090,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000006,0.000003,0.000046,0.000000,0.000000,0.000067,0.288044,-0.000088,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000003,0.000046,0.000000,0.000000,0.000064,0.287958,-0.000086,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000047,0.000000,0.000000,0.000061,0.287874,-0.000084,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000059,0.287792,-0.000082,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000056,0.287711,-0.000081,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000002,0.000047,0.000000,0.000000,0.000054,0.287632,-0.000079,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000002,0.000048,0.000000,0.000000,0.000052,0.287555,-0.000077,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000139,0.000139,0.000050,0.287344,-0.000211,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000377,0.000377,0.000048,0.286904,-0.000439,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000001,0.000048,0.000531,0.000531,0.000046,0.286324,-0.000581,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000001,0.000049,0.000643,0.000643,0.000043,0.285646,-0.000677,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000003,0.000001,0.000049,0.000627,0.000627,0.000040,0.285000,-0.000647,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000582,0.000582,0.000037,0.284411,-0.000589,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000513,0.000513,0.000035,0.283898,-0.000513,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000000,0.000049,0.000485,0.000484,0.000032,0.283413,-0.000484,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000002,0.000000,0.000050,0.000401,0.000399,0.000029,0.283014,-0.000399,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000048,0.000002,0.000000,0.000050,0.000299,0.000298,0.000027,0.282780,-0.000235,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000002,0.000000,0.000050,0.000190,0.000189,0.000025,0.282591,-0.000189,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000167,0.000001,0.000001,0.000001,0.000048,0.000002,0.000000,0.000051,0.000059,0.000059,0.000023,0.282697,0.000106,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000261,0.000004,0.000006,0.000004,0.000049,0.000002,0.000000,0.000054,0.000000,0.000000,0.000021,0.282953,0.000255,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000155,0.000003,0.000002,0.000003,0.000049,0.000002,0.000000,0.000054,0.000000,0.000000,0.000020,0.283105,0.000153,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000117,0.000002,0.000001,0.000002,0.000050,0.000002,0.000000,0.000054,0.000000,0.000000,0.000018,0.283221,0.000116,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000130,0.000002,0.000002,0.000002,0.000050,0.000001,0.000000,0.000053,0.000000,0.000000,0.000017,0.283349,0.000128,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000180,0.000002,0.000003,0.000002,0.000050,0.000001,0.000000,0.000054,0.000000,0.000000,0.000016,0.283526,0.000177,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000051,0.000001,0.000000,0.000053,0.000000,0.000000,0.000014,0.283526,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000051,0.000001,0.000000,0.000053,0.000000,0.000000,0.000013,0.283526,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000012,0.283526,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000011,0.283526,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000010,0.283526,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000010,0.283526,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000009,0.283526,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000054,0.000121,0.000121,0.000008,0.283405,-0.000121,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000364,0.000363,0.000008,0.283043,-0.000363,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000515,0.000512,0.000007,0.282531,-0.000512,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000055,0.000626,0.000620,0.000006,0.281911,-0.000620,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000698,0.000688,0.000006,0.281223,-0.000688,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000655,0.000644,0.000005,0.280579,-0.000644,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000577,0.000565,0.000005,0.280015,-0.000565,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000057,0.000510,0.000497,0.000005,0.279518,-0.000497,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000429,0.000417,0.000004,0.279101,-0.000417,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000319,0.000309,0.000004,0.278792,-0.000309,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000192,0.000186,0.000004,0.278606,-0.000186,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000045,0.000043,0.000003,0.278563,-0.000043,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000003,0.278563,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000000,0.000000,0.000003,0.278563,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000003,0.278563,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000002,0.278563,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.278563,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.278563,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000116,0.000112,0.000001,0.278451,-0.000112,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000355,0.000342,0.000001,0.278109,-0.000342,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000509,0.000490,0.000001,0.277619,-0.000490,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000619,0.000594,0.000001,0.277025,-0.000594,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000654,0.000625,0.000001,0.276400,-0.000625,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000609,0.000580,0.000001,0.275820,-0.000580,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000545,0.000517,0.000001,0.275304,-0.000517,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000505,0.000477,0.000001,0.274827,-0.000477,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000422,0.000397,0.000001,0.274429,-0.000397,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000314,0.000295,0.000001,0.274135,-0.000295,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000159,0.000149,0.000001,0.273986,-0.000149,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000023,0.000021,0.000000,0.273965,-0.000021,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.273965,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000100,0.000093,0.000000,0.273872,-0.000093,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000344,0.000322,0.000000,0.273549,-0.000322,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000502,0.000469,0.000000,0.273080,-0.000469,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000612,0.000570,0.000000,0.272510,-0.000570,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000680,0.000631,0.000000,0.271879,-0.000631,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000641,0.000592,0.000000,0.271287,-0.000592,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000562,0.000517,0.000000,0.270770,-0.000517,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000502,0.000460,0.000000,0.270309,-0.000460,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000426,0.000389,0.000000,0.269920,-0.000389,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000315,0.000287,0.000000,0.269633,-0.000287,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000178,0.000162,0.000000,0.269472,-0.000162,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000025,0.000023,0.000000,0.269449,-0.000023,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.269449,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000108,0.000098,0.000000,0.269351,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620706.csv b/test/channel_loss/channel_forcing/et/cat-2620706.csv new file mode 100644 index 000000000..2398c33c4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620706.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000091,0.000000,0.000000,0.000000,0.000000,0.000818,0.000104,0.000818,0.000176,0.000176,0.009047,0.372844,-0.002876,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000755,0.000102,0.000755,0.000055,0.000055,0.008394,0.370056,-0.002788,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000697,0.000100,0.000697,0.000000,0.000000,0.007797,0.367378,-0.002678,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000645,0.000098,0.000645,0.000000,0.000000,0.007250,0.364754,-0.002624,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000096,0.000598,0.000000,0.000000,0.006748,0.362183,-0.002571,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000554,0.000094,0.000555,0.000000,0.000000,0.006287,0.359664,-0.002519,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000515,0.000092,0.000515,0.000000,0.000000,0.005864,0.357196,-0.002468,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000479,0.000090,0.000480,0.000000,0.000000,0.005476,0.354778,-0.002418,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000446,0.000088,0.000447,0.000000,0.000000,0.005118,0.352409,-0.002369,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000416,0.000087,0.000417,0.000000,0.000000,0.004788,0.350087,-0.002321,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000389,0.000085,0.000390,0.000000,0.000000,0.004484,0.347813,-0.002274,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000364,0.000083,0.000365,0.000000,0.000000,0.004203,0.345584,-0.002229,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000340,0.000081,0.000342,0.000000,0.000000,0.003944,0.343401,-0.002183,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000319,0.000080,0.000321,0.000000,0.000000,0.003705,0.341261,-0.002139,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000299,0.000078,0.000301,0.000138,0.000138,0.003484,0.339030,-0.002232,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000281,0.000076,0.000283,0.000381,0.000381,0.003279,0.336606,-0.002424,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000264,0.000074,0.000267,0.000537,0.000537,0.003089,0.334077,-0.002528,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000249,0.000072,0.000252,0.000655,0.000655,0.002912,0.331485,-0.002592,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000234,0.000070,0.000238,0.000558,0.000558,0.002748,0.329040,-0.002445,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000834,0.000004,0.000007,0.000004,0.000004,0.000221,0.000069,0.000229,0.000527,0.000527,0.002596,0.327484,-0.001556,1.000000,0.000003 +20,2022-08-01 20:00:00,0.000666,0.000004,0.000003,0.000004,0.000004,0.000209,0.000068,0.000216,0.000465,0.000465,0.002455,0.325860,-0.001623,1.000000,0.000003 +21,2022-08-01 21:00:00,0.000571,0.000004,0.000004,0.000004,0.000004,0.000198,0.000067,0.000206,0.000351,0.000351,0.002324,0.324287,-0.001574,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000576,0.000005,0.000006,0.000005,0.000005,0.000187,0.000066,0.000196,0.000308,0.000308,0.002203,0.322791,-0.001496,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000506,0.000005,0.000006,0.000005,0.000005,0.000177,0.000064,0.000188,0.000234,0.000234,0.002090,0.321330,-0.001461,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000547,0.000009,0.000011,0.000009,0.000006,0.000168,0.000063,0.000182,0.000164,0.000164,0.001985,0.320001,-0.001329,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000931,0.000034,0.000054,0.000034,0.000006,0.000160,0.000063,0.000200,0.000071,0.000071,0.001888,0.319124,-0.000877,1.000000,0.000027 +26,2022-08-02 02:00:00,0.001140,0.000067,0.000094,0.000067,0.000006,0.000152,0.000062,0.000226,0.000000,0.000000,0.001798,0.318500,-0.000624,1.000000,0.000053 +27,2022-08-02 03:00:00,0.001140,0.000086,0.000094,0.000086,0.000007,0.000145,0.000062,0.000238,0.000000,0.000000,0.001715,0.317889,-0.000611,1.000000,0.000061 +28,2022-08-02 04:00:00,0.001156,0.000095,0.000096,0.000095,0.000007,0.000138,0.000061,0.000241,0.000000,0.000000,0.001638,0.317304,-0.000585,1.000000,0.000062 +29,2022-08-02 05:00:00,0.001100,0.000091,0.000087,0.000091,0.000008,0.000132,0.000061,0.000231,0.000000,0.000000,0.001566,0.316685,-0.000619,1.000000,0.000058 +30,2022-08-02 06:00:00,0.001100,0.000089,0.000087,0.000089,0.000008,0.000127,0.000060,0.000224,0.000000,0.000000,0.001500,0.316078,-0.000607,1.000000,0.000057 +31,2022-08-02 07:00:00,0.000000,0.000039,0.000000,0.000039,0.000009,0.000121,0.000059,0.000169,0.000000,0.000000,0.001438,0.314491,-0.001587,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000009,0.000116,0.000058,0.000143,0.000000,0.000000,0.001380,0.312936,-0.001555,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000112,0.000057,0.000121,0.000000,0.000000,0.001325,0.311412,-0.001524,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000107,0.000056,0.000118,0.000000,0.000000,0.001273,0.309920,-0.001493,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000103,0.000055,0.000114,0.000000,0.000000,0.001225,0.308457,-0.001463,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000099,0.000053,0.000111,0.000000,0.000000,0.001179,0.307024,-0.001433,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000012,0.000096,0.000052,0.000108,0.000000,0.000000,0.001136,0.305717,-0.001307,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000217,0.000001,0.000001,0.000001,0.000013,0.000092,0.000051,0.000105,0.000124,0.000124,0.001095,0.304430,-0.001287,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000200,0.000000,0.000000,0.000000,0.000013,0.000089,0.000050,0.000102,0.000324,0.000324,0.001057,0.302956,-0.001474,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000086,0.000049,0.000100,0.000461,0.000461,0.001020,0.301280,-0.001676,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000083,0.000048,0.000097,0.000560,0.000560,0.000985,0.299542,-0.001739,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000297,0.000000,0.000000,0.000000,0.000015,0.000080,0.000046,0.000095,0.000629,0.000629,0.000952,0.297963,-0.001578,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000015,0.000077,0.000045,0.000093,0.000554,0.000554,0.000920,0.296200,-0.001763,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000075,0.000044,0.000091,0.000521,0.000521,0.000889,0.294505,-0.001695,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000072,0.000043,0.000089,0.000513,0.000513,0.000859,0.292913,-0.001592,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000070,0.000041,0.000087,0.000437,0.000437,0.000831,0.291428,-0.001485,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000001,0.000000,0.000000,0.000000,0.000018,0.000067,0.000040,0.000085,0.000332,0.000332,0.000804,0.290015,-0.001413,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000065,0.000039,0.000084,0.000200,0.000200,0.000778,0.288820,-0.001195,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000069,0.000000,0.000000,0.000000,0.000019,0.000063,0.000039,0.000082,0.000046,0.000046,0.000754,0.287806,-0.001014,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000069,0.000000,0.000000,0.000000,0.000020,0.000061,0.000038,0.000081,0.000000,0.000000,0.000730,0.286858,-0.000949,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000075,0.000000,0.000000,0.000000,0.000021,0.000059,0.000037,0.000080,0.000000,0.000000,0.000708,0.285934,-0.000924,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000096,0.000001,0.000001,0.000001,0.000021,0.000058,0.000037,0.000079,0.000000,0.000000,0.000687,0.285049,-0.000885,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000105,0.000001,0.000001,0.000001,0.000022,0.000056,0.000036,0.000078,0.000000,0.000000,0.000667,0.284192,-0.000858,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000100,0.000001,0.000001,0.000001,0.000023,0.000054,0.000035,0.000078,0.000000,0.000000,0.000648,0.283346,-0.000845,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000053,0.000034,0.000076,0.000000,0.000000,0.000630,0.282421,-0.000925,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000051,0.000034,0.000075,0.000000,0.000000,0.000612,0.281514,-0.000907,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000050,0.000033,0.000074,0.000000,0.000000,0.000596,0.280626,-0.000888,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000048,0.000032,0.000074,0.000000,0.000000,0.000580,0.279756,-0.000870,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000047,0.000032,0.000073,0.000000,0.000000,0.000564,0.278903,-0.000853,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000046,0.000031,0.000073,0.000000,0.000000,0.000549,0.278067,-0.000836,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000045,0.000031,0.000072,0.000000,0.000000,0.000535,0.277248,-0.000819,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000044,0.000030,0.000072,0.000137,0.000137,0.000521,0.276312,-0.000936,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000042,0.000029,0.000071,0.000389,0.000389,0.000508,0.275148,-0.001164,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000041,0.000028,0.000071,0.000551,0.000551,0.000494,0.273848,-0.001300,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000030,0.000040,0.000027,0.000070,0.000663,0.000663,0.000481,0.272466,-0.001382,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000039,0.000026,0.000070,0.000653,0.000653,0.000468,0.271121,-0.001345,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000032,0.000038,0.000025,0.000070,0.000595,0.000595,0.000455,0.269958,-0.001163,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000214,0.000000,0.000000,0.000000,0.000032,0.000037,0.000024,0.000069,0.000540,0.000540,0.000442,0.268984,-0.000974,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000092,0.000000,0.000000,0.000000,0.000033,0.000036,0.000023,0.000069,0.000494,0.000494,0.000429,0.267955,-0.001028,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000035,0.000023,0.000069,0.000419,0.000419,0.000417,0.266992,-0.000963,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000034,0.000022,0.000068,0.000318,0.000318,0.000405,0.266086,-0.000906,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000033,0.000021,0.000068,0.000211,0.000211,0.000394,0.265303,-0.000783,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000032,0.000021,0.000068,0.000060,0.000060,0.000383,0.264683,-0.000619,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000031,0.000020,0.000068,0.000000,0.000000,0.000372,0.264135,-0.000548,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000030,0.000020,0.000067,0.000000,0.000000,0.000362,0.263598,-0.000537,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000029,0.000020,0.000067,0.000000,0.000000,0.000352,0.263072,-0.000526,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000029,0.000019,0.000067,0.000000,0.000000,0.000343,0.262556,-0.000516,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000028,0.000019,0.000067,0.000000,0.000000,0.000334,0.262051,-0.000505,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000027,0.000018,0.000067,0.000000,0.000000,0.000325,0.261556,-0.000495,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000026,0.000018,0.000067,0.000000,0.000000,0.000317,0.261071,-0.000485,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000026,0.000018,0.000067,0.000000,0.000000,0.000309,0.260596,-0.000475,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000025,0.000017,0.000067,0.000000,0.000000,0.000301,0.260130,-0.000466,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000024,0.000017,0.000067,0.000000,0.000000,0.000293,0.259674,-0.000456,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000024,0.000017,0.000068,0.000000,0.000000,0.000286,0.259227,-0.000447,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000023,0.000016,0.000068,0.000000,0.000000,0.000279,0.258789,-0.000438,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000023,0.000016,0.000068,0.000131,0.000131,0.000272,0.258232,-0.000557,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000022,0.000015,0.000068,0.000380,0.000380,0.000265,0.257442,-0.000790,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000022,0.000015,0.000068,0.000542,0.000542,0.000258,0.256509,-0.000933,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000021,0.000014,0.000068,0.000663,0.000663,0.000251,0.255477,-0.001032,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000020,0.000013,0.000068,0.000742,0.000742,0.000244,0.254388,-0.001089,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000020,0.000012,0.000068,0.000693,0.000693,0.000236,0.253369,-0.001019,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000019,0.000011,0.000068,0.000616,0.000616,0.000229,0.252446,-0.000923,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000018,0.000011,0.000068,0.000550,0.000550,0.000221,0.251607,-0.000839,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000018,0.000010,0.000069,0.000467,0.000467,0.000213,0.250865,-0.000742,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000017,0.000010,0.000069,0.000352,0.000352,0.000206,0.250251,-0.000614,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000017,0.000009,0.000069,0.000217,0.000217,0.000199,0.249782,-0.000469,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000016,0.000009,0.000069,0.000066,0.000066,0.000192,0.249470,-0.000311,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000015,0.000009,0.000069,0.000000,0.000000,0.000186,0.249230,-0.000241,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000015,0.000009,0.000069,0.000000,0.000000,0.000179,0.248994,-0.000236,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000014,0.000009,0.000069,0.000000,0.000000,0.000174,0.248763,-0.000231,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000014,0.000008,0.000070,0.000000,0.000000,0.000168,0.248537,-0.000226,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000014,0.000008,0.000070,0.000000,0.000000,0.000163,0.248315,-0.000222,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000013,0.000008,0.000070,0.000000,0.000000,0.000158,0.248097,-0.000217,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000013,0.000008,0.000070,0.000000,0.000000,0.000153,0.247884,-0.000213,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000012,0.000008,0.000071,0.000000,0.000000,0.000148,0.247676,-0.000209,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000012,0.000008,0.000071,0.000000,0.000000,0.000144,0.247471,-0.000204,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000012,0.000007,0.000071,0.000000,0.000000,0.000140,0.247271,-0.000200,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000011,0.000007,0.000072,0.000000,0.000000,0.000136,0.247075,-0.000196,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000011,0.000007,0.000072,0.000000,0.000000,0.000132,0.246883,-0.000192,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000007,0.000072,0.000145,0.000145,0.000128,0.246552,-0.000331,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000010,0.000006,0.000073,0.000386,0.000386,0.000124,0.245992,-0.000560,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000010,0.000006,0.000073,0.000546,0.000546,0.000120,0.245286,-0.000706,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000010,0.000005,0.000073,0.000664,0.000664,0.000116,0.244480,-0.000806,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000009,0.000005,0.000073,0.000661,0.000661,0.000111,0.243693,-0.000787,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000065,0.000009,0.000004,0.000074,0.000608,0.000608,0.000107,0.242981,-0.000712,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000008,0.000000,0.000000,0.000000,0.000065,0.000008,0.000004,0.000074,0.000540,0.000540,0.000102,0.242351,-0.000630,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000008,0.000000,0.000000,0.000000,0.000066,0.000008,0.000003,0.000074,0.000507,0.000507,0.000097,0.241766,-0.000585,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000008,0.000000,0.000000,0.000000,0.000067,0.000008,0.000003,0.000074,0.000430,0.000430,0.000092,0.241267,-0.000498,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000031,0.000000,0.000000,0.000000,0.000067,0.000007,0.000003,0.000075,0.000325,0.000325,0.000087,0.240905,-0.000363,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000008,0.000000,0.000000,0.000000,0.000068,0.000007,0.000002,0.000075,0.000208,0.000208,0.000083,0.240642,-0.000263,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000181,0.000000,0.000001,0.000000,0.000069,0.000007,0.000002,0.000076,0.000070,0.000070,0.000079,0.240687,0.000046,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000293,0.000003,0.000006,0.000003,0.000069,0.000006,0.000003,0.000079,0.000000,0.000000,0.000075,0.240906,0.000219,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000259,0.000004,0.000004,0.000004,0.000070,0.000006,0.000003,0.000080,0.000000,0.000000,0.000072,0.241088,0.000182,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000200,0.000004,0.000003,0.000004,0.000070,0.000006,0.000003,0.000080,0.000000,0.000000,0.000069,0.241210,0.000122,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000270,0.000004,0.000005,0.000004,0.000071,0.000006,0.000003,0.000081,0.000000,0.000000,0.000066,0.241397,0.000187,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000219,0.000003,0.000003,0.000003,0.000072,0.000005,0.000003,0.000080,0.000000,0.000000,0.000064,0.241531,0.000134,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000072,0.000005,0.000003,0.000079,0.000000,0.000000,0.000062,0.241451,-0.000080,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000073,0.000005,0.000003,0.000078,0.000000,0.000000,0.000060,0.241372,-0.000079,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000005,0.000003,0.000078,0.000000,0.000000,0.000058,0.241295,-0.000077,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000005,0.000003,0.000079,0.000000,0.000000,0.000056,0.241220,-0.000075,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000005,0.000003,0.000079,0.000000,0.000000,0.000054,0.241146,-0.000074,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000004,0.000003,0.000080,0.000000,0.000000,0.000053,0.241073,-0.000072,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000003,0.000080,0.000000,0.000000,0.000051,0.241002,-0.000071,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000002,0.000080,0.000127,0.000127,0.000049,0.240808,-0.000194,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000002,0.000081,0.000380,0.000380,0.000048,0.240371,-0.000438,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000002,0.000081,0.000532,0.000532,0.000045,0.239792,-0.000578,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000001,0.000082,0.000645,0.000645,0.000043,0.239115,-0.000677,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000001,0.000082,0.000725,0.000725,0.000040,0.238374,-0.000742,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000000,0.000082,0.000687,0.000687,0.000037,0.237684,-0.000690,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000603,0.000603,0.000034,0.237081,-0.000603,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000542,0.000540,0.000032,0.236541,-0.000540,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000083,0.000458,0.000454,0.000029,0.236087,-0.000454,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000084,0.000341,0.000338,0.000027,0.235749,-0.000338,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000207,0.000205,0.000025,0.235544,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000056,0.000055,0.000023,0.235489,-0.000055,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000021,0.235489,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000020,0.235489,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000085,0.000000,0.000000,0.000018,0.235489,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000086,0.000000,0.000000,0.000017,0.235489,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000015,0.235489,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000087,0.000000,0.000000,0.000014,0.235489,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000013,0.235489,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000012,0.235489,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000011,0.235489,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000000,0.000000,0.000010,0.235489,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000010,0.235489,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000009,0.235489,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000124,0.000122,0.000008,0.235367,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000368,0.000362,0.000008,0.235004,-0.000362,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000090,0.000533,0.000523,0.000007,0.234482,-0.000523,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000644,0.000629,0.000006,0.233852,-0.000629,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000691,0.000672,0.000006,0.233180,-0.000672,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000641,0.000621,0.000005,0.232559,-0.000621,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000575,0.000554,0.000005,0.232005,-0.000554,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000538,0.000516,0.000005,0.231489,-0.000516,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000452,0.000432,0.000004,0.231057,-0.000432,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000337,0.000321,0.000004,0.230737,-0.000321,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000177,0.000168,0.000004,0.230569,-0.000168,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000030,0.000029,0.000003,0.230540,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000000,0.000000,0.000003,0.230540,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000003,0.230540,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000003,0.230540,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000002,0.230540,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000002,0.230541,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.230541,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000001,0.230542,0.000001,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000104,0.000099,0.000001,0.230444,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000356,0.000337,0.000001,0.230107,-0.000337,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000523,0.000494,0.000001,0.229613,-0.000494,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000638,0.000601,0.000001,0.229012,-0.000601,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000723,0.000678,0.000001,0.228335,-0.000678,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000680,0.000634,0.000001,0.227701,-0.000634,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000605,0.000561,0.000001,0.227140,-0.000561,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000543,0.000502,0.000001,0.226639,-0.000502,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000460,0.000423,0.000001,0.226215,-0.000423,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000341,0.000313,0.000001,0.225902,-0.000313,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000197,0.000180,0.000001,0.225722,-0.000180,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000037,0.000034,0.000000,0.225688,-0.000034,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.225688,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000113,0.000103,0.000000,0.225585,-0.000103,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620707.csv b/test/channel_loss/channel_forcing/et/cat-2620707.csv new file mode 100644 index 000000000..29dd75820 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620707.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000083,0.000000,0.000000,0.000000,0.000000,0.000815,0.000061,0.000815,0.000175,0.000175,0.009008,0.375598,-0.002591,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000060,0.000748,0.000054,0.000054,0.008321,0.373097,-0.002501,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000687,0.000059,0.000687,0.000000,0.000000,0.007692,0.370700,-0.002397,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000632,0.000058,0.000632,0.000000,0.000000,0.007118,0.368352,-0.002348,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000583,0.000057,0.000583,0.000000,0.000000,0.006592,0.366053,-0.002300,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000538,0.000055,0.000538,0.000000,0.000000,0.006109,0.363800,-0.002253,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000497,0.000054,0.000497,0.000000,0.000000,0.005667,0.361594,-0.002206,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000459,0.000053,0.000460,0.000000,0.000000,0.005261,0.359432,-0.002161,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000425,0.000052,0.000426,0.000000,0.000000,0.004887,0.357315,-0.002117,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000394,0.000051,0.000395,0.000000,0.000000,0.004544,0.355242,-0.002074,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000366,0.000050,0.000367,0.000000,0.000000,0.004228,0.353211,-0.002031,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000340,0.000049,0.000341,0.000000,0.000000,0.003938,0.351221,-0.001989,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000316,0.000048,0.000317,0.000000,0.000000,0.003670,0.349273,-0.001949,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000294,0.000047,0.000295,0.000000,0.000000,0.003423,0.347364,-0.001909,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000274,0.000046,0.000276,0.000141,0.000141,0.003195,0.345356,-0.002008,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000255,0.000045,0.000257,0.000390,0.000390,0.002984,0.343145,-0.002211,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000238,0.000044,0.000240,0.000537,0.000537,0.002790,0.340836,-0.002310,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000222,0.000042,0.000225,0.000647,0.000647,0.002610,0.338466,-0.002369,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000208,0.000041,0.000211,0.000545,0.000545,0.002443,0.336245,-0.002221,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000387,0.000000,0.000000,0.000000,0.000003,0.000195,0.000040,0.000198,0.000509,0.000509,0.002289,0.334484,-0.001760,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000495,0.000000,0.000000,0.000000,0.000004,0.000182,0.000040,0.000186,0.000447,0.000447,0.002146,0.332926,-0.001559,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000600,0.000004,0.000008,0.000004,0.000004,0.000171,0.000039,0.000179,0.000349,0.000349,0.002014,0.331591,-0.001335,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000601,0.000007,0.000010,0.000007,0.000004,0.000160,0.000038,0.000172,0.000314,0.000314,0.001892,0.330317,-0.001274,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000660,0.000015,0.000021,0.000015,0.000005,0.000151,0.000038,0.000170,0.000239,0.000239,0.001779,0.329188,-0.001128,1.000000,0.000011 +24,2022-08-02 00:00:00,0.000586,0.000018,0.000021,0.000018,0.000005,0.000142,0.000037,0.000165,0.000164,0.000164,0.001675,0.328085,-0.001104,1.000000,0.000013 +25,2022-08-02 01:00:00,0.001078,0.000069,0.000109,0.000069,0.000005,0.000133,0.000037,0.000208,0.000072,0.000072,0.001578,0.327488,-0.000597,1.000000,0.000053 +26,2022-08-02 02:00:00,0.001193,0.000114,0.000150,0.000114,0.000006,0.000126,0.000036,0.000246,0.000000,0.000000,0.001489,0.327047,-0.000441,1.000000,0.000090 +27,2022-08-02 03:00:00,0.001145,0.000136,0.000139,0.000136,0.000006,0.000119,0.000036,0.000261,0.000000,0.000000,0.001407,0.326579,-0.000468,1.000000,0.000093 +28,2022-08-02 04:00:00,0.001145,0.000141,0.000139,0.000141,0.000007,0.000112,0.000036,0.000260,0.000000,0.000000,0.001331,0.326121,-0.000458,1.000000,0.000090 +29,2022-08-02 05:00:00,0.001046,0.000127,0.000117,0.000127,0.000007,0.000106,0.000036,0.000240,0.000000,0.000000,0.001260,0.325596,-0.000524,1.000000,0.000081 +30,2022-08-02 06:00:00,0.001067,0.000124,0.000122,0.000124,0.000007,0.000101,0.000035,0.000232,0.000000,0.000000,0.001195,0.325099,-0.000497,1.000000,0.000078 +31,2022-08-02 07:00:00,0.000000,0.000054,0.000000,0.000054,0.000008,0.000095,0.000035,0.000157,0.000000,0.000000,0.001135,0.323686,-0.001413,1.000000,0.000024 +32,2022-08-02 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000008,0.000091,0.000034,0.000123,0.000000,0.000000,0.001078,0.322302,-0.001384,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000086,0.000033,0.000095,0.000000,0.000000,0.001025,0.320946,-0.001356,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000082,0.000033,0.000091,0.000000,0.000000,0.000976,0.319618,-0.001328,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000078,0.000032,0.000088,0.000000,0.000000,0.000930,0.318317,-0.001301,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000074,0.000031,0.000085,0.000000,0.000000,0.000887,0.317042,-0.001274,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000011,0.000071,0.000031,0.000082,0.000000,0.000000,0.000847,0.315891,-0.001151,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000169,0.000000,0.000000,0.000000,0.000011,0.000068,0.000030,0.000080,0.000127,0.000127,0.000809,0.314707,-0.001184,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000143,0.000000,0.000000,0.000000,0.000012,0.000065,0.000029,0.000077,0.000329,0.000329,0.000774,0.313324,-0.001383,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000058,0.000000,0.000000,0.000000,0.000012,0.000062,0.000029,0.000074,0.000457,0.000457,0.000740,0.311761,-0.001563,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000058,0.000000,0.000000,0.000000,0.000013,0.000059,0.000028,0.000072,0.000548,0.000548,0.000709,0.310141,-0.001620,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000192,0.000000,0.000000,0.000000,0.000013,0.000057,0.000027,0.000070,0.000609,0.000609,0.000679,0.308625,-0.001516,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000033,0.000000,0.000000,0.000000,0.000014,0.000054,0.000026,0.000068,0.000545,0.000545,0.000650,0.307048,-0.001577,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000052,0.000025,0.000067,0.000500,0.000500,0.000624,0.305515,-0.001533,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000050,0.000025,0.000065,0.000494,0.000494,0.000598,0.304019,-0.001496,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000048,0.000024,0.000064,0.000427,0.000427,0.000574,0.302620,-0.001399,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000046,0.000023,0.000062,0.000323,0.000323,0.000551,0.301351,-0.001269,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000044,0.000023,0.000061,0.000196,0.000196,0.000530,0.300233,-0.001118,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000011,0.000000,0.000000,0.000000,0.000017,0.000043,0.000022,0.000060,0.000044,0.000044,0.000509,0.299298,-0.000936,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000011,0.000000,0.000000,0.000000,0.000018,0.000041,0.000022,0.000059,0.000000,0.000000,0.000490,0.298424,-0.000874,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000019,0.000039,0.000021,0.000058,0.000000,0.000000,0.000472,0.297568,-0.000856,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000038,0.000021,0.000057,0.000000,0.000000,0.000455,0.296719,-0.000849,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000020,0.000037,0.000020,0.000056,0.000000,0.000000,0.000439,0.295899,-0.000821,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000035,0.000020,0.000056,0.000000,0.000000,0.000423,0.295084,-0.000815,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000034,0.000020,0.000055,0.000000,0.000000,0.000409,0.294286,-0.000798,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000033,0.000019,0.000055,0.000000,0.000000,0.000395,0.293504,-0.000782,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000032,0.000019,0.000054,0.000000,0.000000,0.000382,0.292738,-0.000766,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000031,0.000018,0.000054,0.000000,0.000000,0.000370,0.291988,-0.000750,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000030,0.000018,0.000053,0.000000,0.000000,0.000358,0.291253,-0.000735,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000029,0.000018,0.000053,0.000000,0.000000,0.000347,0.290534,-0.000720,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000028,0.000017,0.000053,0.000000,0.000000,0.000336,0.289829,-0.000705,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000027,0.000017,0.000052,0.000138,0.000138,0.000326,0.289004,-0.000825,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000026,0.000016,0.000052,0.000389,0.000389,0.000316,0.287949,-0.001055,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000026,0.000016,0.000052,0.000541,0.000541,0.000306,0.286767,-0.001182,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000025,0.000015,0.000052,0.000648,0.000648,0.000296,0.285505,-0.001262,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000024,0.000014,0.000052,0.000635,0.000635,0.000287,0.284281,-0.001224,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000023,0.000014,0.000052,0.000581,0.000581,0.000277,0.283136,-0.001145,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000432,0.000000,0.000000,0.000000,0.000029,0.000022,0.000014,0.000051,0.000518,0.000518,0.000269,0.282498,-0.000638,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000146,0.000000,0.000000,0.000000,0.000030,0.000022,0.000013,0.000051,0.000482,0.000482,0.000260,0.281629,-0.000869,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000013,0.000051,0.000420,0.000420,0.000252,0.280696,-0.000933,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000020,0.000012,0.000051,0.000313,0.000313,0.000244,0.279885,-0.000810,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000020,0.000012,0.000051,0.000207,0.000207,0.000236,0.279196,-0.000689,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000019,0.000012,0.000051,0.000057,0.000057,0.000228,0.278668,-0.000529,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000018,0.000011,0.000051,0.000000,0.000000,0.000221,0.278206,-0.000462,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000018,0.000011,0.000051,0.000000,0.000000,0.000214,0.277754,-0.000452,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000017,0.000011,0.000052,0.000000,0.000000,0.000208,0.277311,-0.000443,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000017,0.000011,0.000052,0.000000,0.000000,0.000202,0.276877,-0.000434,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000016,0.000010,0.000052,0.000000,0.000000,0.000196,0.276452,-0.000425,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000016,0.000010,0.000052,0.000000,0.000000,0.000190,0.276035,-0.000416,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000010,0.000052,0.000000,0.000000,0.000185,0.275628,-0.000408,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000010,0.000052,0.000000,0.000000,0.000180,0.275228,-0.000399,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000015,0.000010,0.000053,0.000000,0.000000,0.000175,0.274837,-0.000391,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000009,0.000053,0.000000,0.000000,0.000170,0.274454,-0.000383,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000009,0.000053,0.000000,0.000000,0.000166,0.274078,-0.000375,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000013,0.000009,0.000053,0.000000,0.000000,0.000161,0.273711,-0.000368,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000013,0.000009,0.000054,0.000133,0.000133,0.000157,0.273220,-0.000490,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000013,0.000008,0.000054,0.000383,0.000383,0.000153,0.272495,-0.000725,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000012,0.000008,0.000054,0.000538,0.000538,0.000148,0.271633,-0.000862,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000012,0.000007,0.000054,0.000649,0.000649,0.000144,0.270679,-0.000954,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000012,0.000007,0.000055,0.000722,0.000722,0.000139,0.269674,-0.001005,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000011,0.000006,0.000055,0.000664,0.000664,0.000134,0.268746,-0.000928,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000011,0.000006,0.000055,0.000592,0.000592,0.000130,0.267908,-0.000838,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000010,0.000006,0.000055,0.000529,0.000529,0.000125,0.267149,-0.000759,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000010,0.000005,0.000056,0.000458,0.000458,0.000120,0.266475,-0.000674,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000010,0.000005,0.000056,0.000341,0.000341,0.000116,0.265929,-0.000546,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000009,0.000005,0.000056,0.000212,0.000212,0.000111,0.265521,-0.000408,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000009,0.000005,0.000056,0.000065,0.000065,0.000107,0.265265,-0.000256,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000009,0.000005,0.000057,0.000000,0.000000,0.000103,0.265078,-0.000187,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000008,0.000005,0.000057,0.000000,0.000000,0.000099,0.264894,-0.000183,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000008,0.000004,0.000057,0.000000,0.000000,0.000096,0.264715,-0.000179,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000008,0.000004,0.000057,0.000000,0.000000,0.000092,0.264539,-0.000176,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000007,0.000004,0.000058,0.000000,0.000000,0.000089,0.264367,-0.000172,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000007,0.000004,0.000058,0.000000,0.000000,0.000086,0.264198,-0.000169,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000007,0.000004,0.000059,0.000000,0.000000,0.000083,0.264033,-0.000165,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000007,0.000004,0.000059,0.000000,0.000000,0.000080,0.263871,-0.000162,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000006,0.000004,0.000059,0.000000,0.000000,0.000078,0.263713,-0.000158,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000006,0.000004,0.000060,0.000000,0.000000,0.000075,0.263558,-0.000155,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000006,0.000004,0.000060,0.000000,0.000000,0.000073,0.263406,-0.000152,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000006,0.000004,0.000060,0.000000,0.000000,0.000071,0.263257,-0.000149,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000006,0.000004,0.000061,0.000148,0.000148,0.000069,0.262966,-0.000290,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000006,0.000003,0.000061,0.000390,0.000390,0.000066,0.262444,-0.000522,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000005,0.000003,0.000062,0.000542,0.000542,0.000064,0.261785,-0.000660,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000005,0.000003,0.000062,0.000651,0.000651,0.000061,0.261031,-0.000754,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000005,0.000002,0.000062,0.000636,0.000636,0.000059,0.260308,-0.000723,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000031,0.000000,0.000000,0.000000,0.000058,0.000005,0.000002,0.000063,0.000589,0.000589,0.000056,0.259676,-0.000632,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000031,0.000000,0.000000,0.000000,0.000059,0.000004,0.000002,0.000063,0.000521,0.000521,0.000053,0.259123,-0.000553,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000031,0.000000,0.000000,0.000000,0.000059,0.000004,0.000001,0.000063,0.000486,0.000486,0.000050,0.258617,-0.000506,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000031,0.000000,0.000000,0.000000,0.000060,0.000004,0.000001,0.000064,0.000414,0.000414,0.000047,0.258191,-0.000425,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000060,0.000004,0.000001,0.000064,0.000307,0.000307,0.000044,0.257905,-0.000287,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000061,0.000003,0.000001,0.000064,0.000198,0.000198,0.000042,0.257706,-0.000199,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000241,0.000002,0.000003,0.000002,0.000061,0.000003,0.000001,0.000066,0.000069,0.000069,0.000039,0.257839,0.000133,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000401,0.000010,0.000016,0.000010,0.000062,0.000003,0.000001,0.000075,0.000000,0.000000,0.000037,0.258182,0.000343,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000274,0.000009,0.000008,0.000009,0.000062,0.000003,0.000001,0.000074,0.000000,0.000000,0.000035,0.258401,0.000219,1.000000,0.000007 +124,2022-08-06 04:00:00,0.000194,0.000007,0.000004,0.000007,0.000063,0.000003,0.000001,0.000073,0.000000,0.000000,0.000034,0.258541,0.000140,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000299,0.000007,0.000009,0.000007,0.000063,0.000003,0.000001,0.000074,0.000000,0.000000,0.000033,0.258775,0.000235,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000288,0.000008,0.000008,0.000008,0.000064,0.000003,0.000001,0.000074,0.000000,0.000000,0.000031,0.258995,0.000220,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000065,0.000003,0.000001,0.000071,0.000000,0.000000,0.000030,0.258937,-0.000059,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000065,0.000002,0.000001,0.000069,0.000000,0.000000,0.000029,0.258879,-0.000057,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000002,0.000001,0.000068,0.000000,0.000000,0.000028,0.258823,-0.000056,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000002,0.000001,0.000068,0.000000,0.000000,0.000027,0.258768,-0.000055,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000001,0.000069,0.000000,0.000000,0.000026,0.258714,-0.000054,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000001,0.000069,0.000000,0.000000,0.000026,0.258662,-0.000053,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000002,0.000001,0.000070,0.000000,0.000000,0.000025,0.258610,-0.000052,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000002,0.000001,0.000070,0.000130,0.000130,0.000024,0.258432,-0.000178,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000001,0.000071,0.000380,0.000380,0.000023,0.258012,-0.000420,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000002,0.000001,0.000071,0.000527,0.000527,0.000022,0.257458,-0.000555,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000000,0.000071,0.000634,0.000634,0.000021,0.256809,-0.000648,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000000,0.000072,0.000710,0.000710,0.000019,0.256100,-0.000710,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000664,0.000664,0.000018,0.255435,-0.000664,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000579,0.000576,0.000016,0.254860,-0.000576,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000528,0.000523,0.000015,0.254337,-0.000523,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000450,0.000444,0.000014,0.253893,-0.000444,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000330,0.000324,0.000013,0.253569,-0.000324,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000203,0.000199,0.000012,0.253369,-0.000199,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000054,0.000053,0.000011,0.253316,-0.000053,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000010,0.253316,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000009,0.253316,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000009,0.253316,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000008,0.253316,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000076,0.000000,0.000000,0.000007,0.253316,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000000,0.000000,0.000007,0.253316,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000077,0.000000,0.000000,0.000006,0.253316,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000078,0.000000,0.000000,0.000006,0.253316,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000005,0.253316,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000005,0.253316,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000079,0.000000,0.000000,0.000005,0.253316,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000004,0.253316,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000080,0.000125,0.000122,0.000004,0.253194,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000367,0.000359,0.000004,0.252835,-0.000359,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000522,0.000509,0.000003,0.252327,-0.000509,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000081,0.000629,0.000611,0.000003,0.251716,-0.000611,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000672,0.000649,0.000003,0.251066,-0.000649,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000082,0.000626,0.000603,0.000003,0.250464,-0.000603,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000557,0.000533,0.000002,0.249931,-0.000533,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000523,0.000499,0.000002,0.249432,-0.000499,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000083,0.000445,0.000422,0.000002,0.249010,-0.000422,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000329,0.000311,0.000002,0.248698,-0.000311,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000173,0.000163,0.000002,0.248536,-0.000163,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000028,0.000026,0.000002,0.248509,-0.000026,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000001,0.248509,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000107,0.000101,0.000001,0.248408,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000357,0.000336,0.000001,0.248072,-0.000336,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000515,0.000483,0.000000,0.247589,-0.000483,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000090,0.000624,0.000584,0.000000,0.247005,-0.000584,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000697,0.000649,0.000000,0.246356,-0.000649,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000656,0.000607,0.000000,0.245749,-0.000607,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000578,0.000533,0.000000,0.245216,-0.000533,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000529,0.000485,0.000000,0.244730,-0.000485,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000453,0.000414,0.000000,0.244316,-0.000414,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000330,0.000300,0.000000,0.244016,-0.000300,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000193,0.000175,0.000000,0.243840,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000036,0.000033,0.000000,0.243807,-0.000033,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.243807,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000117,0.000106,0.000000,0.243702,-0.000106,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620708.csv b/test/channel_loss/channel_forcing/et/cat-2620708.csv new file mode 100644 index 000000000..5f3ee8fe7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620708.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000814,0.000053,0.000814,0.000164,0.000164,0.009000,0.377390,-0.002721,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000052,0.000746,0.000047,0.000047,0.008306,0.374777,-0.002613,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000685,0.000051,0.000685,0.000000,0.000000,0.007672,0.372261,-0.002516,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000630,0.000050,0.000630,0.000000,0.000000,0.007092,0.369796,-0.002465,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000580,0.000049,0.000580,0.000000,0.000000,0.006561,0.367380,-0.002416,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000534,0.000048,0.000535,0.000000,0.000000,0.006074,0.365012,-0.002368,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000493,0.000047,0.000493,0.000000,0.000000,0.005628,0.362691,-0.002321,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000456,0.000046,0.000456,0.000000,0.000000,0.005219,0.360417,-0.002274,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000421,0.000045,0.000422,0.000000,0.000000,0.004842,0.358188,-0.002229,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000390,0.000044,0.000391,0.000000,0.000000,0.004497,0.356003,-0.002185,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000361,0.000043,0.000362,0.000000,0.000000,0.004179,0.353862,-0.002141,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000335,0.000042,0.000336,0.000000,0.000000,0.003886,0.351764,-0.002098,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000311,0.000042,0.000312,0.000000,0.000000,0.003617,0.349708,-0.002056,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000289,0.000041,0.000291,0.000000,0.000000,0.003368,0.347693,-0.002015,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000269,0.000040,0.000271,0.000135,0.000135,0.003139,0.345585,-0.002108,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000250,0.000039,0.000252,0.000382,0.000382,0.002928,0.343277,-0.002308,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000233,0.000038,0.000236,0.000533,0.000533,0.002733,0.340868,-0.002409,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000217,0.000037,0.000220,0.000636,0.000636,0.002553,0.338406,-0.002462,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000203,0.000036,0.000206,0.000526,0.000526,0.002386,0.336101,-0.002305,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000438,0.000000,0.000000,0.000000,0.000003,0.000190,0.000035,0.000193,0.000488,0.000488,0.002231,0.334307,-0.001793,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000483,0.000000,0.000001,0.000000,0.000004,0.000177,0.000035,0.000181,0.000429,0.000429,0.002089,0.332651,-0.001656,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000492,0.000002,0.000004,0.000002,0.000004,0.000166,0.000034,0.000172,0.000341,0.000341,0.001957,0.331121,-0.001531,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000429,0.000003,0.000003,0.000003,0.000004,0.000155,0.000033,0.000162,0.000304,0.000304,0.001835,0.329597,-0.001524,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000442,0.000006,0.000008,0.000006,0.000005,0.000146,0.000033,0.000156,0.000228,0.000228,0.001722,0.328185,-0.001412,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000429,0.000010,0.000013,0.000010,0.000005,0.000137,0.000032,0.000152,0.000152,0.000152,0.001618,0.326857,-0.001327,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000790,0.000050,0.000083,0.000050,0.000006,0.000128,0.000032,0.000184,0.000066,0.000066,0.001521,0.325926,-0.000931,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001269,0.000152,0.000233,0.000152,0.000006,0.000121,0.000032,0.000278,0.000000,0.000000,0.001432,0.325401,-0.000525,1.000000,0.000122 +27,2022-08-02 03:00:00,0.001237,0.000197,0.000222,0.000197,0.000007,0.000114,0.000031,0.000317,0.000000,0.000000,0.001350,0.324865,-0.000536,1.000000,0.000147 +28,2022-08-02 04:00:00,0.001236,0.000224,0.000222,0.000224,0.000007,0.000107,0.000031,0.000338,0.000000,0.000000,0.001274,0.324339,-0.000526,1.000000,0.000144 +29,2022-08-02 05:00:00,0.001156,0.000208,0.000196,0.000208,0.000007,0.000101,0.000031,0.000316,0.000000,0.000000,0.001203,0.323770,-0.000569,1.000000,0.000133 +30,2022-08-02 06:00:00,0.001168,0.000203,0.000200,0.000203,0.000008,0.000096,0.000031,0.000307,0.000000,0.000000,0.001138,0.323221,-0.000549,1.000000,0.000129 +31,2022-08-02 07:00:00,0.000000,0.000089,0.000000,0.000089,0.000008,0.000091,0.000030,0.000188,0.000000,0.000000,0.001078,0.321735,-0.001487,1.000000,0.000040 +32,2022-08-02 08:00:00,0.000000,0.000040,0.000000,0.000040,0.000009,0.000086,0.000029,0.000135,0.000000,0.000000,0.001022,0.320277,-0.001457,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000081,0.000029,0.000091,0.000000,0.000000,0.000969,0.318849,-0.001428,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000077,0.000028,0.000087,0.000000,0.000000,0.000920,0.317450,-0.001400,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000073,0.000028,0.000084,0.000000,0.000000,0.000875,0.316078,-0.001372,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000070,0.000027,0.000081,0.000000,0.000000,0.000832,0.314734,-0.001344,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000118,0.000001,0.000002,0.000001,0.000011,0.000066,0.000027,0.000079,0.000000,0.000000,0.000792,0.313530,-0.001204,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000136,0.000001,0.000000,0.000001,0.000012,0.000063,0.000026,0.000076,0.000123,0.000123,0.000755,0.312249,-0.001281,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000136,0.000000,0.000000,0.000000,0.000013,0.000060,0.000026,0.000073,0.000322,0.000322,0.000720,0.310799,-0.001450,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000131,0.000000,0.000000,0.000000,0.000013,0.000058,0.000025,0.000071,0.000451,0.000451,0.000688,0.309247,-0.001552,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000131,0.000000,0.000000,0.000000,0.000014,0.000055,0.000024,0.000069,0.000542,0.000542,0.000657,0.307636,-0.001611,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000405,0.000000,0.000000,0.000000,0.000014,0.000053,0.000024,0.000067,0.000598,0.000598,0.000628,0.306271,-0.001365,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000015,0.000050,0.000023,0.000065,0.000544,0.000544,0.000601,0.304687,-0.001584,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000048,0.000022,0.000064,0.000488,0.000488,0.000575,0.303092,-0.001595,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000046,0.000022,0.000062,0.000484,0.000484,0.000551,0.301533,-0.001559,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000044,0.000021,0.000061,0.000416,0.000416,0.000528,0.300071,-0.001462,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000042,0.000021,0.000060,0.000312,0.000312,0.000506,0.298740,-0.001330,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000019,0.000000,0.000000,0.000000,0.000018,0.000041,0.000020,0.000058,0.000185,0.000185,0.000486,0.297580,-0.001160,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000039,0.000020,0.000057,0.000036,0.000036,0.000467,0.296569,-0.001011,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000037,0.000019,0.000057,0.000000,0.000000,0.000448,0.295614,-0.000955,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000036,0.000019,0.000056,0.000000,0.000000,0.000431,0.294678,-0.000936,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000035,0.000019,0.000055,0.000000,0.000000,0.000415,0.293761,-0.000917,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000033,0.000018,0.000054,0.000000,0.000000,0.000400,0.292862,-0.000899,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000032,0.000018,0.000054,0.000000,0.000000,0.000386,0.291981,-0.000881,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000031,0.000017,0.000053,0.000000,0.000000,0.000372,0.291117,-0.000863,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000030,0.000017,0.000053,0.000000,0.000000,0.000359,0.290271,-0.000846,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000029,0.000017,0.000052,0.000000,0.000000,0.000347,0.289442,-0.000829,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000028,0.000016,0.000052,0.000000,0.000000,0.000335,0.288629,-0.000813,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000027,0.000016,0.000052,0.000000,0.000000,0.000324,0.287832,-0.000797,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000026,0.000016,0.000052,0.000000,0.000000,0.000314,0.287052,-0.000781,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000025,0.000015,0.000052,0.000000,0.000000,0.000304,0.286287,-0.000765,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000025,0.000015,0.000051,0.000131,0.000131,0.000295,0.285409,-0.000878,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000024,0.000015,0.000051,0.000383,0.000383,0.000286,0.284301,-0.001108,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000023,0.000014,0.000051,0.000534,0.000534,0.000277,0.283067,-0.001234,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000022,0.000014,0.000051,0.000640,0.000640,0.000268,0.281754,-0.001313,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000022,0.000013,0.000051,0.000622,0.000622,0.000259,0.280485,-0.001269,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000013,0.000051,0.000567,0.000567,0.000251,0.279296,-0.001190,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000565,0.000000,0.000001,0.000000,0.000031,0.000020,0.000012,0.000051,0.000505,0.000505,0.000243,0.278743,-0.000553,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000127,0.000000,0.000000,0.000000,0.000032,0.000020,0.000012,0.000051,0.000465,0.000465,0.000235,0.277812,-0.000931,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000019,0.000012,0.000051,0.000400,0.000400,0.000228,0.276840,-0.000972,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000018,0.000011,0.000051,0.000300,0.000300,0.000221,0.275985,-0.000855,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000018,0.000011,0.000051,0.000197,0.000197,0.000214,0.275247,-0.000737,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000017,0.000011,0.000052,0.000049,0.000049,0.000207,0.274669,-0.000578,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000017,0.000010,0.000052,0.000000,0.000000,0.000201,0.274151,-0.000518,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000016,0.000010,0.000052,0.000000,0.000000,0.000195,0.273644,-0.000508,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000016,0.000010,0.000052,0.000000,0.000000,0.000189,0.273146,-0.000498,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000010,0.000052,0.000000,0.000000,0.000184,0.272658,-0.000488,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000015,0.000010,0.000053,0.000000,0.000000,0.000179,0.272181,-0.000478,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000014,0.000009,0.000053,0.000000,0.000000,0.000174,0.271712,-0.000468,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000009,0.000053,0.000000,0.000000,0.000169,0.271253,-0.000459,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000014,0.000009,0.000053,0.000000,0.000000,0.000164,0.270803,-0.000450,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000013,0.000009,0.000054,0.000000,0.000000,0.000160,0.270362,-0.000441,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000013,0.000009,0.000054,0.000000,0.000000,0.000156,0.269930,-0.000432,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000013,0.000009,0.000054,0.000000,0.000000,0.000152,0.269507,-0.000423,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000012,0.000008,0.000055,0.000000,0.000000,0.000148,0.269092,-0.000415,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000012,0.000008,0.000055,0.000126,0.000126,0.000144,0.268561,-0.000531,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000012,0.000008,0.000055,0.000376,0.000376,0.000140,0.267797,-0.000765,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000011,0.000007,0.000056,0.000533,0.000533,0.000136,0.266893,-0.000903,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000011,0.000007,0.000056,0.000641,0.000641,0.000132,0.265903,-0.000991,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000011,0.000007,0.000056,0.000713,0.000713,0.000128,0.264860,-0.001042,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000010,0.000006,0.000057,0.000652,0.000652,0.000124,0.263900,-0.000961,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000010,0.000006,0.000057,0.000577,0.000577,0.000120,0.263031,-0.000869,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000010,0.000006,0.000057,0.000515,0.000515,0.000116,0.262240,-0.000790,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000009,0.000005,0.000058,0.000444,0.000444,0.000112,0.261535,-0.000705,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000009,0.000005,0.000058,0.000333,0.000333,0.000108,0.260953,-0.000582,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000009,0.000005,0.000058,0.000202,0.000202,0.000104,0.260511,-0.000442,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000008,0.000005,0.000059,0.000056,0.000056,0.000101,0.260221,-0.000290,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000008,0.000005,0.000059,0.000000,0.000000,0.000097,0.259991,-0.000230,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000008,0.000005,0.000060,0.000000,0.000000,0.000094,0.259766,-0.000225,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000008,0.000004,0.000060,0.000000,0.000000,0.000091,0.259545,-0.000221,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000007,0.000004,0.000060,0.000000,0.000000,0.000088,0.259329,-0.000216,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000007,0.000004,0.000061,0.000000,0.000000,0.000085,0.259117,-0.000212,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000007,0.000004,0.000061,0.000000,0.000000,0.000082,0.258909,-0.000208,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000007,0.000004,0.000062,0.000000,0.000000,0.000080,0.258706,-0.000204,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000006,0.000004,0.000062,0.000000,0.000000,0.000077,0.258506,-0.000200,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000006,0.000004,0.000063,0.000000,0.000000,0.000075,0.258311,-0.000196,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000006,0.000004,0.000063,0.000000,0.000000,0.000073,0.258119,-0.000192,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000006,0.000004,0.000063,0.000000,0.000000,0.000071,0.257931,-0.000188,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000006,0.000004,0.000064,0.000000,0.000000,0.000069,0.257747,-0.000184,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000006,0.000004,0.000064,0.000140,0.000140,0.000067,0.257430,-0.000317,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000005,0.000003,0.000065,0.000382,0.000382,0.000065,0.256881,-0.000549,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000005,0.000003,0.000065,0.000536,0.000536,0.000063,0.256193,-0.000688,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000005,0.000003,0.000066,0.000645,0.000645,0.000060,0.255411,-0.000782,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000005,0.000002,0.000066,0.000625,0.000625,0.000058,0.254665,-0.000747,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000005,0.000002,0.000067,0.000580,0.000580,0.000056,0.253977,-0.000688,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000004,0.000002,0.000067,0.000509,0.000509,0.000053,0.253373,-0.000604,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000004,0.000002,0.000067,0.000479,0.000479,0.000051,0.252810,-0.000563,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000004,0.000001,0.000068,0.000403,0.000403,0.000048,0.252333,-0.000477,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000004,0.000001,0.000068,0.000299,0.000299,0.000046,0.252030,-0.000304,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000004,0.000001,0.000069,0.000189,0.000189,0.000043,0.251778,-0.000251,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000232,0.000002,0.000004,0.000002,0.000066,0.000003,0.000001,0.000071,0.000061,0.000061,0.000041,0.251880,0.000102,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000313,0.000009,0.000014,0.000009,0.000066,0.000003,0.000001,0.000078,0.000000,0.000000,0.000039,0.252110,0.000230,1.000000,0.000007 +123,2022-08-06 03:00:00,0.000232,0.000009,0.000008,0.000009,0.000067,0.000003,0.000001,0.000079,0.000000,0.000000,0.000038,0.252262,0.000151,1.000000,0.000006 +124,2022-08-06 04:00:00,0.000179,0.000007,0.000005,0.000007,0.000067,0.000003,0.000002,0.000078,0.000000,0.000000,0.000036,0.252361,0.000100,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000211,0.000006,0.000007,0.000006,0.000068,0.000003,0.000002,0.000077,0.000000,0.000000,0.000035,0.252489,0.000128,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000249,0.000008,0.000009,0.000008,0.000068,0.000003,0.000002,0.000079,0.000000,0.000000,0.000034,0.252649,0.000160,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000069,0.000003,0.000002,0.000075,0.000000,0.000000,0.000033,0.252570,-0.000079,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000070,0.000003,0.000002,0.000074,0.000000,0.000000,0.000031,0.252493,-0.000077,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000002,0.000073,0.000000,0.000000,0.000030,0.252417,-0.000076,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000073,0.000000,0.000000,0.000029,0.252343,-0.000074,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000074,0.000000,0.000000,0.000029,0.252271,-0.000073,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000001,0.000074,0.000000,0.000000,0.000028,0.252200,-0.000071,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000001,0.000075,0.000000,0.000000,0.000027,0.252130,-0.000070,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000001,0.000075,0.000123,0.000123,0.000026,0.251941,-0.000189,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000001,0.000076,0.000369,0.000369,0.000025,0.251516,-0.000426,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000001,0.000076,0.000520,0.000520,0.000024,0.250949,-0.000566,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000001,0.000076,0.000628,0.000628,0.000023,0.250289,-0.000660,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000002,0.000000,0.000077,0.000698,0.000698,0.000021,0.249574,-0.000715,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000002,0.000000,0.000077,0.000653,0.000653,0.000020,0.248916,-0.000658,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000002,0.000000,0.000078,0.000573,0.000573,0.000018,0.248343,-0.000573,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000511,0.000509,0.000017,0.247834,-0.000509,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000079,0.000435,0.000432,0.000016,0.247402,-0.000432,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000321,0.000318,0.000014,0.247084,-0.000318,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000195,0.000193,0.000013,0.246891,-0.000193,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000047,0.000046,0.000012,0.246845,-0.000046,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000011,0.246845,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000000,0.000000,0.000010,0.246845,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000000,0.000000,0.000010,0.246845,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000082,0.000000,0.000000,0.000009,0.246845,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000001,0.000000,0.000082,0.000000,0.000000,0.000008,0.246845,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000082,0.000000,0.000000,0.000008,0.246845,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000001,0.000000,0.000083,0.000000,0.000000,0.000007,0.246845,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000001,0.000000,0.000083,0.000000,0.000000,0.000006,0.246845,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000000,0.000000,0.000006,0.246845,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000006,0.246845,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000000,0.000000,0.000005,0.246845,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000005,0.246845,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000117,0.000116,0.000004,0.246730,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000360,0.000354,0.000004,0.246375,-0.000354,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000514,0.000504,0.000004,0.245871,-0.000504,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000087,0.000622,0.000609,0.000003,0.245262,-0.000609,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000659,0.000641,0.000003,0.244621,-0.000641,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000088,0.000613,0.000593,0.000003,0.244028,-0.000593,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000543,0.000524,0.000003,0.243504,-0.000524,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000507,0.000486,0.000002,0.243018,-0.000486,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000429,0.000410,0.000002,0.242608,-0.000410,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000318,0.000303,0.000002,0.242305,-0.000303,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000161,0.000153,0.000002,0.242152,-0.000153,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000023,0.000022,0.000002,0.242130,-0.000022,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000000,0.000000,0.000002,0.242130,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000002,0.242130,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000001,0.242130,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000102,0.000096,0.000001,0.242034,-0.000096,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000349,0.000331,0.000001,0.241703,-0.000331,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000507,0.000480,0.000001,0.241223,-0.000480,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000615,0.000579,0.000001,0.240644,-0.000579,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000682,0.000639,0.000000,0.240004,-0.000639,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000639,0.000596,0.000000,0.239408,-0.000596,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000558,0.000518,0.000000,0.238890,-0.000518,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000503,0.000465,0.000000,0.238425,-0.000465,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000433,0.000399,0.000000,0.238026,-0.000399,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000318,0.000291,0.000000,0.237735,-0.000291,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000181,0.000165,0.000000,0.237569,-0.000165,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000027,0.000025,0.000000,0.237544,-0.000025,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.237544,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000110,0.000100,0.000000,0.237444,-0.000100,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620709.csv b/test/channel_loss/channel_forcing/et/cat-2620709.csv new file mode 100644 index 000000000..a7361d962 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620709.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000819,0.000110,0.000819,0.000166,0.000166,0.009055,0.375276,-0.002958,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000756,0.000108,0.000756,0.000047,0.000047,0.008407,0.372432,-0.002844,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000699,0.000106,0.000699,0.000000,0.000000,0.007814,0.369690,-0.002741,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000647,0.000104,0.000647,0.000000,0.000000,0.007271,0.367004,-0.002686,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000600,0.000102,0.000600,0.000000,0.000000,0.006773,0.364371,-0.002633,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000557,0.000099,0.000557,0.000000,0.000000,0.006316,0.361791,-0.002580,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000518,0.000097,0.000518,0.000000,0.000000,0.005895,0.359262,-0.002529,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000482,0.000096,0.000483,0.000000,0.000000,0.005509,0.356783,-0.002478,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000449,0.000094,0.000450,0.000000,0.000000,0.005153,0.354354,-0.002429,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000420,0.000092,0.000420,0.000000,0.000000,0.004825,0.351974,-0.002381,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000392,0.000090,0.000393,0.000000,0.000000,0.004523,0.349640,-0.002333,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000367,0.000088,0.000368,0.000000,0.000000,0.004244,0.347354,-0.002287,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000344,0.000086,0.000345,0.000000,0.000000,0.003987,0.345113,-0.002241,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000323,0.000085,0.000324,0.000000,0.000000,0.003749,0.342917,-0.002196,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000303,0.000083,0.000305,0.000136,0.000136,0.003528,0.340631,-0.002286,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000285,0.000081,0.000287,0.000383,0.000383,0.003324,0.338149,-0.002482,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000268,0.000079,0.000271,0.000534,0.000534,0.003135,0.335568,-0.002581,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000253,0.000077,0.000256,0.000634,0.000634,0.002959,0.332941,-0.002627,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000239,0.000075,0.000242,0.000526,0.000526,0.002795,0.330472,-0.002469,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000422,0.000000,0.000000,0.000000,0.000004,0.000225,0.000073,0.000229,0.000488,0.000488,0.002643,0.328503,-0.001969,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000553,0.000001,0.000002,0.000001,0.000004,0.000213,0.000072,0.000218,0.000424,0.000424,0.002502,0.326763,-0.001741,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000577,0.000003,0.000005,0.000003,0.000004,0.000202,0.000071,0.000209,0.000339,0.000339,0.002371,0.325160,-0.001603,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000451,0.000003,0.000002,0.000003,0.000005,0.000191,0.000069,0.000199,0.000306,0.000306,0.002250,0.323501,-0.001658,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000490,0.000005,0.000006,0.000005,0.000005,0.000181,0.000068,0.000192,0.000231,0.000231,0.002137,0.321984,-0.001517,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000423,0.000006,0.000007,0.000006,0.000006,0.000172,0.000067,0.000184,0.000153,0.000153,0.002032,0.320507,-0.001477,1.000000,0.000004 +25,2022-08-02 01:00:00,0.001020,0.000048,0.000081,0.000048,0.000006,0.000164,0.000066,0.000218,0.000067,0.000067,0.001934,0.319656,-0.000850,1.000000,0.000038 +26,2022-08-02 02:00:00,0.001245,0.000096,0.000135,0.000096,0.000007,0.000156,0.000066,0.000258,0.000000,0.000000,0.001844,0.319055,-0.000601,1.000000,0.000077 +27,2022-08-02 03:00:00,0.001237,0.000123,0.000133,0.000123,0.000007,0.000149,0.000065,0.000279,0.000000,0.000000,0.001761,0.318461,-0.000595,1.000000,0.000087 +28,2022-08-02 04:00:00,0.001223,0.000132,0.000130,0.000132,0.000007,0.000142,0.000065,0.000281,0.000000,0.000000,0.001684,0.317867,-0.000593,1.000000,0.000085 +29,2022-08-02 05:00:00,0.001096,0.000117,0.000105,0.000117,0.000008,0.000136,0.000064,0.000261,0.000000,0.000000,0.001612,0.317186,-0.000682,1.000000,0.000073 +30,2022-08-02 06:00:00,0.001095,0.000110,0.000105,0.000110,0.000008,0.000130,0.000064,0.000249,0.000000,0.000000,0.001546,0.316517,-0.000669,1.000000,0.000068 +31,2022-08-02 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000009,0.000125,0.000063,0.000181,0.000000,0.000000,0.001483,0.314891,-0.001626,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000009,0.000120,0.000061,0.000151,0.000000,0.000000,0.001425,0.313297,-0.001593,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000115,0.000060,0.000125,0.000000,0.000000,0.001369,0.311736,-0.001562,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000111,0.000059,0.000121,0.000000,0.000000,0.001317,0.310205,-0.001531,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000107,0.000058,0.000118,0.000000,0.000000,0.001268,0.308705,-0.001500,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000103,0.000057,0.000115,0.000000,0.000000,0.001222,0.307235,-0.001470,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000104,0.000001,0.000001,0.000001,0.000012,0.000099,0.000056,0.000112,0.000000,0.000000,0.001179,0.305895,-0.001340,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000113,0.000000,0.000000,0.000000,0.000013,0.000096,0.000055,0.000109,0.000122,0.000122,0.001138,0.304472,-0.001423,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000113,0.000000,0.000000,0.000000,0.000013,0.000092,0.000053,0.000106,0.000323,0.000323,0.001099,0.302880,-0.001592,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000113,0.000000,0.000000,0.000000,0.000014,0.000089,0.000052,0.000103,0.000449,0.000449,0.001061,0.301197,-0.001683,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000113,0.000000,0.000000,0.000000,0.000015,0.000086,0.000051,0.000101,0.000537,0.000537,0.001026,0.299461,-0.001736,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000492,0.000000,0.000000,0.000000,0.000015,0.000083,0.000049,0.000099,0.000591,0.000591,0.000992,0.298078,-0.001383,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000016,0.000081,0.000048,0.000096,0.000535,0.000535,0.000960,0.296394,-0.001684,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000078,0.000047,0.000094,0.000480,0.000480,0.000929,0.294698,-0.001695,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000075,0.000046,0.000093,0.000476,0.000476,0.000899,0.293041,-0.001658,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000073,0.000044,0.000091,0.000415,0.000415,0.000870,0.291477,-0.001564,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000071,0.000043,0.000089,0.000309,0.000309,0.000843,0.290048,-0.001429,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000068,0.000042,0.000087,0.000184,0.000184,0.000816,0.288770,-0.001278,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000066,0.000041,0.000086,0.000036,0.000036,0.000791,0.287662,-0.001108,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000064,0.000040,0.000085,0.000000,0.000000,0.000768,0.286611,-0.001050,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000062,0.000040,0.000083,0.000000,0.000000,0.000745,0.285582,-0.001029,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000061,0.000039,0.000082,0.000000,0.000000,0.000723,0.284573,-0.001009,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000059,0.000038,0.000081,0.000000,0.000000,0.000702,0.283584,-0.000989,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000057,0.000037,0.000080,0.000000,0.000000,0.000683,0.282615,-0.000969,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000056,0.000037,0.000079,0.000000,0.000000,0.000664,0.281665,-0.000950,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000054,0.000036,0.000079,0.000000,0.000000,0.000646,0.280735,-0.000931,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000053,0.000035,0.000078,0.000000,0.000000,0.000628,0.279822,-0.000912,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000051,0.000034,0.000077,0.000000,0.000000,0.000612,0.278928,-0.000894,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000050,0.000034,0.000076,0.000000,0.000000,0.000595,0.278052,-0.000876,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000049,0.000033,0.000076,0.000000,0.000000,0.000580,0.277193,-0.000859,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000047,0.000032,0.000075,0.000000,0.000000,0.000565,0.276352,-0.000842,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000046,0.000032,0.000075,0.000131,0.000131,0.000551,0.275399,-0.000953,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000045,0.000031,0.000074,0.000386,0.000386,0.000537,0.274215,-0.001184,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000044,0.000030,0.000074,0.000534,0.000534,0.000523,0.272910,-0.001305,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000043,0.000029,0.000073,0.000639,0.000639,0.000509,0.271528,-0.001382,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000041,0.000028,0.000073,0.000618,0.000618,0.000495,0.270193,-0.001334,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000040,0.000027,0.000073,0.000563,0.000563,0.000482,0.268940,-0.001253,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000919,0.000008,0.000015,0.000008,0.000033,0.000039,0.000026,0.000080,0.000497,0.000497,0.000469,0.268661,-0.000279,1.000000,0.000007 +69,2022-08-03 21:00:00,0.000181,0.000004,0.000000,0.000004,0.000034,0.000038,0.000026,0.000076,0.000464,0.000464,0.000456,0.267712,-0.000949,1.000000,0.000003 +70,2022-08-03 22:00:00,0.000000,0.000003,0.000000,0.000003,0.000034,0.000037,0.000025,0.000075,0.000404,0.000404,0.000444,0.266664,-0.001048,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000036,0.000024,0.000071,0.000300,0.000300,0.000432,0.265738,-0.000926,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000035,0.000023,0.000071,0.000195,0.000195,0.000420,0.264933,-0.000805,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000034,0.000023,0.000071,0.000050,0.000050,0.000409,0.264288,-0.000646,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000033,0.000023,0.000071,0.000000,0.000000,0.000399,0.263703,-0.000584,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000032,0.000022,0.000071,0.000000,0.000000,0.000388,0.263131,-0.000573,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000032,0.000022,0.000070,0.000000,0.000000,0.000378,0.262570,-0.000561,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000031,0.000021,0.000070,0.000000,0.000000,0.000369,0.262020,-0.000550,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000030,0.000021,0.000070,0.000000,0.000000,0.000359,0.261481,-0.000539,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000029,0.000020,0.000070,0.000000,0.000000,0.000351,0.260953,-0.000528,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000029,0.000020,0.000070,0.000000,0.000000,0.000342,0.260435,-0.000518,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000028,0.000020,0.000070,0.000000,0.000000,0.000334,0.259928,-0.000507,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000027,0.000019,0.000070,0.000000,0.000000,0.000326,0.259431,-0.000497,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000027,0.000019,0.000071,0.000000,0.000000,0.000318,0.258943,-0.000487,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000026,0.000018,0.000071,0.000000,0.000000,0.000310,0.258466,-0.000478,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000025,0.000018,0.000071,0.000000,0.000000,0.000303,0.257998,-0.000468,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000025,0.000018,0.000071,0.000127,0.000127,0.000296,0.257415,-0.000583,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000024,0.000017,0.000071,0.000378,0.000378,0.000289,0.256597,-0.000818,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000023,0.000016,0.000071,0.000534,0.000534,0.000282,0.255643,-0.000954,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000023,0.000015,0.000071,0.000639,0.000639,0.000274,0.254604,-0.001038,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000022,0.000015,0.000071,0.000708,0.000708,0.000266,0.253519,-0.001085,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000022,0.000014,0.000071,0.000645,0.000645,0.000259,0.252517,-0.001002,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000021,0.000013,0.000071,0.000568,0.000568,0.000251,0.251612,-0.000906,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000020,0.000012,0.000072,0.000510,0.000510,0.000243,0.250780,-0.000831,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000020,0.000012,0.000072,0.000444,0.000444,0.000235,0.250030,-0.000750,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000019,0.000011,0.000072,0.000330,0.000330,0.000227,0.249407,-0.000623,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000018,0.000011,0.000072,0.000200,0.000200,0.000220,0.248923,-0.000484,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000018,0.000011,0.000072,0.000057,0.000057,0.000213,0.248589,-0.000334,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000017,0.000010,0.000072,0.000000,0.000000,0.000206,0.248318,-0.000271,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000017,0.000010,0.000072,0.000000,0.000000,0.000200,0.248053,-0.000266,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000016,0.000010,0.000072,0.000000,0.000000,0.000194,0.247792,-0.000260,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000016,0.000010,0.000073,0.000000,0.000000,0.000188,0.247537,-0.000255,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000015,0.000010,0.000073,0.000000,0.000000,0.000182,0.247287,-0.000250,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000015,0.000009,0.000073,0.000000,0.000000,0.000177,0.247042,-0.000245,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000014,0.000009,0.000073,0.000000,0.000000,0.000172,0.246802,-0.000240,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000014,0.000009,0.000074,0.000000,0.000000,0.000167,0.246566,-0.000235,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000014,0.000009,0.000074,0.000000,0.000000,0.000162,0.246336,-0.000231,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000013,0.000009,0.000074,0.000000,0.000000,0.000158,0.246110,-0.000226,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000009,0.000075,0.000000,0.000000,0.000154,0.245888,-0.000222,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000012,0.000008,0.000075,0.000000,0.000000,0.000150,0.245671,-0.000217,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000012,0.000008,0.000075,0.000139,0.000139,0.000146,0.245321,-0.000350,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000012,0.000008,0.000076,0.000383,0.000383,0.000141,0.244740,-0.000581,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000011,0.000007,0.000076,0.000536,0.000536,0.000137,0.244020,-0.000720,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000011,0.000006,0.000076,0.000644,0.000644,0.000133,0.243209,-0.000811,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000011,0.000006,0.000077,0.000617,0.000617,0.000128,0.242440,-0.000769,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000055,0.000000,0.000000,0.000000,0.000067,0.000010,0.000005,0.000077,0.000573,0.000573,0.000123,0.241785,-0.000656,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000055,0.000000,0.000000,0.000000,0.000067,0.000010,0.000005,0.000077,0.000501,0.000501,0.000118,0.241212,-0.000573,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000057,0.000000,0.000000,0.000000,0.000068,0.000009,0.000004,0.000077,0.000471,0.000471,0.000113,0.240683,-0.000530,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000057,0.000000,0.000000,0.000000,0.000069,0.000009,0.000004,0.000078,0.000402,0.000402,0.000108,0.240232,-0.000451,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000009,0.000004,0.000078,0.000297,0.000297,0.000103,0.239898,-0.000333,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000070,0.000008,0.000004,0.000078,0.000185,0.000185,0.000099,0.239673,-0.000225,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000301,0.000003,0.000005,0.000003,0.000071,0.000008,0.000004,0.000081,0.000062,0.000062,0.000095,0.239810,0.000136,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000586,0.000016,0.000027,0.000016,0.000071,0.000008,0.000004,0.000095,0.000000,0.000000,0.000091,0.240262,0.000452,1.000000,0.000013 +123,2022-08-06 03:00:00,0.000339,0.000013,0.000009,0.000013,0.000072,0.000007,0.000004,0.000092,0.000000,0.000000,0.000088,0.240481,0.000218,1.000000,0.000010 +124,2022-08-06 04:00:00,0.000242,0.000010,0.000005,0.000010,0.000072,0.000007,0.000004,0.000090,0.000000,0.000000,0.000085,0.240603,0.000123,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000291,0.000007,0.000007,0.000007,0.000073,0.000007,0.000005,0.000087,0.000000,0.000000,0.000083,0.240770,0.000167,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000317,0.000007,0.000008,0.000007,0.000074,0.000007,0.000005,0.000088,0.000000,0.000000,0.000081,0.240958,0.000188,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000074,0.000007,0.000005,0.000084,0.000000,0.000000,0.000079,0.240839,-0.000119,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000075,0.000006,0.000004,0.000083,0.000000,0.000000,0.000077,0.240723,-0.000116,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000004,0.000082,0.000000,0.000000,0.000075,0.240608,-0.000114,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000004,0.000082,0.000000,0.000000,0.000073,0.240497,-0.000112,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000004,0.000083,0.000000,0.000000,0.000072,0.240387,-0.000110,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000004,0.000083,0.000000,0.000000,0.000070,0.240279,-0.000107,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000004,0.000084,0.000000,0.000000,0.000068,0.240174,-0.000105,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000004,0.000084,0.000123,0.000123,0.000067,0.239951,-0.000224,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000005,0.000004,0.000085,0.000370,0.000370,0.000065,0.239489,-0.000462,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000520,0.000520,0.000063,0.238889,-0.000599,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000623,0.000623,0.000060,0.238201,-0.000689,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000005,0.000002,0.000086,0.000690,0.000690,0.000057,0.237461,-0.000740,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000005,0.000001,0.000086,0.000644,0.000644,0.000054,0.236780,-0.000680,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000001,0.000086,0.000559,0.000559,0.000051,0.236197,-0.000583,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000001,0.000087,0.000510,0.000510,0.000047,0.235673,-0.000524,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000000,0.000087,0.000439,0.000439,0.000044,0.235230,-0.000444,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000087,0.000319,0.000319,0.000041,0.234911,-0.000319,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000088,0.000194,0.000194,0.000037,0.234717,-0.000194,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000000,0.000088,0.000047,0.000047,0.000035,0.234670,-0.000047,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000000,0.000088,0.000000,0.000000,0.000032,0.234670,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000089,0.000000,0.000000,0.000029,0.234670,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000027,0.234670,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000025,0.234670,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000000,0.000000,0.000023,0.234670,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000000,0.000000,0.000021,0.234670,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000090,0.000000,0.000000,0.000020,0.234670,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000091,0.000000,0.000000,0.000018,0.234670,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000000,0.000000,0.000017,0.234670,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000092,0.000000,0.000000,0.000016,0.234670,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000014,0.234670,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000013,0.234670,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000118,0.000117,0.000012,0.234552,-0.000117,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000363,0.000362,0.000011,0.234191,-0.000362,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000514,0.000511,0.000010,0.233679,-0.000511,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000622,0.000616,0.000010,0.233063,-0.000616,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000657,0.000648,0.000009,0.232415,-0.000648,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000608,0.000597,0.000008,0.231818,-0.000597,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000095,0.000537,0.000525,0.000008,0.231294,-0.000525,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000504,0.000491,0.000007,0.230802,-0.000491,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000096,0.000433,0.000420,0.000006,0.230382,-0.000420,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000097,0.000319,0.000308,0.000006,0.230074,-0.000308,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000162,0.000156,0.000006,0.229918,-0.000156,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000022,0.000022,0.000005,0.229897,-0.000022,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000005,0.229897,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000004,0.229897,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000004,0.229897,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000004,0.229897,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000000,0.000000,0.000003,0.229897,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000003,0.229897,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000000,0.000000,0.000003,0.229897,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000003,0.229897,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000002,0.229897,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000002,0.229897,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000002,0.229897,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000000,0.000000,0.000002,0.229897,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000102,0.000098,0.000002,0.229799,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000352,0.000339,0.000002,0.229460,-0.000339,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000507,0.000487,0.000002,0.228973,-0.000487,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000613,0.000587,0.000001,0.228386,-0.000587,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000675,0.000643,0.000001,0.227743,-0.000643,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000628,0.000595,0.000001,0.227148,-0.000595,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000549,0.000518,0.000001,0.226630,-0.000518,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000503,0.000473,0.000001,0.226157,-0.000473,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000436,0.000409,0.000001,0.225748,-0.000409,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000317,0.000296,0.000001,0.225452,-0.000296,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000181,0.000169,0.000001,0.225283,-0.000169,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000029,0.000027,0.000001,0.225256,-0.000027,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000001,0.225256,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000001,0.225256,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000001,0.225256,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000001,0.225256,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000001,0.225256,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.225256,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000110,0.000102,0.000000,0.225154,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620710.csv b/test/channel_loss/channel_forcing/et/cat-2620710.csv new file mode 100644 index 000000000..2d814358e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620710.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000000,0.000822,0.000138,0.000822,0.000177,0.000177,0.009078,0.371812,-0.003051,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000761,0.000136,0.000761,0.000056,0.000056,0.008453,0.368816,-0.002996,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000705,0.000133,0.000705,0.000000,0.000000,0.007881,0.365935,-0.002881,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000655,0.000130,0.000655,0.000000,0.000000,0.007356,0.363111,-0.002824,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000609,0.000128,0.000610,0.000000,0.000000,0.006874,0.360344,-0.002767,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000568,0.000125,0.000568,0.000000,0.000000,0.006432,0.357632,-0.002712,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000123,0.000530,0.000000,0.000000,0.006025,0.354974,-0.002658,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000495,0.000120,0.000496,0.000000,0.000000,0.005650,0.352369,-0.002605,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000463,0.000118,0.000464,0.000000,0.000000,0.005304,0.349817,-0.002553,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000434,0.000115,0.000435,0.000000,0.000000,0.004985,0.347315,-0.002502,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000407,0.000113,0.000409,0.000000,0.000000,0.004691,0.344863,-0.002452,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000111,0.000384,0.000000,0.000000,0.004419,0.342460,-0.002403,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000360,0.000109,0.000362,0.000000,0.000000,0.004167,0.340105,-0.002355,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000339,0.000106,0.000341,0.000000,0.000000,0.003934,0.337797,-0.002308,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000320,0.000104,0.000322,0.000143,0.000143,0.003718,0.335395,-0.002402,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000302,0.000102,0.000305,0.000386,0.000386,0.003518,0.332802,-0.002593,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000286,0.000099,0.000289,0.000540,0.000540,0.003331,0.330110,-0.002692,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000270,0.000097,0.000274,0.000649,0.000649,0.003158,0.327365,-0.002745,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000256,0.000094,0.000260,0.000563,0.000563,0.002996,0.324760,-0.002606,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000379,0.000000,0.000000,0.000000,0.000004,0.000243,0.000092,0.000247,0.000533,0.000533,0.002845,0.322607,-0.002153,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000388,0.000000,0.000000,0.000000,0.000004,0.000231,0.000090,0.000235,0.000458,0.000458,0.002704,0.320580,-0.002028,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000618,0.000002,0.000004,0.000002,0.000005,0.000219,0.000089,0.000226,0.000356,0.000356,0.002574,0.318914,-0.001665,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000562,0.000003,0.000004,0.000003,0.000005,0.000209,0.000087,0.000217,0.000320,0.000320,0.002452,0.317262,-0.001652,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000580,0.000006,0.000007,0.000006,0.000005,0.000199,0.000086,0.000210,0.000244,0.000244,0.002339,0.315733,-0.001529,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000566,0.000008,0.000010,0.000008,0.000006,0.000190,0.000084,0.000204,0.000166,0.000166,0.002234,0.314295,-0.001439,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001006,0.000032,0.000051,0.000032,0.000006,0.000181,0.000084,0.000220,0.000074,0.000074,0.002136,0.313364,-0.000930,1.000000,0.000025 +26,2022-08-02 02:00:00,0.001066,0.000051,0.000067,0.000051,0.000007,0.000173,0.000083,0.000232,0.000000,0.000000,0.002046,0.312569,-0.000795,1.000000,0.000040 +27,2022-08-02 03:00:00,0.001034,0.000061,0.000063,0.000061,0.000007,0.000166,0.000082,0.000235,0.000000,0.000000,0.001961,0.311763,-0.000806,1.000000,0.000042 +28,2022-08-02 04:00:00,0.001053,0.000065,0.000065,0.000065,0.000008,0.000159,0.000081,0.000232,0.000000,0.000000,0.001883,0.310989,-0.000774,1.000000,0.000042 +29,2022-08-02 05:00:00,0.000963,0.000059,0.000054,0.000059,0.000008,0.000153,0.000081,0.000220,0.000000,0.000000,0.001811,0.310152,-0.000837,1.000000,0.000037 +30,2022-08-02 06:00:00,0.000995,0.000058,0.000058,0.000058,0.000009,0.000147,0.000080,0.000215,0.000000,0.000000,0.001743,0.309361,-0.000791,1.000000,0.000037 +31,2022-08-02 07:00:00,0.000000,0.000025,0.000000,0.000025,0.000009,0.000142,0.000078,0.000177,0.000000,0.000000,0.001679,0.307666,-0.001694,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000010,0.000137,0.000077,0.000158,0.000000,0.000000,0.001619,0.306006,-0.001661,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000132,0.000075,0.000142,0.000000,0.000000,0.001562,0.304378,-0.001627,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000127,0.000074,0.000138,0.000000,0.000000,0.001509,0.302783,-0.001595,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000123,0.000072,0.000135,0.000000,0.000000,0.001458,0.301220,-0.001563,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000119,0.000071,0.000131,0.000000,0.000000,0.001410,0.299688,-0.001532,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000013,0.000115,0.000069,0.000128,0.000000,0.000000,0.001364,0.298285,-0.001404,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000095,0.000000,0.000000,0.000000,0.000013,0.000111,0.000068,0.000125,0.000125,0.000125,0.001321,0.296781,-0.001503,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000108,0.000066,0.000122,0.000325,0.000325,0.001279,0.295081,-0.001700,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000104,0.000065,0.000119,0.000453,0.000453,0.001240,0.293289,-0.001792,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000101,0.000063,0.000116,0.000549,0.000549,0.001202,0.291440,-0.001850,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000265,0.000000,0.000000,0.000000,0.000016,0.000098,0.000061,0.000114,0.000617,0.000617,0.001165,0.289758,-0.001681,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000005,0.000000,0.000000,0.000000,0.000017,0.000095,0.000060,0.000111,0.000547,0.000547,0.001130,0.287925,-0.001833,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000092,0.000058,0.000109,0.000506,0.000506,0.001095,0.286162,-0.001763,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000089,0.000056,0.000107,0.000489,0.000489,0.001063,0.284451,-0.001711,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000087,0.000055,0.000105,0.000427,0.000427,0.001031,0.282836,-0.001616,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000084,0.000053,0.000103,0.000321,0.000321,0.001000,0.281356,-0.001480,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000082,0.000052,0.000101,0.000195,0.000195,0.000971,0.280029,-0.001327,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000079,0.000051,0.000100,0.000047,0.000047,0.000943,0.278874,-0.001155,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000077,0.000050,0.000098,0.000000,0.000000,0.000916,0.277788,-0.001086,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000075,0.000049,0.000097,0.000000,0.000000,0.000890,0.276724,-0.001064,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000073,0.000048,0.000095,0.000000,0.000000,0.000866,0.275681,-0.001043,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000071,0.000047,0.000094,0.000000,0.000000,0.000842,0.274659,-0.001022,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000069,0.000046,0.000093,0.000000,0.000000,0.000820,0.273657,-0.001002,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000067,0.000045,0.000092,0.000000,0.000000,0.000798,0.272675,-0.000982,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000065,0.000044,0.000091,0.000000,0.000000,0.000778,0.271713,-0.000962,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000063,0.000044,0.000090,0.000000,0.000000,0.000758,0.270770,-0.000943,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000062,0.000043,0.000089,0.000000,0.000000,0.000738,0.269846,-0.000924,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000060,0.000042,0.000088,0.000000,0.000000,0.000720,0.268940,-0.000906,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000059,0.000041,0.000087,0.000000,0.000000,0.000702,0.268053,-0.000888,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000057,0.000040,0.000086,0.000000,0.000000,0.000685,0.267183,-0.000870,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000056,0.000039,0.000086,0.000140,0.000140,0.000668,0.266193,-0.000989,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000055,0.000038,0.000085,0.000389,0.000389,0.000652,0.264979,-0.001214,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000053,0.000037,0.000085,0.000542,0.000542,0.000635,0.263639,-0.001340,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000052,0.000035,0.000084,0.000651,0.000651,0.000619,0.262219,-0.001420,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000050,0.000034,0.000083,0.000653,0.000653,0.000603,0.260826,-0.001393,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000049,0.000033,0.000083,0.000605,0.000605,0.000586,0.259507,-0.001319,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000642,0.000000,0.000001,0.000000,0.000034,0.000048,0.000032,0.000082,0.000532,0.000532,0.000571,0.258915,-0.000592,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000244,0.000000,0.000000,0.000000,0.000035,0.000047,0.000032,0.000082,0.000480,0.000480,0.000556,0.257996,-0.000919,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000045,0.000030,0.000081,0.000423,0.000423,0.000541,0.256913,-0.001083,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000044,0.000030,0.000081,0.000319,0.000319,0.000527,0.255952,-0.000960,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000043,0.000029,0.000080,0.000205,0.000205,0.000513,0.255123,-0.000829,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000042,0.000028,0.000080,0.000061,0.000061,0.000499,0.254452,-0.000671,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000041,0.000028,0.000080,0.000000,0.000000,0.000486,0.253853,-0.000598,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000040,0.000027,0.000079,0.000000,0.000000,0.000474,0.253267,-0.000586,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000039,0.000027,0.000079,0.000000,0.000000,0.000462,0.252692,-0.000575,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000038,0.000026,0.000079,0.000000,0.000000,0.000450,0.252129,-0.000563,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000037,0.000025,0.000079,0.000000,0.000000,0.000439,0.251577,-0.000552,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000036,0.000025,0.000078,0.000000,0.000000,0.000428,0.251036,-0.000541,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000035,0.000024,0.000078,0.000000,0.000000,0.000418,0.250505,-0.000530,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000034,0.000024,0.000078,0.000000,0.000000,0.000407,0.249986,-0.000520,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000033,0.000023,0.000078,0.000000,0.000000,0.000398,0.249476,-0.000509,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000032,0.000023,0.000078,0.000000,0.000000,0.000388,0.248977,-0.000499,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000032,0.000023,0.000078,0.000000,0.000000,0.000379,0.248488,-0.000489,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000031,0.000022,0.000078,0.000000,0.000000,0.000370,0.248009,-0.000479,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000030,0.000022,0.000078,0.000136,0.000136,0.000362,0.247406,-0.000603,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000029,0.000021,0.000078,0.000385,0.000385,0.000353,0.246570,-0.000836,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000029,0.000020,0.000078,0.000540,0.000540,0.000344,0.245600,-0.000970,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000028,0.000019,0.000078,0.000654,0.000654,0.000335,0.244538,-0.001062,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000027,0.000018,0.000078,0.000732,0.000732,0.000326,0.243420,-0.001118,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000026,0.000017,0.000078,0.000684,0.000684,0.000316,0.242371,-0.001049,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000026,0.000016,0.000078,0.000599,0.000599,0.000306,0.241426,-0.000944,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000025,0.000015,0.000078,0.000521,0.000521,0.000297,0.240577,-0.000849,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000024,0.000014,0.000078,0.000454,0.000454,0.000287,0.239811,-0.000766,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000023,0.000014,0.000078,0.000340,0.000340,0.000278,0.239171,-0.000640,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000022,0.000013,0.000078,0.000210,0.000210,0.000269,0.238672,-0.000500,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000022,0.000013,0.000078,0.000071,0.000071,0.000260,0.238319,-0.000353,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000013,0.000078,0.000000,0.000000,0.000252,0.238042,-0.000276,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000020,0.000012,0.000078,0.000000,0.000000,0.000244,0.237772,-0.000271,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000020,0.000012,0.000078,0.000000,0.000000,0.000237,0.237506,-0.000266,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000019,0.000012,0.000078,0.000000,0.000000,0.000229,0.237246,-0.000260,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000019,0.000012,0.000078,0.000000,0.000000,0.000223,0.236991,-0.000255,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000018,0.000012,0.000079,0.000000,0.000000,0.000216,0.236741,-0.000250,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000018,0.000011,0.000079,0.000000,0.000000,0.000210,0.236496,-0.000245,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000017,0.000011,0.000079,0.000000,0.000000,0.000204,0.236256,-0.000240,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000017,0.000011,0.000079,0.000000,0.000000,0.000198,0.236021,-0.000235,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000016,0.000011,0.000080,0.000000,0.000000,0.000193,0.235790,-0.000231,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000016,0.000010,0.000080,0.000000,0.000000,0.000188,0.235564,-0.000226,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000015,0.000010,0.000080,0.000000,0.000000,0.000183,0.235343,-0.000221,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000015,0.000010,0.000080,0.000148,0.000148,0.000178,0.234981,-0.000362,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000014,0.000009,0.000081,0.000388,0.000388,0.000173,0.234390,-0.000590,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000014,0.000009,0.000081,0.000542,0.000542,0.000167,0.233662,-0.000729,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000013,0.000008,0.000081,0.000653,0.000653,0.000162,0.232838,-0.000824,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000013,0.000007,0.000081,0.000640,0.000640,0.000156,0.232043,-0.000794,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000012,0.000006,0.000081,0.000594,0.000594,0.000150,0.231372,-0.000672,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000012,0.000006,0.000082,0.000520,0.000520,0.000144,0.230787,-0.000585,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000011,0.000005,0.000082,0.000469,0.000469,0.000138,0.230263,-0.000524,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000011,0.000005,0.000082,0.000409,0.000409,0.000132,0.229808,-0.000455,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000072,0.000010,0.000005,0.000082,0.000307,0.000307,0.000126,0.229462,-0.000346,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000072,0.000010,0.000004,0.000082,0.000193,0.000193,0.000120,0.229235,-0.000227,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000316,0.000002,0.000003,0.000002,0.000073,0.000010,0.000005,0.000084,0.000071,0.000071,0.000115,0.229377,0.000142,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000430,0.000006,0.000009,0.000006,0.000074,0.000009,0.000005,0.000089,0.000000,0.000000,0.000111,0.229691,0.000314,1.000000,0.000005 +123,2022-08-06 03:00:00,0.000378,0.000007,0.000007,0.000007,0.000074,0.000009,0.000005,0.000090,0.000000,0.000000,0.000107,0.229951,0.000259,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000306,0.000006,0.000005,0.000006,0.000075,0.000009,0.000005,0.000090,0.000000,0.000000,0.000104,0.230137,0.000186,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000301,0.000005,0.000005,0.000005,0.000076,0.000008,0.000005,0.000089,0.000000,0.000000,0.000101,0.230314,0.000178,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000400,0.000007,0.000008,0.000007,0.000076,0.000008,0.000006,0.000091,0.000000,0.000000,0.000099,0.230582,0.000267,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000077,0.000008,0.000006,0.000088,0.000000,0.000000,0.000096,0.230460,-0.000122,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000078,0.000008,0.000006,0.000087,0.000000,0.000000,0.000094,0.230340,-0.000120,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000005,0.000086,0.000000,0.000000,0.000092,0.230223,-0.000117,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000007,0.000005,0.000086,0.000000,0.000000,0.000089,0.230108,-0.000115,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000007,0.000005,0.000087,0.000000,0.000000,0.000087,0.229995,-0.000113,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000007,0.000005,0.000087,0.000000,0.000000,0.000085,0.229885,-0.000110,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000007,0.000005,0.000088,0.000000,0.000000,0.000083,0.229777,-0.000108,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000007,0.000005,0.000088,0.000130,0.000130,0.000081,0.229543,-0.000234,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000007,0.000004,0.000089,0.000377,0.000377,0.000079,0.229073,-0.000471,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000006,0.000004,0.000089,0.000527,0.000527,0.000077,0.228464,-0.000609,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000006,0.000003,0.000089,0.000633,0.000633,0.000073,0.227764,-0.000701,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000002,0.000090,0.000710,0.000710,0.000070,0.227002,-0.000762,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000002,0.000090,0.000674,0.000674,0.000066,0.226291,-0.000711,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000005,0.000001,0.000090,0.000582,0.000582,0.000062,0.225684,-0.000607,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000005,0.000001,0.000090,0.000525,0.000525,0.000058,0.225145,-0.000539,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000004,0.000000,0.000091,0.000453,0.000453,0.000054,0.224687,-0.000458,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000000,0.000091,0.000335,0.000335,0.000050,0.224352,-0.000335,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000000,0.000091,0.000201,0.000200,0.000046,0.224152,-0.000200,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000004,0.000000,0.000091,0.000059,0.000058,0.000042,0.224094,-0.000058,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000000,0.000000,0.000039,0.224094,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000000,0.000000,0.000036,0.224094,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000092,0.000000,0.000000,0.000033,0.224094,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000000,0.000000,0.000031,0.224094,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000000,0.000000,0.000028,0.224094,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000000,0.000000,0.000026,0.224094,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000024,0.224094,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000022,0.224094,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000021,0.224094,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000019,0.224094,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000000,0.000000,0.000018,0.224094,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000016,0.224094,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000127,0.000127,0.000015,0.223967,-0.000127,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000370,0.000369,0.000014,0.223598,-0.000369,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000526,0.000522,0.000013,0.223076,-0.000522,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000636,0.000629,0.000012,0.222447,-0.000629,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000695,0.000684,0.000011,0.221763,-0.000684,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000098,0.000651,0.000638,0.000010,0.221125,-0.000638,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000564,0.000550,0.000009,0.220575,-0.000550,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000099,0.000523,0.000507,0.000009,0.220068,-0.000507,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000453,0.000438,0.000008,0.219630,-0.000438,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000100,0.000336,0.000324,0.000007,0.219307,-0.000324,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000175,0.000168,0.000007,0.219138,-0.000168,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000030,0.000028,0.000006,0.219110,-0.000028,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000006,0.219110,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000102,0.000000,0.000000,0.000005,0.219110,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000005,0.219110,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000000,0.000000,0.000005,0.219110,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000004,0.219110,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.219110,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.219110,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.219110,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.219110,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.219110,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.219110,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000002,0.219110,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000107,0.000108,0.000104,0.000002,0.219006,-0.000104,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000358,0.000343,0.000002,0.218663,-0.000343,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000518,0.000495,0.000002,0.218169,-0.000495,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000630,0.000599,0.000002,0.217569,-0.000599,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000710,0.000672,0.000002,0.216897,-0.000672,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000667,0.000629,0.000001,0.216268,-0.000629,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000582,0.000546,0.000001,0.215723,-0.000546,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000530,0.000494,0.000001,0.215228,-0.000494,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000459,0.000427,0.000001,0.214801,-0.000427,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000337,0.000312,0.000001,0.214490,-0.000312,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000196,0.000181,0.000001,0.214309,-0.000181,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000042,0.000039,0.000001,0.214269,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.214269,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.214269,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.214269,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.214269,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.214269,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.214269,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000119,0.000110,0.000000,0.214159,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620711.csv b/test/channel_loss/channel_forcing/et/cat-2620711.csv new file mode 100644 index 000000000..c7f8f609c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620711.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000000,0.000823,0.000155,0.000823,0.000180,0.000180,0.009093,0.371907,-0.002956,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000763,0.000152,0.000763,0.000058,0.000058,0.008482,0.369007,-0.002900,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000709,0.000149,0.000709,0.000000,0.000000,0.007921,0.366223,-0.002784,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000660,0.000146,0.000660,0.000000,0.000000,0.007407,0.363496,-0.002727,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000615,0.000143,0.000615,0.000000,0.000000,0.006935,0.360825,-0.002671,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000574,0.000140,0.000574,0.000000,0.000000,0.006500,0.358209,-0.002616,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000537,0.000137,0.000537,0.000000,0.000000,0.006101,0.355646,-0.002563,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000503,0.000134,0.000503,0.000000,0.000000,0.005732,0.353135,-0.002511,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000471,0.000131,0.000472,0.000000,0.000000,0.005392,0.350676,-0.002459,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000443,0.000129,0.000444,0.000000,0.000000,0.005078,0.348267,-0.002409,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000416,0.000126,0.000417,0.000000,0.000000,0.004788,0.345907,-0.002360,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000392,0.000124,0.000393,0.000000,0.000000,0.004519,0.343595,-0.002312,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000370,0.000121,0.000371,0.000000,0.000000,0.004271,0.341331,-0.002264,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000349,0.000119,0.000351,0.000000,0.000000,0.004040,0.339113,-0.002218,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000330,0.000116,0.000332,0.000145,0.000145,0.003827,0.336798,-0.002315,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000312,0.000113,0.000314,0.000390,0.000390,0.003628,0.334291,-0.002507,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000296,0.000110,0.000298,0.000545,0.000545,0.003442,0.331682,-0.002608,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000280,0.000107,0.000283,0.000653,0.000653,0.003269,0.329022,-0.002661,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000266,0.000104,0.000269,0.000569,0.000569,0.003108,0.326498,-0.002524,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000355,0.000000,0.000000,0.000000,0.000004,0.000253,0.000102,0.000256,0.000539,0.000539,0.002957,0.324402,-0.002096,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000346,0.000000,0.000000,0.000000,0.000004,0.000240,0.000100,0.000244,0.000462,0.000462,0.002816,0.322416,-0.001986,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000528,0.000001,0.000001,0.000001,0.000004,0.000229,0.000098,0.000234,0.000367,0.000367,0.002685,0.320741,-0.001675,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000500,0.000001,0.000002,0.000001,0.000005,0.000218,0.000096,0.000224,0.000329,0.000329,0.002563,0.319109,-0.001632,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000531,0.000003,0.000004,0.000003,0.000005,0.000208,0.000095,0.000217,0.000251,0.000251,0.002449,0.317615,-0.001494,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000522,0.000005,0.000007,0.000005,0.000006,0.000199,0.000093,0.000210,0.000167,0.000167,0.002343,0.316223,-0.001392,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000987,0.000026,0.000043,0.000026,0.000006,0.000191,0.000092,0.000223,0.000076,0.000076,0.002245,0.315369,-0.000855,1.000000,0.000021 +26,2022-08-02 02:00:00,0.000995,0.000040,0.000051,0.000040,0.000007,0.000183,0.000091,0.000229,0.000000,0.000000,0.002153,0.314606,-0.000763,1.000000,0.000031 +27,2022-08-02 03:00:00,0.000952,0.000047,0.000046,0.000047,0.000007,0.000175,0.000090,0.000229,0.000000,0.000000,0.002068,0.313822,-0.000785,1.000000,0.000031 +28,2022-08-02 04:00:00,0.001002,0.000050,0.000051,0.000050,0.000007,0.000169,0.000090,0.000226,0.000000,0.000000,0.001989,0.313097,-0.000725,1.000000,0.000032 +29,2022-08-02 05:00:00,0.000944,0.000047,0.000046,0.000047,0.000008,0.000162,0.000089,0.000217,0.000000,0.000000,0.001915,0.312336,-0.000761,1.000000,0.000031 +30,2022-08-02 06:00:00,0.000936,0.000046,0.000045,0.000046,0.000008,0.000156,0.000088,0.000211,0.000000,0.000000,0.001847,0.311583,-0.000752,1.000000,0.000029 +31,2022-08-02 07:00:00,0.000000,0.000020,0.000000,0.000020,0.000009,0.000151,0.000086,0.000180,0.000000,0.000000,0.001782,0.309973,-0.001610,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000009,0.000145,0.000084,0.000164,0.000000,0.000000,0.001721,0.308396,-0.001577,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000141,0.000083,0.000150,0.000000,0.000000,0.001663,0.306851,-0.001545,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000136,0.000081,0.000146,0.000000,0.000000,0.001608,0.305338,-0.001513,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000131,0.000079,0.000142,0.000000,0.000000,0.001556,0.303855,-0.001482,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000127,0.000078,0.000139,0.000000,0.000000,0.001507,0.302403,-0.001452,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000012,0.000123,0.000076,0.000136,0.000000,0.000000,0.001460,0.301078,-0.001325,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000088,0.000000,0.000000,0.000000,0.000013,0.000119,0.000075,0.000132,0.000128,0.000128,0.001415,0.299644,-0.001434,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000116,0.000073,0.000129,0.000330,0.000330,0.001372,0.298016,-0.001628,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000112,0.000071,0.000126,0.000458,0.000458,0.001331,0.296296,-0.001720,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000109,0.000069,0.000123,0.000556,0.000556,0.001291,0.294515,-0.001781,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000258,0.000000,0.000000,0.000000,0.000015,0.000105,0.000067,0.000121,0.000627,0.000627,0.001252,0.292893,-0.001622,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000102,0.000065,0.000118,0.000558,0.000558,0.001215,0.291118,-0.001775,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000099,0.000063,0.000116,0.000512,0.000512,0.001179,0.289424,-0.001694,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000096,0.000061,0.000113,0.000494,0.000494,0.001144,0.287783,-0.001642,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000093,0.000060,0.000111,0.000430,0.000430,0.001110,0.286238,-0.001545,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000091,0.000058,0.000109,0.000323,0.000323,0.001078,0.284830,-0.001408,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000088,0.000057,0.000107,0.000197,0.000197,0.001046,0.283574,-0.001256,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000085,0.000055,0.000105,0.000048,0.000048,0.001016,0.282489,-0.001085,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000083,0.000054,0.000103,0.000000,0.000000,0.000988,0.281473,-0.001016,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000081,0.000053,0.000101,0.000000,0.000000,0.000960,0.280478,-0.000995,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000078,0.000052,0.000100,0.000000,0.000000,0.000934,0.279504,-0.000974,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000076,0.000051,0.000098,0.000000,0.000000,0.000909,0.278549,-0.000955,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000074,0.000050,0.000097,0.000000,0.000000,0.000884,0.277614,-0.000935,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000072,0.000049,0.000096,0.000000,0.000000,0.000861,0.276699,-0.000916,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000070,0.000048,0.000095,0.000000,0.000000,0.000839,0.275801,-0.000897,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000069,0.000047,0.000093,0.000000,0.000000,0.000817,0.274923,-0.000879,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000067,0.000046,0.000092,0.000000,0.000000,0.000796,0.274062,-0.000861,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000065,0.000045,0.000091,0.000000,0.000000,0.000776,0.273218,-0.000843,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000063,0.000044,0.000090,0.000000,0.000000,0.000757,0.272392,-0.000826,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000062,0.000043,0.000090,0.000000,0.000000,0.000739,0.271583,-0.000809,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000060,0.000042,0.000089,0.000141,0.000141,0.000720,0.270652,-0.000931,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000059,0.000041,0.000088,0.000391,0.000391,0.000702,0.269496,-0.001156,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000057,0.000039,0.000087,0.000543,0.000543,0.000685,0.268214,-0.001282,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000056,0.000038,0.000086,0.000656,0.000656,0.000667,0.266848,-0.001366,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000054,0.000036,0.000086,0.000662,0.000662,0.000649,0.265503,-0.001345,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000053,0.000035,0.000085,0.000619,0.000619,0.000631,0.264229,-0.001274,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000684,0.000001,0.000001,0.000001,0.000033,0.000051,0.000034,0.000085,0.000541,0.000541,0.000614,0.263726,-0.000503,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000249,0.000000,0.000000,0.000000,0.000033,0.000050,0.000034,0.000084,0.000485,0.000485,0.000598,0.262863,-0.000863,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000049,0.000032,0.000083,0.000427,0.000427,0.000581,0.261830,-0.001032,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000047,0.000031,0.000082,0.000323,0.000323,0.000565,0.260920,-0.000910,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000046,0.000030,0.000081,0.000205,0.000205,0.000550,0.260145,-0.000776,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000045,0.000030,0.000081,0.000062,0.000062,0.000535,0.259525,-0.000620,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000044,0.000029,0.000080,0.000000,0.000000,0.000521,0.258979,-0.000546,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000042,0.000029,0.000080,0.000000,0.000000,0.000507,0.258444,-0.000535,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000041,0.000028,0.000080,0.000000,0.000000,0.000494,0.257920,-0.000524,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000040,0.000027,0.000079,0.000000,0.000000,0.000481,0.257406,-0.000513,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000039,0.000027,0.000079,0.000000,0.000000,0.000469,0.256903,-0.000503,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000038,0.000026,0.000079,0.000000,0.000000,0.000457,0.256411,-0.000493,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000037,0.000026,0.000078,0.000000,0.000000,0.000445,0.255928,-0.000483,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000036,0.000025,0.000078,0.000000,0.000000,0.000434,0.255456,-0.000473,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000035,0.000025,0.000078,0.000000,0.000000,0.000424,0.254993,-0.000463,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000035,0.000024,0.000078,0.000000,0.000000,0.000413,0.254539,-0.000454,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000034,0.000024,0.000078,0.000000,0.000000,0.000403,0.254095,-0.000444,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000033,0.000023,0.000078,0.000000,0.000000,0.000394,0.253659,-0.000435,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000032,0.000023,0.000078,0.000137,0.000137,0.000384,0.253098,-0.000561,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000031,0.000022,0.000077,0.000386,0.000386,0.000375,0.252305,-0.000793,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000030,0.000021,0.000077,0.000542,0.000542,0.000365,0.251376,-0.000929,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000030,0.000020,0.000077,0.000656,0.000656,0.000355,0.250353,-0.001023,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000029,0.000018,0.000077,0.000737,0.000737,0.000344,0.249272,-0.001081,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000028,0.000017,0.000077,0.000698,0.000698,0.000334,0.248252,-0.001020,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000027,0.000016,0.000077,0.000601,0.000601,0.000323,0.247348,-0.000904,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000026,0.000015,0.000076,0.000522,0.000522,0.000312,0.246540,-0.000809,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000025,0.000015,0.000076,0.000459,0.000459,0.000302,0.245809,-0.000730,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000024,0.000014,0.000076,0.000342,0.000342,0.000291,0.245208,-0.000601,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000023,0.000013,0.000076,0.000211,0.000211,0.000281,0.244748,-0.000460,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000023,0.000013,0.000076,0.000073,0.000073,0.000271,0.244432,-0.000316,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000022,0.000013,0.000076,0.000000,0.000000,0.000262,0.244195,-0.000238,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000021,0.000012,0.000076,0.000000,0.000000,0.000254,0.243962,-0.000233,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000020,0.000012,0.000076,0.000000,0.000000,0.000245,0.243734,-0.000228,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000020,0.000012,0.000076,0.000000,0.000000,0.000237,0.243510,-0.000223,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000019,0.000012,0.000076,0.000000,0.000000,0.000230,0.243291,-0.000219,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000019,0.000011,0.000076,0.000000,0.000000,0.000223,0.243077,-0.000214,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000018,0.000011,0.000076,0.000000,0.000000,0.000216,0.242867,-0.000210,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000017,0.000011,0.000076,0.000000,0.000000,0.000210,0.242661,-0.000206,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000017,0.000011,0.000076,0.000000,0.000000,0.000203,0.242460,-0.000202,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000016,0.000011,0.000076,0.000000,0.000000,0.000197,0.242262,-0.000197,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000016,0.000010,0.000077,0.000000,0.000000,0.000192,0.242069,-0.000193,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000016,0.000010,0.000077,0.000000,0.000000,0.000186,0.241879,-0.000189,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000015,0.000010,0.000077,0.000149,0.000149,0.000181,0.241548,-0.000331,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000015,0.000009,0.000077,0.000389,0.000389,0.000176,0.240988,-0.000560,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000014,0.000008,0.000077,0.000543,0.000543,0.000170,0.240289,-0.000699,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000014,0.000007,0.000077,0.000657,0.000657,0.000164,0.239492,-0.000797,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000013,0.000007,0.000078,0.000645,0.000645,0.000157,0.238723,-0.000768,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000013,0.000006,0.000078,0.000606,0.000606,0.000150,0.238071,-0.000653,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000012,0.000005,0.000078,0.000521,0.000521,0.000144,0.237514,-0.000556,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000011,0.000005,0.000078,0.000469,0.000469,0.000137,0.237021,-0.000494,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000067,0.000011,0.000004,0.000078,0.000405,0.000405,0.000130,0.236599,-0.000421,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000010,0.000004,0.000078,0.000307,0.000307,0.000124,0.236283,-0.000316,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000010,0.000004,0.000078,0.000193,0.000193,0.000118,0.236085,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000316,0.000001,0.000003,0.000001,0.000069,0.000009,0.000004,0.000080,0.000073,0.000073,0.000112,0.236253,0.000168,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000425,0.000005,0.000008,0.000005,0.000070,0.000009,0.000004,0.000084,0.000000,0.000000,0.000108,0.236591,0.000337,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000413,0.000007,0.000008,0.000007,0.000070,0.000009,0.000005,0.000085,0.000000,0.000000,0.000103,0.236910,0.000320,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000385,0.000007,0.000007,0.000007,0.000071,0.000008,0.000005,0.000086,0.000000,0.000000,0.000100,0.237197,0.000287,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000383,0.000007,0.000007,0.000007,0.000071,0.000008,0.000005,0.000086,0.000000,0.000000,0.000097,0.237476,0.000279,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000400,0.000007,0.000007,0.000007,0.000072,0.000008,0.000006,0.000087,0.000000,0.000000,0.000095,0.237765,0.000289,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000073,0.000008,0.000005,0.000083,0.000000,0.000000,0.000093,0.237664,-0.000101,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000073,0.000008,0.000005,0.000082,0.000000,0.000000,0.000090,0.237564,-0.000099,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000007,0.000005,0.000081,0.000000,0.000000,0.000088,0.237467,-0.000097,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000007,0.000005,0.000081,0.000000,0.000000,0.000086,0.237372,-0.000095,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000005,0.000082,0.000000,0.000000,0.000084,0.237278,-0.000093,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000005,0.000082,0.000000,0.000000,0.000082,0.237187,-0.000092,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000007,0.000005,0.000083,0.000000,0.000000,0.000080,0.237097,-0.000090,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000007,0.000005,0.000083,0.000132,0.000132,0.000078,0.236880,-0.000217,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000004,0.000084,0.000376,0.000376,0.000076,0.236428,-0.000452,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000003,0.000084,0.000530,0.000530,0.000073,0.235835,-0.000593,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000003,0.000084,0.000639,0.000639,0.000070,0.235147,-0.000688,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000002,0.000084,0.000718,0.000718,0.000066,0.234396,-0.000752,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000005,0.000001,0.000085,0.000675,0.000675,0.000062,0.233701,-0.000694,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000000,0.000085,0.000597,0.000597,0.000058,0.233098,-0.000603,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000000,0.000085,0.000525,0.000525,0.000053,0.232573,-0.000525,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000000,0.000085,0.000457,0.000457,0.000049,0.232117,-0.000457,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000000,0.000085,0.000340,0.000339,0.000045,0.231778,-0.000339,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000003,0.000000,0.000086,0.000202,0.000201,0.000042,0.231577,-0.000201,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000003,0.000000,0.000086,0.000060,0.000060,0.000039,0.231518,-0.000060,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000003,0.000000,0.000086,0.000000,0.000000,0.000036,0.231518,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000086,0.000000,0.000000,0.000033,0.231518,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000087,0.000000,0.000000,0.000030,0.231518,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000000,0.000000,0.000028,0.231518,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000002,0.000000,0.000087,0.000000,0.000000,0.000026,0.231518,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000000,0.000000,0.000024,0.231518,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000002,0.000000,0.000088,0.000000,0.000000,0.000022,0.231518,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000020,0.231518,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000019,0.231518,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000000,0.000000,0.000017,0.231518,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000090,0.000000,0.000000,0.000016,0.231518,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000000,0.000000,0.000015,0.231518,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000129,0.000127,0.000014,0.231390,-0.000127,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000373,0.000369,0.000013,0.231021,-0.000369,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000091,0.000530,0.000523,0.000012,0.230499,-0.000523,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000642,0.000631,0.000011,0.229867,-0.000631,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000708,0.000693,0.000010,0.229174,-0.000693,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000092,0.000657,0.000640,0.000009,0.228535,-0.000640,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000571,0.000553,0.000008,0.227981,-0.000553,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000093,0.000525,0.000507,0.000008,0.227474,-0.000507,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000455,0.000437,0.000007,0.227037,-0.000437,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000341,0.000327,0.000007,0.226710,-0.000327,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000094,0.000177,0.000169,0.000006,0.226541,-0.000169,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000030,0.000029,0.000006,0.226512,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000005,0.226512,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000005,0.226512,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000004,0.226512,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000004,0.226512,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000004,0.226512,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000004,0.226512,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.226512,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.226512,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000003,0.226512,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000003,0.226512,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000002,0.226512,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000000,0.000000,0.000002,0.226512,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000110,0.000105,0.000002,0.226407,-0.000105,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000359,0.000343,0.000002,0.226064,-0.000343,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000521,0.000496,0.000002,0.225569,-0.000496,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000634,0.000601,0.000002,0.224967,-0.000601,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000718,0.000678,0.000001,0.224290,-0.000678,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000677,0.000636,0.000001,0.223654,-0.000636,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000588,0.000549,0.000001,0.223105,-0.000549,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000531,0.000494,0.000001,0.222611,-0.000494,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000463,0.000429,0.000001,0.222182,-0.000429,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000342,0.000316,0.000001,0.221866,-0.000316,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000198,0.000182,0.000001,0.221684,-0.000182,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000045,0.000041,0.000001,0.221643,-0.000041,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000001,0.221643,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000000,0.221643,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000122,0.000112,0.000000,0.221531,-0.000112,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620712.csv b/test/channel_loss/channel_forcing/et/cat-2620712.csv new file mode 100644 index 000000000..3e9ee8c7c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620712.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000146,0.000000,0.000000,0.000000,0.000000,0.000819,0.000111,0.000819,0.000186,0.000186,0.009053,0.371075,-0.003382,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000756,0.000109,0.000756,0.000060,0.000060,0.008406,0.367737,-0.003338,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000699,0.000107,0.000699,0.000000,0.000000,0.007814,0.364520,-0.003217,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000647,0.000105,0.000647,0.000000,0.000000,0.007272,0.361363,-0.003157,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000600,0.000103,0.000600,0.000000,0.000000,0.006775,0.358265,-0.003098,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000557,0.000101,0.000558,0.000000,0.000000,0.006319,0.355225,-0.003040,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000518,0.000099,0.000519,0.000000,0.000000,0.005899,0.352242,-0.002983,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000483,0.000097,0.000483,0.000000,0.000000,0.005514,0.349315,-0.002927,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000450,0.000095,0.000451,0.000000,0.000000,0.005159,0.346442,-0.002873,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000420,0.000094,0.000421,0.000000,0.000000,0.004833,0.343623,-0.002819,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000393,0.000092,0.000394,0.000000,0.000000,0.004531,0.340857,-0.002766,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000368,0.000090,0.000369,0.000000,0.000000,0.004253,0.338142,-0.002715,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000345,0.000088,0.000347,0.000000,0.000000,0.003997,0.335479,-0.002664,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000324,0.000087,0.000326,0.000000,0.000000,0.003760,0.332865,-0.002614,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000304,0.000085,0.000307,0.000142,0.000142,0.003541,0.330160,-0.002705,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000286,0.000083,0.000289,0.000382,0.000382,0.003338,0.327271,-0.002889,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000270,0.000081,0.000273,0.000551,0.000551,0.003149,0.324270,-0.003001,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000254,0.000079,0.000258,0.000664,0.000664,0.002974,0.321214,-0.003056,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000240,0.000078,0.000244,0.000597,0.000597,0.002812,0.318281,-0.002933,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000358,0.000000,0.000000,0.000000,0.000004,0.000227,0.000076,0.000231,0.000563,0.000563,0.002661,0.315787,-0.002493,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000495,0.000000,0.000000,0.000000,0.000005,0.000215,0.000075,0.000219,0.000479,0.000479,0.002521,0.313557,-0.002231,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000593,0.000002,0.000004,0.000002,0.000005,0.000203,0.000073,0.000211,0.000376,0.000376,0.002391,0.311561,-0.001995,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000486,0.000002,0.000002,0.000002,0.000006,0.000193,0.000072,0.000201,0.000330,0.000330,0.002270,0.309546,-0.002015,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000511,0.000005,0.000006,0.000005,0.000006,0.000183,0.000071,0.000194,0.000249,0.000249,0.002158,0.307668,-0.001878,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000512,0.000007,0.000010,0.000007,0.000007,0.000174,0.000070,0.000188,0.000170,0.000170,0.002053,0.305900,-0.001768,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001000,0.000041,0.000068,0.000041,0.000007,0.000166,0.000069,0.000214,0.000076,0.000076,0.001957,0.304679,-0.001221,1.000000,0.000033 +26,2022-08-02 02:00:00,0.000998,0.000062,0.000079,0.000062,0.000008,0.000158,0.000068,0.000228,0.000000,0.000000,0.001867,0.303543,-0.001136,1.000000,0.000049 +27,2022-08-02 03:00:00,0.000989,0.000076,0.000077,0.000076,0.000008,0.000151,0.000068,0.000235,0.000000,0.000000,0.001784,0.302420,-0.001123,1.000000,0.000051 +28,2022-08-02 04:00:00,0.001011,0.000079,0.000080,0.000079,0.000009,0.000144,0.000067,0.000232,0.000000,0.000000,0.001706,0.301337,-0.001083,1.000000,0.000052 +29,2022-08-02 05:00:00,0.000994,0.000078,0.000078,0.000078,0.000009,0.000138,0.000066,0.000226,0.000000,0.000000,0.001634,0.300261,-0.001077,1.000000,0.000051 +30,2022-08-02 06:00:00,0.000940,0.000074,0.000070,0.000074,0.000010,0.000132,0.000065,0.000216,0.000000,0.000000,0.001568,0.299160,-0.001101,1.000000,0.000047 +31,2022-08-02 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000011,0.000127,0.000064,0.000171,0.000000,0.000000,0.001505,0.297225,-0.001935,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000011,0.000122,0.000063,0.000147,0.000000,0.000000,0.001446,0.295326,-0.001899,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000117,0.000062,0.000129,0.000000,0.000000,0.001391,0.293463,-0.001863,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000113,0.000061,0.000125,0.000000,0.000000,0.001339,0.291634,-0.001828,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000109,0.000060,0.000122,0.000000,0.000000,0.001290,0.289840,-0.001794,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000105,0.000058,0.000119,0.000000,0.000000,0.001243,0.288079,-0.001761,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000015,0.000101,0.000057,0.000116,0.000000,0.000000,0.001200,0.286449,-0.001630,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000015,0.000097,0.000056,0.000113,0.000122,0.000122,0.001159,0.284730,-0.001719,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000076,0.000000,0.000000,0.000000,0.000016,0.000094,0.000055,0.000110,0.000324,0.000324,0.001120,0.282822,-0.001909,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000091,0.000054,0.000108,0.000460,0.000460,0.001083,0.280802,-0.002019,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000088,0.000053,0.000105,0.000568,0.000568,0.001047,0.278716,-0.002087,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000262,0.000000,0.000000,0.000000,0.000018,0.000085,0.000051,0.000103,0.000653,0.000653,0.001013,0.276779,-0.001936,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000082,0.000050,0.000101,0.000572,0.000572,0.000981,0.274701,-0.002078,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000080,0.000049,0.000099,0.000531,0.000531,0.000950,0.272702,-0.001999,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000077,0.000048,0.000098,0.000506,0.000506,0.000920,0.270766,-0.001937,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000075,0.000046,0.000096,0.000442,0.000442,0.000892,0.268928,-0.001838,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000073,0.000045,0.000095,0.000332,0.000332,0.000865,0.267232,-0.001695,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000070,0.000044,0.000093,0.000202,0.000202,0.000839,0.265697,-0.001536,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000068,0.000043,0.000092,0.000052,0.000052,0.000814,0.264337,-0.001360,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000066,0.000043,0.000091,0.000000,0.000000,0.000790,0.263053,-0.001284,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000064,0.000042,0.000089,0.000000,0.000000,0.000768,0.261793,-0.001260,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000063,0.000041,0.000088,0.000000,0.000000,0.000746,0.260556,-0.001236,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000061,0.000040,0.000088,0.000000,0.000000,0.000726,0.259343,-0.001213,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000059,0.000040,0.000087,0.000000,0.000000,0.000706,0.258153,-0.001191,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000058,0.000039,0.000086,0.000000,0.000000,0.000687,0.256984,-0.001168,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000056,0.000038,0.000085,0.000000,0.000000,0.000669,0.255838,-0.001146,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000055,0.000037,0.000085,0.000000,0.000000,0.000652,0.254713,-0.001125,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000053,0.000037,0.000084,0.000000,0.000000,0.000636,0.253609,-0.001104,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000052,0.000036,0.000084,0.000000,0.000000,0.000620,0.252526,-0.001083,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000051,0.000035,0.000083,0.000000,0.000000,0.000604,0.251463,-0.001063,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000049,0.000035,0.000083,0.000000,0.000000,0.000590,0.250419,-0.001043,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000048,0.000034,0.000083,0.000141,0.000141,0.000575,0.249257,-0.001162,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000047,0.000033,0.000082,0.000394,0.000394,0.000562,0.247868,-0.001389,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000046,0.000032,0.000082,0.000558,0.000558,0.000548,0.246345,-0.001523,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000045,0.000031,0.000082,0.000675,0.000675,0.000534,0.244735,-0.001610,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000044,0.000030,0.000081,0.000690,0.000690,0.000521,0.243141,-0.001594,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000042,0.000029,0.000081,0.000653,0.000653,0.000507,0.241612,-0.001529,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000906,0.000005,0.000008,0.000005,0.000040,0.000041,0.000029,0.000085,0.000571,0.000571,0.000495,0.241074,-0.000538,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000285,0.000002,0.000000,0.000002,0.000040,0.000040,0.000028,0.000083,0.000502,0.000502,0.000482,0.240012,-0.001062,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000041,0.000039,0.000027,0.000082,0.000432,0.000432,0.000470,0.238758,-0.001253,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000038,0.000027,0.000081,0.000332,0.000332,0.000459,0.237626,-0.001132,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000037,0.000026,0.000080,0.000209,0.000209,0.000447,0.236637,-0.000990,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000036,0.000025,0.000080,0.000066,0.000066,0.000436,0.235806,-0.000830,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000036,0.000025,0.000080,0.000000,0.000000,0.000425,0.235056,-0.000750,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000035,0.000024,0.000080,0.000000,0.000000,0.000415,0.234319,-0.000736,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000034,0.000024,0.000081,0.000000,0.000000,0.000405,0.233597,-0.000723,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000033,0.000024,0.000081,0.000000,0.000000,0.000396,0.232887,-0.000709,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000032,0.000023,0.000081,0.000000,0.000000,0.000387,0.232192,-0.000696,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000032,0.000023,0.000081,0.000000,0.000000,0.000378,0.231509,-0.000683,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000031,0.000022,0.000081,0.000000,0.000000,0.000369,0.230838,-0.000670,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000030,0.000022,0.000081,0.000000,0.000000,0.000361,0.230181,-0.000658,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000029,0.000021,0.000081,0.000000,0.000000,0.000353,0.229536,-0.000645,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000029,0.000021,0.000082,0.000000,0.000000,0.000345,0.228902,-0.000633,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000028,0.000021,0.000082,0.000000,0.000000,0.000338,0.228281,-0.000621,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000028,0.000020,0.000082,0.000000,0.000000,0.000330,0.227671,-0.000610,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000027,0.000020,0.000083,0.000138,0.000138,0.000323,0.226937,-0.000734,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000026,0.000019,0.000083,0.000393,0.000393,0.000316,0.225967,-0.000970,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000026,0.000018,0.000083,0.000551,0.000551,0.000309,0.224860,-0.001107,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000025,0.000018,0.000083,0.000673,0.000673,0.000301,0.223653,-0.001206,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000024,0.000017,0.000084,0.000763,0.000763,0.000294,0.222382,-0.001272,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000024,0.000016,0.000084,0.000734,0.000734,0.000286,0.221162,-0.001219,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000023,0.000015,0.000084,0.000628,0.000628,0.000278,0.220070,-0.001093,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000023,0.000015,0.000084,0.000533,0.000533,0.000270,0.219091,-0.000979,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000022,0.000014,0.000085,0.000468,0.000468,0.000263,0.218193,-0.000897,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000021,0.000014,0.000085,0.000354,0.000354,0.000255,0.217425,-0.000768,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000021,0.000013,0.000085,0.000217,0.000217,0.000248,0.216805,-0.000620,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000020,0.000013,0.000085,0.000076,0.000076,0.000241,0.216335,-0.000470,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000020,0.000013,0.000086,0.000000,0.000000,0.000234,0.215948,-0.000386,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000019,0.000013,0.000086,0.000000,0.000000,0.000228,0.215569,-0.000379,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000018,0.000012,0.000086,0.000000,0.000000,0.000222,0.215197,-0.000372,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000018,0.000012,0.000087,0.000000,0.000000,0.000216,0.214832,-0.000365,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000018,0.000012,0.000087,0.000000,0.000000,0.000210,0.214473,-0.000358,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000017,0.000012,0.000088,0.000000,0.000000,0.000205,0.214122,-0.000352,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000017,0.000011,0.000088,0.000000,0.000000,0.000200,0.213777,-0.000345,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000016,0.000011,0.000088,0.000000,0.000000,0.000195,0.213438,-0.000339,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000016,0.000011,0.000089,0.000000,0.000000,0.000190,0.213106,-0.000332,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000015,0.000011,0.000089,0.000000,0.000000,0.000185,0.212780,-0.000326,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000015,0.000011,0.000090,0.000000,0.000000,0.000181,0.212460,-0.000320,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000015,0.000010,0.000090,0.000000,0.000000,0.000176,0.212146,-0.000314,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000014,0.000010,0.000091,0.000146,0.000146,0.000172,0.211694,-0.000452,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000014,0.000010,0.000091,0.000386,0.000386,0.000168,0.211015,-0.000679,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000014,0.000009,0.000092,0.000550,0.000550,0.000164,0.210189,-0.000826,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000013,0.000009,0.000092,0.000672,0.000672,0.000159,0.209258,-0.000931,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000013,0.000008,0.000093,0.000667,0.000667,0.000154,0.208349,-0.000909,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000081,0.000012,0.000008,0.000093,0.000622,0.000622,0.000149,0.207563,-0.000786,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000081,0.000012,0.000007,0.000093,0.000535,0.000535,0.000144,0.206878,-0.000685,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000082,0.000012,0.000007,0.000094,0.000475,0.000475,0.000139,0.206264,-0.000614,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000083,0.000011,0.000006,0.000094,0.000415,0.000415,0.000134,0.205721,-0.000543,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000084,0.000011,0.000006,0.000095,0.000326,0.000326,0.000130,0.205275,-0.000446,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000073,0.000000,0.000000,0.000000,0.000085,0.000010,0.000006,0.000095,0.000201,0.000201,0.000125,0.204970,-0.000305,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000456,0.000005,0.000010,0.000005,0.000085,0.000010,0.000006,0.000101,0.000076,0.000076,0.000121,0.205159,0.000189,1.000000,0.000004 +122,2022-08-06 02:00:00,0.000613,0.000016,0.000025,0.000016,0.000086,0.000010,0.000006,0.000112,0.000000,0.000000,0.000118,0.205558,0.000399,1.000000,0.000013 +123,2022-08-06 03:00:00,0.000481,0.000017,0.000016,0.000017,0.000087,0.000010,0.000006,0.000114,0.000000,0.000000,0.000114,0.205830,0.000272,1.000000,0.000012 +124,2022-08-06 04:00:00,0.000400,0.000015,0.000011,0.000015,0.000088,0.000009,0.000007,0.000112,0.000000,0.000000,0.000112,0.206022,0.000192,1.000000,0.000008 +125,2022-08-06 05:00:00,0.000400,0.000012,0.000011,0.000012,0.000089,0.000009,0.000007,0.000110,0.000000,0.000000,0.000109,0.206210,0.000188,1.000000,0.000007 +126,2022-08-06 06:00:00,0.000400,0.000011,0.000011,0.000011,0.000089,0.000009,0.000007,0.000109,0.000000,0.000000,0.000107,0.206395,0.000185,1.000000,0.000007 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000090,0.000009,0.000007,0.000104,0.000000,0.000000,0.000105,0.206194,-0.000201,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000091,0.000009,0.000007,0.000102,0.000000,0.000000,0.000103,0.205997,-0.000197,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000008,0.000006,0.000100,0.000000,0.000000,0.000101,0.205804,-0.000193,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000008,0.000006,0.000101,0.000000,0.000000,0.000099,0.205615,-0.000190,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000008,0.000006,0.000101,0.000000,0.000000,0.000097,0.205428,-0.000186,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000008,0.000006,0.000102,0.000000,0.000000,0.000095,0.205246,-0.000183,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000008,0.000006,0.000103,0.000000,0.000000,0.000093,0.205067,-0.000179,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000008,0.000006,0.000103,0.000130,0.000130,0.000092,0.204764,-0.000303,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000007,0.000005,0.000104,0.000377,0.000377,0.000090,0.204224,-0.000540,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000007,0.000005,0.000104,0.000540,0.000540,0.000087,0.203534,-0.000690,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000007,0.000004,0.000105,0.000649,0.000649,0.000085,0.202750,-0.000784,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000007,0.000004,0.000105,0.000729,0.000729,0.000082,0.201903,-0.000848,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000007,0.000003,0.000106,0.000700,0.000700,0.000079,0.201099,-0.000803,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000006,0.000003,0.000106,0.000613,0.000613,0.000075,0.200396,-0.000703,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000006,0.000003,0.000107,0.000538,0.000538,0.000072,0.199780,-0.000616,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000006,0.000002,0.000107,0.000469,0.000469,0.000069,0.199243,-0.000537,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000005,0.000002,0.000107,0.000352,0.000352,0.000065,0.198831,-0.000413,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000005,0.000002,0.000108,0.000207,0.000207,0.000062,0.198569,-0.000262,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000005,0.000002,0.000108,0.000063,0.000063,0.000059,0.198452,-0.000116,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000005,0.000002,0.000109,0.000000,0.000000,0.000056,0.198400,-0.000052,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000004,0.000002,0.000109,0.000000,0.000000,0.000053,0.198349,-0.000051,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000004,0.000002,0.000110,0.000000,0.000000,0.000051,0.198299,-0.000050,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000004,0.000002,0.000110,0.000000,0.000000,0.000048,0.198250,-0.000049,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000004,0.000002,0.000111,0.000000,0.000000,0.000046,0.198201,-0.000048,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000004,0.000002,0.000111,0.000000,0.000000,0.000044,0.198154,-0.000047,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000003,0.000002,0.000112,0.000000,0.000000,0.000042,0.198108,-0.000046,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000109,0.000003,0.000002,0.000112,0.000000,0.000000,0.000040,0.198063,-0.000045,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000003,0.000001,0.000113,0.000000,0.000000,0.000038,0.198018,-0.000045,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000003,0.000001,0.000113,0.000000,0.000000,0.000037,0.197974,-0.000044,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000003,0.000001,0.000114,0.000000,0.000000,0.000035,0.197931,-0.000043,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000003,0.000001,0.000114,0.000000,0.000000,0.000034,0.197888,-0.000042,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000003,0.000001,0.000115,0.000130,0.000130,0.000032,0.197719,-0.000169,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000003,0.000001,0.000115,0.000378,0.000378,0.000031,0.197309,-0.000410,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000002,0.000001,0.000116,0.000547,0.000547,0.000029,0.196742,-0.000568,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000002,0.000000,0.000116,0.000661,0.000661,0.000027,0.196073,-0.000669,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000002,0.000000,0.000117,0.000739,0.000739,0.000025,0.195334,-0.000739,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000002,0.000000,0.000117,0.000687,0.000685,0.000023,0.194649,-0.000685,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000002,0.000000,0.000118,0.000596,0.000590,0.000021,0.194058,-0.000590,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000002,0.000000,0.000118,0.000543,0.000534,0.000020,0.193524,-0.000534,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000002,0.000000,0.000119,0.000471,0.000461,0.000018,0.193063,-0.000461,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000119,0.000353,0.000344,0.000017,0.192719,-0.000344,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000120,0.000183,0.000177,0.000016,0.192542,-0.000177,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000120,0.000032,0.000031,0.000014,0.192511,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000000,0.000000,0.000013,0.192511,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000000,0.000000,0.000012,0.192511,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000001,0.000000,0.000122,0.000000,0.000000,0.000011,0.192511,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000001,0.000000,0.000122,0.000000,0.000000,0.000010,0.192511,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000001,0.000000,0.000123,0.000000,0.000000,0.000010,0.192511,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000001,0.000000,0.000123,0.000000,0.000000,0.000009,0.192511,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000001,0.000000,0.000124,0.000000,0.000000,0.000008,0.192511,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000001,0.000000,0.000124,0.000000,0.000000,0.000008,0.192511,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000124,0.000001,0.000000,0.000125,0.000000,0.000000,0.000007,0.192512,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000001,0.000000,0.000125,0.000000,0.000000,0.000006,0.192512,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000126,0.000000,0.000000,0.000006,0.192512,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000000,0.000000,0.000005,0.192512,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000127,0.000108,0.000105,0.000005,0.192407,-0.000105,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000363,0.000352,0.000005,0.192056,-0.000352,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000128,0.000535,0.000517,0.000004,0.191539,-0.000517,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000652,0.000626,0.000004,0.190913,-0.000626,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000129,0.000748,0.000713,0.000004,0.190200,-0.000713,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000697,0.000660,0.000003,0.189540,-0.000660,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000130,0.000606,0.000570,0.000003,0.188970,-0.000570,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000542,0.000506,0.000003,0.188464,-0.000506,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000131,0.000473,0.000440,0.000003,0.188024,-0.000440,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000356,0.000329,0.000002,0.187695,-0.000329,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000132,0.000205,0.000189,0.000002,0.187505,-0.000189,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000049,0.000045,0.000002,0.187461,-0.000045,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000133,0.000000,0.000000,0.000002,0.187461,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000002,0.187461,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000134,0.000000,0.000000,0.000002,0.187461,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000002,0.187463,0.000002,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000138,0.000000,0.000000,0.000001,0.187463,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000138,0.000120,0.000110,0.000001,0.187352,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620713.csv b/test/channel_loss/channel_forcing/et/cat-2620713.csv new file mode 100644 index 000000000..5f5a902ed --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620713.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.000828,0.000212,0.000828,0.000198,0.000198,0.009145,0.365045,-0.003934,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000209,0.000773,0.000065,0.000065,0.008581,0.361126,-0.003919,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000723,0.000205,0.000723,0.000000,0.000000,0.008063,0.357342,-0.003784,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000201,0.000677,0.000000,0.000000,0.007587,0.353626,-0.003716,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000197,0.000636,0.000000,0.000000,0.007149,0.349977,-0.003649,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000194,0.000598,0.000000,0.000000,0.006746,0.346394,-0.003583,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000562,0.000190,0.000563,0.000000,0.000000,0.006374,0.342875,-0.003519,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000530,0.000187,0.000531,0.000000,0.000000,0.006031,0.339419,-0.003455,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000501,0.000184,0.000502,0.000000,0.000000,0.005713,0.336026,-0.003393,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000474,0.000180,0.000475,0.000000,0.000000,0.005419,0.332694,-0.003332,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000449,0.000177,0.000450,0.000000,0.000000,0.005148,0.329422,-0.003272,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000426,0.000174,0.000428,0.000000,0.000000,0.004895,0.326209,-0.003213,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000405,0.000171,0.000407,0.000000,0.000000,0.004661,0.323054,-0.003155,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000385,0.000168,0.000388,0.000000,0.000000,0.004444,0.319956,-0.003098,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000367,0.000165,0.000370,0.000147,0.000147,0.004241,0.316768,-0.003187,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000350,0.000161,0.000353,0.000390,0.000390,0.004053,0.313400,-0.003368,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000334,0.000158,0.000338,0.000565,0.000565,0.003876,0.309921,-0.003479,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000319,0.000154,0.000323,0.000683,0.000683,0.003711,0.306389,-0.003532,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000306,0.000151,0.000310,0.000622,0.000622,0.003556,0.302980,-0.003409,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000403,0.000000,0.000000,0.000000,0.000005,0.000293,0.000148,0.000298,0.000594,0.000594,0.003411,0.300056,-0.002924,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000364,0.000000,0.000000,0.000000,0.000006,0.000281,0.000145,0.000286,0.000517,0.000517,0.003275,0.297222,-0.002835,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000457,0.000000,0.000000,0.000000,0.000006,0.000270,0.000143,0.000276,0.000407,0.000407,0.003148,0.294637,-0.002584,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000369,0.000000,0.000000,0.000000,0.000007,0.000259,0.000140,0.000266,0.000354,0.000354,0.003029,0.292065,-0.002573,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000379,0.000000,0.000001,0.000000,0.000007,0.000249,0.000138,0.000257,0.000268,0.000268,0.002917,0.289633,-0.002431,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000396,0.000002,0.000002,0.000002,0.000008,0.000240,0.000135,0.000249,0.000177,0.000177,0.002812,0.287349,-0.002284,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000950,0.000021,0.000037,0.000021,0.000008,0.000232,0.000134,0.000261,0.000086,0.000086,0.002715,0.285706,-0.001643,1.000000,0.000017 +26,2022-08-02 02:00:00,0.000992,0.000036,0.000048,0.000036,0.000009,0.000224,0.000132,0.000269,0.000000,0.000000,0.002623,0.284208,-0.001498,1.000000,0.000029 +27,2022-08-02 03:00:00,0.000960,0.000044,0.000045,0.000044,0.000010,0.000216,0.000131,0.000270,0.000000,0.000000,0.002538,0.282709,-0.001500,1.000000,0.000030 +28,2022-08-02 04:00:00,0.000983,0.000047,0.000047,0.000047,0.000010,0.000209,0.000129,0.000266,0.000000,0.000000,0.002458,0.281256,-0.001452,1.000000,0.000030 +29,2022-08-02 05:00:00,0.000980,0.000046,0.000046,0.000046,0.000011,0.000203,0.000128,0.000260,0.000000,0.000000,0.002383,0.279828,-0.001429,1.000000,0.000030 +30,2022-08-02 06:00:00,0.000967,0.000046,0.000045,0.000046,0.000012,0.000197,0.000126,0.000254,0.000000,0.000000,0.002313,0.278413,-0.001415,1.000000,0.000030 +31,2022-08-02 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000012,0.000191,0.000124,0.000224,0.000000,0.000000,0.002246,0.276119,-0.002294,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000013,0.000185,0.000122,0.000207,0.000000,0.000000,0.002183,0.273866,-0.002253,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000180,0.000120,0.000194,0.000000,0.000000,0.002122,0.271654,-0.002212,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000175,0.000118,0.000190,0.000000,0.000000,0.002065,0.269481,-0.002172,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000170,0.000115,0.000186,0.000000,0.000000,0.002010,0.267348,-0.002133,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000166,0.000113,0.000182,0.000000,0.000000,0.001958,0.265253,-0.002095,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000017,0.000162,0.000111,0.000179,0.000000,0.000000,0.001907,0.263294,-0.001959,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000018,0.000157,0.000109,0.000175,0.000123,0.000123,0.001859,0.261249,-0.002045,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000019,0.000153,0.000107,0.000172,0.000336,0.000336,0.001813,0.259032,-0.002216,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000019,0.000150,0.000105,0.000169,0.000481,0.000481,0.001769,0.256713,-0.002319,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000020,0.000146,0.000103,0.000166,0.000590,0.000590,0.001725,0.254328,-0.002385,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000415,0.000000,0.000000,0.000000,0.000021,0.000142,0.000100,0.000163,0.000678,0.000678,0.001683,0.252210,-0.002118,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000139,0.000098,0.000161,0.000620,0.000620,0.001643,0.249779,-0.002431,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000135,0.000096,0.000158,0.000557,0.000557,0.001603,0.247453,-0.002325,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000132,0.000093,0.000156,0.000527,0.000527,0.001564,0.245200,-0.002254,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000129,0.000091,0.000153,0.000460,0.000460,0.001527,0.243052,-0.002148,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000126,0.000089,0.000151,0.000346,0.000346,0.001490,0.241055,-0.001997,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000123,0.000088,0.000149,0.000211,0.000211,0.001455,0.239227,-0.001829,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000120,0.000086,0.000147,0.000057,0.000057,0.001421,0.237582,-0.001645,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000117,0.000084,0.000145,0.000000,0.000000,0.001389,0.236023,-0.001559,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000114,0.000083,0.000144,0.000000,0.000000,0.001357,0.234492,-0.001531,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000112,0.000081,0.000142,0.000000,0.000000,0.001327,0.232989,-0.001503,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000109,0.000080,0.000140,0.000000,0.000000,0.001297,0.231513,-0.001476,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000107,0.000078,0.000139,0.000000,0.000000,0.001269,0.230064,-0.001449,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000104,0.000077,0.000137,0.000000,0.000000,0.001241,0.228641,-0.001423,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000102,0.000076,0.000136,0.000000,0.000000,0.001215,0.227243,-0.001398,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000100,0.000074,0.000135,0.000000,0.000000,0.001189,0.225870,-0.001372,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000098,0.000073,0.000134,0.000000,0.000000,0.001164,0.224523,-0.001348,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000096,0.000072,0.000133,0.000000,0.000000,0.001140,0.223199,-0.001323,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000094,0.000070,0.000132,0.000000,0.000000,0.001116,0.221900,-0.001300,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000092,0.000069,0.000131,0.000000,0.000000,0.001094,0.220623,-0.001276,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000090,0.000068,0.000130,0.000147,0.000147,0.001071,0.219226,-0.001398,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000088,0.000066,0.000129,0.000404,0.000404,0.001049,0.217601,-0.001625,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000086,0.000064,0.000128,0.000575,0.000575,0.001027,0.215837,-0.001764,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000084,0.000062,0.000127,0.000692,0.000692,0.001005,0.213991,-0.001846,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000083,0.000061,0.000126,0.000724,0.000724,0.000983,0.212146,-0.001845,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000081,0.000059,0.000126,0.000691,0.000691,0.000961,0.210367,-0.001779,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000911,0.000002,0.000004,0.000002,0.000046,0.000079,0.000058,0.000127,0.000598,0.000598,0.000941,0.209602,-0.000765,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000189,0.000001,0.000000,0.000001,0.000047,0.000077,0.000057,0.000125,0.000537,0.000537,0.000920,0.208205,-0.001396,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000048,0.000076,0.000055,0.000124,0.000458,0.000458,0.000900,0.206726,-0.001479,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000074,0.000054,0.000123,0.000350,0.000350,0.000880,0.205380,-0.001346,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000072,0.000053,0.000122,0.000218,0.000218,0.000861,0.204188,-0.001192,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000071,0.000052,0.000122,0.000073,0.000073,0.000842,0.203159,-0.001029,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000069,0.000051,0.000121,0.000000,0.000000,0.000823,0.202220,-0.000939,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000068,0.000050,0.000121,0.000000,0.000000,0.000806,0.201299,-0.000922,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000066,0.000049,0.000120,0.000000,0.000000,0.000789,0.200393,-0.000905,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000065,0.000048,0.000120,0.000000,0.000000,0.000772,0.199505,-0.000889,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000063,0.000047,0.000120,0.000000,0.000000,0.000756,0.198632,-0.000873,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000062,0.000046,0.000119,0.000000,0.000000,0.000740,0.197775,-0.000857,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000061,0.000046,0.000119,0.000000,0.000000,0.000725,0.196933,-0.000842,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000059,0.000045,0.000119,0.000000,0.000000,0.000710,0.196106,-0.000827,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000058,0.000044,0.000119,0.000000,0.000000,0.000696,0.195295,-0.000812,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000057,0.000043,0.000119,0.000000,0.000000,0.000682,0.194498,-0.000797,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000056,0.000042,0.000119,0.000000,0.000000,0.000668,0.193715,-0.000783,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000055,0.000042,0.000119,0.000000,0.000000,0.000655,0.192947,-0.000769,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000054,0.000041,0.000118,0.000141,0.000141,0.000642,0.192054,-0.000893,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000053,0.000040,0.000118,0.000398,0.000398,0.000629,0.190924,-0.001129,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000052,0.000038,0.000118,0.000563,0.000563,0.000616,0.189653,-0.001272,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000050,0.000037,0.000118,0.000695,0.000695,0.000602,0.188275,-0.001378,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000049,0.000036,0.000118,0.000796,0.000796,0.000589,0.186822,-0.001452,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000048,0.000034,0.000118,0.000770,0.000770,0.000575,0.185421,-0.001401,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000047,0.000033,0.000118,0.000665,0.000665,0.000561,0.184150,-0.001272,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000046,0.000032,0.000118,0.000553,0.000553,0.000547,0.183011,-0.001139,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000045,0.000031,0.000118,0.000481,0.000481,0.000533,0.181963,-0.001048,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000043,0.000030,0.000117,0.000367,0.000367,0.000519,0.181046,-0.000917,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000042,0.000029,0.000117,0.000226,0.000226,0.000506,0.180284,-0.000762,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000041,0.000028,0.000117,0.000085,0.000085,0.000493,0.179674,-0.000610,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000040,0.000028,0.000117,0.000000,0.000000,0.000481,0.179159,-0.000516,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000039,0.000027,0.000117,0.000000,0.000000,0.000469,0.178652,-0.000506,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000038,0.000027,0.000117,0.000000,0.000000,0.000458,0.178155,-0.000497,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000037,0.000026,0.000118,0.000000,0.000000,0.000447,0.177667,-0.000488,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000036,0.000026,0.000118,0.000000,0.000000,0.000436,0.177188,-0.000479,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000036,0.000025,0.000118,0.000000,0.000000,0.000426,0.176717,-0.000471,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000035,0.000025,0.000118,0.000000,0.000000,0.000416,0.176254,-0.000462,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000034,0.000025,0.000118,0.000000,0.000000,0.000407,0.175800,-0.000454,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000033,0.000024,0.000119,0.000000,0.000000,0.000398,0.175354,-0.000446,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000032,0.000024,0.000119,0.000000,0.000000,0.000389,0.174917,-0.000438,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000032,0.000023,0.000119,0.000000,0.000000,0.000380,0.174487,-0.000430,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000031,0.000023,0.000119,0.000000,0.000000,0.000372,0.174065,-0.000422,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000030,0.000022,0.000120,0.000150,0.000150,0.000364,0.173503,-0.000561,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000030,0.000022,0.000120,0.000397,0.000397,0.000356,0.172709,-0.000795,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000029,0.000021,0.000120,0.000569,0.000569,0.000347,0.171760,-0.000948,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000028,0.000020,0.000121,0.000694,0.000694,0.000339,0.170705,-0.001055,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000028,0.000018,0.000121,0.000695,0.000695,0.000330,0.169669,-0.001037,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000094,0.000027,0.000018,0.000121,0.000657,0.000657,0.000320,0.168750,-0.000918,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000095,0.000026,0.000017,0.000121,0.000563,0.000563,0.000311,0.167940,-0.000810,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000096,0.000025,0.000016,0.000121,0.000486,0.000486,0.000302,0.167220,-0.000720,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000097,0.000024,0.000015,0.000122,0.000421,0.000421,0.000293,0.166578,-0.000642,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000082,0.000000,0.000000,0.000000,0.000098,0.000024,0.000015,0.000122,0.000330,0.000330,0.000284,0.166054,-0.000524,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000099,0.000023,0.000014,0.000122,0.000204,0.000204,0.000276,0.165646,-0.000408,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000436,0.000003,0.000005,0.000003,0.000100,0.000022,0.000015,0.000125,0.000081,0.000081,0.000268,0.165727,0.000081,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000721,0.000012,0.000020,0.000012,0.000101,0.000022,0.000015,0.000135,0.000000,0.000000,0.000261,0.166150,0.000424,1.000000,0.000010 +123,2022-08-06 03:00:00,0.000501,0.000012,0.000010,0.000012,0.000102,0.000021,0.000015,0.000135,0.000000,0.000000,0.000255,0.166360,0.000210,1.000000,0.000009 +124,2022-08-06 04:00:00,0.000490,0.000012,0.000010,0.000012,0.000103,0.000021,0.000015,0.000136,0.000000,0.000000,0.000250,0.166557,0.000196,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000480,0.000009,0.000009,0.000009,0.000104,0.000020,0.000016,0.000134,0.000000,0.000000,0.000245,0.166740,0.000183,1.000000,0.000006 +126,2022-08-06 06:00:00,0.000480,0.000009,0.000009,0.000009,0.000105,0.000020,0.000016,0.000134,0.000000,0.000000,0.000240,0.166920,0.000180,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000106,0.000020,0.000015,0.000130,0.000000,0.000000,0.000236,0.166634,-0.000286,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000107,0.000019,0.000015,0.000128,0.000000,0.000000,0.000232,0.166353,-0.000281,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000019,0.000015,0.000127,0.000000,0.000000,0.000228,0.166078,-0.000276,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000019,0.000015,0.000127,0.000000,0.000000,0.000224,0.165807,-0.000271,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000018,0.000014,0.000128,0.000000,0.000000,0.000220,0.165541,-0.000266,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000018,0.000014,0.000128,0.000000,0.000000,0.000216,0.165280,-0.000261,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000018,0.000014,0.000129,0.000000,0.000000,0.000212,0.165024,-0.000256,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000017,0.000013,0.000129,0.000132,0.000132,0.000208,0.164643,-0.000381,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000017,0.000013,0.000130,0.000382,0.000382,0.000204,0.164023,-0.000620,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000017,0.000012,0.000131,0.000557,0.000557,0.000200,0.163242,-0.000780,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000016,0.000011,0.000131,0.000679,0.000679,0.000195,0.162356,-0.000887,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000016,0.000010,0.000131,0.000778,0.000778,0.000189,0.161388,-0.000968,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000015,0.000009,0.000132,0.000747,0.000747,0.000183,0.160468,-0.000920,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000015,0.000009,0.000132,0.000650,0.000650,0.000177,0.159660,-0.000808,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000014,0.000008,0.000132,0.000561,0.000561,0.000171,0.158955,-0.000706,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000014,0.000007,0.000133,0.000481,0.000481,0.000164,0.158340,-0.000615,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000013,0.000007,0.000133,0.000364,0.000364,0.000158,0.157851,-0.000489,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000013,0.000006,0.000133,0.000218,0.000218,0.000152,0.157514,-0.000337,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000012,0.000006,0.000134,0.000071,0.000071,0.000146,0.157328,-0.000186,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000012,0.000006,0.000134,0.000000,0.000000,0.000140,0.157215,-0.000113,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000011,0.000006,0.000135,0.000000,0.000000,0.000135,0.157104,-0.000111,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000011,0.000006,0.000135,0.000000,0.000000,0.000130,0.156995,-0.000109,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000010,0.000006,0.000135,0.000000,0.000000,0.000125,0.156888,-0.000107,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000010,0.000006,0.000136,0.000000,0.000000,0.000121,0.156783,-0.000105,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000010,0.000006,0.000136,0.000000,0.000000,0.000117,0.156679,-0.000103,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000009,0.000005,0.000137,0.000000,0.000000,0.000113,0.156578,-0.000101,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000009,0.000005,0.000137,0.000000,0.000000,0.000109,0.156478,-0.000100,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000009,0.000005,0.000138,0.000000,0.000000,0.000106,0.156381,-0.000098,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000009,0.000005,0.000138,0.000000,0.000000,0.000102,0.156285,-0.000096,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000008,0.000005,0.000139,0.000000,0.000000,0.000099,0.156190,-0.000094,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000008,0.000005,0.000139,0.000000,0.000000,0.000096,0.156098,-0.000093,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000008,0.000005,0.000140,0.000132,0.000132,0.000093,0.155877,-0.000220,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000007,0.000004,0.000141,0.000385,0.000385,0.000090,0.155413,-0.000465,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000007,0.000004,0.000141,0.000565,0.000565,0.000087,0.154779,-0.000634,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000007,0.000003,0.000141,0.000683,0.000683,0.000083,0.154042,-0.000738,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000007,0.000002,0.000142,0.000772,0.000772,0.000078,0.153230,-0.000812,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000006,0.000001,0.000142,0.000729,0.000729,0.000074,0.152475,-0.000755,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000006,0.000001,0.000143,0.000626,0.000626,0.000069,0.151834,-0.000640,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000005,0.000000,0.000143,0.000570,0.000570,0.000064,0.151261,-0.000574,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000005,0.000000,0.000143,0.000488,0.000488,0.000059,0.150773,-0.000488,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000005,0.000000,0.000144,0.000370,0.000368,0.000054,0.150404,-0.000368,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000004,0.000000,0.000144,0.000192,0.000191,0.000050,0.150214,-0.000191,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000004,0.000000,0.000144,0.000036,0.000035,0.000046,0.150178,-0.000035,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000004,0.000000,0.000145,0.000000,0.000000,0.000043,0.150178,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000003,0.000000,0.000145,0.000000,0.000000,0.000039,0.150178,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000003,0.000000,0.000146,0.000000,0.000000,0.000036,0.150178,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000003,0.000000,0.000146,0.000000,0.000000,0.000034,0.150178,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000003,0.000000,0.000147,0.000000,0.000000,0.000031,0.150178,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000002,0.000000,0.000147,0.000000,0.000000,0.000029,0.150178,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000002,0.000000,0.000148,0.000000,0.000000,0.000026,0.150178,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000002,0.000000,0.000148,0.000000,0.000000,0.000024,0.150178,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000147,0.000002,0.000000,0.000149,0.000000,0.000000,0.000022,0.150179,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000147,0.000002,0.000000,0.000149,0.000000,0.000000,0.000021,0.150180,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000002,0.000000,0.000150,0.000000,0.000000,0.000019,0.150180,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000149,0.000001,0.000000,0.000150,0.000000,0.000000,0.000018,0.150180,0.000001,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000001,0.000000,0.000151,0.000109,0.000108,0.000016,0.150073,-0.000108,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000001,0.000000,0.000151,0.000367,0.000362,0.000015,0.149711,-0.000362,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000001,0.000000,0.000152,0.000549,0.000540,0.000014,0.149171,-0.000540,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000001,0.000000,0.000152,0.000671,0.000654,0.000013,0.148517,-0.000654,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000001,0.000000,0.000153,0.000772,0.000747,0.000012,0.147770,-0.000747,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000001,0.000000,0.000153,0.000742,0.000711,0.000011,0.147059,-0.000711,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000001,0.000000,0.000154,0.000636,0.000603,0.000010,0.146456,-0.000603,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000001,0.000000,0.000155,0.000573,0.000539,0.000009,0.145917,-0.000539,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000001,0.000000,0.000155,0.000483,0.000451,0.000009,0.145466,-0.000451,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000001,0.000000,0.000156,0.000366,0.000339,0.000008,0.145126,-0.000339,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000001,0.000000,0.000156,0.000215,0.000199,0.000007,0.144927,-0.000199,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000001,0.000000,0.000157,0.000056,0.000052,0.000007,0.144876,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000001,0.000000,0.000157,0.000000,0.000000,0.000006,0.144876,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000000,0.000000,0.000158,0.000000,0.000000,0.000006,0.144876,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000000,0.000000,0.000158,0.000000,0.000000,0.000005,0.144876,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000000,0.000000,0.000159,0.000000,0.000000,0.000005,0.144876,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000000,0.000000,0.000160,0.000000,0.000000,0.000005,0.144876,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000000,0.000000,0.000160,0.000000,0.000000,0.000004,0.144876,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000000,0.000000,0.000161,0.000000,0.000000,0.000004,0.144876,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000000,0.000000,0.000161,0.000000,0.000000,0.000004,0.144876,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000000,0.000000,0.000162,0.000000,0.000000,0.000003,0.144876,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000000,0.000000,0.000162,0.000000,0.000000,0.000003,0.144876,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000000,0.000000,0.000163,0.000000,0.000000,0.000003,0.144876,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000000,0.000000,0.000163,0.000000,0.000000,0.000003,0.144876,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000000,0.000000,0.000164,0.000121,0.000111,0.000002,0.144765,-0.000111,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620714.csv b/test/channel_loss/channel_forcing/et/cat-2620714.csv new file mode 100644 index 000000000..887db1f7e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620714.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000811,0.000021,0.000811,0.000182,0.000182,0.008963,0.379036,-0.000403,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000741,0.000020,0.000741,0.000063,0.000063,0.008242,0.378760,-0.000277,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000020,0.000677,0.000000,0.000000,0.007584,0.378552,-0.000208,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000620,0.000019,0.000620,0.000000,0.000000,0.006983,0.378351,-0.000202,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000568,0.000018,0.000568,0.000000,0.000000,0.006433,0.378155,-0.000196,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000522,0.000018,0.000522,0.000000,0.000000,0.005929,0.377965,-0.000190,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000479,0.000017,0.000479,0.000000,0.000000,0.005468,0.377780,-0.000185,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000440,0.000017,0.000440,0.000000,0.000000,0.005045,0.377600,-0.000180,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000405,0.000016,0.000405,0.000000,0.000000,0.004656,0.377426,-0.000174,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000373,0.000016,0.000373,0.000000,0.000000,0.004300,0.377256,-0.000170,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000343,0.000016,0.000343,0.000000,0.000000,0.003972,0.377091,-0.000165,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000316,0.000015,0.000316,0.000000,0.000000,0.003671,0.376931,-0.000160,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000292,0.000015,0.000292,0.000000,0.000000,0.003394,0.376776,-0.000155,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000269,0.000014,0.000269,0.000000,0.000000,0.003139,0.376625,-0.000151,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000249,0.000138,0.000138,0.002904,0.376344,-0.000281,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000229,0.000012,0.000230,0.000376,0.000376,0.002687,0.375840,-0.000504,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000212,0.000010,0.000212,0.000569,0.000569,0.002485,0.375163,-0.000677,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000195,0.000008,0.000196,0.000735,0.000735,0.002298,0.374344,-0.000819,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000180,0.000006,0.000181,0.000663,0.000663,0.002123,0.373618,-0.000726,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000456,0.000000,0.000000,0.000000,0.000000,0.000166,0.000005,0.000167,0.000651,0.000651,0.001962,0.373368,-0.000250,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000534,0.000000,0.000000,0.000000,0.000000,0.000154,0.000005,0.000154,0.000592,0.000592,0.001814,0.373258,-0.000110,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000488,0.000000,0.000000,0.000000,0.000000,0.000142,0.000005,0.000142,0.000430,0.000430,0.001677,0.373264,0.000006,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000578,0.000001,0.000002,0.000001,0.000000,0.000131,0.000005,0.000132,0.000352,0.000352,0.001551,0.373430,0.000166,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000549,0.000002,0.000003,0.000002,0.000000,0.000121,0.000006,0.000124,0.000265,0.000265,0.001436,0.373648,0.000217,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000604,0.000005,0.000007,0.000005,0.000000,0.000112,0.000007,0.000117,0.000185,0.000185,0.001331,0.373986,0.000338,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000953,0.000018,0.000029,0.000018,0.000000,0.000104,0.000009,0.000123,0.000077,0.000077,0.001236,0.374737,0.000751,1.000000,0.000014 +26,2022-08-02 02:00:00,0.000950,0.000027,0.000034,0.000027,0.000000,0.000097,0.000011,0.000125,0.000000,0.000000,0.001150,0.375534,0.000797,1.000000,0.000021 +27,2022-08-02 03:00:00,0.000953,0.000033,0.000034,0.000033,0.000000,0.000090,0.000013,0.000124,0.000000,0.000000,0.001073,0.376311,0.000777,1.000000,0.000022 +28,2022-08-02 04:00:00,0.000946,0.000034,0.000034,0.000034,0.000000,0.000084,0.000015,0.000119,0.000000,0.000000,0.001004,0.377059,0.000748,1.000000,0.000022 +29,2022-08-02 05:00:00,0.000948,0.000034,0.000034,0.000034,0.000001,0.000079,0.000017,0.000114,0.000000,0.000000,0.000942,0.377787,0.000728,1.000000,0.000022 +30,2022-08-02 06:00:00,0.000956,0.000034,0.000035,0.000034,0.000001,0.000075,0.000019,0.000109,0.000000,0.000000,0.000887,0.378502,0.000715,1.000000,0.000022 +31,2022-08-02 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000001,0.000070,0.000019,0.000086,0.000000,0.000000,0.000836,0.378302,-0.000200,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000001,0.000066,0.000018,0.000074,0.000000,0.000000,0.000788,0.378108,-0.000195,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000062,0.000018,0.000063,0.000000,0.000000,0.000744,0.377919,-0.000189,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000059,0.000017,0.000060,0.000000,0.000000,0.000702,0.377735,-0.000184,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000056,0.000017,0.000056,0.000000,0.000000,0.000663,0.377557,-0.000178,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000053,0.000016,0.000053,0.000000,0.000000,0.000627,0.377383,-0.000173,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000050,0.000016,0.000050,0.000000,0.000000,0.000593,0.377215,-0.000168,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000047,0.000015,0.000048,0.000116,0.000116,0.000561,0.376939,-0.000276,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000044,0.000014,0.000045,0.000317,0.000317,0.000531,0.376476,-0.000463,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000042,0.000012,0.000043,0.000483,0.000483,0.000501,0.375864,-0.000612,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000039,0.000010,0.000040,0.000627,0.000627,0.000472,0.375130,-0.000734,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000037,0.000008,0.000038,0.000732,0.000732,0.000442,0.374314,-0.000815,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000035,0.000006,0.000036,0.000722,0.000722,0.000414,0.373532,-0.000783,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000032,0.000004,0.000033,0.000662,0.000662,0.000385,0.372830,-0.000702,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000030,0.000002,0.000031,0.000587,0.000587,0.000357,0.372222,-0.000609,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000028,0.000001,0.000029,0.000461,0.000461,0.000330,0.371753,-0.000469,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000025,0.000000,0.000027,0.000353,0.000353,0.000305,0.371399,-0.000353,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000024,0.000000,0.000025,0.000212,0.000212,0.000281,0.371188,-0.000212,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000022,0.000000,0.000023,0.000060,0.000060,0.000260,0.371128,-0.000060,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000020,0.000000,0.000021,0.000000,0.000000,0.000240,0.371128,0.000000,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000018,0.000000,0.000020,0.000000,0.000000,0.000221,0.371128,0.000000,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000017,0.000000,0.000018,0.000000,0.000000,0.000204,0.371128,0.000000,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000016,0.000000,0.000017,0.000000,0.000000,0.000189,0.371128,0.000000,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000015,0.000000,0.000016,0.000000,0.000000,0.000174,0.371128,0.000000,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000013,0.000000,0.000015,0.000000,0.000000,0.000161,0.371128,0.000000,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000012,0.000000,0.000014,0.000000,0.000000,0.000148,0.371128,0.000000,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000011,0.000000,0.000013,0.000000,0.000000,0.000137,0.371128,0.000000,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000011,0.000000,0.000012,0.000000,0.000000,0.000126,0.371128,0.000000,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000010,0.000000,0.000011,0.000000,0.000000,0.000117,0.371128,0.000000,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000009,0.000000,0.000011,0.000000,0.000000,0.000108,0.371128,0.000000,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000008,0.000000,0.000010,0.000000,0.000000,0.000099,0.371128,0.000000,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000008,0.000000,0.000009,0.000132,0.000132,0.000092,0.370996,-0.000132,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000007,0.000000,0.000009,0.000376,0.000375,0.000085,0.370621,-0.000375,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000007,0.000000,0.000008,0.000569,0.000567,0.000078,0.370053,-0.000567,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000006,0.000000,0.000008,0.000733,0.000729,0.000072,0.369325,-0.000729,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000006,0.000000,0.000008,0.000743,0.000736,0.000067,0.368589,-0.000736,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000005,0.000000,0.000007,0.000722,0.000714,0.000061,0.367875,-0.000714,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000005,0.000000,0.000007,0.000664,0.000654,0.000057,0.367221,-0.000654,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000004,0.000000,0.000006,0.000567,0.000557,0.000052,0.366664,-0.000557,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000004,0.000000,0.000006,0.000461,0.000452,0.000048,0.366212,-0.000452,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000004,0.000000,0.000006,0.000351,0.000343,0.000045,0.365870,-0.000343,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000003,0.000000,0.000006,0.000222,0.000217,0.000041,0.365653,-0.000217,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000003,0.000000,0.000005,0.000074,0.000072,0.000038,0.365580,-0.000072,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000003,0.000000,0.000005,0.000000,0.000000,0.000035,0.365580,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000003,0.000000,0.000005,0.000000,0.000000,0.000032,0.365580,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000002,0.000000,0.000005,0.000000,0.000000,0.000030,0.365580,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000002,0.000000,0.000005,0.000000,0.000000,0.000028,0.365580,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000002,0.000000,0.000005,0.000000,0.000000,0.000025,0.365580,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000002,0.000000,0.000004,0.000000,0.000000,0.000024,0.365580,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000002,0.000000,0.000004,0.000000,0.000000,0.000022,0.365580,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000002,0.000000,0.000004,0.000000,0.000000,0.000020,0.365580,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000002,0.000000,0.000004,0.000000,0.000000,0.000018,0.365580,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000000,0.000000,0.000017,0.365580,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000000,0.000000,0.000016,0.365580,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000000,0.000000,0.000015,0.365580,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000127,0.000124,0.000013,0.365456,-0.000124,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000367,0.000358,0.000012,0.365099,-0.000358,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000564,0.000549,0.000011,0.364550,-0.000549,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000735,0.000714,0.000011,0.363835,-0.000714,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000861,0.000833,0.000010,0.363002,-0.000833,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000838,0.000809,0.000009,0.362194,-0.000809,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000752,0.000723,0.000008,0.361471,-0.000723,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000632,0.000606,0.000008,0.360865,-0.000606,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000501,0.000479,0.000007,0.360386,-0.000479,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000381,0.000363,0.000007,0.360023,-0.000363,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000001,0.000000,0.000004,0.000226,0.000215,0.000006,0.359808,-0.000215,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000079,0.000075,0.000006,0.359733,-0.000075,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000005,0.359733,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000005,0.359733,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.359733,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.359733,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.359733,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000003,0.359733,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000003,0.359733,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000003,0.359733,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000003,0.359733,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000003,0.359733,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000000,0.000000,0.000004,0.000000,0.000000,0.000002,0.359733,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000002,0.359733,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000144,0.000137,0.000002,0.359596,-0.000137,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000377,0.000358,0.000002,0.359238,-0.000358,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000572,0.000543,0.000002,0.358695,-0.000543,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000741,0.000702,0.000002,0.357993,-0.000702,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000778,0.000734,0.000001,0.357259,-0.000734,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000752,0.000707,0.000001,0.356552,-0.000707,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000684,0.000641,0.000001,0.355911,-0.000641,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000579,0.000542,0.000001,0.355369,-0.000542,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000460,0.000429,0.000001,0.354940,-0.000429,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000350,0.000325,0.000001,0.354615,-0.000325,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000210,0.000195,0.000001,0.354420,-0.000195,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000076,0.000071,0.000001,0.354349,-0.000071,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000001,0.354349,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.354349,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000124,0.000115,0.000000,0.354234,-0.000115,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000362,0.000336,0.000000,0.353898,-0.000336,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000562,0.000520,0.000000,0.353378,-0.000520,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000733,0.000677,0.000000,0.352700,-0.000677,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000861,0.000793,0.000000,0.351907,-0.000793,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000844,0.000775,0.000000,0.351132,-0.000775,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000785,0.000718,0.000000,0.350414,-0.000718,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000639,0.000583,0.000000,0.349831,-0.000583,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000509,0.000463,0.000000,0.349368,-0.000463,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000383,0.000348,0.000000,0.349020,-0.000348,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000222,0.000201,0.000000,0.348820,-0.000201,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000072,0.000065,0.000000,0.348755,-0.000065,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000004,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.348755,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000121,0.000110,0.000000,0.348645,-0.000110,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000352,0.000319,0.000000,0.348326,-0.000319,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000546,0.000493,0.000000,0.347834,-0.000493,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000710,0.000639,0.000000,0.347194,-0.000639,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000782,0.000702,0.000000,0.346492,-0.000702,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000775,0.000694,0.000000,0.345797,-0.000694,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000712,0.000636,0.000000,0.345162,-0.000636,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000578,0.000515,0.000000,0.344647,-0.000515,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000460,0.000409,0.000000,0.344238,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000350,0.000310,0.000000,0.343928,-0.000310,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000185,0.000164,0.000000,0.343764,-0.000164,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000031,0.000027,0.000000,0.343736,-0.000027,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343736,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343737,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343738,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343739,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343739,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.343739,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000102,0.000090,0.000000,0.343649,-0.000090,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000344,0.000304,0.000000,0.343346,-0.000304,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000545,0.000481,0.000000,0.342865,-0.000481,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000715,0.000630,0.000000,0.342235,-0.000630,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000830,0.000729,0.000000,0.341506,-0.000729,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000829,0.000725,0.000000,0.340781,-0.000725,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000761,0.000663,0.000000,0.340118,-0.000663,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000637,0.000554,0.000000,0.339564,-0.000554,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000504,0.000437,0.000000,0.339127,-0.000437,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000380,0.000328,0.000000,0.338799,-0.000328,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000207,0.000179,0.000000,0.338620,-0.000179,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000052,0.000044,0.000000,0.338576,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000000,0.000000,0.000005,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000000,0.338576,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000114,0.000098,0.000000,0.338478,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620715.csv b/test/channel_loss/channel_forcing/et/cat-2620715.csv new file mode 100644 index 000000000..fdbd45851 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620715.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000033,0.000000,0.000000,0.000000,0.000000,0.000812,0.000033,0.000812,0.000187,0.000187,0.008982,0.377916,-0.000601,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000743,0.000031,0.000743,0.000064,0.000064,0.008270,0.377419,-0.000497,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000680,0.000031,0.000680,0.000000,0.000000,0.007621,0.376998,-0.000421,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000624,0.000030,0.000624,0.000000,0.000000,0.007027,0.376589,-0.000410,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000573,0.000029,0.000573,0.000000,0.000000,0.006483,0.376190,-0.000398,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000526,0.000028,0.000526,0.000000,0.000000,0.005985,0.375803,-0.000388,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000484,0.000027,0.000484,0.000000,0.000000,0.005529,0.375426,-0.000377,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000446,0.000027,0.000446,0.000000,0.000000,0.005110,0.375059,-0.000367,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000411,0.000026,0.000411,0.000000,0.000000,0.004725,0.374702,-0.000357,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000379,0.000025,0.000379,0.000000,0.000000,0.004372,0.374355,-0.000347,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000349,0.000025,0.000350,0.000000,0.000000,0.004047,0.374018,-0.000337,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000323,0.000024,0.000323,0.000000,0.000000,0.003748,0.373689,-0.000328,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000298,0.000023,0.000299,0.000000,0.000000,0.003473,0.373370,-0.000319,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000276,0.000023,0.000276,0.000000,0.000000,0.003219,0.373060,-0.000311,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000255,0.000022,0.000256,0.000140,0.000140,0.002986,0.372622,-0.000438,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000236,0.000020,0.000237,0.000384,0.000384,0.002770,0.371958,-0.000664,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000219,0.000572,0.000572,0.002570,0.371129,-0.000829,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000203,0.000017,0.000203,0.000734,0.000734,0.002384,0.370166,-0.000964,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000188,0.000015,0.000188,0.000657,0.000657,0.002211,0.369304,-0.000862,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000544,0.000000,0.000000,0.000000,0.000001,0.000174,0.000014,0.000174,0.000647,0.000647,0.002051,0.369004,-0.000300,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000640,0.000000,0.000000,0.000000,0.000001,0.000161,0.000014,0.000162,0.000591,0.000591,0.001904,0.368860,-0.000144,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000794,0.000003,0.000006,0.000003,0.000001,0.000150,0.000014,0.000153,0.000432,0.000432,0.001769,0.369019,0.000159,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000844,0.000007,0.000010,0.000007,0.000001,0.000139,0.000015,0.000147,0.000353,0.000353,0.001645,0.369295,0.000276,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000861,0.000012,0.000015,0.000012,0.000001,0.000129,0.000016,0.000142,0.000271,0.000271,0.001531,0.369655,0.000360,1.000000,0.000009 +24,2022-08-02 00:00:00,0.000830,0.000016,0.000018,0.000016,0.000001,0.000120,0.000016,0.000137,0.000184,0.000184,0.001427,0.370057,0.000402,1.000000,0.000011 +25,2022-08-02 01:00:00,0.000912,0.000024,0.000029,0.000024,0.000001,0.000112,0.000018,0.000137,0.000079,0.000079,0.001333,0.370618,0.000561,1.000000,0.000017 +26,2022-08-02 02:00:00,0.001030,0.000035,0.000045,0.000035,0.000001,0.000105,0.000019,0.000141,0.000000,0.000000,0.001247,0.371341,0.000723,1.000000,0.000026 +27,2022-08-02 03:00:00,0.001007,0.000041,0.000043,0.000041,0.000001,0.000098,0.000020,0.000140,0.000000,0.000000,0.001169,0.372023,0.000683,1.000000,0.000028 +28,2022-08-02 04:00:00,0.001020,0.000044,0.000044,0.000044,0.000001,0.000092,0.000022,0.000137,0.000000,0.000000,0.001098,0.372699,0.000676,1.000000,0.000028 +29,2022-08-02 05:00:00,0.001065,0.000046,0.000048,0.000046,0.000001,0.000087,0.000023,0.000134,0.000000,0.000000,0.001035,0.373396,0.000697,1.000000,0.000030 +30,2022-08-02 06:00:00,0.001079,0.000048,0.000049,0.000048,0.000001,0.000082,0.000025,0.000131,0.000000,0.000000,0.000977,0.374086,0.000690,1.000000,0.000032 +31,2022-08-02 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000001,0.000078,0.000024,0.000101,0.000000,0.000000,0.000924,0.373756,-0.000330,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000001,0.000073,0.000023,0.000084,0.000000,0.000000,0.000874,0.373435,-0.000321,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000069,0.000023,0.000071,0.000000,0.000000,0.000827,0.373123,-0.000312,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000066,0.000022,0.000067,0.000000,0.000000,0.000784,0.372819,-0.000304,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000062,0.000022,0.000064,0.000000,0.000000,0.000743,0.372523,-0.000296,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000059,0.000021,0.000061,0.000000,0.000000,0.000705,0.372236,-0.000287,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000057,0.000000,0.000000,0.000000,0.000002,0.000056,0.000020,0.000058,0.000000,0.000000,0.000669,0.372011,-0.000224,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000096,0.000000,0.000000,0.000000,0.000002,0.000053,0.000020,0.000055,0.000120,0.000120,0.000636,0.371714,-0.000297,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000081,0.000000,0.000000,0.000000,0.000002,0.000051,0.000019,0.000052,0.000323,0.000323,0.000604,0.371214,-0.000501,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000054,0.000000,0.000000,0.000000,0.000002,0.000048,0.000017,0.000050,0.000487,0.000487,0.000574,0.370540,-0.000674,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000027,0.000000,0.000000,0.000000,0.000002,0.000045,0.000016,0.000048,0.000630,0.000630,0.000544,0.369720,-0.000820,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000056,0.000000,0.000000,0.000000,0.000002,0.000043,0.000014,0.000045,0.000727,0.000727,0.000515,0.368856,-0.000864,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000021,0.000000,0.000000,0.000000,0.000002,0.000041,0.000012,0.000043,0.000711,0.000711,0.000486,0.367998,-0.000858,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000027,0.000000,0.000000,0.000000,0.000002,0.000038,0.000011,0.000041,0.000657,0.000657,0.000459,0.367221,-0.000777,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000021,0.000000,0.000000,0.000000,0.000002,0.000036,0.000009,0.000039,0.000593,0.000593,0.000432,0.366523,-0.000699,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000014,0.000000,0.000000,0.000000,0.000003,0.000034,0.000008,0.000036,0.000467,0.000467,0.000406,0.365958,-0.000564,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000014,0.000000,0.000000,0.000000,0.000003,0.000032,0.000007,0.000034,0.000357,0.000357,0.000381,0.365517,-0.000442,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000014,0.000000,0.000000,0.000000,0.000003,0.000030,0.000007,0.000033,0.000213,0.000213,0.000358,0.365227,-0.000290,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000086,0.000000,0.000000,0.000000,0.000003,0.000028,0.000006,0.000031,0.000059,0.000059,0.000337,0.365165,-0.000062,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000086,0.000000,0.000000,0.000000,0.000003,0.000026,0.000006,0.000030,0.000000,0.000000,0.000317,0.365162,-0.000003,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000086,0.000000,0.000000,0.000000,0.000003,0.000025,0.000006,0.000028,0.000000,0.000000,0.000298,0.365158,-0.000003,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000062,0.000000,0.000000,0.000000,0.000003,0.000023,0.000006,0.000027,0.000000,0.000000,0.000281,0.365132,-0.000026,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000103,0.000000,0.000000,0.000000,0.000003,0.000022,0.000006,0.000026,0.000000,0.000000,0.000265,0.365146,0.000014,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000132,0.000001,0.000001,0.000001,0.000003,0.000021,0.000007,0.000025,0.000000,0.000000,0.000251,0.365188,0.000042,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000021,0.000000,0.000000,0.000000,0.000003,0.000020,0.000006,0.000023,0.000000,0.000000,0.000238,0.365121,-0.000067,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000022,0.000000,0.000000,0.000000,0.000003,0.000019,0.000006,0.000022,0.000000,0.000000,0.000225,0.365057,-0.000064,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000023,0.000000,0.000000,0.000000,0.000004,0.000018,0.000006,0.000021,0.000000,0.000000,0.000213,0.364995,-0.000062,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000024,0.000000,0.000000,0.000000,0.000004,0.000017,0.000006,0.000021,0.000000,0.000000,0.000203,0.364936,-0.000059,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000025,0.000000,0.000000,0.000000,0.000004,0.000016,0.000006,0.000020,0.000000,0.000000,0.000192,0.364880,-0.000056,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000025,0.000000,0.000000,0.000000,0.000004,0.000015,0.000006,0.000019,0.000000,0.000000,0.000183,0.364825,-0.000055,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000015,0.000006,0.000018,0.000000,0.000000,0.000174,0.364747,-0.000077,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000014,0.000005,0.000018,0.000135,0.000135,0.000165,0.364541,-0.000206,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000013,0.000004,0.000017,0.000383,0.000383,0.000157,0.364099,-0.000442,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000012,0.000003,0.000017,0.000573,0.000573,0.000147,0.363484,-0.000615,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000011,0.000002,0.000016,0.000734,0.000734,0.000137,0.362729,-0.000755,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000011,0.000000,0.000015,0.000751,0.000751,0.000127,0.361978,-0.000751,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000021,0.000000,0.000000,0.000000,0.000005,0.000010,0.000000,0.000014,0.000727,0.000727,0.000117,0.361272,-0.000706,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000027,0.000000,0.000000,0.000000,0.000005,0.000009,0.000000,0.000014,0.000666,0.000664,0.000108,0.360635,-0.000638,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000021,0.000000,0.000000,0.000000,0.000005,0.000008,0.000000,0.000013,0.000577,0.000574,0.000100,0.360082,-0.000553,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000021,0.000000,0.000000,0.000000,0.000005,0.000008,0.000000,0.000012,0.000465,0.000462,0.000092,0.359641,-0.000441,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000027,0.000000,0.000000,0.000000,0.000005,0.000007,0.000000,0.000012,0.000355,0.000352,0.000085,0.359316,-0.000325,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000027,0.000000,0.000000,0.000000,0.000005,0.000007,0.000000,0.000012,0.000226,0.000223,0.000079,0.359119,-0.000197,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000006,0.000000,0.000011,0.000074,0.000073,0.000072,0.359046,-0.000073,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000006,0.000000,0.000011,0.000000,0.000000,0.000067,0.359046,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000005,0.000000,0.000010,0.000000,0.000000,0.000062,0.359046,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000005,0.000000,0.000010,0.000000,0.000000,0.000057,0.359046,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000004,0.000000,0.000010,0.000000,0.000000,0.000053,0.359046,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000004,0.000000,0.000010,0.000000,0.000000,0.000049,0.359046,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000004,0.000000,0.000009,0.000000,0.000000,0.000045,0.359046,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000041,0.359046,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000038,0.359046,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000035,0.359046,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000033,0.359046,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000030,0.359046,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000000,0.000000,0.000028,0.359046,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000129,0.000127,0.000026,0.358919,-0.000127,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000375,0.000371,0.000024,0.358548,-0.000371,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000568,0.000560,0.000022,0.357988,-0.000560,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000002,0.000000,0.000008,0.000736,0.000723,0.000020,0.357265,-0.000723,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000002,0.000000,0.000008,0.000858,0.000841,0.000019,0.356424,-0.000841,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000838,0.000819,0.000017,0.355605,-0.000819,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000773,0.000752,0.000016,0.354853,-0.000752,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000633,0.000614,0.000015,0.354239,-0.000614,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000509,0.000492,0.000014,0.353747,-0.000492,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000386,0.000372,0.000012,0.353374,-0.000372,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000230,0.000221,0.000012,0.353153,-0.000221,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000079,0.000076,0.000011,0.353077,-0.000076,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000010,0.353077,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000009,0.353077,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000008,0.353077,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000008,0.353077,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000007,0.353077,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000007,0.353077,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000006,0.353077,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000006,0.353077,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000005,0.353077,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000005,0.353077,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000004,0.353077,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000004,0.353077,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000146,0.000141,0.000004,0.352936,-0.000141,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000387,0.000372,0.000003,0.352564,-0.000372,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000579,0.000556,0.000003,0.352007,-0.000556,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000743,0.000711,0.000003,0.351296,-0.000711,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000768,0.000733,0.000003,0.350563,-0.000733,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000736,0.000700,0.000003,0.349862,-0.000700,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000663,0.000629,0.000002,0.349233,-0.000629,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000564,0.000534,0.000002,0.348699,-0.000534,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000458,0.000432,0.000002,0.348267,-0.000432,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000343,0.000323,0.000002,0.347944,-0.000323,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000211,0.000199,0.000002,0.347745,-0.000199,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000076,0.000071,0.000002,0.347673,-0.000071,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.347673,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000124,0.000116,0.000001,0.347557,-0.000116,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000368,0.000346,0.000001,0.347211,-0.000346,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000562,0.000527,0.000000,0.346684,-0.000527,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000724,0.000677,0.000000,0.346007,-0.000677,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000849,0.000792,0.000000,0.345215,-0.000792,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000834,0.000775,0.000000,0.344441,-0.000775,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000769,0.000712,0.000000,0.343729,-0.000712,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000638,0.000589,0.000000,0.343140,-0.000589,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000509,0.000469,0.000000,0.342672,-0.000469,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000383,0.000352,0.000000,0.342320,-0.000352,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000222,0.000203,0.000000,0.342116,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000070,0.000064,0.000000,0.342052,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.342052,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000123,0.000112,0.000000,0.341940,-0.000112,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000362,0.000331,0.000000,0.341608,-0.000331,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000555,0.000507,0.000000,0.341101,-0.000507,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000714,0.000651,0.000000,0.340450,-0.000651,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000793,0.000721,0.000000,0.339730,-0.000721,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000775,0.000702,0.000000,0.339028,-0.000702,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000711,0.000642,0.000000,0.338386,-0.000642,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000592,0.000533,0.000000,0.337853,-0.000533,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000468,0.000420,0.000000,0.337433,-0.000420,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000358,0.000321,0.000000,0.337112,-0.000321,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000188,0.000168,0.000000,0.336944,-0.000168,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000033,0.000030,0.000000,0.336914,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.336914,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000105,0.000094,0.000000,0.336820,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000352,0.000314,0.000000,0.336506,-0.000314,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000553,0.000493,0.000000,0.336013,-0.000493,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000718,0.000639,0.000000,0.335374,-0.000639,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000841,0.000746,0.000000,0.334628,-0.000746,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000825,0.000729,0.000000,0.333899,-0.000729,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000756,0.000666,0.000000,0.333233,-0.000666,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000638,0.000560,0.000000,0.332673,-0.000560,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000503,0.000441,0.000000,0.332232,-0.000441,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000382,0.000334,0.000000,0.331898,-0.000334,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000209,0.000183,0.000000,0.331715,-0.000183,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000050,0.000044,0.000000,0.331672,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.331672,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000114,0.000099,0.000000,0.331573,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620716.csv b/test/channel_loss/channel_forcing/et/cat-2620716.csv new file mode 100644 index 000000000..d486ae103 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620716.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000000,0.000816,0.000079,0.000816,0.000186,0.000186,0.009024,0.374065,-0.002720,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000750,0.000077,0.000750,0.000063,0.000063,0.008350,0.371463,-0.002601,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000691,0.000075,0.000691,0.000000,0.000000,0.007734,0.368978,-0.002486,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000637,0.000074,0.000637,0.000000,0.000000,0.007170,0.366543,-0.002435,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000589,0.000072,0.000589,0.000000,0.000000,0.006654,0.364158,-0.002385,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000544,0.000071,0.000545,0.000000,0.000000,0.006180,0.361822,-0.002336,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000504,0.000069,0.000504,0.000000,0.000000,0.005746,0.359533,-0.002288,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000467,0.000068,0.000468,0.000000,0.000000,0.005346,0.357292,-0.002241,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000434,0.000067,0.000434,0.000000,0.000000,0.004979,0.355096,-0.002196,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000403,0.000065,0.000404,0.000000,0.000000,0.004641,0.352946,-0.002151,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000375,0.000064,0.000376,0.000000,0.000000,0.004330,0.350839,-0.002107,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000349,0.000062,0.000350,0.000000,0.000000,0.004044,0.348776,-0.002063,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000326,0.000061,0.000327,0.000000,0.000000,0.003779,0.346755,-0.002021,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000304,0.000060,0.000305,0.000000,0.000000,0.003535,0.344775,-0.001980,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000284,0.000059,0.000286,0.000142,0.000142,0.003310,0.342697,-0.002078,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000266,0.000057,0.000268,0.000387,0.000387,0.003102,0.340421,-0.002276,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000249,0.000056,0.000251,0.000568,0.000568,0.002909,0.338015,-0.002406,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000233,0.000054,0.000236,0.000718,0.000718,0.002730,0.335511,-0.002504,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000218,0.000053,0.000221,0.000637,0.000637,0.002564,0.333137,-0.002374,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000874,0.000003,0.000006,0.000003,0.000003,0.000205,0.000052,0.000212,0.000620,0.000620,0.002411,0.331679,-0.001458,1.000000,0.000003 +20,2022-08-01 20:00:00,0.001023,0.000013,0.000020,0.000013,0.000004,0.000193,0.000051,0.000209,0.000562,0.000562,0.002269,0.330439,-0.001240,1.000000,0.000010 +21,2022-08-01 21:00:00,0.001050,0.000027,0.000037,0.000027,0.000004,0.000181,0.000050,0.000212,0.000420,0.000420,0.002138,0.329375,-0.001065,1.000000,0.000021 +22,2022-08-01 22:00:00,0.001028,0.000037,0.000043,0.000037,0.000004,0.000171,0.000050,0.000212,0.000346,0.000346,0.002016,0.328377,-0.000998,1.000000,0.000027 +23,2022-08-01 23:00:00,0.001028,0.000047,0.000053,0.000047,0.000005,0.000161,0.000049,0.000213,0.000268,0.000268,0.001904,0.327466,-0.000910,1.000000,0.000033 +24,2022-08-02 00:00:00,0.001039,0.000059,0.000067,0.000059,0.000005,0.000152,0.000048,0.000216,0.000180,0.000180,0.001800,0.326658,-0.000808,1.000000,0.000041 +25,2022-08-02 01:00:00,0.001016,0.000071,0.000079,0.000071,0.000006,0.000144,0.000048,0.000220,0.000079,0.000079,0.001704,0.325930,-0.000728,1.000000,0.000049 +26,2022-08-02 02:00:00,0.001139,0.000096,0.000114,0.000096,0.000006,0.000136,0.000048,0.000239,0.000000,0.000000,0.001616,0.325380,-0.000550,1.000000,0.000067 +27,2022-08-02 03:00:00,0.001145,0.000108,0.000116,0.000108,0.000006,0.000129,0.000047,0.000244,0.000000,0.000000,0.001533,0.324847,-0.000534,1.000000,0.000075 +28,2022-08-02 04:00:00,0.001126,0.000113,0.000112,0.000113,0.000007,0.000123,0.000047,0.000243,0.000000,0.000000,0.001458,0.324309,-0.000537,1.000000,0.000073 +29,2022-08-02 05:00:00,0.001213,0.000122,0.000129,0.000122,0.000007,0.000117,0.000047,0.000246,0.000000,0.000000,0.001387,0.323851,-0.000458,1.000000,0.000080 +30,2022-08-02 06:00:00,0.001269,0.000131,0.000140,0.000131,0.000008,0.000111,0.000046,0.000251,0.000000,0.000000,0.001322,0.323447,-0.000404,1.000000,0.000089 +31,2022-08-02 07:00:00,0.000000,0.000061,0.000000,0.000061,0.000008,0.000106,0.000046,0.000175,0.000000,0.000000,0.001262,0.321944,-0.001502,1.000000,0.000028 +32,2022-08-02 08:00:00,0.000000,0.000028,0.000000,0.000028,0.000009,0.000101,0.000045,0.000138,0.000000,0.000000,0.001205,0.320473,-0.001472,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000097,0.000044,0.000106,0.000000,0.000000,0.001152,0.319032,-0.001441,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000093,0.000043,0.000102,0.000000,0.000000,0.001102,0.317620,-0.001412,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000089,0.000042,0.000099,0.000000,0.000000,0.001055,0.316237,-0.001383,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000085,0.000041,0.000096,0.000000,0.000000,0.001011,0.314882,-0.001355,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000104,0.000001,0.000001,0.000001,0.000011,0.000081,0.000040,0.000093,0.000000,0.000000,0.000970,0.313656,-0.001226,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000240,0.000001,0.000001,0.000001,0.000012,0.000078,0.000039,0.000091,0.000125,0.000125,0.000931,0.312465,-0.001190,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000116,0.000001,0.000000,0.000001,0.000012,0.000075,0.000039,0.000088,0.000329,0.000329,0.000895,0.310979,-0.001486,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000112,0.000000,0.000000,0.000000,0.000013,0.000072,0.000038,0.000085,0.000487,0.000487,0.000860,0.309365,-0.001614,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000069,0.000036,0.000083,0.000616,0.000616,0.000827,0.307610,-0.001755,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000161,0.000000,0.000000,0.000000,0.000014,0.000067,0.000035,0.000081,0.000707,0.000707,0.000796,0.305897,-0.001713,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000014,0.000064,0.000034,0.000079,0.000682,0.000682,0.000766,0.304143,-0.001754,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000058,0.000000,0.000000,0.000000,0.000015,0.000062,0.000033,0.000077,0.000629,0.000629,0.000737,0.302477,-0.001666,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000016,0.000059,0.000032,0.000075,0.000581,0.000581,0.000710,0.300892,-0.001585,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000016,0.000057,0.000031,0.000074,0.000466,0.000466,0.000684,0.299452,-0.001440,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000055,0.000030,0.000072,0.000353,0.000353,0.000659,0.298151,-0.001300,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000053,0.000030,0.000071,0.000212,0.000212,0.000636,0.297016,-0.001135,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000273,0.000002,0.000004,0.000002,0.000018,0.000051,0.000029,0.000072,0.000058,0.000058,0.000614,0.296262,-0.000754,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000340,0.000007,0.000010,0.000007,0.000019,0.000050,0.000029,0.000075,0.000000,0.000000,0.000593,0.295640,-0.000623,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000435,0.000013,0.000017,0.000013,0.000019,0.000048,0.000029,0.000080,0.000000,0.000000,0.000573,0.295117,-0.000523,1.000000,0.000010 +52,2022-08-03 04:00:00,0.000362,0.000013,0.000012,0.000013,0.000020,0.000046,0.000028,0.000079,0.000000,0.000000,0.000555,0.294538,-0.000579,1.000000,0.000009 +53,2022-08-03 05:00:00,0.000470,0.000017,0.000019,0.000017,0.000021,0.000045,0.000028,0.000082,0.000000,0.000000,0.000538,0.294069,-0.000469,1.000000,0.000011 +54,2022-08-03 06:00:00,0.000424,0.000016,0.000016,0.000016,0.000021,0.000044,0.000028,0.000081,0.000000,0.000000,0.000522,0.293568,-0.000501,1.000000,0.000011 +55,2022-08-03 07:00:00,0.000099,0.000008,0.000001,0.000008,0.000022,0.000042,0.000027,0.000072,0.000000,0.000000,0.000507,0.292774,-0.000794,1.000000,0.000004 +56,2022-08-03 08:00:00,0.000100,0.000004,0.000001,0.000004,0.000022,0.000041,0.000027,0.000067,0.000000,0.000000,0.000492,0.291997,-0.000777,1.000000,0.000001 +57,2022-08-03 09:00:00,0.000100,0.000001,0.000001,0.000001,0.000023,0.000040,0.000026,0.000064,0.000000,0.000000,0.000478,0.291236,-0.000761,1.000000,0.000001 +58,2022-08-03 10:00:00,0.000100,0.000001,0.000001,0.000001,0.000024,0.000039,0.000026,0.000063,0.000000,0.000000,0.000465,0.290491,-0.000745,1.000000,0.000001 +59,2022-08-03 11:00:00,0.000100,0.000001,0.000001,0.000001,0.000024,0.000038,0.000025,0.000063,0.000000,0.000000,0.000452,0.289760,-0.000730,1.000000,0.000001 +60,2022-08-03 12:00:00,0.000100,0.000001,0.000001,0.000001,0.000025,0.000037,0.000025,0.000063,0.000000,0.000000,0.000440,0.289045,-0.000715,1.000000,0.000001 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000036,0.000024,0.000062,0.000000,0.000000,0.000428,0.288248,-0.000798,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000035,0.000024,0.000061,0.000137,0.000137,0.000417,0.287332,-0.000915,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000034,0.000023,0.000061,0.000387,0.000387,0.000406,0.286191,-0.001141,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000033,0.000022,0.000061,0.000570,0.000570,0.000395,0.284894,-0.001297,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000032,0.000021,0.000060,0.000721,0.000721,0.000384,0.283475,-0.001419,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000031,0.000020,0.000060,0.000736,0.000736,0.000373,0.282071,-0.001404,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000087,0.000000,0.000000,0.000000,0.000030,0.000030,0.000019,0.000060,0.000697,0.000697,0.000362,0.280819,-0.001252,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000058,0.000000,0.000000,0.000000,0.000030,0.000029,0.000019,0.000060,0.000642,0.000642,0.000352,0.279617,-0.001202,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000087,0.000000,0.000000,0.000000,0.000031,0.000028,0.000018,0.000059,0.000565,0.000565,0.000341,0.278544,-0.001073,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000087,0.000000,0.000000,0.000000,0.000032,0.000028,0.000017,0.000059,0.000456,0.000456,0.000331,0.277600,-0.000944,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000032,0.000027,0.000017,0.000059,0.000351,0.000351,0.000321,0.276749,-0.000850,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000033,0.000026,0.000016,0.000059,0.000223,0.000223,0.000312,0.276042,-0.000707,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000025,0.000016,0.000059,0.000072,0.000072,0.000302,0.275440,-0.000602,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000024,0.000016,0.000059,0.000000,0.000000,0.000294,0.274921,-0.000519,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000024,0.000015,0.000059,0.000000,0.000000,0.000285,0.274413,-0.000508,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000023,0.000015,0.000059,0.000000,0.000000,0.000277,0.273915,-0.000498,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000022,0.000015,0.000059,0.000000,0.000000,0.000269,0.273427,-0.000488,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000022,0.000014,0.000059,0.000000,0.000000,0.000262,0.272949,-0.000478,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000021,0.000014,0.000059,0.000000,0.000000,0.000255,0.272481,-0.000468,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000021,0.000014,0.000059,0.000000,0.000000,0.000248,0.272023,-0.000458,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000020,0.000014,0.000059,0.000000,0.000000,0.000242,0.271574,-0.000449,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000020,0.000013,0.000059,0.000000,0.000000,0.000235,0.271134,-0.000440,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000019,0.000013,0.000059,0.000000,0.000000,0.000229,0.270703,-0.000431,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000019,0.000013,0.000060,0.000000,0.000000,0.000223,0.270281,-0.000422,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000018,0.000013,0.000060,0.000000,0.000000,0.000218,0.269868,-0.000413,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000018,0.000012,0.000060,0.000131,0.000131,0.000212,0.269335,-0.000533,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000017,0.000012,0.000060,0.000379,0.000379,0.000207,0.268569,-0.000766,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000017,0.000011,0.000061,0.000565,0.000565,0.000201,0.267638,-0.000932,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000016,0.000010,0.000061,0.000721,0.000721,0.000195,0.266572,-0.001065,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000016,0.000010,0.000061,0.000838,0.000838,0.000189,0.265415,-0.001158,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000015,0.000009,0.000061,0.000812,0.000812,0.000183,0.264305,-0.001109,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000015,0.000008,0.000061,0.000741,0.000741,0.000177,0.263288,-0.001017,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000014,0.000008,0.000061,0.000617,0.000617,0.000170,0.262414,-0.000874,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000014,0.000007,0.000061,0.000502,0.000502,0.000164,0.261670,-0.000744,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000013,0.000007,0.000062,0.000381,0.000381,0.000158,0.261059,-0.000610,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000013,0.000007,0.000062,0.000228,0.000228,0.000152,0.260612,-0.000447,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000012,0.000006,0.000062,0.000077,0.000077,0.000146,0.260321,-0.000291,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000012,0.000006,0.000062,0.000000,0.000000,0.000141,0.260112,-0.000209,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000011,0.000006,0.000062,0.000000,0.000000,0.000135,0.259907,-0.000205,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000011,0.000006,0.000063,0.000000,0.000000,0.000131,0.259706,-0.000201,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000011,0.000006,0.000063,0.000000,0.000000,0.000126,0.259509,-0.000197,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000010,0.000006,0.000063,0.000000,0.000000,0.000122,0.259317,-0.000193,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000010,0.000006,0.000063,0.000000,0.000000,0.000118,0.259128,-0.000189,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000009,0.000006,0.000064,0.000000,0.000000,0.000114,0.258943,-0.000185,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000009,0.000005,0.000064,0.000000,0.000000,0.000110,0.258762,-0.000181,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000009,0.000005,0.000064,0.000000,0.000000,0.000107,0.258584,-0.000177,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000009,0.000005,0.000065,0.000000,0.000000,0.000103,0.258411,-0.000174,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000008,0.000005,0.000065,0.000000,0.000000,0.000100,0.258240,-0.000170,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000008,0.000005,0.000065,0.000000,0.000000,0.000097,0.258074,-0.000167,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000008,0.000005,0.000066,0.000148,0.000148,0.000094,0.257766,-0.000308,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000008,0.000005,0.000066,0.000392,0.000392,0.000091,0.257225,-0.000541,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000007,0.000004,0.000067,0.000576,0.000576,0.000088,0.256515,-0.000710,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000007,0.000004,0.000067,0.000727,0.000727,0.000084,0.255672,-0.000843,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000007,0.000003,0.000067,0.000746,0.000746,0.000081,0.254827,-0.000845,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000006,0.000002,0.000067,0.000712,0.000712,0.000077,0.254033,-0.000794,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000006,0.000002,0.000068,0.000624,0.000624,0.000073,0.253341,-0.000692,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000006,0.000002,0.000068,0.000559,0.000559,0.000069,0.252728,-0.000614,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000005,0.000001,0.000068,0.000454,0.000454,0.000065,0.252229,-0.000499,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000005,0.000001,0.000068,0.000340,0.000340,0.000061,0.251852,-0.000377,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000005,0.000001,0.000069,0.000210,0.000210,0.000057,0.251611,-0.000241,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000004,0.000001,0.000069,0.000076,0.000076,0.000053,0.251505,-0.000105,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000004,0.000001,0.000069,0.000000,0.000000,0.000050,0.251477,-0.000029,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000004,0.000001,0.000070,0.000000,0.000000,0.000047,0.251448,-0.000028,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000004,0.000001,0.000070,0.000000,0.000000,0.000044,0.251421,-0.000028,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000003,0.000001,0.000070,0.000000,0.000000,0.000041,0.251394,-0.000027,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000003,0.000001,0.000071,0.000000,0.000000,0.000039,0.251367,-0.000026,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000003,0.000001,0.000071,0.000000,0.000000,0.000037,0.251341,-0.000026,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000003,0.000001,0.000071,0.000000,0.000000,0.000035,0.251316,-0.000025,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000003,0.000001,0.000072,0.000000,0.000000,0.000033,0.251291,-0.000025,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000001,0.000072,0.000000,0.000000,0.000031,0.251267,-0.000024,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000002,0.000001,0.000073,0.000000,0.000000,0.000029,0.251243,-0.000024,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000073,0.000000,0.000000,0.000028,0.251219,-0.000023,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000001,0.000073,0.000000,0.000000,0.000026,0.251197,-0.000023,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000001,0.000074,0.000126,0.000126,0.000025,0.251051,-0.000146,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000000,0.000074,0.000373,0.000373,0.000023,0.250666,-0.000385,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000075,0.000557,0.000557,0.000021,0.250108,-0.000558,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000075,0.000708,0.000708,0.000020,0.249401,-0.000708,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000002,0.000000,0.000075,0.000818,0.000814,0.000018,0.248587,-0.000814,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000076,0.000793,0.000785,0.000017,0.247803,-0.000785,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000734,0.000722,0.000015,0.247080,-0.000722,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000077,0.000619,0.000605,0.000014,0.246475,-0.000605,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000501,0.000488,0.000013,0.245987,-0.000488,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000379,0.000368,0.000012,0.245619,-0.000368,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000220,0.000213,0.000011,0.245406,-0.000213,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000069,0.000067,0.000010,0.245340,-0.000067,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000010,0.245340,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000009,0.245340,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000008,0.245340,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000000,0.000000,0.000008,0.245340,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000080,0.000000,0.000000,0.000007,0.245340,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000001,0.000000,0.000081,0.000000,0.000000,0.000006,0.245340,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000006,0.245340,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000082,0.000000,0.000000,0.000005,0.245340,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000005,0.245340,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000083,0.000000,0.000000,0.000005,0.245340,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000004,0.245340,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000004,0.245340,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000125,0.000121,0.000004,0.245219,-0.000121,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000368,0.000355,0.000003,0.244864,-0.000355,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000554,0.000534,0.000003,0.244330,-0.000534,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000703,0.000674,0.000003,0.243657,-0.000674,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000086,0.000778,0.000742,0.000003,0.242915,-0.000742,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000751,0.000712,0.000002,0.242203,-0.000712,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000686,0.000647,0.000002,0.241556,-0.000647,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000585,0.000549,0.000002,0.241007,-0.000549,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000469,0.000438,0.000002,0.240569,-0.000438,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000088,0.000358,0.000333,0.000002,0.240235,-0.000333,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000187,0.000173,0.000002,0.240062,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000035,0.000032,0.000002,0.240030,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000001,0.240030,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000106,0.000098,0.000001,0.239931,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000353,0.000327,0.000000,0.239604,-0.000327,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000549,0.000508,0.000000,0.239096,-0.000508,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000701,0.000645,0.000000,0.238451,-0.000645,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000818,0.000749,0.000000,0.237702,-0.000749,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000792,0.000721,0.000000,0.236980,-0.000721,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000723,0.000655,0.000000,0.236326,-0.000655,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000619,0.000558,0.000000,0.235768,-0.000558,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000495,0.000444,0.000000,0.235323,-0.000444,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000097,0.000374,0.000334,0.000000,0.234989,-0.000334,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000207,0.000184,0.000000,0.234805,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000048,0.000043,0.000000,0.234762,-0.000043,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000000,0.234762,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000115,0.000102,0.000000,0.234659,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620717.csv b/test/channel_loss/channel_forcing/et/cat-2620717.csv new file mode 100644 index 000000000..a473dc21d --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620717.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000823,0.000151,0.000823,0.000181,0.000181,0.009089,0.373651,-0.002305,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000763,0.000147,0.000763,0.000061,0.000061,0.008474,0.371453,-0.002197,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000708,0.000144,0.000708,0.000000,0.000000,0.007910,0.369366,-0.002087,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000658,0.000141,0.000659,0.000000,0.000000,0.007392,0.367326,-0.002040,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000613,0.000137,0.000613,0.000000,0.000000,0.006916,0.365332,-0.001994,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000572,0.000134,0.000572,0.000000,0.000000,0.006478,0.363384,-0.001948,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000535,0.000131,0.000535,0.000000,0.000000,0.006075,0.361480,-0.001904,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000500,0.000128,0.000500,0.000000,0.000000,0.005703,0.359619,-0.001861,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000469,0.000125,0.000469,0.000000,0.000000,0.005360,0.357801,-0.001818,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000440,0.000122,0.000440,0.000000,0.000000,0.005043,0.356024,-0.001777,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000413,0.000120,0.000414,0.000000,0.000000,0.004750,0.354287,-0.001737,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000388,0.000117,0.000389,0.000000,0.000000,0.004479,0.352590,-0.001697,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000366,0.000114,0.000367,0.000000,0.000000,0.004227,0.350932,-0.001658,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000345,0.000112,0.000346,0.000000,0.000000,0.003994,0.349311,-0.001621,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000325,0.000109,0.000327,0.000142,0.000142,0.003778,0.347589,-0.001722,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000307,0.000106,0.000309,0.000387,0.000387,0.003576,0.345666,-0.001923,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000291,0.000103,0.000293,0.000563,0.000563,0.003388,0.343615,-0.002051,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000275,0.000099,0.000277,0.000695,0.000695,0.003212,0.341481,-0.002134,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000261,0.000096,0.000263,0.000613,0.000613,0.003047,0.339477,-0.002005,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001100,0.000006,0.000011,0.000006,0.000003,0.000247,0.000095,0.000256,0.000589,0.000589,0.002894,0.338604,-0.000872,1.000000,0.000005 +20,2022-08-01 20:00:00,0.000972,0.000007,0.000008,0.000007,0.000003,0.000235,0.000093,0.000245,0.000527,0.000527,0.002753,0.337691,-0.000914,1.000000,0.000006 +21,2022-08-01 21:00:00,0.001065,0.000014,0.000018,0.000014,0.000003,0.000223,0.000092,0.000241,0.000407,0.000407,0.002621,0.336996,-0.000694,1.000000,0.000010 +22,2022-08-01 22:00:00,0.001089,0.000020,0.000024,0.000020,0.000003,0.000213,0.000091,0.000236,0.000332,0.000332,0.002499,0.336409,-0.000587,1.000000,0.000015 +23,2022-08-01 23:00:00,0.001058,0.000024,0.000027,0.000024,0.000004,0.000203,0.000090,0.000231,0.000259,0.000259,0.002387,0.335873,-0.000536,1.000000,0.000017 +24,2022-08-02 00:00:00,0.001085,0.000031,0.000035,0.000031,0.000004,0.000194,0.000089,0.000229,0.000173,0.000173,0.002282,0.335452,-0.000421,1.000000,0.000021 +25,2022-08-02 01:00:00,0.001218,0.000043,0.000054,0.000043,0.000004,0.000186,0.000089,0.000233,0.000077,0.000077,0.002186,0.335246,-0.000206,1.000000,0.000031 +26,2022-08-02 02:00:00,0.001236,0.000055,0.000063,0.000055,0.000005,0.000178,0.000089,0.000237,0.000000,0.000000,0.002097,0.335129,-0.000117,1.000000,0.000039 +27,2022-08-02 03:00:00,0.001230,0.000060,0.000062,0.000060,0.000005,0.000171,0.000089,0.000236,0.000000,0.000000,0.002015,0.335009,-0.000120,1.000000,0.000040 +28,2022-08-02 04:00:00,0.001220,0.000062,0.000061,0.000062,0.000005,0.000164,0.000089,0.000231,0.000000,0.000000,0.001939,0.334883,-0.000126,1.000000,0.000040 +29,2022-08-02 05:00:00,0.001283,0.000065,0.000067,0.000065,0.000006,0.000158,0.000088,0.000229,0.000000,0.000000,0.001869,0.334815,-0.000067,1.000000,0.000043 +30,2022-08-02 06:00:00,0.001300,0.000067,0.000069,0.000067,0.000006,0.000153,0.000088,0.000226,0.000000,0.000000,0.001805,0.334764,-0.000052,1.000000,0.000045 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000006,0.000147,0.000086,0.000185,0.000000,0.000000,0.001744,0.333511,-0.001253,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000007,0.000142,0.000084,0.000163,0.000000,0.000000,0.001686,0.332286,-0.001225,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000138,0.000082,0.000145,0.000000,0.000000,0.001631,0.331090,-0.001197,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000133,0.000081,0.000141,0.000000,0.000000,0.001578,0.329920,-0.001169,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000129,0.000079,0.000137,0.000000,0.000000,0.001528,0.328777,-0.001143,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000125,0.000077,0.000133,0.000000,0.000000,0.001480,0.327660,-0.001117,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000193,0.000001,0.000002,0.000001,0.000009,0.000121,0.000076,0.000131,0.000000,0.000000,0.001435,0.326756,-0.000905,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000300,0.000001,0.000001,0.000001,0.000009,0.000117,0.000074,0.000128,0.000127,0.000127,0.001391,0.325853,-0.000903,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000144,0.000001,0.000000,0.000001,0.000010,0.000114,0.000072,0.000124,0.000328,0.000328,0.001350,0.324622,-0.001230,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000126,0.000000,0.000000,0.000000,0.000010,0.000110,0.000070,0.000121,0.000477,0.000477,0.001309,0.323258,-0.001365,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000126,0.000000,0.000000,0.000000,0.000011,0.000107,0.000068,0.000118,0.000593,0.000593,0.001270,0.321810,-0.001447,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000189,0.000000,0.000000,0.000000,0.000011,0.000104,0.000065,0.000115,0.000683,0.000683,0.001232,0.320369,-0.001441,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000100,0.000063,0.000112,0.000642,0.000642,0.001194,0.318878,-0.001491,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000097,0.000061,0.000109,0.000596,0.000596,0.001157,0.317466,-0.001412,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000094,0.000058,0.000107,0.000559,0.000559,0.001122,0.316121,-0.001345,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000091,0.000057,0.000104,0.000457,0.000457,0.001087,0.314907,-0.001214,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000088,0.000055,0.000102,0.000345,0.000345,0.001053,0.313830,-0.001077,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000086,0.000053,0.000100,0.000208,0.000208,0.001021,0.312912,-0.000918,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000359,0.000002,0.000004,0.000002,0.000014,0.000083,0.000053,0.000099,0.000055,0.000055,0.000990,0.312449,-0.000463,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000449,0.000005,0.000008,0.000005,0.000015,0.000081,0.000052,0.000101,0.000000,0.000000,0.000962,0.312135,-0.000315,1.000000,0.000004 +51,2022-08-03 03:00:00,0.000449,0.000007,0.000008,0.000007,0.000015,0.000078,0.000052,0.000101,0.000000,0.000000,0.000935,0.311827,-0.000307,1.000000,0.000005 +52,2022-08-03 04:00:00,0.000307,0.000006,0.000004,0.000006,0.000016,0.000076,0.000051,0.000098,0.000000,0.000000,0.000909,0.311392,-0.000435,1.000000,0.000003 +53,2022-08-03 05:00:00,0.000449,0.000007,0.000008,0.000007,0.000016,0.000074,0.000050,0.000098,0.000000,0.000000,0.000885,0.311102,-0.000291,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000328,0.000005,0.000004,0.000005,0.000017,0.000072,0.000050,0.000094,0.000000,0.000000,0.000863,0.310704,-0.000398,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000070,0.000003,0.000000,0.000003,0.000017,0.000071,0.000049,0.000091,0.000000,0.000000,0.000841,0.310066,-0.000637,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000070,0.000001,0.000000,0.000001,0.000018,0.000069,0.000048,0.000088,0.000000,0.000000,0.000820,0.309444,-0.000623,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000070,0.000000,0.000000,0.000000,0.000018,0.000067,0.000047,0.000085,0.000000,0.000000,0.000800,0.308835,-0.000609,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000087,0.000000,0.000000,0.000000,0.000019,0.000065,0.000046,0.000084,0.000000,0.000000,0.000780,0.308256,-0.000579,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000070,0.000000,0.000000,0.000000,0.000019,0.000064,0.000045,0.000083,0.000000,0.000000,0.000761,0.307675,-0.000582,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000087,0.000000,0.000000,0.000000,0.000020,0.000062,0.000044,0.000082,0.000000,0.000000,0.000743,0.307123,-0.000552,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000061,0.000043,0.000081,0.000000,0.000000,0.000725,0.306498,-0.000624,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000059,0.000042,0.000080,0.000137,0.000137,0.000708,0.305754,-0.000744,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000058,0.000040,0.000079,0.000387,0.000387,0.000690,0.304783,-0.000971,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000056,0.000038,0.000078,0.000562,0.000562,0.000673,0.303663,-0.001120,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000055,0.000037,0.000077,0.000702,0.000702,0.000654,0.302431,-0.001232,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000053,0.000035,0.000076,0.000708,0.000708,0.000636,0.301222,-0.001209,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000123,0.000000,0.000000,0.000000,0.000023,0.000052,0.000033,0.000075,0.000671,0.000671,0.000617,0.300196,-0.001026,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000050,0.000031,0.000074,0.000613,0.000613,0.000598,0.299192,-0.001004,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000123,0.000000,0.000000,0.000000,0.000024,0.000048,0.000030,0.000073,0.000548,0.000548,0.000580,0.298332,-0.000860,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000124,0.000000,0.000000,0.000000,0.000025,0.000047,0.000029,0.000072,0.000443,0.000443,0.000561,0.297596,-0.000737,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000081,0.000000,0.000000,0.000000,0.000025,0.000045,0.000028,0.000071,0.000343,0.000343,0.000544,0.296932,-0.000664,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000026,0.000044,0.000027,0.000070,0.000220,0.000220,0.000526,0.296406,-0.000526,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000043,0.000026,0.000069,0.000070,0.000070,0.000510,0.295957,-0.000449,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000041,0.000026,0.000068,0.000000,0.000000,0.000494,0.295586,-0.000370,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000040,0.000025,0.000068,0.000000,0.000000,0.000479,0.295224,-0.000362,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000039,0.000024,0.000067,0.000000,0.000000,0.000465,0.294871,-0.000354,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000038,0.000024,0.000066,0.000000,0.000000,0.000451,0.294525,-0.000346,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000037,0.000023,0.000066,0.000000,0.000000,0.000438,0.294187,-0.000338,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000035,0.000023,0.000065,0.000000,0.000000,0.000425,0.293857,-0.000330,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000034,0.000022,0.000065,0.000000,0.000000,0.000413,0.293534,-0.000323,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000033,0.000022,0.000064,0.000000,0.000000,0.000401,0.293219,-0.000315,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000033,0.000021,0.000064,0.000000,0.000000,0.000390,0.292911,-0.000308,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000032,0.000021,0.000063,0.000000,0.000000,0.000379,0.292610,-0.000301,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000031,0.000020,0.000063,0.000000,0.000000,0.000368,0.292315,-0.000294,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000030,0.000020,0.000063,0.000000,0.000000,0.000358,0.292028,-0.000288,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000029,0.000019,0.000062,0.000132,0.000132,0.000348,0.291618,-0.000410,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000028,0.000018,0.000062,0.000381,0.000381,0.000338,0.290974,-0.000644,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000027,0.000017,0.000062,0.000561,0.000561,0.000328,0.290168,-0.000806,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000026,0.000015,0.000061,0.000701,0.000701,0.000317,0.289245,-0.000924,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000025,0.000014,0.000061,0.000812,0.000812,0.000305,0.288233,-0.001012,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000024,0.000012,0.000060,0.000776,0.000776,0.000293,0.287280,-0.000953,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000023,0.000011,0.000060,0.000703,0.000703,0.000280,0.286420,-0.000860,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000022,0.000010,0.000059,0.000592,0.000592,0.000267,0.285688,-0.000733,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000021,0.000009,0.000059,0.000490,0.000490,0.000255,0.285072,-0.000616,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000020,0.000008,0.000058,0.000375,0.000375,0.000243,0.284583,-0.000489,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000019,0.000007,0.000058,0.000224,0.000224,0.000231,0.284252,-0.000331,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000018,0.000007,0.000057,0.000075,0.000075,0.000219,0.284074,-0.000178,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000017,0.000007,0.000057,0.000000,0.000000,0.000209,0.283974,-0.000100,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000017,0.000007,0.000056,0.000000,0.000000,0.000199,0.283876,-0.000098,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000016,0.000007,0.000056,0.000000,0.000000,0.000190,0.283780,-0.000096,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000015,0.000006,0.000056,0.000000,0.000000,0.000181,0.283687,-0.000093,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000014,0.000006,0.000056,0.000000,0.000000,0.000173,0.283595,-0.000091,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000014,0.000006,0.000056,0.000000,0.000000,0.000165,0.283506,-0.000089,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000013,0.000006,0.000056,0.000000,0.000000,0.000158,0.283419,-0.000087,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000013,0.000006,0.000055,0.000000,0.000000,0.000151,0.283334,-0.000085,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000012,0.000006,0.000055,0.000000,0.000000,0.000145,0.283250,-0.000083,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000012,0.000006,0.000055,0.000000,0.000000,0.000139,0.283169,-0.000081,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000011,0.000005,0.000055,0.000000,0.000000,0.000133,0.283089,-0.000080,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000011,0.000005,0.000055,0.000000,0.000000,0.000128,0.283012,-0.000078,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000010,0.000005,0.000055,0.000146,0.000146,0.000123,0.282793,-0.000219,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000010,0.000004,0.000055,0.000392,0.000392,0.000117,0.282339,-0.000454,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000009,0.000003,0.000055,0.000567,0.000567,0.000111,0.281724,-0.000615,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000009,0.000002,0.000055,0.000704,0.000704,0.000105,0.280989,-0.000734,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000008,0.000001,0.000055,0.000720,0.000720,0.000098,0.280256,-0.000733,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000008,0.000000,0.000055,0.000685,0.000685,0.000090,0.279571,-0.000685,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000007,0.000000,0.000055,0.000608,0.000608,0.000083,0.278963,-0.000608,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000006,0.000000,0.000055,0.000553,0.000551,0.000077,0.278412,-0.000551,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000006,0.000000,0.000055,0.000454,0.000451,0.000071,0.277962,-0.000451,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000005,0.000000,0.000055,0.000339,0.000336,0.000065,0.277626,-0.000336,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000005,0.000000,0.000055,0.000209,0.000206,0.000060,0.277420,-0.000206,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000005,0.000000,0.000055,0.000076,0.000075,0.000056,0.277344,-0.000075,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000004,0.000000,0.000055,0.000000,0.000000,0.000051,0.277344,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000004,0.000000,0.000055,0.000000,0.000000,0.000048,0.277344,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000004,0.000000,0.000055,0.000000,0.000000,0.000044,0.277344,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000003,0.000000,0.000055,0.000000,0.000000,0.000041,0.277344,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000003,0.000000,0.000055,0.000000,0.000000,0.000037,0.277345,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000000,0.000000,0.000035,0.277345,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000000,0.000000,0.000032,0.277345,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000056,0.000000,0.000000,0.000029,0.277345,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000056,0.000000,0.000000,0.000027,0.277345,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000056,0.000000,0.000000,0.000025,0.277345,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000000,0.000000,0.000023,0.277345,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000000,0.000000,0.000021,0.277345,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000126,0.000125,0.000020,0.277220,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000002,0.000000,0.000057,0.000372,0.000367,0.000018,0.276853,-0.000367,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000058,0.000549,0.000541,0.000017,0.276313,-0.000541,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000685,0.000672,0.000016,0.275641,-0.000672,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000789,0.000771,0.000014,0.274870,-0.000771,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000059,0.000759,0.000739,0.000013,0.274131,-0.000739,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000696,0.000674,0.000012,0.273457,-0.000674,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000597,0.000576,0.000011,0.272881,-0.000576,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000059,0.000490,0.000471,0.000010,0.272410,-0.000471,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000371,0.000356,0.000010,0.272054,-0.000356,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000218,0.000209,0.000009,0.271845,-0.000209,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000060,0.000067,0.000064,0.000008,0.271781,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000000,0.000000,0.000008,0.271781,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000000,0.000000,0.000007,0.271781,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000061,0.000000,0.000000,0.000006,0.271781,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000000,0.000000,0.000006,0.271781,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000000,0.000000,0.000005,0.271781,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000005,0.271781,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000000,0.000000,0.000005,0.271781,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000000,0.000000,0.000004,0.271781,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000004,0.271781,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000004,0.271781,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000000,0.000000,0.000003,0.271781,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000003,0.271781,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000126,0.000120,0.000003,0.271661,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000368,0.000352,0.000003,0.271309,-0.000352,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000546,0.000520,0.000002,0.270789,-0.000520,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000682,0.000648,0.000002,0.270141,-0.000648,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000066,0.000757,0.000716,0.000002,0.269425,-0.000716,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000720,0.000678,0.000002,0.268748,-0.000678,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000657,0.000616,0.000002,0.268132,-0.000616,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000570,0.000533,0.000002,0.267599,-0.000533,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000464,0.000432,0.000002,0.267167,-0.000432,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000353,0.000328,0.000001,0.266839,-0.000328,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000184,0.000170,0.000001,0.266669,-0.000170,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000035,0.000032,0.000001,0.266637,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.266637,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.266637,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.266637,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.266637,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.266638,0.000001,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.266639,0.000002,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000001,0.266641,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000001,0.266643,0.000002,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000001,0.266644,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000001,0.266645,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.266646,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.266646,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000107,0.000099,0.000000,0.266547,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000354,0.000327,0.000000,0.266220,-0.000327,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000541,0.000500,0.000000,0.265721,-0.000500,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000680,0.000626,0.000000,0.265095,-0.000626,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000796,0.000730,0.000000,0.264365,-0.000730,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000757,0.000691,0.000000,0.263674,-0.000691,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000687,0.000624,0.000000,0.263049,-0.000624,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000598,0.000541,0.000000,0.262508,-0.000541,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000485,0.000438,0.000000,0.262070,-0.000438,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000367,0.000330,0.000000,0.261740,-0.000330,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000204,0.000183,0.000000,0.261557,-0.000183,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000047,0.000042,0.000000,0.261515,-0.000042,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.261515,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000116,0.000104,0.000000,0.261411,-0.000104,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620718.csv b/test/channel_loss/channel_forcing/et/cat-2620718.csv new file mode 100644 index 000000000..070aefce0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620718.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000068,0.000000,0.000000,0.000000,0.000000,0.000818,0.000097,0.000818,0.000179,0.000179,0.009041,0.371498,-0.003365,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000754,0.000095,0.000754,0.000060,0.000060,0.008382,0.368246,-0.003252,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000696,0.000093,0.000696,0.000000,0.000000,0.007780,0.365115,-0.003132,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000643,0.000092,0.000643,0.000000,0.000000,0.007229,0.362042,-0.003073,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000595,0.000090,0.000595,0.000000,0.000000,0.006724,0.359027,-0.003015,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000552,0.000088,0.000552,0.000000,0.000000,0.006260,0.356069,-0.002958,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000512,0.000087,0.000513,0.000000,0.000000,0.005835,0.353166,-0.002903,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000476,0.000085,0.000477,0.000000,0.000000,0.005444,0.350318,-0.002848,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000443,0.000083,0.000444,0.000000,0.000000,0.005084,0.347524,-0.002794,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000413,0.000082,0.000414,0.000000,0.000000,0.004753,0.344782,-0.002742,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000385,0.000080,0.000387,0.000000,0.000000,0.004447,0.342092,-0.002690,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000360,0.000079,0.000362,0.000000,0.000000,0.004166,0.339452,-0.002640,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000337,0.000077,0.000339,0.000000,0.000000,0.003906,0.336862,-0.002590,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000316,0.000076,0.000318,0.000000,0.000000,0.003667,0.334321,-0.002541,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000296,0.000074,0.000298,0.000140,0.000140,0.003445,0.331690,-0.002631,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000278,0.000073,0.000280,0.000380,0.000380,0.003240,0.328874,-0.002817,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000261,0.000071,0.000264,0.000552,0.000552,0.003050,0.325941,-0.002932,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000246,0.000069,0.000249,0.000674,0.000674,0.002874,0.322944,-0.002997,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000231,0.000068,0.000235,0.000592,0.000592,0.002711,0.320083,-0.002861,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000988,0.000009,0.000017,0.000009,0.000004,0.000218,0.000067,0.000231,0.000569,0.000569,0.002559,0.318252,-0.001831,1.000000,0.000008 +20,2022-08-01 20:00:00,0.000939,0.000014,0.000018,0.000014,0.000005,0.000206,0.000066,0.000225,0.000500,0.000500,0.002419,0.316475,-0.001778,1.000000,0.000012 +21,2022-08-01 21:00:00,0.000993,0.000026,0.000033,0.000026,0.000005,0.000195,0.000065,0.000226,0.000395,0.000395,0.002289,0.314871,-0.001604,1.000000,0.000019 +22,2022-08-01 22:00:00,0.001037,0.000038,0.000047,0.000038,0.000006,0.000184,0.000064,0.000227,0.000322,0.000322,0.002169,0.313399,-0.001471,1.000000,0.000028 +23,2022-08-01 23:00:00,0.001011,0.000047,0.000052,0.000047,0.000006,0.000174,0.000063,0.000228,0.000251,0.000251,0.002058,0.311993,-0.001406,1.000000,0.000033 +24,2022-08-02 00:00:00,0.001045,0.000060,0.000069,0.000060,0.000007,0.000166,0.000062,0.000233,0.000168,0.000168,0.001955,0.310713,-0.001280,1.000000,0.000042 +25,2022-08-02 01:00:00,0.001267,0.000096,0.000123,0.000096,0.000007,0.000157,0.000062,0.000260,0.000075,0.000075,0.001859,0.309712,-0.001001,1.000000,0.000069 +26,2022-08-02 02:00:00,0.001277,0.000122,0.000140,0.000122,0.000008,0.000150,0.000061,0.000279,0.000000,0.000000,0.001770,0.308796,-0.000916,1.000000,0.000088 +27,2022-08-02 03:00:00,0.001280,0.000137,0.000141,0.000137,0.000008,0.000143,0.000061,0.000288,0.000000,0.000000,0.001689,0.307901,-0.000896,1.000000,0.000091 +28,2022-08-02 04:00:00,0.001266,0.000139,0.000138,0.000139,0.000009,0.000136,0.000060,0.000284,0.000000,0.000000,0.001613,0.307011,-0.000889,1.000000,0.000090 +29,2022-08-02 05:00:00,0.001325,0.000145,0.000150,0.000145,0.000009,0.000130,0.000060,0.000284,0.000000,0.000000,0.001542,0.306185,-0.000827,1.000000,0.000095 +30,2022-08-02 06:00:00,0.001341,0.000149,0.000153,0.000149,0.000010,0.000125,0.000059,0.000284,0.000000,0.000000,0.001477,0.305386,-0.000798,1.000000,0.000099 +31,2022-08-02 07:00:00,0.000000,0.000068,0.000000,0.000068,0.000010,0.000119,0.000058,0.000198,0.000000,0.000000,0.001416,0.303437,-0.001949,1.000000,0.000031 +32,2022-08-02 08:00:00,0.000000,0.000031,0.000000,0.000031,0.000011,0.000114,0.000057,0.000156,0.000000,0.000000,0.001358,0.301525,-0.001912,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000110,0.000056,0.000122,0.000000,0.000000,0.001305,0.299648,-0.001877,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000106,0.000055,0.000118,0.000000,0.000000,0.001254,0.297807,-0.001841,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000102,0.000054,0.000114,0.000000,0.000000,0.001206,0.296000,-0.001807,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000098,0.000053,0.000111,0.000000,0.000000,0.001162,0.294228,-0.001773,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000200,0.000002,0.000004,0.000002,0.000014,0.000094,0.000052,0.000110,0.000000,0.000000,0.001120,0.292681,-0.001547,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000300,0.000002,0.000003,0.000002,0.000015,0.000091,0.000051,0.000108,0.000125,0.000125,0.001080,0.291140,-0.001542,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000191,0.000001,0.000000,0.000001,0.000016,0.000088,0.000050,0.000105,0.000322,0.000322,0.001042,0.289330,-0.001810,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000137,0.000001,0.000000,0.000001,0.000016,0.000085,0.000049,0.000102,0.000464,0.000464,0.001007,0.287362,-0.001968,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000137,0.000000,0.000000,0.000000,0.000017,0.000082,0.000048,0.000099,0.000575,0.000575,0.000973,0.285322,-0.002040,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000205,0.000000,0.000000,0.000000,0.000018,0.000079,0.000047,0.000097,0.000665,0.000665,0.000941,0.283299,-0.002023,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000068,0.000000,0.000000,0.000000,0.000019,0.000076,0.000045,0.000095,0.000615,0.000615,0.000910,0.281229,-0.002070,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000068,0.000000,0.000000,0.000000,0.000019,0.000074,0.000044,0.000093,0.000572,0.000572,0.000880,0.279240,-0.001989,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000068,0.000000,0.000000,0.000000,0.000020,0.000071,0.000043,0.000092,0.000543,0.000543,0.000852,0.277317,-0.001923,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000068,0.000000,0.000000,0.000000,0.000021,0.000069,0.000042,0.000090,0.000449,0.000449,0.000825,0.275522,-0.001795,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000068,0.000000,0.000000,0.000000,0.000022,0.000067,0.000041,0.000089,0.000337,0.000337,0.000799,0.273872,-0.001651,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000068,0.000000,0.000000,0.000000,0.000022,0.000065,0.000040,0.000087,0.000204,0.000204,0.000775,0.272382,-0.001489,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000274,0.000002,0.000004,0.000002,0.000023,0.000063,0.000040,0.000088,0.000054,0.000054,0.000752,0.271266,-0.001117,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000335,0.000006,0.000010,0.000006,0.000024,0.000061,0.000039,0.000091,0.000000,0.000000,0.000730,0.270278,-0.000988,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000395,0.000011,0.000013,0.000011,0.000025,0.000059,0.000039,0.000095,0.000000,0.000000,0.000709,0.269363,-0.000914,1.000000,0.000008 +52,2022-08-03 04:00:00,0.000265,0.000009,0.000006,0.000009,0.000026,0.000058,0.000038,0.000092,0.000000,0.000000,0.000689,0.268346,-0.001017,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000400,0.000012,0.000014,0.000012,0.000026,0.000056,0.000038,0.000094,0.000000,0.000000,0.000671,0.267473,-0.000873,1.000000,0.000007 +54,2022-08-03 06:00:00,0.000300,0.000009,0.000008,0.000009,0.000027,0.000055,0.000037,0.000091,0.000000,0.000000,0.000653,0.266524,-0.000949,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000028,0.000053,0.000036,0.000086,0.000000,0.000000,0.000636,0.265305,-0.001218,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000029,0.000052,0.000036,0.000082,0.000000,0.000000,0.000620,0.264110,-0.001195,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000051,0.000035,0.000080,0.000000,0.000000,0.000605,0.262938,-0.001173,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000049,0.000034,0.000080,0.000000,0.000000,0.000590,0.261787,-0.001151,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000048,0.000034,0.000079,0.000000,0.000000,0.000575,0.260658,-0.001129,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000047,0.000033,0.000079,0.000000,0.000000,0.000561,0.259550,-0.001108,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000046,0.000032,0.000079,0.000000,0.000000,0.000548,0.258463,-0.001087,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000045,0.000032,0.000079,0.000135,0.000135,0.000535,0.257264,-0.001199,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000044,0.000031,0.000078,0.000381,0.000381,0.000522,0.255846,-0.001418,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000043,0.000030,0.000078,0.000550,0.000550,0.000510,0.254289,-0.001557,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000042,0.000029,0.000078,0.000684,0.000684,0.000497,0.252630,-0.001659,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000041,0.000028,0.000078,0.000687,0.000687,0.000485,0.251000,-0.001631,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000137,0.000000,0.000000,0.000000,0.000038,0.000040,0.000027,0.000078,0.000654,0.000654,0.000473,0.249566,-0.001434,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000068,0.000000,0.000000,0.000000,0.000039,0.000039,0.000027,0.000078,0.000591,0.000591,0.000461,0.248154,-0.001412,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000137,0.000000,0.000000,0.000000,0.000040,0.000038,0.000026,0.000078,0.000534,0.000534,0.000449,0.246891,-0.001263,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000137,0.000000,0.000000,0.000000,0.000041,0.000037,0.000025,0.000077,0.000433,0.000433,0.000438,0.245751,-0.001140,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000068,0.000000,0.000000,0.000000,0.000042,0.000036,0.000025,0.000077,0.000336,0.000336,0.000427,0.244661,-0.001090,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000068,0.000000,0.000000,0.000000,0.000043,0.000035,0.000024,0.000077,0.000216,0.000216,0.000416,0.243709,-0.000952,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000034,0.000024,0.000077,0.000068,0.000068,0.000405,0.242853,-0.000856,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000033,0.000023,0.000077,0.000000,0.000000,0.000395,0.242081,-0.000773,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000032,0.000023,0.000078,0.000000,0.000000,0.000386,0.241322,-0.000758,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000031,0.000022,0.000078,0.000000,0.000000,0.000377,0.240578,-0.000744,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000031,0.000022,0.000078,0.000000,0.000000,0.000368,0.239848,-0.000730,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000030,0.000021,0.000078,0.000000,0.000000,0.000359,0.239132,-0.000716,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000029,0.000021,0.000078,0.000000,0.000000,0.000351,0.238429,-0.000703,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000029,0.000021,0.000078,0.000000,0.000000,0.000343,0.237739,-0.000690,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000028,0.000020,0.000079,0.000000,0.000000,0.000335,0.237063,-0.000677,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000027,0.000020,0.000079,0.000000,0.000000,0.000328,0.236399,-0.000664,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000027,0.000019,0.000079,0.000000,0.000000,0.000320,0.235747,-0.000651,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000026,0.000019,0.000080,0.000000,0.000000,0.000313,0.235108,-0.000639,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000026,0.000019,0.000080,0.000000,0.000000,0.000306,0.234481,-0.000627,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000025,0.000018,0.000080,0.000131,0.000131,0.000300,0.233737,-0.000744,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000024,0.000018,0.000081,0.000378,0.000378,0.000293,0.232765,-0.000972,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000024,0.000017,0.000081,0.000552,0.000552,0.000286,0.231640,-0.001125,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000023,0.000016,0.000081,0.000682,0.000682,0.000279,0.230409,-0.001231,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000023,0.000016,0.000081,0.000791,0.000791,0.000272,0.229094,-0.001315,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000022,0.000015,0.000082,0.000749,0.000749,0.000265,0.227845,-0.001249,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000022,0.000014,0.000082,0.000674,0.000674,0.000258,0.226693,-0.001152,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000021,0.000014,0.000082,0.000572,0.000572,0.000251,0.225664,-0.001030,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000020,0.000013,0.000083,0.000478,0.000478,0.000243,0.224745,-0.000919,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000020,0.000013,0.000083,0.000369,0.000369,0.000236,0.223951,-0.000794,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000019,0.000012,0.000083,0.000222,0.000222,0.000230,0.223316,-0.000635,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000019,0.000012,0.000084,0.000074,0.000074,0.000223,0.222839,-0.000478,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000018,0.000012,0.000084,0.000000,0.000000,0.000217,0.222442,-0.000396,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000018,0.000012,0.000084,0.000000,0.000000,0.000211,0.222053,-0.000389,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000017,0.000011,0.000085,0.000000,0.000000,0.000205,0.221672,-0.000382,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000017,0.000011,0.000085,0.000000,0.000000,0.000200,0.221297,-0.000374,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000016,0.000011,0.000086,0.000000,0.000000,0.000194,0.220930,-0.000367,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000016,0.000011,0.000086,0.000000,0.000000,0.000189,0.220570,-0.000360,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000015,0.000011,0.000086,0.000000,0.000000,0.000185,0.220216,-0.000354,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000015,0.000010,0.000087,0.000000,0.000000,0.000180,0.219869,-0.000347,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000015,0.000010,0.000087,0.000000,0.000000,0.000175,0.219529,-0.000340,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000014,0.000010,0.000088,0.000000,0.000000,0.000171,0.219194,-0.000334,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000014,0.000010,0.000088,0.000000,0.000000,0.000167,0.218867,-0.000328,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000014,0.000010,0.000089,0.000000,0.000000,0.000163,0.218545,-0.000322,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000013,0.000009,0.000089,0.000144,0.000144,0.000159,0.218088,-0.000457,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000013,0.000009,0.000090,0.000385,0.000385,0.000155,0.217403,-0.000685,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000013,0.000008,0.000090,0.000556,0.000556,0.000151,0.216564,-0.000840,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000012,0.000008,0.000091,0.000684,0.000684,0.000147,0.215614,-0.000950,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000012,0.000007,0.000091,0.000698,0.000698,0.000142,0.214669,-0.000945,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000011,0.000007,0.000092,0.000663,0.000663,0.000138,0.213776,-0.000893,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000011,0.000006,0.000092,0.000588,0.000588,0.000133,0.212973,-0.000803,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000011,0.000006,0.000093,0.000540,0.000540,0.000128,0.212232,-0.000741,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000010,0.000006,0.000093,0.000448,0.000448,0.000124,0.211596,-0.000636,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000010,0.000005,0.000094,0.000334,0.000334,0.000119,0.211083,-0.000513,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000010,0.000005,0.000094,0.000207,0.000207,0.000115,0.210706,-0.000378,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000009,0.000005,0.000094,0.000076,0.000076,0.000110,0.210463,-0.000242,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000009,0.000005,0.000095,0.000000,0.000000,0.000106,0.210300,-0.000164,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000009,0.000005,0.000095,0.000000,0.000000,0.000103,0.210139,-0.000160,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000008,0.000005,0.000096,0.000000,0.000000,0.000099,0.209982,-0.000157,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000033,0.000000,0.000000,0.000000,0.000088,0.000008,0.000005,0.000096,0.000000,0.000000,0.000096,0.209859,-0.000122,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000033,0.000000,0.000000,0.000000,0.000089,0.000008,0.000005,0.000097,0.000000,0.000000,0.000093,0.209739,-0.000120,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000007,0.000004,0.000098,0.000000,0.000000,0.000090,0.209589,-0.000150,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000007,0.000004,0.000098,0.000000,0.000000,0.000087,0.209442,-0.000147,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000007,0.000004,0.000099,0.000000,0.000000,0.000084,0.209298,-0.000144,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000007,0.000004,0.000099,0.000000,0.000000,0.000082,0.209156,-0.000142,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000007,0.000004,0.000100,0.000000,0.000000,0.000079,0.209017,-0.000139,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000006,0.000004,0.000100,0.000000,0.000000,0.000077,0.208881,-0.000136,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000006,0.000004,0.000101,0.000000,0.000000,0.000075,0.208747,-0.000134,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000006,0.000004,0.000101,0.000126,0.000126,0.000072,0.208492,-0.000255,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000006,0.000004,0.000102,0.000365,0.000365,0.000070,0.208008,-0.000485,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000006,0.000003,0.000103,0.000537,0.000537,0.000068,0.207363,-0.000645,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000005,0.000003,0.000103,0.000664,0.000664,0.000065,0.206607,-0.000756,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000005,0.000002,0.000104,0.000765,0.000765,0.000062,0.205765,-0.000842,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000005,0.000002,0.000104,0.000734,0.000734,0.000059,0.204969,-0.000796,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000005,0.000001,0.000104,0.000667,0.000667,0.000056,0.204255,-0.000715,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000004,0.000001,0.000105,0.000581,0.000581,0.000053,0.203638,-0.000616,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000004,0.000001,0.000105,0.000481,0.000481,0.000049,0.203131,-0.000507,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000004,0.000001,0.000106,0.000364,0.000364,0.000046,0.202749,-0.000382,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000004,0.000000,0.000106,0.000215,0.000215,0.000043,0.202519,-0.000230,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000003,0.000000,0.000107,0.000066,0.000066,0.000040,0.202441,-0.000079,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000003,0.000000,0.000107,0.000000,0.000000,0.000037,0.202428,-0.000013,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000003,0.000000,0.000108,0.000000,0.000000,0.000035,0.202416,-0.000012,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000003,0.000000,0.000108,0.000000,0.000000,0.000032,0.202403,-0.000012,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000003,0.000000,0.000109,0.000000,0.000000,0.000030,0.202392,-0.000012,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000002,0.000000,0.000109,0.000000,0.000000,0.000028,0.202380,-0.000012,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000002,0.000000,0.000110,0.000000,0.000000,0.000026,0.202368,-0.000011,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000002,0.000000,0.000110,0.000000,0.000000,0.000025,0.202357,-0.000011,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000002,0.000000,0.000111,0.000000,0.000000,0.000023,0.202346,-0.000011,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000002,0.000000,0.000111,0.000000,0.000000,0.000022,0.202335,-0.000011,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000002,0.000000,0.000112,0.000000,0.000000,0.000020,0.202325,-0.000011,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000002,0.000000,0.000112,0.000000,0.000000,0.000019,0.202314,-0.000010,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000001,0.000000,0.000113,0.000000,0.000000,0.000018,0.202304,-0.000010,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000001,0.000000,0.000113,0.000125,0.000125,0.000017,0.202172,-0.000132,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000001,0.000000,0.000114,0.000363,0.000363,0.000015,0.201807,-0.000364,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000001,0.000000,0.000115,0.000534,0.000534,0.000014,0.201273,-0.000534,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000001,0.000000,0.000115,0.000664,0.000661,0.000013,0.200612,-0.000661,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000116,0.000739,0.000731,0.000012,0.199881,-0.000731,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000116,0.000697,0.000685,0.000011,0.199196,-0.000685,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000001,0.000000,0.000117,0.000635,0.000620,0.000010,0.198576,-0.000620,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000001,0.000000,0.000117,0.000558,0.000541,0.000009,0.198034,-0.000541,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000118,0.000458,0.000442,0.000009,0.197592,-0.000442,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000118,0.000347,0.000333,0.000008,0.197259,-0.000333,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000119,0.000181,0.000173,0.000007,0.197086,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000119,0.000035,0.000033,0.000007,0.197052,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000120,0.000000,0.000000,0.000006,0.197052,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000006,0.197052,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000005,0.197052,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000122,0.000000,0.000000,0.000005,0.197052,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000005,0.197052,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000123,0.000000,0.000000,0.000004,0.197052,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000000,0.000000,0.000004,0.197052,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000124,0.000000,0.000000,0.000004,0.197052,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000000,0.000000,0.000003,0.197052,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000125,0.000000,0.000000,0.000003,0.197052,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000003,0.197052,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000126,0.000000,0.000000,0.000003,0.197052,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000106,0.000101,0.000002,0.196951,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000349,0.000334,0.000002,0.196617,-0.000334,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000530,0.000505,0.000002,0.196112,-0.000505,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000660,0.000626,0.000002,0.195487,-0.000626,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000778,0.000733,0.000002,0.194754,-0.000733,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000731,0.000683,0.000002,0.194071,-0.000683,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000661,0.000614,0.000002,0.193457,-0.000614,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000580,0.000536,0.000001,0.192922,-0.000536,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000476,0.000437,0.000001,0.192484,-0.000437,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000360,0.000329,0.000001,0.192155,-0.000329,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000201,0.000183,0.000001,0.191972,-0.000183,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000046,0.000041,0.000001,0.191931,-0.000041,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.191931,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.191931,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.191931,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000000,0.191931,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000000,0.191931,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000138,0.000116,0.000105,0.000000,0.191826,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620719.csv b/test/channel_loss/channel_forcing/et/cat-2620719.csv new file mode 100644 index 000000000..83794e783 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620719.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000086,0.000000,0.000000,0.000000,0.000000,0.000815,0.000064,0.000815,0.000178,0.000178,0.009010,0.372128,-0.003310,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000063,0.000748,0.000060,0.000060,0.008325,0.368910,-0.003218,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000062,0.000688,0.000000,0.000000,0.007699,0.365811,-0.003099,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000633,0.000061,0.000633,0.000000,0.000000,0.007127,0.362770,-0.003041,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000060,0.000584,0.000000,0.000000,0.006602,0.359786,-0.002985,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000539,0.000058,0.000539,0.000000,0.000000,0.006122,0.356856,-0.002929,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000498,0.000057,0.000498,0.000000,0.000000,0.005681,0.353982,-0.002875,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000461,0.000056,0.000461,0.000000,0.000000,0.005277,0.351161,-0.002821,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000427,0.000055,0.000428,0.000000,0.000000,0.004905,0.348392,-0.002769,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000396,0.000054,0.000397,0.000000,0.000000,0.004563,0.345675,-0.002717,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000368,0.000053,0.000369,0.000000,0.000000,0.004249,0.343008,-0.002667,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000342,0.000052,0.000343,0.000000,0.000000,0.003959,0.340391,-0.002617,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000318,0.000051,0.000320,0.000000,0.000000,0.003693,0.337823,-0.002568,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000296,0.000050,0.000298,0.000000,0.000000,0.003447,0.335302,-0.002521,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000276,0.000049,0.000278,0.000140,0.000140,0.003220,0.332691,-0.002611,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000258,0.000048,0.000260,0.000377,0.000377,0.003011,0.329896,-0.002795,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000241,0.000047,0.000244,0.000544,0.000544,0.002818,0.326989,-0.002907,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000225,0.000046,0.000228,0.000661,0.000661,0.002639,0.324022,-0.002968,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000210,0.000045,0.000214,0.000581,0.000581,0.002473,0.321188,-0.002834,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000881,0.000009,0.000016,0.000009,0.000004,0.000197,0.000044,0.000210,0.000551,0.000551,0.002320,0.319286,-0.001902,1.000000,0.000007 +20,2022-08-01 20:00:00,0.000790,0.000011,0.000013,0.000011,0.000005,0.000185,0.000044,0.000201,0.000485,0.000485,0.002179,0.317396,-0.001890,1.000000,0.000009 +21,2022-08-01 21:00:00,0.000772,0.000018,0.000021,0.000018,0.000005,0.000174,0.000043,0.000197,0.000386,0.000386,0.002048,0.315614,-0.001782,1.000000,0.000012 +22,2022-08-01 22:00:00,0.000778,0.000024,0.000029,0.000024,0.000006,0.000163,0.000042,0.000193,0.000317,0.000317,0.001927,0.313930,-0.001684,1.000000,0.000017 +23,2022-08-01 23:00:00,0.000771,0.000032,0.000037,0.000032,0.000006,0.000154,0.000042,0.000192,0.000247,0.000247,0.001815,0.312331,-0.001599,1.000000,0.000023 +24,2022-08-02 00:00:00,0.000766,0.000042,0.000048,0.000042,0.000007,0.000145,0.000041,0.000193,0.000166,0.000166,0.001711,0.310826,-0.001506,1.000000,0.000029 +25,2022-08-02 01:00:00,0.001061,0.000088,0.000124,0.000088,0.000007,0.000136,0.000041,0.000231,0.000075,0.000075,0.001615,0.309653,-0.001173,1.000000,0.000065 +26,2022-08-02 02:00:00,0.001197,0.000138,0.000177,0.000138,0.000008,0.000129,0.000040,0.000275,0.000000,0.000000,0.001527,0.308657,-0.000996,1.000000,0.000105 +27,2022-08-02 03:00:00,0.001207,0.000168,0.000180,0.000168,0.000008,0.000122,0.000040,0.000298,0.000000,0.000000,0.001445,0.307687,-0.000970,1.000000,0.000116 +28,2022-08-02 04:00:00,0.001193,0.000177,0.000176,0.000177,0.000009,0.000115,0.000039,0.000301,0.000000,0.000000,0.001369,0.306725,-0.000962,1.000000,0.000115 +29,2022-08-02 05:00:00,0.001230,0.000182,0.000186,0.000182,0.000009,0.000109,0.000039,0.000301,0.000000,0.000000,0.001299,0.305808,-0.000917,1.000000,0.000119 +30,2022-08-02 06:00:00,0.001236,0.000184,0.000187,0.000184,0.000010,0.000104,0.000039,0.000298,0.000000,0.000000,0.001234,0.304912,-0.000896,1.000000,0.000121 +31,2022-08-02 07:00:00,0.000000,0.000084,0.000000,0.000084,0.000010,0.000099,0.000038,0.000193,0.000000,0.000000,0.001173,0.303004,-0.001908,1.000000,0.000037 +32,2022-08-02 08:00:00,0.000000,0.000037,0.000000,0.000037,0.000011,0.000094,0.000037,0.000142,0.000000,0.000000,0.001116,0.301131,-0.001873,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000089,0.000037,0.000101,0.000000,0.000000,0.001064,0.299293,-0.001838,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000085,0.000036,0.000098,0.000000,0.000000,0.001014,0.297489,-0.001804,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000081,0.000035,0.000094,0.000000,0.000000,0.000968,0.295718,-0.001770,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000078,0.000035,0.000091,0.000000,0.000000,0.000925,0.293981,-0.001737,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000185,0.000003,0.000005,0.000003,0.000014,0.000074,0.000034,0.000091,0.000000,0.000000,0.000885,0.292453,-0.001528,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000300,0.000003,0.000004,0.000003,0.000015,0.000071,0.000034,0.000090,0.000125,0.000125,0.000848,0.290944,-0.001509,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000200,0.000002,0.000000,0.000002,0.000016,0.000068,0.000033,0.000086,0.000320,0.000320,0.000812,0.289178,-0.001766,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000200,0.000001,0.000000,0.000001,0.000016,0.000065,0.000032,0.000083,0.000457,0.000457,0.000779,0.287310,-0.001868,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000197,0.000000,0.000000,0.000000,0.000017,0.000063,0.000031,0.000080,0.000563,0.000563,0.000748,0.285370,-0.001940,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000251,0.000000,0.000000,0.000000,0.000018,0.000060,0.000031,0.000078,0.000651,0.000651,0.000718,0.283432,-0.001938,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000055,0.000000,0.000000,0.000000,0.000019,0.000058,0.000030,0.000076,0.000605,0.000605,0.000690,0.281384,-0.002048,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000055,0.000000,0.000000,0.000000,0.000019,0.000056,0.000029,0.000075,0.000556,0.000556,0.000664,0.279422,-0.001962,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000068,0.000000,0.000000,0.000000,0.000020,0.000053,0.000028,0.000074,0.000532,0.000532,0.000639,0.277533,-0.001889,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000068,0.000000,0.000000,0.000000,0.000021,0.000051,0.000028,0.000072,0.000444,0.000444,0.000615,0.275765,-0.001768,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000068,0.000000,0.000000,0.000000,0.000022,0.000050,0.000027,0.000071,0.000332,0.000332,0.000593,0.274140,-0.001625,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000068,0.000000,0.000000,0.000000,0.000022,0.000048,0.000027,0.000070,0.000202,0.000202,0.000572,0.272673,-0.001467,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000213,0.000002,0.000003,0.000002,0.000023,0.000046,0.000026,0.000071,0.000053,0.000053,0.000552,0.271518,-0.001155,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000213,0.000004,0.000006,0.000004,0.000024,0.000045,0.000026,0.000073,0.000000,0.000000,0.000533,0.270434,-0.001084,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000268,0.000007,0.000009,0.000007,0.000025,0.000043,0.000025,0.000075,0.000000,0.000000,0.000515,0.269421,-0.001013,1.000000,0.000005 +52,2022-08-03 04:00:00,0.000193,0.000006,0.000005,0.000006,0.000026,0.000042,0.000025,0.000073,0.000000,0.000000,0.000498,0.268357,-0.001064,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000304,0.000010,0.000012,0.000010,0.000026,0.000040,0.000025,0.000076,0.000000,0.000000,0.000483,0.267416,-0.000942,1.000000,0.000006 +54,2022-08-03 06:00:00,0.000215,0.000007,0.000006,0.000007,0.000027,0.000039,0.000024,0.000073,0.000000,0.000000,0.000468,0.266410,-0.001006,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000028,0.000038,0.000024,0.000070,0.000000,0.000000,0.000454,0.265217,-0.001192,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000029,0.000037,0.000023,0.000067,0.000000,0.000000,0.000440,0.264047,-0.001170,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000036,0.000023,0.000065,0.000000,0.000000,0.000427,0.262899,-0.001148,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000035,0.000022,0.000065,0.000000,0.000000,0.000415,0.261772,-0.001127,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000034,0.000022,0.000065,0.000000,0.000000,0.000404,0.260666,-0.001106,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000033,0.000022,0.000065,0.000000,0.000000,0.000392,0.259580,-0.001085,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000032,0.000021,0.000065,0.000000,0.000000,0.000382,0.258515,-0.001065,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000031,0.000021,0.000065,0.000135,0.000135,0.000372,0.257337,-0.001178,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000030,0.000020,0.000065,0.000379,0.000379,0.000362,0.255942,-0.001395,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000029,0.000020,0.000065,0.000543,0.000543,0.000352,0.254412,-0.001531,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000029,0.000019,0.000065,0.000669,0.000669,0.000342,0.252786,-0.001626,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000028,0.000018,0.000065,0.000672,0.000672,0.000333,0.251188,-0.001598,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000087,0.000000,0.000000,0.000000,0.000038,0.000027,0.000018,0.000065,0.000643,0.000643,0.000324,0.249732,-0.001455,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000067,0.000000,0.000000,0.000000,0.000039,0.000026,0.000017,0.000065,0.000573,0.000573,0.000315,0.248353,-0.001379,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000087,0.000000,0.000000,0.000000,0.000040,0.000026,0.000017,0.000066,0.000524,0.000524,0.000306,0.247067,-0.001286,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000087,0.000000,0.000000,0.000000,0.000041,0.000025,0.000016,0.000066,0.000429,0.000429,0.000298,0.245899,-0.001168,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000067,0.000000,0.000000,0.000000,0.000042,0.000024,0.000016,0.000066,0.000332,0.000332,0.000290,0.244827,-0.001072,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000067,0.000000,0.000000,0.000000,0.000043,0.000024,0.000016,0.000066,0.000213,0.000213,0.000282,0.243893,-0.000935,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000023,0.000015,0.000066,0.000068,0.000068,0.000275,0.243053,-0.000840,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000022,0.000015,0.000067,0.000000,0.000000,0.000267,0.242295,-0.000758,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000022,0.000015,0.000067,0.000000,0.000000,0.000260,0.241551,-0.000744,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000021,0.000015,0.000067,0.000000,0.000000,0.000254,0.240821,-0.000730,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000021,0.000014,0.000068,0.000000,0.000000,0.000248,0.240105,-0.000716,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000020,0.000014,0.000068,0.000000,0.000000,0.000241,0.239402,-0.000703,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000020,0.000014,0.000068,0.000000,0.000000,0.000236,0.238712,-0.000690,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000019,0.000014,0.000069,0.000000,0.000000,0.000230,0.238035,-0.000677,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000019,0.000013,0.000069,0.000000,0.000000,0.000224,0.237370,-0.000665,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000018,0.000013,0.000070,0.000000,0.000000,0.000219,0.236718,-0.000652,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000018,0.000013,0.000070,0.000000,0.000000,0.000214,0.236078,-0.000640,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000017,0.000013,0.000071,0.000000,0.000000,0.000209,0.235450,-0.000628,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000017,0.000012,0.000071,0.000000,0.000000,0.000204,0.234833,-0.000616,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000017,0.000012,0.000072,0.000132,0.000132,0.000200,0.234099,-0.000734,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000016,0.000012,0.000072,0.000376,0.000376,0.000195,0.233139,-0.000960,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000016,0.000011,0.000073,0.000547,0.000547,0.000190,0.232029,-0.001110,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000015,0.000011,0.000073,0.000672,0.000672,0.000186,0.230817,-0.001213,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000015,0.000010,0.000074,0.000777,0.000777,0.000181,0.229523,-0.001293,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000015,0.000010,0.000074,0.000720,0.000720,0.000176,0.228311,-0.001213,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000014,0.000009,0.000075,0.000657,0.000657,0.000171,0.227182,-0.001129,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000014,0.000009,0.000075,0.000561,0.000561,0.000166,0.226169,-0.001013,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000009,0.000076,0.000473,0.000473,0.000162,0.225261,-0.000908,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000013,0.000008,0.000076,0.000364,0.000364,0.000157,0.224477,-0.000784,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000013,0.000008,0.000077,0.000220,0.000220,0.000152,0.223849,-0.000628,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000012,0.000008,0.000077,0.000074,0.000074,0.000148,0.223377,-0.000473,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000012,0.000008,0.000078,0.000000,0.000000,0.000144,0.222985,-0.000392,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000012,0.000008,0.000078,0.000000,0.000000,0.000140,0.222600,-0.000385,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000011,0.000008,0.000079,0.000000,0.000000,0.000136,0.222223,-0.000377,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000011,0.000007,0.000079,0.000000,0.000000,0.000132,0.221852,-0.000370,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000011,0.000007,0.000080,0.000000,0.000000,0.000129,0.221489,-0.000364,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000010,0.000007,0.000080,0.000000,0.000000,0.000126,0.221132,-0.000357,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000010,0.000007,0.000081,0.000000,0.000000,0.000122,0.220782,-0.000350,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000010,0.000007,0.000082,0.000000,0.000000,0.000119,0.220438,-0.000344,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000010,0.000007,0.000082,0.000000,0.000000,0.000116,0.220101,-0.000337,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000009,0.000007,0.000083,0.000000,0.000000,0.000113,0.219770,-0.000331,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000009,0.000006,0.000083,0.000000,0.000000,0.000111,0.219445,-0.000325,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000009,0.000006,0.000084,0.000000,0.000000,0.000108,0.219127,-0.000319,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000009,0.000006,0.000085,0.000144,0.000144,0.000105,0.218672,-0.000454,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000009,0.000006,0.000085,0.000382,0.000382,0.000103,0.217993,-0.000679,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000006,0.000086,0.000548,0.000548,0.000100,0.217164,-0.000829,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000005,0.000087,0.000673,0.000673,0.000097,0.216227,-0.000937,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000008,0.000005,0.000087,0.000685,0.000685,0.000094,0.215296,-0.000931,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000008,0.000005,0.000088,0.000651,0.000651,0.000091,0.214415,-0.000881,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000007,0.000004,0.000088,0.000574,0.000574,0.000088,0.213627,-0.000789,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000002,0.000000,0.000000,0.000000,0.000082,0.000007,0.000004,0.000089,0.000526,0.000526,0.000085,0.212902,-0.000725,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000002,0.000000,0.000000,0.000000,0.000083,0.000007,0.000004,0.000089,0.000442,0.000442,0.000082,0.212273,-0.000629,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000002,0.000000,0.000000,0.000000,0.000083,0.000007,0.000004,0.000090,0.000330,0.000330,0.000079,0.211765,-0.000507,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000003,0.000090,0.000205,0.000205,0.000076,0.211388,-0.000377,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000072,0.000000,0.000000,0.000000,0.000085,0.000006,0.000003,0.000091,0.000075,0.000075,0.000073,0.211216,-0.000172,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000072,0.000000,0.000001,0.000000,0.000086,0.000006,0.000003,0.000092,0.000000,0.000000,0.000071,0.211120,-0.000096,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000072,0.000000,0.000001,0.000000,0.000087,0.000006,0.000003,0.000093,0.000000,0.000000,0.000068,0.211026,-0.000094,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000072,0.000001,0.000001,0.000001,0.000087,0.000006,0.000003,0.000093,0.000000,0.000000,0.000066,0.210934,-0.000092,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000085,0.000001,0.000001,0.000001,0.000088,0.000005,0.000003,0.000094,0.000000,0.000000,0.000064,0.210857,-0.000078,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000101,0.000001,0.000001,0.000001,0.000089,0.000005,0.000003,0.000095,0.000000,0.000000,0.000062,0.210796,-0.000061,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000005,0.000003,0.000095,0.000000,0.000000,0.000060,0.210638,-0.000158,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000005,0.000003,0.000096,0.000000,0.000000,0.000058,0.210483,-0.000155,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000005,0.000003,0.000096,0.000000,0.000000,0.000057,0.210331,-0.000152,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000005,0.000003,0.000097,0.000000,0.000000,0.000055,0.210182,-0.000149,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000004,0.000003,0.000097,0.000000,0.000000,0.000054,0.210035,-0.000146,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000004,0.000003,0.000098,0.000000,0.000000,0.000052,0.209891,-0.000144,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000004,0.000003,0.000099,0.000000,0.000000,0.000051,0.209750,-0.000141,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000004,0.000003,0.000099,0.000126,0.000126,0.000049,0.209488,-0.000262,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000004,0.000003,0.000100,0.000363,0.000363,0.000048,0.208998,-0.000490,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000004,0.000002,0.000100,0.000531,0.000531,0.000046,0.208352,-0.000646,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000004,0.000002,0.000101,0.000652,0.000652,0.000045,0.207600,-0.000753,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000004,0.000002,0.000102,0.000753,0.000753,0.000043,0.206762,-0.000837,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000003,0.000001,0.000102,0.000721,0.000721,0.000041,0.205972,-0.000790,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000003,0.000001,0.000103,0.000651,0.000651,0.000039,0.205265,-0.000707,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000003,0.000001,0.000103,0.000572,0.000572,0.000036,0.204649,-0.000616,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000003,0.000001,0.000104,0.000476,0.000476,0.000034,0.204138,-0.000511,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000003,0.000001,0.000104,0.000360,0.000360,0.000032,0.203750,-0.000388,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000003,0.000000,0.000105,0.000214,0.000214,0.000030,0.203513,-0.000237,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000002,0.000000,0.000105,0.000066,0.000066,0.000028,0.203426,-0.000087,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000002,0.000000,0.000106,0.000000,0.000000,0.000026,0.203406,-0.000021,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000002,0.000000,0.000106,0.000000,0.000000,0.000025,0.203385,-0.000020,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000002,0.000000,0.000107,0.000000,0.000000,0.000023,0.203365,-0.000020,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000002,0.000000,0.000108,0.000000,0.000000,0.000022,0.203346,-0.000020,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000002,0.000000,0.000108,0.000000,0.000000,0.000020,0.203326,-0.000019,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000002,0.000000,0.000109,0.000000,0.000000,0.000019,0.203307,-0.000019,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000002,0.000000,0.000109,0.000000,0.000000,0.000018,0.203289,-0.000019,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000001,0.000000,0.000110,0.000000,0.000000,0.000017,0.203270,-0.000018,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000001,0.000000,0.000110,0.000000,0.000000,0.000016,0.203253,-0.000018,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000001,0.000000,0.000111,0.000000,0.000000,0.000015,0.203235,-0.000018,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000001,0.000000,0.000112,0.000000,0.000000,0.000014,0.203218,-0.000017,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000001,0.000000,0.000112,0.000000,0.000000,0.000014,0.203201,-0.000017,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000001,0.000000,0.000113,0.000125,0.000125,0.000013,0.203062,-0.000139,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000001,0.000000,0.000113,0.000361,0.000361,0.000012,0.202694,-0.000368,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000001,0.000000,0.000114,0.000528,0.000528,0.000011,0.202165,-0.000528,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000001,0.000000,0.000114,0.000654,0.000653,0.000010,0.201512,-0.000653,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000001,0.000000,0.000115,0.000730,0.000724,0.000009,0.200788,-0.000724,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000116,0.000685,0.000675,0.000009,0.200113,-0.000675,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000116,0.000618,0.000605,0.000008,0.199509,-0.000605,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000001,0.000000,0.000117,0.000550,0.000535,0.000007,0.198974,-0.000535,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000117,0.000456,0.000441,0.000007,0.198533,-0.000441,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000118,0.000344,0.000332,0.000006,0.198201,-0.000332,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000180,0.000173,0.000006,0.198028,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000119,0.000035,0.000034,0.000005,0.197995,-0.000034,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000005,0.197995,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000005,0.197995,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000004,0.197995,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000004,0.197995,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000122,0.000000,0.000000,0.000004,0.197995,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000003,0.197995,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000123,0.000000,0.000000,0.000003,0.197995,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000000,0.000000,0.000003,0.197995,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000124,0.000000,0.000000,0.000003,0.197995,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000000,0.000000,0.000002,0.197995,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000002,0.197995,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000002,0.197995,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000106,0.000101,0.000002,0.197893,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000346,0.000331,0.000002,0.197562,-0.000331,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000522,0.000498,0.000002,0.197064,-0.000498,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000648,0.000615,0.000001,0.196449,-0.000615,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000759,0.000716,0.000001,0.195734,-0.000716,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000710,0.000665,0.000001,0.195069,-0.000665,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000640,0.000595,0.000001,0.194474,-0.000595,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000569,0.000526,0.000001,0.193949,-0.000526,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000471,0.000433,0.000001,0.193516,-0.000433,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000356,0.000325,0.000001,0.193190,-0.000325,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000199,0.000181,0.000001,0.193009,-0.000181,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000046,0.000041,0.000001,0.192967,-0.000041,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000001,0.192967,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000001,0.192967,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000001,0.192967,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000001,0.192967,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.192967,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000000,0.192967,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000116,0.000106,0.000000,0.192861,-0.000106,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620720.csv b/test/channel_loss/channel_forcing/et/cat-2620720.csv new file mode 100644 index 000000000..aa471f6d7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620720.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000000,0.000816,0.000076,0.000816,0.000172,0.000172,0.009021,0.371349,-0.003514,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000750,0.000075,0.000750,0.000058,0.000058,0.008346,0.367954,-0.003395,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000691,0.000073,0.000691,0.000000,0.000000,0.007728,0.364679,-0.003276,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000637,0.000072,0.000637,0.000000,0.000000,0.007163,0.361463,-0.003216,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000588,0.000071,0.000588,0.000000,0.000000,0.006646,0.358305,-0.003157,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000544,0.000069,0.000544,0.000000,0.000000,0.006172,0.355206,-0.003100,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000503,0.000068,0.000504,0.000000,0.000000,0.005737,0.352162,-0.003043,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000466,0.000067,0.000467,0.000000,0.000000,0.005337,0.349174,-0.002988,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000433,0.000066,0.000434,0.000000,0.000000,0.004970,0.346241,-0.002934,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000402,0.000064,0.000403,0.000000,0.000000,0.004632,0.343360,-0.002880,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000374,0.000063,0.000375,0.000000,0.000000,0.004321,0.340533,-0.002828,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000348,0.000062,0.000350,0.000000,0.000000,0.004035,0.337757,-0.002776,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000325,0.000061,0.000327,0.000000,0.000000,0.003771,0.335031,-0.002726,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000303,0.000060,0.000305,0.000000,0.000000,0.003527,0.332355,-0.002676,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000283,0.000059,0.000286,0.000137,0.000137,0.003303,0.329593,-0.002762,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000265,0.000057,0.000268,0.000369,0.000369,0.003095,0.326654,-0.002939,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000248,0.000056,0.000251,0.000530,0.000530,0.002903,0.323610,-0.003044,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000233,0.000055,0.000236,0.000641,0.000641,0.002726,0.320513,-0.003097,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000218,0.000054,0.000222,0.000557,0.000557,0.002561,0.317554,-0.002959,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000860,0.000008,0.000014,0.000008,0.000004,0.000205,0.000053,0.000217,0.000530,0.000530,0.002409,0.315507,-0.002047,1.000000,0.000006 +20,2022-08-01 20:00:00,0.000738,0.000009,0.000009,0.000009,0.000005,0.000193,0.000052,0.000206,0.000466,0.000466,0.002268,0.313445,-0.002062,1.000000,0.000007 +21,2022-08-01 21:00:00,0.000725,0.000014,0.000015,0.000014,0.000005,0.000181,0.000051,0.000200,0.000374,0.000374,0.002138,0.311491,-0.001953,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000727,0.000018,0.000021,0.000018,0.000006,0.000171,0.000050,0.000194,0.000310,0.000310,0.002017,0.309632,-0.001859,1.000000,0.000013 +23,2022-08-01 23:00:00,0.000713,0.000024,0.000028,0.000024,0.000006,0.000161,0.000050,0.000191,0.000237,0.000237,0.001906,0.307858,-0.001774,1.000000,0.000017 +24,2022-08-02 00:00:00,0.000695,0.000030,0.000034,0.000030,0.000007,0.000152,0.000049,0.000189,0.000162,0.000162,0.001802,0.306166,-0.001692,1.000000,0.000021 +25,2022-08-02 01:00:00,0.001032,0.000072,0.000105,0.000072,0.000007,0.000144,0.000048,0.000224,0.000074,0.000074,0.001706,0.304854,-0.001313,1.000000,0.000054 +26,2022-08-02 02:00:00,0.001195,0.000121,0.000159,0.000121,0.000008,0.000137,0.000048,0.000265,0.000000,0.000000,0.001618,0.303744,-0.001110,1.000000,0.000093 +27,2022-08-02 03:00:00,0.001238,0.000154,0.000170,0.000154,0.000009,0.000130,0.000047,0.000292,0.000000,0.000000,0.001535,0.302687,-0.001057,1.000000,0.000108 +28,2022-08-02 04:00:00,0.001183,0.000160,0.000155,0.000160,0.000009,0.000123,0.000047,0.000292,0.000000,0.000000,0.001459,0.301608,-0.001078,1.000000,0.000104 +29,2022-08-02 05:00:00,0.001185,0.000158,0.000156,0.000158,0.000010,0.000117,0.000047,0.000285,0.000000,0.000000,0.001389,0.300552,-0.001057,1.000000,0.000101 +30,2022-08-02 06:00:00,0.001237,0.000162,0.000168,0.000162,0.000010,0.000111,0.000046,0.000284,0.000000,0.000000,0.001324,0.299553,-0.000999,1.000000,0.000107 +31,2022-08-02 07:00:00,0.000000,0.000073,0.000000,0.000073,0.000011,0.000106,0.000045,0.000191,0.000000,0.000000,0.001263,0.297523,-0.002030,1.000000,0.000034 +32,2022-08-02 08:00:00,0.000000,0.000034,0.000000,0.000034,0.000012,0.000101,0.000045,0.000147,0.000000,0.000000,0.001206,0.295530,-0.001993,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000097,0.000044,0.000109,0.000000,0.000000,0.001153,0.293573,-0.001957,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000093,0.000043,0.000106,0.000000,0.000000,0.001103,0.291652,-0.001921,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000089,0.000042,0.000102,0.000000,0.000000,0.001056,0.289766,-0.001886,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000085,0.000041,0.000099,0.000000,0.000000,0.001012,0.287915,-0.001852,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000200,0.000003,0.000005,0.000003,0.000015,0.000082,0.000041,0.000099,0.000000,0.000000,0.000972,0.286288,-0.001626,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000300,0.000003,0.000004,0.000003,0.000016,0.000078,0.000040,0.000097,0.000125,0.000125,0.000933,0.284669,-0.001620,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000200,0.000002,0.000000,0.000002,0.000017,0.000075,0.000039,0.000094,0.000313,0.000313,0.000897,0.282799,-0.001870,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000200,0.000001,0.000000,0.000001,0.000017,0.000072,0.000038,0.000090,0.000445,0.000445,0.000863,0.280834,-0.001965,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000189,0.000000,0.000000,0.000000,0.000018,0.000070,0.000038,0.000088,0.000544,0.000544,0.000831,0.278796,-0.002038,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000193,0.000000,0.000000,0.000000,0.000019,0.000067,0.000037,0.000086,0.000627,0.000627,0.000801,0.276718,-0.002078,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000045,0.000000,0.000000,0.000000,0.000020,0.000065,0.000036,0.000084,0.000584,0.000584,0.000772,0.274575,-0.002143,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000045,0.000000,0.000000,0.000000,0.000020,0.000062,0.000035,0.000083,0.000533,0.000533,0.000745,0.272520,-0.002054,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000021,0.000060,0.000034,0.000081,0.000516,0.000516,0.000718,0.270533,-0.001987,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000022,0.000058,0.000033,0.000080,0.000433,0.000433,0.000694,0.268664,-0.001869,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000023,0.000056,0.000033,0.000079,0.000322,0.000322,0.000670,0.266937,-0.001727,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000024,0.000054,0.000032,0.000078,0.000196,0.000196,0.000648,0.265366,-0.001571,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000174,0.000001,0.000002,0.000001,0.000024,0.000052,0.000031,0.000078,0.000051,0.000051,0.000627,0.264078,-0.001288,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000222,0.000004,0.000006,0.000004,0.000025,0.000051,0.000031,0.000080,0.000000,0.000000,0.000607,0.262907,-0.001171,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000234,0.000005,0.000006,0.000005,0.000026,0.000049,0.000031,0.000081,0.000000,0.000000,0.000589,0.261768,-0.001139,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000172,0.000005,0.000003,0.000005,0.000027,0.000048,0.000030,0.000079,0.000000,0.000000,0.000571,0.260592,-0.001176,1.000000,0.000003 +53,2022-08-03 05:00:00,0.000243,0.000006,0.000007,0.000006,0.000028,0.000046,0.000030,0.000080,0.000000,0.000000,0.000554,0.259503,-0.001088,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000178,0.000004,0.000004,0.000004,0.000029,0.000045,0.000029,0.000078,0.000000,0.000000,0.000538,0.258374,-0.001129,1.000000,0.000003 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000030,0.000044,0.000029,0.000076,0.000000,0.000000,0.000523,0.257094,-0.001280,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000031,0.000043,0.000028,0.000074,0.000000,0.000000,0.000509,0.255838,-0.001257,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000041,0.000028,0.000073,0.000000,0.000000,0.000495,0.254604,-0.001234,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000040,0.000027,0.000073,0.000000,0.000000,0.000482,0.253393,-0.001211,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000039,0.000027,0.000072,0.000000,0.000000,0.000469,0.252204,-0.001189,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000038,0.000026,0.000072,0.000000,0.000000,0.000457,0.251036,-0.001168,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000037,0.000026,0.000072,0.000000,0.000000,0.000445,0.249890,-0.001146,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000036,0.000025,0.000072,0.000132,0.000132,0.000434,0.248635,-0.001255,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000035,0.000024,0.000072,0.000372,0.000372,0.000423,0.247168,-0.001467,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000034,0.000024,0.000072,0.000529,0.000529,0.000413,0.245573,-0.001595,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000034,0.000023,0.000072,0.000644,0.000644,0.000402,0.243894,-0.001679,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000033,0.000022,0.000072,0.000637,0.000637,0.000392,0.242252,-0.001642,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000040,0.000032,0.000022,0.000072,0.000616,0.000616,0.000382,0.240718,-0.001534,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000045,0.000000,0.000000,0.000000,0.000041,0.000031,0.000021,0.000072,0.000548,0.000548,0.000372,0.239266,-0.001452,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000042,0.000030,0.000021,0.000073,0.000506,0.000506,0.000362,0.237894,-0.001372,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000043,0.000029,0.000020,0.000073,0.000417,0.000417,0.000353,0.236635,-0.001259,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000045,0.000000,0.000000,0.000000,0.000044,0.000029,0.000020,0.000073,0.000322,0.000322,0.000344,0.235479,-0.001156,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000045,0.000000,0.000000,0.000000,0.000045,0.000028,0.000019,0.000073,0.000208,0.000208,0.000335,0.234456,-0.001023,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000027,0.000019,0.000073,0.000064,0.000064,0.000327,0.233549,-0.000908,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000027,0.000018,0.000074,0.000000,0.000000,0.000319,0.232721,-0.000828,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000026,0.000018,0.000074,0.000000,0.000000,0.000311,0.231908,-0.000813,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000025,0.000018,0.000074,0.000000,0.000000,0.000303,0.231110,-0.000798,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000025,0.000018,0.000075,0.000000,0.000000,0.000296,0.230327,-0.000783,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000024,0.000017,0.000075,0.000000,0.000000,0.000289,0.229558,-0.000769,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000024,0.000017,0.000075,0.000000,0.000000,0.000282,0.228803,-0.000755,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000023,0.000017,0.000076,0.000000,0.000000,0.000276,0.228061,-0.000741,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000023,0.000016,0.000076,0.000000,0.000000,0.000270,0.227334,-0.000728,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000022,0.000016,0.000077,0.000000,0.000000,0.000264,0.226619,-0.000715,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000022,0.000016,0.000077,0.000000,0.000000,0.000258,0.225917,-0.000702,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000015,0.000078,0.000000,0.000000,0.000252,0.225229,-0.000689,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000015,0.000078,0.000000,0.000000,0.000247,0.224552,-0.000676,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000020,0.000015,0.000079,0.000131,0.000131,0.000241,0.223760,-0.000792,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000020,0.000014,0.000079,0.000370,0.000370,0.000236,0.222747,-0.001013,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000019,0.000014,0.000080,0.000533,0.000533,0.000231,0.221593,-0.001155,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000019,0.000013,0.000080,0.000652,0.000652,0.000225,0.220343,-0.001250,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000018,0.000013,0.000081,0.000750,0.000750,0.000220,0.219019,-0.001323,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000018,0.000012,0.000081,0.000688,0.000688,0.000214,0.217781,-0.001239,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000017,0.000012,0.000081,0.000630,0.000630,0.000209,0.216621,-0.001160,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000017,0.000011,0.000082,0.000548,0.000548,0.000203,0.215563,-0.001058,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000016,0.000011,0.000082,0.000462,0.000462,0.000198,0.214609,-0.000954,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000016,0.000011,0.000083,0.000355,0.000355,0.000192,0.213778,-0.000831,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000016,0.000010,0.000083,0.000214,0.000214,0.000187,0.213100,-0.000678,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000015,0.000010,0.000084,0.000070,0.000070,0.000182,0.212576,-0.000524,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000015,0.000010,0.000085,0.000000,0.000000,0.000177,0.212130,-0.000446,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000014,0.000010,0.000085,0.000000,0.000000,0.000173,0.211693,-0.000438,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000014,0.000010,0.000086,0.000000,0.000000,0.000168,0.211263,-0.000430,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000014,0.000009,0.000086,0.000000,0.000000,0.000164,0.210841,-0.000422,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000013,0.000009,0.000087,0.000000,0.000000,0.000160,0.210427,-0.000414,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000013,0.000009,0.000087,0.000000,0.000000,0.000156,0.210020,-0.000407,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000013,0.000009,0.000088,0.000000,0.000000,0.000152,0.209621,-0.000399,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000012,0.000009,0.000089,0.000000,0.000000,0.000149,0.209229,-0.000392,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000012,0.000009,0.000089,0.000000,0.000000,0.000145,0.208844,-0.000385,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000012,0.000008,0.000090,0.000000,0.000000,0.000142,0.208466,-0.000378,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000012,0.000008,0.000090,0.000000,0.000000,0.000138,0.208095,-0.000371,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000011,0.000008,0.000091,0.000000,0.000000,0.000135,0.207731,-0.000364,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000011,0.000008,0.000092,0.000142,0.000142,0.000132,0.207234,-0.000497,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000011,0.000008,0.000092,0.000374,0.000374,0.000129,0.206518,-0.000716,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000010,0.000007,0.000093,0.000535,0.000535,0.000126,0.205658,-0.000860,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000010,0.000007,0.000094,0.000654,0.000654,0.000123,0.204696,-0.000962,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000010,0.000006,0.000094,0.000663,0.000663,0.000119,0.203743,-0.000954,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000010,0.000006,0.000095,0.000635,0.000635,0.000116,0.202834,-0.000908,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000009,0.000006,0.000095,0.000557,0.000557,0.000112,0.202019,-0.000815,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000009,0.000005,0.000096,0.000514,0.000514,0.000108,0.201261,-0.000758,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000009,0.000005,0.000097,0.000432,0.000432,0.000105,0.200598,-0.000663,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000008,0.000005,0.000097,0.000324,0.000324,0.000101,0.200052,-0.000546,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000008,0.000005,0.000098,0.000201,0.000201,0.000098,0.199637,-0.000415,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000071,0.000000,0.000000,0.000000,0.000090,0.000008,0.000005,0.000098,0.000073,0.000073,0.000095,0.199425,-0.000212,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000071,0.000000,0.000001,0.000000,0.000091,0.000008,0.000005,0.000099,0.000000,0.000000,0.000092,0.199288,-0.000137,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000071,0.000000,0.000001,0.000000,0.000092,0.000007,0.000005,0.000100,0.000000,0.000000,0.000089,0.199153,-0.000135,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000092,0.000001,0.000001,0.000001,0.000093,0.000007,0.000005,0.000101,0.000000,0.000000,0.000086,0.199041,-0.000112,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000107,0.000001,0.000001,0.000001,0.000094,0.000007,0.000004,0.000102,0.000000,0.000000,0.000084,0.198946,-0.000095,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000112,0.000001,0.000001,0.000001,0.000095,0.000007,0.000004,0.000103,0.000000,0.000000,0.000082,0.198857,-0.000089,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000096,0.000007,0.000004,0.000103,0.000000,0.000000,0.000079,0.198661,-0.000196,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000006,0.000004,0.000103,0.000000,0.000000,0.000077,0.198468,-0.000192,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000006,0.000004,0.000103,0.000000,0.000000,0.000075,0.198279,-0.000189,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000006,0.000004,0.000104,0.000000,0.000000,0.000073,0.198094,-0.000185,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000006,0.000004,0.000105,0.000000,0.000000,0.000071,0.197912,-0.000182,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000006,0.000004,0.000106,0.000000,0.000000,0.000069,0.197733,-0.000179,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000006,0.000004,0.000106,0.000000,0.000000,0.000068,0.197558,-0.000175,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000006,0.000004,0.000107,0.000125,0.000125,0.000066,0.197263,-0.000295,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000005,0.000004,0.000107,0.000356,0.000356,0.000064,0.196747,-0.000516,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000005,0.000003,0.000108,0.000519,0.000519,0.000062,0.196080,-0.000667,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000005,0.000003,0.000109,0.000634,0.000634,0.000060,0.195312,-0.000767,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000005,0.000003,0.000109,0.000728,0.000728,0.000058,0.194467,-0.000846,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000005,0.000002,0.000110,0.000701,0.000701,0.000056,0.193662,-0.000805,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000004,0.000002,0.000111,0.000631,0.000631,0.000053,0.192941,-0.000721,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000004,0.000002,0.000111,0.000559,0.000559,0.000051,0.192305,-0.000637,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000004,0.000002,0.000112,0.000464,0.000464,0.000048,0.191772,-0.000532,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000004,0.000001,0.000112,0.000352,0.000352,0.000046,0.191360,-0.000412,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000004,0.000001,0.000113,0.000210,0.000210,0.000044,0.191095,-0.000265,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000003,0.000001,0.000113,0.000063,0.000063,0.000041,0.190979,-0.000116,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000003,0.000001,0.000114,0.000000,0.000000,0.000039,0.190926,-0.000052,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000003,0.000001,0.000115,0.000000,0.000000,0.000037,0.190875,-0.000052,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000003,0.000001,0.000115,0.000000,0.000000,0.000035,0.190824,-0.000051,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000003,0.000001,0.000116,0.000000,0.000000,0.000034,0.190774,-0.000050,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000003,0.000001,0.000116,0.000000,0.000000,0.000032,0.190726,-0.000049,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000003,0.000001,0.000117,0.000000,0.000000,0.000031,0.190678,-0.000048,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000002,0.000001,0.000118,0.000000,0.000000,0.000029,0.190631,-0.000047,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000002,0.000001,0.000118,0.000000,0.000000,0.000028,0.190585,-0.000046,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000002,0.000001,0.000119,0.000000,0.000000,0.000027,0.190539,-0.000045,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000002,0.000001,0.000119,0.000000,0.000000,0.000026,0.190495,-0.000044,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000002,0.000001,0.000120,0.000000,0.000000,0.000025,0.190451,-0.000044,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000002,0.000001,0.000121,0.000000,0.000000,0.000024,0.190408,-0.000043,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000002,0.000001,0.000121,0.000123,0.000123,0.000023,0.190246,-0.000163,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000002,0.000001,0.000122,0.000353,0.000353,0.000022,0.189860,-0.000385,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000002,0.000001,0.000122,0.000516,0.000516,0.000020,0.189322,-0.000539,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000002,0.000000,0.000123,0.000636,0.000636,0.000019,0.188675,-0.000647,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000001,0.000000,0.000124,0.000706,0.000706,0.000018,0.187969,-0.000706,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000001,0.000000,0.000124,0.000664,0.000663,0.000016,0.187306,-0.000663,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000001,0.000000,0.000125,0.000590,0.000585,0.000015,0.186721,-0.000585,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000001,0.000000,0.000125,0.000536,0.000529,0.000014,0.186193,-0.000529,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000001,0.000000,0.000126,0.000447,0.000438,0.000013,0.185755,-0.000438,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000001,0.000000,0.000126,0.000336,0.000328,0.000012,0.185427,-0.000328,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000001,0.000000,0.000127,0.000175,0.000170,0.000011,0.185257,-0.000170,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000001,0.000000,0.000128,0.000034,0.000033,0.000010,0.185224,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000001,0.000000,0.000128,0.000000,0.000000,0.000009,0.185224,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000001,0.000000,0.000129,0.000000,0.000000,0.000009,0.185224,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000001,0.000000,0.000129,0.000000,0.000000,0.000008,0.185224,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000001,0.000000,0.000130,0.000000,0.000000,0.000007,0.185224,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000001,0.000000,0.000130,0.000000,0.000000,0.000007,0.185224,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000001,0.000000,0.000131,0.000000,0.000000,0.000006,0.185224,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000132,0.000000,0.000000,0.000006,0.185224,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000005,0.185224,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000133,0.000000,0.000000,0.000005,0.185224,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000000,0.000000,0.000004,0.185224,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000134,0.000000,0.000000,0.000004,0.185224,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000004,0.185224,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000104,0.000101,0.000004,0.185124,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000338,0.000327,0.000003,0.184796,-0.000327,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000508,0.000490,0.000003,0.184306,-0.000490,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000137,0.000629,0.000604,0.000003,0.183703,-0.000604,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000733,0.000699,0.000003,0.183004,-0.000699,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000138,0.000688,0.000650,0.000002,0.182354,-0.000650,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000138,0.000614,0.000577,0.000002,0.181777,-0.000577,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000139,0.000557,0.000519,0.000002,0.181258,-0.000519,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000000,0.000000,0.000139,0.000461,0.000427,0.000002,0.180831,-0.000427,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000000,0.000000,0.000140,0.000345,0.000319,0.000002,0.180512,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000000,0.000000,0.000140,0.000193,0.000178,0.000002,0.180335,-0.000178,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000000,0.000000,0.000141,0.000042,0.000039,0.000001,0.180296,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000000,0.000000,0.000141,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000000,0.000000,0.000142,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000000,0.000000,0.000142,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000000,0.000000,0.000143,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000000,0.000000,0.000143,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000000,0.000000,0.000144,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000000,0.000000,0.000144,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000000,0.000000,0.000145,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000000,0.000000,0.000145,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000000,0.000000,0.000146,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000000,0.000000,0.000146,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000000,0.000000,0.000147,0.000000,0.000000,0.000001,0.180296,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000000,0.000000,0.000147,0.000115,0.000105,0.000001,0.180190,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620721.csv b/test/channel_loss/channel_forcing/et/cat-2620721.csv new file mode 100644 index 000000000..ad803dc19 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620721.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000816,0.000077,0.000816,0.000174,0.000174,0.009023,0.376137,-0.001517,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000750,0.000075,0.000750,0.000057,0.000057,0.008348,0.374710,-0.001427,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000691,0.000073,0.000691,0.000000,0.000000,0.007730,0.373373,-0.001337,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000637,0.000072,0.000637,0.000000,0.000000,0.007165,0.372069,-0.001304,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000588,0.000070,0.000588,0.000000,0.000000,0.006647,0.370796,-0.001273,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000544,0.000068,0.000544,0.000000,0.000000,0.006172,0.369554,-0.001242,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000503,0.000067,0.000503,0.000000,0.000000,0.005735,0.368343,-0.001212,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000466,0.000065,0.000466,0.000000,0.000000,0.005334,0.367160,-0.001182,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000432,0.000063,0.000433,0.000000,0.000000,0.004965,0.366007,-0.001153,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000402,0.000062,0.000402,0.000000,0.000000,0.004625,0.364881,-0.001125,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000373,0.000060,0.000374,0.000000,0.000000,0.004312,0.363783,-0.001098,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000347,0.000059,0.000348,0.000000,0.000000,0.004024,0.362712,-0.001071,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000324,0.000057,0.000324,0.000000,0.000000,0.003758,0.361666,-0.001045,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000302,0.000056,0.000303,0.000000,0.000000,0.003512,0.360646,-0.001020,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000282,0.000054,0.000283,0.000135,0.000135,0.003285,0.359519,-0.001127,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000263,0.000053,0.000264,0.000375,0.000375,0.003074,0.358185,-0.001334,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000051,0.000247,0.000544,0.000544,0.002879,0.356719,-0.001466,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000230,0.000049,0.000231,0.000661,0.000661,0.002697,0.355174,-0.001545,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000215,0.000047,0.000217,0.000574,0.000574,0.002529,0.353751,-0.001423,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000836,0.000003,0.000005,0.000003,0.000002,0.000202,0.000046,0.000206,0.000547,0.000547,0.002373,0.353201,-0.000550,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000834,0.000005,0.000007,0.000005,0.000002,0.000189,0.000045,0.000196,0.000480,0.000480,0.002229,0.352725,-0.000476,1.000000,0.000004 +21,2022-08-01 21:00:00,0.000832,0.000009,0.000012,0.000009,0.000002,0.000178,0.000045,0.000189,0.000370,0.000370,0.002096,0.352361,-0.000364,1.000000,0.000007 +22,2022-08-01 22:00:00,0.000844,0.000013,0.000016,0.000013,0.000002,0.000167,0.000044,0.000182,0.000309,0.000309,0.001973,0.352074,-0.000287,1.000000,0.000009 +23,2022-08-01 23:00:00,0.000792,0.000016,0.000017,0.000016,0.000002,0.000157,0.000044,0.000175,0.000234,0.000234,0.001859,0.351815,-0.000259,1.000000,0.000011 +24,2022-08-02 00:00:00,0.000820,0.000020,0.000024,0.000020,0.000003,0.000148,0.000044,0.000171,0.000162,0.000162,0.001755,0.351652,-0.000162,1.000000,0.000014 +25,2022-08-02 01:00:00,0.001156,0.000044,0.000063,0.000044,0.000003,0.000140,0.000044,0.000187,0.000071,0.000071,0.001659,0.351873,0.000221,1.000000,0.000033 +26,2022-08-02 02:00:00,0.001176,0.000061,0.000073,0.000061,0.000003,0.000133,0.000044,0.000196,0.000000,0.000000,0.001570,0.352167,0.000294,1.000000,0.000045 +27,2022-08-02 03:00:00,0.001180,0.000071,0.000074,0.000071,0.000003,0.000126,0.000045,0.000200,0.000000,0.000000,0.001490,0.352457,0.000290,1.000000,0.000048 +28,2022-08-02 04:00:00,0.001182,0.000074,0.000074,0.000074,0.000003,0.000119,0.000045,0.000197,0.000000,0.000000,0.001416,0.352741,0.000285,1.000000,0.000048 +29,2022-08-02 05:00:00,0.001169,0.000073,0.000073,0.000073,0.000004,0.000114,0.000046,0.000190,0.000000,0.000000,0.001348,0.353008,0.000266,1.000000,0.000047 +30,2022-08-02 06:00:00,0.001170,0.000073,0.000073,0.000073,0.000004,0.000108,0.000046,0.000185,0.000000,0.000000,0.001285,0.353269,0.000261,1.000000,0.000047 +31,2022-08-02 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000004,0.000103,0.000045,0.000140,0.000000,0.000000,0.001227,0.352453,-0.000816,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000004,0.000099,0.000044,0.000118,0.000000,0.000000,0.001172,0.351656,-0.000796,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000094,0.000043,0.000099,0.000000,0.000000,0.001120,0.350879,-0.000777,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000090,0.000042,0.000095,0.000000,0.000000,0.001072,0.350121,-0.000758,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000086,0.000041,0.000091,0.000000,0.000000,0.001026,0.349382,-0.000740,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000083,0.000040,0.000088,0.000000,0.000000,0.000983,0.348660,-0.000722,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000138,0.000001,0.000001,0.000001,0.000006,0.000079,0.000039,0.000085,0.000000,0.000000,0.000943,0.348090,-0.000570,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000272,0.000001,0.000001,0.000001,0.000006,0.000076,0.000038,0.000083,0.000122,0.000122,0.000905,0.347544,-0.000546,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000168,0.000001,0.000000,0.000001,0.000006,0.000073,0.000037,0.000080,0.000320,0.000320,0.000869,0.346719,-0.000825,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000089,0.000000,0.000000,0.000000,0.000007,0.000070,0.000036,0.000077,0.000462,0.000462,0.000835,0.345698,-0.001021,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000083,0.000000,0.000000,0.000000,0.000007,0.000067,0.000034,0.000074,0.000565,0.000565,0.000802,0.344595,-0.001103,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000138,0.000000,0.000000,0.000000,0.000007,0.000065,0.000033,0.000072,0.000649,0.000649,0.000770,0.343491,-0.001104,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000004,0.000000,0.000000,0.000000,0.000007,0.000062,0.000031,0.000069,0.000583,0.000583,0.000739,0.342347,-0.001144,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000009,0.000000,0.000000,0.000000,0.000008,0.000059,0.000030,0.000067,0.000540,0.000540,0.000709,0.341277,-0.001070,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000057,0.000028,0.000065,0.000532,0.000532,0.000680,0.340294,-0.000983,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000022,0.000000,0.000000,0.000000,0.000008,0.000055,0.000027,0.000063,0.000447,0.000447,0.000653,0.339378,-0.000916,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000022,0.000000,0.000000,0.000000,0.000009,0.000052,0.000026,0.000061,0.000336,0.000336,0.000626,0.338593,-0.000785,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000050,0.000025,0.000059,0.000202,0.000202,0.000601,0.337997,-0.000596,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000190,0.000001,0.000001,0.000001,0.000009,0.000048,0.000025,0.000058,0.000050,0.000050,0.000577,0.337687,-0.000310,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000255,0.000002,0.000003,0.000002,0.000009,0.000046,0.000024,0.000058,0.000000,0.000000,0.000555,0.337495,-0.000193,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000171,0.000002,0.000002,0.000002,0.000010,0.000045,0.000024,0.000056,0.000000,0.000000,0.000534,0.337227,-0.000268,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000141,0.000002,0.000001,0.000002,0.000010,0.000043,0.000024,0.000055,0.000000,0.000000,0.000515,0.336937,-0.000290,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000171,0.000001,0.000002,0.000001,0.000010,0.000042,0.000023,0.000053,0.000000,0.000000,0.000497,0.336683,-0.000254,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000141,0.000001,0.000001,0.000001,0.000011,0.000040,0.000023,0.000052,0.000000,0.000000,0.000480,0.336406,-0.000277,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000011,0.000039,0.000022,0.000050,0.000000,0.000000,0.000463,0.336000,-0.000407,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000037,0.000022,0.000049,0.000000,0.000000,0.000448,0.335603,-0.000397,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000036,0.000021,0.000048,0.000000,0.000000,0.000433,0.335216,-0.000387,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000035,0.000021,0.000047,0.000000,0.000000,0.000418,0.334839,-0.000378,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000034,0.000020,0.000046,0.000000,0.000000,0.000405,0.334470,-0.000368,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000033,0.000020,0.000045,0.000000,0.000000,0.000392,0.334111,-0.000359,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000032,0.000019,0.000045,0.000000,0.000000,0.000379,0.333760,-0.000351,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000031,0.000019,0.000044,0.000133,0.000133,0.000367,0.333288,-0.000472,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000030,0.000018,0.000043,0.000388,0.000388,0.000355,0.332578,-0.000710,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000029,0.000016,0.000043,0.000557,0.000557,0.000343,0.331721,-0.000857,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000028,0.000015,0.000042,0.000672,0.000672,0.000331,0.330772,-0.000949,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000027,0.000014,0.000041,0.000663,0.000663,0.000318,0.329855,-0.000917,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000025,0.000013,0.000040,0.000624,0.000624,0.000305,0.329060,-0.000795,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000024,0.000012,0.000040,0.000564,0.000564,0.000293,0.328343,-0.000717,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000071,0.000000,0.000000,0.000000,0.000016,0.000023,0.000011,0.000039,0.000511,0.000511,0.000280,0.327702,-0.000641,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000064,0.000000,0.000000,0.000000,0.000016,0.000022,0.000010,0.000038,0.000420,0.000420,0.000268,0.327160,-0.000542,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000016,0.000021,0.000010,0.000038,0.000326,0.000326,0.000256,0.326670,-0.000490,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000009,0.000000,0.000000,0.000000,0.000017,0.000020,0.000009,0.000037,0.000214,0.000214,0.000245,0.326300,-0.000370,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000020,0.000009,0.000036,0.000064,0.000064,0.000234,0.326076,-0.000224,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000019,0.000009,0.000036,0.000000,0.000000,0.000224,0.325920,-0.000156,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000018,0.000008,0.000035,0.000000,0.000000,0.000215,0.325769,-0.000152,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000017,0.000008,0.000035,0.000000,0.000000,0.000206,0.325621,-0.000148,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000016,0.000008,0.000035,0.000000,0.000000,0.000197,0.325476,-0.000145,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000016,0.000008,0.000034,0.000000,0.000000,0.000189,0.325335,-0.000141,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000015,0.000008,0.000034,0.000000,0.000000,0.000182,0.325197,-0.000138,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000015,0.000007,0.000034,0.000000,0.000000,0.000174,0.325063,-0.000134,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000000,0.000000,0.000168,0.324932,-0.000131,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000007,0.000033,0.000000,0.000000,0.000161,0.324804,-0.000128,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000007,0.000033,0.000000,0.000000,0.000155,0.324680,-0.000125,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000007,0.000033,0.000000,0.000000,0.000149,0.324558,-0.000122,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000012,0.000007,0.000033,0.000000,0.000000,0.000144,0.324439,-0.000119,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000012,0.000006,0.000033,0.000128,0.000128,0.000139,0.324198,-0.000241,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000382,0.000382,0.000133,0.323716,-0.000482,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000011,0.000005,0.000032,0.000548,0.000548,0.000127,0.323083,-0.000633,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000004,0.000032,0.000674,0.000674,0.000121,0.322343,-0.000740,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000009,0.000003,0.000032,0.000766,0.000766,0.000114,0.321530,-0.000812,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000009,0.000002,0.000031,0.000716,0.000716,0.000106,0.320787,-0.000744,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000001,0.000031,0.000645,0.000645,0.000099,0.320130,-0.000657,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000000,0.000031,0.000571,0.000571,0.000091,0.319559,-0.000571,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000007,0.000000,0.000031,0.000476,0.000476,0.000084,0.319083,-0.000476,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000030,0.000365,0.000364,0.000078,0.318719,-0.000364,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000030,0.000221,0.000220,0.000072,0.318500,-0.000220,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000030,0.000069,0.000068,0.000066,0.318432,-0.000068,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000030,0.000000,0.000000,0.000061,0.318432,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000030,0.000000,0.000000,0.000056,0.318432,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000030,0.000000,0.000000,0.000052,0.318432,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000048,0.318432,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000044,0.318432,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000030,0.000000,0.000000,0.000041,0.318432,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000030,0.000000,0.000000,0.000038,0.318432,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000035,0.318432,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000032,0.318432,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000030,0.000000,0.000000,0.000030,0.318432,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000027,0.318432,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000025,0.318432,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000141,0.000140,0.000023,0.318291,-0.000140,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000385,0.000382,0.000022,0.317909,-0.000382,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000030,0.000552,0.000547,0.000020,0.317363,-0.000547,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000030,0.000676,0.000669,0.000018,0.316694,-0.000669,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000031,0.000685,0.000675,0.000017,0.316019,-0.000675,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000031,0.000636,0.000625,0.000016,0.315395,-0.000625,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000562,0.000550,0.000014,0.314844,-0.000550,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000527,0.000514,0.000013,0.314330,-0.000514,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000450,0.000438,0.000012,0.313892,-0.000438,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000338,0.000328,0.000011,0.313564,-0.000328,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000211,0.000205,0.000011,0.313359,-0.000205,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000125,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000073,0.000073,0.000010,0.313411,0.000052,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000145,0.000001,0.000001,0.000001,0.000031,0.000001,0.000000,0.000033,0.000000,0.000000,0.000009,0.313555,0.000143,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000181,0.000001,0.000002,0.000001,0.000031,0.000001,0.000000,0.000033,0.000000,0.000000,0.000008,0.313734,0.000179,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000174,0.000001,0.000002,0.000001,0.000032,0.000001,0.000000,0.000034,0.000000,0.000000,0.000008,0.313906,0.000172,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000200,0.000002,0.000002,0.000002,0.000032,0.000001,0.000000,0.000034,0.000000,0.000000,0.000007,0.314105,0.000198,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000181,0.000002,0.000002,0.000002,0.000032,0.000001,0.000000,0.000035,0.000000,0.000000,0.000007,0.314285,0.000180,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000032,0.000001,0.000000,0.000034,0.000000,0.000000,0.000006,0.314285,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000006,0.314285,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.314285,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000005,0.314285,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.314285,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.314285,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.314285,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000123,0.000119,0.000003,0.314165,-0.000119,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000373,0.000362,0.000003,0.313803,-0.000362,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000539,0.000524,0.000003,0.313279,-0.000524,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000653,0.000632,0.000003,0.312647,-0.000632,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000739,0.000713,0.000002,0.311934,-0.000713,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000708,0.000681,0.000002,0.311253,-0.000681,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000635,0.000609,0.000002,0.310644,-0.000609,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000567,0.000542,0.000002,0.310102,-0.000542,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000474,0.000451,0.000002,0.309651,-0.000451,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000359,0.000341,0.000002,0.309310,-0.000341,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000214,0.000203,0.000002,0.309107,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000061,0.000058,0.000001,0.309049,-0.000058,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.309049,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000123,0.000116,0.000001,0.308933,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000369,0.000349,0.000000,0.308583,-0.000349,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000540,0.000510,0.000000,0.308073,-0.000510,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000657,0.000619,0.000000,0.307454,-0.000619,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000720,0.000676,0.000000,0.306778,-0.000676,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000670,0.000627,0.000000,0.306151,-0.000627,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000599,0.000558,0.000000,0.305593,-0.000558,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000550,0.000512,0.000000,0.305081,-0.000512,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000460,0.000426,0.000000,0.304654,-0.000426,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000345,0.000320,0.000000,0.304335,-0.000320,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000180,0.000166,0.000000,0.304168,-0.000166,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000034,0.000031,0.000000,0.304137,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.304137,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.304137,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304137,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304137,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304137,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304139,0.000002,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304141,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.304143,0.000002,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.304146,0.000003,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.304149,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.304152,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.304152,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000102,0.000094,0.000000,0.304057,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000355,0.000327,0.000000,0.303730,-0.000327,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000531,0.000489,0.000000,0.303241,-0.000489,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000651,0.000598,0.000000,0.302644,-0.000598,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000754,0.000690,0.000000,0.301954,-0.000690,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000703,0.000641,0.000000,0.301312,-0.000641,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000630,0.000572,0.000000,0.300740,-0.000572,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000563,0.000510,0.000000,0.300230,-0.000510,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000470,0.000425,0.000000,0.299805,-0.000425,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000354,0.000319,0.000000,0.299486,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000200,0.000179,0.000000,0.299307,-0.000179,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000040,0.000036,0.000000,0.299270,-0.000036,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.299270,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000110,0.000099,0.000000,0.299171,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620722.csv b/test/channel_loss/channel_forcing/et/cat-2620722.csv new file mode 100644 index 000000000..17146986f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620722.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000021,0.000000,0.000000,0.000000,0.000000,0.000813,0.000038,0.000813,0.000173,0.000173,0.008988,0.381161,-0.000768,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000744,0.000037,0.000744,0.000055,0.000055,0.008282,0.380508,-0.000653,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000682,0.000036,0.000682,0.000000,0.000000,0.007636,0.379926,-0.000583,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000625,0.000035,0.000625,0.000000,0.000000,0.007045,0.379359,-0.000567,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000575,0.000034,0.000575,0.000000,0.000000,0.006505,0.378806,-0.000552,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000528,0.000033,0.000528,0.000000,0.000000,0.006010,0.378268,-0.000538,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000486,0.000032,0.000486,0.000000,0.000000,0.005556,0.377745,-0.000524,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000448,0.000031,0.000448,0.000000,0.000000,0.005139,0.377235,-0.000510,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000413,0.000031,0.000413,0.000000,0.000000,0.004756,0.376738,-0.000497,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000382,0.000030,0.000382,0.000000,0.000000,0.004404,0.376255,-0.000483,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000352,0.000029,0.000353,0.000000,0.000000,0.004081,0.375784,-0.000471,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000326,0.000028,0.000326,0.000000,0.000000,0.003783,0.375326,-0.000458,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000301,0.000028,0.000302,0.000000,0.000000,0.003509,0.374879,-0.000446,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000279,0.000027,0.000280,0.000000,0.000000,0.003257,0.374444,-0.000435,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000259,0.000026,0.000259,0.000133,0.000133,0.003024,0.373892,-0.000553,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000240,0.000025,0.000240,0.000373,0.000373,0.002809,0.373119,-0.000772,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000222,0.000023,0.000223,0.000539,0.000539,0.002610,0.372207,-0.000913,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000206,0.000021,0.000207,0.000656,0.000656,0.002425,0.371203,-0.001003,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000191,0.000020,0.000192,0.000563,0.000563,0.002253,0.370317,-0.000887,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000572,0.000000,0.000000,0.000000,0.000001,0.000178,0.000019,0.000178,0.000532,0.000532,0.002095,0.370041,-0.000276,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000680,0.000002,0.000003,0.000002,0.000001,0.000165,0.000019,0.000167,0.000474,0.000474,0.001949,0.369932,-0.000109,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000830,0.000008,0.000014,0.000008,0.000001,0.000154,0.000020,0.000163,0.000365,0.000365,0.001815,0.370067,0.000135,1.000000,0.000007 +22,2022-08-01 22:00:00,0.000798,0.000012,0.000016,0.000012,0.000001,0.000143,0.000020,0.000156,0.000300,0.000300,0.001692,0.370229,0.000162,1.000000,0.000010 +23,2022-08-01 23:00:00,0.000743,0.000016,0.000017,0.000016,0.000001,0.000133,0.000020,0.000150,0.000223,0.000223,0.001579,0.370406,0.000177,1.000000,0.000011 +24,2022-08-02 00:00:00,0.000759,0.000020,0.000022,0.000020,0.000001,0.000124,0.000020,0.000145,0.000160,0.000160,0.001475,0.370651,0.000244,1.000000,0.000013 +25,2022-08-02 01:00:00,0.001041,0.000041,0.000057,0.000041,0.000001,0.000116,0.000021,0.000158,0.000069,0.000069,0.001380,0.371218,0.000567,1.000000,0.000030 +26,2022-08-02 02:00:00,0.001119,0.000060,0.000075,0.000060,0.000001,0.000109,0.000023,0.000171,0.000000,0.000000,0.001294,0.371896,0.000678,1.000000,0.000045 +27,2022-08-02 03:00:00,0.001122,0.000072,0.000076,0.000072,0.000001,0.000102,0.000024,0.000176,0.000000,0.000000,0.001215,0.372558,0.000662,1.000000,0.000049 +28,2022-08-02 04:00:00,0.001139,0.000077,0.000078,0.000077,0.000001,0.000096,0.000025,0.000175,0.000000,0.000000,0.001144,0.373217,0.000659,1.000000,0.000050 +29,2022-08-02 05:00:00,0.001053,0.000072,0.000067,0.000072,0.000002,0.000091,0.000026,0.000164,0.000000,0.000000,0.001079,0.373786,0.000569,1.000000,0.000046 +30,2022-08-02 06:00:00,0.001053,0.000070,0.000068,0.000070,0.000002,0.000086,0.000027,0.000157,0.000000,0.000000,0.001020,0.374340,0.000554,1.000000,0.000044 +31,2022-08-02 07:00:00,0.000000,0.000030,0.000000,0.000030,0.000002,0.000081,0.000026,0.000113,0.000000,0.000000,0.000965,0.373920,-0.000420,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000002,0.000077,0.000025,0.000092,0.000000,0.000000,0.000913,0.373510,-0.000409,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000073,0.000025,0.000075,0.000000,0.000000,0.000865,0.373112,-0.000399,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000069,0.000024,0.000071,0.000000,0.000000,0.000820,0.372724,-0.000388,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000065,0.000023,0.000067,0.000000,0.000000,0.000778,0.372346,-0.000378,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000062,0.000023,0.000064,0.000000,0.000000,0.000739,0.371977,-0.000368,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000002,0.000059,0.000022,0.000062,0.000000,0.000000,0.000703,0.371716,-0.000261,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000156,0.000000,0.000000,0.000000,0.000003,0.000056,0.000022,0.000059,0.000121,0.000121,0.000668,0.371399,-0.000318,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000105,0.000000,0.000000,0.000000,0.000003,0.000053,0.000021,0.000056,0.000317,0.000317,0.000636,0.370849,-0.000549,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000067,0.000000,0.000000,0.000000,0.000003,0.000051,0.000020,0.000053,0.000461,0.000461,0.000605,0.370137,-0.000712,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000026,0.000000,0.000000,0.000000,0.000003,0.000048,0.000018,0.000051,0.000562,0.000562,0.000575,0.369305,-0.000832,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000134,0.000000,0.000000,0.000000,0.000003,0.000046,0.000017,0.000049,0.000643,0.000643,0.000546,0.368521,-0.000784,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000043,0.000016,0.000047,0.000575,0.000575,0.000519,0.367694,-0.000827,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000041,0.000014,0.000044,0.000530,0.000530,0.000492,0.366932,-0.000762,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000012,0.000000,0.000000,0.000000,0.000003,0.000039,0.000013,0.000042,0.000528,0.000528,0.000466,0.366203,-0.000729,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000037,0.000012,0.000040,0.000442,0.000442,0.000441,0.365566,-0.000637,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000035,0.000011,0.000039,0.000335,0.000335,0.000417,0.365050,-0.000516,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000012,0.000000,0.000000,0.000000,0.000004,0.000033,0.000011,0.000037,0.000200,0.000200,0.000395,0.364691,-0.000360,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000092,0.000000,0.000000,0.000000,0.000004,0.000031,0.000010,0.000035,0.000047,0.000047,0.000374,0.364567,-0.000123,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000092,0.000000,0.000001,0.000000,0.000004,0.000030,0.000010,0.000034,0.000000,0.000000,0.000355,0.364493,-0.000074,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000074,0.000000,0.000000,0.000000,0.000004,0.000028,0.000010,0.000033,0.000000,0.000000,0.000337,0.364403,-0.000090,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000074,0.000000,0.000000,0.000000,0.000004,0.000027,0.000010,0.000031,0.000000,0.000000,0.000320,0.364315,-0.000088,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000076,0.000000,0.000000,0.000000,0.000005,0.000025,0.000010,0.000030,0.000000,0.000000,0.000304,0.364231,-0.000083,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000097,0.000000,0.000001,0.000000,0.000005,0.000024,0.000010,0.000029,0.000000,0.000000,0.000290,0.364170,-0.000061,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000023,0.000009,0.000028,0.000000,0.000000,0.000276,0.364017,-0.000153,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000022,0.000009,0.000027,0.000000,0.000000,0.000263,0.363868,-0.000149,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000021,0.000009,0.000026,0.000000,0.000000,0.000251,0.363723,-0.000145,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000020,0.000009,0.000025,0.000000,0.000000,0.000240,0.363581,-0.000141,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000019,0.000008,0.000024,0.000000,0.000000,0.000229,0.363443,-0.000138,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000018,0.000008,0.000024,0.000000,0.000000,0.000219,0.363309,-0.000134,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000018,0.000008,0.000023,0.000000,0.000000,0.000210,0.363179,-0.000131,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000017,0.000008,0.000023,0.000133,0.000133,0.000201,0.362922,-0.000257,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000016,0.000007,0.000022,0.000385,0.000385,0.000192,0.362427,-0.000496,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000015,0.000006,0.000021,0.000555,0.000555,0.000182,0.361779,-0.000647,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000014,0.000004,0.000021,0.000669,0.000669,0.000172,0.361038,-0.000742,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000014,0.000003,0.000020,0.000660,0.000660,0.000162,0.360324,-0.000714,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000012,0.000000,0.000000,0.000000,0.000006,0.000013,0.000002,0.000019,0.000621,0.000621,0.000152,0.359678,-0.000646,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000306,0.000000,0.000000,0.000000,0.000007,0.000012,0.000002,0.000018,0.000555,0.000555,0.000142,0.359400,-0.000278,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000111,0.000000,0.000000,0.000000,0.000007,0.000011,0.000001,0.000018,0.000498,0.000498,0.000132,0.358996,-0.000404,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000012,0.000000,0.000000,0.000000,0.000007,0.000010,0.000000,0.000017,0.000410,0.000410,0.000122,0.358591,-0.000405,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000009,0.000000,0.000016,0.000315,0.000315,0.000113,0.358276,-0.000315,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000009,0.000000,0.000016,0.000212,0.000212,0.000104,0.358064,-0.000212,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000008,0.000000,0.000015,0.000060,0.000060,0.000096,0.358004,-0.000060,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000007,0.000000,0.000015,0.000000,0.000000,0.000089,0.358004,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000007,0.000000,0.000014,0.000000,0.000000,0.000082,0.358004,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000006,0.000000,0.000014,0.000000,0.000000,0.000076,0.358004,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000006,0.000000,0.000014,0.000000,0.000000,0.000070,0.358004,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000005,0.000000,0.000013,0.000000,0.000000,0.000064,0.358004,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000005,0.000000,0.000013,0.000000,0.000000,0.000059,0.358004,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000005,0.000000,0.000013,0.000000,0.000000,0.000055,0.358004,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000004,0.000000,0.000013,0.000000,0.000000,0.000051,0.358004,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000004,0.000000,0.000012,0.000000,0.000000,0.000047,0.358004,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000004,0.000000,0.000012,0.000000,0.000000,0.000043,0.358004,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000003,0.000000,0.000012,0.000000,0.000000,0.000040,0.358004,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000003,0.000000,0.000012,0.000000,0.000000,0.000037,0.358004,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000003,0.000000,0.000012,0.000127,0.000127,0.000034,0.357877,-0.000127,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000003,0.000000,0.000012,0.000379,0.000378,0.000031,0.357499,-0.000378,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000002,0.000000,0.000012,0.000541,0.000539,0.000029,0.356960,-0.000539,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000002,0.000000,0.000012,0.000668,0.000664,0.000027,0.356296,-0.000664,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000002,0.000000,0.000012,0.000755,0.000748,0.000025,0.355548,-0.000748,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000002,0.000000,0.000012,0.000724,0.000715,0.000023,0.354833,-0.000715,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000002,0.000000,0.000011,0.000641,0.000631,0.000021,0.354202,-0.000631,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000002,0.000000,0.000011,0.000570,0.000560,0.000019,0.353642,-0.000560,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000001,0.000000,0.000011,0.000471,0.000461,0.000018,0.353181,-0.000461,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000001,0.000000,0.000011,0.000358,0.000350,0.000017,0.352832,-0.000350,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000001,0.000000,0.000011,0.000219,0.000214,0.000015,0.352618,-0.000214,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000001,0.000000,0.000011,0.000064,0.000062,0.000014,0.352556,-0.000062,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000001,0.000000,0.000012,0.000000,0.000000,0.000013,0.352556,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000012,0.352556,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000011,0.352556,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000010,0.352556,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000009,0.352556,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000009,0.352556,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000008,0.352556,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000007,0.352556,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000007,0.352556,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000001,0.000000,0.000012,0.000000,0.000000,0.000006,0.352556,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000006,0.352556,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000005,0.352556,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000141,0.000137,0.000005,0.352419,-0.000137,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000382,0.000372,0.000005,0.352047,-0.000372,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000546,0.000531,0.000004,0.351516,-0.000531,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000672,0.000652,0.000004,0.350865,-0.000652,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000680,0.000658,0.000004,0.350207,-0.000658,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000013,0.000623,0.000601,0.000003,0.349606,-0.000601,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000013,0.000558,0.000536,0.000003,0.349070,-0.000536,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000013,0.000530,0.000509,0.000003,0.348561,-0.000509,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000444,0.000425,0.000003,0.348136,-0.000425,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000339,0.000324,0.000002,0.347813,-0.000324,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000215,0.000205,0.000002,0.347608,-0.000205,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000082,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000071,0.000071,0.000002,0.347619,0.000011,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000139,0.000001,0.000001,0.000001,0.000013,0.000000,0.000000,0.000014,0.000000,0.000000,0.000002,0.347757,0.000138,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000031,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000014,0.000000,0.000000,0.000002,0.347788,0.000031,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000027,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000014,0.000000,0.000000,0.000002,0.347815,0.000027,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000033,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000002,0.347847,0.000033,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000033,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000033,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000000,0.000000,0.000001,0.347880,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000121,0.000116,0.000001,0.347764,-0.000116,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000374,0.000356,0.000001,0.347408,-0.000356,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000533,0.000508,0.000001,0.346900,-0.000508,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000014,0.000646,0.000613,0.000001,0.346287,-0.000613,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000000,0.000000,0.000015,0.000730,0.000691,0.000001,0.345596,-0.000691,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000698,0.000658,0.000000,0.344937,-0.000658,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000626,0.000589,0.000000,0.344348,-0.000589,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000558,0.000524,0.000000,0.343824,-0.000524,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000462,0.000432,0.000000,0.343392,-0.000432,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000350,0.000327,0.000000,0.343065,-0.000327,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000208,0.000194,0.000000,0.342871,-0.000194,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000056,0.000052,0.000000,0.342818,-0.000052,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000000,0.000000,0.000000,0.342818,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000120,0.000112,0.000000,0.342706,-0.000112,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000366,0.000341,0.000000,0.342366,-0.000341,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000536,0.000499,0.000000,0.341867,-0.000499,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000650,0.000602,0.000000,0.341265,-0.000602,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000702,0.000649,0.000000,0.340615,-0.000649,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000657,0.000606,0.000000,0.340010,-0.000606,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000017,0.000594,0.000546,0.000000,0.339464,-0.000546,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000546,0.000501,0.000000,0.338963,-0.000501,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000451,0.000412,0.000000,0.338551,-0.000412,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000339,0.000310,0.000000,0.338241,-0.000310,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000177,0.000162,0.000000,0.338080,-0.000162,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000033,0.000030,0.000000,0.338050,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000000,0.338050,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000100,0.000091,0.000000,0.337959,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000353,0.000321,0.000000,0.337637,-0.000321,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000526,0.000478,0.000000,0.337159,-0.000478,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000644,0.000584,0.000000,0.336575,-0.000584,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000740,0.000669,0.000000,0.335906,-0.000669,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000696,0.000627,0.000000,0.335279,-0.000627,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000628,0.000564,0.000000,0.334715,-0.000564,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000552,0.000494,0.000000,0.334221,-0.000494,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000459,0.000410,0.000000,0.333811,-0.000410,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000347,0.000310,0.000000,0.333502,-0.000310,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000197,0.000175,0.000000,0.333327,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000035,0.000031,0.000000,0.333296,-0.000031,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000000,0.000000,0.000000,0.333296,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000108,0.000096,0.000000,0.333200,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620723.csv b/test/channel_loss/channel_forcing/et/cat-2620723.csv new file mode 100644 index 000000000..840ce8ca2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620723.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000811,0.000022,0.000811,0.000168,0.000168,0.008980,0.380423,-0.000444,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000741,0.000021,0.000741,0.000056,0.000056,0.008261,0.380040,-0.000384,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000678,0.000021,0.000678,0.000000,0.000000,0.007604,0.379720,-0.000319,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000621,0.000020,0.000621,0.000000,0.000000,0.007003,0.379410,-0.000311,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000569,0.000020,0.000569,0.000000,0.000000,0.006453,0.379108,-0.000302,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000522,0.000019,0.000522,0.000000,0.000000,0.005950,0.378814,-0.000294,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000480,0.000019,0.000480,0.000000,0.000000,0.005489,0.378528,-0.000286,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000441,0.000018,0.000441,0.000000,0.000000,0.005066,0.378250,-0.000278,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000406,0.000018,0.000406,0.000000,0.000000,0.004678,0.377979,-0.000271,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000374,0.000017,0.000374,0.000000,0.000000,0.004321,0.377716,-0.000263,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000344,0.000017,0.000344,0.000000,0.000000,0.003994,0.377460,-0.000256,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000318,0.000016,0.000318,0.000000,0.000000,0.003692,0.377211,-0.000249,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000293,0.000016,0.000293,0.000000,0.000000,0.003415,0.376968,-0.000242,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000270,0.000015,0.000271,0.000000,0.000000,0.003160,0.376733,-0.000236,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000250,0.000133,0.000133,0.002925,0.376374,-0.000359,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000231,0.000366,0.000366,0.002708,0.375799,-0.000575,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000214,0.000535,0.000535,0.002507,0.375075,-0.000724,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000197,0.000011,0.000197,0.000649,0.000649,0.002321,0.374259,-0.000816,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000182,0.000010,0.000183,0.000560,0.000560,0.002149,0.373552,-0.000707,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000792,0.000002,0.000004,0.000002,0.000000,0.000168,0.000010,0.000171,0.000536,0.000536,0.001990,0.373655,0.000103,1.000000,0.000002 +20,2022-08-01 20:00:00,0.001006,0.000009,0.000016,0.000009,0.000000,0.000156,0.000010,0.000166,0.000473,0.000473,0.001844,0.374012,0.000357,1.000000,0.000008 +21,2022-08-01 21:00:00,0.001020,0.000017,0.000023,0.000017,0.000000,0.000145,0.000011,0.000162,0.000375,0.000375,0.001711,0.374462,0.000450,1.000000,0.000013 +22,2022-08-01 22:00:00,0.001018,0.000024,0.000028,0.000024,0.000001,0.000134,0.000012,0.000159,0.000307,0.000307,0.001589,0.374958,0.000497,1.000000,0.000017 +23,2022-08-01 23:00:00,0.001012,0.000030,0.000033,0.000030,0.000001,0.000125,0.000013,0.000155,0.000233,0.000233,0.001478,0.375504,0.000545,1.000000,0.000020 +24,2022-08-02 00:00:00,0.001026,0.000036,0.000041,0.000036,0.000001,0.000116,0.000014,0.000153,0.000155,0.000155,0.001376,0.376114,0.000611,1.000000,0.000025 +25,2022-08-02 01:00:00,0.001297,0.000061,0.000080,0.000061,0.000001,0.000108,0.000016,0.000170,0.000070,0.000070,0.001284,0.377017,0.000903,1.000000,0.000044 +26,2022-08-02 02:00:00,0.001333,0.000080,0.000094,0.000080,0.000001,0.000101,0.000018,0.000182,0.000000,0.000000,0.001201,0.377986,0.000968,1.000000,0.000058 +27,2022-08-02 03:00:00,0.001334,0.000092,0.000095,0.000092,0.000001,0.000095,0.000019,0.000187,0.000000,0.000000,0.001126,0.378928,0.000942,1.000000,0.000061 +28,2022-08-02 04:00:00,0.001329,0.000094,0.000094,0.000094,0.000001,0.000089,0.000021,0.000184,0.000000,0.000000,0.001058,0.379840,0.000912,1.000000,0.000061 +29,2022-08-02 05:00:00,0.001337,0.000095,0.000095,0.000095,0.000001,0.000084,0.000023,0.000179,0.000000,0.000000,0.000997,0.380734,0.000894,1.000000,0.000062 +30,2022-08-02 06:00:00,0.001330,0.000095,0.000095,0.000095,0.000001,0.000079,0.000024,0.000175,0.000000,0.000000,0.000942,0.381597,0.000863,1.000000,0.000062 +31,2022-08-02 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000001,0.000075,0.000024,0.000118,0.000000,0.000000,0.000891,0.381235,-0.000362,1.000000,0.000019 +32,2022-08-02 08:00:00,0.000000,0.000019,0.000000,0.000019,0.000001,0.000071,0.000023,0.000091,0.000000,0.000000,0.000844,0.380883,-0.000352,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000067,0.000022,0.000068,0.000000,0.000000,0.000799,0.380541,-0.000342,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000063,0.000022,0.000065,0.000000,0.000000,0.000757,0.380208,-0.000333,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000060,0.000021,0.000061,0.000000,0.000000,0.000719,0.379884,-0.000324,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000057,0.000021,0.000058,0.000000,0.000000,0.000682,0.379569,-0.000315,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000200,0.000001,0.000002,0.000001,0.000001,0.000054,0.000020,0.000057,0.000000,0.000000,0.000648,0.379455,-0.000114,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000302,0.000002,0.000002,0.000002,0.000001,0.000052,0.000020,0.000055,0.000122,0.000122,0.000617,0.379325,-0.000131,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000149,0.000001,0.000000,0.000001,0.000002,0.000049,0.000019,0.000052,0.000311,0.000311,0.000587,0.378867,-0.000458,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000126,0.000000,0.000000,0.000000,0.000002,0.000047,0.000018,0.000049,0.000451,0.000451,0.000559,0.378264,-0.000603,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000127,0.000000,0.000000,0.000000,0.000002,0.000044,0.000017,0.000046,0.000554,0.000554,0.000531,0.377578,-0.000686,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000183,0.000000,0.000000,0.000000,0.000002,0.000042,0.000016,0.000044,0.000638,0.000638,0.000505,0.376884,-0.000694,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000047,0.000000,0.000000,0.000000,0.000002,0.000040,0.000014,0.000042,0.000581,0.000581,0.000479,0.376130,-0.000753,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000060,0.000000,0.000000,0.000000,0.000002,0.000038,0.000013,0.000040,0.000529,0.000529,0.000454,0.375461,-0.000670,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000002,0.000036,0.000012,0.000038,0.000522,0.000522,0.000430,0.374819,-0.000641,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000057,0.000000,0.000000,0.000000,0.000002,0.000034,0.000011,0.000036,0.000436,0.000436,0.000407,0.374273,-0.000546,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000002,0.000032,0.000010,0.000034,0.000324,0.000324,0.000385,0.373857,-0.000416,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000002,0.000030,0.000010,0.000033,0.000196,0.000196,0.000364,0.373577,-0.000280,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000191,0.000001,0.000001,0.000001,0.000002,0.000029,0.000010,0.000032,0.000048,0.000048,0.000345,0.373571,-0.000006,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000241,0.000002,0.000003,0.000002,0.000002,0.000027,0.000010,0.000032,0.000000,0.000000,0.000328,0.373659,0.000088,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000250,0.000003,0.000004,0.000003,0.000003,0.000026,0.000010,0.000032,0.000000,0.000000,0.000312,0.373753,0.000095,1.000000,0.000002 +52,2022-08-03 04:00:00,0.000199,0.000003,0.000002,0.000003,0.000003,0.000025,0.000010,0.000030,0.000000,0.000000,0.000297,0.373796,0.000043,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000272,0.000004,0.000004,0.000004,0.000003,0.000024,0.000010,0.000030,0.000000,0.000000,0.000284,0.373908,0.000111,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000207,0.000003,0.000002,0.000003,0.000003,0.000023,0.000010,0.000028,0.000000,0.000000,0.000271,0.373955,0.000047,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000003,0.000022,0.000010,0.000026,0.000000,0.000000,0.000260,0.373801,-0.000154,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000021,0.000010,0.000024,0.000000,0.000000,0.000249,0.373651,-0.000150,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000020,0.000010,0.000023,0.000000,0.000000,0.000238,0.373506,-0.000146,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000019,0.000009,0.000022,0.000000,0.000000,0.000229,0.373364,-0.000142,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000018,0.000009,0.000022,0.000000,0.000000,0.000219,0.373226,-0.000138,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000018,0.000009,0.000021,0.000000,0.000000,0.000211,0.373092,-0.000134,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000017,0.000009,0.000020,0.000000,0.000000,0.000202,0.372962,-0.000130,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000016,0.000008,0.000020,0.000129,0.000129,0.000194,0.372710,-0.000252,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000015,0.000007,0.000019,0.000374,0.000374,0.000186,0.372226,-0.000484,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000015,0.000006,0.000019,0.000541,0.000541,0.000177,0.371593,-0.000633,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000014,0.000005,0.000018,0.000659,0.000659,0.000168,0.370863,-0.000731,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000013,0.000003,0.000017,0.000643,0.000643,0.000158,0.370167,-0.000695,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000004,0.000012,0.000002,0.000016,0.000616,0.000616,0.000148,0.369579,-0.000589,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000060,0.000000,0.000000,0.000000,0.000004,0.000011,0.000001,0.000016,0.000558,0.000558,0.000138,0.369059,-0.000519,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000004,0.000011,0.000001,0.000015,0.000506,0.000506,0.000128,0.368608,-0.000451,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000004,0.000010,0.000000,0.000014,0.000410,0.000410,0.000118,0.368261,-0.000347,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000060,0.000000,0.000000,0.000000,0.000005,0.000009,0.000000,0.000014,0.000319,0.000319,0.000109,0.368002,-0.000260,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000060,0.000000,0.000000,0.000000,0.000005,0.000008,0.000000,0.000013,0.000209,0.000208,0.000101,0.367853,-0.000149,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000008,0.000000,0.000012,0.000062,0.000062,0.000093,0.367791,-0.000062,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000007,0.000000,0.000012,0.000000,0.000000,0.000086,0.367791,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000007,0.000000,0.000012,0.000000,0.000000,0.000079,0.367791,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000006,0.000000,0.000011,0.000000,0.000000,0.000073,0.367791,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000006,0.000000,0.000011,0.000000,0.000000,0.000067,0.367791,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000005,0.000000,0.000010,0.000000,0.000000,0.000062,0.367791,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000005,0.000000,0.000010,0.000000,0.000000,0.000058,0.367791,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000004,0.000000,0.000010,0.000000,0.000000,0.000053,0.367791,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000004,0.000000,0.000010,0.000000,0.000000,0.000049,0.367791,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000004,0.000000,0.000009,0.000000,0.000000,0.000045,0.367791,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000042,0.367791,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000039,0.367791,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000000,0.000000,0.000036,0.367791,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000125,0.000125,0.000033,0.367666,-0.000125,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000003,0.000000,0.000009,0.000371,0.000370,0.000030,0.367296,-0.000370,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000539,0.000537,0.000028,0.366759,-0.000537,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000659,0.000655,0.000026,0.366105,-0.000655,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000755,0.000748,0.000024,0.365357,-0.000748,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000702,0.000693,0.000022,0.364664,-0.000693,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000002,0.000000,0.000008,0.000637,0.000628,0.000020,0.364036,-0.000628,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000002,0.000000,0.000008,0.000562,0.000552,0.000019,0.363484,-0.000552,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000464,0.000454,0.000017,0.363030,-0.000454,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000360,0.000352,0.000016,0.362678,-0.000352,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000215,0.000210,0.000015,0.362468,-0.000210,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000066,0.000065,0.000014,0.362403,-0.000065,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000013,0.362403,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000012,0.362403,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000011,0.362403,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000010,0.362403,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000009,0.362403,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000008,0.362403,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000001,0.000000,0.000008,0.000000,0.000000,0.000008,0.362403,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000007,0.362403,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000007,0.362403,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000001,0.000000,0.000008,0.000000,0.000000,0.000006,0.362403,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000006,0.362403,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000005,0.362403,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000137,0.000134,0.000005,0.362269,-0.000134,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000374,0.000365,0.000004,0.361904,-0.000365,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000542,0.000527,0.000004,0.361377,-0.000527,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000662,0.000643,0.000004,0.360734,-0.000643,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000671,0.000650,0.000004,0.360084,-0.000650,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000631,0.000610,0.000003,0.359475,-0.000610,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000560,0.000539,0.000003,0.358936,-0.000539,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000009,0.000526,0.000505,0.000003,0.358431,-0.000505,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000447,0.000428,0.000003,0.358003,-0.000428,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000331,0.000317,0.000002,0.357686,-0.000317,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000205,0.000196,0.000002,0.357490,-0.000196,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000052,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000071,0.000070,0.000002,0.357472,-0.000018,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000062,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000002,0.357534,0.000062,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000052,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000002,0.357585,0.000052,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000052,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000002,0.357637,0.000052,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000075,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357711,0.000074,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000075,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000074,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000001,0.357786,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000120,0.000115,0.000001,0.357670,-0.000115,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000357,0.000341,0.000001,0.357329,-0.000341,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000526,0.000501,0.000001,0.356828,-0.000501,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000638,0.000607,0.000001,0.356220,-0.000607,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000728,0.000691,0.000001,0.355530,-0.000691,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000697,0.000659,0.000000,0.354870,-0.000659,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000637,0.000601,0.000000,0.354269,-0.000601,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000566,0.000532,0.000000,0.353737,-0.000532,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000469,0.000440,0.000000,0.353297,-0.000440,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000357,0.000334,0.000000,0.352963,-0.000334,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000212,0.000198,0.000000,0.352765,-0.000198,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000060,0.000056,0.000000,0.352708,-0.000056,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000000,0.000000,0.000000,0.352708,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000121,0.000113,0.000000,0.352596,-0.000113,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000356,0.000332,0.000000,0.352263,-0.000332,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000524,0.000488,0.000000,0.351775,-0.000488,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000643,0.000598,0.000000,0.351177,-0.000598,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000711,0.000660,0.000000,0.350517,-0.000660,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000662,0.000612,0.000000,0.349905,-0.000612,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000599,0.000552,0.000000,0.349353,-0.000552,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000540,0.000496,0.000000,0.348856,-0.000496,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000449,0.000412,0.000000,0.348445,-0.000412,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000000,0.000000,0.000011,0.000337,0.000309,0.000000,0.348135,-0.000309,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000175,0.000160,0.000000,0.347975,-0.000160,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000033,0.000030,0.000000,0.347945,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347945,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347946,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347946,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347947,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347947,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000000,0.000000,0.000000,0.347947,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000101,0.000092,0.000000,0.347856,-0.000092,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000342,0.000313,0.000000,0.347543,-0.000313,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000517,0.000471,0.000000,0.347071,-0.000471,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000638,0.000580,0.000000,0.346491,-0.000580,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000749,0.000680,0.000000,0.345812,-0.000680,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000693,0.000627,0.000000,0.345185,-0.000627,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000627,0.000566,0.000000,0.344619,-0.000566,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000000,0.000000,0.000012,0.000561,0.000505,0.000000,0.344114,-0.000505,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000462,0.000414,0.000000,0.343700,-0.000414,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000347,0.000311,0.000000,0.343388,-0.000311,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000194,0.000173,0.000000,0.343215,-0.000173,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000039,0.000035,0.000000,0.343181,-0.000035,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000000,0.000000,0.000000,0.343181,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000000,0.000000,0.000013,0.000110,0.000099,0.000000,0.343082,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620724.csv b/test/channel_loss/channel_forcing/et/cat-2620724.csv new file mode 100644 index 000000000..11c4466bd --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620724.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000816,0.000072,0.000816,0.000167,0.000167,0.009019,0.381054,-0.001710,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000070,0.000749,0.000056,0.000056,0.008340,0.379430,-0.001624,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000690,0.000069,0.000690,0.000000,0.000000,0.007720,0.377898,-0.001532,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000067,0.000635,0.000000,0.000000,0.007151,0.376402,-0.001496,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000586,0.000066,0.000586,0.000000,0.000000,0.006631,0.374941,-0.001462,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000542,0.000064,0.000542,0.000000,0.000000,0.006153,0.373513,-0.001428,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000501,0.000063,0.000501,0.000000,0.000000,0.005715,0.372118,-0.001395,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000464,0.000061,0.000464,0.000000,0.000000,0.005312,0.370756,-0.001362,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000430,0.000060,0.000431,0.000000,0.000000,0.004942,0.369425,-0.001331,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000399,0.000058,0.000400,0.000000,0.000000,0.004601,0.368125,-0.001300,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000371,0.000057,0.000372,0.000000,0.000000,0.004287,0.366855,-0.001270,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000345,0.000056,0.000346,0.000000,0.000000,0.003998,0.365614,-0.001241,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000321,0.000054,0.000322,0.000000,0.000000,0.003731,0.364402,-0.001212,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000299,0.000053,0.000300,0.000000,0.000000,0.003485,0.363219,-0.001184,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000279,0.000052,0.000280,0.000134,0.000134,0.003257,0.361932,-0.001287,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000261,0.000050,0.000262,0.000367,0.000367,0.003047,0.360446,-0.001485,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000244,0.000049,0.000245,0.000534,0.000534,0.002852,0.358833,-0.001614,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000047,0.000229,0.000647,0.000647,0.002671,0.357146,-0.001686,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000213,0.000045,0.000215,0.000554,0.000554,0.002503,0.355589,-0.001557,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000867,0.000006,0.000010,0.000006,0.000002,0.000200,0.000044,0.000207,0.000529,0.000529,0.002348,0.354930,-0.000659,1.000000,0.000005 +20,2022-08-01 20:00:00,0.001137,0.000023,0.000038,0.000023,0.000002,0.000187,0.000044,0.000213,0.000475,0.000475,0.002204,0.354575,-0.000355,1.000000,0.000019 +21,2022-08-01 21:00:00,0.001168,0.000041,0.000053,0.000041,0.000002,0.000176,0.000044,0.000219,0.000381,0.000381,0.002072,0.354336,-0.000239,1.000000,0.000031 +22,2022-08-01 22:00:00,0.001158,0.000054,0.000061,0.000054,0.000003,0.000165,0.000044,0.000222,0.000310,0.000310,0.001951,0.354154,-0.000182,1.000000,0.000038 +23,2022-08-01 23:00:00,0.001154,0.000065,0.000071,0.000065,0.000003,0.000156,0.000043,0.000224,0.000236,0.000236,0.001839,0.354035,-0.000119,1.000000,0.000044 +24,2022-08-02 00:00:00,0.001160,0.000077,0.000084,0.000077,0.000003,0.000147,0.000043,0.000226,0.000157,0.000157,0.001735,0.353989,-0.000046,1.000000,0.000052 +25,2022-08-02 01:00:00,0.001406,0.000115,0.000145,0.000115,0.000003,0.000139,0.000044,0.000257,0.000071,0.000071,0.001640,0.354208,0.000219,1.000000,0.000082 +26,2022-08-02 02:00:00,0.001413,0.000142,0.000162,0.000142,0.000004,0.000131,0.000044,0.000277,0.000000,0.000000,0.001553,0.354482,0.000274,1.000000,0.000102 +27,2022-08-02 03:00:00,0.001402,0.000157,0.000160,0.000157,0.000004,0.000124,0.000044,0.000285,0.000000,0.000000,0.001473,0.354742,0.000259,1.000000,0.000104 +28,2022-08-02 04:00:00,0.001393,0.000159,0.000158,0.000159,0.000004,0.000118,0.000044,0.000281,0.000000,0.000000,0.001400,0.354988,0.000247,1.000000,0.000103 +29,2022-08-02 05:00:00,0.001415,0.000161,0.000163,0.000161,0.000004,0.000112,0.000045,0.000277,0.000000,0.000000,0.001332,0.355246,0.000258,1.000000,0.000105 +30,2022-08-02 06:00:00,0.001406,0.000161,0.000161,0.000161,0.000005,0.000107,0.000045,0.000272,0.000000,0.000000,0.001270,0.355491,0.000245,1.000000,0.000105 +31,2022-08-02 07:00:00,0.000000,0.000073,0.000000,0.000073,0.000005,0.000102,0.000044,0.000180,0.000000,0.000000,0.001212,0.354513,-0.000977,1.000000,0.000032 +32,2022-08-02 08:00:00,0.000000,0.000032,0.000000,0.000032,0.000005,0.000097,0.000043,0.000135,0.000000,0.000000,0.001158,0.353559,-0.000955,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000093,0.000042,0.000098,0.000000,0.000000,0.001106,0.352626,-0.000933,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000089,0.000041,0.000095,0.000000,0.000000,0.001058,0.351715,-0.000911,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000085,0.000040,0.000091,0.000000,0.000000,0.001013,0.350825,-0.000890,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000082,0.000039,0.000088,0.000000,0.000000,0.000971,0.349955,-0.000869,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000219,0.000002,0.000004,0.000002,0.000007,0.000078,0.000038,0.000087,0.000000,0.000000,0.000931,0.349316,-0.000639,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000341,0.000003,0.000004,0.000003,0.000007,0.000075,0.000038,0.000085,0.000123,0.000123,0.000894,0.348691,-0.000625,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000133,0.000002,0.000000,0.000002,0.000007,0.000072,0.000037,0.000081,0.000313,0.000313,0.000859,0.347695,-0.000996,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000126,0.000001,0.000000,0.000001,0.000008,0.000069,0.000035,0.000078,0.000449,0.000449,0.000825,0.346582,-0.001113,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000153,0.000000,0.000000,0.000000,0.000008,0.000066,0.000034,0.000074,0.000550,0.000550,0.000793,0.345423,-0.001160,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000211,0.000000,0.000000,0.000000,0.000008,0.000064,0.000033,0.000072,0.000631,0.000631,0.000762,0.344268,-0.001155,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000061,0.000032,0.000070,0.000591,0.000591,0.000732,0.343035,-0.001233,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000059,0.000030,0.000068,0.000536,0.000536,0.000704,0.341884,-0.001151,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000057,0.000029,0.000066,0.000523,0.000523,0.000676,0.340772,-0.001112,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000010,0.000054,0.000028,0.000064,0.000432,0.000432,0.000650,0.339774,-0.000997,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000010,0.000052,0.000027,0.000062,0.000322,0.000322,0.000625,0.338908,-0.000866,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000010,0.000050,0.000027,0.000061,0.000194,0.000194,0.000601,0.338187,-0.000722,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000230,0.000002,0.000003,0.000002,0.000011,0.000048,0.000026,0.000061,0.000049,0.000049,0.000579,0.337784,-0.000403,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000234,0.000003,0.000005,0.000003,0.000011,0.000047,0.000026,0.000061,0.000000,0.000000,0.000558,0.337440,-0.000344,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000309,0.000006,0.000008,0.000006,0.000012,0.000045,0.000025,0.000063,0.000000,0.000000,0.000538,0.337174,-0.000265,1.000000,0.000005 +52,2022-08-03 04:00:00,0.000251,0.000006,0.000005,0.000006,0.000012,0.000043,0.000025,0.000061,0.000000,0.000000,0.000520,0.336861,-0.000313,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000361,0.000009,0.000011,0.000009,0.000012,0.000042,0.000025,0.000063,0.000000,0.000000,0.000503,0.336657,-0.000204,1.000000,0.000006 +54,2022-08-03 06:00:00,0.000273,0.000007,0.000006,0.000007,0.000013,0.000041,0.000025,0.000061,0.000000,0.000000,0.000487,0.336376,-0.000281,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000013,0.000039,0.000024,0.000056,0.000000,0.000000,0.000471,0.335841,-0.000535,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000013,0.000038,0.000023,0.000053,0.000000,0.000000,0.000457,0.335319,-0.000523,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000037,0.000023,0.000051,0.000000,0.000000,0.000443,0.334808,-0.000510,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000036,0.000022,0.000050,0.000000,0.000000,0.000429,0.334309,-0.000499,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000035,0.000022,0.000049,0.000000,0.000000,0.000416,0.333822,-0.000487,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000034,0.000021,0.000049,0.000000,0.000000,0.000404,0.333346,-0.000476,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000033,0.000021,0.000048,0.000000,0.000000,0.000392,0.332882,-0.000465,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000032,0.000020,0.000048,0.000128,0.000128,0.000381,0.332302,-0.000579,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000031,0.000019,0.000047,0.000370,0.000370,0.000369,0.331501,-0.000802,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000030,0.000018,0.000046,0.000534,0.000534,0.000358,0.330557,-0.000944,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000029,0.000017,0.000046,0.000652,0.000652,0.000346,0.329520,-0.001037,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000028,0.000016,0.000045,0.000640,0.000640,0.000334,0.328518,-0.001002,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000027,0.000015,0.000045,0.000618,0.000618,0.000323,0.327623,-0.000895,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000026,0.000014,0.000044,0.000557,0.000557,0.000311,0.326808,-0.000815,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000025,0.000014,0.000044,0.000506,0.000506,0.000300,0.326063,-0.000746,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000024,0.000013,0.000043,0.000410,0.000410,0.000289,0.325427,-0.000635,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000023,0.000012,0.000043,0.000319,0.000319,0.000278,0.324896,-0.000531,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000020,0.000022,0.000012,0.000042,0.000207,0.000207,0.000268,0.324486,-0.000410,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000021,0.000012,0.000042,0.000062,0.000062,0.000258,0.324166,-0.000320,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000021,0.000011,0.000041,0.000000,0.000000,0.000248,0.323913,-0.000252,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000020,0.000011,0.000041,0.000000,0.000000,0.000239,0.323667,-0.000246,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000019,0.000011,0.000041,0.000000,0.000000,0.000231,0.323426,-0.000241,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000019,0.000011,0.000040,0.000000,0.000000,0.000223,0.323191,-0.000235,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000018,0.000010,0.000040,0.000000,0.000000,0.000215,0.322961,-0.000230,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000017,0.000010,0.000040,0.000000,0.000000,0.000208,0.322737,-0.000224,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000017,0.000010,0.000040,0.000000,0.000000,0.000201,0.322518,-0.000219,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000016,0.000010,0.000040,0.000000,0.000000,0.000194,0.322304,-0.000214,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000016,0.000009,0.000040,0.000000,0.000000,0.000188,0.322094,-0.000209,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000015,0.000009,0.000039,0.000000,0.000000,0.000182,0.321890,-0.000204,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000015,0.000009,0.000039,0.000000,0.000000,0.000176,0.321691,-0.000200,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000014,0.000009,0.000039,0.000000,0.000000,0.000171,0.321496,-0.000195,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000014,0.000008,0.000039,0.000127,0.000127,0.000166,0.321182,-0.000314,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000013,0.000008,0.000039,0.000368,0.000368,0.000160,0.320639,-0.000543,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000013,0.000007,0.000039,0.000537,0.000537,0.000154,0.319944,-0.000695,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000012,0.000006,0.000039,0.000657,0.000657,0.000148,0.319147,-0.000797,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000012,0.000005,0.000039,0.000753,0.000753,0.000142,0.318275,-0.000871,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000011,0.000004,0.000039,0.000705,0.000705,0.000135,0.317471,-0.000805,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000004,0.000038,0.000637,0.000637,0.000128,0.316751,-0.000719,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000010,0.000003,0.000038,0.000554,0.000554,0.000121,0.316129,-0.000622,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000009,0.000002,0.000038,0.000456,0.000456,0.000114,0.315617,-0.000512,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000009,0.000002,0.000038,0.000356,0.000356,0.000107,0.315215,-0.000402,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000008,0.000002,0.000038,0.000213,0.000213,0.000101,0.314962,-0.000253,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000008,0.000002,0.000038,0.000066,0.000066,0.000094,0.314858,-0.000104,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000007,0.000002,0.000037,0.000000,0.000000,0.000089,0.314822,-0.000037,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000007,0.000002,0.000037,0.000000,0.000000,0.000083,0.314786,-0.000036,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000007,0.000002,0.000037,0.000000,0.000000,0.000078,0.314751,-0.000035,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000006,0.000002,0.000037,0.000000,0.000000,0.000074,0.314716,-0.000034,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000006,0.000002,0.000037,0.000000,0.000000,0.000069,0.314683,-0.000033,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000005,0.000001,0.000037,0.000000,0.000000,0.000066,0.314650,-0.000033,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000005,0.000001,0.000037,0.000000,0.000000,0.000062,0.314618,-0.000032,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000005,0.000001,0.000037,0.000000,0.000000,0.000058,0.314587,-0.000031,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000005,0.000001,0.000038,0.000000,0.000000,0.000055,0.314556,-0.000030,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000004,0.000001,0.000038,0.000000,0.000000,0.000052,0.314527,-0.000030,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000038,0.000000,0.000000,0.000049,0.314497,-0.000029,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000038,0.000000,0.000000,0.000047,0.314469,-0.000028,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000004,0.000001,0.000038,0.000138,0.000138,0.000044,0.314306,-0.000163,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000001,0.000038,0.000374,0.000374,0.000041,0.313917,-0.000389,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000000,0.000038,0.000540,0.000540,0.000038,0.313374,-0.000543,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000003,0.000000,0.000038,0.000659,0.000659,0.000035,0.312715,-0.000659,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000003,0.000000,0.000038,0.000669,0.000667,0.000033,0.312048,-0.000667,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000003,0.000000,0.000039,0.000634,0.000630,0.000030,0.311418,-0.000630,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000002,0.000000,0.000039,0.000565,0.000559,0.000028,0.310859,-0.000559,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000526,0.000519,0.000026,0.310340,-0.000519,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000440,0.000433,0.000024,0.309908,-0.000433,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000002,0.000000,0.000039,0.000329,0.000322,0.000022,0.309585,-0.000322,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000039,0.000202,0.000198,0.000020,0.309387,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000016,0.000000,0.000000,0.000000,0.000038,0.000002,0.000000,0.000040,0.000071,0.000070,0.000019,0.309333,-0.000054,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000016,0.000000,0.000000,0.000000,0.000038,0.000001,0.000000,0.000040,0.000000,0.000000,0.000017,0.309349,0.000016,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000016,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000000,0.000000,0.000016,0.309365,0.000016,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000016,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000000,0.000000,0.000015,0.309381,0.000016,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000017,0.000000,0.000000,0.000000,0.000039,0.000001,0.000000,0.000040,0.000000,0.000000,0.000014,0.309398,0.000017,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000017,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000013,0.309415,0.000017,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000012,0.309415,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000001,0.000000,0.000041,0.000000,0.000000,0.000011,0.309415,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000041,0.000000,0.000000,0.000010,0.309415,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000009,0.309415,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000008,0.309415,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000001,0.000000,0.000042,0.000000,0.000000,0.000008,0.309415,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000042,0.000000,0.000000,0.000007,0.309415,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000121,0.000119,0.000007,0.309297,-0.000119,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000355,0.000347,0.000006,0.308949,-0.000347,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000522,0.000509,0.000006,0.308440,-0.000509,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000638,0.000621,0.000005,0.307819,-0.000621,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000731,0.000709,0.000005,0.307110,-0.000709,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000702,0.000678,0.000004,0.306432,-0.000678,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000644,0.000620,0.000004,0.305812,-0.000620,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000565,0.000542,0.000004,0.305270,-0.000542,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000045,0.000465,0.000444,0.000003,0.304826,-0.000444,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000353,0.000337,0.000003,0.304489,-0.000337,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000209,0.000199,0.000003,0.304290,-0.000199,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000060,0.000057,0.000003,0.304232,-0.000057,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000046,0.000000,0.000000,0.000003,0.304232,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000002,0.304232,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000001,0.304232,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.304232,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.304232,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.304232,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000001,0.304232,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000120,0.000114,0.000001,0.304118,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000352,0.000334,0.000001,0.303784,-0.000334,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000519,0.000492,0.000001,0.303292,-0.000492,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000639,0.000604,0.000001,0.302688,-0.000604,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000050,0.000705,0.000665,0.000001,0.302023,-0.000665,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000663,0.000622,0.000001,0.301401,-0.000622,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000604,0.000565,0.000001,0.300837,-0.000565,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000537,0.000500,0.000001,0.300336,-0.000500,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000443,0.000411,0.000001,0.299925,-0.000411,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000334,0.000310,0.000000,0.299615,-0.000310,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000174,0.000161,0.000000,0.299454,-0.000161,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000032,0.000030,0.000000,0.299424,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.299424,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000101,0.000094,0.000000,0.299331,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000338,0.000312,0.000000,0.299018,-0.000312,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000513,0.000473,0.000000,0.298545,-0.000473,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000636,0.000585,0.000000,0.297960,-0.000585,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000741,0.000679,0.000000,0.297282,-0.000679,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000691,0.000631,0.000000,0.296651,-0.000631,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000625,0.000568,0.000000,0.296083,-0.000568,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000562,0.000509,0.000000,0.295574,-0.000509,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000458,0.000414,0.000000,0.295160,-0.000414,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000345,0.000311,0.000000,0.294849,-0.000311,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000191,0.000172,0.000000,0.294677,-0.000172,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000039,0.000035,0.000000,0.294642,-0.000035,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.294642,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000112,0.000100,0.000000,0.294542,-0.000100,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620725.csv b/test/channel_loss/channel_forcing/et/cat-2620725.csv new file mode 100644 index 000000000..13d9c7c14 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620725.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000000,0.000816,0.000073,0.000816,0.000177,0.000177,0.009018,0.375878,-0.002116,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000071,0.000749,0.000060,0.000060,0.008340,0.373841,-0.002037,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000690,0.000069,0.000690,0.000000,0.000000,0.007719,0.371908,-0.001933,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000068,0.000636,0.000000,0.000000,0.007151,0.370018,-0.001890,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000587,0.000066,0.000587,0.000000,0.000000,0.006631,0.368169,-0.001849,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000542,0.000065,0.000542,0.000000,0.000000,0.006154,0.366361,-0.001808,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000501,0.000063,0.000502,0.000000,0.000000,0.005716,0.364593,-0.001768,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000464,0.000062,0.000465,0.000000,0.000000,0.005314,0.362864,-0.001729,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000431,0.000061,0.000431,0.000000,0.000000,0.004944,0.361174,-0.001691,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000400,0.000059,0.000400,0.000000,0.000000,0.004604,0.359520,-0.001653,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000371,0.000058,0.000372,0.000000,0.000000,0.004291,0.357904,-0.001617,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000345,0.000057,0.000346,0.000000,0.000000,0.004002,0.356322,-0.001581,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000322,0.000055,0.000323,0.000000,0.000000,0.003736,0.354776,-0.001546,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000300,0.000054,0.000301,0.000000,0.000000,0.003490,0.353264,-0.001512,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000280,0.000053,0.000281,0.000140,0.000140,0.003263,0.351648,-0.001616,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000261,0.000051,0.000263,0.000376,0.000376,0.003054,0.349837,-0.001811,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000244,0.000050,0.000246,0.000540,0.000540,0.002859,0.347906,-0.001931,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000048,0.000231,0.000654,0.000654,0.002679,0.345906,-0.002000,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000214,0.000047,0.000216,0.000575,0.000575,0.002512,0.344027,-0.001879,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000658,0.000001,0.000001,0.000001,0.000003,0.000200,0.000046,0.000204,0.000540,0.000540,0.002357,0.342867,-0.001161,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000529,0.000000,0.000000,0.000000,0.000003,0.000188,0.000045,0.000191,0.000476,0.000476,0.002214,0.341669,-0.001198,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000524,0.000001,0.000002,0.000001,0.000003,0.000177,0.000044,0.000181,0.000380,0.000380,0.002082,0.340585,-0.001084,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000541,0.000003,0.000004,0.000003,0.000003,0.000166,0.000043,0.000172,0.000315,0.000315,0.001959,0.339603,-0.000982,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000510,0.000005,0.000006,0.000005,0.000004,0.000156,0.000042,0.000164,0.000246,0.000246,0.001845,0.338678,-0.000924,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000518,0.000008,0.000010,0.000008,0.000004,0.000147,0.000042,0.000159,0.000166,0.000166,0.001740,0.337856,-0.000822,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000729,0.000022,0.000034,0.000022,0.000004,0.000139,0.000041,0.000165,0.000076,0.000076,0.001642,0.337323,-0.000533,1.000000,0.000017 +26,2022-08-02 02:00:00,0.001104,0.000062,0.000094,0.000062,0.000005,0.000131,0.000041,0.000198,0.000000,0.000000,0.001553,0.337185,-0.000139,1.000000,0.000049 +27,2022-08-02 03:00:00,0.001128,0.000084,0.000098,0.000084,0.000005,0.000124,0.000041,0.000213,0.000000,0.000000,0.001470,0.337068,-0.000116,1.000000,0.000063 +28,2022-08-02 04:00:00,0.001128,0.000097,0.000098,0.000097,0.000005,0.000117,0.000041,0.000220,0.000000,0.000000,0.001393,0.336955,-0.000113,1.000000,0.000064 +29,2022-08-02 05:00:00,0.001155,0.000100,0.000102,0.000100,0.000006,0.000111,0.000041,0.000217,0.000000,0.000000,0.001323,0.336865,-0.000089,1.000000,0.000066 +30,2022-08-02 06:00:00,0.001168,0.000103,0.000105,0.000103,0.000006,0.000106,0.000041,0.000214,0.000000,0.000000,0.001258,0.336788,-0.000077,1.000000,0.000068 +31,2022-08-02 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000006,0.000101,0.000040,0.000154,0.000000,0.000000,0.001197,0.335674,-0.001115,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000007,0.000096,0.000039,0.000123,0.000000,0.000000,0.001140,0.334583,-0.001090,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000091,0.000038,0.000098,0.000000,0.000000,0.001087,0.333517,-0.001066,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000087,0.000037,0.000094,0.000000,0.000000,0.001038,0.332475,-0.001043,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000083,0.000037,0.000091,0.000000,0.000000,0.000991,0.331455,-0.001020,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000080,0.000036,0.000088,0.000000,0.000000,0.000947,0.330458,-0.000997,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000136,0.000001,0.000002,0.000001,0.000008,0.000076,0.000035,0.000085,0.000000,0.000000,0.000906,0.329615,-0.000843,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000300,0.000002,0.000002,0.000002,0.000009,0.000073,0.000034,0.000083,0.000126,0.000126,0.000868,0.328826,-0.000789,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000009,0.000070,0.000034,0.000080,0.000319,0.000319,0.000832,0.327770,-0.001056,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000187,0.000000,0.000000,0.000000,0.000010,0.000067,0.000033,0.000077,0.000454,0.000454,0.000798,0.326594,-0.001177,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000142,0.000000,0.000000,0.000000,0.000010,0.000064,0.000032,0.000074,0.000557,0.000557,0.000765,0.325298,-0.001295,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000011,0.000062,0.000031,0.000072,0.000644,0.000644,0.000734,0.324101,-0.001197,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000011,0.000059,0.000029,0.000070,0.000597,0.000597,0.000705,0.322684,-0.001417,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000002,0.000000,0.000000,0.000000,0.000011,0.000057,0.000028,0.000068,0.000546,0.000546,0.000676,0.321349,-0.001335,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000054,0.000027,0.000066,0.000525,0.000525,0.000649,0.320124,-0.001226,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000052,0.000026,0.000064,0.000442,0.000442,0.000624,0.319006,-0.001117,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000050,0.000026,0.000063,0.000330,0.000330,0.000599,0.318023,-0.000983,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000048,0.000025,0.000061,0.000201,0.000201,0.000576,0.317187,-0.000836,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000181,0.000001,0.000001,0.000001,0.000014,0.000046,0.000025,0.000061,0.000053,0.000053,0.000554,0.316629,-0.000558,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000189,0.000002,0.000003,0.000002,0.000014,0.000045,0.000024,0.000061,0.000000,0.000000,0.000534,0.316142,-0.000487,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000172,0.000002,0.000002,0.000002,0.000015,0.000043,0.000024,0.000060,0.000000,0.000000,0.000515,0.315648,-0.000493,1.000000,0.000002 +52,2022-08-03 04:00:00,0.000131,0.000002,0.000001,0.000002,0.000015,0.000042,0.000023,0.000058,0.000000,0.000000,0.000496,0.315128,-0.000521,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000224,0.000003,0.000004,0.000003,0.000015,0.000040,0.000023,0.000059,0.000000,0.000000,0.000479,0.314706,-0.000421,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000169,0.000003,0.000002,0.000003,0.000016,0.000039,0.000023,0.000057,0.000000,0.000000,0.000463,0.314242,-0.000464,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000016,0.000037,0.000022,0.000055,0.000000,0.000000,0.000448,0.313625,-0.000617,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000036,0.000022,0.000054,0.000000,0.000000,0.000433,0.313022,-0.000603,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000035,0.000021,0.000052,0.000000,0.000000,0.000420,0.312432,-0.000590,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000034,0.000021,0.000052,0.000000,0.000000,0.000406,0.311855,-0.000577,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000033,0.000020,0.000051,0.000000,0.000000,0.000394,0.311291,-0.000564,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000032,0.000020,0.000051,0.000000,0.000000,0.000382,0.310739,-0.000552,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000031,0.000019,0.000050,0.000000,0.000000,0.000370,0.310200,-0.000540,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000030,0.000019,0.000050,0.000135,0.000135,0.000359,0.309540,-0.000660,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000029,0.000018,0.000049,0.000379,0.000379,0.000348,0.308657,-0.000883,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000028,0.000017,0.000049,0.000541,0.000541,0.000337,0.307634,-0.001022,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000027,0.000016,0.000048,0.000661,0.000661,0.000326,0.306517,-0.001117,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000026,0.000015,0.000048,0.000664,0.000664,0.000315,0.305421,-0.001096,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000022,0.000025,0.000015,0.000048,0.000635,0.000635,0.000305,0.304440,-0.000981,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000026,0.000000,0.000000,0.000000,0.000023,0.000025,0.000014,0.000047,0.000561,0.000561,0.000294,0.303517,-0.000923,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000024,0.000013,0.000047,0.000518,0.000518,0.000284,0.302692,-0.000825,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000023,0.000013,0.000046,0.000427,0.000427,0.000274,0.301975,-0.000717,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000025,0.000000,0.000000,0.000000,0.000024,0.000022,0.000012,0.000046,0.000331,0.000331,0.000264,0.301330,-0.000645,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000025,0.000000,0.000000,0.000000,0.000025,0.000021,0.000012,0.000046,0.000212,0.000212,0.000254,0.300815,-0.000515,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000020,0.000011,0.000046,0.000067,0.000067,0.000245,0.300429,-0.000386,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000020,0.000011,0.000045,0.000000,0.000000,0.000237,0.300117,-0.000312,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000019,0.000011,0.000045,0.000000,0.000000,0.000229,0.299812,-0.000305,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000018,0.000011,0.000045,0.000000,0.000000,0.000221,0.299514,-0.000298,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000018,0.000010,0.000045,0.000000,0.000000,0.000214,0.299222,-0.000292,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000017,0.000010,0.000045,0.000000,0.000000,0.000207,0.298937,-0.000285,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000017,0.000010,0.000045,0.000000,0.000000,0.000200,0.298658,-0.000279,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000016,0.000010,0.000045,0.000000,0.000000,0.000194,0.298385,-0.000273,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000016,0.000010,0.000045,0.000000,0.000000,0.000187,0.298118,-0.000267,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000015,0.000009,0.000045,0.000000,0.000000,0.000182,0.297858,-0.000261,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000015,0.000009,0.000045,0.000000,0.000000,0.000176,0.297602,-0.000255,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000014,0.000009,0.000045,0.000000,0.000000,0.000171,0.297353,-0.000249,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000014,0.000009,0.000045,0.000000,0.000000,0.000166,0.297109,-0.000244,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000013,0.000008,0.000045,0.000132,0.000132,0.000161,0.296741,-0.000368,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000013,0.000008,0.000045,0.000376,0.000376,0.000156,0.296143,-0.000598,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000013,0.000007,0.000045,0.000544,0.000544,0.000151,0.295394,-0.000749,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000012,0.000007,0.000045,0.000666,0.000666,0.000145,0.294542,-0.000852,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000012,0.000006,0.000045,0.000769,0.000769,0.000140,0.293608,-0.000934,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000011,0.000005,0.000045,0.000702,0.000702,0.000134,0.292760,-0.000848,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000011,0.000005,0.000045,0.000646,0.000646,0.000128,0.291986,-0.000774,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000004,0.000045,0.000554,0.000554,0.000122,0.291319,-0.000667,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000004,0.000045,0.000471,0.000471,0.000115,0.290747,-0.000572,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000003,0.000045,0.000361,0.000361,0.000110,0.290296,-0.000451,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000003,0.000045,0.000219,0.000219,0.000104,0.289994,-0.000302,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000074,0.000074,0.000099,0.289841,-0.000153,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000000,0.000000,0.000094,0.289763,-0.000078,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000000,0.000000,0.000089,0.289686,-0.000076,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000000,0.000000,0.000085,0.289612,-0.000075,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000007,0.000003,0.000045,0.000000,0.000000,0.000080,0.289539,-0.000073,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000000,0.000000,0.000077,0.289467,-0.000071,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000000,0.000000,0.000073,0.289397,-0.000070,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000002,0.000046,0.000000,0.000000,0.000070,0.289329,-0.000068,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000002,0.000046,0.000000,0.000000,0.000067,0.289262,-0.000067,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000046,0.000000,0.000000,0.000064,0.289197,-0.000065,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000046,0.000000,0.000000,0.000061,0.289133,-0.000064,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000046,0.000000,0.000000,0.000058,0.289071,-0.000062,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000056,0.289010,-0.000061,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000004,0.000002,0.000047,0.000145,0.000145,0.000053,0.288809,-0.000201,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000002,0.000047,0.000381,0.000381,0.000051,0.288381,-0.000428,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000001,0.000047,0.000544,0.000544,0.000048,0.287803,-0.000578,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000001,0.000047,0.000666,0.000666,0.000045,0.287118,-0.000685,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000003,0.000000,0.000048,0.000677,0.000677,0.000042,0.286438,-0.000680,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000003,0.000000,0.000048,0.000642,0.000642,0.000038,0.285797,-0.000642,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000003,0.000000,0.000048,0.000563,0.000562,0.000035,0.285235,-0.000562,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000001,0.000000,0.000000,0.000000,0.000045,0.000003,0.000000,0.000048,0.000516,0.000513,0.000033,0.284724,-0.000512,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000048,0.000439,0.000435,0.000030,0.284290,-0.000433,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000001,0.000000,0.000000,0.000000,0.000046,0.000002,0.000000,0.000049,0.000328,0.000324,0.000028,0.283968,-0.000322,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000002,0.000000,0.000049,0.000204,0.000202,0.000026,0.283767,-0.000201,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000133,0.000000,0.000000,0.000000,0.000047,0.000002,0.000000,0.000049,0.000076,0.000076,0.000024,0.283824,0.000057,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000133,0.000001,0.000001,0.000001,0.000047,0.000002,0.000000,0.000050,0.000000,0.000000,0.000022,0.283955,0.000132,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000133,0.000001,0.000001,0.000001,0.000048,0.000002,0.000000,0.000051,0.000000,0.000000,0.000020,0.284087,0.000132,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000124,0.000001,0.000001,0.000001,0.000048,0.000002,0.000000,0.000051,0.000000,0.000000,0.000019,0.284210,0.000123,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000156,0.000002,0.000002,0.000002,0.000049,0.000001,0.000000,0.000052,0.000000,0.000000,0.000017,0.284364,0.000154,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000166,0.000002,0.000002,0.000002,0.000049,0.000001,0.000000,0.000052,0.000000,0.000000,0.000016,0.284528,0.000164,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000049,0.000001,0.000000,0.000051,0.000000,0.000000,0.000015,0.284528,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000000,0.000000,0.000014,0.284528,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000000,0.000000,0.000013,0.284528,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000012,0.284528,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000011,0.284528,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000010,0.284528,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000052,0.000000,0.000000,0.000009,0.284528,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000127,0.000126,0.000008,0.284402,-0.000126,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000364,0.000359,0.000008,0.284043,-0.000359,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000053,0.000529,0.000522,0.000007,0.283521,-0.000522,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000646,0.000636,0.000007,0.282886,-0.000636,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000745,0.000730,0.000006,0.282156,-0.000730,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000711,0.000694,0.000006,0.281462,-0.000694,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000638,0.000620,0.000005,0.280843,-0.000620,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000566,0.000547,0.000005,0.280296,-0.000547,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000475,0.000457,0.000004,0.279838,-0.000457,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000358,0.000344,0.000004,0.279494,-0.000344,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000214,0.000205,0.000004,0.279289,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000066,0.000063,0.000003,0.279226,-0.000063,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000003,0.279226,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.279226,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.279226,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.279226,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000002,0.279226,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000000,0.000000,0.000001,0.279226,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000001,0.279226,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000126,0.000120,0.000001,0.279106,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000361,0.000345,0.000001,0.278761,-0.000345,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000526,0.000502,0.000001,0.278259,-0.000502,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000648,0.000616,0.000001,0.277642,-0.000616,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000724,0.000686,0.000001,0.276956,-0.000686,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000676,0.000638,0.000001,0.276318,-0.000638,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000606,0.000569,0.000001,0.275749,-0.000569,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000545,0.000510,0.000001,0.275238,-0.000510,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000456,0.000425,0.000001,0.274813,-0.000425,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000344,0.000320,0.000001,0.274493,-0.000320,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000180,0.000167,0.000001,0.274326,-0.000167,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000035,0.000033,0.000001,0.274293,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.274293,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000106,0.000098,0.000000,0.274195,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000345,0.000320,0.000000,0.273875,-0.000320,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000518,0.000479,0.000000,0.273396,-0.000479,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000640,0.000590,0.000000,0.272806,-0.000590,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000747,0.000686,0.000000,0.272120,-0.000686,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000696,0.000636,0.000000,0.271484,-0.000636,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000625,0.000569,0.000000,0.270915,-0.000569,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000561,0.000509,0.000000,0.270406,-0.000509,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000469,0.000424,0.000000,0.269982,-0.000424,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000353,0.000318,0.000000,0.269664,-0.000318,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000199,0.000179,0.000000,0.269485,-0.000179,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000046,0.000041,0.000000,0.269444,-0.000041,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.269444,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000117,0.000105,0.000000,0.269339,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620726.csv b/test/channel_loss/channel_forcing/et/cat-2620726.csv new file mode 100644 index 000000000..b7315718f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620726.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000817,0.000088,0.000817,0.000173,0.000173,0.009032,0.375055,-0.002192,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000752,0.000086,0.000752,0.000058,0.000058,0.008366,0.372962,-0.002093,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000693,0.000084,0.000693,0.000000,0.000000,0.007757,0.370973,-0.001989,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000640,0.000082,0.000640,0.000000,0.000000,0.007199,0.369028,-0.001945,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000592,0.000080,0.000592,0.000000,0.000000,0.006687,0.367125,-0.001902,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000548,0.000078,0.000548,0.000000,0.000000,0.006218,0.365265,-0.001860,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000508,0.000077,0.000508,0.000000,0.000000,0.005787,0.363446,-0.001819,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000471,0.000075,0.000472,0.000000,0.000000,0.005391,0.361667,-0.001779,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000438,0.000073,0.000438,0.000000,0.000000,0.005026,0.359928,-0.001739,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000407,0.000072,0.000408,0.000000,0.000000,0.004690,0.358228,-0.001701,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000379,0.000070,0.000380,0.000000,0.000000,0.004381,0.356564,-0.001663,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000354,0.000069,0.000355,0.000000,0.000000,0.004096,0.354938,-0.001626,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000330,0.000067,0.000331,0.000000,0.000000,0.003833,0.353348,-0.001590,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000309,0.000066,0.000310,0.000000,0.000000,0.003590,0.351793,-0.001555,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000289,0.000064,0.000290,0.000136,0.000136,0.003365,0.350139,-0.001654,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000270,0.000062,0.000272,0.000377,0.000377,0.003157,0.348287,-0.001852,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000253,0.000060,0.000255,0.000548,0.000548,0.002964,0.346308,-0.001978,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000238,0.000058,0.000240,0.000665,0.000665,0.002784,0.344259,-0.002050,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000223,0.000057,0.000225,0.000576,0.000576,0.002618,0.342341,-0.001917,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001054,0.000010,0.000018,0.000010,0.000003,0.000210,0.000056,0.000222,0.000552,0.000552,0.002464,0.341504,-0.000837,1.000000,0.000008 +20,2022-08-01 20:00:00,0.001096,0.000019,0.000026,0.000019,0.000003,0.000197,0.000055,0.000219,0.000486,0.000486,0.002322,0.340783,-0.000721,1.000000,0.000015 +21,2022-08-01 21:00:00,0.001096,0.000029,0.000034,0.000029,0.000003,0.000186,0.000055,0.000218,0.000389,0.000389,0.002190,0.340164,-0.000619,1.000000,0.000021 +22,2022-08-01 22:00:00,0.001096,0.000037,0.000042,0.000037,0.000003,0.000175,0.000054,0.000215,0.000316,0.000316,0.002069,0.339623,-0.000541,1.000000,0.000026 +23,2022-08-01 23:00:00,0.001096,0.000044,0.000049,0.000044,0.000004,0.000166,0.000054,0.000214,0.000245,0.000245,0.001957,0.339156,-0.000467,1.000000,0.000030 +24,2022-08-02 00:00:00,0.001092,0.000053,0.000058,0.000053,0.000004,0.000157,0.000053,0.000213,0.000163,0.000163,0.001853,0.338766,-0.000389,1.000000,0.000036 +25,2022-08-02 01:00:00,0.001337,0.000082,0.000105,0.000082,0.000004,0.000149,0.000053,0.000235,0.000074,0.000074,0.001757,0.338667,-0.000100,1.000000,0.000059 +26,2022-08-02 02:00:00,0.001355,0.000104,0.000120,0.000104,0.000005,0.000141,0.000053,0.000250,0.000000,0.000000,0.001669,0.338644,-0.000022,1.000000,0.000075 +27,2022-08-02 03:00:00,0.001346,0.000116,0.000119,0.000116,0.000005,0.000134,0.000053,0.000256,0.000000,0.000000,0.001588,0.338615,-0.000029,1.000000,0.000078 +28,2022-08-02 04:00:00,0.001346,0.000119,0.000119,0.000119,0.000005,0.000128,0.000053,0.000252,0.000000,0.000000,0.001514,0.338587,-0.000028,1.000000,0.000077 +29,2022-08-02 05:00:00,0.001354,0.000120,0.000120,0.000120,0.000006,0.000122,0.000053,0.000247,0.000000,0.000000,0.001445,0.338565,-0.000021,1.000000,0.000078 +30,2022-08-02 06:00:00,0.001353,0.000120,0.000120,0.000120,0.000006,0.000116,0.000053,0.000242,0.000000,0.000000,0.001381,0.338543,-0.000022,1.000000,0.000078 +31,2022-08-02 07:00:00,0.000000,0.000054,0.000000,0.000054,0.000006,0.000111,0.000052,0.000172,0.000000,0.000000,0.001322,0.337316,-0.001227,1.000000,0.000024 +32,2022-08-02 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000007,0.000107,0.000051,0.000137,0.000000,0.000000,0.001266,0.336116,-0.001200,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000102,0.000050,0.000109,0.000000,0.000000,0.001213,0.334943,-0.001173,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000098,0.000048,0.000105,0.000000,0.000000,0.001164,0.333796,-0.001147,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000094,0.000047,0.000102,0.000000,0.000000,0.001117,0.332674,-0.001122,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000090,0.000046,0.000099,0.000000,0.000000,0.001073,0.331577,-0.001097,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000225,0.000002,0.000004,0.000002,0.000009,0.000087,0.000045,0.000097,0.000000,0.000000,0.001032,0.330721,-0.000856,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000325,0.000002,0.000003,0.000002,0.000009,0.000083,0.000045,0.000095,0.000125,0.000125,0.000993,0.329860,-0.000861,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000138,0.000001,0.000000,0.000001,0.000010,0.000080,0.000043,0.000091,0.000322,0.000322,0.000956,0.328646,-0.001214,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000126,0.000001,0.000000,0.000001,0.000010,0.000077,0.000042,0.000088,0.000461,0.000461,0.000921,0.327310,-0.001335,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000142,0.000000,0.000000,0.000000,0.000010,0.000074,0.000041,0.000085,0.000566,0.000566,0.000888,0.325918,-0.001392,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000205,0.000000,0.000000,0.000000,0.000011,0.000072,0.000040,0.000083,0.000652,0.000652,0.000856,0.324534,-0.001384,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000069,0.000038,0.000080,0.000605,0.000605,0.000825,0.323087,-0.001446,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000065,0.000000,0.000000,0.000000,0.000012,0.000067,0.000037,0.000078,0.000558,0.000558,0.000795,0.321720,-0.001367,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000075,0.000000,0.000000,0.000000,0.000012,0.000064,0.000036,0.000076,0.000536,0.000536,0.000766,0.320415,-0.001305,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000080,0.000000,0.000000,0.000000,0.000013,0.000062,0.000034,0.000075,0.000444,0.000444,0.000739,0.319234,-0.001181,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000086,0.000000,0.000000,0.000000,0.000013,0.000060,0.000034,0.000073,0.000332,0.000332,0.000713,0.318194,-0.001040,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000090,0.000000,0.000000,0.000000,0.000014,0.000058,0.000033,0.000071,0.000201,0.000201,0.000688,0.317310,-0.000884,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000352,0.000003,0.000006,0.000003,0.000014,0.000056,0.000032,0.000073,0.000052,0.000052,0.000664,0.316840,-0.000469,1.000000,0.000003 +50,2022-08-03 02:00:00,0.000355,0.000006,0.000008,0.000006,0.000015,0.000054,0.000032,0.000075,0.000000,0.000000,0.000642,0.316433,-0.000407,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000355,0.000008,0.000008,0.000008,0.000015,0.000052,0.000031,0.000075,0.000000,0.000000,0.000622,0.316034,-0.000398,1.000000,0.000005 +52,2022-08-03 04:00:00,0.000255,0.000006,0.000004,0.000006,0.000016,0.000050,0.000031,0.000072,0.000000,0.000000,0.000602,0.315551,-0.000484,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000355,0.000007,0.000008,0.000007,0.000016,0.000049,0.000031,0.000072,0.000000,0.000000,0.000584,0.315172,-0.000379,1.000000,0.000005 +54,2022-08-03 06:00:00,0.000255,0.000005,0.000004,0.000005,0.000017,0.000047,0.000030,0.000069,0.000000,0.000000,0.000567,0.314708,-0.000464,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000017,0.000046,0.000030,0.000066,0.000000,0.000000,0.000550,0.314009,-0.000699,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000018,0.000045,0.000029,0.000063,0.000000,0.000000,0.000534,0.313325,-0.000684,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000043,0.000028,0.000061,0.000000,0.000000,0.000519,0.312656,-0.000668,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000042,0.000028,0.000061,0.000000,0.000000,0.000505,0.312003,-0.000654,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000041,0.000027,0.000060,0.000000,0.000000,0.000491,0.311364,-0.000639,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000040,0.000026,0.000059,0.000000,0.000000,0.000477,0.310739,-0.000625,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000039,0.000026,0.000059,0.000000,0.000000,0.000464,0.310128,-0.000611,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000038,0.000025,0.000058,0.000133,0.000133,0.000451,0.309400,-0.000727,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000037,0.000024,0.000058,0.000380,0.000380,0.000439,0.308447,-0.000953,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000036,0.000023,0.000057,0.000547,0.000547,0.000426,0.307352,-0.001095,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000035,0.000022,0.000057,0.000672,0.000672,0.000414,0.306159,-0.001193,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000034,0.000021,0.000056,0.000667,0.000667,0.000401,0.304998,-0.001162,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000066,0.000000,0.000000,0.000000,0.000023,0.000032,0.000020,0.000056,0.000644,0.000644,0.000389,0.303948,-0.001049,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000031,0.000019,0.000055,0.000574,0.000574,0.000376,0.302989,-0.000960,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000066,0.000000,0.000000,0.000000,0.000024,0.000030,0.000018,0.000055,0.000523,0.000523,0.000364,0.302102,-0.000887,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000073,0.000000,0.000000,0.000000,0.000025,0.000029,0.000017,0.000054,0.000426,0.000426,0.000352,0.301337,-0.000765,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000080,0.000000,0.000000,0.000000,0.000025,0.000028,0.000017,0.000054,0.000331,0.000331,0.000340,0.300689,-0.000648,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000026,0.000027,0.000016,0.000053,0.000214,0.000214,0.000329,0.300174,-0.000515,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000027,0.000016,0.000053,0.000066,0.000066,0.000318,0.299732,-0.000442,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000026,0.000016,0.000053,0.000000,0.000000,0.000308,0.299365,-0.000367,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000025,0.000015,0.000052,0.000000,0.000000,0.000298,0.299005,-0.000359,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000024,0.000015,0.000052,0.000000,0.000000,0.000289,0.298654,-0.000351,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000023,0.000014,0.000052,0.000000,0.000000,0.000280,0.298311,-0.000343,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000023,0.000014,0.000052,0.000000,0.000000,0.000272,0.297975,-0.000336,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000022,0.000014,0.000052,0.000000,0.000000,0.000264,0.297646,-0.000328,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000014,0.000051,0.000000,0.000000,0.000256,0.297325,-0.000321,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000021,0.000013,0.000051,0.000000,0.000000,0.000248,0.297011,-0.000314,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000020,0.000013,0.000051,0.000000,0.000000,0.000241,0.296704,-0.000307,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000020,0.000013,0.000051,0.000000,0.000000,0.000234,0.296404,-0.000300,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000019,0.000012,0.000051,0.000000,0.000000,0.000228,0.296110,-0.000294,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000018,0.000012,0.000051,0.000000,0.000000,0.000221,0.295823,-0.000287,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000018,0.000012,0.000051,0.000129,0.000129,0.000215,0.295416,-0.000407,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000017,0.000011,0.000051,0.000377,0.000377,0.000209,0.294776,-0.000640,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000017,0.000010,0.000051,0.000550,0.000550,0.000202,0.293980,-0.000796,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000016,0.000009,0.000051,0.000675,0.000675,0.000196,0.293080,-0.000900,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000016,0.000009,0.000051,0.000777,0.000777,0.000188,0.292101,-0.000980,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000015,0.000008,0.000051,0.000729,0.000729,0.000181,0.291189,-0.000911,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000014,0.000007,0.000051,0.000654,0.000654,0.000173,0.290372,-0.000818,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000014,0.000006,0.000051,0.000562,0.000562,0.000166,0.289662,-0.000710,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000013,0.000006,0.000050,0.000469,0.000469,0.000158,0.289059,-0.000602,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000013,0.000005,0.000050,0.000365,0.000365,0.000151,0.288571,-0.000488,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000012,0.000005,0.000050,0.000219,0.000219,0.000144,0.288237,-0.000334,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000011,0.000005,0.000050,0.000071,0.000071,0.000137,0.288055,-0.000182,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000011,0.000005,0.000050,0.000000,0.000000,0.000131,0.287946,-0.000109,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000004,0.000050,0.000000,0.000000,0.000125,0.287840,-0.000106,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000004,0.000050,0.000000,0.000000,0.000119,0.287736,-0.000104,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000010,0.000004,0.000050,0.000000,0.000000,0.000114,0.287634,-0.000102,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000009,0.000004,0.000050,0.000000,0.000000,0.000109,0.287535,-0.000099,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000009,0.000004,0.000050,0.000000,0.000000,0.000105,0.287438,-0.000097,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000008,0.000004,0.000051,0.000000,0.000000,0.000100,0.287343,-0.000095,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000008,0.000004,0.000051,0.000000,0.000000,0.000096,0.287250,-0.000093,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000008,0.000004,0.000051,0.000000,0.000000,0.000092,0.287159,-0.000091,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000007,0.000004,0.000051,0.000000,0.000000,0.000089,0.287070,-0.000089,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000007,0.000004,0.000051,0.000000,0.000000,0.000085,0.286983,-0.000087,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000007,0.000004,0.000051,0.000000,0.000000,0.000082,0.286898,-0.000085,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000007,0.000003,0.000052,0.000141,0.000141,0.000079,0.286677,-0.000221,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000003,0.000052,0.000383,0.000383,0.000075,0.286224,-0.000453,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000002,0.000052,0.000553,0.000553,0.000072,0.285615,-0.000609,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000002,0.000052,0.000677,0.000677,0.000068,0.284898,-0.000717,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000005,0.000001,0.000052,0.000688,0.000688,0.000064,0.284187,-0.000712,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000005,0.000000,0.000052,0.000655,0.000655,0.000059,0.283523,-0.000663,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000005,0.000000,0.000052,0.000582,0.000582,0.000054,0.282942,-0.000582,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000004,0.000000,0.000052,0.000536,0.000536,0.000050,0.282406,-0.000536,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000004,0.000000,0.000053,0.000448,0.000446,0.000046,0.281960,-0.000446,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000004,0.000000,0.000053,0.000333,0.000331,0.000043,0.281630,-0.000331,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000206,0.000204,0.000040,0.281426,-0.000204,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000012,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000075,0.000074,0.000037,0.281364,-0.000062,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000012,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000000,0.000000,0.000034,0.281375,0.000011,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000012,0.000000,0.000000,0.000000,0.000051,0.000003,0.000000,0.000054,0.000000,0.000000,0.000031,0.281387,0.000011,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000012,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000054,0.000000,0.000000,0.000029,0.281398,0.000011,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000029,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000027,0.281427,0.000028,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000029,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000024,0.281455,0.000028,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000055,0.000000,0.000000,0.000023,0.281455,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000055,0.000000,0.000000,0.000021,0.281455,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000055,0.000000,0.000000,0.000019,0.281455,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000018,0.281455,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000056,0.000000,0.000000,0.000016,0.281455,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000015,0.281455,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000014,0.281455,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000057,0.000124,0.000123,0.000013,0.281332,-0.000123,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000364,0.000360,0.000012,0.280972,-0.000360,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000535,0.000528,0.000011,0.280445,-0.000528,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000656,0.000646,0.000010,0.279799,-0.000646,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000755,0.000740,0.000009,0.279059,-0.000740,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000724,0.000707,0.000009,0.278353,-0.000707,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000058,0.000659,0.000640,0.000008,0.277712,-0.000640,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000576,0.000557,0.000007,0.277155,-0.000557,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000059,0.000476,0.000459,0.000007,0.276696,-0.000459,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000059,0.000362,0.000348,0.000006,0.276348,-0.000348,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000214,0.000206,0.000006,0.276143,-0.000206,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000064,0.000062,0.000005,0.276081,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000005,0.276081,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000000,0.000000,0.000005,0.276081,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000004,0.276081,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000004,0.276081,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000000,0.000000,0.000004,0.276081,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000003,0.276081,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000003,0.276081,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000003,0.276081,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000003,0.276081,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.276081,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.276081,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.276081,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000124,0.000118,0.000002,0.275963,-0.000118,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000362,0.000347,0.000002,0.275616,-0.000347,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000532,0.000508,0.000002,0.275107,-0.000508,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000658,0.000626,0.000001,0.274481,-0.000626,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000728,0.000691,0.000001,0.273791,-0.000691,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000686,0.000648,0.000001,0.273143,-0.000648,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000621,0.000584,0.000001,0.272559,-0.000584,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000550,0.000515,0.000001,0.272044,-0.000515,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000454,0.000424,0.000001,0.271620,-0.000424,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000343,0.000320,0.000001,0.271300,-0.000320,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000179,0.000166,0.000001,0.271133,-0.000166,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000034,0.000032,0.000001,0.271102,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.271102,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.271102,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.271102,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.271102,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.271104,0.000003,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000004,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271108,0.000004,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271112,0.000004,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271116,0.000004,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000004,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271120,0.000004,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271123,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271125,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271125,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000104,0.000096,0.000000,0.271029,-0.000096,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000347,0.000322,0.000000,0.270707,-0.000322,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000527,0.000488,0.000000,0.270218,-0.000488,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000654,0.000604,0.000000,0.269614,-0.000604,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000764,0.000702,0.000000,0.268912,-0.000702,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000714,0.000653,0.000000,0.268259,-0.000653,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000644,0.000587,0.000000,0.267672,-0.000587,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000575,0.000522,0.000000,0.267150,-0.000522,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000471,0.000426,0.000000,0.266723,-0.000426,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000356,0.000321,0.000000,0.266402,-0.000321,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000198,0.000178,0.000000,0.266224,-0.000178,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000043,0.000039,0.000000,0.266185,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.266185,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.266185,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.266185,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.266185,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266186,0.000001,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266188,0.000003,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266192,0.000004,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266195,0.000003,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266197,0.000002,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266197,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266197,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266197,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000114,0.000103,0.000000,0.266094,-0.000103,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620727.csv b/test/channel_loss/channel_forcing/et/cat-2620727.csv new file mode 100644 index 000000000..214dd1d06 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620727.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.000813,0.000045,0.000813,0.000191,0.000191,0.008993,0.378137,-0.001032,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000044,0.000745,0.000067,0.000067,0.008292,0.377243,-0.000894,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000683,0.000043,0.000683,0.000000,0.000000,0.007652,0.376437,-0.000806,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000042,0.000628,0.000000,0.000000,0.007066,0.375651,-0.000786,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000041,0.000577,0.000000,0.000000,0.006530,0.374886,-0.000765,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000531,0.000040,0.000531,0.000000,0.000000,0.006039,0.374140,-0.000746,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000489,0.000039,0.000490,0.000000,0.000000,0.005588,0.373413,-0.000727,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000451,0.000038,0.000452,0.000000,0.000000,0.005174,0.372705,-0.000708,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000417,0.000037,0.000417,0.000000,0.000000,0.004794,0.372015,-0.000690,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000385,0.000036,0.000385,0.000000,0.000000,0.004445,0.371342,-0.000672,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000356,0.000035,0.000357,0.000000,0.000000,0.004123,0.370687,-0.000655,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000330,0.000034,0.000330,0.000000,0.000000,0.003827,0.370049,-0.000638,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000306,0.000033,0.000306,0.000000,0.000000,0.003555,0.369427,-0.000622,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000283,0.000032,0.000284,0.000000,0.000000,0.003304,0.368821,-0.000606,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000263,0.000031,0.000264,0.000140,0.000140,0.003072,0.368094,-0.000727,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000244,0.000030,0.000245,0.000383,0.000383,0.002858,0.367148,-0.000945,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000227,0.000028,0.000228,0.000574,0.000574,0.002660,0.366041,-0.001107,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000211,0.000027,0.000212,0.000736,0.000736,0.002475,0.364804,-0.001237,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000196,0.000025,0.000197,0.000667,0.000667,0.002305,0.363667,-0.001138,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000507,0.000000,0.000000,0.000000,0.000001,0.000182,0.000024,0.000183,0.000659,0.000659,0.002147,0.363059,-0.000607,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000525,0.000000,0.000000,0.000000,0.000001,0.000170,0.000024,0.000171,0.000590,0.000590,0.002001,0.362553,-0.000506,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000491,0.000000,0.000000,0.000000,0.000001,0.000158,0.000023,0.000159,0.000435,0.000435,0.001866,0.362178,-0.000375,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000532,0.000001,0.000002,0.000001,0.000001,0.000147,0.000023,0.000150,0.000362,0.000362,0.001741,0.361922,-0.000257,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000648,0.000005,0.000008,0.000005,0.000001,0.000137,0.000023,0.000144,0.000272,0.000272,0.001626,0.361866,-0.000055,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000607,0.000008,0.000010,0.000008,0.000002,0.000128,0.000023,0.000138,0.000188,0.000188,0.001521,0.361852,-0.000014,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000899,0.000025,0.000038,0.000025,0.000002,0.000120,0.000023,0.000147,0.000083,0.000083,0.001424,0.362198,0.000346,1.000000,0.000019 +26,2022-08-02 02:00:00,0.000951,0.000039,0.000051,0.000039,0.000002,0.000112,0.000024,0.000154,0.000000,0.000000,0.001335,0.362655,0.000456,1.000000,0.000030 +27,2022-08-02 03:00:00,0.000989,0.000050,0.000055,0.000050,0.000002,0.000106,0.000024,0.000158,0.000000,0.000000,0.001254,0.363131,0.000477,1.000000,0.000035 +28,2022-08-02 04:00:00,0.000991,0.000054,0.000055,0.000054,0.000002,0.000099,0.000025,0.000156,0.000000,0.000000,0.001179,0.363599,0.000467,1.000000,0.000036 +29,2022-08-02 05:00:00,0.001023,0.000057,0.000059,0.000057,0.000002,0.000093,0.000026,0.000153,0.000000,0.000000,0.001111,0.364081,0.000483,1.000000,0.000038 +30,2022-08-02 06:00:00,0.001027,0.000058,0.000059,0.000058,0.000002,0.000088,0.000026,0.000149,0.000000,0.000000,0.001050,0.364555,0.000473,1.000000,0.000038 +31,2022-08-02 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000002,0.000083,0.000026,0.000112,0.000000,0.000000,0.000992,0.364073,-0.000481,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000003,0.000079,0.000025,0.000093,0.000000,0.000000,0.000938,0.363604,-0.000469,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000075,0.000024,0.000077,0.000000,0.000000,0.000888,0.363147,-0.000457,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000071,0.000024,0.000073,0.000000,0.000000,0.000841,0.362702,-0.000445,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000067,0.000023,0.000070,0.000000,0.000000,0.000797,0.362268,-0.000434,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000063,0.000023,0.000067,0.000000,0.000000,0.000757,0.361845,-0.000423,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000016,0.000000,0.000000,0.000000,0.000003,0.000060,0.000022,0.000064,0.000000,0.000000,0.000718,0.361448,-0.000397,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000043,0.000000,0.000000,0.000000,0.000004,0.000057,0.000021,0.000061,0.000121,0.000121,0.000682,0.360969,-0.000479,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000042,0.000000,0.000000,0.000000,0.000004,0.000054,0.000020,0.000058,0.000327,0.000327,0.000649,0.360302,-0.000668,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000034,0.000000,0.000000,0.000000,0.000004,0.000052,0.000019,0.000055,0.000489,0.000489,0.000616,0.359486,-0.000816,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000010,0.000000,0.000000,0.000000,0.000004,0.000049,0.000018,0.000053,0.000629,0.000629,0.000585,0.358531,-0.000955,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000027,0.000000,0.000000,0.000000,0.000004,0.000046,0.000016,0.000051,0.000735,0.000735,0.000555,0.357514,-0.001017,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000010,0.000000,0.000000,0.000000,0.000004,0.000044,0.000015,0.000048,0.000714,0.000714,0.000526,0.356527,-0.000987,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000004,0.000042,0.000014,0.000046,0.000659,0.000659,0.000498,0.355619,-0.000908,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000010,0.000000,0.000000,0.000000,0.000005,0.000039,0.000013,0.000044,0.000594,0.000594,0.000472,0.354797,-0.000822,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000010,0.000000,0.000000,0.000000,0.000005,0.000037,0.000012,0.000042,0.000474,0.000474,0.000446,0.354113,-0.000684,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000005,0.000035,0.000011,0.000040,0.000360,0.000360,0.000422,0.353558,-0.000555,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000005,0.000033,0.000010,0.000038,0.000217,0.000217,0.000399,0.353157,-0.000401,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000064,0.000000,0.000000,0.000000,0.000005,0.000032,0.000010,0.000037,0.000062,0.000062,0.000377,0.352969,-0.000188,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000064,0.000000,0.000000,0.000000,0.000006,0.000030,0.000010,0.000036,0.000000,0.000000,0.000357,0.352846,-0.000123,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000064,0.000000,0.000000,0.000000,0.000006,0.000028,0.000010,0.000034,0.000000,0.000000,0.000339,0.352727,-0.000120,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000033,0.000000,0.000000,0.000000,0.000006,0.000027,0.000010,0.000033,0.000000,0.000000,0.000322,0.352580,-0.000147,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000064,0.000000,0.000000,0.000000,0.000006,0.000025,0.000009,0.000032,0.000000,0.000000,0.000305,0.352467,-0.000113,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000060,0.000000,0.000000,0.000000,0.000006,0.000024,0.000009,0.000031,0.000000,0.000000,0.000290,0.352353,-0.000114,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000010,0.000000,0.000000,0.000000,0.000006,0.000023,0.000009,0.000030,0.000000,0.000000,0.000276,0.352193,-0.000159,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000010,0.000000,0.000000,0.000000,0.000007,0.000022,0.000009,0.000029,0.000000,0.000000,0.000263,0.352038,-0.000155,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000011,0.000000,0.000000,0.000000,0.000007,0.000021,0.000009,0.000028,0.000000,0.000000,0.000251,0.351888,-0.000150,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000012,0.000000,0.000000,0.000000,0.000007,0.000020,0.000008,0.000027,0.000000,0.000000,0.000239,0.351743,-0.000145,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000013,0.000000,0.000000,0.000000,0.000007,0.000019,0.000008,0.000026,0.000000,0.000000,0.000228,0.351602,-0.000141,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000014,0.000000,0.000000,0.000000,0.000007,0.000018,0.000008,0.000026,0.000000,0.000000,0.000218,0.351466,-0.000136,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000017,0.000008,0.000025,0.000000,0.000000,0.000209,0.351319,-0.000146,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000017,0.000007,0.000024,0.000136,0.000136,0.000199,0.351045,-0.000275,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000016,0.000007,0.000024,0.000386,0.000386,0.000190,0.350533,-0.000511,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000015,0.000006,0.000023,0.000577,0.000577,0.000181,0.349848,-0.000685,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000014,0.000005,0.000022,0.000736,0.000736,0.000171,0.349026,-0.000822,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000013,0.000003,0.000022,0.000764,0.000764,0.000161,0.348198,-0.000828,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000019,0.000000,0.000000,0.000000,0.000009,0.000013,0.000002,0.000021,0.000732,0.000732,0.000151,0.347441,-0.000757,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000009,0.000012,0.000001,0.000020,0.000670,0.000670,0.000141,0.346755,-0.000686,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000019,0.000000,0.000000,0.000000,0.000009,0.000011,0.000001,0.000020,0.000581,0.000581,0.000130,0.346182,-0.000573,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000019,0.000000,0.000000,0.000000,0.000009,0.000010,0.000000,0.000019,0.000476,0.000476,0.000120,0.345725,-0.000457,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000009,0.000009,0.000000,0.000019,0.000360,0.000360,0.000111,0.345375,-0.000350,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000009,0.000009,0.000000,0.000018,0.000227,0.000227,0.000103,0.345159,-0.000217,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000008,0.000000,0.000018,0.000077,0.000077,0.000095,0.345082,-0.000077,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000007,0.000000,0.000017,0.000000,0.000000,0.000087,0.345082,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000007,0.000000,0.000017,0.000000,0.000000,0.000081,0.345082,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000006,0.000000,0.000016,0.000000,0.000000,0.000074,0.345082,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000006,0.000000,0.000016,0.000000,0.000000,0.000069,0.345082,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000005,0.000000,0.000016,0.000000,0.000000,0.000063,0.345082,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000005,0.000000,0.000016,0.000000,0.000000,0.000059,0.345082,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000005,0.000000,0.000015,0.000000,0.000000,0.000054,0.345082,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000004,0.000000,0.000015,0.000000,0.000000,0.000050,0.345082,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000004,0.000000,0.000015,0.000000,0.000000,0.000046,0.345082,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000004,0.000000,0.000015,0.000000,0.000000,0.000043,0.345082,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000003,0.000000,0.000015,0.000000,0.000000,0.000039,0.345082,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000003,0.000000,0.000015,0.000000,0.000000,0.000036,0.345082,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000003,0.000000,0.000015,0.000130,0.000130,0.000033,0.344952,-0.000130,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000003,0.000000,0.000015,0.000378,0.000376,0.000031,0.344576,-0.000376,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000002,0.000000,0.000014,0.000570,0.000567,0.000029,0.344008,-0.000567,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000002,0.000000,0.000014,0.000740,0.000734,0.000026,0.343274,-0.000734,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000002,0.000000,0.000014,0.000865,0.000855,0.000024,0.342419,-0.000855,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000002,0.000000,0.000014,0.000849,0.000836,0.000022,0.341583,-0.000836,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000002,0.000000,0.000014,0.000765,0.000750,0.000021,0.340833,-0.000750,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000002,0.000000,0.000014,0.000628,0.000614,0.000019,0.340219,-0.000614,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000001,0.000000,0.000014,0.000513,0.000500,0.000018,0.339720,-0.000500,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000001,0.000000,0.000015,0.000390,0.000379,0.000016,0.339341,-0.000379,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000001,0.000000,0.000015,0.000231,0.000224,0.000015,0.339117,-0.000224,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000001,0.000000,0.000015,0.000083,0.000080,0.000014,0.339037,-0.000080,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000013,0.339037,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000012,0.339037,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000011,0.339037,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000010,0.339037,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000009,0.339037,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000009,0.339037,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000001,0.000000,0.000015,0.000000,0.000000,0.000008,0.339037,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000001,0.000000,0.000015,0.000000,0.000000,0.000007,0.339037,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000001,0.000000,0.000015,0.000000,0.000000,0.000007,0.339037,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000001,0.000000,0.000015,0.000000,0.000000,0.000006,0.339037,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000015,0.000000,0.000000,0.000006,0.339037,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000016,0.000000,0.000000,0.000005,0.339037,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000016,0.000147,0.000143,0.000005,0.338894,-0.000143,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000000,0.000000,0.000016,0.000391,0.000378,0.000005,0.338515,-0.000378,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000583,0.000563,0.000004,0.337953,-0.000563,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000746,0.000719,0.000004,0.337234,-0.000719,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000776,0.000745,0.000004,0.336489,-0.000745,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000746,0.000714,0.000003,0.335775,-0.000714,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000650,0.000620,0.000003,0.335155,-0.000620,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000016,0.000563,0.000535,0.000003,0.334620,-0.000535,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000017,0.000465,0.000441,0.000003,0.334179,-0.000441,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000000,0.000000,0.000017,0.000335,0.000317,0.000002,0.333862,-0.000317,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000211,0.000199,0.000002,0.333662,-0.000199,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000078,0.000074,0.000002,0.333588,-0.000074,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000002,0.333588,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000002,0.333588,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000002,0.333588,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000017,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000000,0.000000,0.000001,0.333588,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000125,0.000117,0.000001,0.333471,-0.000117,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000018,0.000371,0.000350,0.000001,0.333121,-0.000350,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000000,0.000000,0.000019,0.000565,0.000531,0.000001,0.332590,-0.000531,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000727,0.000683,0.000001,0.331907,-0.000683,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000859,0.000804,0.000001,0.331104,-0.000804,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000839,0.000782,0.000000,0.330322,-0.000782,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000770,0.000714,0.000000,0.329608,-0.000714,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000630,0.000583,0.000000,0.329025,-0.000583,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000514,0.000474,0.000000,0.328551,-0.000474,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000386,0.000355,0.000000,0.328196,-0.000355,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000224,0.000205,0.000000,0.327991,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000000,0.000000,0.000019,0.000073,0.000067,0.000000,0.327924,-0.000067,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000000,0.000000,0.000020,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000000,0.000000,0.000000,0.327924,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000124,0.000114,0.000000,0.327810,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000364,0.000333,0.000000,0.327477,-0.000333,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000560,0.000513,0.000000,0.326964,-0.000513,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000717,0.000654,0.000000,0.326310,-0.000654,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000804,0.000731,0.000000,0.325579,-0.000731,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000785,0.000711,0.000000,0.324868,-0.000711,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000709,0.000640,0.000000,0.324228,-0.000640,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000596,0.000536,0.000000,0.323691,-0.000536,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000000,0.000000,0.000021,0.000475,0.000426,0.000000,0.323265,-0.000426,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000365,0.000327,0.000000,0.322938,-0.000327,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000192,0.000171,0.000000,0.322767,-0.000171,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000036,0.000032,0.000000,0.322735,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000022,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000000,0.322735,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000105,0.000094,0.000000,0.322641,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000352,0.000314,0.000000,0.322327,-0.000314,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000557,0.000496,0.000000,0.321831,-0.000496,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000718,0.000638,0.000000,0.321193,-0.000638,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000843,0.000747,0.000000,0.320447,-0.000747,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000828,0.000730,0.000000,0.319716,-0.000730,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000752,0.000661,0.000000,0.319055,-0.000661,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000638,0.000558,0.000000,0.318497,-0.000558,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000510,0.000445,0.000000,0.318053,-0.000445,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000388,0.000338,0.000000,0.317715,-0.000338,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000214,0.000186,0.000000,0.317528,-0.000186,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000054,0.000047,0.000000,0.317481,-0.000047,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000000,0.317481,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000115,0.000100,0.000000,0.317382,-0.000100,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620728.csv b/test/channel_loss/channel_forcing/et/cat-2620728.csv new file mode 100644 index 000000000..495cf283c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620728.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000094,0.000000,0.000000,0.000000,0.000000,0.000815,0.000061,0.000815,0.000184,0.000184,0.009007,0.375381,-0.002303,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000059,0.000748,0.000063,0.000063,0.008319,0.373154,-0.002227,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000687,0.000058,0.000687,0.000000,0.000000,0.007691,0.371035,-0.002118,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000632,0.000057,0.000632,0.000000,0.000000,0.007115,0.368962,-0.002073,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000056,0.000583,0.000000,0.000000,0.006589,0.366934,-0.002029,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000537,0.000055,0.000538,0.000000,0.000000,0.006106,0.364948,-0.001985,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000496,0.000053,0.000497,0.000000,0.000000,0.005663,0.363005,-0.001943,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000459,0.000052,0.000459,0.000000,0.000000,0.005256,0.361104,-0.001901,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000425,0.000051,0.000425,0.000000,0.000000,0.004882,0.359243,-0.001861,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000394,0.000050,0.000394,0.000000,0.000000,0.004539,0.357422,-0.001821,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000365,0.000049,0.000366,0.000000,0.000000,0.004222,0.355639,-0.001782,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000339,0.000048,0.000340,0.000000,0.000000,0.003931,0.353895,-0.001744,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000315,0.000047,0.000316,0.000000,0.000000,0.003663,0.352188,-0.001707,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000293,0.000046,0.000295,0.000000,0.000000,0.003415,0.350518,-0.001670,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000273,0.000045,0.000275,0.000142,0.000142,0.003187,0.348744,-0.001774,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000255,0.000044,0.000256,0.000381,0.000381,0.002976,0.346774,-0.001970,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000237,0.000042,0.000239,0.000553,0.000553,0.002781,0.344678,-0.002096,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000222,0.000041,0.000224,0.000682,0.000682,0.002601,0.342501,-0.002178,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000207,0.000040,0.000210,0.000608,0.000608,0.002434,0.340442,-0.002058,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000977,0.000009,0.000017,0.000009,0.000003,0.000194,0.000039,0.000206,0.000584,0.000584,0.002279,0.339391,-0.001051,1.000000,0.000007 +20,2022-08-01 20:00:00,0.000772,0.000008,0.000007,0.000008,0.000003,0.000181,0.000039,0.000193,0.000514,0.000514,0.002136,0.338240,-0.001151,1.000000,0.000007 +21,2022-08-01 21:00:00,0.000750,0.000012,0.000013,0.000012,0.000003,0.000170,0.000038,0.000186,0.000402,0.000402,0.002004,0.337196,-0.001044,1.000000,0.000007 +22,2022-08-01 22:00:00,0.000755,0.000015,0.000019,0.000015,0.000004,0.000159,0.000037,0.000178,0.000332,0.000332,0.001882,0.336241,-0.000955,1.000000,0.000011 +23,2022-08-01 23:00:00,0.000739,0.000021,0.000024,0.000021,0.000004,0.000150,0.000037,0.000174,0.000259,0.000259,0.001769,0.335356,-0.000884,1.000000,0.000015 +24,2022-08-02 00:00:00,0.000739,0.000028,0.000033,0.000028,0.000004,0.000141,0.000036,0.000173,0.000174,0.000174,0.001665,0.334566,-0.000790,1.000000,0.000020 +25,2022-08-02 01:00:00,0.000942,0.000054,0.000075,0.000054,0.000005,0.000132,0.000036,0.000191,0.000078,0.000078,0.001569,0.334043,-0.000523,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001129,0.000094,0.000125,0.000094,0.000005,0.000125,0.000036,0.000224,0.000000,0.000000,0.001480,0.333743,-0.000300,1.000000,0.000071 +27,2022-08-02 03:00:00,0.001112,0.000113,0.000121,0.000113,0.000005,0.000118,0.000036,0.000236,0.000000,0.000000,0.001398,0.333437,-0.000307,1.000000,0.000080 +28,2022-08-02 04:00:00,0.001109,0.000122,0.000120,0.000122,0.000006,0.000111,0.000035,0.000239,0.000000,0.000000,0.001322,0.333134,-0.000302,1.000000,0.000078 +29,2022-08-02 05:00:00,0.001198,0.000131,0.000139,0.000131,0.000006,0.000105,0.000035,0.000243,0.000000,0.000000,0.001252,0.332907,-0.000227,1.000000,0.000087 +30,2022-08-02 06:00:00,0.001229,0.000139,0.000146,0.000139,0.000007,0.000100,0.000035,0.000246,0.000000,0.000000,0.001187,0.332708,-0.000199,1.000000,0.000094 +31,2022-08-02 07:00:00,0.000000,0.000064,0.000000,0.000064,0.000007,0.000095,0.000034,0.000166,0.000000,0.000000,0.001127,0.331454,-0.001254,1.000000,0.000029 +32,2022-08-02 08:00:00,0.000000,0.000029,0.000000,0.000029,0.000007,0.000090,0.000034,0.000126,0.000000,0.000000,0.001070,0.330226,-0.001228,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000086,0.000033,0.000093,0.000000,0.000000,0.001018,0.329025,-0.001201,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000081,0.000032,0.000090,0.000000,0.000000,0.000969,0.327849,-0.001176,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000077,0.000032,0.000086,0.000000,0.000000,0.000923,0.326699,-0.001151,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000074,0.000031,0.000083,0.000000,0.000000,0.000880,0.325573,-0.001126,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000138,0.000001,0.000002,0.000001,0.000009,0.000070,0.000030,0.000081,0.000000,0.000000,0.000840,0.324604,-0.000969,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000292,0.000002,0.000003,0.000002,0.000010,0.000067,0.000030,0.000079,0.000126,0.000126,0.000803,0.323682,-0.000922,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000199,0.000001,0.000000,0.000001,0.000010,0.000064,0.000029,0.000076,0.000323,0.000323,0.000767,0.322498,-0.001183,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000191,0.000001,0.000000,0.000001,0.000011,0.000062,0.000028,0.000073,0.000467,0.000467,0.000734,0.321193,-0.001306,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000152,0.000000,0.000000,0.000000,0.000011,0.000059,0.000027,0.000070,0.000582,0.000582,0.000703,0.319763,-0.001429,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000292,0.000000,0.000000,0.000000,0.000012,0.000056,0.000027,0.000068,0.000676,0.000676,0.000673,0.318409,-0.001354,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000055,0.000000,0.000000,0.000000,0.000012,0.000054,0.000026,0.000066,0.000638,0.000638,0.000645,0.316890,-0.001519,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000055,0.000000,0.000000,0.000000,0.000013,0.000052,0.000025,0.000064,0.000585,0.000585,0.000618,0.315455,-0.001435,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000050,0.000024,0.000063,0.000548,0.000548,0.000592,0.314095,-0.001360,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000048,0.000023,0.000061,0.000453,0.000453,0.000568,0.312856,-0.001238,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000046,0.000023,0.000060,0.000341,0.000341,0.000545,0.311754,-0.001102,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000044,0.000022,0.000059,0.000207,0.000207,0.000523,0.310806,-0.000948,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000251,0.000002,0.000004,0.000002,0.000015,0.000042,0.000022,0.000059,0.000057,0.000057,0.000503,0.310206,-0.000601,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000360,0.000008,0.000013,0.000008,0.000016,0.000040,0.000021,0.000064,0.000000,0.000000,0.000484,0.309772,-0.000434,1.000000,0.000007 +51,2022-08-03 03:00:00,0.000397,0.000013,0.000016,0.000013,0.000016,0.000039,0.000021,0.000068,0.000000,0.000000,0.000466,0.309380,-0.000392,1.000000,0.000010 +52,2022-08-03 04:00:00,0.000301,0.000012,0.000009,0.000012,0.000017,0.000038,0.000021,0.000066,0.000000,0.000000,0.000450,0.308910,-0.000470,1.000000,0.000007 +53,2022-08-03 05:00:00,0.000397,0.000014,0.000016,0.000014,0.000017,0.000036,0.000021,0.000068,0.000000,0.000000,0.000434,0.308537,-0.000373,1.000000,0.000009 +54,2022-08-03 06:00:00,0.000306,0.000011,0.000009,0.000011,0.000018,0.000035,0.000020,0.000064,0.000000,0.000000,0.000420,0.308089,-0.000448,1.000000,0.000007 +55,2022-08-03 07:00:00,0.000056,0.000006,0.000000,0.000006,0.000018,0.000034,0.000020,0.000058,0.000000,0.000000,0.000406,0.307415,-0.000674,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000056,0.000002,0.000000,0.000002,0.000019,0.000033,0.000020,0.000054,0.000000,0.000000,0.000393,0.306756,-0.000659,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000056,0.000000,0.000000,0.000000,0.000019,0.000032,0.000019,0.000052,0.000000,0.000000,0.000380,0.306111,-0.000645,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000062,0.000000,0.000000,0.000000,0.000020,0.000031,0.000019,0.000051,0.000000,0.000000,0.000368,0.305485,-0.000626,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000056,0.000000,0.000000,0.000000,0.000021,0.000030,0.000019,0.000051,0.000000,0.000000,0.000357,0.304867,-0.000618,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000062,0.000000,0.000000,0.000000,0.000021,0.000029,0.000018,0.000050,0.000000,0.000000,0.000346,0.304268,-0.000599,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000028,0.000018,0.000050,0.000000,0.000000,0.000336,0.303621,-0.000647,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000027,0.000017,0.000049,0.000137,0.000137,0.000326,0.302854,-0.000767,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000026,0.000017,0.000049,0.000382,0.000382,0.000316,0.301863,-0.000991,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000026,0.000016,0.000049,0.000553,0.000553,0.000307,0.300726,-0.001136,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000025,0.000015,0.000049,0.000690,0.000690,0.000297,0.299480,-0.001247,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000024,0.000015,0.000048,0.000704,0.000704,0.000288,0.298247,-0.001233,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000151,0.000000,0.000000,0.000000,0.000025,0.000023,0.000014,0.000048,0.000667,0.000667,0.000278,0.297223,-0.001024,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000022,0.000013,0.000048,0.000601,0.000601,0.000269,0.296200,-0.001023,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000026,0.000022,0.000013,0.000048,0.000542,0.000542,0.000260,0.295319,-0.000881,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000125,0.000000,0.000000,0.000000,0.000027,0.000021,0.000012,0.000048,0.000442,0.000442,0.000252,0.294553,-0.000766,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000020,0.000012,0.000047,0.000343,0.000343,0.000243,0.293840,-0.000713,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000020,0.000012,0.000047,0.000218,0.000218,0.000235,0.293264,-0.000576,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000019,0.000011,0.000047,0.000071,0.000071,0.000228,0.292783,-0.000482,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000018,0.000011,0.000047,0.000000,0.000000,0.000220,0.292381,-0.000402,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000018,0.000011,0.000047,0.000000,0.000000,0.000213,0.291988,-0.000393,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000017,0.000011,0.000047,0.000000,0.000000,0.000207,0.291603,-0.000385,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000017,0.000010,0.000047,0.000000,0.000000,0.000200,0.291227,-0.000376,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000016,0.000010,0.000047,0.000000,0.000000,0.000194,0.290859,-0.000368,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000016,0.000010,0.000047,0.000000,0.000000,0.000188,0.290498,-0.000360,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000015,0.000010,0.000047,0.000000,0.000000,0.000183,0.290146,-0.000353,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000015,0.000009,0.000048,0.000000,0.000000,0.000177,0.289800,-0.000345,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000014,0.000009,0.000048,0.000000,0.000000,0.000172,0.289463,-0.000338,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000014,0.000009,0.000048,0.000000,0.000000,0.000167,0.289132,-0.000331,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000014,0.000009,0.000048,0.000000,0.000000,0.000163,0.288808,-0.000324,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000013,0.000009,0.000048,0.000000,0.000000,0.000158,0.288492,-0.000317,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000013,0.000008,0.000048,0.000133,0.000133,0.000154,0.288051,-0.000441,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000012,0.000008,0.000049,0.000378,0.000378,0.000149,0.287381,-0.000671,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000012,0.000008,0.000049,0.000554,0.000554,0.000145,0.286552,-0.000828,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000012,0.000007,0.000049,0.000691,0.000691,0.000140,0.285607,-0.000945,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000011,0.000006,0.000049,0.000805,0.000805,0.000135,0.284571,-0.001036,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000011,0.000006,0.000049,0.000762,0.000762,0.000130,0.283600,-0.000971,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000010,0.000005,0.000049,0.000689,0.000689,0.000125,0.282720,-0.000880,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000010,0.000005,0.000049,0.000574,0.000574,0.000120,0.281972,-0.000748,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000004,0.000050,0.000485,0.000485,0.000115,0.281326,-0.000646,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000009,0.000004,0.000050,0.000371,0.000371,0.000110,0.280806,-0.000520,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000009,0.000004,0.000050,0.000223,0.000223,0.000105,0.280442,-0.000364,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000008,0.000004,0.000050,0.000077,0.000077,0.000100,0.280228,-0.000214,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000008,0.000004,0.000050,0.000000,0.000000,0.000096,0.280095,-0.000133,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000008,0.000004,0.000050,0.000000,0.000000,0.000092,0.279964,-0.000131,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000007,0.000004,0.000051,0.000000,0.000000,0.000088,0.279837,-0.000128,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000007,0.000003,0.000051,0.000000,0.000000,0.000084,0.279712,-0.000125,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000007,0.000003,0.000051,0.000000,0.000000,0.000081,0.279589,-0.000122,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000006,0.000003,0.000051,0.000000,0.000000,0.000078,0.279470,-0.000120,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000006,0.000003,0.000052,0.000000,0.000000,0.000075,0.279352,-0.000117,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000003,0.000052,0.000000,0.000000,0.000072,0.279238,-0.000115,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000003,0.000052,0.000000,0.000000,0.000069,0.279126,-0.000112,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000006,0.000003,0.000052,0.000000,0.000000,0.000067,0.279016,-0.000110,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000005,0.000003,0.000053,0.000000,0.000000,0.000064,0.278908,-0.000107,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000005,0.000003,0.000053,0.000000,0.000000,0.000062,0.278803,-0.000105,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000005,0.000003,0.000053,0.000147,0.000147,0.000060,0.278557,-0.000246,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000005,0.000002,0.000054,0.000386,0.000386,0.000057,0.278081,-0.000476,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000005,0.000002,0.000054,0.000557,0.000557,0.000055,0.277448,-0.000633,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000004,0.000002,0.000054,0.000692,0.000692,0.000052,0.276697,-0.000751,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000004,0.000001,0.000055,0.000709,0.000709,0.000049,0.275944,-0.000752,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000009,0.000000,0.000000,0.000000,0.000051,0.000004,0.000001,0.000055,0.000675,0.000675,0.000046,0.275251,-0.000694,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000009,0.000000,0.000000,0.000000,0.000051,0.000004,0.000000,0.000055,0.000593,0.000593,0.000043,0.274652,-0.000599,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000015,0.000000,0.000000,0.000000,0.000052,0.000003,0.000000,0.000055,0.000537,0.000537,0.000040,0.274127,-0.000525,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000015,0.000000,0.000000,0.000000,0.000052,0.000003,0.000000,0.000055,0.000446,0.000446,0.000037,0.273696,-0.000431,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000015,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000330,0.000330,0.000034,0.273381,-0.000315,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000009,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000206,0.000205,0.000031,0.273185,-0.000196,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000043,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000056,0.000077,0.000077,0.000029,0.273151,-0.000034,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000043,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000057,0.000000,0.000000,0.000027,0.273194,0.000043,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000043,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000000,0.000000,0.000025,0.273237,0.000043,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000046,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000000,0.000000,0.000023,0.273283,0.000046,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000056,0.000002,0.000000,0.000058,0.000000,0.000000,0.000021,0.273345,0.000062,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000070,0.000000,0.000000,0.000000,0.000056,0.000002,0.000000,0.000058,0.000000,0.000000,0.000019,0.273414,0.000069,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000018,0.273414,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000017,0.273414,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000059,0.000000,0.000000,0.000015,0.273414,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000000,0.000000,0.000014,0.273414,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000000,0.000000,0.000013,0.273414,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000000,0.000000,0.000012,0.273414,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000000,0.000000,0.000011,0.273414,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000128,0.000128,0.000010,0.273287,-0.000128,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000367,0.000365,0.000009,0.272921,-0.000365,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000061,0.000539,0.000535,0.000009,0.272386,-0.000535,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000062,0.000671,0.000664,0.000008,0.271722,-0.000664,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000062,0.000780,0.000769,0.000007,0.270953,-0.000769,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000062,0.000751,0.000737,0.000007,0.270216,-0.000737,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000680,0.000663,0.000006,0.269553,-0.000663,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000586,0.000569,0.000006,0.268984,-0.000569,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000487,0.000471,0.000005,0.268512,-0.000471,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000368,0.000355,0.000005,0.268158,-0.000355,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000218,0.000210,0.000005,0.267948,-0.000210,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000069,0.000066,0.000004,0.267882,-0.000066,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000004,0.267882,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000004,0.267882,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000066,0.000000,0.000000,0.000003,0.267882,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000003,0.267882,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000003,0.267882,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000003,0.267882,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000069,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000002,0.267882,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000127,0.000122,0.000002,0.267760,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000070,0.000364,0.000349,0.000001,0.267411,-0.000349,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000536,0.000513,0.000001,0.266898,-0.000513,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000671,0.000640,0.000001,0.266258,-0.000640,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000753,0.000716,0.000001,0.265542,-0.000716,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000715,0.000676,0.000001,0.264866,-0.000676,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000647,0.000609,0.000001,0.264258,-0.000609,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000564,0.000528,0.000001,0.263729,-0.000528,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000464,0.000434,0.000001,0.263296,-0.000434,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000352,0.000328,0.000001,0.262968,-0.000328,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000184,0.000171,0.000001,0.262797,-0.000171,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000036,0.000033,0.000001,0.262763,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000001,0.262763,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000001,0.262763,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.262763,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.262764,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000107,0.000099,0.000000,0.262664,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000350,0.000324,0.000000,0.262340,-0.000324,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000532,0.000492,0.000000,0.261848,-0.000492,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000667,0.000615,0.000000,0.261233,-0.000615,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000785,0.000721,0.000000,0.260512,-0.000721,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000744,0.000680,0.000000,0.259832,-0.000680,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000674,0.000612,0.000000,0.259220,-0.000612,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000586,0.000530,0.000000,0.258690,-0.000530,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000483,0.000435,0.000000,0.258255,-0.000435,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000365,0.000328,0.000000,0.257928,-0.000328,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000204,0.000183,0.000000,0.257744,-0.000183,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000049,0.000044,0.000000,0.257700,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.257700,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000118,0.000105,0.000000,0.257595,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620729.csv b/test/channel_loss/channel_forcing/et/cat-2620729.csv new file mode 100644 index 000000000..59bff6db6 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620729.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000000,0.000813,0.000048,0.000813,0.000191,0.000191,0.008995,0.377461,-0.001720,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000046,0.000745,0.000067,0.000067,0.008297,0.375841,-0.001620,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000045,0.000684,0.000000,0.000000,0.007658,0.374324,-0.001517,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000044,0.000628,0.000000,0.000000,0.007074,0.372842,-0.001482,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000043,0.000578,0.000000,0.000000,0.006540,0.371393,-0.001448,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000042,0.000532,0.000000,0.000000,0.006050,0.369978,-0.001415,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000041,0.000491,0.000000,0.000000,0.005601,0.368596,-0.001383,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000040,0.000453,0.000000,0.000000,0.005188,0.367245,-0.001351,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000039,0.000419,0.000000,0.000000,0.004809,0.365925,-0.001320,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000387,0.000039,0.000387,0.000000,0.000000,0.004461,0.364636,-0.001289,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000358,0.000038,0.000358,0.000000,0.000000,0.004141,0.363376,-0.001260,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000037,0.000332,0.000000,0.000000,0.003846,0.362145,-0.001231,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000307,0.000036,0.000308,0.000000,0.000000,0.003575,0.360943,-0.001203,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000035,0.000286,0.000000,0.000000,0.003325,0.359768,-0.001175,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000265,0.000034,0.000266,0.000145,0.000145,0.003094,0.358478,-0.001290,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000033,0.000247,0.000390,0.000390,0.002881,0.356979,-0.001499,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000229,0.000032,0.000230,0.000567,0.000567,0.002684,0.355341,-0.001638,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000213,0.000031,0.000215,0.000710,0.000710,0.002502,0.353602,-0.001740,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000198,0.000030,0.000200,0.000638,0.000638,0.002333,0.351972,-0.001630,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000846,0.000003,0.000005,0.000003,0.000002,0.000185,0.000029,0.000190,0.000620,0.000620,0.002178,0.351219,-0.000753,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000743,0.000004,0.000004,0.000004,0.000002,0.000172,0.000029,0.000178,0.000541,0.000541,0.002034,0.350461,-0.000759,1.000000,0.000003 +21,2022-08-01 21:00:00,0.000736,0.000008,0.000010,0.000008,0.000002,0.000161,0.000028,0.000171,0.000418,0.000418,0.001901,0.349827,-0.000634,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000773,0.000013,0.000018,0.000013,0.000003,0.000150,0.000028,0.000166,0.000351,0.000351,0.001778,0.349302,-0.000525,1.000000,0.000010 +23,2022-08-01 23:00:00,0.000824,0.000023,0.000030,0.000023,0.000003,0.000141,0.000028,0.000166,0.000272,0.000272,0.001665,0.348904,-0.000398,1.000000,0.000017 +24,2022-08-02 00:00:00,0.000878,0.000037,0.000047,0.000037,0.000003,0.000132,0.000027,0.000172,0.000183,0.000183,0.001561,0.348639,-0.000265,1.000000,0.000027 +25,2022-08-02 01:00:00,0.001013,0.000063,0.000082,0.000063,0.000003,0.000124,0.000027,0.000190,0.000082,0.000082,0.001465,0.348576,-0.000063,1.000000,0.000046 +26,2022-08-02 02:00:00,0.001015,0.000083,0.000097,0.000083,0.000004,0.000116,0.000027,0.000202,0.000000,0.000000,0.001376,0.348583,0.000006,1.000000,0.000060 +27,2022-08-02 03:00:00,0.001002,0.000092,0.000094,0.000092,0.000004,0.000109,0.000027,0.000205,0.000000,0.000000,0.001294,0.348579,-0.000004,1.000000,0.000062 +28,2022-08-02 04:00:00,0.001000,0.000095,0.000094,0.000095,0.000004,0.000103,0.000027,0.000201,0.000000,0.000000,0.001219,0.348573,-0.000006,1.000000,0.000061 +29,2022-08-02 05:00:00,0.001089,0.000103,0.000110,0.000103,0.000004,0.000097,0.000027,0.000204,0.000000,0.000000,0.001150,0.348638,0.000065,1.000000,0.000069 +30,2022-08-02 06:00:00,0.001121,0.000111,0.000117,0.000111,0.000005,0.000091,0.000027,0.000207,0.000000,0.000000,0.001086,0.348727,0.000089,1.000000,0.000075 +31,2022-08-02 07:00:00,0.000000,0.000051,0.000000,0.000051,0.000005,0.000086,0.000027,0.000142,0.000000,0.000000,0.001026,0.347833,-0.000894,1.000000,0.000023 +32,2022-08-02 08:00:00,0.000000,0.000023,0.000000,0.000023,0.000005,0.000082,0.000026,0.000110,0.000000,0.000000,0.000971,0.346960,-0.000874,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000077,0.000026,0.000083,0.000000,0.000000,0.000919,0.346106,-0.000854,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000073,0.000025,0.000079,0.000000,0.000000,0.000871,0.345272,-0.000834,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000069,0.000024,0.000075,0.000000,0.000000,0.000826,0.344457,-0.000815,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000066,0.000024,0.000072,0.000000,0.000000,0.000784,0.343661,-0.000796,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000087,0.000000,0.000001,0.000000,0.000007,0.000062,0.000023,0.000070,0.000000,0.000000,0.000745,0.342968,-0.000693,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000174,0.000000,0.000000,0.000000,0.000007,0.000059,0.000023,0.000067,0.000127,0.000127,0.000709,0.342252,-0.000716,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000159,0.000000,0.000000,0.000000,0.000007,0.000056,0.000022,0.000064,0.000333,0.000333,0.000674,0.341337,-0.000915,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000103,0.000000,0.000000,0.000000,0.000008,0.000054,0.000021,0.000061,0.000483,0.000483,0.000642,0.340242,-0.001096,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000055,0.000000,0.000000,0.000000,0.000008,0.000051,0.000021,0.000059,0.000607,0.000607,0.000611,0.339004,-0.001238,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000110,0.000000,0.000000,0.000000,0.000008,0.000049,0.000020,0.000057,0.000704,0.000704,0.000582,0.337753,-0.001251,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000046,0.000000,0.000000,0.000000,0.000009,0.000046,0.000019,0.000055,0.000674,0.000674,0.000555,0.336497,-0.001255,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000046,0.000000,0.000000,0.000000,0.000009,0.000044,0.000018,0.000053,0.000615,0.000615,0.000528,0.335328,-0.001169,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000009,0.000042,0.000017,0.000051,0.000568,0.000568,0.000504,0.334241,-0.001087,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000055,0.000000,0.000000,0.000000,0.000010,0.000040,0.000017,0.000050,0.000466,0.000466,0.000480,0.333279,-0.000962,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000055,0.000000,0.000000,0.000000,0.000010,0.000038,0.000016,0.000048,0.000353,0.000353,0.000458,0.332449,-0.000830,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000010,0.000036,0.000015,0.000047,0.000213,0.000213,0.000437,0.331774,-0.000675,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000199,0.000001,0.000002,0.000001,0.000011,0.000035,0.000015,0.000047,0.000060,0.000060,0.000417,0.331403,-0.000371,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000290,0.000005,0.000008,0.000005,0.000011,0.000033,0.000015,0.000049,0.000000,0.000000,0.000399,0.331182,-0.000221,1.000000,0.000004 +51,2022-08-03 03:00:00,0.000315,0.000008,0.000010,0.000008,0.000011,0.000032,0.000015,0.000051,0.000000,0.000000,0.000382,0.330990,-0.000193,1.000000,0.000006 +52,2022-08-03 04:00:00,0.000249,0.000007,0.000006,0.000007,0.000012,0.000031,0.000015,0.000050,0.000000,0.000000,0.000366,0.330740,-0.000249,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000315,0.000009,0.000010,0.000009,0.000012,0.000029,0.000015,0.000050,0.000000,0.000000,0.000351,0.330558,-0.000183,1.000000,0.000005 +54,2022-08-03 06:00:00,0.000249,0.000007,0.000006,0.000007,0.000013,0.000028,0.000014,0.000048,0.000000,0.000000,0.000337,0.330319,-0.000239,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000073,0.000004,0.000001,0.000004,0.000013,0.000027,0.000014,0.000044,0.000000,0.000000,0.000324,0.329918,-0.000400,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000073,0.000002,0.000001,0.000002,0.000013,0.000026,0.000014,0.000041,0.000000,0.000000,0.000312,0.329527,-0.000391,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000073,0.000001,0.000001,0.000001,0.000014,0.000025,0.000014,0.000039,0.000000,0.000000,0.000301,0.329145,-0.000382,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000073,0.000001,0.000001,0.000001,0.000014,0.000024,0.000013,0.000039,0.000000,0.000000,0.000290,0.328771,-0.000373,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000073,0.000001,0.000001,0.000001,0.000014,0.000023,0.000013,0.000038,0.000000,0.000000,0.000280,0.328406,-0.000365,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000073,0.000001,0.000001,0.000001,0.000015,0.000023,0.000013,0.000038,0.000000,0.000000,0.000270,0.328050,-0.000357,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000013,0.000037,0.000000,0.000000,0.000261,0.327631,-0.000419,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000021,0.000012,0.000037,0.000140,0.000140,0.000252,0.327084,-0.000547,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000020,0.000012,0.000036,0.000391,0.000391,0.000243,0.326306,-0.000779,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000020,0.000011,0.000036,0.000568,0.000568,0.000235,0.325372,-0.000934,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000019,0.000010,0.000036,0.000714,0.000714,0.000226,0.324317,-0.001055,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000018,0.000009,0.000035,0.000737,0.000737,0.000217,0.323263,-0.001054,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000096,0.000000,0.000000,0.000000,0.000017,0.000017,0.000009,0.000035,0.000700,0.000700,0.000209,0.322364,-0.000899,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000055,0.000000,0.000000,0.000000,0.000018,0.000017,0.000008,0.000035,0.000632,0.000632,0.000200,0.321512,-0.000852,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000100,0.000000,0.000000,0.000000,0.000018,0.000016,0.000008,0.000034,0.000560,0.000560,0.000192,0.320794,-0.000718,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000096,0.000000,0.000000,0.000000,0.000019,0.000015,0.000007,0.000034,0.000462,0.000462,0.000184,0.320184,-0.000610,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000055,0.000000,0.000000,0.000000,0.000019,0.000015,0.000007,0.000034,0.000354,0.000354,0.000176,0.319654,-0.000530,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000224,0.000224,0.000169,0.319263,-0.000391,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000006,0.000033,0.000075,0.000075,0.000162,0.318972,-0.000290,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000006,0.000033,0.000000,0.000000,0.000155,0.318762,-0.000210,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000033,0.000000,0.000000,0.000149,0.318556,-0.000206,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000012,0.000006,0.000033,0.000000,0.000000,0.000143,0.318356,-0.000201,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000033,0.000000,0.000000,0.000137,0.318160,-0.000196,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000011,0.000006,0.000033,0.000000,0.000000,0.000132,0.317968,-0.000192,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000011,0.000006,0.000033,0.000000,0.000000,0.000127,0.317781,-0.000187,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000005,0.000033,0.000000,0.000000,0.000122,0.317598,-0.000183,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000010,0.000005,0.000033,0.000000,0.000000,0.000118,0.317419,-0.000179,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000009,0.000005,0.000033,0.000000,0.000000,0.000114,0.317244,-0.000175,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000009,0.000005,0.000033,0.000000,0.000000,0.000110,0.317074,-0.000171,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000009,0.000005,0.000033,0.000000,0.000000,0.000106,0.316907,-0.000167,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000009,0.000005,0.000033,0.000000,0.000000,0.000102,0.316744,-0.000163,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000008,0.000005,0.000033,0.000135,0.000135,0.000099,0.316453,-0.000291,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000008,0.000004,0.000033,0.000385,0.000385,0.000095,0.315925,-0.000529,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000008,0.000004,0.000033,0.000566,0.000566,0.000091,0.315231,-0.000694,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000007,0.000003,0.000033,0.000716,0.000716,0.000087,0.314407,-0.000824,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000007,0.000003,0.000033,0.000836,0.000836,0.000083,0.313485,-0.000922,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000007,0.000002,0.000033,0.000805,0.000805,0.000078,0.312614,-0.000871,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000006,0.000001,0.000033,0.000720,0.000720,0.000074,0.311846,-0.000767,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000006,0.000001,0.000033,0.000597,0.000597,0.000069,0.311217,-0.000630,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000001,0.000033,0.000501,0.000501,0.000064,0.310695,-0.000522,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000000,0.000033,0.000380,0.000380,0.000060,0.310303,-0.000392,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000000,0.000033,0.000229,0.000229,0.000055,0.310069,-0.000234,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000033,0.000082,0.000082,0.000051,0.309983,-0.000085,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000033,0.000000,0.000000,0.000047,0.309979,-0.000004,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000033,0.000000,0.000000,0.000044,0.309976,-0.000004,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000040,0.309972,-0.000004,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000037,0.309969,-0.000003,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000035,0.309965,-0.000003,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000003,0.000000,0.000033,0.000000,0.000000,0.000032,0.309962,-0.000003,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000002,0.000000,0.000034,0.000000,0.000000,0.000030,0.309959,-0.000003,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000002,0.000000,0.000034,0.000000,0.000000,0.000027,0.309956,-0.000003,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000025,0.309952,-0.000003,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000024,0.309949,-0.000003,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000022,0.309946,-0.000003,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000002,0.000000,0.000034,0.000000,0.000000,0.000020,0.309943,-0.000003,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000002,0.000000,0.000035,0.000150,0.000150,0.000019,0.309793,-0.000150,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000035,0.000396,0.000396,0.000017,0.309398,-0.000396,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000573,0.000572,0.000016,0.308826,-0.000572,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000718,0.000714,0.000015,0.308111,-0.000714,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000739,0.000731,0.000014,0.307380,-0.000731,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000704,0.000695,0.000013,0.306691,-0.000689,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000006,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000611,0.000600,0.000012,0.306097,-0.000594,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000006,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000551,0.000540,0.000011,0.305564,-0.000534,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000006,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000036,0.000451,0.000440,0.000010,0.305129,-0.000434,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000006,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000329,0.000321,0.000009,0.304814,-0.000315,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000208,0.000202,0.000008,0.304619,-0.000196,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000017,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000079,0.000077,0.000008,0.304559,-0.000060,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000017,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000037,0.000000,0.000000,0.000007,0.304576,0.000017,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000017,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000007,0.304594,0.000017,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000017,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000006,0.304611,0.000017,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000022,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000006,0.304633,0.000022,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000039,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000005,0.304672,0.000039,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000005,0.304672,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.304672,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.304672,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.304672,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000000,0.000000,0.000003,0.304672,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000003,0.304672,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000003,0.304672,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000130,0.000126,0.000003,0.304546,-0.000126,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000041,0.000375,0.000364,0.000003,0.304182,-0.000364,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000553,0.000536,0.000002,0.303647,-0.000536,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000696,0.000672,0.000002,0.302974,-0.000672,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000814,0.000783,0.000002,0.302191,-0.000783,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000789,0.000755,0.000002,0.301436,-0.000755,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000717,0.000684,0.000002,0.300753,-0.000684,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000606,0.000575,0.000002,0.300178,-0.000575,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000501,0.000474,0.000001,0.299704,-0.000474,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000380,0.000358,0.000001,0.299346,-0.000358,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000223,0.000210,0.000001,0.299136,-0.000210,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000072,0.000068,0.000001,0.299068,-0.000068,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000046,0.000000,0.000000,0.000001,0.299068,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299068,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.299068,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000128,0.000121,0.000000,0.298948,-0.000121,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000370,0.000348,0.000000,0.298600,-0.000348,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000551,0.000516,0.000000,0.298084,-0.000516,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000694,0.000648,0.000000,0.297436,-0.000648,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000780,0.000726,0.000000,0.296710,-0.000726,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000749,0.000694,0.000000,0.296016,-0.000694,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000675,0.000623,0.000000,0.295393,-0.000623,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000582,0.000534,0.000000,0.294859,-0.000534,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000476,0.000436,0.000000,0.294423,-0.000436,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000363,0.000331,0.000000,0.294092,-0.000331,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000190,0.000173,0.000000,0.293919,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000037,0.000034,0.000000,0.293885,-0.000034,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.293885,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.293885,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.293885,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.293885,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.293885,0.000001,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.293888,0.000002,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.293889,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.293892,0.000002,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.293893,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000000,0.293894,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000000,0.293895,0.000001,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000000,0.293895,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000109,0.000099,0.000000,0.293796,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000358,0.000326,0.000000,0.293470,-0.000326,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000547,0.000497,0.000000,0.292973,-0.000497,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000692,0.000627,0.000000,0.292347,-0.000627,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000814,0.000734,0.000000,0.291612,-0.000734,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000784,0.000704,0.000000,0.290909,-0.000704,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000708,0.000632,0.000000,0.290276,-0.000632,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000611,0.000544,0.000000,0.289732,-0.000544,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000498,0.000442,0.000000,0.289291,-0.000442,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000375,0.000332,0.000000,0.288959,-0.000332,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000211,0.000186,0.000000,0.288772,-0.000186,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000053,0.000047,0.000000,0.288726,-0.000047,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.288726,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000119,0.000105,0.000000,0.288621,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620730.csv b/test/channel_loss/channel_forcing/et/cat-2620730.csv new file mode 100644 index 000000000..a0af22282 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620730.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000180,0.000000,0.000000,0.000000,0.000000,0.000814,0.000050,0.000814,0.000173,0.000173,0.008997,0.384136,-0.001073,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000049,0.000746,0.000058,0.000058,0.008300,0.383027,-0.001109,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000048,0.000684,0.000000,0.000000,0.007663,0.382002,-0.001025,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000629,0.000046,0.000629,0.000000,0.000000,0.007080,0.381002,-0.001000,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000579,0.000045,0.000579,0.000000,0.000000,0.006547,0.380026,-0.000976,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000533,0.000044,0.000533,0.000000,0.000000,0.006058,0.379074,-0.000952,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000492,0.000043,0.000492,0.000000,0.000000,0.005610,0.378145,-0.000929,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000454,0.000042,0.000454,0.000000,0.000000,0.005198,0.377239,-0.000906,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000419,0.000041,0.000419,0.000000,0.000000,0.004820,0.376355,-0.000884,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000388,0.000040,0.000388,0.000000,0.000000,0.004472,0.375492,-0.000862,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000359,0.000039,0.000359,0.000000,0.000000,0.004152,0.374651,-0.000841,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000333,0.000038,0.000333,0.000000,0.000000,0.003858,0.373830,-0.000821,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000037,0.000309,0.000000,0.000000,0.003587,0.373029,-0.000801,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000286,0.000036,0.000287,0.000000,0.000000,0.003336,0.372248,-0.000781,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000266,0.000035,0.000267,0.000135,0.000135,0.003106,0.371354,-0.000894,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000247,0.000034,0.000248,0.000384,0.000384,0.002893,0.370239,-0.001115,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000230,0.000032,0.000231,0.000569,0.000569,0.002695,0.368971,-0.001268,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000214,0.000031,0.000215,0.000710,0.000710,0.002512,0.367597,-0.001375,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000199,0.000029,0.000200,0.000614,0.000614,0.002342,0.366349,-0.001248,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000914,0.000004,0.000008,0.000004,0.000001,0.000186,0.000029,0.000191,0.000592,0.000592,0.002186,0.366038,-0.000312,1.000000,0.000004 +20,2022-08-01 20:00:00,0.000947,0.000008,0.000012,0.000008,0.000001,0.000173,0.000029,0.000183,0.000548,0.000548,0.002041,0.365805,-0.000233,1.000000,0.000007 +21,2022-08-01 21:00:00,0.000925,0.000015,0.000019,0.000015,0.000002,0.000162,0.000029,0.000178,0.000417,0.000417,0.001908,0.365677,-0.000127,1.000000,0.000011 +22,2022-08-01 22:00:00,0.000895,0.000020,0.000024,0.000020,0.000002,0.000151,0.000029,0.000173,0.000322,0.000322,0.001786,0.365611,-0.000066,1.000000,0.000015 +23,2022-08-01 23:00:00,0.000904,0.000027,0.000031,0.000027,0.000002,0.000141,0.000029,0.000170,0.000255,0.000255,0.001673,0.365614,0.000003,1.000000,0.000019 +24,2022-08-02 00:00:00,0.000907,0.000034,0.000040,0.000034,0.000002,0.000132,0.000029,0.000169,0.000168,0.000168,0.001569,0.365697,0.000082,1.000000,0.000024 +25,2022-08-02 01:00:00,0.000967,0.000048,0.000058,0.000048,0.000002,0.000124,0.000029,0.000174,0.000073,0.000073,0.001474,0.365910,0.000214,1.000000,0.000034 +26,2022-08-02 02:00:00,0.001264,0.000084,0.000112,0.000084,0.000002,0.000117,0.000029,0.000203,0.000000,0.000000,0.001386,0.366427,0.000516,1.000000,0.000062 +27,2022-08-02 03:00:00,0.001310,0.000106,0.000120,0.000106,0.000003,0.000110,0.000030,0.000218,0.000000,0.000000,0.001306,0.366967,0.000541,1.000000,0.000076 +28,2022-08-02 04:00:00,0.001277,0.000116,0.000115,0.000116,0.000003,0.000104,0.000031,0.000222,0.000000,0.000000,0.001233,0.367468,0.000501,1.000000,0.000076 +29,2022-08-02 05:00:00,0.001309,0.000119,0.000120,0.000119,0.000003,0.000098,0.000031,0.000220,0.000000,0.000000,0.001167,0.367982,0.000514,1.000000,0.000077 +30,2022-08-02 06:00:00,0.001342,0.000122,0.000126,0.000122,0.000003,0.000093,0.000032,0.000218,0.000000,0.000000,0.001106,0.368510,0.000528,1.000000,0.000081 +31,2022-08-02 07:00:00,0.000000,0.000056,0.000000,0.000056,0.000003,0.000088,0.000031,0.000147,0.000000,0.000000,0.001049,0.367839,-0.000671,1.000000,0.000025 +32,2022-08-02 08:00:00,0.000000,0.000025,0.000000,0.000025,0.000003,0.000084,0.000030,0.000112,0.000000,0.000000,0.000995,0.367185,-0.000654,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000079,0.000030,0.000083,0.000000,0.000000,0.000946,0.366546,-0.000638,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000075,0.000029,0.000079,0.000000,0.000000,0.000899,0.365923,-0.000623,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000072,0.000028,0.000076,0.000000,0.000000,0.000855,0.365316,-0.000608,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000068,0.000028,0.000073,0.000000,0.000000,0.000815,0.364723,-0.000593,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000225,0.000002,0.000004,0.000002,0.000004,0.000065,0.000027,0.000072,0.000000,0.000000,0.000777,0.364360,-0.000362,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000233,0.000001,0.000001,0.000001,0.000005,0.000062,0.000027,0.000068,0.000122,0.000122,0.000741,0.363898,-0.000463,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000005,0.000059,0.000026,0.000065,0.000326,0.000326,0.000708,0.363217,-0.000681,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000200,0.000000,0.000000,0.000000,0.000005,0.000057,0.000025,0.000062,0.000483,0.000483,0.000676,0.362399,-0.000818,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000148,0.000000,0.000000,0.000000,0.000005,0.000054,0.000024,0.000059,0.000604,0.000604,0.000645,0.361432,-0.000967,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000233,0.000000,0.000000,0.000000,0.000005,0.000052,0.000023,0.000057,0.000688,0.000688,0.000616,0.360490,-0.000942,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000048,0.000000,0.000000,0.000000,0.000006,0.000049,0.000021,0.000055,0.000667,0.000667,0.000589,0.359411,-0.001079,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000050,0.000000,0.000000,0.000000,0.000006,0.000047,0.000020,0.000053,0.000622,0.000622,0.000562,0.358405,-0.001006,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000056,0.000000,0.000000,0.000000,0.000006,0.000045,0.000019,0.000051,0.000585,0.000585,0.000536,0.357465,-0.000940,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000043,0.000018,0.000049,0.000459,0.000459,0.000511,0.356616,-0.000849,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000041,0.000017,0.000047,0.000346,0.000346,0.000488,0.355898,-0.000718,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000039,0.000017,0.000046,0.000204,0.000204,0.000466,0.355336,-0.000562,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000135,0.000000,0.000001,0.000000,0.000007,0.000037,0.000016,0.000045,0.000051,0.000051,0.000445,0.355068,-0.000268,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000189,0.000002,0.000003,0.000002,0.000007,0.000036,0.000016,0.000045,0.000000,0.000000,0.000425,0.354908,-0.000160,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000135,0.000002,0.000001,0.000002,0.000008,0.000034,0.000016,0.000043,0.000000,0.000000,0.000407,0.354700,-0.000208,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000226,0.000003,0.000004,0.000003,0.000008,0.000033,0.000016,0.000043,0.000000,0.000000,0.000390,0.354583,-0.000117,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000187,0.000003,0.000003,0.000003,0.000008,0.000031,0.000016,0.000042,0.000000,0.000000,0.000375,0.354432,-0.000151,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000283,0.000005,0.000006,0.000005,0.000008,0.000030,0.000015,0.000043,0.000000,0.000000,0.000360,0.354376,-0.000056,1.000000,0.000003 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000009,0.000029,0.000015,0.000040,0.000000,0.000000,0.000346,0.354050,-0.000326,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000009,0.000028,0.000015,0.000038,0.000000,0.000000,0.000333,0.353732,-0.000318,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000027,0.000014,0.000036,0.000000,0.000000,0.000321,0.353422,-0.000310,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000026,0.000014,0.000035,0.000000,0.000000,0.000309,0.353120,-0.000302,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000025,0.000014,0.000035,0.000000,0.000000,0.000298,0.352825,-0.000295,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000024,0.000013,0.000034,0.000000,0.000000,0.000287,0.352537,-0.000288,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000023,0.000013,0.000033,0.000000,0.000000,0.000277,0.352257,-0.000281,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000022,0.000013,0.000033,0.000130,0.000130,0.000267,0.351856,-0.000401,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000021,0.000012,0.000032,0.000380,0.000380,0.000258,0.351220,-0.000635,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000021,0.000011,0.000032,0.000565,0.000565,0.000248,0.350421,-0.000800,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000020,0.000010,0.000031,0.000711,0.000711,0.000238,0.349498,-0.000922,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000019,0.000009,0.000030,0.000705,0.000705,0.000228,0.348604,-0.000895,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000018,0.000008,0.000030,0.000676,0.000676,0.000217,0.347821,-0.000783,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000017,0.000007,0.000029,0.000633,0.000633,0.000207,0.347099,-0.000721,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000016,0.000006,0.000029,0.000556,0.000556,0.000197,0.346471,-0.000629,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000016,0.000006,0.000028,0.000436,0.000436,0.000187,0.345975,-0.000496,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000015,0.000005,0.000028,0.000339,0.000339,0.000178,0.345585,-0.000389,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000014,0.000005,0.000027,0.000217,0.000217,0.000169,0.345324,-0.000261,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000013,0.000005,0.000027,0.000065,0.000065,0.000160,0.345156,-0.000168,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000013,0.000005,0.000026,0.000000,0.000000,0.000152,0.345056,-0.000100,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000012,0.000005,0.000026,0.000000,0.000000,0.000145,0.344958,-0.000098,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000011,0.000004,0.000025,0.000000,0.000000,0.000137,0.344862,-0.000096,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000011,0.000004,0.000025,0.000000,0.000000,0.000131,0.344769,-0.000093,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000010,0.000004,0.000025,0.000000,0.000000,0.000125,0.344678,-0.000091,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000010,0.000004,0.000025,0.000000,0.000000,0.000119,0.344589,-0.000089,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000009,0.000004,0.000025,0.000000,0.000000,0.000114,0.344503,-0.000087,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000009,0.000004,0.000024,0.000000,0.000000,0.000108,0.344418,-0.000085,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000009,0.000004,0.000024,0.000000,0.000000,0.000104,0.344336,-0.000082,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000008,0.000004,0.000024,0.000000,0.000000,0.000099,0.344255,-0.000080,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000008,0.000004,0.000024,0.000000,0.000000,0.000095,0.344177,-0.000078,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000008,0.000004,0.000024,0.000000,0.000000,0.000091,0.344100,-0.000077,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000007,0.000003,0.000024,0.000125,0.000125,0.000087,0.343904,-0.000197,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000007,0.000003,0.000024,0.000372,0.000372,0.000083,0.343471,-0.000433,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000007,0.000002,0.000024,0.000561,0.000561,0.000078,0.342864,-0.000607,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000006,0.000001,0.000023,0.000710,0.000710,0.000074,0.342127,-0.000737,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000006,0.000000,0.000023,0.000819,0.000819,0.000068,0.341302,-0.000825,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000005,0.000000,0.000023,0.000787,0.000787,0.000063,0.340514,-0.000787,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000005,0.000000,0.000023,0.000736,0.000734,0.000058,0.339780,-0.000734,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000004,0.000000,0.000023,0.000628,0.000624,0.000054,0.339156,-0.000624,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000004,0.000000,0.000023,0.000494,0.000490,0.000049,0.338666,-0.000490,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000004,0.000000,0.000023,0.000376,0.000372,0.000046,0.338294,-0.000372,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000004,0.000000,0.000022,0.000222,0.000219,0.000042,0.338076,-0.000219,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000003,0.000000,0.000022,0.000069,0.000068,0.000039,0.338008,-0.000068,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000003,0.000000,0.000022,0.000000,0.000000,0.000036,0.338008,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000003,0.000000,0.000022,0.000000,0.000000,0.000033,0.338008,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000003,0.000000,0.000022,0.000000,0.000000,0.000031,0.338008,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000002,0.000000,0.000022,0.000000,0.000000,0.000028,0.338008,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000002,0.000000,0.000022,0.000000,0.000000,0.000026,0.338008,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000002,0.000000,0.000023,0.000000,0.000000,0.000024,0.338008,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000002,0.000000,0.000023,0.000000,0.000000,0.000022,0.338008,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000002,0.000000,0.000023,0.000000,0.000000,0.000021,0.338008,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000002,0.000000,0.000023,0.000000,0.000000,0.000019,0.338008,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000023,0.000000,0.000000,0.000017,0.338008,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000000,0.000000,0.000016,0.338008,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000000,0.000000,0.000015,0.338008,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000142,0.000140,0.000014,0.337868,-0.000140,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000387,0.000381,0.000013,0.337487,-0.000381,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000571,0.000562,0.000012,0.336925,-0.000562,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000716,0.000702,0.000011,0.336224,-0.000702,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000730,0.000713,0.000010,0.335511,-0.000713,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000697,0.000678,0.000009,0.334833,-0.000678,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000623,0.000605,0.000009,0.334228,-0.000605,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000024,0.000581,0.000562,0.000008,0.333666,-0.000562,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000024,0.000463,0.000447,0.000007,0.333219,-0.000447,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000024,0.000347,0.000334,0.000007,0.332885,-0.000334,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000211,0.000203,0.000006,0.332682,-0.000203,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000072,0.000069,0.000006,0.332613,-0.000069,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000000,0.000000,0.000005,0.332613,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000005,0.332613,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000004,0.332613,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000004,0.332613,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000000,0.000000,0.000004,0.332613,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000000,0.000000,0.000004,0.332613,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000003,0.332613,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000003,0.332613,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000003,0.332613,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000003,0.332613,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000027,0.000000,0.000000,0.000002,0.332613,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000002,0.332613,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000121,0.000116,0.000002,0.332497,-0.000116,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000366,0.000351,0.000002,0.332146,-0.000351,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000553,0.000530,0.000002,0.331616,-0.000530,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000700,0.000669,0.000002,0.330947,-0.000669,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000810,0.000771,0.000001,0.330176,-0.000771,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000785,0.000745,0.000001,0.329432,-0.000745,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000732,0.000692,0.000001,0.328740,-0.000692,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000623,0.000587,0.000001,0.328154,-0.000587,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000492,0.000461,0.000001,0.327693,-0.000461,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000375,0.000351,0.000001,0.327342,-0.000351,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000216,0.000202,0.000001,0.327140,-0.000202,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000063,0.000058,0.000001,0.327082,-0.000058,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000001,0.327082,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.327082,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000118,0.000110,0.000000,0.326971,-0.000110,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000361,0.000337,0.000000,0.326635,-0.000337,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000547,0.000509,0.000000,0.326125,-0.000509,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000690,0.000641,0.000000,0.325484,-0.000641,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000751,0.000695,0.000000,0.324789,-0.000695,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000723,0.000667,0.000000,0.324123,-0.000667,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000669,0.000615,0.000000,0.323508,-0.000615,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000580,0.000531,0.000000,0.322977,-0.000531,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000452,0.000413,0.000000,0.322563,-0.000413,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000346,0.000315,0.000000,0.322248,-0.000315,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000178,0.000162,0.000000,0.322086,-0.000162,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000031,0.000028,0.000000,0.322058,-0.000028,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.322058,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000100,0.000091,0.000000,0.321967,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000346,0.000314,0.000000,0.321652,-0.000314,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000542,0.000492,0.000000,0.321160,-0.000492,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000691,0.000625,0.000000,0.320535,-0.000625,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000797,0.000719,0.000000,0.319816,-0.000719,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000769,0.000691,0.000000,0.319125,-0.000691,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000716,0.000641,0.000000,0.318484,-0.000641,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000619,0.000553,0.000000,0.317931,-0.000553,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000483,0.000429,0.000000,0.317502,-0.000429,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000364,0.000323,0.000000,0.317179,-0.000323,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000197,0.000175,0.000000,0.317004,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000040,0.000035,0.000000,0.316969,-0.000035,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.316969,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000110,0.000097,0.000000,0.316872,-0.000097,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620731.csv b/test/channel_loss/channel_forcing/et/cat-2620731.csv new file mode 100644 index 000000000..7e266c802 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620731.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000097,0.000000,0.000000,0.000000,0.000000,0.000811,0.000015,0.000811,0.000175,0.000175,0.008966,0.378877,-0.000304,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000740,0.000015,0.000740,0.000059,0.000059,0.008241,0.378600,-0.000277,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000676,0.000014,0.000676,0.000000,0.000000,0.007579,0.378388,-0.000213,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000619,0.000014,0.000619,0.000000,0.000000,0.006974,0.378181,-0.000207,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000567,0.000013,0.000567,0.000000,0.000000,0.006420,0.377980,-0.000201,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000520,0.000013,0.000520,0.000000,0.000000,0.005914,0.377784,-0.000195,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000477,0.000013,0.000477,0.000000,0.000000,0.005450,0.377594,-0.000190,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000438,0.000012,0.000438,0.000000,0.000000,0.005025,0.377410,-0.000185,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000402,0.000012,0.000402,0.000000,0.000000,0.004634,0.377230,-0.000180,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000370,0.000012,0.000370,0.000000,0.000000,0.004276,0.377055,-0.000175,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000341,0.000011,0.000341,0.000000,0.000000,0.003947,0.376885,-0.000170,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000314,0.000011,0.000314,0.000000,0.000000,0.003644,0.376720,-0.000165,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000289,0.000011,0.000289,0.000000,0.000000,0.003366,0.376560,-0.000161,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000266,0.000010,0.000266,0.000000,0.000000,0.003110,0.376404,-0.000156,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000246,0.000010,0.000246,0.000139,0.000139,0.002875,0.376117,-0.000287,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000227,0.000009,0.000227,0.000382,0.000382,0.002657,0.375601,-0.000515,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000209,0.000008,0.000209,0.000558,0.000558,0.002456,0.374929,-0.000672,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000193,0.000006,0.000193,0.000695,0.000695,0.002269,0.374141,-0.000787,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000178,0.000005,0.000178,0.000605,0.000605,0.002096,0.373464,-0.000677,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000867,0.000002,0.000004,0.000002,0.000000,0.000164,0.000005,0.000167,0.000580,0.000580,0.001937,0.373670,0.000205,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000898,0.000004,0.000006,0.000004,0.000000,0.000152,0.000006,0.000156,0.000535,0.000535,0.001792,0.373940,0.000271,1.000000,0.000004 +21,2022-08-01 21:00:00,0.000954,0.000010,0.000014,0.000010,0.000000,0.000140,0.000007,0.000151,0.000406,0.000406,0.001658,0.374376,0.000436,1.000000,0.000008 +22,2022-08-01 22:00:00,0.001071,0.000019,0.000026,0.000019,0.000000,0.000130,0.000008,0.000149,0.000325,0.000325,0.001536,0.374980,0.000604,1.000000,0.000014 +23,2022-08-01 23:00:00,0.001099,0.000028,0.000033,0.000028,0.000000,0.000120,0.000009,0.000148,0.000255,0.000255,0.001425,0.375656,0.000676,1.000000,0.000020 +24,2022-08-02 00:00:00,0.001115,0.000036,0.000041,0.000036,0.000000,0.000112,0.000010,0.000148,0.000168,0.000168,0.001324,0.376405,0.000749,1.000000,0.000025 +25,2022-08-02 01:00:00,0.001174,0.000048,0.000056,0.000048,0.000000,0.000104,0.000012,0.000152,0.000074,0.000074,0.001232,0.377269,0.000864,1.000000,0.000033 +26,2022-08-02 02:00:00,0.001243,0.000061,0.000071,0.000061,0.000000,0.000097,0.000014,0.000158,0.000000,0.000000,0.001150,0.378232,0.000964,1.000000,0.000043 +27,2022-08-02 03:00:00,0.001241,0.000068,0.000071,0.000068,0.000000,0.000090,0.000016,0.000159,0.000000,0.000000,0.001075,0.379168,0.000935,1.000000,0.000046 +28,2022-08-02 04:00:00,0.001214,0.000069,0.000068,0.000069,0.000001,0.000085,0.000017,0.000154,0.000000,0.000000,0.001008,0.380054,0.000886,1.000000,0.000045 +29,2022-08-02 05:00:00,0.001243,0.000070,0.000071,0.000070,0.000001,0.000080,0.000019,0.000151,0.000000,0.000000,0.000947,0.380940,0.000887,1.000000,0.000046 +30,2022-08-02 06:00:00,0.001300,0.000074,0.000078,0.000074,0.000001,0.000075,0.000021,0.000150,0.000000,0.000000,0.000893,0.381851,0.000911,1.000000,0.000049 +31,2022-08-02 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000001,0.000071,0.000020,0.000105,0.000000,0.000000,0.000843,0.381549,-0.000303,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000001,0.000067,0.000020,0.000083,0.000000,0.000000,0.000796,0.381254,-0.000294,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000063,0.000019,0.000064,0.000000,0.000000,0.000752,0.380968,-0.000286,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000060,0.000019,0.000060,0.000000,0.000000,0.000711,0.380690,-0.000278,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000056,0.000018,0.000057,0.000000,0.000000,0.000673,0.380420,-0.000270,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000053,0.000018,0.000054,0.000000,0.000000,0.000637,0.380157,-0.000263,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000156,0.000001,0.000001,0.000001,0.000001,0.000051,0.000017,0.000052,0.000000,0.000000,0.000604,0.380052,-0.000105,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000291,0.000001,0.000001,0.000001,0.000001,0.000048,0.000017,0.000050,0.000125,0.000125,0.000573,0.379959,-0.000093,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000189,0.000001,0.000000,0.000001,0.000001,0.000046,0.000017,0.000047,0.000324,0.000324,0.000544,0.379578,-0.000381,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000129,0.000000,0.000000,0.000000,0.000001,0.000043,0.000015,0.000045,0.000474,0.000474,0.000517,0.379003,-0.000575,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000071,0.000000,0.000000,0.000000,0.000001,0.000041,0.000014,0.000042,0.000593,0.000593,0.000490,0.378272,-0.000731,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000184,0.000000,0.000000,0.000000,0.000001,0.000039,0.000013,0.000040,0.000677,0.000677,0.000464,0.377588,-0.000684,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000059,0.000000,0.000000,0.000000,0.000001,0.000037,0.000011,0.000038,0.000651,0.000651,0.000438,0.376828,-0.000760,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000001,0.000035,0.000010,0.000036,0.000604,0.000604,0.000414,0.376138,-0.000690,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000001,0.000033,0.000009,0.000034,0.000563,0.000563,0.000390,0.375508,-0.000630,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000049,0.000000,0.000000,0.000000,0.000001,0.000031,0.000008,0.000032,0.000451,0.000451,0.000367,0.374990,-0.000518,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000054,0.000000,0.000000,0.000000,0.000002,0.000029,0.000007,0.000030,0.000341,0.000341,0.000345,0.374597,-0.000392,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000049,0.000000,0.000000,0.000000,0.000002,0.000027,0.000007,0.000029,0.000203,0.000203,0.000325,0.374345,-0.000252,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000262,0.000001,0.000002,0.000001,0.000002,0.000026,0.000007,0.000028,0.000052,0.000052,0.000306,0.374453,0.000107,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000262,0.000002,0.000003,0.000002,0.000002,0.000024,0.000007,0.000028,0.000000,0.000000,0.000289,0.374607,0.000154,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000339,0.000004,0.000005,0.000004,0.000002,0.000023,0.000007,0.000029,0.000000,0.000000,0.000273,0.374829,0.000222,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000295,0.000004,0.000004,0.000004,0.000002,0.000022,0.000008,0.000028,0.000000,0.000000,0.000260,0.375003,0.000174,1.000000,0.000003 +53,2022-08-03 05:00:00,0.000400,0.000006,0.000008,0.000006,0.000002,0.000021,0.000008,0.000029,0.000000,0.000000,0.000247,0.375272,0.000269,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000322,0.000005,0.000005,0.000005,0.000002,0.000020,0.000009,0.000027,0.000000,0.000000,0.000236,0.375459,0.000187,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000077,0.000003,0.000000,0.000003,0.000002,0.000019,0.000009,0.000024,0.000000,0.000000,0.000226,0.375408,-0.000051,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000077,0.000001,0.000000,0.000001,0.000002,0.000018,0.000008,0.000021,0.000000,0.000000,0.000216,0.375359,-0.000050,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000077,0.000000,0.000000,0.000000,0.000002,0.000017,0.000008,0.000020,0.000000,0.000000,0.000207,0.375310,-0.000048,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000085,0.000000,0.000000,0.000000,0.000002,0.000017,0.000008,0.000019,0.000000,0.000000,0.000199,0.375271,-0.000039,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000077,0.000000,0.000000,0.000000,0.000002,0.000016,0.000008,0.000019,0.000000,0.000000,0.000191,0.375226,-0.000046,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000085,0.000000,0.000000,0.000000,0.000002,0.000015,0.000008,0.000018,0.000000,0.000000,0.000184,0.375189,-0.000037,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000015,0.000008,0.000017,0.000000,0.000000,0.000177,0.375071,-0.000118,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000014,0.000007,0.000017,0.000134,0.000134,0.000171,0.374826,-0.000245,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000014,0.000007,0.000016,0.000379,0.000379,0.000164,0.374349,-0.000477,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000013,0.000005,0.000016,0.000555,0.000555,0.000156,0.373714,-0.000635,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000012,0.000004,0.000015,0.000698,0.000698,0.000147,0.372959,-0.000756,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000012,0.000002,0.000014,0.000696,0.000696,0.000138,0.372226,-0.000733,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000003,0.000011,0.000001,0.000014,0.000666,0.000666,0.000129,0.371603,-0.000623,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000029,0.000000,0.000000,0.000000,0.000003,0.000010,0.000000,0.000013,0.000617,0.000617,0.000119,0.371013,-0.000590,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000003,0.000009,0.000000,0.000012,0.000544,0.000544,0.000110,0.370531,-0.000481,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000003,0.000008,0.000000,0.000012,0.000434,0.000433,0.000102,0.370161,-0.000370,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000003,0.000008,0.000000,0.000011,0.000336,0.000335,0.000094,0.369855,-0.000306,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000029,0.000000,0.000000,0.000000,0.000003,0.000007,0.000000,0.000011,0.000215,0.000214,0.000087,0.369670,-0.000185,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000007,0.000000,0.000010,0.000066,0.000065,0.000080,0.369604,-0.000065,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000006,0.000000,0.000010,0.000000,0.000000,0.000074,0.369604,0.000000,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000006,0.000000,0.000009,0.000000,0.000000,0.000068,0.369604,0.000000,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000005,0.000000,0.000009,0.000000,0.000000,0.000063,0.369604,0.000000,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000005,0.000000,0.000009,0.000000,0.000000,0.000058,0.369604,0.000000,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000000,0.000000,0.000054,0.369604,0.000000,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000000,0.000000,0.000049,0.369604,0.000000,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000008,0.000000,0.000000,0.000046,0.369604,0.000000,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000004,0.000000,0.000007,0.000000,0.000000,0.000042,0.369604,0.000000,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000003,0.000000,0.000007,0.000000,0.000000,0.000039,0.369604,0.000000,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000003,0.000000,0.000007,0.000000,0.000000,0.000036,0.369604,0.000000,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000003,0.000000,0.000007,0.000000,0.000000,0.000033,0.369604,0.000000,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000003,0.000000,0.000007,0.000000,0.000000,0.000031,0.369604,0.000000,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000002,0.000000,0.000007,0.000129,0.000128,0.000028,0.369476,-0.000128,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000002,0.000000,0.000007,0.000373,0.000371,0.000026,0.369106,-0.000371,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000002,0.000000,0.000006,0.000554,0.000550,0.000024,0.368556,-0.000550,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000002,0.000000,0.000006,0.000697,0.000690,0.000022,0.367866,-0.000690,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000006,0.000805,0.000795,0.000021,0.367071,-0.000795,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000002,0.000000,0.000006,0.000774,0.000762,0.000019,0.366309,-0.000762,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000712,0.000699,0.000017,0.365611,-0.000699,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000604,0.000591,0.000016,0.365020,-0.000591,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000484,0.000472,0.000015,0.364548,-0.000472,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000369,0.000359,0.000014,0.364189,-0.000359,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000220,0.000214,0.000013,0.363975,-0.000214,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000070,0.000068,0.000012,0.363907,-0.000068,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000011,0.363907,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000010,0.363907,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000009,0.363907,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000009,0.363907,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000008,0.363907,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000007,0.363907,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000007,0.363907,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000001,0.000000,0.000006,0.000000,0.000000,0.000006,0.363907,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.363907,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000005,0.363907,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000005,0.363907,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000000,0.000000,0.000004,0.363907,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000144,0.000140,0.000004,0.363767,-0.000140,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000385,0.000373,0.000004,0.363394,-0.000373,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000562,0.000544,0.000004,0.362849,-0.000544,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000703,0.000679,0.000003,0.362170,-0.000679,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000717,0.000691,0.000003,0.361479,-0.000691,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000682,0.000655,0.000003,0.360824,-0.000655,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000610,0.000585,0.000003,0.360239,-0.000585,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000557,0.000532,0.000002,0.359707,-0.000532,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000450,0.000429,0.000002,0.359277,-0.000429,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000341,0.000324,0.000002,0.358953,-0.000324,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000006,0.000207,0.000197,0.000002,0.358757,-0.000197,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000073,0.000069,0.000002,0.358687,-0.000069,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000002,0.358687,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000000,0.000000,0.000001,0.358687,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000124,0.000118,0.000001,0.358569,-0.000118,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000366,0.000347,0.000001,0.358222,-0.000347,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000545,0.000516,0.000001,0.357706,-0.000516,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000685,0.000647,0.000000,0.357059,-0.000647,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000790,0.000745,0.000000,0.356314,-0.000745,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000767,0.000720,0.000000,0.355594,-0.000720,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000712,0.000666,0.000000,0.354928,-0.000666,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000604,0.000564,0.000000,0.354364,-0.000564,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000482,0.000449,0.000000,0.353915,-0.000449,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000007,0.000368,0.000341,0.000000,0.353574,-0.000341,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000000,0.000000,0.000008,0.000214,0.000198,0.000000,0.353376,-0.000198,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000064,0.000059,0.000000,0.353317,-0.000059,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000000,0.000000,0.000000,0.353317,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000122,0.000113,0.000000,0.353203,-0.000113,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000361,0.000334,0.000000,0.352869,-0.000334,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000539,0.000499,0.000000,0.352371,-0.000499,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000680,0.000627,0.000000,0.351744,-0.000627,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000742,0.000682,0.000000,0.351062,-0.000682,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000713,0.000654,0.000000,0.350408,-0.000654,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000658,0.000601,0.000000,0.349807,-0.000601,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000567,0.000517,0.000000,0.349290,-0.000517,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000450,0.000409,0.000000,0.348881,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000343,0.000312,0.000000,0.348569,-0.000312,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000000,0.000000,0.000008,0.000178,0.000161,0.000000,0.348408,-0.000161,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000032,0.000029,0.000000,0.348378,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.348378,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000103,0.000094,0.000000,0.348285,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000347,0.000314,0.000000,0.347971,-0.000314,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000535,0.000483,0.000000,0.347487,-0.000483,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000678,0.000612,0.000000,0.346876,-0.000612,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000781,0.000703,0.000000,0.346173,-0.000703,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000754,0.000676,0.000000,0.345497,-0.000676,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000692,0.000618,0.000000,0.344878,-0.000618,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000601,0.000536,0.000000,0.344343,-0.000536,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000476,0.000423,0.000000,0.343920,-0.000423,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000360,0.000319,0.000000,0.343601,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000197,0.000174,0.000000,0.343427,-0.000174,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000042,0.000037,0.000000,0.343390,-0.000037,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000000,0.000000,0.000009,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000000,0.000000,0.000000,0.343390,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000000,0.000000,0.000010,0.000113,0.000100,0.000000,0.343289,-0.000100,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620732.csv b/test/channel_loss/channel_forcing/et/cat-2620732.csv new file mode 100644 index 000000000..ecdf1f258 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620732.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000814,0.000051,0.000814,0.000175,0.000175,0.008998,0.376510,-0.002167,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000049,0.000746,0.000059,0.000059,0.008302,0.374442,-0.002069,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000685,0.000048,0.000685,0.000000,0.000000,0.007666,0.372476,-0.001966,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000629,0.000047,0.000629,0.000000,0.000000,0.007084,0.370552,-0.001923,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000579,0.000046,0.000579,0.000000,0.000000,0.006551,0.368671,-0.001882,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000533,0.000045,0.000534,0.000000,0.000000,0.006063,0.366830,-0.001841,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000492,0.000044,0.000492,0.000000,0.000000,0.005615,0.365029,-0.001801,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000454,0.000043,0.000455,0.000000,0.000000,0.005205,0.363267,-0.001762,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000420,0.000042,0.000420,0.000000,0.000000,0.004827,0.361543,-0.001724,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000388,0.000042,0.000389,0.000000,0.000000,0.004480,0.359856,-0.001687,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000360,0.000041,0.000360,0.000000,0.000000,0.004161,0.358206,-0.001650,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000333,0.000040,0.000334,0.000000,0.000000,0.003867,0.356591,-0.001614,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000309,0.000039,0.000310,0.000000,0.000000,0.003597,0.355012,-0.001580,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000287,0.000038,0.000289,0.000000,0.000000,0.003348,0.353466,-0.001545,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000267,0.000037,0.000268,0.000139,0.000139,0.003118,0.351819,-0.001648,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000248,0.000036,0.000250,0.000390,0.000390,0.002906,0.349961,-0.001858,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000231,0.000035,0.000233,0.000566,0.000566,0.002710,0.347972,-0.001989,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000215,0.000034,0.000217,0.000691,0.000691,0.002528,0.345903,-0.002069,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000201,0.000033,0.000203,0.000598,0.000598,0.002360,0.343970,-0.001933,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000867,0.000006,0.000011,0.000006,0.000003,0.000187,0.000032,0.000196,0.000569,0.000569,0.002206,0.342945,-0.001025,1.000000,0.000005 +20,2022-08-01 20:00:00,0.001085,0.000023,0.000038,0.000023,0.000003,0.000175,0.000032,0.000201,0.000518,0.000518,0.002063,0.342179,-0.000766,1.000000,0.000019 +21,2022-08-01 21:00:00,0.001156,0.000047,0.000065,0.000047,0.000003,0.000164,0.000032,0.000214,0.000404,0.000404,0.001931,0.341584,-0.000595,1.000000,0.000037 +22,2022-08-01 22:00:00,0.001133,0.000064,0.000073,0.000064,0.000003,0.000153,0.000031,0.000220,0.000329,0.000329,0.001809,0.341044,-0.000540,1.000000,0.000046 +23,2022-08-01 23:00:00,0.001137,0.000079,0.000087,0.000079,0.000004,0.000143,0.000031,0.000226,0.000255,0.000255,0.001696,0.340578,-0.000465,1.000000,0.000054 +24,2022-08-02 00:00:00,0.001139,0.000094,0.000105,0.000094,0.000004,0.000134,0.000031,0.000233,0.000169,0.000169,0.001593,0.340193,-0.000386,1.000000,0.000065 +25,2022-08-02 01:00:00,0.001261,0.000127,0.000152,0.000127,0.000004,0.000126,0.000031,0.000258,0.000076,0.000076,0.001497,0.339978,-0.000214,1.000000,0.000089 +26,2022-08-02 02:00:00,0.001347,0.000165,0.000193,0.000165,0.000005,0.000119,0.000031,0.000289,0.000000,0.000000,0.001409,0.339887,-0.000091,1.000000,0.000117 +27,2022-08-02 03:00:00,0.001304,0.000179,0.000182,0.000179,0.000005,0.000112,0.000031,0.000296,0.000000,0.000000,0.001328,0.339767,-0.000120,1.000000,0.000120 +28,2022-08-02 04:00:00,0.001298,0.000183,0.000180,0.000183,0.000005,0.000105,0.000031,0.000294,0.000000,0.000000,0.001253,0.339646,-0.000122,1.000000,0.000117 +29,2022-08-02 05:00:00,0.001329,0.000185,0.000188,0.000185,0.000006,0.000100,0.000030,0.000290,0.000000,0.000000,0.001184,0.339548,-0.000097,1.000000,0.000121 +30,2022-08-02 06:00:00,0.001349,0.000190,0.000194,0.000190,0.000006,0.000094,0.000030,0.000290,0.000000,0.000000,0.001120,0.339469,-0.000080,1.000000,0.000125 +31,2022-08-02 07:00:00,0.000000,0.000086,0.000000,0.000086,0.000006,0.000089,0.000030,0.000182,0.000000,0.000000,0.001061,0.338260,-0.001209,1.000000,0.000039 +32,2022-08-02 08:00:00,0.000000,0.000039,0.000000,0.000039,0.000007,0.000084,0.000029,0.000130,0.000000,0.000000,0.001005,0.337077,-0.001183,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000080,0.000028,0.000087,0.000000,0.000000,0.000954,0.335919,-0.001157,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000076,0.000028,0.000084,0.000000,0.000000,0.000906,0.334787,-0.001132,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000072,0.000027,0.000080,0.000000,0.000000,0.000861,0.333680,-0.001108,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000069,0.000027,0.000077,0.000000,0.000000,0.000819,0.332596,-0.001084,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000200,0.000003,0.000005,0.000003,0.000009,0.000065,0.000026,0.000077,0.000000,0.000000,0.000780,0.331727,-0.000869,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000300,0.000003,0.000004,0.000003,0.000009,0.000062,0.000026,0.000075,0.000128,0.000128,0.000743,0.330850,-0.000876,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000132,0.000002,0.000000,0.000002,0.000010,0.000059,0.000025,0.000071,0.000332,0.000332,0.000709,0.329632,-0.001218,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000126,0.000001,0.000000,0.000001,0.000010,0.000057,0.000024,0.000067,0.000479,0.000479,0.000676,0.328291,-0.001342,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000126,0.000000,0.000000,0.000000,0.000011,0.000054,0.000024,0.000065,0.000590,0.000590,0.000646,0.326870,-0.001420,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000189,0.000000,0.000000,0.000000,0.000011,0.000052,0.000023,0.000063,0.000673,0.000673,0.000617,0.325461,-0.001409,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000049,0.000022,0.000061,0.000633,0.000633,0.000590,0.323997,-0.001464,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000047,0.000021,0.000059,0.000585,0.000585,0.000564,0.322613,-0.001384,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000012,0.000045,0.000021,0.000057,0.000558,0.000558,0.000539,0.321284,-0.001328,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000043,0.000020,0.000056,0.000456,0.000456,0.000516,0.320085,-0.001199,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000041,0.000019,0.000055,0.000343,0.000343,0.000494,0.319022,-0.001063,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000040,0.000019,0.000053,0.000206,0.000206,0.000473,0.318116,-0.000906,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000252,0.000003,0.000005,0.000003,0.000014,0.000038,0.000018,0.000055,0.000053,0.000053,0.000454,0.317559,-0.000557,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000274,0.000006,0.000009,0.000006,0.000015,0.000036,0.000018,0.000057,0.000000,0.000000,0.000436,0.317084,-0.000475,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000355,0.000011,0.000014,0.000011,0.000015,0.000035,0.000018,0.000061,0.000000,0.000000,0.000419,0.316693,-0.000391,1.000000,0.000008 +52,2022-08-03 04:00:00,0.000294,0.000011,0.000010,0.000011,0.000016,0.000034,0.000018,0.000060,0.000000,0.000000,0.000403,0.316254,-0.000438,1.000000,0.000007 +53,2022-08-03 05:00:00,0.000398,0.000015,0.000018,0.000015,0.000016,0.000032,0.000018,0.000064,0.000000,0.000000,0.000388,0.315920,-0.000334,1.000000,0.000010 +54,2022-08-03 06:00:00,0.000300,0.000012,0.000010,0.000012,0.000017,0.000031,0.000017,0.000060,0.000000,0.000000,0.000374,0.315504,-0.000416,1.000000,0.000008 +55,2022-08-03 07:00:00,0.000010,0.000006,0.000000,0.000006,0.000017,0.000030,0.000017,0.000053,0.000000,0.000000,0.000361,0.314823,-0.000681,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000010,0.000002,0.000000,0.000002,0.000018,0.000029,0.000017,0.000049,0.000000,0.000000,0.000348,0.314158,-0.000666,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000010,0.000000,0.000000,0.000000,0.000018,0.000028,0.000016,0.000046,0.000000,0.000000,0.000337,0.313506,-0.000652,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000029,0.000000,0.000000,0.000000,0.000019,0.000027,0.000016,0.000046,0.000000,0.000000,0.000325,0.312887,-0.000619,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000010,0.000000,0.000000,0.000000,0.000019,0.000026,0.000016,0.000046,0.000000,0.000000,0.000315,0.312263,-0.000624,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000029,0.000000,0.000000,0.000000,0.000020,0.000025,0.000015,0.000045,0.000000,0.000000,0.000305,0.311671,-0.000592,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000025,0.000015,0.000045,0.000000,0.000000,0.000295,0.311063,-0.000607,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000024,0.000015,0.000045,0.000134,0.000134,0.000286,0.310338,-0.000726,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000023,0.000014,0.000044,0.000389,0.000389,0.000277,0.309378,-0.000959,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000022,0.000013,0.000044,0.000564,0.000564,0.000268,0.308269,-0.001109,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000022,0.000013,0.000044,0.000696,0.000696,0.000259,0.307055,-0.001215,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000021,0.000012,0.000044,0.000692,0.000692,0.000250,0.305870,-0.001185,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000070,0.000000,0.000000,0.000000,0.000023,0.000020,0.000012,0.000044,0.000658,0.000658,0.000242,0.304813,-0.001057,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000019,0.000011,0.000043,0.000602,0.000602,0.000233,0.303827,-0.000986,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000070,0.000000,0.000000,0.000000,0.000024,0.000019,0.000011,0.000043,0.000539,0.000539,0.000225,0.302930,-0.000897,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000070,0.000000,0.000000,0.000000,0.000025,0.000018,0.000010,0.000043,0.000436,0.000436,0.000217,0.302154,-0.000777,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000017,0.000010,0.000043,0.000338,0.000338,0.000209,0.301482,-0.000671,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000017,0.000009,0.000043,0.000219,0.000219,0.000202,0.300943,-0.000539,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000016,0.000009,0.000043,0.000067,0.000067,0.000195,0.300502,-0.000441,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000016,0.000009,0.000043,0.000000,0.000000,0.000188,0.300136,-0.000366,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000015,0.000009,0.000043,0.000000,0.000000,0.000182,0.299779,-0.000358,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000015,0.000009,0.000043,0.000000,0.000000,0.000176,0.299429,-0.000350,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000014,0.000008,0.000043,0.000000,0.000000,0.000170,0.299086,-0.000343,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000014,0.000008,0.000043,0.000000,0.000000,0.000165,0.298751,-0.000335,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000013,0.000008,0.000043,0.000000,0.000000,0.000159,0.298423,-0.000328,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000013,0.000008,0.000043,0.000000,0.000000,0.000154,0.298102,-0.000321,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000012,0.000008,0.000043,0.000000,0.000000,0.000150,0.297789,-0.000314,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000012,0.000008,0.000043,0.000000,0.000000,0.000145,0.297482,-0.000307,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000012,0.000007,0.000044,0.000000,0.000000,0.000141,0.297181,-0.000300,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000011,0.000007,0.000044,0.000000,0.000000,0.000137,0.296887,-0.000294,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000007,0.000044,0.000000,0.000000,0.000133,0.296600,-0.000288,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000007,0.000044,0.000129,0.000129,0.000129,0.296192,-0.000408,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000007,0.000044,0.000382,0.000382,0.000125,0.295546,-0.000646,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000006,0.000045,0.000564,0.000564,0.000121,0.294736,-0.000810,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000006,0.000045,0.000697,0.000697,0.000117,0.293813,-0.000923,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000005,0.000045,0.000800,0.000800,0.000112,0.292809,-0.001004,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000005,0.000045,0.000759,0.000759,0.000108,0.291867,-0.000942,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000009,0.000004,0.000045,0.000690,0.000690,0.000103,0.291013,-0.000854,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000004,0.000045,0.000588,0.000588,0.000099,0.290277,-0.000735,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000008,0.000003,0.000045,0.000479,0.000479,0.000094,0.289665,-0.000613,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000046,0.000372,0.000372,0.000090,0.289169,-0.000495,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000007,0.000003,0.000046,0.000222,0.000222,0.000085,0.288831,-0.000338,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000007,0.000003,0.000046,0.000071,0.000071,0.000081,0.288649,-0.000183,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000078,0.288539,-0.000109,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000000,0.000000,0.000074,0.288433,-0.000107,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000006,0.000003,0.000047,0.000000,0.000000,0.000071,0.288328,-0.000105,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000006,0.000003,0.000047,0.000000,0.000000,0.000068,0.288226,-0.000102,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000065,0.288126,-0.000100,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000062,0.288028,-0.000098,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000002,0.000048,0.000000,0.000000,0.000059,0.287932,-0.000096,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000002,0.000048,0.000000,0.000000,0.000057,0.287838,-0.000094,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000005,0.000002,0.000048,0.000000,0.000000,0.000055,0.287747,-0.000092,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000000,0.000000,0.000052,0.287657,-0.000090,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000050,0.287569,-0.000088,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000049,0.287483,-0.000086,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000143,0.000143,0.000047,0.287260,-0.000224,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000002,0.000050,0.000394,0.000394,0.000045,0.286795,-0.000465,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000001,0.000050,0.000570,0.000570,0.000043,0.286169,-0.000626,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000001,0.000050,0.000700,0.000700,0.000040,0.285428,-0.000740,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000001,0.000050,0.000710,0.000710,0.000038,0.284694,-0.000735,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000000,0.000051,0.000672,0.000672,0.000035,0.284013,-0.000681,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000000,0.000051,0.000603,0.000603,0.000032,0.283409,-0.000603,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000002,0.000000,0.000051,0.000553,0.000552,0.000030,0.282857,-0.000552,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000002,0.000000,0.000051,0.000455,0.000453,0.000027,0.282404,-0.000453,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000000,0.000052,0.000339,0.000336,0.000025,0.282068,-0.000336,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000000,0.000052,0.000208,0.000206,0.000023,0.281862,-0.000206,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000000,0.000052,0.000075,0.000074,0.000022,0.281787,-0.000074,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000000,0.000000,0.000020,0.281787,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000000,0.000000,0.000018,0.281787,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000017,0.281787,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000054,0.000000,0.000000,0.000016,0.281787,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000014,0.281787,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000013,0.281787,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000012,0.281787,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000011,0.281787,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000011,0.281787,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000010,0.281787,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000000,0.000000,0.000009,0.281787,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000056,0.000000,0.000000,0.000008,0.281787,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000125,0.000123,0.000008,0.281664,-0.000123,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000375,0.000370,0.000007,0.281294,-0.000370,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000057,0.000552,0.000544,0.000007,0.280750,-0.000544,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000682,0.000670,0.000006,0.280080,-0.000670,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000781,0.000763,0.000006,0.279317,-0.000763,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000749,0.000728,0.000005,0.278589,-0.000728,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000688,0.000666,0.000005,0.277923,-0.000666,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000595,0.000574,0.000004,0.277349,-0.000574,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000485,0.000465,0.000004,0.276884,-0.000465,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000370,0.000354,0.000004,0.276530,-0.000354,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000218,0.000208,0.000003,0.276322,-0.000208,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000065,0.000062,0.000003,0.276261,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000003,0.276261,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000003,0.276261,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.276261,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000001,0.276261,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000001,0.276261,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.276261,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000124,0.000119,0.000001,0.276142,-0.000119,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000371,0.000353,0.000001,0.275789,-0.000353,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000066,0.000547,0.000520,0.000001,0.275269,-0.000520,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000678,0.000642,0.000001,0.274627,-0.000642,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000743,0.000701,0.000001,0.273927,-0.000701,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000704,0.000660,0.000001,0.273267,-0.000660,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000645,0.000602,0.000001,0.272664,-0.000602,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000566,0.000527,0.000001,0.272138,-0.000527,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000460,0.000426,0.000001,0.271712,-0.000426,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000350,0.000323,0.000001,0.271389,-0.000323,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000182,0.000168,0.000001,0.271221,-0.000168,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000034,0.000031,0.000000,0.271190,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.271190,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000106,0.000098,0.000000,0.271092,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000357,0.000328,0.000000,0.270764,-0.000328,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000543,0.000498,0.000000,0.270266,-0.000498,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000676,0.000618,0.000000,0.269648,-0.000618,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000782,0.000712,0.000000,0.268936,-0.000712,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000740,0.000670,0.000000,0.268266,-0.000670,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000671,0.000605,0.000000,0.267661,-0.000605,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000594,0.000533,0.000000,0.267128,-0.000533,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000479,0.000428,0.000000,0.266700,-0.000428,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000362,0.000323,0.000000,0.266377,-0.000323,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000200,0.000178,0.000000,0.266198,-0.000178,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000043,0.000038,0.000000,0.266160,-0.000038,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.266160,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000114,0.000101,0.000000,0.266059,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620733.csv b/test/channel_loss/channel_forcing/et/cat-2620733.csv new file mode 100644 index 000000000..4c9e50376 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620733.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000071,0.000000,0.000000,0.000000,0.000000,0.000813,0.000048,0.000813,0.000182,0.000182,0.008996,0.377725,-0.001457,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000047,0.000745,0.000061,0.000061,0.008298,0.376350,-0.001374,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000046,0.000684,0.000000,0.000000,0.007660,0.375068,-0.001282,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000045,0.000628,0.000000,0.000000,0.007076,0.373817,-0.001251,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000044,0.000578,0.000000,0.000000,0.006542,0.372596,-0.001222,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000043,0.000533,0.000000,0.000000,0.006052,0.371403,-0.001192,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000042,0.000491,0.000000,0.000000,0.005603,0.370239,-0.001164,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000041,0.000453,0.000000,0.000000,0.005191,0.369103,-0.001136,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000419,0.000040,0.000419,0.000000,0.000000,0.004812,0.367993,-0.001109,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000387,0.000039,0.000387,0.000000,0.000000,0.004464,0.366910,-0.001083,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000358,0.000038,0.000359,0.000000,0.000000,0.004144,0.365853,-0.001057,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000037,0.000332,0.000000,0.000000,0.003849,0.364821,-0.001032,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000036,0.000308,0.000000,0.000000,0.003578,0.363814,-0.001007,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000035,0.000286,0.000000,0.000000,0.003328,0.362830,-0.000983,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000265,0.000034,0.000266,0.000142,0.000142,0.003097,0.361732,-0.001099,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000033,0.000247,0.000390,0.000390,0.002884,0.360417,-0.001315,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000229,0.000032,0.000230,0.000567,0.000567,0.002686,0.358960,-0.001456,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000213,0.000031,0.000215,0.000709,0.000709,0.002504,0.357401,-0.001560,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000198,0.000029,0.000200,0.000623,0.000623,0.002335,0.355961,-0.001439,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000867,0.000003,0.000006,0.000003,0.000002,0.000185,0.000029,0.000190,0.000598,0.000598,0.002179,0.355421,-0.000540,1.000000,0.000003 +20,2022-08-01 20:00:00,0.001034,0.000012,0.000020,0.000012,0.000002,0.000172,0.000029,0.000187,0.000548,0.000548,0.002035,0.355093,-0.000328,1.000000,0.000010 +21,2022-08-01 21:00:00,0.001087,0.000027,0.000038,0.000027,0.000002,0.000161,0.000028,0.000190,0.000414,0.000414,0.001902,0.354938,-0.000155,1.000000,0.000021 +22,2022-08-01 22:00:00,0.001062,0.000037,0.000043,0.000037,0.000002,0.000151,0.000028,0.000190,0.000338,0.000338,0.001780,0.354831,-0.000107,1.000000,0.000027 +23,2022-08-01 23:00:00,0.001057,0.000047,0.000051,0.000047,0.000002,0.000141,0.000028,0.000190,0.000264,0.000264,0.001667,0.354785,-0.000046,1.000000,0.000032 +24,2022-08-02 00:00:00,0.001082,0.000058,0.000067,0.000058,0.000003,0.000132,0.000028,0.000193,0.000175,0.000175,0.001563,0.354836,0.000051,1.000000,0.000040 +25,2022-08-02 01:00:00,0.001118,0.000075,0.000087,0.000075,0.000003,0.000124,0.000028,0.000201,0.000077,0.000077,0.001468,0.354998,0.000162,1.000000,0.000052 +26,2022-08-02 02:00:00,0.001203,0.000098,0.000115,0.000098,0.000003,0.000116,0.000029,0.000217,0.000000,0.000000,0.001380,0.355287,0.000289,1.000000,0.000069 +27,2022-08-02 03:00:00,0.001208,0.000110,0.000116,0.000110,0.000003,0.000109,0.000029,0.000222,0.000000,0.000000,0.001300,0.355573,0.000286,1.000000,0.000075 +28,2022-08-02 04:00:00,0.001181,0.000113,0.000111,0.000113,0.000003,0.000103,0.000029,0.000219,0.000000,0.000000,0.001226,0.355830,0.000257,1.000000,0.000073 +29,2022-08-02 05:00:00,0.001257,0.000119,0.000125,0.000119,0.000004,0.000097,0.000029,0.000220,0.000000,0.000000,0.001158,0.356141,0.000312,1.000000,0.000078 +30,2022-08-02 06:00:00,0.001300,0.000127,0.000133,0.000127,0.000004,0.000092,0.000030,0.000222,0.000000,0.000000,0.001096,0.356480,0.000338,1.000000,0.000085 +31,2022-08-02 07:00:00,0.000000,0.000058,0.000000,0.000058,0.000004,0.000087,0.000029,0.000149,0.000000,0.000000,0.001037,0.355671,-0.000809,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000004,0.000083,0.000028,0.000114,0.000000,0.000000,0.000983,0.354881,-0.000790,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000078,0.000028,0.000083,0.000000,0.000000,0.000933,0.354110,-0.000771,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000074,0.000027,0.000079,0.000000,0.000000,0.000885,0.353358,-0.000753,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000071,0.000026,0.000076,0.000000,0.000000,0.000841,0.352623,-0.000735,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000067,0.000026,0.000072,0.000000,0.000000,0.000800,0.351906,-0.000717,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000148,0.000001,0.000002,0.000001,0.000006,0.000064,0.000025,0.000070,0.000000,0.000000,0.000761,0.351348,-0.000558,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000290,0.000002,0.000002,0.000002,0.000006,0.000061,0.000025,0.000068,0.000127,0.000127,0.000725,0.350818,-0.000530,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000126,0.000001,0.000000,0.000001,0.000006,0.000058,0.000024,0.000065,0.000331,0.000331,0.000691,0.349945,-0.000874,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000055,0.000023,0.000062,0.000484,0.000484,0.000659,0.348942,-0.001003,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000088,0.000000,0.000000,0.000000,0.000007,0.000053,0.000022,0.000059,0.000606,0.000606,0.000629,0.347806,-0.001136,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000050,0.000021,0.000057,0.000695,0.000695,0.000600,0.346710,-0.001096,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000048,0.000020,0.000055,0.000665,0.000665,0.000572,0.345546,-0.001164,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000046,0.000019,0.000053,0.000616,0.000616,0.000546,0.344458,-0.001088,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000044,0.000018,0.000051,0.000573,0.000573,0.000521,0.343437,-0.001021,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000042,0.000018,0.000050,0.000461,0.000461,0.000497,0.342550,-0.000887,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000040,0.000017,0.000048,0.000350,0.000350,0.000474,0.341793,-0.000757,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000038,0.000016,0.000047,0.000209,0.000209,0.000452,0.341192,-0.000602,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000313,0.000003,0.000006,0.000003,0.000009,0.000036,0.000016,0.000048,0.000055,0.000055,0.000433,0.340993,-0.000199,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000329,0.000006,0.000009,0.000006,0.000009,0.000035,0.000016,0.000050,0.000000,0.000000,0.000414,0.340865,-0.000128,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000448,0.000012,0.000016,0.000012,0.000010,0.000033,0.000016,0.000055,0.000000,0.000000,0.000397,0.340849,-0.000016,1.000000,0.000009 +52,2022-08-03 04:00:00,0.000346,0.000011,0.000010,0.000011,0.000010,0.000032,0.000016,0.000053,0.000000,0.000000,0.000381,0.340740,-0.000109,1.000000,0.000008 +53,2022-08-03 05:00:00,0.000496,0.000017,0.000020,0.000017,0.000010,0.000031,0.000016,0.000058,0.000000,0.000000,0.000366,0.340770,0.000030,1.000000,0.000011 +54,2022-08-03 06:00:00,0.000393,0.000014,0.000013,0.000014,0.000011,0.000029,0.000016,0.000054,0.000000,0.000000,0.000353,0.340706,-0.000064,1.000000,0.000010 +55,2022-08-03 07:00:00,0.000100,0.000008,0.000001,0.000008,0.000011,0.000028,0.000016,0.000047,0.000000,0.000000,0.000340,0.340369,-0.000337,1.000000,0.000003 +56,2022-08-03 08:00:00,0.000100,0.000003,0.000001,0.000003,0.000011,0.000027,0.000015,0.000042,0.000000,0.000000,0.000328,0.340040,-0.000329,1.000000,0.000001 +57,2022-08-03 09:00:00,0.000100,0.000001,0.000001,0.000001,0.000012,0.000026,0.000015,0.000039,0.000000,0.000000,0.000317,0.339719,-0.000321,1.000000,0.000001 +58,2022-08-03 10:00:00,0.000100,0.000001,0.000001,0.000001,0.000012,0.000026,0.000015,0.000038,0.000000,0.000000,0.000306,0.339406,-0.000313,1.000000,0.000001 +59,2022-08-03 11:00:00,0.000100,0.000001,0.000001,0.000001,0.000012,0.000025,0.000015,0.000038,0.000000,0.000000,0.000296,0.339100,-0.000306,1.000000,0.000001 +60,2022-08-03 12:00:00,0.000100,0.000001,0.000001,0.000001,0.000013,0.000024,0.000014,0.000037,0.000000,0.000000,0.000286,0.338801,-0.000299,1.000000,0.000001 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000023,0.000014,0.000036,0.000000,0.000000,0.000277,0.338413,-0.000388,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000022,0.000013,0.000036,0.000137,0.000137,0.000268,0.337900,-0.000513,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000022,0.000013,0.000035,0.000388,0.000388,0.000259,0.337154,-0.000746,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000021,0.000012,0.000035,0.000567,0.000567,0.000251,0.336252,-0.000902,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000020,0.000011,0.000034,0.000712,0.000712,0.000242,0.335229,-0.001023,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000019,0.000010,0.000034,0.000718,0.000718,0.000232,0.334224,-0.001005,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000069,0.000000,0.000000,0.000000,0.000015,0.000019,0.000010,0.000033,0.000681,0.000681,0.000223,0.333347,-0.000877,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000018,0.000009,0.000033,0.000629,0.000629,0.000214,0.332536,-0.000811,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000069,0.000000,0.000000,0.000000,0.000016,0.000017,0.000008,0.000033,0.000555,0.000555,0.000205,0.331822,-0.000714,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000069,0.000000,0.000000,0.000000,0.000016,0.000016,0.000008,0.000032,0.000447,0.000447,0.000197,0.331231,-0.000591,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000016,0.000007,0.000032,0.000346,0.000346,0.000188,0.330747,-0.000484,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000015,0.000007,0.000032,0.000221,0.000221,0.000180,0.330397,-0.000350,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000014,0.000007,0.000031,0.000069,0.000069,0.000172,0.330141,-0.000256,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000014,0.000007,0.000031,0.000000,0.000000,0.000165,0.329958,-0.000182,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000006,0.000031,0.000000,0.000000,0.000158,0.329781,-0.000178,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000013,0.000006,0.000030,0.000000,0.000000,0.000152,0.329607,-0.000174,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000006,0.000030,0.000000,0.000000,0.000146,0.329438,-0.000169,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000006,0.000030,0.000000,0.000000,0.000140,0.329272,-0.000165,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000006,0.000030,0.000000,0.000000,0.000135,0.329111,-0.000161,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000006,0.000030,0.000000,0.000000,0.000130,0.328953,-0.000158,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000006,0.000030,0.000000,0.000000,0.000125,0.328799,-0.000154,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000010,0.000005,0.000030,0.000000,0.000000,0.000120,0.328649,-0.000150,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000010,0.000005,0.000030,0.000000,0.000000,0.000116,0.328502,-0.000147,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000005,0.000030,0.000000,0.000000,0.000112,0.328359,-0.000143,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000005,0.000030,0.000000,0.000000,0.000108,0.328219,-0.000140,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000005,0.000030,0.000131,0.000131,0.000104,0.327955,-0.000265,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000004,0.000030,0.000381,0.000381,0.000100,0.327453,-0.000502,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000004,0.000030,0.000563,0.000563,0.000096,0.326785,-0.000668,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000003,0.000030,0.000711,0.000711,0.000091,0.325988,-0.000797,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000002,0.000030,0.000823,0.000823,0.000086,0.325101,-0.000887,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000002,0.000029,0.000793,0.000793,0.000081,0.324265,-0.000837,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000001,0.000029,0.000726,0.000726,0.000076,0.323513,-0.000751,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000000,0.000029,0.000611,0.000611,0.000070,0.322893,-0.000621,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000495,0.000495,0.000065,0.322397,-0.000495,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000377,0.000376,0.000060,0.322021,-0.000376,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000225,0.000224,0.000055,0.321796,-0.000224,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000075,0.000074,0.000051,0.321722,-0.000074,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000000,0.000000,0.000047,0.321722,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000000,0.000000,0.000043,0.321722,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000029,0.000000,0.000000,0.000040,0.321722,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000037,0.321722,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000034,0.321722,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000032,0.321722,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000029,0.321722,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000027,0.321722,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000025,0.321722,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000029,0.000000,0.000000,0.000023,0.321722,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000021,0.321722,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000019,0.321722,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000030,0.000148,0.000147,0.000018,0.321575,-0.000147,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000393,0.000391,0.000017,0.321183,-0.000391,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000572,0.000568,0.000015,0.320615,-0.000568,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000717,0.000710,0.000014,0.319905,-0.000710,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000031,0.000733,0.000723,0.000013,0.319182,-0.000723,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000698,0.000686,0.000012,0.318496,-0.000686,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000620,0.000607,0.000011,0.317889,-0.000607,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000560,0.000547,0.000010,0.317342,-0.000547,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000031,0.000453,0.000441,0.000009,0.316901,-0.000441,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000342,0.000332,0.000009,0.316569,-0.000332,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000209,0.000203,0.000008,0.316366,-0.000203,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000075,0.000073,0.000007,0.316293,-0.000073,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000032,0.000000,0.000000,0.000007,0.316293,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000032,0.000000,0.000000,0.000006,0.316293,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000006,0.316293,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.316293,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.316293,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.316293,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.316293,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.316293,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.316293,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.316293,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.316293,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000003,0.316293,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000127,0.000123,0.000003,0.316170,-0.000123,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000375,0.000362,0.000002,0.315808,-0.000362,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000555,0.000536,0.000002,0.315272,-0.000536,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000699,0.000673,0.000002,0.314600,-0.000673,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000805,0.000772,0.000002,0.313828,-0.000772,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000778,0.000743,0.000002,0.313085,-0.000743,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000721,0.000686,0.000002,0.312399,-0.000686,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000611,0.000579,0.000002,0.311820,-0.000579,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000493,0.000465,0.000001,0.311355,-0.000465,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000374,0.000352,0.000001,0.311003,-0.000352,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000218,0.000205,0.000001,0.310798,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000067,0.000063,0.000001,0.310735,-0.000063,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.310735,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.310735,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.310735,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310735,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000125,0.000118,0.000000,0.310617,-0.000118,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000369,0.000346,0.000000,0.310271,-0.000346,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000549,0.000514,0.000000,0.309757,-0.000514,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000694,0.000647,0.000000,0.309110,-0.000647,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000762,0.000708,0.000000,0.308401,-0.000708,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000732,0.000678,0.000000,0.307724,-0.000678,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000671,0.000619,0.000000,0.307105,-0.000619,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000577,0.000530,0.000000,0.306574,-0.000530,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000462,0.000424,0.000000,0.306151,-0.000424,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000352,0.000322,0.000000,0.305829,-0.000322,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000184,0.000167,0.000000,0.305661,-0.000167,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000034,0.000031,0.000000,0.305630,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305630,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000106,0.000097,0.000000,0.305533,-0.000097,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000354,0.000323,0.000000,0.305211,-0.000323,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000544,0.000495,0.000000,0.304716,-0.000495,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000692,0.000627,0.000000,0.304088,-0.000627,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000800,0.000723,0.000000,0.303366,-0.000723,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000773,0.000695,0.000000,0.302670,-0.000695,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000705,0.000631,0.000000,0.302039,-0.000631,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000610,0.000544,0.000000,0.301494,-0.000544,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000488,0.000434,0.000000,0.301060,-0.000434,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000368,0.000327,0.000000,0.300734,-0.000327,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000203,0.000180,0.000000,0.300554,-0.000180,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000046,0.000040,0.000000,0.300513,-0.000040,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.300513,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000115,0.000102,0.000000,0.300411,-0.000102,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620734.csv b/test/channel_loss/channel_forcing/et/cat-2620734.csv new file mode 100644 index 000000000..8abd44f0e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620734.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000813,0.000045,0.000813,0.000170,0.000170,0.008994,0.378925,-0.001368,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000044,0.000745,0.000057,0.000057,0.008293,0.377638,-0.001288,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000683,0.000043,0.000683,0.000000,0.000000,0.007653,0.376437,-0.001201,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000042,0.000628,0.000000,0.000000,0.007067,0.375265,-0.001172,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000041,0.000577,0.000000,0.000000,0.006531,0.374120,-0.001144,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000531,0.000040,0.000531,0.000000,0.000000,0.006040,0.373004,-0.001117,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000490,0.000039,0.000490,0.000000,0.000000,0.005590,0.371914,-0.001090,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000452,0.000038,0.000452,0.000000,0.000000,0.005176,0.370850,-0.001064,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000417,0.000037,0.000417,0.000000,0.000000,0.004796,0.369812,-0.001038,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000385,0.000036,0.000386,0.000000,0.000000,0.004447,0.368798,-0.001014,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000357,0.000035,0.000357,0.000000,0.000000,0.004126,0.367809,-0.000989,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000330,0.000035,0.000331,0.000000,0.000000,0.003831,0.366843,-0.000966,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000306,0.000034,0.000307,0.000000,0.000000,0.003559,0.365901,-0.000942,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000284,0.000033,0.000284,0.000000,0.000000,0.003308,0.364981,-0.000920,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000263,0.000032,0.000264,0.000135,0.000135,0.003077,0.363952,-0.001029,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000245,0.000031,0.000246,0.000383,0.000383,0.002863,0.362705,-0.001247,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000227,0.000030,0.000228,0.000562,0.000562,0.002666,0.361313,-0.001392,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000211,0.000028,0.000213,0.000687,0.000687,0.002483,0.359832,-0.001481,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000197,0.000027,0.000198,0.000590,0.000590,0.002313,0.358481,-0.001351,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000873,0.000005,0.000009,0.000005,0.000002,0.000183,0.000027,0.000190,0.000563,0.000563,0.002157,0.358033,-0.000448,1.000000,0.000004 +20,2022-08-01 20:00:00,0.001154,0.000023,0.000037,0.000023,0.000002,0.000171,0.000027,0.000195,0.000518,0.000518,0.002013,0.357887,-0.000147,1.000000,0.000018 +21,2022-08-01 21:00:00,0.001195,0.000042,0.000056,0.000042,0.000002,0.000159,0.000027,0.000203,0.000403,0.000403,0.001881,0.357876,-0.000010,1.000000,0.000033 +22,2022-08-01 22:00:00,0.001180,0.000058,0.000066,0.000058,0.000002,0.000149,0.000027,0.000208,0.000324,0.000324,0.001759,0.357920,0.000044,1.000000,0.000041 +23,2022-08-01 23:00:00,0.001173,0.000069,0.000076,0.000069,0.000002,0.000139,0.000027,0.000211,0.000249,0.000249,0.001647,0.358019,0.000100,1.000000,0.000047 +24,2022-08-02 00:00:00,0.001176,0.000082,0.000090,0.000082,0.000002,0.000130,0.000027,0.000214,0.000165,0.000165,0.001543,0.358187,0.000168,1.000000,0.000056 +25,2022-08-02 01:00:00,0.001272,0.000106,0.000125,0.000106,0.000003,0.000122,0.000027,0.000231,0.000074,0.000074,0.001448,0.358500,0.000313,1.000000,0.000074 +26,2022-08-02 02:00:00,0.001337,0.000134,0.000154,0.000134,0.000003,0.000115,0.000028,0.000251,0.000000,0.000000,0.001361,0.358912,0.000412,1.000000,0.000094 +27,2022-08-02 03:00:00,0.001300,0.000143,0.000146,0.000143,0.000003,0.000108,0.000028,0.000254,0.000000,0.000000,0.001281,0.359286,0.000374,1.000000,0.000096 +28,2022-08-02 04:00:00,0.001296,0.000147,0.000145,0.000147,0.000003,0.000102,0.000028,0.000252,0.000000,0.000000,0.001208,0.359648,0.000362,1.000000,0.000094 +29,2022-08-02 05:00:00,0.001380,0.000155,0.000163,0.000155,0.000003,0.000096,0.000029,0.000255,0.000000,0.000000,0.001141,0.360065,0.000417,1.000000,0.000103 +30,2022-08-02 06:00:00,0.001335,0.000154,0.000154,0.000154,0.000004,0.000091,0.000029,0.000249,0.000000,0.000000,0.001079,0.360439,0.000373,1.000000,0.000102 +31,2022-08-02 07:00:00,0.000000,0.000071,0.000000,0.000071,0.000004,0.000086,0.000028,0.000161,0.000000,0.000000,0.001022,0.359649,-0.000789,1.000000,0.000031 +32,2022-08-02 08:00:00,0.000000,0.000031,0.000000,0.000031,0.000004,0.000081,0.000028,0.000116,0.000000,0.000000,0.000968,0.358879,-0.000770,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000077,0.000027,0.000081,0.000000,0.000000,0.000918,0.358128,-0.000752,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000073,0.000026,0.000078,0.000000,0.000000,0.000871,0.357394,-0.000734,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000069,0.000026,0.000074,0.000000,0.000000,0.000827,0.356678,-0.000716,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000066,0.000025,0.000071,0.000000,0.000000,0.000787,0.355979,-0.000699,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000152,0.000001,0.000002,0.000001,0.000005,0.000063,0.000025,0.000069,0.000000,0.000000,0.000748,0.355442,-0.000536,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000298,0.000002,0.000003,0.000002,0.000006,0.000060,0.000024,0.000067,0.000124,0.000124,0.000713,0.354939,-0.000503,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000135,0.000001,0.000000,0.000001,0.000006,0.000057,0.000023,0.000064,0.000327,0.000327,0.000679,0.354095,-0.000844,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000126,0.000001,0.000000,0.000001,0.000006,0.000054,0.000023,0.000061,0.000475,0.000475,0.000648,0.353118,-0.000978,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000114,0.000000,0.000000,0.000000,0.000006,0.000052,0.000022,0.000058,0.000587,0.000587,0.000618,0.352043,-0.001075,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000188,0.000000,0.000000,0.000000,0.000007,0.000049,0.000021,0.000056,0.000668,0.000668,0.000589,0.350987,-0.001056,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000047,0.000000,0.000000,0.000000,0.000007,0.000047,0.000020,0.000054,0.000631,0.000631,0.000562,0.349854,-0.001133,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000045,0.000019,0.000052,0.000583,0.000583,0.000536,0.348811,-0.001043,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000043,0.000018,0.000050,0.000557,0.000557,0.000511,0.347818,-0.000993,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000047,0.000000,0.000000,0.000000,0.000008,0.000041,0.000017,0.000048,0.000452,0.000452,0.000487,0.346935,-0.000882,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000054,0.000000,0.000000,0.000000,0.000008,0.000039,0.000016,0.000047,0.000339,0.000339,0.000465,0.346191,-0.000744,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000047,0.000000,0.000000,0.000000,0.000008,0.000037,0.000016,0.000045,0.000203,0.000203,0.000444,0.345591,-0.000600,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000238,0.000002,0.000003,0.000002,0.000009,0.000035,0.000016,0.000046,0.000051,0.000051,0.000424,0.345337,-0.000254,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000253,0.000004,0.000006,0.000004,0.000009,0.000034,0.000016,0.000047,0.000000,0.000000,0.000406,0.345150,-0.000186,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000331,0.000008,0.000010,0.000008,0.000009,0.000032,0.000015,0.000049,0.000000,0.000000,0.000389,0.345041,-0.000109,1.000000,0.000006 +52,2022-08-03 04:00:00,0.000291,0.000008,0.000008,0.000008,0.000009,0.000031,0.000015,0.000048,0.000000,0.000000,0.000373,0.344897,-0.000143,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000377,0.000011,0.000013,0.000011,0.000010,0.000030,0.000015,0.000051,0.000000,0.000000,0.000358,0.344836,-0.000062,1.000000,0.000007 +54,2022-08-03 06:00:00,0.000300,0.000009,0.000008,0.000009,0.000010,0.000029,0.000015,0.000048,0.000000,0.000000,0.000344,0.344705,-0.000131,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000023,0.000005,0.000000,0.000005,0.000010,0.000028,0.000015,0.000043,0.000000,0.000000,0.000332,0.344315,-0.000390,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000023,0.000002,0.000000,0.000002,0.000011,0.000027,0.000014,0.000039,0.000000,0.000000,0.000319,0.343934,-0.000381,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000023,0.000000,0.000000,0.000000,0.000011,0.000026,0.000014,0.000037,0.000000,0.000000,0.000308,0.343562,-0.000372,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000048,0.000000,0.000000,0.000000,0.000011,0.000025,0.000014,0.000036,0.000000,0.000000,0.000297,0.343224,-0.000338,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000023,0.000000,0.000000,0.000000,0.000012,0.000024,0.000014,0.000036,0.000000,0.000000,0.000287,0.342870,-0.000355,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000048,0.000000,0.000000,0.000000,0.000012,0.000023,0.000013,0.000035,0.000000,0.000000,0.000277,0.342548,-0.000322,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000022,0.000013,0.000035,0.000000,0.000000,0.000267,0.342187,-0.000361,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000022,0.000013,0.000034,0.000130,0.000130,0.000258,0.341708,-0.000479,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000021,0.000012,0.000034,0.000382,0.000382,0.000249,0.340995,-0.000714,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000020,0.000011,0.000033,0.000561,0.000561,0.000240,0.340124,-0.000871,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000019,0.000010,0.000033,0.000692,0.000692,0.000231,0.339146,-0.000978,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000019,0.000009,0.000032,0.000684,0.000684,0.000222,0.338199,-0.000947,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000048,0.000000,0.000000,0.000000,0.000014,0.000018,0.000009,0.000032,0.000654,0.000654,0.000213,0.337351,-0.000848,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000006,0.000000,0.000000,0.000000,0.000014,0.000017,0.000008,0.000031,0.000602,0.000602,0.000204,0.336533,-0.000819,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000048,0.000000,0.000000,0.000000,0.000015,0.000016,0.000007,0.000031,0.000536,0.000536,0.000195,0.335840,-0.000692,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000048,0.000000,0.000000,0.000000,0.000015,0.000016,0.000007,0.000031,0.000429,0.000429,0.000186,0.335269,-0.000572,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000006,0.000000,0.000000,0.000000,0.000015,0.000015,0.000006,0.000030,0.000334,0.000334,0.000178,0.334762,-0.000507,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000016,0.000014,0.000006,0.000030,0.000216,0.000216,0.000170,0.334383,-0.000379,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000014,0.000006,0.000029,0.000065,0.000065,0.000162,0.334155,-0.000228,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000013,0.000006,0.000029,0.000000,0.000000,0.000155,0.333995,-0.000160,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000006,0.000029,0.000000,0.000000,0.000148,0.333839,-0.000156,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000005,0.000029,0.000000,0.000000,0.000142,0.333687,-0.000152,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000011,0.000005,0.000029,0.000000,0.000000,0.000136,0.333539,-0.000148,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000005,0.000028,0.000000,0.000000,0.000130,0.333394,-0.000145,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000005,0.000028,0.000000,0.000000,0.000125,0.333252,-0.000141,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000005,0.000028,0.000000,0.000000,0.000120,0.333115,-0.000138,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000005,0.000028,0.000000,0.000000,0.000115,0.332980,-0.000135,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000028,0.000000,0.000000,0.000111,0.332848,-0.000131,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000028,0.000000,0.000000,0.000106,0.332720,-0.000128,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000004,0.000028,0.000000,0.000000,0.000102,0.332595,-0.000125,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000000,0.000000,0.000098,0.332473,-0.000122,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000126,0.000126,0.000095,0.332230,-0.000242,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000377,0.000377,0.000091,0.331749,-0.000481,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000003,0.000028,0.000562,0.000562,0.000087,0.331099,-0.000651,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000003,0.000028,0.000696,0.000696,0.000082,0.330333,-0.000765,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000006,0.000002,0.000028,0.000796,0.000796,0.000078,0.329488,-0.000845,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000006,0.000001,0.000028,0.000754,0.000754,0.000073,0.328705,-0.000784,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000027,0.000691,0.000691,0.000068,0.328001,-0.000704,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000588,0.000588,0.000062,0.327413,-0.000588,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000472,0.000472,0.000058,0.326942,-0.000472,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000370,0.000369,0.000053,0.326573,-0.000369,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000220,0.000219,0.000049,0.326354,-0.000219,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000068,0.000067,0.000045,0.326286,-0.000067,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000042,0.326286,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000039,0.326286,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000036,0.326286,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000033,0.326286,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000027,0.000000,0.000000,0.000030,0.326286,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000028,0.326286,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000026,0.326286,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000024,0.326286,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000022,0.326286,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000020,0.326286,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000019,0.326286,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000000,0.000000,0.000017,0.326286,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000138,0.000137,0.000016,0.326149,-0.000137,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000388,0.000386,0.000015,0.325763,-0.000386,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000567,0.000562,0.000014,0.325201,-0.000562,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000698,0.000690,0.000013,0.324511,-0.000690,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000708,0.000697,0.000012,0.323814,-0.000697,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000668,0.000655,0.000011,0.323159,-0.000655,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000604,0.000591,0.000010,0.322568,-0.000591,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000029,0.000554,0.000540,0.000009,0.322028,-0.000540,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000456,0.000444,0.000008,0.321584,-0.000444,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000340,0.000329,0.000008,0.321255,-0.000329,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000207,0.000201,0.000007,0.321054,-0.000201,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000073,0.000071,0.000007,0.320983,-0.000071,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000000,0.000000,0.000006,0.320983,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000006,0.320983,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000005,0.320983,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000005,0.320983,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.320983,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.320983,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.320983,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.320983,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.320983,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.320983,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.320983,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.320983,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000122,0.000118,0.000002,0.320865,-0.000118,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000369,0.000357,0.000002,0.320509,-0.000357,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000549,0.000530,0.000002,0.319979,-0.000530,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000680,0.000654,0.000002,0.319325,-0.000654,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000777,0.000745,0.000002,0.318581,-0.000745,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000746,0.000712,0.000002,0.317868,-0.000712,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000690,0.000656,0.000001,0.317213,-0.000656,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000596,0.000565,0.000001,0.316648,-0.000565,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000481,0.000454,0.000001,0.316194,-0.000454,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000368,0.000347,0.000001,0.315847,-0.000347,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000216,0.000203,0.000001,0.315644,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000063,0.000059,0.000001,0.315585,-0.000059,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.315585,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.315585,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.315585,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.315585,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.315585,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000121,0.000114,0.000000,0.315471,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000366,0.000343,0.000000,0.315128,-0.000343,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000545,0.000510,0.000000,0.314618,-0.000510,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000675,0.000630,0.000000,0.313987,-0.000630,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000738,0.000687,0.000000,0.313301,-0.000687,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000698,0.000647,0.000000,0.312654,-0.000647,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000645,0.000596,0.000000,0.312058,-0.000596,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000564,0.000519,0.000000,0.311539,-0.000519,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000454,0.000417,0.000000,0.311122,-0.000417,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000346,0.000317,0.000000,0.310805,-0.000317,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000179,0.000164,0.000000,0.310641,-0.000164,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000033,0.000030,0.000000,0.310611,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.310611,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.310612,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000103,0.000094,0.000000,0.310518,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000352,0.000322,0.000000,0.310196,-0.000322,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000541,0.000493,0.000000,0.309703,-0.000493,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000673,0.000612,0.000000,0.309091,-0.000612,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000778,0.000705,0.000000,0.308386,-0.000705,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000735,0.000663,0.000000,0.307723,-0.000663,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000670,0.000602,0.000000,0.307121,-0.000602,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000593,0.000531,0.000000,0.306590,-0.000531,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000473,0.000423,0.000000,0.306167,-0.000423,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000359,0.000320,0.000000,0.305847,-0.000320,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000196,0.000175,0.000000,0.305672,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000041,0.000036,0.000000,0.305636,-0.000036,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.305636,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000111,0.000099,0.000000,0.305537,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620735.csv b/test/channel_loss/channel_forcing/et/cat-2620735.csv new file mode 100644 index 000000000..df2ad6fc0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620735.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000136,0.000000,0.000000,0.000000,0.000000,0.000813,0.000048,0.000813,0.000177,0.000177,0.008996,0.377835,-0.001347,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000047,0.000745,0.000059,0.000059,0.008298,0.376502,-0.001333,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000046,0.000684,0.000000,0.000000,0.007660,0.375258,-0.001244,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000045,0.000628,0.000000,0.000000,0.007076,0.374044,-0.001214,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000044,0.000578,0.000000,0.000000,0.006542,0.372860,-0.001185,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000043,0.000533,0.000000,0.000000,0.006052,0.371703,-0.001156,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000042,0.000491,0.000000,0.000000,0.005603,0.370575,-0.001129,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000041,0.000453,0.000000,0.000000,0.005191,0.369473,-0.001102,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000040,0.000419,0.000000,0.000000,0.004812,0.368398,-0.001075,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000387,0.000039,0.000387,0.000000,0.000000,0.004464,0.367348,-0.001050,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000358,0.000038,0.000359,0.000000,0.000000,0.004143,0.366324,-0.001024,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000037,0.000332,0.000000,0.000000,0.003849,0.365324,-0.001000,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000036,0.000308,0.000000,0.000000,0.003577,0.364348,-0.000976,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000035,0.000286,0.000000,0.000000,0.003327,0.363395,-0.000953,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000265,0.000034,0.000266,0.000139,0.000139,0.003096,0.362330,-0.001066,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000033,0.000247,0.000389,0.000389,0.002883,0.361046,-0.001284,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000229,0.000032,0.000230,0.000571,0.000571,0.002686,0.359615,-0.001431,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000213,0.000030,0.000214,0.000716,0.000716,0.002503,0.358077,-0.001538,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000198,0.000029,0.000200,0.000621,0.000621,0.002334,0.356668,-0.001409,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001100,0.000011,0.000021,0.000011,0.000002,0.000185,0.000029,0.000198,0.000599,0.000599,0.002178,0.356368,-0.000300,1.000000,0.000009 +20,2022-08-01 20:00:00,0.000991,0.000014,0.000016,0.000014,0.000002,0.000172,0.000029,0.000188,0.000554,0.000554,0.002034,0.356018,-0.000350,1.000000,0.000011 +21,2022-08-01 21:00:00,0.000991,0.000023,0.000027,0.000023,0.000002,0.000161,0.000028,0.000186,0.000417,0.000417,0.001901,0.355798,-0.000220,1.000000,0.000015 +22,2022-08-01 22:00:00,0.000988,0.000029,0.000035,0.000029,0.000002,0.000150,0.000028,0.000182,0.000328,0.000328,0.001779,0.355660,-0.000139,1.000000,0.000021 +23,2022-08-01 23:00:00,0.000993,0.000038,0.000043,0.000038,0.000002,0.000141,0.000028,0.000181,0.000260,0.000260,0.001666,0.355589,-0.000071,1.000000,0.000026 +24,2022-08-02 00:00:00,0.001037,0.000050,0.000059,0.000050,0.000003,0.000132,0.000028,0.000185,0.000171,0.000171,0.001562,0.355633,0.000044,1.000000,0.000035 +25,2022-08-02 01:00:00,0.001225,0.000080,0.000103,0.000080,0.000003,0.000124,0.000028,0.000206,0.000074,0.000074,0.001467,0.355912,0.000279,1.000000,0.000058 +26,2022-08-02 02:00:00,0.001223,0.000101,0.000115,0.000101,0.000003,0.000116,0.000029,0.000220,0.000000,0.000000,0.001380,0.356243,0.000331,1.000000,0.000072 +27,2022-08-02 03:00:00,0.001286,0.000119,0.000127,0.000119,0.000003,0.000109,0.000029,0.000232,0.000000,0.000000,0.001299,0.356615,0.000373,1.000000,0.000080 +28,2022-08-02 04:00:00,0.001219,0.000118,0.000115,0.000118,0.000003,0.000103,0.000029,0.000224,0.000000,0.000000,0.001225,0.356926,0.000310,1.000000,0.000077 +29,2022-08-02 05:00:00,0.001219,0.000117,0.000115,0.000117,0.000004,0.000097,0.000030,0.000218,0.000000,0.000000,0.001158,0.357228,0.000303,1.000000,0.000075 +30,2022-08-02 06:00:00,0.001300,0.000123,0.000130,0.000123,0.000004,0.000092,0.000030,0.000219,0.000000,0.000000,0.001095,0.357588,0.000360,1.000000,0.000081 +31,2022-08-02 07:00:00,0.000000,0.000055,0.000000,0.000055,0.000004,0.000087,0.000029,0.000147,0.000000,0.000000,0.001038,0.356797,-0.000791,1.000000,0.000026 +32,2022-08-02 08:00:00,0.000000,0.000026,0.000000,0.000026,0.000004,0.000083,0.000029,0.000113,0.000000,0.000000,0.000983,0.356026,-0.000772,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000078,0.000028,0.000083,0.000000,0.000000,0.000933,0.355272,-0.000753,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000074,0.000027,0.000079,0.000000,0.000000,0.000886,0.354537,-0.000735,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000071,0.000027,0.000076,0.000000,0.000000,0.000842,0.353819,-0.000718,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000067,0.000026,0.000072,0.000000,0.000000,0.000801,0.353118,-0.000701,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000215,0.000002,0.000004,0.000002,0.000005,0.000064,0.000025,0.000071,0.000000,0.000000,0.000762,0.352641,-0.000477,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000288,0.000002,0.000002,0.000002,0.000006,0.000061,0.000025,0.000069,0.000124,0.000124,0.000726,0.352126,-0.000515,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000006,0.000058,0.000024,0.000065,0.000328,0.000328,0.000693,0.351341,-0.000785,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000200,0.000000,0.000000,0.000000,0.000006,0.000055,0.000023,0.000062,0.000486,0.000486,0.000661,0.350420,-0.000920,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000101,0.000000,0.000000,0.000000,0.000006,0.000053,0.000022,0.000059,0.000609,0.000609,0.000630,0.349305,-0.001115,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000246,0.000000,0.000000,0.000000,0.000007,0.000050,0.000021,0.000057,0.000695,0.000695,0.000601,0.348274,-0.001031,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000048,0.000020,0.000055,0.000674,0.000674,0.000574,0.347110,-0.001164,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000046,0.000019,0.000053,0.000628,0.000628,0.000548,0.346019,-0.001091,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000044,0.000019,0.000051,0.000583,0.000583,0.000522,0.344998,-0.001021,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000042,0.000018,0.000050,0.000459,0.000459,0.000498,0.344060,-0.000938,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000002,0.000000,0.000000,0.000000,0.000008,0.000040,0.000017,0.000048,0.000348,0.000348,0.000476,0.343255,-0.000805,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000038,0.000016,0.000046,0.000206,0.000206,0.000454,0.342606,-0.000649,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000179,0.000001,0.000001,0.000001,0.000009,0.000036,0.000016,0.000046,0.000053,0.000053,0.000434,0.342296,-0.000310,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000241,0.000003,0.000005,0.000003,0.000009,0.000035,0.000016,0.000047,0.000000,0.000000,0.000415,0.342102,-0.000194,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000284,0.000005,0.000006,0.000005,0.000009,0.000033,0.000016,0.000048,0.000000,0.000000,0.000398,0.341952,-0.000149,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000300,0.000007,0.000007,0.000007,0.000010,0.000032,0.000016,0.000048,0.000000,0.000000,0.000381,0.341822,-0.000131,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000284,0.000007,0.000006,0.000007,0.000010,0.000031,0.000016,0.000047,0.000000,0.000000,0.000366,0.341679,-0.000143,1.000000,0.000004 +54,2022-08-03 06:00:00,0.000300,0.000007,0.000007,0.000007,0.000010,0.000029,0.000015,0.000047,0.000000,0.000000,0.000352,0.341555,-0.000124,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000011,0.000028,0.000015,0.000042,0.000000,0.000000,0.000339,0.341148,-0.000407,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000011,0.000027,0.000015,0.000040,0.000000,0.000000,0.000326,0.340750,-0.000397,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000026,0.000014,0.000037,0.000000,0.000000,0.000315,0.340363,-0.000388,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000012,0.000025,0.000014,0.000037,0.000000,0.000000,0.000303,0.339987,-0.000376,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000024,0.000014,0.000036,0.000000,0.000000,0.000292,0.339617,-0.000370,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000003,0.000000,0.000000,0.000000,0.000012,0.000024,0.000013,0.000036,0.000000,0.000000,0.000282,0.339259,-0.000358,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000023,0.000013,0.000035,0.000000,0.000000,0.000273,0.338907,-0.000352,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000022,0.000013,0.000035,0.000133,0.000133,0.000263,0.338433,-0.000474,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000013,0.000021,0.000012,0.000034,0.000383,0.000383,0.000254,0.337729,-0.000705,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000020,0.000011,0.000034,0.000565,0.000565,0.000245,0.336862,-0.000867,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000020,0.000010,0.000033,0.000715,0.000715,0.000235,0.335869,-0.000993,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000019,0.000009,0.000033,0.000713,0.000713,0.000226,0.334902,-0.000967,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000014,0.000018,0.000009,0.000032,0.000686,0.000686,0.000216,0.334046,-0.000856,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000017,0.000008,0.000032,0.000639,0.000639,0.000207,0.333257,-0.000789,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000016,0.000007,0.000032,0.000558,0.000558,0.000198,0.332566,-0.000692,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000015,0.000016,0.000007,0.000031,0.000441,0.000441,0.000189,0.332005,-0.000560,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000015,0.000006,0.000031,0.000342,0.000342,0.000180,0.331554,-0.000451,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000014,0.000006,0.000030,0.000218,0.000218,0.000172,0.331235,-0.000319,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000014,0.000006,0.000030,0.000066,0.000066,0.000164,0.331010,-0.000225,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000006,0.000030,0.000000,0.000000,0.000157,0.330856,-0.000155,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000006,0.000029,0.000000,0.000000,0.000150,0.330705,-0.000151,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000005,0.000029,0.000000,0.000000,0.000143,0.330557,-0.000147,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000005,0.000029,0.000000,0.000000,0.000137,0.330414,-0.000144,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000005,0.000029,0.000000,0.000000,0.000131,0.330273,-0.000140,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000005,0.000029,0.000000,0.000000,0.000126,0.330136,-0.000137,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000005,0.000029,0.000000,0.000000,0.000121,0.330002,-0.000134,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000005,0.000028,0.000000,0.000000,0.000116,0.329872,-0.000131,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000028,0.000000,0.000000,0.000111,0.329745,-0.000127,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000005,0.000028,0.000000,0.000000,0.000107,0.329620,-0.000124,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000028,0.000000,0.000000,0.000103,0.329499,-0.000121,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000000,0.000000,0.000099,0.329380,-0.000118,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000028,0.000128,0.000128,0.000095,0.329140,-0.000241,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000021,0.000008,0.000004,0.000028,0.000376,0.000376,0.000091,0.328665,-0.000475,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000003,0.000028,0.000562,0.000562,0.000087,0.328018,-0.000647,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000002,0.000028,0.000713,0.000713,0.000083,0.327239,-0.000779,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000002,0.000028,0.000825,0.000825,0.000078,0.326370,-0.000869,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000001,0.000028,0.000797,0.000797,0.000073,0.325548,-0.000822,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000028,0.000739,0.000739,0.000067,0.324803,-0.000745,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000028,0.000626,0.000626,0.000062,0.324177,-0.000626,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000000,0.000028,0.000495,0.000494,0.000057,0.323683,-0.000494,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000028,0.000376,0.000374,0.000053,0.323308,-0.000374,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000223,0.000221,0.000049,0.323087,-0.000221,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000027,0.000071,0.000070,0.000045,0.323017,-0.000070,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000042,0.323017,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000039,0.323017,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000027,0.000000,0.000000,0.000036,0.323017,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000000,0.000000,0.000033,0.323017,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000000,0.000000,0.000030,0.323017,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000028,0.000000,0.000000,0.000028,0.323017,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000026,0.323017,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000024,0.323017,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000022,0.323017,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000020,0.323017,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000028,0.000000,0.000000,0.000019,0.323017,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000000,0.000000,0.000017,0.323017,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000029,0.000145,0.000144,0.000016,0.322873,-0.000144,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000390,0.000386,0.000015,0.322487,-0.000386,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000571,0.000565,0.000014,0.321921,-0.000565,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000720,0.000710,0.000013,0.321212,-0.000710,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000738,0.000725,0.000012,0.320487,-0.000725,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000029,0.000704,0.000689,0.000011,0.319797,-0.000689,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000627,0.000611,0.000010,0.319186,-0.000611,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000576,0.000560,0.000009,0.318626,-0.000560,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000461,0.000447,0.000008,0.318179,-0.000447,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000347,0.000336,0.000008,0.317844,-0.000336,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000211,0.000203,0.000007,0.317640,-0.000203,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000073,0.000070,0.000007,0.317570,-0.000070,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000000,0.000000,0.000006,0.317570,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000006,0.317570,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000005,0.317570,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000005,0.317570,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.317570,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.317570,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.317570,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.317570,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.317570,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.317570,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.317570,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.317570,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000124,0.000119,0.000002,0.317450,-0.000119,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000370,0.000356,0.000002,0.317095,-0.000356,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000555,0.000534,0.000002,0.316561,-0.000534,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000704,0.000674,0.000002,0.315886,-0.000674,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000816,0.000780,0.000002,0.315107,-0.000780,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000793,0.000755,0.000002,0.314352,-0.000755,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000740,0.000700,0.000001,0.313652,-0.000700,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000624,0.000589,0.000001,0.313063,-0.000589,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000493,0.000464,0.000001,0.312599,-0.000464,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000375,0.000352,0.000001,0.312247,-0.000352,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000216,0.000203,0.000001,0.312045,-0.000203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000064,0.000060,0.000001,0.311985,-0.000060,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.311985,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.311985,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311985,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311985,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.311985,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000121,0.000113,0.000000,0.311871,-0.000113,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000364,0.000340,0.000000,0.311531,-0.000340,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000549,0.000512,0.000000,0.311019,-0.000512,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000696,0.000647,0.000000,0.310372,-0.000647,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000759,0.000703,0.000000,0.309669,-0.000703,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000732,0.000676,0.000000,0.308993,-0.000676,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000678,0.000623,0.000000,0.308370,-0.000623,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000580,0.000531,0.000000,0.307838,-0.000531,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000455,0.000416,0.000000,0.307423,-0.000416,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000348,0.000317,0.000000,0.307106,-0.000317,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000180,0.000164,0.000000,0.306942,-0.000164,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000032,0.000029,0.000000,0.306913,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306913,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.306913,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306913,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306913,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306914,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306915,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306918,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306922,0.000004,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000004,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306925,0.000004,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306928,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000003,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306931,0.000003,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000003,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.306934,0.000003,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000103,0.000094,0.000000,0.306840,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000350,0.000318,0.000000,0.306523,-0.000318,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000544,0.000493,0.000000,0.306029,-0.000493,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000697,0.000630,0.000000,0.305399,-0.000630,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000804,0.000724,0.000000,0.304676,-0.000724,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000778,0.000697,0.000000,0.303978,-0.000697,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000723,0.000645,0.000000,0.303333,-0.000645,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000620,0.000551,0.000000,0.302782,-0.000551,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000486,0.000431,0.000000,0.302351,-0.000431,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000366,0.000324,0.000000,0.302027,-0.000324,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000199,0.000176,0.000000,0.301851,-0.000176,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000042,0.000037,0.000000,0.301814,-0.000037,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301814,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000112,0.000099,0.000000,0.301715,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620736.csv b/test/channel_loss/channel_forcing/et/cat-2620736.csv new file mode 100644 index 000000000..cfff16da9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620736.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000128,0.000000,0.000000,0.000000,0.000000,0.000814,0.000049,0.000814,0.000169,0.000169,0.008999,0.381239,-0.001560,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000048,0.000746,0.000056,0.000056,0.008301,0.379700,-0.001539,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000047,0.000684,0.000000,0.000000,0.007664,0.378251,-0.001449,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000629,0.000046,0.000629,0.000000,0.000000,0.007081,0.376835,-0.001416,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000045,0.000579,0.000000,0.000000,0.006547,0.375452,-0.001383,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000533,0.000044,0.000533,0.000000,0.000000,0.006058,0.374101,-0.001351,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000043,0.000491,0.000000,0.000000,0.005609,0.372781,-0.001320,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000042,0.000454,0.000000,0.000000,0.005197,0.371491,-0.001290,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000419,0.000041,0.000419,0.000000,0.000000,0.004819,0.370231,-0.001260,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000388,0.000040,0.000388,0.000000,0.000000,0.004471,0.369000,-0.001231,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000359,0.000039,0.000359,0.000000,0.000000,0.004151,0.367798,-0.001203,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000038,0.000333,0.000000,0.000000,0.003857,0.366623,-0.001175,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000037,0.000309,0.000000,0.000000,0.003586,0.365475,-0.001148,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000286,0.000036,0.000287,0.000000,0.000000,0.003336,0.364353,-0.001121,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000266,0.000035,0.000267,0.000132,0.000132,0.003105,0.363128,-0.001225,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000247,0.000034,0.000248,0.000378,0.000378,0.002893,0.361692,-0.001436,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000230,0.000033,0.000231,0.000561,0.000561,0.002696,0.360109,-0.001583,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000214,0.000032,0.000216,0.000696,0.000696,0.002513,0.358431,-0.001678,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000199,0.000031,0.000201,0.000598,0.000598,0.002345,0.356888,-0.001543,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000969,0.000011,0.000019,0.000011,0.000002,0.000186,0.000030,0.000198,0.000574,0.000574,0.002189,0.356332,-0.000556,1.000000,0.000009 +20,2022-08-01 20:00:00,0.001022,0.000021,0.000029,0.000021,0.000002,0.000173,0.000030,0.000196,0.000528,0.000528,0.002045,0.355874,-0.000458,1.000000,0.000017 +21,2022-08-01 21:00:00,0.000995,0.000034,0.000041,0.000034,0.000002,0.000162,0.000030,0.000198,0.000406,0.000406,0.001913,0.355508,-0.000366,1.000000,0.000025 +22,2022-08-01 22:00:00,0.000965,0.000044,0.000050,0.000044,0.000003,0.000151,0.000029,0.000198,0.000313,0.000313,0.001791,0.355204,-0.000304,1.000000,0.000031 +23,2022-08-01 23:00:00,0.000971,0.000055,0.000062,0.000055,0.000003,0.000142,0.000029,0.000199,0.000247,0.000247,0.001678,0.354967,-0.000237,1.000000,0.000038 +24,2022-08-02 00:00:00,0.000851,0.000056,0.000056,0.000056,0.000003,0.000133,0.000029,0.000192,0.000163,0.000163,0.001574,0.354706,-0.000261,1.000000,0.000037 +25,2022-08-02 01:00:00,0.000883,0.000068,0.000076,0.000068,0.000003,0.000125,0.000029,0.000196,0.000071,0.000071,0.001478,0.354550,-0.000156,1.000000,0.000045 +26,2022-08-02 02:00:00,0.001347,0.000139,0.000198,0.000139,0.000003,0.000117,0.000029,0.000260,0.000000,0.000000,0.001390,0.354803,0.000252,1.000000,0.000104 +27,2022-08-02 03:00:00,0.001335,0.000172,0.000195,0.000172,0.000004,0.000110,0.000029,0.000286,0.000000,0.000000,0.001309,0.355041,0.000238,1.000000,0.000127 +28,2022-08-02 04:00:00,0.001332,0.000195,0.000194,0.000195,0.000004,0.000104,0.000029,0.000303,0.000000,0.000000,0.001234,0.355271,0.000230,1.000000,0.000126 +29,2022-08-02 05:00:00,0.001434,0.000210,0.000223,0.000210,0.000004,0.000098,0.000030,0.000312,0.000000,0.000000,0.001166,0.355568,0.000297,1.000000,0.000139 +30,2022-08-02 06:00:00,0.001408,0.000213,0.000215,0.000213,0.000004,0.000093,0.000030,0.000310,0.000000,0.000000,0.001103,0.355840,0.000272,1.000000,0.000141 +31,2022-08-02 07:00:00,0.000000,0.000098,0.000000,0.000098,0.000005,0.000088,0.000029,0.000191,0.000000,0.000000,0.001044,0.354940,-0.000900,1.000000,0.000043 +32,2022-08-02 08:00:00,0.000000,0.000043,0.000000,0.000043,0.000005,0.000083,0.000028,0.000131,0.000000,0.000000,0.000990,0.354061,-0.000879,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000079,0.000028,0.000084,0.000000,0.000000,0.000939,0.353203,-0.000859,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000075,0.000027,0.000080,0.000000,0.000000,0.000891,0.352364,-0.000839,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000071,0.000026,0.000077,0.000000,0.000000,0.000847,0.351544,-0.000820,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000067,0.000026,0.000074,0.000000,0.000000,0.000805,0.350743,-0.000801,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000132,0.000001,0.000002,0.000001,0.000006,0.000064,0.000025,0.000072,0.000000,0.000000,0.000766,0.350088,-0.000655,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000197,0.000001,0.000001,0.000001,0.000007,0.000061,0.000025,0.000069,0.000121,0.000121,0.000730,0.349394,-0.000694,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000196,0.000001,0.000000,0.000001,0.000007,0.000058,0.000024,0.000066,0.000321,0.000321,0.000696,0.348520,-0.000874,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000196,0.000000,0.000000,0.000000,0.000007,0.000056,0.000023,0.000063,0.000474,0.000474,0.000664,0.347518,-0.001002,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000008,0.000053,0.000023,0.000061,0.000590,0.000590,0.000633,0.346331,-0.001187,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000197,0.000000,0.000000,0.000000,0.000008,0.000051,0.000022,0.000059,0.000668,0.000668,0.000604,0.345190,-0.001141,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000007,0.000000,0.000000,0.000000,0.000008,0.000048,0.000021,0.000057,0.000640,0.000640,0.000577,0.343917,-0.001273,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000050,0.000000,0.000000,0.000000,0.000009,0.000046,0.000020,0.000055,0.000597,0.000597,0.000551,0.342757,-0.001160,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000042,0.000000,0.000000,0.000000,0.000009,0.000044,0.000019,0.000053,0.000566,0.000566,0.000526,0.341646,-0.001110,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000042,0.000018,0.000051,0.000450,0.000450,0.000502,0.340634,-0.001012,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000040,0.000018,0.000050,0.000338,0.000338,0.000479,0.339755,-0.000879,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000038,0.000017,0.000048,0.000200,0.000200,0.000458,0.339030,-0.000724,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000176,0.000001,0.000002,0.000001,0.000010,0.000037,0.000017,0.000048,0.000049,0.000049,0.000438,0.338640,-0.000391,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000189,0.000003,0.000004,0.000003,0.000011,0.000035,0.000016,0.000049,0.000000,0.000000,0.000419,0.338317,-0.000323,1.000000,0.000002 +51,2022-08-03 03:00:00,0.000178,0.000004,0.000004,0.000004,0.000011,0.000034,0.000016,0.000048,0.000000,0.000000,0.000402,0.337991,-0.000326,1.000000,0.000003 +52,2022-08-03 04:00:00,0.000252,0.000006,0.000008,0.000006,0.000011,0.000032,0.000016,0.000050,0.000000,0.000000,0.000386,0.337742,-0.000249,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000260,0.000007,0.000008,0.000007,0.000012,0.000031,0.000016,0.000050,0.000000,0.000000,0.000371,0.337505,-0.000237,1.000000,0.000005 +54,2022-08-03 06:00:00,0.000300,0.000009,0.000011,0.000009,0.000012,0.000030,0.000016,0.000051,0.000000,0.000000,0.000356,0.337310,-0.000195,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000012,0.000029,0.000015,0.000045,0.000000,0.000000,0.000343,0.336837,-0.000473,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000013,0.000028,0.000015,0.000043,0.000000,0.000000,0.000330,0.336375,-0.000462,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000027,0.000015,0.000040,0.000000,0.000000,0.000319,0.335924,-0.000451,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000014,0.000039,0.000000,0.000000,0.000307,0.335483,-0.000441,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000014,0.000039,0.000000,0.000000,0.000296,0.335052,-0.000431,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000024,0.000014,0.000038,0.000000,0.000000,0.000286,0.334631,-0.000421,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000023,0.000013,0.000038,0.000000,0.000000,0.000276,0.334219,-0.000411,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000013,0.000037,0.000127,0.000127,0.000267,0.333693,-0.000526,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000012,0.000037,0.000375,0.000375,0.000258,0.332938,-0.000756,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000021,0.000012,0.000036,0.000559,0.000559,0.000249,0.332019,-0.000918,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000020,0.000011,0.000036,0.000696,0.000696,0.000240,0.330988,-0.001031,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000019,0.000010,0.000036,0.000686,0.000686,0.000230,0.329991,-0.000997,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000087,0.000000,0.000000,0.000000,0.000017,0.000018,0.000009,0.000035,0.000657,0.000657,0.000221,0.329129,-0.000861,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000050,0.000000,0.000000,0.000000,0.000017,0.000018,0.000009,0.000035,0.000614,0.000614,0.000212,0.328294,-0.000835,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000061,0.000000,0.000000,0.000000,0.000018,0.000017,0.000008,0.000035,0.000540,0.000540,0.000204,0.327561,-0.000733,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000061,0.000000,0.000000,0.000000,0.000018,0.000016,0.000008,0.000034,0.000422,0.000422,0.000195,0.326959,-0.000601,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000050,0.000000,0.000000,0.000000,0.000018,0.000016,0.000007,0.000034,0.000330,0.000330,0.000187,0.326451,-0.000508,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000050,0.000000,0.000000,0.000000,0.000019,0.000015,0.000007,0.000034,0.000213,0.000213,0.000179,0.326069,-0.000382,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000063,0.000063,0.000172,0.325794,-0.000275,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000000,0.000000,0.000165,0.325586,-0.000208,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000007,0.000033,0.000000,0.000000,0.000158,0.325383,-0.000203,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000006,0.000033,0.000000,0.000000,0.000152,0.325184,-0.000198,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000012,0.000006,0.000033,0.000000,0.000000,0.000146,0.324991,-0.000194,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000012,0.000006,0.000033,0.000000,0.000000,0.000140,0.324801,-0.000189,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000033,0.000000,0.000000,0.000135,0.324616,-0.000185,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000011,0.000006,0.000033,0.000000,0.000000,0.000130,0.324436,-0.000181,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000006,0.000033,0.000000,0.000000,0.000125,0.324259,-0.000177,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000006,0.000033,0.000000,0.000000,0.000121,0.324086,-0.000173,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000010,0.000005,0.000033,0.000000,0.000000,0.000117,0.323918,-0.000169,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000009,0.000005,0.000033,0.000000,0.000000,0.000113,0.323753,-0.000165,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000009,0.000005,0.000033,0.000000,0.000000,0.000109,0.323592,-0.000161,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000009,0.000005,0.000033,0.000123,0.000123,0.000105,0.323315,-0.000278,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000008,0.000005,0.000033,0.000369,0.000369,0.000101,0.322804,-0.000511,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000008,0.000004,0.000033,0.000561,0.000561,0.000097,0.322117,-0.000687,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000008,0.000003,0.000033,0.000699,0.000699,0.000093,0.321311,-0.000806,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000007,0.000003,0.000033,0.000800,0.000800,0.000088,0.320425,-0.000886,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000007,0.000002,0.000033,0.000762,0.000762,0.000083,0.319596,-0.000829,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000007,0.000002,0.000033,0.000711,0.000711,0.000079,0.318836,-0.000760,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000006,0.000001,0.000033,0.000609,0.000609,0.000073,0.318193,-0.000643,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000006,0.000001,0.000033,0.000483,0.000483,0.000068,0.317688,-0.000505,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000005,0.000000,0.000032,0.000369,0.000369,0.000064,0.317306,-0.000382,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000000,0.000032,0.000218,0.000218,0.000059,0.317080,-0.000226,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000000,0.000032,0.000066,0.000066,0.000055,0.317009,-0.000072,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000004,0.000000,0.000032,0.000000,0.000000,0.000051,0.317003,-0.000006,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000032,0.000000,0.000000,0.000047,0.316997,-0.000005,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000032,0.000000,0.000000,0.000043,0.316992,-0.000005,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000003,0.000000,0.000033,0.000000,0.000000,0.000040,0.316987,-0.000005,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000037,0.316982,-0.000005,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000035,0.316977,-0.000005,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000033,0.000000,0.000000,0.000032,0.316972,-0.000005,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000002,0.000000,0.000033,0.000000,0.000000,0.000030,0.316967,-0.000005,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000002,0.000000,0.000033,0.000000,0.000000,0.000028,0.316963,-0.000005,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000002,0.000000,0.000033,0.000000,0.000000,0.000026,0.316958,-0.000005,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000033,0.000000,0.000000,0.000024,0.316954,-0.000004,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000022,0.316949,-0.000004,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000136,0.000136,0.000020,0.316812,-0.000137,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000383,0.000383,0.000019,0.316429,-0.000383,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000034,0.000567,0.000566,0.000017,0.315863,-0.000566,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000034,0.000703,0.000700,0.000016,0.315164,-0.000700,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000035,0.000712,0.000706,0.000015,0.314458,-0.000706,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000674,0.000666,0.000014,0.313792,-0.000666,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000608,0.000598,0.000013,0.313194,-0.000598,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000035,0.000563,0.000552,0.000012,0.312641,-0.000552,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000459,0.000448,0.000011,0.312193,-0.000448,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000344,0.000335,0.000010,0.311858,-0.000335,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000208,0.000203,0.000009,0.311655,-0.000203,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000036,0.000071,0.000069,0.000008,0.311586,-0.000069,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000036,0.000000,0.000000,0.000008,0.311586,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000000,0.000000,0.000007,0.311586,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000000,0.000000,0.000007,0.311586,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000037,0.000000,0.000000,0.000006,0.311586,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000006,0.311586,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000038,0.000000,0.000000,0.000005,0.311586,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000005,0.311586,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000004,0.311586,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000004,0.311586,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.311586,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.311586,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000003,0.311586,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000119,0.000116,0.000003,0.311470,-0.000116,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000361,0.000351,0.000003,0.311120,-0.000351,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000547,0.000531,0.000003,0.310589,-0.000531,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000685,0.000662,0.000002,0.309927,-0.000662,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000784,0.000755,0.000002,0.309172,-0.000755,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000041,0.000755,0.000724,0.000002,0.308448,-0.000724,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000705,0.000673,0.000002,0.307775,-0.000673,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000606,0.000576,0.000002,0.307199,-0.000576,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000481,0.000456,0.000002,0.306742,-0.000456,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000042,0.000368,0.000348,0.000001,0.306394,-0.000348,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000214,0.000202,0.000001,0.306192,-0.000202,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000061,0.000057,0.000001,0.306135,-0.000057,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.306135,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.306135,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000117,0.000110,0.000000,0.306025,-0.000110,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000360,0.000339,0.000000,0.305686,-0.000339,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000046,0.000543,0.000510,0.000000,0.305176,-0.000510,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000678,0.000636,0.000000,0.304540,-0.000636,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000737,0.000688,0.000000,0.303852,-0.000688,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000701,0.000652,0.000000,0.303201,-0.000652,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000650,0.000603,0.000000,0.302598,-0.000603,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000568,0.000524,0.000000,0.302074,-0.000524,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000448,0.000412,0.000000,0.301662,-0.000412,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000342,0.000314,0.000000,0.301347,-0.000314,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000176,0.000161,0.000000,0.301186,-0.000161,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000031,0.000029,0.000000,0.301158,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.301158,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000100,0.000091,0.000000,0.301066,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000344,0.000315,0.000000,0.300751,-0.000315,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000540,0.000493,0.000000,0.300258,-0.000493,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000677,0.000617,0.000000,0.299642,-0.000617,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000782,0.000710,0.000000,0.298932,-0.000710,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000748,0.000675,0.000000,0.298256,-0.000675,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000691,0.000622,0.000000,0.297634,-0.000622,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000602,0.000540,0.000000,0.297095,-0.000540,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000473,0.000422,0.000000,0.296672,-0.000422,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000358,0.000319,0.000000,0.296353,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000193,0.000172,0.000000,0.296181,-0.000172,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000038,0.000034,0.000000,0.296147,-0.000034,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.296147,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000109,0.000096,0.000000,0.296051,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620737.csv b/test/channel_loss/channel_forcing/et/cat-2620737.csv new file mode 100644 index 000000000..4f5ee8017 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620737.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.000817,0.000084,0.000817,0.000185,0.000185,0.009028,0.373549,-0.003113,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000082,0.000751,0.000064,0.000064,0.008359,0.370554,-0.002995,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000080,0.000692,0.000000,0.000000,0.007747,0.367679,-0.002875,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000639,0.000079,0.000639,0.000000,0.000000,0.007187,0.364860,-0.002819,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000591,0.000077,0.000591,0.000000,0.000000,0.006674,0.362095,-0.002764,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000546,0.000076,0.000547,0.000000,0.000000,0.006203,0.359384,-0.002711,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000506,0.000074,0.000507,0.000000,0.000000,0.005771,0.356726,-0.002658,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000470,0.000073,0.000470,0.000000,0.000000,0.005375,0.354119,-0.002607,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000436,0.000072,0.000437,0.000000,0.000000,0.005010,0.351563,-0.002556,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000406,0.000070,0.000407,0.000000,0.000000,0.004674,0.349056,-0.002507,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000378,0.000069,0.000379,0.000000,0.000000,0.004365,0.346597,-0.002458,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000352,0.000068,0.000354,0.000000,0.000000,0.004080,0.344186,-0.002411,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000329,0.000066,0.000331,0.000000,0.000000,0.003817,0.341822,-0.002364,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000307,0.000065,0.000309,0.000000,0.000000,0.003575,0.339504,-0.002318,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000288,0.000064,0.000290,0.000142,0.000142,0.003351,0.337091,-0.002413,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000269,0.000062,0.000272,0.000384,0.000384,0.003144,0.334488,-0.002604,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000252,0.000061,0.000255,0.000563,0.000563,0.002952,0.331760,-0.002728,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000237,0.000059,0.000240,0.000709,0.000709,0.002774,0.328941,-0.002818,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000222,0.000058,0.000226,0.000630,0.000630,0.002609,0.326255,-0.002686,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001062,0.000011,0.000021,0.000011,0.000004,0.000209,0.000057,0.000224,0.000613,0.000613,0.002457,0.324659,-0.001596,1.000000,0.000009 +20,2022-08-01 20:00:00,0.000883,0.000011,0.000011,0.000011,0.000004,0.000197,0.000056,0.000213,0.000550,0.000550,0.002316,0.322989,-0.001670,1.000000,0.000009 +21,2022-08-01 21:00:00,0.000869,0.000018,0.000021,0.000018,0.000005,0.000186,0.000055,0.000209,0.000415,0.000415,0.002185,0.321460,-0.001529,1.000000,0.000012 +22,2022-08-01 22:00:00,0.000887,0.000024,0.000030,0.000024,0.000005,0.000175,0.000054,0.000204,0.000343,0.000343,0.002064,0.320041,-0.001419,1.000000,0.000017 +23,2022-08-01 23:00:00,0.000881,0.000032,0.000037,0.000032,0.000006,0.000165,0.000053,0.000203,0.000266,0.000266,0.001952,0.318711,-0.001330,1.000000,0.000023 +24,2022-08-02 00:00:00,0.000885,0.000042,0.000049,0.000042,0.000006,0.000156,0.000053,0.000204,0.000179,0.000179,0.001849,0.317485,-0.001226,1.000000,0.000029 +25,2022-08-02 01:00:00,0.000959,0.000060,0.000074,0.000060,0.000006,0.000148,0.000052,0.000215,0.000080,0.000080,0.001753,0.316427,-0.001057,1.000000,0.000043 +26,2022-08-02 02:00:00,0.001133,0.000094,0.000120,0.000094,0.000007,0.000141,0.000052,0.000241,0.000000,0.000000,0.001664,0.315595,-0.000832,1.000000,0.000069 +27,2022-08-02 03:00:00,0.001112,0.000108,0.000115,0.000108,0.000007,0.000134,0.000051,0.000249,0.000000,0.000000,0.001582,0.314762,-0.000833,1.000000,0.000076 +28,2022-08-02 04:00:00,0.001110,0.000116,0.000115,0.000116,0.000008,0.000127,0.000051,0.000251,0.000000,0.000000,0.001505,0.313944,-0.000818,1.000000,0.000075 +29,2022-08-02 05:00:00,0.001218,0.000127,0.000136,0.000127,0.000008,0.000121,0.000050,0.000256,0.000000,0.000000,0.001435,0.313227,-0.000718,1.000000,0.000084 +30,2022-08-02 06:00:00,0.001278,0.000139,0.000149,0.000139,0.000009,0.000115,0.000050,0.000263,0.000000,0.000000,0.001369,0.312570,-0.000657,1.000000,0.000094 +31,2022-08-02 07:00:00,0.000000,0.000065,0.000000,0.000065,0.000010,0.000110,0.000049,0.000184,0.000000,0.000000,0.001308,0.310818,-0.001752,1.000000,0.000030 +32,2022-08-02 08:00:00,0.000000,0.000030,0.000000,0.000030,0.000010,0.000105,0.000048,0.000145,0.000000,0.000000,0.001251,0.309100,-0.001718,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000101,0.000047,0.000111,0.000000,0.000000,0.001197,0.307416,-0.001685,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000096,0.000046,0.000108,0.000000,0.000000,0.001147,0.305764,-0.001652,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000092,0.000045,0.000104,0.000000,0.000000,0.001100,0.304144,-0.001620,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000089,0.000044,0.000101,0.000000,0.000000,0.001056,0.302555,-0.001589,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000101,0.000001,0.000001,0.000001,0.000013,0.000085,0.000044,0.000099,0.000000,0.000000,0.001014,0.301095,-0.001460,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000281,0.000002,0.000002,0.000002,0.000014,0.000082,0.000043,0.000097,0.000126,0.000126,0.000975,0.299716,-0.001379,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000014,0.000079,0.000042,0.000094,0.000328,0.000328,0.000939,0.298088,-0.001628,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000199,0.000000,0.000000,0.000000,0.000015,0.000076,0.000041,0.000091,0.000482,0.000482,0.000904,0.296340,-0.001748,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000129,0.000000,0.000000,0.000000,0.000016,0.000073,0.000040,0.000089,0.000608,0.000608,0.000871,0.294433,-0.001907,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000238,0.000000,0.000000,0.000000,0.000016,0.000070,0.000039,0.000087,0.000698,0.000698,0.000839,0.292581,-0.001852,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000068,0.000038,0.000085,0.000671,0.000671,0.000809,0.290620,-0.001961,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000065,0.000037,0.000083,0.000617,0.000617,0.000781,0.288750,-0.001869,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000063,0.000036,0.000081,0.000571,0.000571,0.000753,0.286962,-0.001789,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000061,0.000035,0.000080,0.000462,0.000462,0.000727,0.285315,-0.001647,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000020,0.000059,0.000034,0.000079,0.000350,0.000350,0.000703,0.283810,-0.001505,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000020,0.000057,0.000033,0.000077,0.000210,0.000210,0.000679,0.282471,-0.001339,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000304,0.000003,0.000006,0.000003,0.000021,0.000055,0.000033,0.000079,0.000058,0.000058,0.000657,0.281537,-0.000933,1.000000,0.000003 +50,2022-08-03 02:00:00,0.000476,0.000013,0.000021,0.000013,0.000022,0.000053,0.000032,0.000088,0.000000,0.000000,0.000636,0.280833,-0.000704,1.000000,0.000011 +51,2022-08-03 03:00:00,0.000481,0.000018,0.000021,0.000018,0.000023,0.000052,0.000032,0.000092,0.000000,0.000000,0.000617,0.280147,-0.000687,1.000000,0.000014 +52,2022-08-03 04:00:00,0.000380,0.000017,0.000013,0.000017,0.000023,0.000050,0.000032,0.000090,0.000000,0.000000,0.000598,0.279382,-0.000764,1.000000,0.000010 +53,2022-08-03 05:00:00,0.000481,0.000019,0.000021,0.000019,0.000024,0.000049,0.000031,0.000092,0.000000,0.000000,0.000581,0.278724,-0.000658,1.000000,0.000012 +54,2022-08-03 06:00:00,0.000399,0.000016,0.000015,0.000016,0.000025,0.000047,0.000031,0.000088,0.000000,0.000000,0.000565,0.278005,-0.000719,1.000000,0.000011 +55,2022-08-03 07:00:00,0.000100,0.000008,0.000001,0.000008,0.000026,0.000046,0.000030,0.000080,0.000000,0.000000,0.000549,0.277019,-0.000985,1.000000,0.000003 +56,2022-08-03 08:00:00,0.000100,0.000004,0.000001,0.000004,0.000026,0.000045,0.000030,0.000075,0.000000,0.000000,0.000534,0.276053,-0.000966,1.000000,0.000001 +57,2022-08-03 09:00:00,0.000100,0.000001,0.000001,0.000001,0.000027,0.000043,0.000029,0.000071,0.000000,0.000000,0.000520,0.275106,-0.000947,1.000000,0.000001 +58,2022-08-03 10:00:00,0.000100,0.000001,0.000001,0.000001,0.000028,0.000042,0.000029,0.000071,0.000000,0.000000,0.000507,0.274177,-0.000929,1.000000,0.000001 +59,2022-08-03 11:00:00,0.000100,0.000001,0.000001,0.000001,0.000029,0.000041,0.000028,0.000071,0.000000,0.000000,0.000494,0.273266,-0.000911,1.000000,0.000001 +60,2022-08-03 12:00:00,0.000100,0.000001,0.000001,0.000001,0.000029,0.000040,0.000028,0.000070,0.000000,0.000000,0.000481,0.272373,-0.000893,1.000000,0.000001 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000039,0.000027,0.000070,0.000000,0.000000,0.000469,0.271399,-0.000973,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000038,0.000027,0.000069,0.000137,0.000137,0.000458,0.270311,-0.001089,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000037,0.000026,0.000069,0.000385,0.000385,0.000446,0.268999,-0.001311,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000002,0.000000,0.000000,0.000000,0.000032,0.000036,0.000025,0.000069,0.000565,0.000565,0.000435,0.267539,-0.001460,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000035,0.000024,0.000069,0.000712,0.000712,0.000424,0.265961,-0.001578,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000034,0.000023,0.000068,0.000728,0.000728,0.000413,0.264398,-0.001563,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000124,0.000000,0.000000,0.000000,0.000035,0.000034,0.000023,0.000068,0.000683,0.000683,0.000402,0.263031,-0.001367,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000033,0.000022,0.000068,0.000630,0.000630,0.000391,0.261683,-0.001348,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000121,0.000000,0.000000,0.000000,0.000036,0.000032,0.000021,0.000068,0.000560,0.000560,0.000380,0.260486,-0.001197,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000121,0.000000,0.000000,0.000000,0.000037,0.000031,0.000021,0.000068,0.000451,0.000451,0.000370,0.259418,-0.001067,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000038,0.000030,0.000020,0.000068,0.000349,0.000349,0.000360,0.258416,-0.001002,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000039,0.000029,0.000020,0.000068,0.000221,0.000221,0.000350,0.257559,-0.000858,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000028,0.000019,0.000068,0.000073,0.000073,0.000341,0.256801,-0.000757,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000028,0.000019,0.000068,0.000000,0.000000,0.000332,0.256130,-0.000672,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000027,0.000018,0.000068,0.000000,0.000000,0.000324,0.255471,-0.000659,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000026,0.000018,0.000068,0.000000,0.000000,0.000315,0.254825,-0.000646,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000026,0.000018,0.000068,0.000000,0.000000,0.000308,0.254192,-0.000633,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000025,0.000017,0.000069,0.000000,0.000000,0.000300,0.253571,-0.000621,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000024,0.000017,0.000069,0.000000,0.000000,0.000293,0.252961,-0.000609,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000024,0.000017,0.000069,0.000000,0.000000,0.000285,0.252364,-0.000597,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000023,0.000016,0.000069,0.000000,0.000000,0.000279,0.251778,-0.000586,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000023,0.000016,0.000070,0.000000,0.000000,0.000272,0.251204,-0.000574,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000022,0.000016,0.000070,0.000000,0.000000,0.000266,0.250641,-0.000563,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000022,0.000015,0.000070,0.000000,0.000000,0.000259,0.250089,-0.000552,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000021,0.000015,0.000070,0.000000,0.000000,0.000253,0.249547,-0.000542,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000021,0.000015,0.000071,0.000131,0.000131,0.000248,0.248887,-0.000660,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000020,0.000014,0.000071,0.000378,0.000378,0.000242,0.247998,-0.000889,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000020,0.000014,0.000071,0.000561,0.000561,0.000236,0.246947,-0.001051,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000019,0.000013,0.000072,0.000713,0.000713,0.000230,0.245767,-0.001180,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000019,0.000012,0.000072,0.000829,0.000829,0.000223,0.244496,-0.001271,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000018,0.000012,0.000072,0.000802,0.000802,0.000217,0.243276,-0.001220,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000018,0.000011,0.000072,0.000726,0.000726,0.000211,0.242154,-0.001122,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000017,0.000011,0.000073,0.000605,0.000605,0.000204,0.241173,-0.000981,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000016,0.000010,0.000073,0.000498,0.000498,0.000198,0.240315,-0.000858,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000016,0.000010,0.000073,0.000378,0.000378,0.000191,0.239592,-0.000723,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000015,0.000009,0.000073,0.000226,0.000226,0.000185,0.239032,-0.000560,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000015,0.000009,0.000074,0.000077,0.000077,0.000179,0.238629,-0.000403,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000014,0.000009,0.000074,0.000000,0.000000,0.000174,0.238309,-0.000320,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000014,0.000009,0.000074,0.000000,0.000000,0.000169,0.237996,-0.000313,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000014,0.000009,0.000075,0.000000,0.000000,0.000164,0.237688,-0.000307,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000008,0.000075,0.000000,0.000000,0.000159,0.237387,-0.000301,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000013,0.000008,0.000076,0.000000,0.000000,0.000154,0.237091,-0.000296,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000012,0.000008,0.000076,0.000000,0.000000,0.000150,0.236801,-0.000290,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000012,0.000008,0.000076,0.000000,0.000000,0.000146,0.236517,-0.000284,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000012,0.000008,0.000077,0.000000,0.000000,0.000142,0.236238,-0.000279,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000011,0.000008,0.000077,0.000000,0.000000,0.000138,0.235965,-0.000273,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000011,0.000008,0.000078,0.000000,0.000000,0.000134,0.235697,-0.000268,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000011,0.000007,0.000078,0.000000,0.000000,0.000131,0.235434,-0.000263,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000011,0.000007,0.000079,0.000000,0.000000,0.000127,0.235176,-0.000258,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000010,0.000007,0.000079,0.000147,0.000147,0.000124,0.234779,-0.000397,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000010,0.000007,0.000080,0.000391,0.000391,0.000121,0.234151,-0.000628,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000010,0.000006,0.000080,0.000571,0.000571,0.000117,0.233358,-0.000793,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000009,0.000006,0.000081,0.000718,0.000718,0.000113,0.232436,-0.000921,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000009,0.000005,0.000081,0.000737,0.000737,0.000109,0.231514,-0.000922,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000009,0.000005,0.000081,0.000702,0.000702,0.000105,0.230643,-0.000871,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000008,0.000004,0.000082,0.000614,0.000614,0.000101,0.229876,-0.000767,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000008,0.000004,0.000082,0.000554,0.000554,0.000097,0.229183,-0.000693,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000008,0.000004,0.000082,0.000451,0.000451,0.000093,0.228604,-0.000579,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000007,0.000003,0.000083,0.000336,0.000336,0.000089,0.228149,-0.000455,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000007,0.000003,0.000083,0.000208,0.000208,0.000085,0.227828,-0.000321,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000007,0.000003,0.000084,0.000076,0.000076,0.000081,0.227643,-0.000185,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000003,0.000084,0.000000,0.000000,0.000078,0.227536,-0.000107,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000003,0.000085,0.000000,0.000000,0.000074,0.227431,-0.000105,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000003,0.000085,0.000000,0.000000,0.000071,0.227329,-0.000103,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000006,0.000003,0.000085,0.000000,0.000000,0.000068,0.227228,-0.000101,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000086,0.000000,0.000000,0.000066,0.227129,-0.000099,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000005,0.000003,0.000086,0.000000,0.000000,0.000063,0.227032,-0.000097,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000005,0.000003,0.000087,0.000000,0.000000,0.000061,0.226937,-0.000095,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000005,0.000003,0.000087,0.000000,0.000000,0.000059,0.226844,-0.000093,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000005,0.000003,0.000088,0.000000,0.000000,0.000056,0.226752,-0.000091,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000005,0.000003,0.000088,0.000000,0.000000,0.000054,0.226662,-0.000090,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000004,0.000002,0.000089,0.000000,0.000000,0.000052,0.226575,-0.000088,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000004,0.000002,0.000089,0.000000,0.000000,0.000051,0.226488,-0.000086,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000004,0.000002,0.000090,0.000126,0.000126,0.000049,0.226280,-0.000208,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000002,0.000090,0.000372,0.000372,0.000047,0.225835,-0.000445,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000002,0.000091,0.000551,0.000551,0.000045,0.225222,-0.000612,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000004,0.000001,0.000091,0.000698,0.000698,0.000043,0.224478,-0.000744,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000003,0.000001,0.000092,0.000804,0.000804,0.000040,0.223644,-0.000834,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000779,0.000779,0.000038,0.222851,-0.000793,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000719,0.000719,0.000035,0.222132,-0.000719,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000608,0.000608,0.000032,0.221524,-0.000608,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000497,0.000494,0.000030,0.221030,-0.000494,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000376,0.000372,0.000027,0.220658,-0.000372,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000219,0.000217,0.000025,0.220441,-0.000217,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000069,0.000068,0.000023,0.220373,-0.000068,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000095,0.000000,0.000000,0.000021,0.220373,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000096,0.000000,0.000000,0.000020,0.220373,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000002,0.000000,0.000096,0.000000,0.000000,0.000018,0.220373,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000097,0.000000,0.000000,0.000017,0.220373,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000016,0.220373,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000000,0.000000,0.000014,0.220373,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000000,0.000000,0.000013,0.220373,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000000,0.000000,0.000012,0.220373,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000000,0.000000,0.000011,0.220373,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000000,0.000000,0.000010,0.220373,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000000,0.000000,0.000010,0.220373,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000000,0.000000,0.000009,0.220373,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000125,0.000123,0.000008,0.220250,-0.000123,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000102,0.000366,0.000360,0.000008,0.219890,-0.000360,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000102,0.000550,0.000539,0.000007,0.219351,-0.000539,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000103,0.000694,0.000677,0.000006,0.218674,-0.000677,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000770,0.000747,0.000006,0.217928,-0.000747,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000742,0.000715,0.000006,0.217213,-0.000715,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000675,0.000646,0.000005,0.216568,-0.000646,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000580,0.000551,0.000005,0.216017,-0.000551,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000468,0.000442,0.000004,0.215574,-0.000442,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000106,0.000357,0.000336,0.000004,0.215238,-0.000336,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000186,0.000175,0.000004,0.215064,-0.000175,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000107,0.000035,0.000033,0.000003,0.215031,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000003,0.215031,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000108,0.000000,0.000000,0.000003,0.215031,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000003,0.215031,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000109,0.000000,0.000000,0.000002,0.215031,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000002,0.215031,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000110,0.000000,0.000000,0.000002,0.215031,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000002,0.215031,0.000001,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000111,0.000000,0.000000,0.000002,0.215032,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000002,0.215033,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000002,0.215033,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.215033,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.215033,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000105,0.000099,0.000001,0.214934,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000351,0.000329,0.000001,0.214605,-0.000329,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000544,0.000508,0.000001,0.214097,-0.000508,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000692,0.000642,0.000001,0.213455,-0.000642,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000809,0.000746,0.000001,0.212709,-0.000746,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000782,0.000716,0.000001,0.211993,-0.000716,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000711,0.000646,0.000001,0.211346,-0.000646,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000610,0.000552,0.000001,0.210794,-0.000552,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000491,0.000442,0.000001,0.210353,-0.000442,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000371,0.000332,0.000001,0.210021,-0.000332,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000206,0.000184,0.000001,0.209837,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000049,0.000044,0.000001,0.209793,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000000,0.000000,0.000000,0.209793,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000116,0.000103,0.000000,0.209690,-0.000103,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620738.csv b/test/channel_loss/channel_forcing/et/cat-2620738.csv new file mode 100644 index 000000000..7312668bf --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620738.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000078,0.000000,0.000000,0.000000,0.000000,0.000813,0.000047,0.000813,0.000175,0.000175,0.008995,0.380265,-0.001141,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000046,0.000745,0.000058,0.000058,0.008296,0.379191,-0.001074,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000045,0.000684,0.000000,0.000000,0.007657,0.378199,-0.000991,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000044,0.000628,0.000000,0.000000,0.007073,0.377232,-0.000967,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000043,0.000578,0.000000,0.000000,0.006538,0.376289,-0.000943,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000042,0.000532,0.000000,0.000000,0.006048,0.375370,-0.000920,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000490,0.000041,0.000491,0.000000,0.000000,0.005598,0.374473,-0.000897,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000040,0.000453,0.000000,0.000000,0.005185,0.373598,-0.000875,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000039,0.000418,0.000000,0.000000,0.004806,0.372745,-0.000853,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000386,0.000038,0.000387,0.000000,0.000000,0.004458,0.371913,-0.000832,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000358,0.000037,0.000358,0.000000,0.000000,0.004137,0.371101,-0.000811,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000331,0.000036,0.000332,0.000000,0.000000,0.003842,0.370310,-0.000791,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000307,0.000035,0.000307,0.000000,0.000000,0.003570,0.369538,-0.000772,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000034,0.000285,0.000000,0.000000,0.003319,0.368785,-0.000753,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000264,0.000033,0.000265,0.000135,0.000135,0.003088,0.367919,-0.000866,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000246,0.000032,0.000246,0.000378,0.000378,0.002875,0.366837,-0.001082,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000228,0.000031,0.000229,0.000566,0.000566,0.002677,0.365600,-0.001238,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000212,0.000029,0.000213,0.000721,0.000721,0.002494,0.364241,-0.001359,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000198,0.000028,0.000199,0.000637,0.000637,0.002324,0.362998,-0.001243,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000833,0.000002,0.000003,0.000002,0.000001,0.000184,0.000027,0.000187,0.000626,0.000626,0.002167,0.362605,-0.000392,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000862,0.000004,0.000006,0.000004,0.000001,0.000171,0.000027,0.000177,0.000575,0.000575,0.002022,0.362299,-0.000307,1.000000,0.000003 +21,2022-08-01 21:00:00,0.000923,0.000012,0.000017,0.000012,0.000002,0.000160,0.000027,0.000173,0.000424,0.000424,0.001889,0.362195,-0.000104,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000957,0.000020,0.000027,0.000020,0.000002,0.000149,0.000027,0.000171,0.000339,0.000339,0.001766,0.362201,0.000006,1.000000,0.000015 +23,2022-08-01 23:00:00,0.000953,0.000028,0.000033,0.000028,0.000002,0.000140,0.000027,0.000170,0.000259,0.000259,0.001653,0.362274,0.000074,1.000000,0.000020 +24,2022-08-02 00:00:00,0.000904,0.000034,0.000037,0.000034,0.000002,0.000131,0.000027,0.000167,0.000176,0.000176,0.001549,0.362376,0.000101,1.000000,0.000023 +25,2022-08-02 01:00:00,0.001123,0.000057,0.000074,0.000057,0.000002,0.000123,0.000027,0.000182,0.000072,0.000072,0.001454,0.362752,0.000376,1.000000,0.000041 +26,2022-08-02 02:00:00,0.001117,0.000072,0.000084,0.000072,0.000002,0.000115,0.000028,0.000190,0.000000,0.000000,0.001366,0.363174,0.000423,1.000000,0.000053 +27,2022-08-02 03:00:00,0.001123,0.000083,0.000085,0.000083,0.000002,0.000108,0.000028,0.000193,0.000000,0.000000,0.001286,0.363591,0.000417,1.000000,0.000055 +28,2022-08-02 04:00:00,0.001121,0.000085,0.000085,0.000085,0.000003,0.000102,0.000029,0.000189,0.000000,0.000000,0.001213,0.363996,0.000405,1.000000,0.000055 +29,2022-08-02 05:00:00,0.001125,0.000085,0.000085,0.000085,0.000003,0.000096,0.000029,0.000184,0.000000,0.000000,0.001146,0.364394,0.000398,1.000000,0.000055 +30,2022-08-02 06:00:00,0.001128,0.000085,0.000086,0.000085,0.000003,0.000091,0.000030,0.000180,0.000000,0.000000,0.001084,0.364785,0.000391,1.000000,0.000056 +31,2022-08-02 07:00:00,0.000000,0.000039,0.000000,0.000039,0.000003,0.000086,0.000029,0.000128,0.000000,0.000000,0.001027,0.364149,-0.000635,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000003,0.000082,0.000028,0.000102,0.000000,0.000000,0.000973,0.363530,-0.000620,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000077,0.000027,0.000081,0.000000,0.000000,0.000923,0.362926,-0.000604,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000074,0.000027,0.000077,0.000000,0.000000,0.000877,0.362336,-0.000589,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000070,0.000026,0.000074,0.000000,0.000000,0.000833,0.361762,-0.000575,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000066,0.000025,0.000070,0.000000,0.000000,0.000792,0.361201,-0.000560,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000123,0.000001,0.000001,0.000001,0.000004,0.000063,0.000025,0.000068,0.000000,0.000000,0.000754,0.360773,-0.000428,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000135,0.000000,0.000000,0.000000,0.000004,0.000060,0.000024,0.000065,0.000116,0.000116,0.000718,0.360256,-0.000518,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000124,0.000000,0.000000,0.000000,0.000005,0.000057,0.000024,0.000062,0.000317,0.000317,0.000684,0.359544,-0.000712,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000084,0.000000,0.000000,0.000000,0.000005,0.000055,0.000023,0.000059,0.000482,0.000482,0.000652,0.358651,-0.000893,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000055,0.000000,0.000000,0.000000,0.000005,0.000052,0.000021,0.000057,0.000614,0.000614,0.000622,0.357622,-0.001029,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000085,0.000000,0.000000,0.000000,0.000005,0.000050,0.000020,0.000055,0.000705,0.000705,0.000592,0.356559,-0.001063,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000032,0.000000,0.000000,0.000000,0.000006,0.000047,0.000019,0.000053,0.000696,0.000696,0.000564,0.355480,-0.001079,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000048,0.000000,0.000000,0.000000,0.000006,0.000045,0.000018,0.000051,0.000641,0.000641,0.000537,0.354496,-0.000984,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000032,0.000000,0.000000,0.000000,0.000006,0.000043,0.000017,0.000049,0.000584,0.000584,0.000511,0.353577,-0.000919,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000041,0.000016,0.000047,0.000455,0.000455,0.000486,0.352775,-0.000802,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000039,0.000015,0.000045,0.000347,0.000347,0.000462,0.352098,-0.000677,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000037,0.000014,0.000043,0.000205,0.000205,0.000440,0.351577,-0.000522,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000085,0.000000,0.000000,0.000000,0.000007,0.000035,0.000014,0.000042,0.000054,0.000054,0.000419,0.351298,-0.000278,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000085,0.000000,0.000001,0.000000,0.000007,0.000033,0.000014,0.000041,0.000000,0.000000,0.000399,0.351079,-0.000220,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000098,0.000001,0.000001,0.000001,0.000007,0.000032,0.000014,0.000040,0.000000,0.000000,0.000381,0.350878,-0.000201,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000121,0.000001,0.000001,0.000001,0.000008,0.000030,0.000013,0.000039,0.000000,0.000000,0.000364,0.350703,-0.000175,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000130,0.000001,0.000001,0.000001,0.000008,0.000029,0.000013,0.000038,0.000000,0.000000,0.000348,0.350541,-0.000162,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000141,0.000001,0.000001,0.000001,0.000008,0.000028,0.000013,0.000037,0.000000,0.000000,0.000333,0.350394,-0.000147,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000008,0.000027,0.000013,0.000036,0.000000,0.000000,0.000319,0.350115,-0.000279,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000026,0.000012,0.000034,0.000000,0.000000,0.000306,0.349842,-0.000273,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000025,0.000012,0.000033,0.000000,0.000000,0.000294,0.349577,-0.000266,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000024,0.000012,0.000033,0.000000,0.000000,0.000282,0.349318,-0.000259,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000023,0.000011,0.000032,0.000000,0.000000,0.000271,0.349065,-0.000253,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000022,0.000011,0.000031,0.000000,0.000000,0.000260,0.348819,-0.000246,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000021,0.000011,0.000031,0.000000,0.000000,0.000251,0.348578,-0.000240,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000020,0.000011,0.000030,0.000130,0.000130,0.000241,0.348217,-0.000361,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000019,0.000010,0.000030,0.000377,0.000377,0.000231,0.347624,-0.000593,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000019,0.000009,0.000029,0.000564,0.000564,0.000222,0.346863,-0.000761,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000018,0.000008,0.000028,0.000719,0.000719,0.000212,0.345970,-0.000894,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000017,0.000007,0.000028,0.000721,0.000721,0.000202,0.345097,-0.000873,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000047,0.000000,0.000000,0.000000,0.000011,0.000016,0.000006,0.000027,0.000708,0.000708,0.000192,0.344304,-0.000793,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000048,0.000000,0.000000,0.000000,0.000011,0.000015,0.000005,0.000027,0.000648,0.000648,0.000182,0.343589,-0.000715,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000047,0.000000,0.000000,0.000000,0.000012,0.000014,0.000004,0.000026,0.000565,0.000565,0.000172,0.342973,-0.000616,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000047,0.000000,0.000000,0.000000,0.000012,0.000014,0.000004,0.000025,0.000449,0.000449,0.000163,0.342485,-0.000488,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000048,0.000000,0.000000,0.000000,0.000012,0.000013,0.000003,0.000025,0.000345,0.000345,0.000153,0.342111,-0.000374,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000048,0.000000,0.000000,0.000000,0.000012,0.000012,0.000003,0.000024,0.000218,0.000218,0.000145,0.341870,-0.000241,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000011,0.000003,0.000024,0.000068,0.000068,0.000136,0.341735,-0.000135,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000011,0.000003,0.000024,0.000000,0.000000,0.000128,0.341670,-0.000065,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000010,0.000003,0.000023,0.000000,0.000000,0.000121,0.341606,-0.000064,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000010,0.000003,0.000023,0.000000,0.000000,0.000115,0.341544,-0.000062,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000009,0.000003,0.000023,0.000000,0.000000,0.000108,0.341484,-0.000061,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000009,0.000003,0.000022,0.000000,0.000000,0.000102,0.341424,-0.000059,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000008,0.000003,0.000022,0.000000,0.000000,0.000097,0.341367,-0.000058,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000008,0.000003,0.000022,0.000000,0.000000,0.000092,0.341311,-0.000056,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000087,0.341256,-0.000055,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000083,0.341202,-0.000053,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000078,0.341150,-0.000052,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000006,0.000002,0.000021,0.000000,0.000000,0.000075,0.341099,-0.000051,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000006,0.000002,0.000021,0.000000,0.000000,0.000071,0.341050,-0.000050,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000006,0.000002,0.000021,0.000123,0.000123,0.000067,0.340881,-0.000169,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000005,0.000002,0.000021,0.000366,0.000366,0.000064,0.340480,-0.000401,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000005,0.000001,0.000021,0.000557,0.000557,0.000060,0.339903,-0.000578,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000005,0.000000,0.000021,0.000720,0.000720,0.000055,0.339181,-0.000722,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000004,0.000000,0.000021,0.000833,0.000833,0.000051,0.338347,-0.000833,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000004,0.000000,0.000021,0.000802,0.000799,0.000047,0.337549,-0.000799,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000004,0.000000,0.000021,0.000762,0.000756,0.000043,0.336792,-0.000756,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000003,0.000000,0.000021,0.000632,0.000625,0.000040,0.336167,-0.000625,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000003,0.000000,0.000021,0.000499,0.000492,0.000037,0.335676,-0.000492,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000003,0.000000,0.000020,0.000376,0.000370,0.000034,0.335306,-0.000370,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000003,0.000000,0.000020,0.000222,0.000218,0.000032,0.335088,-0.000218,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000020,0.000072,0.000070,0.000029,0.335017,-0.000070,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000021,0.000000,0.000000,0.000027,0.335017,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000002,0.000000,0.000021,0.000000,0.000000,0.000025,0.335017,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000000,0.000000,0.000023,0.335017,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000000,0.000000,0.000021,0.335017,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000000,0.000000,0.000020,0.335017,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000001,0.000000,0.000021,0.000000,0.000000,0.000018,0.335017,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000017,0.335017,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000015,0.335017,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000014,0.335017,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000013,0.335017,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000012,0.335017,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000021,0.000000,0.000000,0.000011,0.335017,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000141,0.000138,0.000010,0.334879,-0.000138,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000377,0.000369,0.000009,0.334509,-0.000369,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000567,0.000554,0.000009,0.333955,-0.000554,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000725,0.000707,0.000008,0.333248,-0.000707,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000748,0.000727,0.000007,0.332521,-0.000727,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000022,0.000711,0.000689,0.000007,0.331832,-0.000689,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000022,0.000656,0.000633,0.000006,0.331199,-0.000633,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000023,0.000580,0.000558,0.000006,0.330641,-0.000558,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000023,0.000455,0.000437,0.000005,0.330205,-0.000437,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000000,0.000000,0.000023,0.000345,0.000330,0.000005,0.329874,-0.000330,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000208,0.000198,0.000005,0.329676,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000071,0.000068,0.000004,0.329608,-0.000068,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000004,0.329608,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000023,0.000000,0.000000,0.000004,0.329608,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000024,0.000000,0.000000,0.000003,0.329608,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000024,0.000000,0.000000,0.000003,0.329608,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000003,0.329608,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000003,0.329608,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000002,0.329608,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000120,0.000114,0.000002,0.329494,-0.000114,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000361,0.000344,0.000001,0.329150,-0.000344,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000554,0.000528,0.000001,0.328622,-0.000528,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000715,0.000679,0.000001,0.327943,-0.000679,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000835,0.000790,0.000001,0.327153,-0.000790,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000823,0.000776,0.000001,0.326377,-0.000776,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000763,0.000716,0.000001,0.325661,-0.000716,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000635,0.000594,0.000001,0.325067,-0.000594,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000499,0.000465,0.000001,0.324602,-0.000465,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000377,0.000350,0.000001,0.324252,-0.000350,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000216,0.000200,0.000001,0.324052,-0.000200,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000065,0.000060,0.000001,0.323991,-0.000060,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.323991,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.323991,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000000,0.323991,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000117,0.000109,0.000000,0.323883,-0.000109,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000351,0.000326,0.000000,0.323557,-0.000326,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000541,0.000500,0.000000,0.323057,-0.000500,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000699,0.000645,0.000000,0.322412,-0.000645,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000769,0.000707,0.000000,0.321705,-0.000707,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000749,0.000686,0.000000,0.321019,-0.000686,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000697,0.000636,0.000000,0.320382,-0.000636,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000578,0.000526,0.000000,0.319857,-0.000526,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000452,0.000410,0.000000,0.319446,-0.000410,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000345,0.000312,0.000000,0.319134,-0.000312,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000180,0.000163,0.000000,0.318972,-0.000163,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000028,0.000025,0.000000,0.318946,-0.000025,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318946,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318948,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318951,0.000003,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318953,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318955,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318957,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000000,0.318957,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000099,0.000089,0.000000,0.318868,-0.000089,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000341,0.000308,0.000000,0.318560,-0.000308,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000539,0.000486,0.000000,0.318074,-0.000486,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000703,0.000632,0.000000,0.317442,-0.000632,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000823,0.000737,0.000000,0.316706,-0.000737,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000809,0.000722,0.000000,0.315984,-0.000722,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000745,0.000662,0.000000,0.315322,-0.000662,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000630,0.000558,0.000000,0.314764,-0.000558,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000492,0.000434,0.000000,0.314329,-0.000434,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000370,0.000326,0.000000,0.314004,-0.000326,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000200,0.000176,0.000000,0.313828,-0.000176,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000043,0.000038,0.000000,0.313790,-0.000038,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.313790,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000110,0.000096,0.000000,0.313694,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620739.csv b/test/channel_loss/channel_forcing/et/cat-2620739.csv new file mode 100644 index 000000000..15638739a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620739.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000112,0.000000,0.000000,0.000000,0.000000,0.000814,0.000059,0.000814,0.000186,0.000186,0.009006,0.377561,-0.001497,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000747,0.000057,0.000747,0.000062,0.000062,0.008316,0.376111,-0.001450,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000686,0.000056,0.000686,0.000000,0.000000,0.007685,0.374757,-0.001355,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000632,0.000055,0.000632,0.000000,0.000000,0.007108,0.373434,-0.001322,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000053,0.000582,0.000000,0.000000,0.006580,0.372143,-0.001291,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000536,0.000052,0.000537,0.000000,0.000000,0.006096,0.370883,-0.001260,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000495,0.000051,0.000495,0.000000,0.000000,0.005651,0.369652,-0.001230,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000458,0.000050,0.000458,0.000000,0.000000,0.005243,0.368451,-0.001201,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000424,0.000048,0.000424,0.000000,0.000000,0.004868,0.367279,-0.001173,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000392,0.000047,0.000393,0.000000,0.000000,0.004523,0.366134,-0.001145,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000364,0.000046,0.000364,0.000000,0.000000,0.004205,0.365016,-0.001118,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000337,0.000045,0.000338,0.000000,0.000000,0.003913,0.363925,-0.001091,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000313,0.000044,0.000314,0.000000,0.000000,0.003644,0.362860,-0.001065,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000291,0.000043,0.000292,0.000000,0.000000,0.003395,0.361820,-0.001040,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000271,0.000042,0.000272,0.000142,0.000142,0.003166,0.360667,-0.001154,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000253,0.000040,0.000254,0.000391,0.000391,0.002954,0.359297,-0.001370,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000235,0.000039,0.000237,0.000573,0.000573,0.002757,0.357782,-0.001515,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000219,0.000037,0.000221,0.000728,0.000728,0.002575,0.356152,-0.001630,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000205,0.000036,0.000206,0.000643,0.000643,0.002406,0.354644,-0.001508,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000849,0.000002,0.000004,0.000002,0.000002,0.000191,0.000035,0.000195,0.000625,0.000625,0.002250,0.354014,-0.000630,1.000000,0.000002 +20,2022-08-01 20:00:00,0.001052,0.000010,0.000017,0.000010,0.000002,0.000179,0.000035,0.000191,0.000574,0.000574,0.002106,0.353635,-0.000379,1.000000,0.000008 +21,2022-08-01 21:00:00,0.001092,0.000022,0.000032,0.000022,0.000002,0.000167,0.000035,0.000192,0.000426,0.000426,0.001973,0.353433,-0.000202,1.000000,0.000018 +22,2022-08-01 22:00:00,0.001067,0.000032,0.000037,0.000032,0.000002,0.000157,0.000034,0.000191,0.000346,0.000346,0.001851,0.353285,-0.000148,1.000000,0.000023 +23,2022-08-01 23:00:00,0.001055,0.000040,0.000044,0.000040,0.000003,0.000147,0.000034,0.000189,0.000269,0.000269,0.001738,0.353196,-0.000089,1.000000,0.000027 +24,2022-08-02 00:00:00,0.001053,0.000048,0.000054,0.000048,0.000003,0.000138,0.000034,0.000189,0.000179,0.000179,0.001635,0.353186,-0.000010,1.000000,0.000033 +25,2022-08-02 01:00:00,0.001050,0.000059,0.000066,0.000059,0.000003,0.000130,0.000034,0.000192,0.000078,0.000078,0.001539,0.353260,0.000074,1.000000,0.000041 +26,2022-08-02 02:00:00,0.001158,0.000079,0.000093,0.000079,0.000003,0.000122,0.000035,0.000204,0.000000,0.000000,0.001451,0.353488,0.000228,1.000000,0.000055 +27,2022-08-02 03:00:00,0.001131,0.000086,0.000089,0.000086,0.000003,0.000115,0.000035,0.000204,0.000000,0.000000,0.001371,0.353688,0.000200,1.000000,0.000059 +28,2022-08-02 04:00:00,0.001164,0.000093,0.000094,0.000093,0.000004,0.000109,0.000035,0.000205,0.000000,0.000000,0.001296,0.353911,0.000223,1.000000,0.000060 +29,2022-08-02 05:00:00,0.001199,0.000096,0.000100,0.000096,0.000004,0.000103,0.000035,0.000203,0.000000,0.000000,0.001228,0.354157,0.000246,1.000000,0.000064 +30,2022-08-02 06:00:00,0.001280,0.000106,0.000113,0.000106,0.000004,0.000098,0.000036,0.000208,0.000000,0.000000,0.001166,0.354464,0.000307,1.000000,0.000071 +31,2022-08-02 07:00:00,0.000000,0.000048,0.000000,0.000048,0.000004,0.000093,0.000035,0.000146,0.000000,0.000000,0.001107,0.353623,-0.000840,1.000000,0.000023 +32,2022-08-02 08:00:00,0.000000,0.000023,0.000000,0.000023,0.000005,0.000088,0.000034,0.000116,0.000000,0.000000,0.001053,0.352803,-0.000820,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000084,0.000033,0.000089,0.000000,0.000000,0.001002,0.352002,-0.000801,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000080,0.000032,0.000085,0.000000,0.000000,0.000954,0.351220,-0.000782,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000076,0.000032,0.000082,0.000000,0.000000,0.000909,0.350457,-0.000763,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000073,0.000031,0.000078,0.000000,0.000000,0.000867,0.349712,-0.000745,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000177,0.000001,0.000002,0.000001,0.000006,0.000069,0.000030,0.000077,0.000000,0.000000,0.000828,0.349155,-0.000557,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000267,0.000001,0.000002,0.000001,0.000006,0.000066,0.000030,0.000074,0.000124,0.000124,0.000791,0.348579,-0.000576,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000126,0.000001,0.000000,0.000001,0.000006,0.000063,0.000029,0.000071,0.000328,0.000328,0.000757,0.347681,-0.000897,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000126,0.000000,0.000000,0.000000,0.000007,0.000061,0.000028,0.000068,0.000493,0.000493,0.000724,0.346645,-0.001037,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000058,0.000026,0.000065,0.000624,0.000624,0.000692,0.345442,-0.001202,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000177,0.000000,0.000000,0.000000,0.000007,0.000055,0.000025,0.000063,0.000714,0.000714,0.000662,0.344292,-0.001150,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000053,0.000024,0.000061,0.000694,0.000694,0.000633,0.343077,-0.001215,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000051,0.000023,0.000059,0.000644,0.000644,0.000606,0.341941,-0.001136,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000048,0.000022,0.000057,0.000590,0.000590,0.000579,0.340883,-0.001057,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000049,0.000000,0.000000,0.000000,0.000009,0.000046,0.000021,0.000055,0.000468,0.000468,0.000554,0.339957,-0.000926,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000009,0.000044,0.000020,0.000053,0.000355,0.000355,0.000530,0.339171,-0.000786,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000049,0.000000,0.000000,0.000000,0.000009,0.000042,0.000020,0.000052,0.000212,0.000212,0.000507,0.338535,-0.000636,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000254,0.000002,0.000003,0.000002,0.000009,0.000041,0.000019,0.000052,0.000057,0.000057,0.000485,0.338263,-0.000272,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000254,0.000003,0.000005,0.000003,0.000010,0.000039,0.000019,0.000052,0.000000,0.000000,0.000466,0.338052,-0.000212,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000321,0.000006,0.000007,0.000006,0.000010,0.000037,0.000019,0.000053,0.000000,0.000000,0.000447,0.337908,-0.000144,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000286,0.000006,0.000006,0.000006,0.000010,0.000036,0.000019,0.000052,0.000000,0.000000,0.000430,0.337735,-0.000173,1.000000,0.000004 +53,2022-08-03 05:00:00,0.000394,0.000009,0.000011,0.000009,0.000011,0.000035,0.000019,0.000054,0.000000,0.000000,0.000414,0.337666,-0.000068,1.000000,0.000006 +54,2022-08-03 06:00:00,0.000363,0.000009,0.000009,0.000009,0.000011,0.000033,0.000019,0.000054,0.000000,0.000000,0.000399,0.337571,-0.000095,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000077,0.000005,0.000000,0.000005,0.000011,0.000032,0.000018,0.000048,0.000000,0.000000,0.000385,0.337207,-0.000364,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000077,0.000002,0.000000,0.000002,0.000012,0.000031,0.000018,0.000045,0.000000,0.000000,0.000372,0.336851,-0.000355,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000077,0.000000,0.000000,0.000000,0.000012,0.000030,0.000018,0.000043,0.000000,0.000000,0.000360,0.336505,-0.000347,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000092,0.000001,0.000001,0.000001,0.000012,0.000029,0.000017,0.000042,0.000000,0.000000,0.000348,0.336181,-0.000324,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000077,0.000000,0.000000,0.000000,0.000013,0.000028,0.000017,0.000041,0.000000,0.000000,0.000336,0.335850,-0.000331,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000092,0.000001,0.000001,0.000001,0.000013,0.000027,0.000017,0.000041,0.000000,0.000000,0.000326,0.335541,-0.000309,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000026,0.000016,0.000040,0.000000,0.000000,0.000316,0.335150,-0.000391,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000016,0.000039,0.000136,0.000136,0.000306,0.334636,-0.000515,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000015,0.000039,0.000387,0.000387,0.000296,0.333889,-0.000747,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000024,0.000014,0.000038,0.000572,0.000572,0.000286,0.332979,-0.000910,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000023,0.000013,0.000038,0.000729,0.000729,0.000276,0.331938,-0.001041,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000022,0.000012,0.000037,0.000739,0.000739,0.000266,0.330911,-0.001027,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000021,0.000011,0.000037,0.000713,0.000713,0.000255,0.329996,-0.000915,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000020,0.000010,0.000036,0.000655,0.000655,0.000245,0.329159,-0.000837,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000016,0.000020,0.000009,0.000036,0.000570,0.000570,0.000235,0.328425,-0.000734,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000019,0.000009,0.000035,0.000457,0.000457,0.000225,0.327819,-0.000606,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000018,0.000008,0.000035,0.000352,0.000352,0.000215,0.327330,-0.000490,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000017,0.000008,0.000034,0.000223,0.000223,0.000206,0.326978,-0.000352,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000016,0.000008,0.000034,0.000071,0.000071,0.000197,0.326721,-0.000257,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000016,0.000007,0.000034,0.000000,0.000000,0.000189,0.326540,-0.000181,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000007,0.000033,0.000000,0.000000,0.000181,0.326363,-0.000177,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000000,0.000000,0.000174,0.326190,-0.000173,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000007,0.000033,0.000000,0.000000,0.000167,0.326022,-0.000169,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000007,0.000033,0.000000,0.000000,0.000160,0.325857,-0.000165,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000013,0.000007,0.000032,0.000000,0.000000,0.000154,0.325697,-0.000161,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000032,0.000000,0.000000,0.000148,0.325540,-0.000157,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000006,0.000032,0.000000,0.000000,0.000143,0.325387,-0.000153,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000000,0.000000,0.000137,0.325238,-0.000149,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000000,0.000000,0.000132,0.325092,-0.000146,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000011,0.000006,0.000032,0.000000,0.000000,0.000128,0.324949,-0.000142,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000006,0.000032,0.000000,0.000000,0.000123,0.324810,-0.000139,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000005,0.000032,0.000130,0.000130,0.000119,0.324547,-0.000263,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000010,0.000005,0.000032,0.000380,0.000380,0.000114,0.324047,-0.000500,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000009,0.000004,0.000032,0.000568,0.000568,0.000109,0.323375,-0.000672,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000009,0.000003,0.000032,0.000727,0.000727,0.000104,0.322564,-0.000811,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000008,0.000003,0.000032,0.000846,0.000846,0.000098,0.321656,-0.000908,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000008,0.000002,0.000031,0.000822,0.000822,0.000092,0.320793,-0.000863,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000007,0.000001,0.000031,0.000760,0.000760,0.000086,0.320010,-0.000783,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000007,0.000000,0.000031,0.000630,0.000630,0.000080,0.319373,-0.000637,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000006,0.000000,0.000031,0.000504,0.000504,0.000074,0.318869,-0.000504,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000006,0.000000,0.000031,0.000383,0.000383,0.000068,0.318486,-0.000383,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000005,0.000000,0.000030,0.000228,0.000227,0.000063,0.318259,-0.000227,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000005,0.000000,0.000030,0.000076,0.000076,0.000058,0.318183,-0.000076,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000054,0.318183,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000049,0.318183,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000004,0.000000,0.000030,0.000000,0.000000,0.000046,0.318183,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000004,0.000000,0.000030,0.000000,0.000000,0.000042,0.318183,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000039,0.318183,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000003,0.000000,0.000030,0.000000,0.000000,0.000036,0.318183,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000003,0.000000,0.000030,0.000000,0.000000,0.000033,0.318183,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000003,0.000000,0.000031,0.000000,0.000000,0.000031,0.318183,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000031,0.000000,0.000000,0.000028,0.318183,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000026,0.318183,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000024,0.318183,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000000,0.000000,0.000022,0.318183,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000002,0.000000,0.000031,0.000148,0.000147,0.000021,0.318035,-0.000147,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000002,0.000000,0.000031,0.000392,0.000390,0.000019,0.317646,-0.000390,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000032,0.000578,0.000573,0.000017,0.317072,-0.000573,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000032,0.000734,0.000726,0.000016,0.316346,-0.000726,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000756,0.000745,0.000015,0.315601,-0.000745,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000721,0.000707,0.000014,0.314894,-0.000707,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000639,0.000625,0.000013,0.314269,-0.000625,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000568,0.000553,0.000012,0.313716,-0.000553,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000459,0.000446,0.000011,0.313270,-0.000446,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000347,0.000336,0.000010,0.312934,-0.000336,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000001,0.000000,0.000033,0.000212,0.000205,0.000009,0.312729,-0.000205,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000033,0.000075,0.000073,0.000009,0.312656,-0.000073,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000033,0.000000,0.000000,0.000008,0.312656,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000034,0.000000,0.000000,0.000007,0.312656,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000001,0.000000,0.000034,0.000000,0.000000,0.000007,0.312656,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000034,0.000000,0.000000,0.000006,0.312656,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000006,0.312656,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000005,0.312656,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000005,0.312656,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.312656,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.312656,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.312656,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000000,0.000000,0.000004,0.312656,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000003,0.312656,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000126,0.000122,0.000003,0.312534,-0.000122,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000374,0.000361,0.000003,0.312174,-0.000361,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000037,0.000562,0.000541,0.000003,0.311632,-0.000541,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000717,0.000689,0.000002,0.310943,-0.000689,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000834,0.000798,0.000002,0.310145,-0.000798,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000814,0.000775,0.000002,0.309370,-0.000775,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000755,0.000716,0.000002,0.308654,-0.000716,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000038,0.000632,0.000597,0.000002,0.308057,-0.000597,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000504,0.000474,0.000002,0.307583,-0.000474,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000381,0.000357,0.000001,0.307226,-0.000357,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000220,0.000206,0.000001,0.307020,-0.000206,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000068,0.000064,0.000001,0.306956,-0.000064,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000001,0.306956,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.306956,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000124,0.000116,0.000000,0.306840,-0.000116,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000368,0.000344,0.000000,0.306496,-0.000344,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000556,0.000519,0.000000,0.305976,-0.000519,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000711,0.000662,0.000000,0.305315,-0.000662,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000783,0.000725,0.000000,0.304589,-0.000725,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000758,0.000700,0.000000,0.303890,-0.000700,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000699,0.000642,0.000000,0.303248,-0.000642,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000589,0.000539,0.000000,0.302708,-0.000539,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000467,0.000426,0.000000,0.302282,-0.000426,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000356,0.000325,0.000000,0.301958,-0.000325,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000186,0.000169,0.000000,0.301789,-0.000169,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000033,0.000030,0.000000,0.301759,-0.000030,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.301759,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000106,0.000096,0.000000,0.301662,-0.000096,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000355,0.000322,0.000000,0.301340,-0.000322,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000552,0.000500,0.000000,0.300840,-0.000500,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000711,0.000642,0.000000,0.300198,-0.000642,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000827,0.000744,0.000000,0.299454,-0.000744,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000804,0.000720,0.000000,0.298734,-0.000720,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000741,0.000661,0.000000,0.298073,-0.000661,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000629,0.000559,0.000000,0.297514,-0.000559,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000498,0.000441,0.000000,0.297073,-0.000441,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000376,0.000332,0.000000,0.296742,-0.000332,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000206,0.000182,0.000000,0.296560,-0.000182,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000047,0.000041,0.000000,0.296519,-0.000041,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296519,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000114,0.000101,0.000000,0.296418,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620740.csv b/test/channel_loss/channel_forcing/et/cat-2620740.csv new file mode 100644 index 000000000..1d7601c21 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620740.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000151,0.000000,0.000000,0.000000,0.000000,0.000813,0.000046,0.000813,0.000179,0.000179,0.008993,0.379519,-0.001886,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000045,0.000745,0.000060,0.000060,0.008293,0.377643,-0.001875,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000683,0.000044,0.000684,0.000000,0.000000,0.007653,0.375868,-0.001776,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000043,0.000628,0.000000,0.000000,0.007069,0.374131,-0.001737,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000042,0.000577,0.000000,0.000000,0.006533,0.372433,-0.001698,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000041,0.000532,0.000000,0.000000,0.006043,0.370772,-0.001661,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000490,0.000040,0.000490,0.000000,0.000000,0.005593,0.369147,-0.001624,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000452,0.000039,0.000452,0.000000,0.000000,0.005180,0.367558,-0.001589,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000039,0.000418,0.000000,0.000000,0.004801,0.366005,-0.001554,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000386,0.000038,0.000387,0.000000,0.000000,0.004453,0.364485,-0.001520,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000357,0.000037,0.000358,0.000000,0.000000,0.004133,0.362999,-0.001486,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000331,0.000036,0.000332,0.000000,0.000000,0.003838,0.361546,-0.001453,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000307,0.000035,0.000308,0.000000,0.000000,0.003566,0.360124,-0.001421,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000285,0.000034,0.000286,0.000000,0.000000,0.003316,0.358734,-0.001390,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000264,0.000034,0.000266,0.000139,0.000139,0.003086,0.357239,-0.001495,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000245,0.000033,0.000247,0.000386,0.000386,0.002873,0.355535,-0.001704,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000228,0.000032,0.000230,0.000571,0.000571,0.002676,0.353687,-0.001848,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000212,0.000031,0.000214,0.000725,0.000725,0.002495,0.351730,-0.001957,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000198,0.000030,0.000200,0.000636,0.000636,0.002326,0.349903,-0.001827,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001085,0.000015,0.000027,0.000015,0.000002,0.000184,0.000029,0.000201,0.000620,0.000620,0.002171,0.349166,-0.000737,1.000000,0.000012 +20,2022-08-01 20:00:00,0.001121,0.000027,0.000037,0.000027,0.000003,0.000172,0.000029,0.000201,0.000571,0.000571,0.002028,0.348518,-0.000648,1.000000,0.000022 +21,2022-08-01 21:00:00,0.001121,0.000046,0.000058,0.000046,0.000003,0.000161,0.000028,0.000210,0.000425,0.000425,0.001896,0.348007,-0.000511,1.000000,0.000033 +22,2022-08-01 22:00:00,0.001114,0.000061,0.000071,0.000061,0.000003,0.000150,0.000028,0.000214,0.000339,0.000339,0.001774,0.347573,-0.000435,1.000000,0.000044 +23,2022-08-01 23:00:00,0.001108,0.000075,0.000084,0.000075,0.000003,0.000140,0.000028,0.000219,0.000263,0.000263,0.001662,0.347204,-0.000369,1.000000,0.000052 +24,2022-08-02 00:00:00,0.001066,0.000086,0.000093,0.000086,0.000004,0.000132,0.000028,0.000221,0.000176,0.000176,0.001558,0.346879,-0.000325,1.000000,0.000058 +25,2022-08-02 01:00:00,0.001225,0.000122,0.000150,0.000122,0.000004,0.000123,0.000028,0.000249,0.000075,0.000075,0.001463,0.346758,-0.000120,1.000000,0.000086 +26,2022-08-02 02:00:00,0.001194,0.000144,0.000160,0.000144,0.000004,0.000116,0.000028,0.000264,0.000000,0.000000,0.001374,0.346673,-0.000085,1.000000,0.000102 +27,2022-08-02 03:00:00,0.001227,0.000163,0.000169,0.000163,0.000005,0.000109,0.000028,0.000276,0.000000,0.000000,0.001293,0.346614,-0.000059,1.000000,0.000108 +28,2022-08-02 04:00:00,0.001191,0.000162,0.000160,0.000162,0.000005,0.000103,0.000028,0.000269,0.000000,0.000000,0.001218,0.346530,-0.000084,1.000000,0.000106 +29,2022-08-02 05:00:00,0.001197,0.000162,0.000161,0.000162,0.000005,0.000097,0.000028,0.000264,0.000000,0.000000,0.001149,0.346453,-0.000078,1.000000,0.000104 +30,2022-08-02 06:00:00,0.001285,0.000173,0.000184,0.000173,0.000005,0.000091,0.000028,0.000270,0.000000,0.000000,0.001086,0.346441,-0.000012,1.000000,0.000115 +31,2022-08-02 07:00:00,0.000000,0.000078,0.000000,0.000078,0.000006,0.000086,0.000027,0.000170,0.000000,0.000000,0.001026,0.345352,-0.001089,1.000000,0.000037 +32,2022-08-02 08:00:00,0.000000,0.000037,0.000000,0.000037,0.000006,0.000082,0.000026,0.000124,0.000000,0.000000,0.000971,0.344287,-0.001065,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000077,0.000026,0.000084,0.000000,0.000000,0.000920,0.343246,-0.001041,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000073,0.000025,0.000080,0.000000,0.000000,0.000872,0.342227,-0.001019,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000069,0.000025,0.000077,0.000000,0.000000,0.000827,0.341231,-0.000996,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000066,0.000024,0.000073,0.000000,0.000000,0.000786,0.340257,-0.000974,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000239,0.000004,0.000007,0.000004,0.000008,0.000063,0.000024,0.000074,0.000000,0.000000,0.000747,0.339531,-0.000726,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000285,0.000004,0.000003,0.000004,0.000008,0.000060,0.000023,0.000071,0.000121,0.000121,0.000711,0.338751,-0.000779,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000144,0.000002,0.000000,0.000002,0.000009,0.000057,0.000023,0.000068,0.000324,0.000324,0.000677,0.337655,-0.001096,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000126,0.000001,0.000000,0.000001,0.000009,0.000054,0.000022,0.000064,0.000489,0.000489,0.000645,0.336405,-0.001250,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000080,0.000000,0.000000,0.000000,0.000009,0.000051,0.000021,0.000061,0.000619,0.000619,0.000614,0.335011,-0.001394,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000180,0.000000,0.000000,0.000000,0.000010,0.000049,0.000020,0.000059,0.000708,0.000708,0.000586,0.333657,-0.001354,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000010,0.000047,0.000020,0.000057,0.000692,0.000692,0.000559,0.332235,-0.001422,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000045,0.000019,0.000055,0.000643,0.000643,0.000533,0.330892,-0.001343,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000011,0.000043,0.000018,0.000054,0.000590,0.000590,0.000509,0.329630,-0.001262,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000041,0.000018,0.000052,0.000462,0.000462,0.000486,0.328460,-0.001171,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000012,0.000039,0.000017,0.000051,0.000351,0.000351,0.000464,0.327427,-0.001033,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000037,0.000017,0.000049,0.000208,0.000208,0.000443,0.326553,-0.000874,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000159,0.000001,0.000001,0.000001,0.000013,0.000035,0.000016,0.000049,0.000055,0.000055,0.000424,0.326003,-0.000550,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000223,0.000004,0.000006,0.000004,0.000013,0.000034,0.000016,0.000051,0.000000,0.000000,0.000406,0.325577,-0.000426,1.000000,0.000003 +51,2022-08-03 03:00:00,0.000251,0.000006,0.000008,0.000006,0.000014,0.000033,0.000016,0.000052,0.000000,0.000000,0.000389,0.325185,-0.000392,1.000000,0.000005 +52,2022-08-03 04:00:00,0.000285,0.000008,0.000010,0.000008,0.000014,0.000031,0.000016,0.000054,0.000000,0.000000,0.000374,0.324834,-0.000351,1.000000,0.000006 +53,2022-08-03 05:00:00,0.000252,0.000008,0.000008,0.000008,0.000015,0.000030,0.000015,0.000053,0.000000,0.000000,0.000359,0.324460,-0.000374,1.000000,0.000005 +54,2022-08-03 06:00:00,0.000285,0.000009,0.000010,0.000009,0.000015,0.000029,0.000015,0.000053,0.000000,0.000000,0.000345,0.324124,-0.000336,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000015,0.000028,0.000015,0.000047,0.000000,0.000000,0.000333,0.323527,-0.000598,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000016,0.000027,0.000014,0.000045,0.000000,0.000000,0.000320,0.322942,-0.000584,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000026,0.000014,0.000042,0.000000,0.000000,0.000309,0.322371,-0.000572,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000006,0.000000,0.000000,0.000000,0.000017,0.000025,0.000014,0.000042,0.000000,0.000000,0.000298,0.321817,-0.000553,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000024,0.000014,0.000041,0.000000,0.000000,0.000287,0.321270,-0.000547,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000006,0.000000,0.000000,0.000000,0.000018,0.000023,0.000013,0.000041,0.000000,0.000000,0.000277,0.320741,-0.000529,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000022,0.000013,0.000041,0.000000,0.000000,0.000268,0.320218,-0.000523,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000022,0.000013,0.000040,0.000133,0.000133,0.000259,0.319577,-0.000641,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000021,0.000012,0.000040,0.000382,0.000382,0.000250,0.318705,-0.000871,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000020,0.000012,0.000040,0.000567,0.000567,0.000242,0.317673,-0.001033,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000019,0.000011,0.000040,0.000724,0.000724,0.000233,0.316509,-0.001164,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000019,0.000010,0.000039,0.000729,0.000729,0.000225,0.315366,-0.001143,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000021,0.000018,0.000010,0.000039,0.000711,0.000711,0.000216,0.314328,-0.001038,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000021,0.000017,0.000009,0.000039,0.000651,0.000651,0.000208,0.313370,-0.000957,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000022,0.000017,0.000009,0.000039,0.000567,0.000567,0.000200,0.312516,-0.000854,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000022,0.000016,0.000008,0.000038,0.000450,0.000450,0.000192,0.311796,-0.000721,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000076,0.000000,0.000000,0.000000,0.000023,0.000015,0.000008,0.000038,0.000348,0.000348,0.000185,0.311204,-0.000591,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000079,0.000000,0.000000,0.000000,0.000023,0.000015,0.000008,0.000038,0.000220,0.000220,0.000178,0.310753,-0.000451,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000014,0.000007,0.000038,0.000069,0.000069,0.000171,0.310383,-0.000370,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000014,0.000007,0.000038,0.000000,0.000000,0.000165,0.310088,-0.000295,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000013,0.000007,0.000038,0.000000,0.000000,0.000158,0.309799,-0.000289,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000013,0.000007,0.000038,0.000000,0.000000,0.000153,0.309517,-0.000282,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000012,0.000007,0.000038,0.000000,0.000000,0.000147,0.309241,-0.000276,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000012,0.000007,0.000038,0.000000,0.000000,0.000142,0.308971,-0.000270,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000011,0.000007,0.000038,0.000000,0.000000,0.000137,0.308707,-0.000264,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000011,0.000006,0.000038,0.000000,0.000000,0.000133,0.308448,-0.000258,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000011,0.000006,0.000038,0.000000,0.000000,0.000128,0.308196,-0.000253,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000010,0.000006,0.000038,0.000000,0.000000,0.000124,0.307949,-0.000247,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000006,0.000039,0.000000,0.000000,0.000120,0.307707,-0.000242,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000010,0.000006,0.000039,0.000000,0.000000,0.000116,0.307471,-0.000236,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000009,0.000006,0.000039,0.000000,0.000000,0.000113,0.307240,-0.000231,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000009,0.000006,0.000039,0.000127,0.000127,0.000109,0.306891,-0.000350,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000009,0.000005,0.000039,0.000372,0.000372,0.000105,0.306308,-0.000582,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000008,0.000005,0.000039,0.000561,0.000561,0.000102,0.305554,-0.000754,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000008,0.000004,0.000039,0.000721,0.000721,0.000098,0.304660,-0.000894,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000008,0.000004,0.000040,0.000839,0.000839,0.000094,0.303670,-0.000989,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000007,0.000003,0.000040,0.000813,0.000813,0.000090,0.302728,-0.000943,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000007,0.000003,0.000040,0.000763,0.000763,0.000085,0.301855,-0.000873,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000007,0.000002,0.000040,0.000634,0.000634,0.000081,0.301127,-0.000728,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000002,0.000040,0.000501,0.000501,0.000076,0.300545,-0.000582,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000002,0.000040,0.000380,0.000380,0.000072,0.300095,-0.000450,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000006,0.000002,0.000040,0.000225,0.000225,0.000068,0.299807,-0.000288,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000005,0.000002,0.000040,0.000073,0.000073,0.000064,0.299673,-0.000134,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000005,0.000001,0.000040,0.000000,0.000000,0.000061,0.299614,-0.000059,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000001,0.000041,0.000000,0.000000,0.000057,0.299555,-0.000058,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000005,0.000001,0.000041,0.000000,0.000000,0.000054,0.299499,-0.000057,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000001,0.000041,0.000000,0.000000,0.000051,0.299443,-0.000056,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000001,0.000041,0.000000,0.000000,0.000049,0.299389,-0.000054,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000001,0.000041,0.000000,0.000000,0.000046,0.299336,-0.000053,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000001,0.000042,0.000000,0.000000,0.000044,0.299284,-0.000052,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000003,0.000001,0.000042,0.000000,0.000000,0.000042,0.299233,-0.000051,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000001,0.000042,0.000000,0.000000,0.000039,0.299183,-0.000050,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000001,0.000042,0.000000,0.000000,0.000038,0.299135,-0.000049,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000001,0.000043,0.000000,0.000000,0.000036,0.299087,-0.000048,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000001,0.000043,0.000000,0.000000,0.000034,0.299041,-0.000046,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000001,0.000043,0.000145,0.000145,0.000032,0.298854,-0.000187,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000003,0.000001,0.000043,0.000385,0.000385,0.000031,0.298436,-0.000418,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000044,0.000571,0.000571,0.000029,0.297845,-0.000591,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000728,0.000728,0.000027,0.297114,-0.000731,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000752,0.000752,0.000025,0.296362,-0.000752,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000714,0.000711,0.000023,0.295651,-0.000711,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000645,0.000640,0.000021,0.295011,-0.000640,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000580,0.000573,0.000019,0.294438,-0.000573,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000461,0.000454,0.000018,0.293984,-0.000454,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000348,0.000342,0.000016,0.293642,-0.000342,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000046,0.000210,0.000206,0.000015,0.293436,-0.000206,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000073,0.000072,0.000014,0.293365,-0.000072,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000000,0.000000,0.000013,0.293365,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000012,0.293366,0.000001,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000011,0.293366,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000010,0.293366,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000047,0.000000,0.000000,0.000009,0.293366,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000048,0.000000,0.000000,0.000009,0.293366,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000048,0.000000,0.000000,0.000008,0.293366,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000048,0.000000,0.000000,0.000007,0.293366,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000049,0.000000,0.000000,0.000007,0.293366,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000049,0.000000,0.000000,0.000006,0.293366,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000006,0.293366,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000050,0.000000,0.000000,0.000005,0.293366,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000123,0.000120,0.000005,0.293246,-0.000120,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000367,0.000359,0.000005,0.292887,-0.000359,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000051,0.000557,0.000543,0.000004,0.292344,-0.000543,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000715,0.000695,0.000004,0.291649,-0.000695,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000834,0.000807,0.000004,0.290841,-0.000807,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000052,0.000817,0.000787,0.000003,0.290054,-0.000787,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000760,0.000728,0.000003,0.289326,-0.000728,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000635,0.000605,0.000003,0.288721,-0.000605,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000500,0.000475,0.000003,0.288246,-0.000475,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000378,0.000358,0.000002,0.287888,-0.000358,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000217,0.000205,0.000002,0.287683,-0.000205,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000066,0.000062,0.000002,0.287621,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000002,0.287621,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000002,0.287621,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000002,0.287621,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000001,0.287621,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000120,0.000114,0.000001,0.287507,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000360,0.000339,0.000001,0.287168,-0.000339,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000549,0.000516,0.000001,0.286652,-0.000516,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000704,0.000660,0.000001,0.285992,-0.000660,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000773,0.000721,0.000001,0.285270,-0.000721,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000751,0.000698,0.000000,0.284573,-0.000698,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000696,0.000643,0.000000,0.283929,-0.000643,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000584,0.000538,0.000000,0.283391,-0.000538,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000458,0.000420,0.000000,0.282971,-0.000420,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000350,0.000320,0.000000,0.282651,-0.000320,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000182,0.000166,0.000000,0.282485,-0.000166,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000031,0.000028,0.000000,0.282457,-0.000028,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.282457,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.282457,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.282457,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.282457,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.282458,0.000001,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.282459,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.282461,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.282466,0.000004,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000005,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.282470,0.000005,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000004,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.282475,0.000004,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000005,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.282480,0.000005,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.282480,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000102,0.000093,0.000000,0.282387,-0.000093,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000348,0.000318,0.000000,0.282069,-0.000318,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000545,0.000495,0.000000,0.281574,-0.000495,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000707,0.000641,0.000000,0.280933,-0.000641,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000822,0.000742,0.000000,0.280191,-0.000742,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000803,0.000721,0.000000,0.279470,-0.000721,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000743,0.000664,0.000000,0.278806,-0.000664,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000631,0.000562,0.000000,0.278244,-0.000562,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000493,0.000437,0.000000,0.277806,-0.000437,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000372,0.000329,0.000000,0.277478,-0.000329,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000202,0.000178,0.000000,0.277299,-0.000178,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000044,0.000039,0.000000,0.277261,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.277261,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.277262,0.000001,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.277263,0.000001,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.277263,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.277263,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.277263,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.277263,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000111,0.000098,0.000000,0.277165,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620741.csv b/test/channel_loss/channel_forcing/et/cat-2620741.csv new file mode 100644 index 000000000..9ea4a8e80 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620741.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000814,0.000049,0.000814,0.000173,0.000173,0.008996,0.379117,-0.001629,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000048,0.000746,0.000058,0.000058,0.008298,0.377638,-0.001479,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000047,0.000684,0.000000,0.000000,0.007661,0.376251,-0.001388,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000629,0.000046,0.000629,0.000000,0.000000,0.007078,0.374896,-0.001355,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000045,0.000579,0.000000,0.000000,0.006545,0.373572,-0.001324,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000533,0.000044,0.000533,0.000000,0.000000,0.006056,0.372279,-0.001293,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000491,0.000043,0.000491,0.000000,0.000000,0.005607,0.371017,-0.001262,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000453,0.000042,0.000454,0.000000,0.000000,0.005195,0.369784,-0.001233,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000419,0.000041,0.000419,0.000000,0.000000,0.004817,0.368580,-0.001204,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000388,0.000040,0.000388,0.000000,0.000000,0.004469,0.367404,-0.001176,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000359,0.000039,0.000359,0.000000,0.000000,0.004150,0.366255,-0.001149,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000332,0.000038,0.000333,0.000000,0.000000,0.003855,0.365133,-0.001122,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000308,0.000037,0.000309,0.000000,0.000000,0.003584,0.364038,-0.001096,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000286,0.000036,0.000287,0.000000,0.000000,0.003334,0.362968,-0.001070,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000266,0.000035,0.000267,0.000134,0.000134,0.003104,0.361791,-0.001176,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000247,0.000034,0.000248,0.000373,0.000373,0.002891,0.360409,-0.001382,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000230,0.000033,0.000231,0.000564,0.000564,0.002694,0.358873,-0.001536,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000214,0.000032,0.000215,0.000723,0.000723,0.002512,0.357218,-0.001656,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000199,0.000030,0.000201,0.000644,0.000644,0.002343,0.355678,-0.001540,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000567,0.000000,0.000000,0.000000,0.000002,0.000186,0.000030,0.000188,0.000637,0.000637,0.002187,0.354735,-0.000943,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000760,0.000002,0.000003,0.000002,0.000002,0.000173,0.000029,0.000177,0.000578,0.000578,0.002043,0.354057,-0.000678,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000752,0.000006,0.000010,0.000006,0.000002,0.000162,0.000029,0.000170,0.000422,0.000422,0.001909,0.353533,-0.000524,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000796,0.000014,0.000019,0.000014,0.000002,0.000151,0.000028,0.000167,0.000341,0.000341,0.001787,0.353134,-0.000399,1.000000,0.000010 +23,2022-08-01 23:00:00,0.000763,0.000019,0.000023,0.000019,0.000003,0.000141,0.000028,0.000163,0.000260,0.000260,0.001673,0.352787,-0.000347,1.000000,0.000014 +24,2022-08-02 00:00:00,0.000778,0.000027,0.000032,0.000027,0.000003,0.000132,0.000028,0.000162,0.000179,0.000179,0.001569,0.352533,-0.000254,1.000000,0.000019 +25,2022-08-02 01:00:00,0.001046,0.000058,0.000082,0.000058,0.000003,0.000124,0.000028,0.000185,0.000072,0.000072,0.001472,0.352602,0.000069,1.000000,0.000043 +26,2022-08-02 02:00:00,0.001046,0.000079,0.000094,0.000079,0.000003,0.000117,0.000028,0.000199,0.000000,0.000000,0.001384,0.352728,0.000126,1.000000,0.000059 +27,2022-08-02 03:00:00,0.001046,0.000092,0.000094,0.000092,0.000003,0.000110,0.000028,0.000205,0.000000,0.000000,0.001302,0.352851,0.000123,1.000000,0.000061 +28,2022-08-02 04:00:00,0.001042,0.000094,0.000094,0.000094,0.000004,0.000103,0.000028,0.000201,0.000000,0.000000,0.001227,0.352969,0.000117,1.000000,0.000061 +29,2022-08-02 05:00:00,0.001040,0.000094,0.000094,0.000094,0.000004,0.000097,0.000028,0.000195,0.000000,0.000000,0.001158,0.353082,0.000113,1.000000,0.000061 +30,2022-08-02 06:00:00,0.001046,0.000094,0.000094,0.000094,0.000004,0.000092,0.000028,0.000190,0.000000,0.000000,0.001094,0.353196,0.000115,1.000000,0.000061 +31,2022-08-02 07:00:00,0.000000,0.000042,0.000000,0.000042,0.000004,0.000087,0.000028,0.000134,0.000000,0.000000,0.001035,0.352380,-0.000817,1.000000,0.000019 +32,2022-08-02 08:00:00,0.000000,0.000019,0.000000,0.000019,0.000005,0.000082,0.000027,0.000106,0.000000,0.000000,0.000980,0.351582,-0.000798,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000078,0.000026,0.000083,0.000000,0.000000,0.000928,0.350803,-0.000779,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000074,0.000026,0.000079,0.000000,0.000000,0.000880,0.350042,-0.000761,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000070,0.000025,0.000076,0.000000,0.000000,0.000835,0.349298,-0.000743,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000067,0.000025,0.000072,0.000000,0.000000,0.000793,0.348573,-0.000726,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000063,0.000024,0.000069,0.000000,0.000000,0.000754,0.347864,-0.000709,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000060,0.000023,0.000066,0.000113,0.000113,0.000717,0.347061,-0.000803,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000057,0.000023,0.000064,0.000313,0.000313,0.000683,0.346082,-0.000979,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000054,0.000022,0.000061,0.000477,0.000477,0.000650,0.344965,-0.001117,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000052,0.000021,0.000059,0.000616,0.000616,0.000619,0.343739,-0.001226,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000049,0.000020,0.000057,0.000713,0.000713,0.000589,0.342446,-0.001292,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000047,0.000019,0.000055,0.000706,0.000706,0.000561,0.341191,-0.001256,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000045,0.000018,0.000053,0.000647,0.000647,0.000534,0.340022,-0.001169,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000042,0.000017,0.000051,0.000578,0.000578,0.000508,0.338949,-0.001073,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000040,0.000016,0.000049,0.000451,0.000451,0.000484,0.338023,-0.000925,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000039,0.000015,0.000048,0.000346,0.000346,0.000461,0.337223,-0.000801,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000037,0.000015,0.000046,0.000206,0.000206,0.000439,0.336578,-0.000645,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000035,0.000014,0.000045,0.000055,0.000055,0.000418,0.336095,-0.000483,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000033,0.000014,0.000043,0.000000,0.000000,0.000399,0.335678,-0.000418,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000032,0.000014,0.000042,0.000000,0.000000,0.000381,0.335270,-0.000408,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000030,0.000013,0.000041,0.000000,0.000000,0.000364,0.334872,-0.000398,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000029,0.000013,0.000040,0.000000,0.000000,0.000348,0.334483,-0.000389,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000028,0.000013,0.000039,0.000000,0.000000,0.000333,0.334103,-0.000380,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000027,0.000013,0.000038,0.000000,0.000000,0.000319,0.333732,-0.000371,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000026,0.000012,0.000038,0.000000,0.000000,0.000306,0.333369,-0.000362,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000024,0.000012,0.000037,0.000000,0.000000,0.000293,0.333015,-0.000354,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000024,0.000012,0.000036,0.000000,0.000000,0.000282,0.332670,-0.000346,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000023,0.000011,0.000036,0.000000,0.000000,0.000271,0.332332,-0.000338,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000022,0.000011,0.000035,0.000000,0.000000,0.000260,0.332003,-0.000330,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000021,0.000011,0.000035,0.000000,0.000000,0.000250,0.331681,-0.000322,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000020,0.000011,0.000034,0.000129,0.000129,0.000241,0.331240,-0.000440,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000019,0.000010,0.000034,0.000373,0.000373,0.000231,0.330572,-0.000668,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000019,0.000009,0.000033,0.000563,0.000563,0.000222,0.329733,-0.000839,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000018,0.000009,0.000033,0.000719,0.000719,0.000213,0.328761,-0.000972,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000017,0.000008,0.000032,0.000719,0.000719,0.000204,0.327813,-0.000948,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000016,0.000007,0.000032,0.000696,0.000696,0.000194,0.326909,-0.000904,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000015,0.000006,0.000031,0.000653,0.000653,0.000185,0.326068,-0.000841,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000015,0.000006,0.000031,0.000562,0.000562,0.000176,0.325336,-0.000732,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000014,0.000005,0.000031,0.000451,0.000451,0.000168,0.324729,-0.000607,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000005,0.000030,0.000343,0.000343,0.000159,0.324242,-0.000487,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000005,0.000030,0.000218,0.000218,0.000151,0.323888,-0.000354,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000004,0.000030,0.000069,0.000069,0.000144,0.323688,-0.000200,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000004,0.000029,0.000000,0.000000,0.000137,0.323560,-0.000128,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000011,0.000004,0.000029,0.000000,0.000000,0.000130,0.323435,-0.000125,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000004,0.000029,0.000000,0.000000,0.000124,0.323313,-0.000122,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000004,0.000029,0.000000,0.000000,0.000118,0.323194,-0.000119,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000004,0.000029,0.000000,0.000000,0.000113,0.323078,-0.000116,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000029,0.000000,0.000000,0.000108,0.322964,-0.000114,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000029,0.000000,0.000000,0.000103,0.322853,-0.000111,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000004,0.000029,0.000000,0.000000,0.000098,0.322745,-0.000108,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000004,0.000028,0.000000,0.000000,0.000094,0.322639,-0.000106,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000004,0.000028,0.000000,0.000000,0.000090,0.322535,-0.000103,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000003,0.000028,0.000000,0.000000,0.000086,0.322435,-0.000101,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000003,0.000029,0.000000,0.000000,0.000083,0.322336,-0.000099,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000003,0.000029,0.000123,0.000123,0.000079,0.322119,-0.000217,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000003,0.000029,0.000363,0.000363,0.000076,0.321674,-0.000446,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000002,0.000029,0.000557,0.000557,0.000072,0.321049,-0.000625,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000002,0.000029,0.000723,0.000723,0.000068,0.320276,-0.000772,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000001,0.000029,0.000839,0.000839,0.000064,0.319409,-0.000867,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000028,0.000806,0.000806,0.000059,0.318594,-0.000816,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000028,0.000748,0.000748,0.000055,0.317845,-0.000748,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000028,0.000628,0.000626,0.000050,0.317219,-0.000626,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000028,0.000496,0.000493,0.000046,0.316726,-0.000493,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000028,0.000374,0.000371,0.000043,0.316355,-0.000371,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000221,0.000219,0.000040,0.316136,-0.000219,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000073,0.000073,0.000037,0.316063,-0.000073,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000028,0.000000,0.000000,0.000034,0.316063,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000031,0.316063,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000029,0.000000,0.000000,0.000029,0.316063,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000027,0.316063,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000025,0.316063,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000023,0.316063,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000021,0.316063,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000029,0.000000,0.000000,0.000019,0.316063,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000000,0.000000,0.000018,0.316063,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000030,0.000000,0.000000,0.000016,0.316063,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000000,0.000000,0.000015,0.316063,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000000,0.000000,0.000014,0.316063,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000141,0.000139,0.000013,0.315925,-0.000139,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000373,0.000368,0.000012,0.315556,-0.000368,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000565,0.000557,0.000011,0.315000,-0.000557,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000728,0.000715,0.000010,0.314285,-0.000715,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000759,0.000743,0.000009,0.313541,-0.000743,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000731,0.000713,0.000009,0.312829,-0.000713,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000031,0.000669,0.000650,0.000008,0.312179,-0.000650,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000579,0.000560,0.000007,0.311619,-0.000560,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000454,0.000438,0.000007,0.311181,-0.000438,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000032,0.000347,0.000334,0.000006,0.310847,-0.000334,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000206,0.000198,0.000006,0.310649,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000071,0.000068,0.000005,0.310581,-0.000068,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.310581,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.310581,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.310581,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.310581,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.310581,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.310581,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.310581,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.310581,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.310581,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000002,0.310581,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000002,0.310581,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000002,0.310581,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000120,0.000115,0.000002,0.310466,-0.000115,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000036,0.000359,0.000344,0.000002,0.310122,-0.000344,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000556,0.000532,0.000002,0.309590,-0.000532,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000721,0.000687,0.000001,0.308903,-0.000687,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000846,0.000804,0.000001,0.308099,-0.000804,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000831,0.000786,0.000001,0.307313,-0.000786,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000772,0.000727,0.000001,0.306586,-0.000727,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000634,0.000595,0.000001,0.305991,-0.000595,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000501,0.000468,0.000001,0.305523,-0.000468,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000377,0.000351,0.000001,0.305172,-0.000351,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000217,0.000202,0.000001,0.304970,-0.000202,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000067,0.000062,0.000001,0.304908,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.304908,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.304908,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.304908,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.304908,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000001,0.304908,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.304908,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000117,0.000108,0.000000,0.304800,-0.000108,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000347,0.000322,0.000000,0.304478,-0.000322,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000538,0.000498,0.000000,0.303979,-0.000498,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000699,0.000646,0.000000,0.303334,-0.000646,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000770,0.000708,0.000000,0.302626,-0.000708,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000760,0.000697,0.000000,0.301929,-0.000697,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000702,0.000641,0.000000,0.301288,-0.000641,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000573,0.000521,0.000000,0.300767,-0.000521,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000452,0.000409,0.000000,0.300358,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000343,0.000310,0.000000,0.300048,-0.000310,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000180,0.000162,0.000000,0.299886,-0.000162,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000027,0.000024,0.000000,0.299861,-0.000024,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.299861,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299861,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299861,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299861,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299861,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299863,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000002,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.299865,0.000002,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.299867,0.000003,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.299869,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.299870,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.299870,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.299870,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000098,0.000089,0.000000,0.299782,-0.000089,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000339,0.000305,0.000000,0.299477,-0.000305,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000538,0.000484,0.000000,0.298993,-0.000484,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000704,0.000631,0.000000,0.298361,-0.000631,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000819,0.000732,0.000000,0.297630,-0.000732,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000813,0.000723,0.000000,0.296907,-0.000723,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000747,0.000661,0.000000,0.296245,-0.000661,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000629,0.000555,0.000000,0.295691,-0.000555,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000493,0.000434,0.000000,0.295257,-0.000434,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000370,0.000325,0.000000,0.294932,-0.000325,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000200,0.000175,0.000000,0.294757,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000046,0.000040,0.000000,0.294717,-0.000040,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.294717,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000110,0.000096,0.000000,0.294621,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620742.csv b/test/channel_loss/channel_forcing/et/cat-2620742.csv new file mode 100644 index 000000000..3dcba22f2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620742.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000114,0.000000,0.000000,0.000000,0.000000,0.000824,0.000164,0.000824,0.000185,0.000185,0.009101,0.371942,-0.002921,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000765,0.000160,0.000765,0.000059,0.000059,0.008497,0.369092,-0.002850,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000711,0.000157,0.000711,0.000000,0.000000,0.007942,0.366359,-0.002733,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000662,0.000154,0.000662,0.000000,0.000000,0.007434,0.363683,-0.002676,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000618,0.000151,0.000618,0.000000,0.000000,0.006966,0.361062,-0.002621,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000578,0.000147,0.000578,0.000000,0.000000,0.006536,0.358495,-0.002567,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000541,0.000144,0.000541,0.000000,0.000000,0.006140,0.355982,-0.002514,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000507,0.000141,0.000507,0.000000,0.000000,0.005775,0.353520,-0.002462,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000476,0.000138,0.000476,0.000000,0.000000,0.005437,0.351109,-0.002411,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000447,0.000136,0.000448,0.000000,0.000000,0.005126,0.348749,-0.002361,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000421,0.000133,0.000422,0.000000,0.000000,0.004838,0.346437,-0.002312,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000397,0.000130,0.000398,0.000000,0.000000,0.004571,0.344173,-0.002264,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000374,0.000127,0.000376,0.000000,0.000000,0.004324,0.341955,-0.002217,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000354,0.000125,0.000355,0.000000,0.000000,0.004095,0.339784,-0.002171,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000335,0.000122,0.000337,0.000143,0.000143,0.003882,0.337517,-0.002267,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000317,0.000119,0.000319,0.000391,0.000391,0.003684,0.335055,-0.002463,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000301,0.000116,0.000303,0.000557,0.000557,0.003499,0.332480,-0.002574,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000285,0.000113,0.000288,0.000678,0.000678,0.003327,0.329842,-0.002639,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000271,0.000110,0.000274,0.000594,0.000594,0.003165,0.327340,-0.002502,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000440,0.000000,0.000000,0.000000,0.000004,0.000258,0.000107,0.000261,0.000567,0.000567,0.003014,0.325347,-0.001993,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000389,0.000000,0.000000,0.000000,0.000004,0.000246,0.000105,0.000249,0.000488,0.000488,0.002874,0.323421,-0.001925,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000442,0.000000,0.000000,0.000000,0.000004,0.000234,0.000103,0.000238,0.000367,0.000367,0.002742,0.321706,-0.001715,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000390,0.000000,0.000000,0.000000,0.000005,0.000223,0.000101,0.000228,0.000326,0.000326,0.002620,0.320016,-0.001691,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000416,0.000001,0.000001,0.000001,0.000005,0.000213,0.000099,0.000219,0.000248,0.000248,0.002505,0.318462,-0.001554,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000389,0.000002,0.000002,0.000002,0.000005,0.000204,0.000097,0.000211,0.000173,0.000173,0.002398,0.316985,-0.001477,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000681,0.000011,0.000018,0.000011,0.000006,0.000195,0.000096,0.000212,0.000077,0.000077,0.002299,0.315905,-0.001080,1.000000,0.000008 +26,2022-08-02 02:00:00,0.001035,0.000033,0.000051,0.000033,0.000006,0.000187,0.000095,0.000227,0.000000,0.000000,0.002206,0.315236,-0.000669,1.000000,0.000027 +27,2022-08-02 03:00:00,0.001058,0.000046,0.000053,0.000046,0.000007,0.000180,0.000094,0.000232,0.000000,0.000000,0.002121,0.314601,-0.000635,1.000000,0.000034 +28,2022-08-02 04:00:00,0.001075,0.000054,0.000055,0.000054,0.000007,0.000173,0.000093,0.000234,0.000000,0.000000,0.002041,0.313995,-0.000606,1.000000,0.000035 +29,2022-08-02 05:00:00,0.000995,0.000050,0.000047,0.000050,0.000008,0.000167,0.000093,0.000225,0.000000,0.000000,0.001967,0.313330,-0.000664,1.000000,0.000032 +30,2022-08-02 06:00:00,0.001005,0.000049,0.000048,0.000049,0.000008,0.000161,0.000092,0.000218,0.000000,0.000000,0.001898,0.312689,-0.000642,1.000000,0.000031 +31,2022-08-02 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000009,0.000155,0.000090,0.000185,0.000000,0.000000,0.001833,0.311123,-0.001566,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000009,0.000150,0.000088,0.000169,0.000000,0.000000,0.001771,0.309590,-0.001533,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000145,0.000086,0.000154,0.000000,0.000000,0.001713,0.308088,-0.001502,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000140,0.000084,0.000150,0.000000,0.000000,0.001657,0.306618,-0.001471,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000135,0.000083,0.000146,0.000000,0.000000,0.001604,0.305177,-0.001440,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000131,0.000081,0.000142,0.000000,0.000000,0.001554,0.303767,-0.001410,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000127,0.000079,0.000139,0.000000,0.000000,0.001506,0.302483,-0.001284,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000165,0.000000,0.000000,0.000000,0.000012,0.000123,0.000078,0.000136,0.000125,0.000125,0.001461,0.301168,-0.001316,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000165,0.000000,0.000000,0.000000,0.000013,0.000120,0.000076,0.000133,0.000332,0.000332,0.001418,0.299678,-0.001490,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000116,0.000074,0.000130,0.000471,0.000471,0.001376,0.298018,-0.001660,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000014,0.000112,0.000072,0.000127,0.000573,0.000573,0.001335,0.296293,-0.001725,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000369,0.000000,0.000000,0.000000,0.000015,0.000109,0.000070,0.000124,0.000648,0.000648,0.001296,0.294792,-0.001500,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000106,0.000068,0.000121,0.000564,0.000564,0.001258,0.293045,-0.001747,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000103,0.000066,0.000119,0.000538,0.000538,0.001221,0.291358,-0.001686,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000004,0.000000,0.000000,0.000000,0.000017,0.000100,0.000064,0.000116,0.000517,0.000517,0.001185,0.289732,-0.001626,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000017,0.000097,0.000062,0.000114,0.000448,0.000448,0.001151,0.288207,-0.001525,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000014,0.000000,0.000000,0.000000,0.000018,0.000094,0.000060,0.000112,0.000340,0.000340,0.001117,0.286829,-0.001378,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000004,0.000000,0.000000,0.000000,0.000018,0.000091,0.000059,0.000110,0.000206,0.000206,0.001085,0.285601,-0.001228,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000027,0.000000,0.000000,0.000000,0.000019,0.000089,0.000058,0.000108,0.000052,0.000052,0.001054,0.284571,-0.001029,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000027,0.000000,0.000000,0.000000,0.000020,0.000086,0.000057,0.000106,0.000000,0.000000,0.001025,0.283614,-0.000957,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000027,0.000000,0.000000,0.000000,0.000020,0.000084,0.000055,0.000104,0.000000,0.000000,0.000996,0.282676,-0.000938,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000004,0.000000,0.000000,0.000000,0.000021,0.000081,0.000054,0.000102,0.000000,0.000000,0.000969,0.281736,-0.000941,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000027,0.000000,0.000000,0.000000,0.000022,0.000079,0.000053,0.000101,0.000000,0.000000,0.000943,0.280837,-0.000899,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000014,0.000000,0.000000,0.000000,0.000022,0.000077,0.000052,0.000099,0.000000,0.000000,0.000918,0.279944,-0.000893,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000075,0.000051,0.000098,0.000000,0.000000,0.000894,0.279056,-0.000888,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000073,0.000050,0.000097,0.000000,0.000000,0.000871,0.278186,-0.000870,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000071,0.000049,0.000095,0.000000,0.000000,0.000849,0.277334,-0.000852,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000069,0.000048,0.000094,0.000000,0.000000,0.000827,0.276500,-0.000834,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000068,0.000047,0.000093,0.000000,0.000000,0.000807,0.275683,-0.000817,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000066,0.000046,0.000092,0.000000,0.000000,0.000787,0.274883,-0.000800,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000064,0.000045,0.000091,0.000000,0.000000,0.000767,0.274100,-0.000783,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000063,0.000044,0.000090,0.000141,0.000141,0.000748,0.273195,-0.000905,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000061,0.000043,0.000089,0.000399,0.000399,0.000730,0.272055,-0.001139,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000060,0.000041,0.000089,0.000564,0.000564,0.000711,0.270778,-0.001278,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000058,0.000039,0.000088,0.000683,0.000683,0.000693,0.269410,-0.001368,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000056,0.000038,0.000087,0.000688,0.000688,0.000674,0.268066,-0.001344,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000005,0.000000,0.000000,0.000000,0.000031,0.000055,0.000036,0.000086,0.000640,0.000640,0.000655,0.266802,-0.001264,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000462,0.000000,0.000000,0.000000,0.000032,0.000053,0.000035,0.000085,0.000569,0.000569,0.000637,0.266081,-0.000720,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000143,0.000000,0.000000,0.000000,0.000032,0.000052,0.000034,0.000084,0.000510,0.000510,0.000619,0.265120,-0.000961,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000033,0.000050,0.000033,0.000083,0.000437,0.000437,0.000602,0.264115,-0.001005,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000049,0.000032,0.000083,0.000334,0.000334,0.000585,0.263228,-0.000888,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000048,0.000031,0.000082,0.000216,0.000216,0.000568,0.262474,-0.000753,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000046,0.000030,0.000081,0.000065,0.000065,0.000552,0.261884,-0.000590,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000045,0.000030,0.000081,0.000000,0.000000,0.000537,0.261369,-0.000514,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000044,0.000029,0.000080,0.000000,0.000000,0.000522,0.260866,-0.000504,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000042,0.000028,0.000080,0.000000,0.000000,0.000508,0.260372,-0.000493,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000041,0.000028,0.000079,0.000000,0.000000,0.000494,0.259889,-0.000483,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000040,0.000027,0.000079,0.000000,0.000000,0.000481,0.259416,-0.000473,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000039,0.000027,0.000078,0.000000,0.000000,0.000469,0.258952,-0.000463,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000038,0.000026,0.000078,0.000000,0.000000,0.000457,0.258499,-0.000454,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000037,0.000026,0.000078,0.000000,0.000000,0.000445,0.258054,-0.000444,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000036,0.000025,0.000078,0.000000,0.000000,0.000434,0.257619,-0.000435,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000035,0.000024,0.000077,0.000000,0.000000,0.000423,0.257193,-0.000426,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000034,0.000024,0.000077,0.000000,0.000000,0.000412,0.256775,-0.000417,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000034,0.000023,0.000077,0.000000,0.000000,0.000402,0.256367,-0.000409,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000033,0.000023,0.000077,0.000135,0.000135,0.000392,0.255834,-0.000533,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000032,0.000022,0.000077,0.000394,0.000394,0.000382,0.255059,-0.000775,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000031,0.000021,0.000077,0.000559,0.000559,0.000372,0.254138,-0.000921,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000030,0.000020,0.000076,0.000682,0.000682,0.000361,0.253116,-0.001022,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000029,0.000018,0.000076,0.000772,0.000772,0.000350,0.252027,-0.001089,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000028,0.000017,0.000076,0.000725,0.000725,0.000339,0.251006,-0.001021,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000027,0.000016,0.000076,0.000636,0.000636,0.000327,0.250094,-0.000912,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000026,0.000015,0.000075,0.000555,0.000555,0.000316,0.249281,-0.000814,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000025,0.000014,0.000075,0.000478,0.000478,0.000305,0.248559,-0.000722,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000024,0.000013,0.000075,0.000361,0.000361,0.000293,0.247967,-0.000592,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000024,0.000013,0.000074,0.000222,0.000222,0.000283,0.247522,-0.000444,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000023,0.000012,0.000074,0.000074,0.000074,0.000272,0.247232,-0.000290,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000022,0.000012,0.000074,0.000000,0.000000,0.000262,0.247021,-0.000211,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000021,0.000012,0.000074,0.000000,0.000000,0.000253,0.246814,-0.000207,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000020,0.000012,0.000074,0.000000,0.000000,0.000244,0.246611,-0.000203,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000020,0.000011,0.000074,0.000000,0.000000,0.000236,0.246413,-0.000198,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000019,0.000011,0.000074,0.000000,0.000000,0.000228,0.246219,-0.000194,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000018,0.000011,0.000074,0.000000,0.000000,0.000221,0.246028,-0.000190,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000018,0.000011,0.000074,0.000000,0.000000,0.000214,0.245842,-0.000186,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000017,0.000010,0.000074,0.000000,0.000000,0.000207,0.245660,-0.000183,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000017,0.000010,0.000074,0.000000,0.000000,0.000200,0.245481,-0.000179,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000016,0.000010,0.000074,0.000000,0.000000,0.000194,0.245306,-0.000175,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000016,0.000010,0.000074,0.000000,0.000000,0.000188,0.245134,-0.000171,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000015,0.000010,0.000075,0.000000,0.000000,0.000183,0.244967,-0.000168,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000015,0.000009,0.000075,0.000149,0.000149,0.000177,0.244657,-0.000310,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000014,0.000009,0.000075,0.000398,0.000398,0.000172,0.244109,-0.000547,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000014,0.000008,0.000075,0.000563,0.000563,0.000166,0.243411,-0.000698,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000007,0.000075,0.000684,0.000684,0.000159,0.242610,-0.000802,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000006,0.000075,0.000679,0.000679,0.000152,0.241830,-0.000780,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000012,0.000005,0.000075,0.000625,0.000625,0.000145,0.241179,-0.000651,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000012,0.000004,0.000075,0.000552,0.000552,0.000138,0.240614,-0.000565,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000011,0.000004,0.000075,0.000494,0.000494,0.000131,0.240117,-0.000497,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000010,0.000003,0.000075,0.000438,0.000438,0.000124,0.239686,-0.000431,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000010,0.000003,0.000075,0.000331,0.000331,0.000117,0.239369,-0.000317,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000009,0.000003,0.000075,0.000206,0.000206,0.000110,0.239181,-0.000188,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000287,0.000001,0.000002,0.000001,0.000067,0.000009,0.000003,0.000076,0.000075,0.000075,0.000104,0.239341,0.000161,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000369,0.000004,0.000006,0.000004,0.000067,0.000008,0.000003,0.000079,0.000000,0.000000,0.000099,0.239649,0.000308,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000299,0.000004,0.000004,0.000004,0.000068,0.000008,0.000003,0.000080,0.000000,0.000000,0.000095,0.239884,0.000235,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000283,0.000004,0.000003,0.000004,0.000068,0.000008,0.000004,0.000080,0.000000,0.000000,0.000091,0.240099,0.000215,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000300,0.000004,0.000004,0.000004,0.000069,0.000007,0.000004,0.000080,0.000000,0.000000,0.000088,0.240325,0.000226,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000323,0.000004,0.000004,0.000004,0.000070,0.000007,0.000004,0.000081,0.000000,0.000000,0.000085,0.240569,0.000244,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000070,0.000007,0.000004,0.000079,0.000000,0.000000,0.000082,0.240495,-0.000073,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000071,0.000007,0.000004,0.000078,0.000000,0.000000,0.000080,0.240424,-0.000072,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000006,0.000004,0.000078,0.000000,0.000000,0.000077,0.240353,-0.000070,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000006,0.000004,0.000078,0.000000,0.000000,0.000075,0.240284,-0.000069,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000006,0.000004,0.000079,0.000000,0.000000,0.000073,0.240217,-0.000067,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000006,0.000004,0.000079,0.000000,0.000000,0.000071,0.240151,-0.000066,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000006,0.000004,0.000079,0.000000,0.000000,0.000069,0.240086,-0.000065,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000006,0.000003,0.000080,0.000130,0.000130,0.000067,0.239895,-0.000191,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000005,0.000003,0.000080,0.000387,0.000387,0.000064,0.239457,-0.000438,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000005,0.000002,0.000080,0.000547,0.000547,0.000061,0.238871,-0.000587,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000005,0.000001,0.000081,0.000663,0.000663,0.000058,0.238183,-0.000687,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000004,0.000000,0.000081,0.000745,0.000745,0.000054,0.237430,-0.000753,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000000,0.000081,0.000704,0.000704,0.000050,0.236726,-0.000704,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000004,0.000000,0.000081,0.000615,0.000614,0.000046,0.236111,-0.000614,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000000,0.000081,0.000554,0.000551,0.000043,0.235561,-0.000551,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000003,0.000000,0.000082,0.000475,0.000470,0.000039,0.235091,-0.000470,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000000,0.000082,0.000354,0.000349,0.000036,0.234742,-0.000349,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000000,0.000082,0.000211,0.000208,0.000033,0.234534,-0.000208,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000082,0.000063,0.000062,0.000031,0.234472,-0.000062,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000002,0.000000,0.000083,0.000000,0.000000,0.000028,0.234472,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000083,0.000000,0.000000,0.000026,0.234472,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000083,0.000000,0.000000,0.000024,0.234472,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000022,0.234472,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000021,0.234472,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000084,0.000000,0.000000,0.000019,0.234472,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000001,0.000000,0.000085,0.000000,0.000000,0.000018,0.234472,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000085,0.000000,0.000000,0.000016,0.234472,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000086,0.000000,0.000000,0.000015,0.234472,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000014,0.234472,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000013,0.234472,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000000,0.000000,0.000012,0.234472,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000129,0.000127,0.000011,0.234345,-0.000127,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000087,0.000382,0.000375,0.000010,0.233970,-0.000375,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000549,0.000538,0.000009,0.233433,-0.000538,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000088,0.000667,0.000651,0.000009,0.232782,-0.000651,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000731,0.000709,0.000008,0.232073,-0.000709,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000682,0.000658,0.000007,0.231415,-0.000658,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000089,0.000602,0.000579,0.000007,0.230836,-0.000579,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000548,0.000524,0.000006,0.230312,-0.000524,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000472,0.000450,0.000006,0.229862,-0.000450,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000353,0.000335,0.000005,0.229526,-0.000335,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000184,0.000175,0.000005,0.229352,-0.000175,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000033,0.000031,0.000005,0.229321,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000000,0.000000,0.000004,0.229321,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000004,0.229321,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000000,0.000000,0.000004,0.229321,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000003,0.229321,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000003,0.229321,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.229321,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.229321,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000002,0.229321,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.229321,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.229321,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.229321,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.229321,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000109,0.000103,0.000002,0.229218,-0.000103,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000369,0.000348,0.000001,0.228870,-0.000348,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000540,0.000510,0.000001,0.228360,-0.000510,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000660,0.000620,0.000001,0.227739,-0.000620,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000753,0.000704,0.000001,0.227035,-0.000704,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000707,0.000657,0.000001,0.226378,-0.000657,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000623,0.000577,0.000001,0.225801,-0.000577,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000559,0.000515,0.000001,0.225286,-0.000515,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000478,0.000439,0.000001,0.224847,-0.000439,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000354,0.000324,0.000001,0.224522,-0.000324,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000205,0.000187,0.000001,0.224335,-0.000187,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000046,0.000042,0.000001,0.224293,-0.000042,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224293,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224293,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.224293,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.224293,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000118,0.000107,0.000000,0.224186,-0.000107,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620743.csv b/test/channel_loss/channel_forcing/et/cat-2620743.csv new file mode 100644 index 000000000..d75df2043 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620743.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000000,0.000829,0.000217,0.000829,0.000180,0.000180,0.009149,0.372278,-0.002585,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000774,0.000212,0.000774,0.000058,0.000058,0.008587,0.369758,-0.002520,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000724,0.000207,0.000724,0.000000,0.000000,0.008071,0.367351,-0.002407,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000678,0.000202,0.000678,0.000000,0.000000,0.007595,0.364998,-0.002353,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000198,0.000636,0.000000,0.000000,0.007157,0.362697,-0.002300,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000598,0.000193,0.000598,0.000000,0.000000,0.006752,0.360448,-0.002249,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000563,0.000189,0.000563,0.000000,0.000000,0.006378,0.358250,-0.002198,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000531,0.000185,0.000531,0.000000,0.000000,0.006033,0.356101,-0.002149,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000501,0.000181,0.000501,0.000000,0.000000,0.005712,0.354001,-0.002101,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000474,0.000177,0.000474,0.000000,0.000000,0.005415,0.351947,-0.002053,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000448,0.000173,0.000449,0.000000,0.000000,0.005139,0.349940,-0.002007,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000425,0.000169,0.000426,0.000000,0.000000,0.004883,0.347978,-0.001962,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000403,0.000165,0.000405,0.000000,0.000000,0.004645,0.346060,-0.001918,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000161,0.000385,0.000000,0.000000,0.004423,0.344185,-0.001875,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000365,0.000157,0.000366,0.000136,0.000136,0.004215,0.342219,-0.001966,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000347,0.000153,0.000349,0.000378,0.000378,0.004021,0.340060,-0.002159,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000331,0.000149,0.000333,0.000552,0.000552,0.003839,0.337780,-0.002280,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000316,0.000144,0.000318,0.000671,0.000671,0.003667,0.335435,-0.002345,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000301,0.000140,0.000304,0.000588,0.000588,0.003506,0.333224,-0.002211,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000771,0.000001,0.000002,0.000001,0.000003,0.000288,0.000137,0.000292,0.000559,0.000559,0.003355,0.331843,-0.001381,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000638,0.000001,0.000001,0.000001,0.000003,0.000275,0.000134,0.000280,0.000483,0.000483,0.003213,0.330437,-0.001405,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000447,0.000001,0.000000,0.000001,0.000004,0.000264,0.000131,0.000268,0.000360,0.000360,0.003081,0.328998,-0.001440,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000471,0.000001,0.000001,0.000001,0.000004,0.000253,0.000129,0.000257,0.000310,0.000310,0.002956,0.327663,-0.001335,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000405,0.000001,0.000001,0.000001,0.000004,0.000243,0.000126,0.000248,0.000238,0.000238,0.002840,0.326363,-0.001299,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000430,0.000002,0.000002,0.000002,0.000005,0.000233,0.000124,0.000239,0.000168,0.000168,0.002731,0.325184,-0.001179,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000727,0.000008,0.000014,0.000008,0.000005,0.000224,0.000122,0.000238,0.000073,0.000073,0.002629,0.324403,-0.000781,1.000000,0.000007 +26,2022-08-02 02:00:00,0.001089,0.000025,0.000038,0.000025,0.000005,0.000216,0.000121,0.000246,0.000000,0.000000,0.002534,0.324042,-0.000362,1.000000,0.000020 +27,2022-08-02 03:00:00,0.001101,0.000034,0.000039,0.000034,0.000006,0.000208,0.000121,0.000248,0.000000,0.000000,0.002447,0.323699,-0.000343,1.000000,0.000025 +28,2022-08-02 04:00:00,0.001101,0.000039,0.000039,0.000039,0.000006,0.000201,0.000120,0.000246,0.000000,0.000000,0.002366,0.323364,-0.000335,1.000000,0.000025 +29,2022-08-02 05:00:00,0.001100,0.000039,0.000039,0.000039,0.000007,0.000195,0.000119,0.000240,0.000000,0.000000,0.002290,0.323036,-0.000328,1.000000,0.000025 +30,2022-08-02 06:00:00,0.001100,0.000039,0.000039,0.000039,0.000007,0.000189,0.000119,0.000235,0.000000,0.000000,0.002221,0.322715,-0.000321,1.000000,0.000025 +31,2022-08-02 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000007,0.000183,0.000116,0.000208,0.000000,0.000000,0.002154,0.321364,-0.001351,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000008,0.000177,0.000114,0.000193,0.000000,0.000000,0.002090,0.320043,-0.001320,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000172,0.000111,0.000180,0.000000,0.000000,0.002029,0.318753,-0.001291,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000167,0.000108,0.000176,0.000000,0.000000,0.001971,0.317491,-0.001262,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000162,0.000106,0.000171,0.000000,0.000000,0.001914,0.316257,-0.001233,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000157,0.000104,0.000167,0.000000,0.000000,0.001861,0.315052,-0.001206,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000010,0.000153,0.000102,0.000163,0.000000,0.000000,0.001809,0.313970,-0.001081,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000252,0.000000,0.000001,0.000000,0.000010,0.000149,0.000099,0.000160,0.000121,0.000121,0.001760,0.312944,-0.001027,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000200,0.000000,0.000000,0.000000,0.000011,0.000145,0.000097,0.000156,0.000323,0.000323,0.001712,0.311692,-0.001251,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000011,0.000141,0.000094,0.000152,0.000468,0.000468,0.001665,0.310229,-0.001463,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000012,0.000137,0.000091,0.000149,0.000573,0.000573,0.001620,0.308697,-0.001533,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000293,0.000000,0.000000,0.000000,0.000012,0.000133,0.000088,0.000145,0.000654,0.000654,0.001575,0.307308,-0.001389,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000129,0.000085,0.000142,0.000559,0.000559,0.001531,0.305757,-0.001551,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000126,0.000082,0.000139,0.000540,0.000540,0.001488,0.304259,-0.001498,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000014,0.000122,0.000080,0.000136,0.000527,0.000527,0.001446,0.302864,-0.001395,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000014,0.000118,0.000077,0.000133,0.000452,0.000452,0.001404,0.301574,-0.001290,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000015,0.000115,0.000075,0.000130,0.000339,0.000339,0.001364,0.300421,-0.001153,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000015,0.000112,0.000073,0.000127,0.000206,0.000206,0.001325,0.299427,-0.000994,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000112,0.000000,0.000000,0.000000,0.000016,0.000108,0.000071,0.000125,0.000051,0.000051,0.001288,0.298658,-0.000769,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000121,0.000000,0.000000,0.000000,0.000017,0.000105,0.000070,0.000122,0.000000,0.000000,0.001253,0.297965,-0.000693,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000112,0.000000,0.000000,0.000000,0.000017,0.000103,0.000069,0.000120,0.000000,0.000000,0.001219,0.297279,-0.000686,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000076,0.000000,0.000000,0.000000,0.000018,0.000100,0.000067,0.000118,0.000000,0.000000,0.001186,0.296573,-0.000706,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000169,0.000001,0.000001,0.000001,0.000018,0.000097,0.000066,0.000116,0.000000,0.000000,0.001155,0.295974,-0.000600,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000097,0.000000,0.000000,0.000000,0.000019,0.000095,0.000065,0.000114,0.000000,0.000000,0.001125,0.295318,-0.000656,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000092,0.000063,0.000112,0.000000,0.000000,0.001096,0.294582,-0.000736,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000090,0.000062,0.000110,0.000000,0.000000,0.001068,0.293863,-0.000719,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000087,0.000060,0.000108,0.000000,0.000000,0.001041,0.293160,-0.000703,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000085,0.000059,0.000106,0.000000,0.000000,0.001015,0.292473,-0.000687,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000083,0.000058,0.000105,0.000000,0.000000,0.000989,0.291802,-0.000672,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000081,0.000056,0.000103,0.000000,0.000000,0.000965,0.291145,-0.000657,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000079,0.000055,0.000102,0.000000,0.000000,0.000941,0.290503,-0.000642,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000077,0.000054,0.000100,0.000135,0.000135,0.000918,0.289744,-0.000759,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000075,0.000052,0.000099,0.000395,0.000395,0.000894,0.288747,-0.000996,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000073,0.000049,0.000097,0.000566,0.000566,0.000871,0.287606,-0.001141,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000071,0.000047,0.000096,0.000683,0.000683,0.000847,0.286376,-0.001230,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000069,0.000045,0.000094,0.000682,0.000682,0.000822,0.285174,-0.001202,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000067,0.000043,0.000093,0.000628,0.000628,0.000798,0.284151,-0.001024,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000131,0.000000,0.000000,0.000000,0.000027,0.000065,0.000041,0.000091,0.000568,0.000568,0.000774,0.283239,-0.000912,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000081,0.000000,0.000000,0.000000,0.000027,0.000063,0.000039,0.000090,0.000515,0.000515,0.000750,0.282351,-0.000888,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000028,0.000061,0.000037,0.000089,0.000431,0.000431,0.000727,0.281542,-0.000809,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000059,0.000036,0.000087,0.000332,0.000332,0.000704,0.280792,-0.000750,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000057,0.000035,0.000086,0.000215,0.000215,0.000682,0.280172,-0.000620,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000055,0.000034,0.000085,0.000065,0.000065,0.000660,0.279714,-0.000459,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000054,0.000033,0.000084,0.000000,0.000000,0.000640,0.279329,-0.000385,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000052,0.000032,0.000082,0.000000,0.000000,0.000620,0.278952,-0.000376,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000050,0.000032,0.000081,0.000000,0.000000,0.000601,0.278584,-0.000368,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000049,0.000031,0.000080,0.000000,0.000000,0.000584,0.278224,-0.000360,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000047,0.000030,0.000080,0.000000,0.000000,0.000566,0.277873,-0.000352,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000046,0.000030,0.000079,0.000000,0.000000,0.000550,0.277529,-0.000344,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000045,0.000029,0.000078,0.000000,0.000000,0.000534,0.277193,-0.000336,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000043,0.000028,0.000077,0.000000,0.000000,0.000519,0.276865,-0.000328,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000042,0.000028,0.000077,0.000000,0.000000,0.000504,0.276543,-0.000321,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000041,0.000027,0.000076,0.000000,0.000000,0.000490,0.276230,-0.000314,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000040,0.000026,0.000075,0.000000,0.000000,0.000477,0.275923,-0.000307,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000036,0.000039,0.000026,0.000075,0.000000,0.000000,0.000464,0.275625,-0.000298,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000038,0.000025,0.000074,0.000129,0.000129,0.000451,0.275206,-0.000419,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000037,0.000024,0.000074,0.000388,0.000388,0.000438,0.274543,-0.000663,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000035,0.000022,0.000073,0.000557,0.000557,0.000425,0.273730,-0.000814,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000034,0.000020,0.000073,0.000680,0.000680,0.000411,0.272814,-0.000916,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000033,0.000018,0.000072,0.000770,0.000770,0.000396,0.271831,-0.000983,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000032,0.000017,0.000071,0.000714,0.000714,0.000381,0.270925,-0.000906,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000030,0.000015,0.000071,0.000638,0.000638,0.000365,0.270113,-0.000811,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000029,0.000013,0.000070,0.000563,0.000563,0.000349,0.269393,-0.000720,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000028,0.000012,0.000069,0.000482,0.000482,0.000334,0.268769,-0.000624,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000027,0.000011,0.000068,0.000365,0.000365,0.000318,0.268273,-0.000496,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000025,0.000011,0.000068,0.000223,0.000223,0.000304,0.267927,-0.000346,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000024,0.000010,0.000067,0.000072,0.000072,0.000290,0.267737,-0.000190,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000023,0.000010,0.000066,0.000000,0.000000,0.000277,0.267621,-0.000116,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000022,0.000010,0.000066,0.000000,0.000000,0.000264,0.267507,-0.000114,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000021,0.000010,0.000065,0.000000,0.000000,0.000253,0.267396,-0.000111,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000020,0.000009,0.000065,0.000000,0.000000,0.000242,0.267288,-0.000108,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000019,0.000009,0.000065,0.000000,0.000000,0.000232,0.267182,-0.000106,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000019,0.000009,0.000064,0.000000,0.000000,0.000222,0.267078,-0.000104,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000018,0.000009,0.000064,0.000000,0.000000,0.000213,0.266977,-0.000101,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000017,0.000009,0.000064,0.000000,0.000000,0.000205,0.266878,-0.000099,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000016,0.000008,0.000064,0.000000,0.000000,0.000196,0.266781,-0.000097,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000016,0.000008,0.000064,0.000000,0.000000,0.000189,0.266686,-0.000095,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000015,0.000008,0.000064,0.000000,0.000000,0.000182,0.266594,-0.000093,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000015,0.000008,0.000064,0.000000,0.000000,0.000175,0.266503,-0.000090,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000014,0.000007,0.000064,0.000142,0.000142,0.000168,0.266277,-0.000227,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000013,0.000006,0.000063,0.000389,0.000389,0.000161,0.265813,-0.000463,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000013,0.000005,0.000063,0.000559,0.000559,0.000154,0.265194,-0.000619,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000012,0.000004,0.000063,0.000682,0.000682,0.000145,0.264468,-0.000726,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000011,0.000002,0.000063,0.000684,0.000684,0.000136,0.263757,-0.000711,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000050,0.000000,0.000000,0.000000,0.000052,0.000011,0.000001,0.000063,0.000627,0.000627,0.000127,0.263167,-0.000590,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000050,0.000000,0.000000,0.000000,0.000053,0.000010,0.000000,0.000062,0.000552,0.000552,0.000117,0.262663,-0.000504,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000053,0.000009,0.000000,0.000062,0.000505,0.000505,0.000108,0.262212,-0.000451,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000054,0.000000,0.000000,0.000000,0.000053,0.000008,0.000000,0.000062,0.000452,0.000451,0.000100,0.261815,-0.000397,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000054,0.000000,0.000000,0.000000,0.000054,0.000008,0.000000,0.000062,0.000340,0.000339,0.000092,0.261529,-0.000285,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000050,0.000000,0.000000,0.000000,0.000054,0.000007,0.000000,0.000062,0.000210,0.000209,0.000085,0.261370,-0.000159,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000211,0.000000,0.000001,0.000000,0.000055,0.000007,0.000000,0.000062,0.000074,0.000074,0.000079,0.261507,0.000136,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000302,0.000002,0.000003,0.000002,0.000055,0.000006,0.000000,0.000063,0.000000,0.000000,0.000073,0.261806,0.000299,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000264,0.000002,0.000002,0.000002,0.000056,0.000006,0.000000,0.000063,0.000000,0.000000,0.000067,0.262068,0.000262,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000194,0.000002,0.000001,0.000002,0.000056,0.000005,0.000000,0.000063,0.000000,0.000000,0.000062,0.262261,0.000193,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000300,0.000002,0.000003,0.000002,0.000057,0.000005,0.000000,0.000064,0.000000,0.000000,0.000057,0.262558,0.000297,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000225,0.000002,0.000001,0.000002,0.000057,0.000004,0.000000,0.000063,0.000000,0.000000,0.000053,0.262777,0.000218,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000058,0.000004,0.000000,0.000063,0.000000,0.000000,0.000049,0.262772,-0.000005,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000004,0.000000,0.000062,0.000000,0.000000,0.000046,0.262767,-0.000005,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000004,0.000000,0.000062,0.000000,0.000000,0.000043,0.262763,-0.000005,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000003,0.000000,0.000062,0.000000,0.000000,0.000040,0.262758,-0.000004,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000003,0.000000,0.000063,0.000000,0.000000,0.000037,0.262754,-0.000004,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000003,0.000000,0.000063,0.000000,0.000000,0.000035,0.262750,-0.000004,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000003,0.000000,0.000063,0.000000,0.000000,0.000032,0.262746,-0.000004,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000002,0.000000,0.000063,0.000125,0.000125,0.000030,0.262620,-0.000126,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000002,0.000000,0.000063,0.000380,0.000380,0.000028,0.262240,-0.000380,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000002,0.000000,0.000064,0.000548,0.000546,0.000025,0.261694,-0.000546,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000002,0.000000,0.000064,0.000661,0.000658,0.000023,0.261036,-0.000658,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000002,0.000000,0.000064,0.000742,0.000735,0.000022,0.260300,-0.000735,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000002,0.000000,0.000064,0.000705,0.000695,0.000020,0.259605,-0.000695,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000002,0.000000,0.000065,0.000623,0.000612,0.000018,0.258993,-0.000612,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000001,0.000000,0.000065,0.000561,0.000549,0.000017,0.258444,-0.000549,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000001,0.000000,0.000065,0.000481,0.000470,0.000016,0.257975,-0.000470,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000001,0.000000,0.000066,0.000358,0.000349,0.000015,0.257626,-0.000349,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000001,0.000000,0.000066,0.000215,0.000209,0.000013,0.257418,-0.000209,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000001,0.000000,0.000066,0.000063,0.000061,0.000012,0.257357,-0.000061,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000001,0.000000,0.000067,0.000000,0.000000,0.000011,0.257357,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000001,0.000000,0.000067,0.000000,0.000000,0.000011,0.257357,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000001,0.000000,0.000067,0.000000,0.000000,0.000010,0.257357,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000001,0.000000,0.000068,0.000000,0.000000,0.000009,0.257357,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000001,0.000000,0.000068,0.000000,0.000000,0.000008,0.257357,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000068,0.000000,0.000000,0.000008,0.257357,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000069,0.000000,0.000000,0.000007,0.257357,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000069,0.000000,0.000000,0.000007,0.257357,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000001,0.000000,0.000069,0.000000,0.000000,0.000006,0.257357,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000006,0.257357,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000070,0.000000,0.000000,0.000005,0.257357,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000005,0.257357,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000126,0.000122,0.000004,0.257235,-0.000122,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000071,0.000377,0.000365,0.000004,0.256870,-0.000365,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000549,0.000530,0.000004,0.256340,-0.000530,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000668,0.000643,0.000003,0.255697,-0.000643,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000730,0.000701,0.000003,0.254997,-0.000701,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000671,0.000641,0.000003,0.254356,-0.000641,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000600,0.000571,0.000003,0.253785,-0.000571,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000550,0.000522,0.000003,0.253263,-0.000522,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000471,0.000445,0.000002,0.252818,-0.000445,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000352,0.000332,0.000002,0.252487,-0.000332,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000184,0.000173,0.000002,0.252314,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000033,0.000031,0.000002,0.252283,-0.000031,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000002,0.252283,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000002,0.252283,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000001,0.252283,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000103,0.000097,0.000001,0.252186,-0.000097,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000363,0.000341,0.000001,0.251846,-0.000341,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000079,0.000540,0.000506,0.000001,0.251340,-0.000506,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000659,0.000615,0.000001,0.250725,-0.000615,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000759,0.000705,0.000000,0.250020,-0.000705,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000704,0.000651,0.000000,0.249368,-0.000651,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000624,0.000575,0.000000,0.248794,-0.000575,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000561,0.000516,0.000000,0.248278,-0.000516,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000479,0.000438,0.000000,0.247840,-0.000438,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000357,0.000326,0.000000,0.247514,-0.000326,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000204,0.000186,0.000000,0.247328,-0.000186,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000043,0.000039,0.000000,0.247289,-0.000039,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000000,0.247289,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000111,0.000101,0.000000,0.247188,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620744.csv b/test/channel_loss/channel_forcing/et/cat-2620744.csv new file mode 100644 index 000000000..4f8cc9043 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620744.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000120,0.000000,0.000000,0.000000,0.000000,0.000830,0.000237,0.000830,0.000180,0.000180,0.009168,0.372431,-0.002432,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000777,0.000231,0.000777,0.000056,0.000056,0.008622,0.370060,-0.002371,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000728,0.000226,0.000728,0.000000,0.000000,0.008120,0.367799,-0.002261,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000221,0.000684,0.000000,0.000000,0.007657,0.365591,-0.002208,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000643,0.000216,0.000643,0.000000,0.000000,0.007230,0.363435,-0.002157,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000606,0.000211,0.000606,0.000000,0.000000,0.006835,0.361328,-0.002106,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000571,0.000206,0.000572,0.000000,0.000000,0.006469,0.359271,-0.002057,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000540,0.000201,0.000540,0.000000,0.000000,0.006130,0.357262,-0.002009,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000510,0.000196,0.000511,0.000000,0.000000,0.005816,0.355300,-0.001962,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000484,0.000192,0.000484,0.000000,0.000000,0.005524,0.353383,-0.001917,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000459,0.000187,0.000459,0.000000,0.000000,0.005252,0.351511,-0.001872,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000436,0.000183,0.000437,0.000000,0.000000,0.005000,0.349683,-0.001828,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000414,0.000179,0.000415,0.000000,0.000000,0.004764,0.347897,-0.001786,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000394,0.000174,0.000396,0.000000,0.000000,0.004544,0.346153,-0.001744,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000376,0.000170,0.000377,0.000141,0.000141,0.004338,0.344312,-0.001841,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000358,0.000165,0.000360,0.000388,0.000388,0.004145,0.342272,-0.002040,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000342,0.000160,0.000344,0.000550,0.000550,0.003963,0.340123,-0.002150,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000327,0.000155,0.000329,0.000664,0.000664,0.003791,0.337911,-0.002211,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000312,0.000150,0.000315,0.000574,0.000574,0.003629,0.335839,-0.002072,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000580,0.000000,0.000000,0.000000,0.000003,0.000299,0.000146,0.000301,0.000544,0.000544,0.003477,0.334411,-0.001429,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000586,0.000000,0.000000,0.000000,0.000003,0.000286,0.000143,0.000289,0.000471,0.000471,0.003334,0.333093,-0.001318,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000463,0.000000,0.000000,0.000000,0.000003,0.000274,0.000140,0.000278,0.000356,0.000356,0.003200,0.331798,-0.001295,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000432,0.000000,0.000000,0.000000,0.000004,0.000263,0.000137,0.000267,0.000318,0.000318,0.003074,0.330541,-0.001257,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000432,0.000001,0.000001,0.000001,0.000004,0.000253,0.000134,0.000257,0.000241,0.000241,0.002955,0.329387,-0.001154,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000422,0.000001,0.000002,0.000001,0.000004,0.000243,0.000132,0.000249,0.000169,0.000169,0.002844,0.328320,-0.001067,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000695,0.000007,0.000011,0.000007,0.000005,0.000234,0.000130,0.000245,0.000074,0.000074,0.002741,0.327628,-0.000692,1.000000,0.000005 +26,2022-08-02 02:00:00,0.001078,0.000021,0.000032,0.000021,0.000005,0.000225,0.000130,0.000251,0.000000,0.000000,0.002645,0.327378,-0.000251,1.000000,0.000017 +27,2022-08-02 03:00:00,0.001096,0.000029,0.000034,0.000029,0.000005,0.000218,0.000129,0.000252,0.000000,0.000000,0.002556,0.327149,-0.000228,1.000000,0.000022 +28,2022-08-02 04:00:00,0.001090,0.000033,0.000033,0.000033,0.000006,0.000211,0.000128,0.000249,0.000000,0.000000,0.002474,0.326921,-0.000229,1.000000,0.000022 +29,2022-08-02 05:00:00,0.001035,0.000031,0.000030,0.000031,0.000006,0.000204,0.000128,0.000241,0.000000,0.000000,0.002398,0.326647,-0.000274,1.000000,0.000020 +30,2022-08-02 06:00:00,0.001045,0.000031,0.000031,0.000031,0.000006,0.000198,0.000127,0.000235,0.000000,0.000000,0.002327,0.326390,-0.000257,1.000000,0.000020 +31,2022-08-02 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000007,0.000192,0.000124,0.000212,0.000000,0.000000,0.002259,0.325147,-0.001243,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000007,0.000186,0.000121,0.000200,0.000000,0.000000,0.002194,0.323933,-0.001214,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000181,0.000119,0.000188,0.000000,0.000000,0.002132,0.322748,-0.001186,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000176,0.000116,0.000184,0.000000,0.000000,0.002072,0.321590,-0.001158,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000171,0.000113,0.000179,0.000000,0.000000,0.002014,0.320459,-0.001131,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000166,0.000110,0.000175,0.000000,0.000000,0.001959,0.319354,-0.001105,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000009,0.000161,0.000108,0.000171,0.000000,0.000000,0.001906,0.318373,-0.000981,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000190,0.000000,0.000000,0.000000,0.000010,0.000157,0.000106,0.000167,0.000124,0.000124,0.001854,0.317381,-0.000992,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000190,0.000000,0.000000,0.000000,0.000010,0.000153,0.000103,0.000163,0.000328,0.000328,0.001805,0.316212,-0.001168,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000010,0.000148,0.000100,0.000159,0.000464,0.000464,0.001756,0.314851,-0.001361,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000011,0.000144,0.000096,0.000155,0.000563,0.000563,0.001708,0.313425,-0.001426,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000316,0.000000,0.000000,0.000000,0.000011,0.000140,0.000093,0.000152,0.000633,0.000633,0.001661,0.312175,-0.001251,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000136,0.000090,0.000148,0.000548,0.000548,0.001614,0.310728,-0.001447,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000132,0.000087,0.000145,0.000523,0.000523,0.001568,0.309340,-0.001388,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000018,0.000000,0.000000,0.000000,0.000013,0.000129,0.000083,0.000141,0.000511,0.000511,0.001523,0.308013,-0.001326,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000018,0.000000,0.000000,0.000000,0.000013,0.000125,0.000080,0.000138,0.000443,0.000443,0.001479,0.306784,-0.001229,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000018,0.000000,0.000000,0.000000,0.000014,0.000121,0.000078,0.000135,0.000333,0.000333,0.001436,0.305690,-0.001094,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000018,0.000000,0.000000,0.000000,0.000014,0.000117,0.000076,0.000132,0.000203,0.000203,0.001394,0.304750,-0.000940,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000044,0.000000,0.000000,0.000000,0.000015,0.000114,0.000074,0.000129,0.000049,0.000049,0.001353,0.304007,-0.000743,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000044,0.000000,0.000000,0.000000,0.000015,0.000111,0.000072,0.000126,0.000000,0.000000,0.001315,0.303329,-0.000678,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000044,0.000000,0.000000,0.000000,0.000016,0.000108,0.000071,0.000123,0.000000,0.000000,0.001278,0.302666,-0.000663,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000018,0.000000,0.000000,0.000000,0.000016,0.000105,0.000069,0.000121,0.000000,0.000000,0.001242,0.301995,-0.000672,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000044,0.000000,0.000000,0.000000,0.000017,0.000102,0.000067,0.000118,0.000000,0.000000,0.001208,0.301363,-0.000631,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000021,0.000000,0.000000,0.000000,0.000017,0.000099,0.000066,0.000116,0.000000,0.000000,0.001175,0.300724,-0.000639,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000096,0.000064,0.000114,0.000000,0.000000,0.001144,0.300080,-0.000645,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000094,0.000063,0.000112,0.000000,0.000000,0.001113,0.299450,-0.000629,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000091,0.000061,0.000110,0.000000,0.000000,0.001083,0.298835,-0.000615,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000089,0.000060,0.000108,0.000000,0.000000,0.001055,0.298235,-0.000600,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000086,0.000059,0.000106,0.000000,0.000000,0.001027,0.297649,-0.000586,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000084,0.000057,0.000104,0.000000,0.000000,0.001000,0.297076,-0.000573,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000082,0.000056,0.000102,0.000000,0.000000,0.000974,0.296516,-0.000559,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000080,0.000054,0.000101,0.000139,0.000139,0.000949,0.295834,-0.000682,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000078,0.000052,0.000099,0.000395,0.000395,0.000924,0.294918,-0.000916,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000075,0.000050,0.000097,0.000557,0.000557,0.000898,0.293865,-0.001053,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000073,0.000047,0.000096,0.000669,0.000669,0.000872,0.292727,-0.001138,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000071,0.000044,0.000094,0.000666,0.000666,0.000845,0.291618,-0.001109,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000029,0.000000,0.000000,0.000000,0.000024,0.000069,0.000042,0.000092,0.000617,0.000617,0.000818,0.290611,-0.001007,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000542,0.000000,0.000000,0.000000,0.000024,0.000066,0.000041,0.000091,0.000550,0.000550,0.000793,0.290195,-0.000416,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000133,0.000000,0.000000,0.000000,0.000025,0.000064,0.000039,0.000089,0.000501,0.000501,0.000767,0.289437,-0.000758,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000018,0.000000,0.000000,0.000000,0.000025,0.000062,0.000037,0.000087,0.000430,0.000430,0.000742,0.288653,-0.000783,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000060,0.000036,0.000086,0.000326,0.000326,0.000718,0.287972,-0.000682,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000058,0.000034,0.000084,0.000213,0.000213,0.000694,0.287417,-0.000555,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000056,0.000033,0.000083,0.000061,0.000061,0.000671,0.287023,-0.000394,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000054,0.000033,0.000082,0.000000,0.000000,0.000649,0.286697,-0.000325,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000053,0.000032,0.000080,0.000000,0.000000,0.000628,0.286380,-0.000318,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000051,0.000031,0.000079,0.000000,0.000000,0.000608,0.286070,-0.000310,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000049,0.000030,0.000078,0.000000,0.000000,0.000589,0.285767,-0.000303,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000048,0.000030,0.000077,0.000000,0.000000,0.000571,0.285471,-0.000296,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000046,0.000029,0.000076,0.000000,0.000000,0.000554,0.285182,-0.000289,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000045,0.000028,0.000075,0.000000,0.000000,0.000537,0.284900,-0.000282,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000044,0.000028,0.000074,0.000000,0.000000,0.000521,0.284624,-0.000276,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000042,0.000027,0.000074,0.000000,0.000000,0.000506,0.284355,-0.000269,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000041,0.000026,0.000073,0.000000,0.000000,0.000491,0.284092,-0.000263,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000040,0.000026,0.000072,0.000000,0.000000,0.000477,0.283835,-0.000257,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000039,0.000025,0.000072,0.000000,0.000000,0.000463,0.283584,-0.000251,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000038,0.000024,0.000071,0.000133,0.000133,0.000450,0.283210,-0.000375,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000036,0.000023,0.000070,0.000389,0.000389,0.000436,0.282594,-0.000616,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000035,0.000021,0.000070,0.000551,0.000551,0.000422,0.281834,-0.000760,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000034,0.000019,0.000069,0.000669,0.000669,0.000407,0.280976,-0.000858,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000033,0.000017,0.000068,0.000750,0.000750,0.000391,0.280059,-0.000917,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000031,0.000015,0.000067,0.000700,0.000700,0.000374,0.279212,-0.000847,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000030,0.000013,0.000066,0.000619,0.000619,0.000357,0.278464,-0.000748,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000028,0.000011,0.000065,0.000547,0.000547,0.000340,0.277804,-0.000660,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000027,0.000010,0.000064,0.000472,0.000472,0.000323,0.277233,-0.000571,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000026,0.000009,0.000063,0.000355,0.000355,0.000306,0.276789,-0.000443,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000024,0.000008,0.000062,0.000219,0.000219,0.000290,0.276489,-0.000301,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000023,0.000008,0.000062,0.000070,0.000070,0.000275,0.276341,-0.000148,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000022,0.000008,0.000061,0.000000,0.000000,0.000261,0.276264,-0.000076,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000021,0.000007,0.000060,0.000000,0.000000,0.000248,0.276190,-0.000074,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000020,0.000007,0.000060,0.000000,0.000000,0.000235,0.276117,-0.000073,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000019,0.000007,0.000059,0.000000,0.000000,0.000224,0.276047,-0.000071,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000018,0.000007,0.000059,0.000000,0.000000,0.000213,0.275977,-0.000069,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000017,0.000007,0.000058,0.000000,0.000000,0.000203,0.275910,-0.000068,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000016,0.000007,0.000058,0.000000,0.000000,0.000193,0.275844,-0.000066,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000015,0.000006,0.000058,0.000000,0.000000,0.000184,0.275779,-0.000065,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000015,0.000006,0.000058,0.000000,0.000000,0.000176,0.275716,-0.000063,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000014,0.000006,0.000057,0.000000,0.000000,0.000168,0.275654,-0.000062,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000013,0.000006,0.000057,0.000000,0.000000,0.000161,0.275594,-0.000060,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000013,0.000006,0.000057,0.000000,0.000000,0.000154,0.275535,-0.000059,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000012,0.000005,0.000057,0.000146,0.000146,0.000147,0.275335,-0.000200,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000012,0.000004,0.000057,0.000393,0.000393,0.000140,0.274899,-0.000437,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000011,0.000003,0.000057,0.000554,0.000554,0.000132,0.274315,-0.000584,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000010,0.000001,0.000056,0.000671,0.000671,0.000123,0.273631,-0.000684,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000009,0.000000,0.000056,0.000663,0.000663,0.000113,0.272968,-0.000663,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000047,0.000009,0.000000,0.000056,0.000609,0.000609,0.000105,0.272422,-0.000546,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000047,0.000008,0.000000,0.000055,0.000537,0.000535,0.000097,0.271950,-0.000472,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000048,0.000007,0.000000,0.000055,0.000493,0.000490,0.000089,0.271523,-0.000427,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000048,0.000007,0.000000,0.000055,0.000434,0.000431,0.000082,0.271155,-0.000368,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000049,0.000006,0.000000,0.000055,0.000327,0.000324,0.000076,0.270895,-0.000261,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000049,0.000006,0.000000,0.000055,0.000205,0.000203,0.000070,0.270755,-0.000140,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000284,0.000001,0.000001,0.000001,0.000049,0.000005,0.000000,0.000055,0.000072,0.000072,0.000065,0.270966,0.000211,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000350,0.000002,0.000003,0.000002,0.000050,0.000005,0.000000,0.000057,0.000000,0.000000,0.000060,0.271313,0.000347,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000272,0.000002,0.000002,0.000002,0.000050,0.000005,0.000000,0.000057,0.000000,0.000000,0.000055,0.271583,0.000270,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000212,0.000002,0.000001,0.000002,0.000051,0.000004,0.000000,0.000057,0.000000,0.000000,0.000051,0.271793,0.000210,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000300,0.000002,0.000002,0.000002,0.000051,0.000004,0.000000,0.000057,0.000000,0.000000,0.000047,0.272091,0.000298,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000310,0.000002,0.000002,0.000002,0.000051,0.000004,0.000000,0.000057,0.000000,0.000000,0.000043,0.272399,0.000308,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000052,0.000003,0.000000,0.000056,0.000000,0.000000,0.000040,0.272399,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000003,0.000000,0.000056,0.000000,0.000000,0.000037,0.272399,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000000,0.000000,0.000034,0.272399,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000003,0.000000,0.000056,0.000000,0.000000,0.000032,0.272399,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000056,0.000000,0.000000,0.000029,0.272399,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000056,0.000000,0.000000,0.000027,0.272399,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000002,0.000000,0.000056,0.000000,0.000000,0.000025,0.272399,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000056,0.000128,0.000128,0.000023,0.272271,-0.000128,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000384,0.000382,0.000021,0.271889,-0.000382,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000002,0.000000,0.000057,0.000541,0.000538,0.000019,0.271351,-0.000538,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000651,0.000645,0.000018,0.270706,-0.000645,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000728,0.000719,0.000017,0.269988,-0.000719,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000058,0.000685,0.000673,0.000015,0.269315,-0.000673,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000598,0.000585,0.000014,0.268729,-0.000585,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000545,0.000532,0.000013,0.268197,-0.000532,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000468,0.000455,0.000012,0.267742,-0.000455,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000346,0.000335,0.000011,0.267407,-0.000335,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000209,0.000202,0.000010,0.267205,-0.000202,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000059,0.000060,0.000058,0.000009,0.267147,-0.000058,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000000,0.000000,0.000009,0.267147,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000000,0.000000,0.000008,0.267147,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000060,0.000000,0.000000,0.000007,0.267147,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000060,0.000000,0.000000,0.000007,0.267147,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000000,0.000000,0.000006,0.267147,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000006,0.267147,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000005,0.267147,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000000,0.000000,0.000005,0.267147,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000005,0.267147,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000004,0.267147,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000000,0.000000,0.000004,0.267147,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000004,0.267147,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000127,0.000123,0.000003,0.267024,-0.000123,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000377,0.000364,0.000003,0.266660,-0.000364,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000542,0.000522,0.000003,0.266137,-0.000522,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000654,0.000629,0.000003,0.265508,-0.000629,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000709,0.000679,0.000002,0.264829,-0.000679,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000659,0.000629,0.000002,0.264200,-0.000629,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000583,0.000554,0.000002,0.263646,-0.000554,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000540,0.000511,0.000002,0.263135,-0.000511,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000464,0.000438,0.000002,0.262697,-0.000438,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000344,0.000324,0.000002,0.262373,-0.000324,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000180,0.000170,0.000002,0.262203,-0.000170,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000031,0.000029,0.000001,0.262174,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000001,0.262174,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000107,0.000100,0.000000,0.262074,-0.000100,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000364,0.000342,0.000000,0.261732,-0.000342,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000533,0.000499,0.000000,0.261233,-0.000499,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000648,0.000605,0.000000,0.260628,-0.000605,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000732,0.000681,0.000000,0.259946,-0.000681,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000686,0.000636,0.000000,0.259311,-0.000636,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000605,0.000558,0.000000,0.258752,-0.000558,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000548,0.000504,0.000000,0.258248,-0.000504,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000472,0.000433,0.000000,0.257816,-0.000433,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000347,0.000317,0.000000,0.257498,-0.000317,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000201,0.000184,0.000000,0.257314,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000041,0.000038,0.000000,0.257276,-0.000038,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.257276,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000116,0.000105,0.000000,0.257171,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620745.csv b/test/channel_loss/channel_forcing/et/cat-2620745.csv new file mode 100644 index 000000000..f55bde6ec --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620745.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.000832,0.000251,0.000832,0.000212,0.000212,0.009170,0.376242,-0.002318,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000779,0.000245,0.000779,0.000075,0.000075,0.008636,0.373926,-0.002315,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000731,0.000239,0.000732,0.000000,0.000000,0.008144,0.371739,-0.002187,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000234,0.000688,0.000000,0.000000,0.007690,0.369603,-0.002136,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000648,0.000228,0.000648,0.000000,0.000000,0.007271,0.367518,-0.002085,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000611,0.000223,0.000611,0.000000,0.000000,0.006883,0.365482,-0.002036,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000218,0.000577,0.000000,0.000000,0.006523,0.363493,-0.001988,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000546,0.000212,0.000546,0.000000,0.000000,0.006190,0.361552,-0.001941,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000517,0.000207,0.000518,0.000000,0.000000,0.005880,0.359657,-0.001895,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000490,0.000203,0.000491,0.000000,0.000000,0.005592,0.357806,-0.001851,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000466,0.000198,0.000467,0.000000,0.000000,0.005324,0.355999,-0.001807,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000443,0.000193,0.000444,0.000000,0.000000,0.005074,0.354234,-0.001764,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000422,0.000189,0.000423,0.000000,0.000000,0.004841,0.352512,-0.001723,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000402,0.000184,0.000403,0.000000,0.000000,0.004624,0.350830,-0.001682,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000179,0.000385,0.000153,0.000153,0.004420,0.349038,-0.001792,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000366,0.000174,0.000368,0.000399,0.000399,0.004228,0.347048,-0.001990,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000350,0.000168,0.000352,0.000584,0.000584,0.004046,0.344924,-0.002124,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000334,0.000163,0.000337,0.000731,0.000731,0.003874,0.342707,-0.002217,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000320,0.000157,0.000322,0.000686,0.000686,0.003712,0.340587,-0.002120,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000003,0.000306,0.000152,0.000309,0.000674,0.000674,0.003558,0.338836,-0.001751,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000362,0.000000,0.000000,0.000000,0.000003,0.000293,0.000148,0.000296,0.000569,0.000569,0.003413,0.337274,-0.001562,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000374,0.000000,0.000000,0.000000,0.000003,0.000281,0.000145,0.000284,0.000454,0.000454,0.003276,0.335873,-0.001401,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000432,0.000000,0.000000,0.000000,0.000003,0.000270,0.000141,0.000273,0.000386,0.000386,0.003147,0.334628,-0.001245,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000448,0.000000,0.000001,0.000000,0.000004,0.000259,0.000138,0.000263,0.000295,0.000295,0.003026,0.333517,-0.001111,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000492,0.000002,0.000003,0.000002,0.000004,0.000249,0.000136,0.000255,0.000195,0.000195,0.002913,0.332570,-0.000946,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000882,0.000011,0.000019,0.000011,0.000004,0.000240,0.000135,0.000256,0.000099,0.000099,0.002808,0.332105,-0.000466,1.000000,0.000009 +26,2022-08-02 02:00:00,0.000870,0.000018,0.000024,0.000018,0.000005,0.000231,0.000134,0.000255,0.000002,0.000002,0.002710,0.331729,-0.000376,1.000000,0.000015 +27,2022-08-02 03:00:00,0.000860,0.000023,0.000023,0.000023,0.000005,0.000223,0.000133,0.000251,0.000000,0.000000,0.002619,0.331354,-0.000374,1.000000,0.000015 +28,2022-08-02 04:00:00,0.000875,0.000024,0.000024,0.000024,0.000005,0.000216,0.000132,0.000245,0.000000,0.000000,0.002534,0.331002,-0.000352,1.000000,0.000015 +29,2022-08-02 05:00:00,0.000882,0.000024,0.000024,0.000024,0.000006,0.000209,0.000131,0.000239,0.000000,0.000000,0.002456,0.330665,-0.000337,1.000000,0.000016 +30,2022-08-02 06:00:00,0.000892,0.000025,0.000025,0.000025,0.000006,0.000203,0.000130,0.000234,0.000000,0.000000,0.002383,0.330345,-0.000320,1.000000,0.000016 +31,2022-08-02 07:00:00,0.000000,0.000011,0.000000,0.000011,0.000006,0.000197,0.000127,0.000214,0.000000,0.000000,0.002313,0.329186,-0.001159,1.000000,0.000005 +32,2022-08-02 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000007,0.000191,0.000124,0.000203,0.000000,0.000000,0.002246,0.328054,-0.001132,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000185,0.000121,0.000193,0.000000,0.000000,0.002181,0.326949,-0.001105,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000180,0.000118,0.000188,0.000000,0.000000,0.002120,0.325870,-0.001079,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000175,0.000115,0.000183,0.000000,0.000000,0.002060,0.324817,-0.001054,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000170,0.000113,0.000178,0.000000,0.000000,0.002003,0.323788,-0.001029,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000165,0.000110,0.000174,0.000000,0.000000,0.001947,0.322784,-0.001004,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000161,0.000107,0.000170,0.000131,0.000131,0.001894,0.321675,-0.001109,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000156,0.000104,0.000166,0.000351,0.000351,0.001841,0.320378,-0.001297,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000152,0.000100,0.000162,0.000505,0.000505,0.001790,0.318961,-0.001417,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000147,0.000096,0.000158,0.000632,0.000632,0.001738,0.317453,-0.001508,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000004,0.000000,0.000000,0.000000,0.000011,0.000143,0.000092,0.000154,0.000739,0.000739,0.001687,0.315880,-0.001573,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000138,0.000088,0.000150,0.000691,0.000691,0.001637,0.314388,-0.001492,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000134,0.000084,0.000146,0.000630,0.000630,0.001586,0.312990,-0.001398,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000130,0.000081,0.000142,0.000570,0.000570,0.001537,0.311684,-0.001306,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000126,0.000077,0.000138,0.000485,0.000485,0.001489,0.310492,-0.001192,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000122,0.000075,0.000135,0.000375,0.000375,0.001442,0.309435,-0.001057,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000118,0.000072,0.000131,0.000227,0.000227,0.001396,0.308547,-0.000887,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000114,0.000070,0.000128,0.000070,0.000070,0.001353,0.307834,-0.000714,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000111,0.000069,0.000125,0.000000,0.000000,0.001311,0.307206,-0.000628,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000107,0.000067,0.000122,0.000000,0.000000,0.001271,0.306593,-0.000613,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000104,0.000066,0.000119,0.000000,0.000000,0.001232,0.305994,-0.000599,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000101,0.000064,0.000116,0.000000,0.000000,0.001196,0.305410,-0.000585,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000098,0.000062,0.000114,0.000000,0.000000,0.001160,0.304839,-0.000571,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000095,0.000061,0.000111,0.000000,0.000000,0.001127,0.304282,-0.000557,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000092,0.000060,0.000109,0.000000,0.000000,0.001094,0.303737,-0.000544,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000089,0.000058,0.000107,0.000000,0.000000,0.001063,0.303206,-0.000531,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000087,0.000057,0.000105,0.000000,0.000000,0.001033,0.302687,-0.000519,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000084,0.000055,0.000103,0.000000,0.000000,0.001004,0.302181,-0.000507,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000082,0.000054,0.000101,0.000000,0.000000,0.000976,0.301686,-0.000495,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000080,0.000053,0.000099,0.000000,0.000000,0.000949,0.301203,-0.000483,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000078,0.000051,0.000097,0.000150,0.000150,0.000923,0.300585,-0.000618,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000075,0.000049,0.000096,0.000414,0.000414,0.000896,0.299724,-0.000862,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000073,0.000046,0.000094,0.000599,0.000599,0.000870,0.298702,-0.001021,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000071,0.000043,0.000092,0.000742,0.000742,0.000842,0.297566,-0.001137,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000068,0.000040,0.000090,0.000796,0.000796,0.000814,0.296402,-0.001163,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000066,0.000037,0.000088,0.000764,0.000764,0.000785,0.295299,-0.001104,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000016,0.000000,0.000000,0.000000,0.000023,0.000063,0.000035,0.000086,0.000670,0.000670,0.000756,0.294328,-0.000971,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000001,0.000000,0.000000,0.000000,0.000023,0.000061,0.000032,0.000084,0.000578,0.000578,0.000728,0.293455,-0.000872,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000059,0.000030,0.000082,0.000493,0.000493,0.000699,0.292685,-0.000770,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000056,0.000029,0.000080,0.000378,0.000378,0.000672,0.292046,-0.000640,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000054,0.000027,0.000079,0.000232,0.000232,0.000645,0.291563,-0.000482,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000052,0.000026,0.000077,0.000087,0.000087,0.000620,0.291234,-0.000329,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000050,0.000026,0.000075,0.000000,0.000000,0.000596,0.290998,-0.000236,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000048,0.000025,0.000074,0.000000,0.000000,0.000573,0.290767,-0.000231,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000046,0.000025,0.000073,0.000000,0.000000,0.000551,0.290542,-0.000225,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000044,0.000024,0.000071,0.000000,0.000000,0.000531,0.290322,-0.000220,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000043,0.000024,0.000070,0.000000,0.000000,0.000512,0.290107,-0.000215,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000041,0.000023,0.000069,0.000000,0.000000,0.000493,0.289898,-0.000210,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000040,0.000022,0.000068,0.000000,0.000000,0.000476,0.289693,-0.000205,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000038,0.000022,0.000067,0.000000,0.000000,0.000459,0.289493,-0.000200,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000037,0.000021,0.000066,0.000000,0.000000,0.000444,0.289298,-0.000195,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000036,0.000021,0.000066,0.000000,0.000000,0.000429,0.289107,-0.000191,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000035,0.000020,0.000065,0.000000,0.000000,0.000414,0.288921,-0.000186,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000034,0.000020,0.000064,0.000000,0.000000,0.000401,0.288740,-0.000182,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000032,0.000019,0.000063,0.000145,0.000145,0.000387,0.288421,-0.000319,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000031,0.000018,0.000063,0.000408,0.000408,0.000374,0.287852,-0.000569,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000030,0.000016,0.000062,0.000592,0.000592,0.000359,0.287117,-0.000735,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000029,0.000013,0.000061,0.000744,0.000744,0.000344,0.286252,-0.000866,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000027,0.000011,0.000060,0.000879,0.000879,0.000327,0.285275,-0.000977,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000026,0.000008,0.000059,0.000853,0.000853,0.000310,0.284347,-0.000929,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000024,0.000006,0.000058,0.000739,0.000739,0.000291,0.283551,-0.000796,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000023,0.000004,0.000057,0.000604,0.000604,0.000273,0.282906,-0.000645,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000021,0.000003,0.000056,0.000517,0.000517,0.000255,0.282362,-0.000544,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000020,0.000002,0.000055,0.000398,0.000398,0.000237,0.281947,-0.000415,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000018,0.000001,0.000054,0.000240,0.000240,0.000220,0.281695,-0.000252,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000017,0.000001,0.000053,0.000097,0.000097,0.000204,0.281589,-0.000106,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000016,0.000001,0.000052,0.000000,0.000000,0.000189,0.281580,-0.000009,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000001,0.000051,0.000000,0.000000,0.000175,0.281572,-0.000008,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000014,0.000001,0.000051,0.000000,0.000000,0.000163,0.281563,-0.000008,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000013,0.000001,0.000050,0.000000,0.000000,0.000151,0.281555,-0.000008,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000012,0.000001,0.000050,0.000000,0.000000,0.000140,0.281547,-0.000008,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000011,0.000001,0.000049,0.000000,0.000000,0.000130,0.281540,-0.000008,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000010,0.000001,0.000049,0.000000,0.000000,0.000121,0.281532,-0.000008,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000009,0.000001,0.000049,0.000000,0.000000,0.000112,0.281525,-0.000007,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000009,0.000001,0.000048,0.000000,0.000000,0.000104,0.281518,-0.000007,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000008,0.000001,0.000048,0.000000,0.000000,0.000097,0.281511,-0.000007,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000008,0.000001,0.000048,0.000000,0.000000,0.000090,0.281504,-0.000007,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000007,0.000001,0.000048,0.000004,0.000004,0.000084,0.281493,-0.000011,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000006,0.000000,0.000048,0.000157,0.000157,0.000078,0.281334,-0.000159,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000006,0.000000,0.000048,0.000415,0.000415,0.000072,0.280919,-0.000415,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000006,0.000000,0.000048,0.000599,0.000598,0.000066,0.280321,-0.000598,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000000,0.000047,0.000747,0.000743,0.000061,0.279578,-0.000743,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000000,0.000047,0.000763,0.000756,0.000056,0.278822,-0.000756,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000043,0.000004,0.000000,0.000048,0.000732,0.000724,0.000052,0.278162,-0.000660,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000044,0.000004,0.000000,0.000048,0.000630,0.000620,0.000048,0.277604,-0.000557,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000044,0.000004,0.000000,0.000048,0.000526,0.000517,0.000044,0.277150,-0.000454,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000044,0.000003,0.000000,0.000048,0.000464,0.000455,0.000041,0.276759,-0.000392,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000045,0.000003,0.000000,0.000048,0.000359,0.000352,0.000038,0.276470,-0.000289,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000045,0.000003,0.000000,0.000048,0.000214,0.000210,0.000035,0.276323,-0.000147,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000382,0.000001,0.000002,0.000001,0.000045,0.000003,0.000000,0.000049,0.000091,0.000091,0.000032,0.276612,0.000289,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000484,0.000004,0.000007,0.000004,0.000046,0.000002,0.000000,0.000052,0.000000,0.000000,0.000030,0.277089,0.000477,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000484,0.000006,0.000007,0.000006,0.000046,0.000002,0.000000,0.000054,0.000000,0.000000,0.000027,0.277566,0.000477,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000485,0.000007,0.000007,0.000007,0.000046,0.000002,0.000000,0.000055,0.000000,0.000000,0.000025,0.278045,0.000479,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000479,0.000007,0.000006,0.000007,0.000047,0.000002,0.000000,0.000055,0.000000,0.000000,0.000023,0.278518,0.000473,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000479,0.000007,0.000006,0.000007,0.000047,0.000002,0.000000,0.000055,0.000000,0.000000,0.000022,0.278990,0.000473,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000048,0.000002,0.000000,0.000052,0.000000,0.000000,0.000020,0.278990,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000048,0.000002,0.000000,0.000051,0.000000,0.000000,0.000018,0.278990,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000050,0.000000,0.000000,0.000017,0.278990,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000050,0.000000,0.000000,0.000016,0.278990,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000050,0.000000,0.000000,0.000014,0.278990,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000050,0.000000,0.000000,0.000013,0.278990,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000000,0.000000,0.000012,0.278990,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000137,0.000136,0.000011,0.278855,-0.000136,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000397,0.000392,0.000011,0.278463,-0.000392,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000051,0.000584,0.000575,0.000010,0.277888,-0.000575,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000734,0.000721,0.000009,0.277167,-0.000721,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000859,0.000840,0.000008,0.276327,-0.000840,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000052,0.000833,0.000811,0.000008,0.275516,-0.000811,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000052,0.000729,0.000707,0.000007,0.274809,-0.000707,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000608,0.000587,0.000007,0.274221,-0.000587,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000519,0.000500,0.000006,0.273722,-0.000500,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000395,0.000379,0.000006,0.273342,-0.000379,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000238,0.000228,0.000005,0.273114,-0.000228,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000054,0.000083,0.000080,0.000005,0.273035,-0.000080,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000004,0.273035,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000004,0.273035,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000000,0.000000,0.000004,0.273035,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000003,0.273035,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000003,0.273035,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000003,0.273035,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000000,0.000000,0.000003,0.273035,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000002,0.273035,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000002,0.273035,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000002,0.273035,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000002,0.273035,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000002,0.273035,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000136,0.000130,0.000002,0.272905,-0.000130,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000394,0.000377,0.000002,0.272528,-0.000377,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000585,0.000557,0.000001,0.271970,-0.000557,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000731,0.000694,0.000001,0.271276,-0.000694,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000838,0.000794,0.000001,0.270482,-0.000794,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000800,0.000755,0.000001,0.269728,-0.000755,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000697,0.000654,0.000001,0.269073,-0.000654,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000611,0.000571,0.000001,0.268502,-0.000571,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000522,0.000486,0.000001,0.268016,-0.000486,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000397,0.000369,0.000001,0.267647,-0.000369,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000207,0.000192,0.000001,0.267455,-0.000192,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000045,0.000042,0.000001,0.267413,-0.000042,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000001,0.267413,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.267413,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.267413,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.267413,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.267413,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000115,0.000106,0.000000,0.267306,-0.000106,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000379,0.000351,0.000000,0.266956,-0.000351,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000572,0.000528,0.000000,0.266428,-0.000528,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000720,0.000663,0.000000,0.265765,-0.000663,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000852,0.000782,0.000000,0.264983,-0.000782,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000820,0.000749,0.000000,0.264234,-0.000749,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000716,0.000651,0.000000,0.263583,-0.000651,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000623,0.000564,0.000000,0.263018,-0.000564,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000519,0.000469,0.000000,0.262550,-0.000469,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000397,0.000358,0.000000,0.262192,-0.000358,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000232,0.000209,0.000000,0.261983,-0.000209,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000070,0.000063,0.000000,0.261921,-0.000063,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.261921,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000125,0.000112,0.000000,0.261808,-0.000112,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620746.csv b/test/channel_loss/channel_forcing/et/cat-2620746.csv new file mode 100644 index 000000000..26cd65e81 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620746.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000183,0.000000,0.000000,0.000000,0.000000,0.000822,0.000139,0.000822,0.000202,0.000202,0.009078,0.371843,-0.003020,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000761,0.000136,0.000761,0.000070,0.000070,0.008454,0.368833,-0.003009,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000705,0.000133,0.000705,0.000000,0.000000,0.007881,0.365953,-0.002880,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000655,0.000130,0.000655,0.000000,0.000000,0.007357,0.363130,-0.002823,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000609,0.000128,0.000610,0.000000,0.000000,0.006875,0.360364,-0.002767,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000568,0.000125,0.000568,0.000000,0.000000,0.006433,0.357652,-0.002711,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000123,0.000530,0.000000,0.000000,0.006025,0.354995,-0.002657,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000495,0.000120,0.000496,0.000000,0.000000,0.005651,0.352391,-0.002604,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000463,0.000118,0.000464,0.000000,0.000000,0.005305,0.349839,-0.002552,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000434,0.000116,0.000435,0.000000,0.000000,0.004986,0.347338,-0.002501,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000408,0.000113,0.000409,0.000000,0.000000,0.004692,0.344887,-0.002451,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000111,0.000384,0.000000,0.000000,0.004420,0.342484,-0.002402,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000360,0.000109,0.000362,0.000000,0.000000,0.004168,0.340130,-0.002354,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000339,0.000107,0.000341,0.000000,0.000000,0.003935,0.337823,-0.002307,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000320,0.000104,0.000322,0.000151,0.000151,0.003720,0.335413,-0.002410,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000302,0.000102,0.000305,0.000400,0.000400,0.003519,0.332808,-0.002605,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000286,0.000099,0.000289,0.000583,0.000583,0.003333,0.330076,-0.002733,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000271,0.000097,0.000274,0.000725,0.000725,0.003159,0.327258,-0.002817,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000256,0.000094,0.000260,0.000659,0.000659,0.002997,0.324562,-0.002696,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000359,0.000000,0.000000,0.000000,0.000004,0.000243,0.000092,0.000247,0.000632,0.000632,0.002845,0.322298,-0.002264,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000366,0.000000,0.000000,0.000000,0.000004,0.000231,0.000090,0.000235,0.000549,0.000549,0.002705,0.320167,-0.002131,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000429,0.000000,0.000000,0.000000,0.000005,0.000219,0.000088,0.000224,0.000436,0.000436,0.002574,0.318252,-0.001915,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000397,0.000000,0.000000,0.000000,0.000005,0.000209,0.000086,0.000214,0.000372,0.000372,0.002452,0.316407,-0.001845,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000422,0.000001,0.000001,0.000001,0.000005,0.000199,0.000085,0.000205,0.000284,0.000284,0.002338,0.314707,-0.001700,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000455,0.000003,0.000004,0.000003,0.000006,0.000190,0.000083,0.000198,0.000189,0.000189,0.002232,0.313163,-0.001543,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000902,0.000023,0.000039,0.000023,0.000006,0.000181,0.000082,0.000210,0.000093,0.000093,0.002133,0.312148,-0.001015,1.000000,0.000018 +26,2022-08-02 02:00:00,0.000934,0.000039,0.000051,0.000039,0.000007,0.000173,0.000082,0.000219,0.000000,0.000000,0.002042,0.311265,-0.000884,1.000000,0.000031 +27,2022-08-02 03:00:00,0.000913,0.000048,0.000049,0.000048,0.000007,0.000166,0.000081,0.000221,0.000000,0.000000,0.001957,0.310380,-0.000884,1.000000,0.000032 +28,2022-08-02 04:00:00,0.000916,0.000050,0.000049,0.000050,0.000008,0.000159,0.000080,0.000216,0.000000,0.000000,0.001878,0.309516,-0.000864,1.000000,0.000032 +29,2022-08-02 05:00:00,0.000925,0.000050,0.000050,0.000050,0.000008,0.000153,0.000079,0.000211,0.000000,0.000000,0.001804,0.308678,-0.000838,1.000000,0.000032 +30,2022-08-02 06:00:00,0.000926,0.000050,0.000050,0.000050,0.000009,0.000147,0.000078,0.000205,0.000000,0.000000,0.001736,0.307857,-0.000821,1.000000,0.000033 +31,2022-08-02 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000009,0.000141,0.000077,0.000173,0.000000,0.000000,0.001671,0.306194,-0.001663,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000010,0.000136,0.000075,0.000156,0.000000,0.000000,0.001611,0.304564,-0.001630,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000131,0.000074,0.000142,0.000000,0.000000,0.001553,0.302967,-0.001597,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000126,0.000072,0.000137,0.000000,0.000000,0.001499,0.301401,-0.001565,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000122,0.000071,0.000134,0.000000,0.000000,0.001448,0.299867,-0.001534,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000118,0.000069,0.000130,0.000000,0.000000,0.001400,0.298364,-0.001504,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000046,0.000000,0.000000,0.000000,0.000013,0.000114,0.000068,0.000127,0.000000,0.000000,0.001354,0.296935,-0.001429,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000059,0.000000,0.000000,0.000000,0.000013,0.000110,0.000067,0.000124,0.000129,0.000129,0.001310,0.295422,-0.001513,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000059,0.000000,0.000000,0.000000,0.000014,0.000107,0.000065,0.000121,0.000347,0.000347,0.001268,0.293725,-0.001697,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000059,0.000000,0.000000,0.000000,0.000015,0.000103,0.000063,0.000118,0.000500,0.000500,0.001228,0.291912,-0.001813,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000050,0.000000,0.000000,0.000000,0.000015,0.000100,0.000062,0.000115,0.000619,0.000619,0.001190,0.290009,-0.001903,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000141,0.000000,0.000000,0.000000,0.000016,0.000097,0.000060,0.000113,0.000712,0.000712,0.001153,0.288143,-0.001866,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000094,0.000058,0.000110,0.000660,0.000660,0.001117,0.286226,-0.001917,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000091,0.000056,0.000108,0.000602,0.000602,0.001082,0.284405,-0.001821,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000088,0.000055,0.000106,0.000552,0.000552,0.001049,0.282669,-0.001736,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000085,0.000053,0.000104,0.000479,0.000479,0.001017,0.281039,-0.001629,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000083,0.000052,0.000102,0.000367,0.000367,0.000986,0.279552,-0.001487,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000080,0.000051,0.000100,0.000222,0.000222,0.000956,0.278237,-0.001315,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000078,0.000049,0.000098,0.000065,0.000065,0.000928,0.277102,-0.001135,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000076,0.000048,0.000097,0.000000,0.000000,0.000900,0.276053,-0.001049,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000073,0.000048,0.000095,0.000000,0.000000,0.000875,0.275025,-0.001028,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000071,0.000047,0.000094,0.000000,0.000000,0.000850,0.274017,-0.001008,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000069,0.000046,0.000092,0.000000,0.000000,0.000826,0.273030,-0.000987,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000067,0.000045,0.000091,0.000000,0.000000,0.000804,0.272062,-0.000968,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000066,0.000044,0.000090,0.000000,0.000000,0.000782,0.271114,-0.000948,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000064,0.000043,0.000089,0.000000,0.000000,0.000761,0.270184,-0.000929,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000062,0.000042,0.000088,0.000000,0.000000,0.000741,0.269273,-0.000911,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000060,0.000041,0.000087,0.000000,0.000000,0.000722,0.268381,-0.000893,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000059,0.000040,0.000086,0.000000,0.000000,0.000703,0.267506,-0.000875,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000057,0.000040,0.000086,0.000000,0.000000,0.000686,0.266648,-0.000857,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000056,0.000039,0.000085,0.000000,0.000000,0.000668,0.265808,-0.000840,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000055,0.000038,0.000084,0.000148,0.000148,0.000652,0.264839,-0.000969,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000053,0.000037,0.000084,0.000414,0.000414,0.000635,0.263630,-0.001210,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000052,0.000035,0.000083,0.000598,0.000598,0.000619,0.262264,-0.001366,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000050,0.000034,0.000082,0.000734,0.000734,0.000603,0.260792,-0.001472,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000049,0.000033,0.000082,0.000769,0.000769,0.000586,0.259315,-0.001477,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000048,0.000031,0.000081,0.000734,0.000734,0.000570,0.257902,-0.001413,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000284,0.000000,0.000000,0.000000,0.000034,0.000046,0.000030,0.000080,0.000644,0.000644,0.000554,0.256884,-0.001018,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000074,0.000000,0.000000,0.000000,0.000035,0.000045,0.000029,0.000080,0.000560,0.000560,0.000538,0.255762,-0.001122,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000044,0.000028,0.000079,0.000478,0.000478,0.000523,0.254670,-0.001091,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000042,0.000027,0.000079,0.000366,0.000366,0.000508,0.253710,-0.000960,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000041,0.000027,0.000078,0.000228,0.000228,0.000493,0.252904,-0.000806,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000040,0.000026,0.000078,0.000080,0.000080,0.000479,0.252260,-0.000644,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000039,0.000026,0.000077,0.000000,0.000000,0.000466,0.251707,-0.000553,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000038,0.000025,0.000077,0.000000,0.000000,0.000453,0.251165,-0.000542,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000037,0.000025,0.000077,0.000000,0.000000,0.000441,0.250634,-0.000531,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000036,0.000024,0.000077,0.000000,0.000000,0.000429,0.250113,-0.000521,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000035,0.000024,0.000076,0.000000,0.000000,0.000418,0.249603,-0.000510,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000034,0.000023,0.000076,0.000000,0.000000,0.000407,0.249103,-0.000500,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000033,0.000023,0.000076,0.000000,0.000000,0.000396,0.248613,-0.000490,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000032,0.000022,0.000076,0.000000,0.000000,0.000386,0.248133,-0.000480,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000031,0.000022,0.000076,0.000000,0.000000,0.000377,0.247662,-0.000471,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000031,0.000021,0.000076,0.000000,0.000000,0.000367,0.247201,-0.000461,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000030,0.000021,0.000076,0.000000,0.000000,0.000358,0.246748,-0.000452,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000029,0.000020,0.000076,0.000000,0.000000,0.000350,0.246305,-0.000443,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000028,0.000020,0.000076,0.000142,0.000142,0.000341,0.245732,-0.000574,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000028,0.000019,0.000076,0.000410,0.000410,0.000332,0.244907,-0.000825,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000027,0.000018,0.000076,0.000590,0.000590,0.000324,0.243923,-0.000984,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000026,0.000017,0.000076,0.000730,0.000730,0.000315,0.242821,-0.001102,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000025,0.000016,0.000076,0.000856,0.000856,0.000305,0.241616,-0.001204,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000025,0.000015,0.000076,0.000820,0.000820,0.000296,0.240473,-0.001144,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000024,0.000014,0.000076,0.000707,0.000707,0.000286,0.239462,-0.001011,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000023,0.000013,0.000076,0.000592,0.000592,0.000276,0.238585,-0.000877,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000022,0.000012,0.000076,0.000507,0.000507,0.000266,0.237807,-0.000777,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000021,0.000012,0.000075,0.000388,0.000388,0.000257,0.237162,-0.000645,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000021,0.000011,0.000075,0.000237,0.000237,0.000247,0.236679,-0.000483,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000020,0.000011,0.000075,0.000091,0.000091,0.000239,0.236348,-0.000331,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000019,0.000011,0.000075,0.000000,0.000000,0.000230,0.236113,-0.000235,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000019,0.000011,0.000075,0.000000,0.000000,0.000222,0.235882,-0.000231,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000018,0.000010,0.000076,0.000000,0.000000,0.000215,0.235656,-0.000226,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000017,0.000010,0.000076,0.000000,0.000000,0.000208,0.235434,-0.000222,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000017,0.000010,0.000076,0.000000,0.000000,0.000201,0.235217,-0.000217,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000016,0.000010,0.000076,0.000000,0.000000,0.000195,0.235004,-0.000213,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000016,0.000010,0.000076,0.000000,0.000000,0.000189,0.234796,-0.000209,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000015,0.000009,0.000076,0.000000,0.000000,0.000183,0.234591,-0.000204,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000015,0.000009,0.000077,0.000000,0.000000,0.000177,0.234391,-0.000200,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000014,0.000009,0.000077,0.000000,0.000000,0.000172,0.234194,-0.000196,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000014,0.000009,0.000077,0.000000,0.000000,0.000167,0.234002,-0.000192,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000014,0.000009,0.000077,0.000001,0.000001,0.000162,0.233813,-0.000189,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000013,0.000008,0.000078,0.000154,0.000154,0.000157,0.233477,-0.000336,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000013,0.000008,0.000078,0.000414,0.000414,0.000153,0.232893,-0.000583,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000012,0.000007,0.000078,0.000597,0.000597,0.000147,0.232142,-0.000751,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000012,0.000006,0.000078,0.000735,0.000735,0.000142,0.231271,-0.000872,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000011,0.000006,0.000079,0.000742,0.000742,0.000136,0.230409,-0.000861,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000011,0.000005,0.000079,0.000707,0.000707,0.000130,0.229662,-0.000748,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000010,0.000004,0.000079,0.000608,0.000608,0.000124,0.229026,-0.000635,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000010,0.000004,0.000079,0.000517,0.000517,0.000118,0.228492,-0.000534,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000009,0.000003,0.000079,0.000455,0.000455,0.000112,0.228030,-0.000462,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000009,0.000003,0.000079,0.000349,0.000349,0.000106,0.227680,-0.000350,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000008,0.000003,0.000080,0.000210,0.000210,0.000100,0.227474,-0.000207,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000363,0.000002,0.000004,0.000002,0.000072,0.000008,0.000003,0.000082,0.000085,0.000085,0.000095,0.227684,0.000210,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000553,0.000010,0.000015,0.000010,0.000072,0.000008,0.000003,0.000090,0.000000,0.000000,0.000091,0.228148,0.000464,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000500,0.000012,0.000013,0.000012,0.000073,0.000007,0.000004,0.000092,0.000000,0.000000,0.000088,0.228554,0.000406,1.000000,0.000009 +124,2022-08-06 04:00:00,0.000461,0.000012,0.000011,0.000012,0.000074,0.000007,0.000004,0.000093,0.000000,0.000000,0.000085,0.228915,0.000361,1.000000,0.000007 +125,2022-08-06 05:00:00,0.000441,0.000011,0.000010,0.000011,0.000074,0.000007,0.000004,0.000092,0.000000,0.000000,0.000082,0.229251,0.000335,1.000000,0.000007 +126,2022-08-06 06:00:00,0.000441,0.000010,0.000010,0.000010,0.000075,0.000007,0.000005,0.000092,0.000000,0.000000,0.000080,0.229579,0.000329,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000076,0.000007,0.000005,0.000087,0.000000,0.000000,0.000078,0.229479,-0.000100,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000076,0.000006,0.000005,0.000085,0.000000,0.000000,0.000077,0.229381,-0.000098,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000004,0.000083,0.000000,0.000000,0.000075,0.229284,-0.000096,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000006,0.000004,0.000084,0.000000,0.000000,0.000073,0.229190,-0.000094,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000006,0.000004,0.000084,0.000000,0.000000,0.000071,0.229097,-0.000093,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000004,0.000084,0.000000,0.000000,0.000070,0.229007,-0.000091,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000006,0.000004,0.000085,0.000000,0.000000,0.000068,0.228918,-0.000089,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000006,0.000004,0.000085,0.000135,0.000135,0.000067,0.228699,-0.000219,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000086,0.000393,0.000393,0.000065,0.228230,-0.000468,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000005,0.000003,0.000086,0.000576,0.000576,0.000062,0.227592,-0.000638,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000005,0.000002,0.000087,0.000719,0.000719,0.000059,0.226827,-0.000766,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000005,0.000001,0.000087,0.000827,0.000827,0.000056,0.225971,-0.000855,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000001,0.000087,0.000799,0.000799,0.000052,0.225160,-0.000812,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000000,0.000087,0.000698,0.000698,0.000048,0.224462,-0.000698,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000000,0.000088,0.000596,0.000595,0.000045,0.223866,-0.000595,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000000,0.000088,0.000510,0.000507,0.000041,0.223359,-0.000507,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000000,0.000088,0.000388,0.000384,0.000038,0.222975,-0.000384,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000003,0.000000,0.000089,0.000231,0.000228,0.000035,0.222747,-0.000228,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000003,0.000000,0.000089,0.000078,0.000076,0.000032,0.222670,-0.000076,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000089,0.000000,0.000000,0.000030,0.222670,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000090,0.000000,0.000000,0.000028,0.222670,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000000,0.000000,0.000025,0.222670,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000000,0.000000,0.000024,0.222670,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000091,0.000000,0.000000,0.000022,0.222670,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000091,0.000000,0.000000,0.000020,0.222670,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000091,0.000000,0.000000,0.000019,0.222670,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000092,0.000000,0.000000,0.000017,0.222670,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000016,0.222670,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000093,0.000000,0.000000,0.000015,0.222670,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000000,0.000000,0.000013,0.222670,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000094,0.000000,0.000000,0.000012,0.222670,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000134,0.000132,0.000011,0.222539,-0.000132,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000394,0.000388,0.000011,0.222151,-0.000388,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000578,0.000567,0.000010,0.221583,-0.000567,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000720,0.000703,0.000009,0.220880,-0.000703,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000811,0.000788,0.000008,0.220092,-0.000788,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000775,0.000748,0.000008,0.219344,-0.000748,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000096,0.000671,0.000645,0.000007,0.218699,-0.000645,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000597,0.000570,0.000007,0.218129,-0.000570,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000097,0.000508,0.000483,0.000006,0.217645,-0.000483,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000098,0.000388,0.000367,0.000006,0.217278,-0.000367,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000201,0.000190,0.000005,0.217088,-0.000190,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000041,0.000038,0.000005,0.217050,-0.000038,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000004,0.217050,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000004,0.217050,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000004,0.217050,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000003,0.217050,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000000,0.000000,0.000003,0.217050,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000003,0.217050,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000102,0.000000,0.000000,0.000003,0.217050,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000003,0.217050,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000002,0.217050,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000002,0.217050,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000002,0.217050,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000002,0.217050,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000113,0.000106,0.000002,0.216943,-0.000106,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000379,0.000357,0.000002,0.216586,-0.000357,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000567,0.000532,0.000001,0.216054,-0.000532,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000709,0.000663,0.000001,0.215391,-0.000663,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000831,0.000773,0.000001,0.214618,-0.000773,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000781,0.000721,0.000001,0.213897,-0.000721,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000690,0.000634,0.000001,0.213263,-0.000634,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000609,0.000556,0.000001,0.212707,-0.000556,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000503,0.000458,0.000001,0.212249,-0.000458,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000108,0.000382,0.000346,0.000001,0.211903,-0.000346,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000224,0.000202,0.000001,0.211701,-0.000202,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000062,0.000056,0.000001,0.211645,-0.000056,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000001,0.211645,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000001,0.211645,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000000,0.000000,0.000001,0.211645,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000001,0.211645,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.211645,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000123,0.000111,0.000000,0.211534,-0.000111,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620747.csv b/test/channel_loss/channel_forcing/et/cat-2620747.csv new file mode 100644 index 000000000..0822930bb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620747.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000115,0.000000,0.000000,0.000000,0.000000,0.000825,0.000176,0.000825,0.000192,0.000192,0.009113,0.372094,-0.002776,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000767,0.000173,0.000767,0.000063,0.000063,0.008518,0.369391,-0.002703,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000714,0.000169,0.000714,0.000000,0.000000,0.007973,0.366807,-0.002584,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000666,0.000165,0.000666,0.000000,0.000000,0.007472,0.364279,-0.002529,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000622,0.000162,0.000622,0.000000,0.000000,0.007012,0.361804,-0.002475,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000158,0.000583,0.000000,0.000000,0.006588,0.359382,-0.002422,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000546,0.000155,0.000546,0.000000,0.000000,0.006197,0.357012,-0.002370,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000512,0.000152,0.000513,0.000000,0.000000,0.005836,0.354692,-0.002320,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000482,0.000148,0.000482,0.000000,0.000000,0.005503,0.352422,-0.002270,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000453,0.000145,0.000454,0.000000,0.000000,0.005195,0.350201,-0.002222,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000427,0.000142,0.000428,0.000000,0.000000,0.004909,0.348027,-0.002174,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000403,0.000139,0.000405,0.000000,0.000000,0.004645,0.345899,-0.002128,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000381,0.000136,0.000383,0.000000,0.000000,0.004400,0.343816,-0.002082,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000361,0.000133,0.000362,0.000000,0.000000,0.004173,0.341778,-0.002038,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000342,0.000130,0.000344,0.000144,0.000144,0.003961,0.339643,-0.002136,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000324,0.000127,0.000326,0.000392,0.000392,0.003764,0.337310,-0.002333,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000308,0.000123,0.000310,0.000570,0.000570,0.003579,0.334853,-0.002457,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000292,0.000120,0.000295,0.000701,0.000701,0.003407,0.332320,-0.002533,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000278,0.000116,0.000281,0.000620,0.000620,0.003245,0.329921,-0.002399,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000394,0.000000,0.000000,0.000000,0.000003,0.000265,0.000114,0.000268,0.000601,0.000601,0.003094,0.327977,-0.001944,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000356,0.000000,0.000000,0.000000,0.000004,0.000252,0.000111,0.000256,0.000514,0.000514,0.002952,0.326122,-0.001855,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000400,0.000000,0.000000,0.000000,0.000004,0.000241,0.000109,0.000245,0.000396,0.000396,0.002820,0.324466,-0.001656,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000362,0.000000,0.000000,0.000000,0.000004,0.000230,0.000106,0.000234,0.000344,0.000344,0.002696,0.322859,-0.001608,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000379,0.000000,0.000001,0.000000,0.000005,0.000220,0.000104,0.000225,0.000261,0.000261,0.002580,0.321383,-0.001476,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000356,0.000001,0.000001,0.000001,0.000005,0.000210,0.000102,0.000216,0.000179,0.000179,0.002472,0.319995,-0.001388,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000632,0.000008,0.000013,0.000008,0.000006,0.000202,0.000101,0.000215,0.000083,0.000083,0.002371,0.318990,-0.001005,1.000000,0.000006 +26,2022-08-02 02:00:00,0.000929,0.000024,0.000037,0.000024,0.000006,0.000194,0.000100,0.000223,0.000000,0.000000,0.002278,0.318355,-0.000635,1.000000,0.000019 +27,2022-08-02 03:00:00,0.000954,0.000033,0.000039,0.000033,0.000006,0.000186,0.000099,0.000225,0.000000,0.000000,0.002191,0.317756,-0.000599,1.000000,0.000025 +28,2022-08-02 04:00:00,0.001028,0.000041,0.000045,0.000041,0.000007,0.000179,0.000098,0.000227,0.000000,0.000000,0.002110,0.317237,-0.000520,1.000000,0.000028 +29,2022-08-02 05:00:00,0.000997,0.000042,0.000042,0.000042,0.000007,0.000173,0.000097,0.000222,0.000000,0.000000,0.002035,0.316701,-0.000536,1.000000,0.000028 +30,2022-08-02 06:00:00,0.000974,0.000041,0.000040,0.000041,0.000008,0.000166,0.000097,0.000215,0.000000,0.000000,0.001965,0.316155,-0.000546,1.000000,0.000026 +31,2022-08-02 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000008,0.000161,0.000095,0.000187,0.000000,0.000000,0.001899,0.314707,-0.001448,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000009,0.000155,0.000093,0.000172,0.000000,0.000000,0.001836,0.313291,-0.001417,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000150,0.000091,0.000159,0.000000,0.000000,0.001777,0.311904,-0.001387,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000145,0.000089,0.000155,0.000000,0.000000,0.001720,0.310547,-0.001357,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000141,0.000087,0.000151,0.000000,0.000000,0.001666,0.309219,-0.001328,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000136,0.000085,0.000147,0.000000,0.000000,0.001615,0.307919,-0.001300,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000000,0.000000,0.000011,0.000132,0.000083,0.000143,0.000000,0.000000,0.001566,0.306744,-0.001175,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000109,0.000000,0.000000,0.000000,0.000012,0.000128,0.000081,0.000140,0.000126,0.000126,0.001519,0.305481,-0.001264,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000109,0.000000,0.000000,0.000000,0.000012,0.000124,0.000079,0.000137,0.000339,0.000339,0.001474,0.304035,-0.001445,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000121,0.000077,0.000133,0.000487,0.000487,0.001431,0.302468,-0.001568,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000013,0.000117,0.000075,0.000130,0.000596,0.000596,0.001388,0.300827,-0.001641,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000421,0.000000,0.000000,0.000000,0.000014,0.000114,0.000073,0.000127,0.000674,0.000674,0.001348,0.299459,-0.001368,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000110,0.000071,0.000124,0.000589,0.000589,0.001308,0.297791,-0.001668,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000107,0.000068,0.000122,0.000563,0.000563,0.001270,0.296184,-0.001607,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000104,0.000066,0.000119,0.000533,0.000533,0.001232,0.294641,-0.001543,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000101,0.000064,0.000117,0.000462,0.000462,0.001195,0.293200,-0.001441,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000098,0.000062,0.000114,0.000351,0.000351,0.001160,0.291898,-0.001302,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000095,0.000061,0.000112,0.000212,0.000212,0.001126,0.290761,-0.001137,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000018,0.000092,0.000059,0.000110,0.000056,0.000056,0.001093,0.289801,-0.000960,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000018,0.000089,0.000058,0.000107,0.000000,0.000000,0.001062,0.288917,-0.000884,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000019,0.000087,0.000057,0.000106,0.000000,0.000000,0.001032,0.288051,-0.000865,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000084,0.000055,0.000104,0.000000,0.000000,0.001003,0.287203,-0.000848,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000020,0.000082,0.000054,0.000102,0.000000,0.000000,0.000975,0.286374,-0.000829,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000080,0.000053,0.000100,0.000000,0.000000,0.000949,0.285562,-0.000812,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000077,0.000052,0.000099,0.000000,0.000000,0.000923,0.284767,-0.000795,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000075,0.000051,0.000097,0.000000,0.000000,0.000899,0.283989,-0.000778,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000073,0.000050,0.000096,0.000000,0.000000,0.000875,0.283227,-0.000761,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000071,0.000049,0.000095,0.000000,0.000000,0.000852,0.282482,-0.000745,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000070,0.000048,0.000093,0.000000,0.000000,0.000830,0.281753,-0.000729,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000068,0.000047,0.000092,0.000000,0.000000,0.000809,0.281039,-0.000714,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000066,0.000046,0.000091,0.000000,0.000000,0.000789,0.280341,-0.000698,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000064,0.000044,0.000090,0.000142,0.000142,0.000769,0.279518,-0.000823,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000063,0.000043,0.000089,0.000406,0.000406,0.000749,0.278455,-0.001063,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000061,0.000041,0.000088,0.000582,0.000582,0.000729,0.277242,-0.001213,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000059,0.000039,0.000087,0.000709,0.000709,0.000709,0.275931,-0.001311,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000058,0.000038,0.000086,0.000723,0.000723,0.000689,0.274634,-0.001297,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000056,0.000036,0.000085,0.000676,0.000676,0.000669,0.273411,-0.001223,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000570,0.000000,0.000000,0.000000,0.000029,0.000054,0.000035,0.000084,0.000598,0.000598,0.000649,0.272848,-0.000563,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000161,0.000000,0.000000,0.000000,0.000030,0.000053,0.000034,0.000083,0.000528,0.000528,0.000630,0.271965,-0.000883,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000051,0.000032,0.000082,0.000450,0.000450,0.000611,0.271020,-0.000945,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000050,0.000031,0.000081,0.000346,0.000346,0.000593,0.270196,-0.000824,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000048,0.000030,0.000080,0.000220,0.000220,0.000575,0.269514,-0.000682,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000047,0.000029,0.000079,0.000071,0.000071,0.000558,0.268992,-0.000522,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000045,0.000029,0.000078,0.000000,0.000000,0.000542,0.268551,-0.000441,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000044,0.000028,0.000078,0.000000,0.000000,0.000526,0.268119,-0.000432,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000043,0.000028,0.000077,0.000000,0.000000,0.000511,0.267696,-0.000423,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000041,0.000027,0.000077,0.000000,0.000000,0.000496,0.267282,-0.000414,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000040,0.000026,0.000076,0.000000,0.000000,0.000482,0.266877,-0.000405,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000039,0.000026,0.000075,0.000000,0.000000,0.000469,0.266481,-0.000396,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000038,0.000025,0.000075,0.000000,0.000000,0.000456,0.266093,-0.000388,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000037,0.000025,0.000075,0.000000,0.000000,0.000444,0.265714,-0.000380,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000036,0.000024,0.000074,0.000000,0.000000,0.000432,0.265342,-0.000371,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000035,0.000024,0.000074,0.000000,0.000000,0.000421,0.264979,-0.000364,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000034,0.000023,0.000074,0.000000,0.000000,0.000410,0.264623,-0.000356,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000033,0.000023,0.000073,0.000000,0.000000,0.000399,0.264275,-0.000348,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000032,0.000022,0.000073,0.000137,0.000137,0.000389,0.263800,-0.000475,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000041,0.000032,0.000021,0.000073,0.000404,0.000404,0.000378,0.263076,-0.000724,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000031,0.000020,0.000073,0.000576,0.000576,0.000367,0.262197,-0.000879,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000030,0.000018,0.000072,0.000704,0.000704,0.000356,0.261212,-0.000985,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000029,0.000017,0.000072,0.000810,0.000810,0.000344,0.260144,-0.001068,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000028,0.000015,0.000071,0.000760,0.000760,0.000332,0.259148,-0.000996,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000027,0.000014,0.000071,0.000661,0.000661,0.000320,0.258270,-0.000878,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000026,0.000013,0.000071,0.000572,0.000572,0.000307,0.257498,-0.000772,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000025,0.000012,0.000070,0.000492,0.000492,0.000295,0.256821,-0.000677,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000024,0.000011,0.000070,0.000373,0.000373,0.000282,0.256274,-0.000547,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000023,0.000011,0.000069,0.000227,0.000227,0.000271,0.255882,-0.000392,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000022,0.000010,0.000069,0.000080,0.000080,0.000259,0.255642,-0.000240,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000021,0.000010,0.000069,0.000000,0.000000,0.000249,0.255485,-0.000157,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000020,0.000010,0.000069,0.000000,0.000000,0.000239,0.255332,-0.000153,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000019,0.000010,0.000068,0.000000,0.000000,0.000230,0.255182,-0.000150,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000018,0.000010,0.000068,0.000000,0.000000,0.000221,0.255036,-0.000147,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000018,0.000009,0.000068,0.000000,0.000000,0.000212,0.254892,-0.000144,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000017,0.000009,0.000068,0.000000,0.000000,0.000205,0.254751,-0.000141,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000016,0.000009,0.000068,0.000000,0.000000,0.000197,0.254614,-0.000138,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000016,0.000009,0.000068,0.000000,0.000000,0.000190,0.254479,-0.000135,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000015,0.000009,0.000068,0.000000,0.000000,0.000183,0.254348,-0.000132,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000015,0.000008,0.000068,0.000000,0.000000,0.000177,0.254219,-0.000129,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000014,0.000008,0.000068,0.000000,0.000000,0.000171,0.254092,-0.000126,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000014,0.000008,0.000068,0.000000,0.000000,0.000165,0.253969,-0.000123,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000013,0.000008,0.000068,0.000149,0.000149,0.000160,0.253703,-0.000266,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000013,0.000007,0.000068,0.000406,0.000406,0.000154,0.253190,-0.000512,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000012,0.000006,0.000068,0.000582,0.000582,0.000148,0.252516,-0.000674,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000012,0.000005,0.000068,0.000708,0.000708,0.000141,0.251733,-0.000783,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000011,0.000004,0.000068,0.000706,0.000706,0.000133,0.250970,-0.000764,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000055,0.000000,0.000000,0.000000,0.000058,0.000010,0.000003,0.000068,0.000659,0.000659,0.000126,0.250322,-0.000648,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000055,0.000000,0.000000,0.000000,0.000058,0.000010,0.000002,0.000068,0.000576,0.000576,0.000118,0.249769,-0.000552,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000059,0.000009,0.000001,0.000068,0.000498,0.000498,0.000110,0.249304,-0.000465,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000059,0.000009,0.000001,0.000068,0.000450,0.000450,0.000103,0.248905,-0.000399,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000060,0.000008,0.000000,0.000068,0.000340,0.000340,0.000095,0.248621,-0.000284,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000060,0.000007,0.000000,0.000068,0.000207,0.000207,0.000088,0.248474,-0.000148,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000299,0.000001,0.000002,0.000001,0.000061,0.000007,0.000001,0.000069,0.000077,0.000077,0.000082,0.248686,0.000212,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000378,0.000003,0.000005,0.000003,0.000062,0.000006,0.000001,0.000071,0.000000,0.000000,0.000076,0.249043,0.000357,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000371,0.000005,0.000005,0.000005,0.000062,0.000006,0.000002,0.000073,0.000000,0.000000,0.000072,0.249385,0.000342,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000336,0.000005,0.000004,0.000005,0.000063,0.000006,0.000002,0.000073,0.000000,0.000000,0.000068,0.249686,0.000301,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000326,0.000004,0.000004,0.000004,0.000063,0.000005,0.000002,0.000073,0.000000,0.000000,0.000065,0.249971,0.000285,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000333,0.000004,0.000004,0.000004,0.000064,0.000005,0.000003,0.000073,0.000000,0.000000,0.000063,0.250258,0.000287,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000064,0.000005,0.000003,0.000071,0.000000,0.000000,0.000060,0.250216,-0.000042,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000065,0.000005,0.000003,0.000070,0.000000,0.000000,0.000058,0.250175,-0.000041,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000005,0.000003,0.000070,0.000000,0.000000,0.000056,0.250136,-0.000040,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000005,0.000003,0.000070,0.000000,0.000000,0.000054,0.250097,-0.000039,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000004,0.000002,0.000070,0.000000,0.000000,0.000052,0.250058,-0.000038,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000004,0.000002,0.000071,0.000000,0.000000,0.000051,0.250021,-0.000037,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000004,0.000002,0.000071,0.000000,0.000000,0.000049,0.249984,-0.000037,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000004,0.000002,0.000072,0.000129,0.000129,0.000047,0.249822,-0.000162,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000004,0.000002,0.000072,0.000387,0.000387,0.000045,0.249410,-0.000411,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000004,0.000001,0.000072,0.000561,0.000561,0.000042,0.248838,-0.000572,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000003,0.000000,0.000072,0.000688,0.000688,0.000039,0.248150,-0.000688,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000000,0.000073,0.000775,0.000774,0.000036,0.247376,-0.000774,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000000,0.000073,0.000743,0.000738,0.000033,0.246638,-0.000738,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000003,0.000000,0.000073,0.000654,0.000647,0.000031,0.245992,-0.000647,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000000,0.000073,0.000574,0.000565,0.000028,0.245427,-0.000565,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000002,0.000000,0.000074,0.000491,0.000482,0.000026,0.244945,-0.000482,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000000,0.000074,0.000371,0.000363,0.000024,0.244582,-0.000363,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000002,0.000000,0.000074,0.000219,0.000214,0.000022,0.244368,-0.000214,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000074,0.000069,0.000067,0.000021,0.244301,-0.000067,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000002,0.000000,0.000075,0.000000,0.000000,0.000019,0.244301,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000018,0.244301,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000000,0.000000,0.000016,0.244301,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000076,0.000000,0.000000,0.000015,0.244301,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000014,0.244301,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000000,0.000000,0.000013,0.244301,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000000,0.000000,0.000012,0.244301,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000001,0.000000,0.000077,0.000000,0.000000,0.000011,0.244301,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000077,0.000000,0.000000,0.000010,0.244301,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000000,0.000000,0.000009,0.244301,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000001,0.000000,0.000078,0.000000,0.000000,0.000009,0.244301,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000000,0.000000,0.000008,0.244301,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000001,0.000000,0.000079,0.000129,0.000126,0.000007,0.244175,-0.000126,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000079,0.000389,0.000379,0.000007,0.243796,-0.000379,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000001,0.000000,0.000080,0.000565,0.000548,0.000006,0.243248,-0.000548,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000080,0.000694,0.000671,0.000006,0.242577,-0.000671,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000766,0.000738,0.000005,0.241839,-0.000738,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000081,0.000717,0.000687,0.000005,0.241153,-0.000687,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000629,0.000600,0.000005,0.240553,-0.000600,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000566,0.000537,0.000004,0.240015,-0.000537,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000082,0.000487,0.000461,0.000004,0.239554,-0.000461,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000369,0.000348,0.000004,0.239206,-0.000348,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000191,0.000180,0.000003,0.239026,-0.000180,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000036,0.000033,0.000003,0.238993,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000003,0.238993,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000000,0.000000,0.000003,0.238993,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000085,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000086,0.000000,0.000000,0.000002,0.238993,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000001,0.238993,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000000,0.000000,0.000001,0.238993,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.238993,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.238993,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000109,0.000102,0.000001,0.238892,-0.000101,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000088,0.000375,0.000352,0.000001,0.238541,-0.000350,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000555,0.000520,0.000001,0.238022,-0.000519,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000685,0.000639,0.000001,0.237383,-0.000639,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000089,0.000788,0.000733,0.000001,0.236651,-0.000733,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000738,0.000682,0.000001,0.235969,-0.000682,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000651,0.000598,0.000001,0.235370,-0.000598,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000584,0.000535,0.000001,0.234835,-0.000535,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000487,0.000445,0.000001,0.234390,-0.000445,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000365,0.000332,0.000001,0.234058,-0.000332,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000212,0.000192,0.000000,0.233866,-0.000192,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000052,0.000047,0.000000,0.233820,-0.000047,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000000,0.233820,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000117,0.000106,0.000000,0.233713,-0.000106,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620748.csv b/test/channel_loss/channel_forcing/et/cat-2620748.csv new file mode 100644 index 000000000..d61e56021 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620748.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000000,0.000817,0.000085,0.000817,0.000182,0.000182,0.009030,0.373808,-0.003044,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000752,0.000083,0.000752,0.000061,0.000061,0.008361,0.370828,-0.002980,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000693,0.000082,0.000693,0.000000,0.000000,0.007751,0.367966,-0.002862,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000639,0.000080,0.000639,0.000000,0.000000,0.007192,0.365159,-0.002807,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000591,0.000079,0.000591,0.000000,0.000000,0.006679,0.362407,-0.002752,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000547,0.000077,0.000547,0.000000,0.000000,0.006209,0.359708,-0.002699,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000507,0.000076,0.000507,0.000000,0.000000,0.005778,0.357062,-0.002646,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000470,0.000074,0.000471,0.000000,0.000000,0.005382,0.354467,-0.002595,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000437,0.000073,0.000438,0.000000,0.000000,0.005017,0.351922,-0.002545,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000407,0.000071,0.000408,0.000000,0.000000,0.004682,0.349427,-0.002495,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000379,0.000070,0.000380,0.000000,0.000000,0.004373,0.346980,-0.002447,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000353,0.000069,0.000355,0.000000,0.000000,0.004089,0.344581,-0.002399,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000330,0.000067,0.000331,0.000000,0.000000,0.003826,0.342228,-0.002353,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000308,0.000066,0.000310,0.000000,0.000000,0.003584,0.339921,-0.002307,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000288,0.000065,0.000290,0.000142,0.000142,0.003360,0.337520,-0.002401,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000270,0.000063,0.000273,0.000378,0.000378,0.003153,0.334933,-0.002587,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000253,0.000062,0.000256,0.000552,0.000552,0.002962,0.332226,-0.002707,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000238,0.000060,0.000241,0.000681,0.000681,0.002784,0.329445,-0.002781,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000223,0.000059,0.000227,0.000599,0.000599,0.002619,0.326799,-0.002646,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000434,0.000000,0.000000,0.000000,0.000004,0.000210,0.000057,0.000214,0.000580,0.000580,0.002467,0.324649,-0.002151,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000340,0.000000,0.000000,0.000000,0.000004,0.000198,0.000056,0.000202,0.000496,0.000496,0.002325,0.322529,-0.002119,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000401,0.000000,0.000000,0.000000,0.000005,0.000186,0.000055,0.000191,0.000388,0.000388,0.002194,0.320618,-0.001911,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000345,0.000000,0.000000,0.000000,0.000005,0.000176,0.000054,0.000181,0.000325,0.000325,0.002072,0.318750,-0.001869,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000394,0.000001,0.000002,0.000001,0.000006,0.000166,0.000053,0.000173,0.000252,0.000252,0.001959,0.317036,-0.001714,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000340,0.000002,0.000003,0.000002,0.000006,0.000157,0.000052,0.000165,0.000173,0.000173,0.001854,0.315379,-0.001657,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000660,0.000019,0.000032,0.000019,0.000006,0.000149,0.000051,0.000174,0.000078,0.000078,0.001757,0.314132,-0.001247,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000988,0.000058,0.000090,0.000058,0.000007,0.000141,0.000051,0.000206,0.000000,0.000000,0.001667,0.313251,-0.000881,1.000000,0.000047 +27,2022-08-02 03:00:00,0.000990,0.000078,0.000090,0.000078,0.000007,0.000134,0.000050,0.000220,0.000000,0.000000,0.001584,0.312389,-0.000862,1.000000,0.000058 +28,2022-08-02 04:00:00,0.000967,0.000088,0.000086,0.000088,0.000008,0.000127,0.000050,0.000223,0.000000,0.000000,0.001507,0.311525,-0.000864,1.000000,0.000057 +29,2022-08-02 05:00:00,0.000996,0.000089,0.000091,0.000089,0.000008,0.000121,0.000049,0.000219,0.000000,0.000000,0.001435,0.310701,-0.000824,1.000000,0.000058 +30,2022-08-02 06:00:00,0.000960,0.000086,0.000084,0.000086,0.000009,0.000115,0.000049,0.000211,0.000000,0.000000,0.001369,0.309864,-0.000837,1.000000,0.000056 +31,2022-08-02 07:00:00,0.000000,0.000039,0.000000,0.000039,0.000009,0.000110,0.000048,0.000159,0.000000,0.000000,0.001307,0.308185,-0.001679,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000010,0.000105,0.000047,0.000132,0.000000,0.000000,0.001249,0.306539,-0.001646,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000100,0.000046,0.000111,0.000000,0.000000,0.001194,0.304925,-0.001614,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000096,0.000045,0.000107,0.000000,0.000000,0.001143,0.303342,-0.001583,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000092,0.000044,0.000104,0.000000,0.000000,0.001096,0.301790,-0.001552,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000088,0.000044,0.000101,0.000000,0.000000,0.001051,0.300268,-0.001522,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000013,0.000085,0.000043,0.000098,0.000000,0.000000,0.001009,0.298872,-0.001395,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000193,0.000000,0.000000,0.000000,0.000014,0.000081,0.000042,0.000095,0.000126,0.000126,0.000970,0.297472,-0.001400,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000193,0.000000,0.000000,0.000000,0.000014,0.000078,0.000041,0.000093,0.000327,0.000327,0.000932,0.295903,-0.001569,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000127,0.000000,0.000000,0.000000,0.000015,0.000075,0.000040,0.000090,0.000473,0.000473,0.000897,0.294155,-0.001748,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000015,0.000072,0.000039,0.000088,0.000578,0.000578,0.000864,0.292313,-0.001842,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000313,0.000000,0.000000,0.000000,0.000016,0.000070,0.000038,0.000086,0.000655,0.000655,0.000832,0.290639,-0.001674,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000067,0.000037,0.000084,0.000592,0.000592,0.000802,0.288752,-0.001887,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000065,0.000036,0.000082,0.000546,0.000546,0.000773,0.286948,-0.001805,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000017,0.000000,0.000000,0.000000,0.000018,0.000062,0.000035,0.000081,0.000519,0.000519,0.000746,0.285221,-0.001727,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000017,0.000000,0.000000,0.000000,0.000019,0.000060,0.000034,0.000079,0.000445,0.000445,0.000719,0.283600,-0.001621,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000019,0.000058,0.000033,0.000078,0.000340,0.000340,0.000694,0.282126,-0.001475,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000017,0.000000,0.000000,0.000000,0.000020,0.000056,0.000033,0.000076,0.000204,0.000204,0.000671,0.280801,-0.001325,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000050,0.000000,0.000000,0.000000,0.000021,0.000054,0.000032,0.000075,0.000054,0.000054,0.000648,0.279682,-0.001119,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000050,0.000000,0.000000,0.000000,0.000022,0.000052,0.000031,0.000074,0.000000,0.000000,0.000627,0.278639,-0.001044,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000050,0.000000,0.000000,0.000000,0.000022,0.000051,0.000031,0.000073,0.000000,0.000000,0.000607,0.277615,-0.001023,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000029,0.000000,0.000000,0.000000,0.000023,0.000049,0.000030,0.000072,0.000000,0.000000,0.000588,0.276590,-0.001025,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000050,0.000000,0.000000,0.000000,0.000024,0.000048,0.000030,0.000072,0.000000,0.000000,0.000570,0.275607,-0.000984,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000029,0.000000,0.000000,0.000000,0.000024,0.000046,0.000029,0.000071,0.000000,0.000000,0.000553,0.274621,-0.000986,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000045,0.000028,0.000070,0.000000,0.000000,0.000536,0.273626,-0.000995,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000044,0.000028,0.000069,0.000000,0.000000,0.000521,0.272651,-0.000975,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000042,0.000027,0.000069,0.000000,0.000000,0.000506,0.271694,-0.000956,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000041,0.000027,0.000068,0.000000,0.000000,0.000491,0.270756,-0.000938,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000040,0.000026,0.000068,0.000000,0.000000,0.000478,0.269837,-0.000920,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000039,0.000026,0.000068,0.000000,0.000000,0.000465,0.268935,-0.000902,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000038,0.000025,0.000067,0.000000,0.000000,0.000452,0.268050,-0.000884,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000037,0.000025,0.000067,0.000137,0.000137,0.000440,0.267049,-0.001002,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000036,0.000024,0.000067,0.000392,0.000392,0.000428,0.265817,-0.001232,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000035,0.000023,0.000067,0.000560,0.000560,0.000417,0.264444,-0.001372,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000034,0.000022,0.000066,0.000689,0.000689,0.000405,0.262972,-0.001472,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000033,0.000022,0.000066,0.000698,0.000698,0.000394,0.261519,-0.001453,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000019,0.000000,0.000000,0.000000,0.000034,0.000032,0.000021,0.000066,0.000637,0.000637,0.000383,0.260172,-0.001347,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000333,0.000000,0.000000,0.000000,0.000035,0.000031,0.000020,0.000066,0.000577,0.000577,0.000372,0.259219,-0.000953,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000116,0.000000,0.000000,0.000000,0.000036,0.000030,0.000020,0.000066,0.000513,0.000513,0.000362,0.258133,-0.001085,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000017,0.000000,0.000000,0.000000,0.000036,0.000029,0.000019,0.000066,0.000427,0.000427,0.000351,0.257056,-0.001077,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000029,0.000019,0.000066,0.000331,0.000331,0.000341,0.256078,-0.000979,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000028,0.000018,0.000066,0.000212,0.000212,0.000332,0.255235,-0.000843,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000027,0.000018,0.000066,0.000070,0.000070,0.000322,0.254547,-0.000687,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000026,0.000017,0.000066,0.000000,0.000000,0.000314,0.253942,-0.000605,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000025,0.000017,0.000066,0.000000,0.000000,0.000305,0.253349,-0.000593,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000025,0.000017,0.000066,0.000000,0.000000,0.000297,0.252767,-0.000582,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000024,0.000016,0.000066,0.000000,0.000000,0.000289,0.252197,-0.000570,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000024,0.000016,0.000066,0.000000,0.000000,0.000282,0.251637,-0.000559,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000023,0.000016,0.000066,0.000000,0.000000,0.000274,0.251089,-0.000549,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000022,0.000015,0.000066,0.000000,0.000000,0.000267,0.250551,-0.000538,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000022,0.000015,0.000067,0.000000,0.000000,0.000261,0.250023,-0.000527,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000021,0.000015,0.000067,0.000000,0.000000,0.000254,0.249506,-0.000517,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000021,0.000015,0.000067,0.000000,0.000000,0.000248,0.248999,-0.000507,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000020,0.000014,0.000067,0.000000,0.000000,0.000242,0.248501,-0.000497,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000020,0.000014,0.000068,0.000000,0.000000,0.000236,0.248014,-0.000488,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000019,0.000014,0.000068,0.000133,0.000133,0.000231,0.247405,-0.000609,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000019,0.000013,0.000068,0.000387,0.000387,0.000225,0.246559,-0.000846,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000018,0.000013,0.000069,0.000559,0.000559,0.000219,0.245561,-0.000998,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000018,0.000012,0.000069,0.000681,0.000681,0.000214,0.244463,-0.001098,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000017,0.000011,0.000069,0.000792,0.000792,0.000208,0.243278,-0.001186,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000017,0.000011,0.000069,0.000715,0.000715,0.000201,0.242191,-0.001087,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000016,0.000010,0.000070,0.000638,0.000638,0.000195,0.241200,-0.000991,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000016,0.000010,0.000070,0.000561,0.000561,0.000189,0.240304,-0.000896,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000015,0.000009,0.000070,0.000479,0.000479,0.000183,0.239505,-0.000798,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000015,0.000009,0.000070,0.000363,0.000363,0.000177,0.238837,-0.000669,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000014,0.000008,0.000071,0.000219,0.000219,0.000171,0.238322,-0.000515,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000008,0.000071,0.000075,0.000075,0.000166,0.237958,-0.000364,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000013,0.000008,0.000071,0.000000,0.000000,0.000160,0.237675,-0.000283,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000155,0.237398,-0.000278,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000151,0.237126,-0.000272,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000012,0.000008,0.000072,0.000000,0.000000,0.000146,0.236859,-0.000267,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000012,0.000007,0.000073,0.000000,0.000000,0.000142,0.236597,-0.000262,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000007,0.000073,0.000000,0.000000,0.000138,0.236340,-0.000257,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000007,0.000073,0.000000,0.000000,0.000134,0.236089,-0.000252,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000011,0.000007,0.000074,0.000000,0.000000,0.000130,0.235842,-0.000247,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000011,0.000007,0.000074,0.000000,0.000000,0.000126,0.235600,-0.000242,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000010,0.000007,0.000075,0.000000,0.000000,0.000123,0.235363,-0.000237,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000010,0.000007,0.000075,0.000000,0.000000,0.000119,0.235130,-0.000233,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000010,0.000007,0.000076,0.000000,0.000000,0.000116,0.234902,-0.000228,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000009,0.000006,0.000076,0.000145,0.000145,0.000113,0.234536,-0.000366,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000009,0.000006,0.000077,0.000389,0.000389,0.000110,0.233937,-0.000598,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000009,0.000006,0.000077,0.000563,0.000563,0.000107,0.233180,-0.000757,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000009,0.000005,0.000077,0.000688,0.000688,0.000103,0.232315,-0.000865,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000008,0.000005,0.000078,0.000689,0.000689,0.000099,0.231466,-0.000849,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000017,0.000000,0.000000,0.000000,0.000070,0.000008,0.000004,0.000078,0.000631,0.000631,0.000096,0.230706,-0.000760,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000071,0.000008,0.000004,0.000079,0.000561,0.000561,0.000092,0.230030,-0.000676,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000033,0.000000,0.000000,0.000000,0.000072,0.000007,0.000003,0.000079,0.000485,0.000485,0.000088,0.229458,-0.000573,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000072,0.000007,0.000003,0.000079,0.000440,0.000440,0.000084,0.228965,-0.000493,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000073,0.000007,0.000003,0.000080,0.000331,0.000331,0.000080,0.228589,-0.000377,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000058,0.000000,0.000000,0.000000,0.000074,0.000006,0.000003,0.000080,0.000201,0.000201,0.000077,0.228347,-0.000242,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000216,0.000001,0.000002,0.000001,0.000074,0.000006,0.000003,0.000081,0.000076,0.000076,0.000073,0.228386,0.000039,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000316,0.000005,0.000008,0.000005,0.000075,0.000006,0.000003,0.000086,0.000000,0.000000,0.000071,0.228591,0.000204,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000279,0.000006,0.000006,0.000006,0.000076,0.000006,0.000003,0.000087,0.000000,0.000000,0.000068,0.228756,0.000166,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000210,0.000005,0.000004,0.000005,0.000076,0.000005,0.000003,0.000087,0.000000,0.000000,0.000066,0.228854,0.000098,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000297,0.000006,0.000007,0.000006,0.000077,0.000005,0.000003,0.000089,0.000000,0.000000,0.000063,0.229032,0.000178,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000207,0.000005,0.000004,0.000005,0.000078,0.000005,0.000003,0.000087,0.000000,0.000000,0.000062,0.229121,0.000089,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000078,0.000005,0.000003,0.000086,0.000000,0.000000,0.000060,0.229010,-0.000111,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000079,0.000005,0.000003,0.000085,0.000000,0.000000,0.000058,0.228901,-0.000109,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000084,0.000000,0.000000,0.000056,0.228793,-0.000107,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000000,0.000000,0.000055,0.228688,-0.000105,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000003,0.000085,0.000000,0.000000,0.000053,0.228585,-0.000103,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000003,0.000086,0.000000,0.000000,0.000052,0.228484,-0.000101,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000003,0.000086,0.000000,0.000000,0.000051,0.228385,-0.000099,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000003,0.000087,0.000127,0.000127,0.000049,0.228163,-0.000222,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000002,0.000087,0.000368,0.000368,0.000048,0.227709,-0.000454,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000002,0.000088,0.000539,0.000539,0.000046,0.227096,-0.000612,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000004,0.000002,0.000088,0.000668,0.000668,0.000044,0.226369,-0.000728,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000001,0.000089,0.000746,0.000746,0.000042,0.225579,-0.000790,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000003,0.000001,0.000089,0.000708,0.000708,0.000039,0.224842,-0.000737,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000003,0.000000,0.000090,0.000633,0.000633,0.000037,0.224193,-0.000649,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000003,0.000000,0.000090,0.000565,0.000565,0.000034,0.223623,-0.000569,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000003,0.000000,0.000090,0.000481,0.000481,0.000031,0.223142,-0.000481,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000091,0.000364,0.000363,0.000029,0.222779,-0.000363,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000091,0.000218,0.000216,0.000027,0.222563,-0.000216,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000092,0.000067,0.000066,0.000025,0.222497,-0.000066,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000092,0.000000,0.000000,0.000023,0.222497,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000092,0.000000,0.000000,0.000021,0.222497,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000000,0.000000,0.000019,0.222497,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000000,0.000000,0.000018,0.222497,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000094,0.000000,0.000000,0.000017,0.222497,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000000,0.000000,0.000015,0.222497,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000000,0.000000,0.000014,0.222497,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000000,0.000000,0.000013,0.222497,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000012,0.222497,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000011,0.222497,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000010,0.222497,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000009,0.222497,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000126,0.000125,0.000009,0.222372,-0.000125,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000371,0.000367,0.000008,0.222004,-0.000367,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000540,0.000534,0.000007,0.221471,-0.000534,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000672,0.000661,0.000007,0.220810,-0.000661,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000099,0.000736,0.000719,0.000006,0.220090,-0.000719,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000690,0.000670,0.000006,0.219421,-0.000670,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000617,0.000596,0.000005,0.218825,-0.000596,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000546,0.000524,0.000005,0.218301,-0.000524,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000472,0.000450,0.000005,0.217851,-0.000450,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000102,0.000356,0.000339,0.000004,0.217512,-0.000339,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000183,0.000173,0.000004,0.217339,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000035,0.000033,0.000004,0.217305,-0.000033,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000003,0.217305,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000003,0.217305,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000003,0.217305,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.217305,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000002,0.217305,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000001,0.217305,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000109,0.000105,0.000100,0.000001,0.217206,-0.000100,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000357,0.000337,0.000001,0.216869,-0.000337,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000533,0.000502,0.000001,0.216367,-0.000502,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000662,0.000620,0.000001,0.215747,-0.000620,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000768,0.000715,0.000001,0.215031,-0.000715,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000705,0.000653,0.000001,0.214379,-0.000653,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000637,0.000586,0.000001,0.213793,-0.000586,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000569,0.000520,0.000001,0.213273,-0.000520,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000470,0.000427,0.000001,0.212845,-0.000427,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000351,0.000318,0.000001,0.212527,-0.000318,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000201,0.000181,0.000001,0.212346,-0.000181,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000048,0.000043,0.000001,0.212302,-0.000043,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.212302,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000117,0.000105,0.000000,0.212197,-0.000105,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620749.csv b/test/channel_loss/channel_forcing/et/cat-2620749.csv new file mode 100644 index 000000000..46420f204 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620749.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000100,0.000000,0.000000,0.000000,0.000000,0.000828,0.000214,0.000828,0.000203,0.000203,0.009145,0.372346,-0.002586,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000209,0.000773,0.000072,0.000072,0.008581,0.369848,-0.002498,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000723,0.000204,0.000723,0.000000,0.000000,0.008062,0.367477,-0.002371,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000199,0.000677,0.000000,0.000000,0.007584,0.365160,-0.002317,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000195,0.000635,0.000000,0.000000,0.007144,0.362895,-0.002265,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000191,0.000597,0.000000,0.000000,0.006738,0.360680,-0.002214,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000561,0.000186,0.000562,0.000000,0.000000,0.006363,0.358516,-0.002164,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000529,0.000182,0.000530,0.000000,0.000000,0.006016,0.356401,-0.002115,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000499,0.000178,0.000500,0.000000,0.000000,0.005695,0.354333,-0.002068,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000472,0.000174,0.000473,0.000000,0.000000,0.005397,0.352312,-0.002021,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000447,0.000170,0.000447,0.000000,0.000000,0.005120,0.350337,-0.001975,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000423,0.000166,0.000424,0.000000,0.000000,0.004863,0.348406,-0.001931,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000401,0.000162,0.000403,0.000000,0.000000,0.004624,0.346519,-0.001887,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000381,0.000159,0.000383,0.000000,0.000000,0.004401,0.344674,-0.001845,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000363,0.000155,0.000364,0.000152,0.000152,0.004193,0.342722,-0.001952,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000345,0.000151,0.000347,0.000393,0.000393,0.003999,0.340578,-0.002143,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000329,0.000146,0.000331,0.000570,0.000570,0.003816,0.338310,-0.002268,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000314,0.000141,0.000316,0.000720,0.000720,0.003644,0.335946,-0.002364,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000299,0.000137,0.000302,0.000670,0.000670,0.003482,0.333686,-0.002261,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000385,0.000000,0.000000,0.000000,0.000003,0.000286,0.000133,0.000289,0.000632,0.000632,0.003329,0.331889,-0.001797,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000453,0.000000,0.000000,0.000000,0.000003,0.000273,0.000130,0.000276,0.000555,0.000555,0.003187,0.330275,-0.001614,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000521,0.000000,0.000000,0.000000,0.000004,0.000261,0.000127,0.000265,0.000439,0.000439,0.003053,0.328876,-0.001399,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000574,0.000001,0.000001,0.000001,0.000004,0.000250,0.000125,0.000255,0.000373,0.000373,0.002927,0.327624,-0.001252,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000560,0.000002,0.000003,0.000002,0.000004,0.000240,0.000123,0.000246,0.000287,0.000287,0.002810,0.326470,-0.001154,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000564,0.000003,0.000005,0.000003,0.000005,0.000230,0.000121,0.000238,0.000192,0.000192,0.002700,0.325436,-0.001034,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000900,0.000013,0.000021,0.000013,0.000005,0.000221,0.000119,0.000240,0.000092,0.000092,0.002598,0.324836,-0.000600,1.000000,0.000011 +26,2022-08-02 02:00:00,0.000883,0.000020,0.000026,0.000020,0.000005,0.000213,0.000118,0.000239,0.000000,0.000000,0.002503,0.324318,-0.000518,1.000000,0.000016 +27,2022-08-02 03:00:00,0.000872,0.000024,0.000025,0.000024,0.000006,0.000206,0.000117,0.000235,0.000000,0.000000,0.002415,0.323802,-0.000516,1.000000,0.000016 +28,2022-08-02 04:00:00,0.000876,0.000025,0.000025,0.000025,0.000006,0.000198,0.000116,0.000230,0.000000,0.000000,0.002333,0.323301,-0.000501,1.000000,0.000016 +29,2022-08-02 05:00:00,0.000883,0.000025,0.000025,0.000025,0.000006,0.000192,0.000115,0.000223,0.000000,0.000000,0.002257,0.322819,-0.000483,1.000000,0.000016 +30,2022-08-02 06:00:00,0.000900,0.000026,0.000026,0.000026,0.000007,0.000186,0.000114,0.000218,0.000000,0.000000,0.002186,0.322362,-0.000456,1.000000,0.000017 +31,2022-08-02 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000007,0.000180,0.000112,0.000199,0.000000,0.000000,0.002118,0.321062,-0.001300,1.000000,0.000005 +32,2022-08-02 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000008,0.000174,0.000109,0.000187,0.000000,0.000000,0.002053,0.319792,-0.001271,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000169,0.000107,0.000177,0.000000,0.000000,0.001991,0.318550,-0.001242,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000164,0.000104,0.000172,0.000000,0.000000,0.001932,0.317336,-0.001214,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000159,0.000102,0.000168,0.000000,0.000000,0.001875,0.316149,-0.001187,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000154,0.000100,0.000163,0.000000,0.000000,0.001821,0.314989,-0.001160,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000150,0.000098,0.000159,0.000000,0.000000,0.001769,0.313856,-0.001134,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000145,0.000095,0.000156,0.000130,0.000130,0.001719,0.312620,-0.001235,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000141,0.000092,0.000152,0.000336,0.000336,0.001670,0.311211,-0.001409,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000137,0.000089,0.000148,0.000486,0.000486,0.001622,0.309688,-0.001524,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000133,0.000086,0.000145,0.000612,0.000612,0.001575,0.308076,-0.001612,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000129,0.000083,0.000141,0.000718,0.000718,0.001529,0.306396,-0.001680,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000125,0.000080,0.000138,0.000686,0.000686,0.001483,0.304786,-0.001610,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000121,0.000077,0.000134,0.000618,0.000618,0.001439,0.303278,-0.001507,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000118,0.000074,0.000131,0.000556,0.000556,0.001395,0.301866,-0.001413,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000114,0.000071,0.000128,0.000471,0.000471,0.001352,0.300567,-0.001298,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000110,0.000069,0.000125,0.000362,0.000362,0.001310,0.299405,-0.001162,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000107,0.000067,0.000122,0.000219,0.000219,0.001270,0.298408,-0.000997,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000104,0.000065,0.000119,0.000067,0.000067,0.001232,0.297583,-0.000826,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000101,0.000064,0.000117,0.000000,0.000000,0.001195,0.296842,-0.000741,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000098,0.000062,0.000114,0.000000,0.000000,0.001160,0.296117,-0.000724,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000095,0.000061,0.000112,0.000000,0.000000,0.001126,0.295409,-0.000708,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000092,0.000060,0.000110,0.000000,0.000000,0.001094,0.294717,-0.000692,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000089,0.000058,0.000108,0.000000,0.000000,0.001063,0.294041,-0.000676,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000087,0.000057,0.000106,0.000000,0.000000,0.001033,0.293380,-0.000661,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000084,0.000056,0.000104,0.000000,0.000000,0.001004,0.292733,-0.000646,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000082,0.000054,0.000102,0.000000,0.000000,0.000976,0.292102,-0.000632,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000080,0.000053,0.000100,0.000000,0.000000,0.000950,0.291484,-0.000617,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000078,0.000052,0.000099,0.000000,0.000000,0.000924,0.290881,-0.000604,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000075,0.000051,0.000097,0.000000,0.000000,0.000899,0.290291,-0.000590,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000073,0.000050,0.000095,0.000000,0.000000,0.000876,0.289714,-0.000577,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000072,0.000048,0.000094,0.000148,0.000148,0.000852,0.289006,-0.000708,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000070,0.000046,0.000093,0.000398,0.000398,0.000829,0.288069,-0.000937,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000068,0.000044,0.000091,0.000574,0.000574,0.000806,0.286982,-0.001087,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000066,0.000042,0.000090,0.000726,0.000726,0.000782,0.285770,-0.001212,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000064,0.000039,0.000088,0.000774,0.000774,0.000758,0.284538,-0.001231,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000061,0.000037,0.000087,0.000737,0.000737,0.000733,0.283371,-0.001167,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000059,0.000035,0.000085,0.000658,0.000658,0.000709,0.282307,-0.001064,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000057,0.000033,0.000084,0.000562,0.000562,0.000685,0.281361,-0.000946,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000055,0.000031,0.000082,0.000478,0.000478,0.000661,0.280518,-0.000843,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000053,0.000030,0.000081,0.000366,0.000366,0.000637,0.279804,-0.000714,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000051,0.000029,0.000079,0.000227,0.000227,0.000615,0.279243,-0.000562,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000050,0.000028,0.000078,0.000083,0.000083,0.000593,0.278834,-0.000408,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000048,0.000027,0.000077,0.000000,0.000000,0.000573,0.278516,-0.000318,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000046,0.000027,0.000076,0.000000,0.000000,0.000553,0.278205,-0.000311,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000045,0.000026,0.000075,0.000000,0.000000,0.000534,0.277901,-0.000304,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000043,0.000026,0.000074,0.000000,0.000000,0.000517,0.277604,-0.000297,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000042,0.000025,0.000073,0.000000,0.000000,0.000500,0.277313,-0.000290,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000040,0.000024,0.000072,0.000000,0.000000,0.000484,0.277029,-0.000284,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000039,0.000024,0.000071,0.000000,0.000000,0.000469,0.276752,-0.000278,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000038,0.000023,0.000071,0.000000,0.000000,0.000454,0.276481,-0.000271,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000037,0.000023,0.000070,0.000000,0.000000,0.000440,0.276215,-0.000265,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000036,0.000022,0.000070,0.000000,0.000000,0.000427,0.275956,-0.000259,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000035,0.000022,0.000069,0.000000,0.000000,0.000414,0.275703,-0.000253,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000034,0.000021,0.000069,0.000000,0.000000,0.000402,0.275455,-0.000248,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000033,0.000021,0.000068,0.000143,0.000143,0.000390,0.275073,-0.000382,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000032,0.000019,0.000068,0.000394,0.000394,0.000378,0.274455,-0.000618,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000030,0.000018,0.000067,0.000574,0.000574,0.000365,0.273675,-0.000780,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000029,0.000016,0.000066,0.000723,0.000723,0.000351,0.272766,-0.000909,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000028,0.000014,0.000066,0.000863,0.000863,0.000337,0.271741,-0.001025,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000027,0.000012,0.000065,0.000829,0.000829,0.000322,0.270773,-0.000969,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000026,0.000010,0.000064,0.000713,0.000713,0.000307,0.269940,-0.000833,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000024,0.000009,0.000064,0.000591,0.000591,0.000292,0.269245,-0.000695,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000023,0.000008,0.000063,0.000506,0.000506,0.000276,0.268648,-0.000597,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000022,0.000007,0.000062,0.000388,0.000388,0.000261,0.268180,-0.000468,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000021,0.000006,0.000061,0.000233,0.000233,0.000247,0.267874,-0.000306,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000019,0.000006,0.000061,0.000091,0.000091,0.000234,0.267714,-0.000160,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000018,0.000006,0.000060,0.000000,0.000000,0.000221,0.267646,-0.000067,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000017,0.000006,0.000060,0.000000,0.000000,0.000209,0.267581,-0.000066,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000017,0.000006,0.000059,0.000000,0.000000,0.000198,0.267516,-0.000064,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000016,0.000005,0.000059,0.000000,0.000000,0.000188,0.267453,-0.000063,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000015,0.000005,0.000059,0.000000,0.000000,0.000178,0.267392,-0.000062,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000014,0.000005,0.000058,0.000000,0.000000,0.000169,0.267332,-0.000060,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000013,0.000005,0.000058,0.000000,0.000000,0.000161,0.267273,-0.000059,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000013,0.000005,0.000058,0.000000,0.000000,0.000153,0.267215,-0.000057,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000012,0.000005,0.000058,0.000000,0.000000,0.000146,0.267159,-0.000056,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000012,0.000005,0.000058,0.000000,0.000000,0.000139,0.267104,-0.000055,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000011,0.000005,0.000058,0.000000,0.000000,0.000133,0.267050,-0.000054,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000011,0.000005,0.000058,0.000003,0.000003,0.000127,0.266995,-0.000055,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000010,0.000004,0.000058,0.000157,0.000157,0.000121,0.266791,-0.000205,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000010,0.000003,0.000058,0.000399,0.000399,0.000114,0.266354,-0.000437,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000009,0.000002,0.000057,0.000578,0.000578,0.000107,0.265752,-0.000602,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000008,0.000001,0.000057,0.000728,0.000728,0.000100,0.265017,-0.000735,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000008,0.000000,0.000057,0.000749,0.000749,0.000092,0.264268,-0.000749,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000052,0.000000,0.000000,0.000000,0.000050,0.000007,0.000000,0.000057,0.000718,0.000716,0.000085,0.263604,-0.000664,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000052,0.000000,0.000000,0.000000,0.000050,0.000007,0.000000,0.000057,0.000620,0.000616,0.000078,0.263040,-0.000564,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000051,0.000006,0.000000,0.000057,0.000528,0.000523,0.000072,0.262571,-0.000468,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000055,0.000000,0.000000,0.000000,0.000051,0.000006,0.000000,0.000057,0.000451,0.000446,0.000067,0.262181,-0.000391,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000055,0.000000,0.000000,0.000000,0.000052,0.000005,0.000000,0.000057,0.000346,0.000342,0.000062,0.261894,-0.000287,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000052,0.000000,0.000000,0.000000,0.000052,0.000005,0.000000,0.000057,0.000209,0.000207,0.000057,0.261739,-0.000155,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000249,0.000000,0.000001,0.000000,0.000053,0.000004,0.000000,0.000057,0.000088,0.000088,0.000053,0.261899,0.000160,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000314,0.000002,0.000003,0.000002,0.000053,0.000004,0.000000,0.000059,0.000000,0.000000,0.000049,0.262211,0.000311,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000313,0.000002,0.000003,0.000002,0.000053,0.000004,0.000000,0.000060,0.000000,0.000000,0.000045,0.262521,0.000310,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000321,0.000003,0.000003,0.000003,0.000054,0.000003,0.000000,0.000060,0.000000,0.000000,0.000041,0.262839,0.000318,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000308,0.000003,0.000003,0.000003,0.000054,0.000003,0.000000,0.000060,0.000000,0.000000,0.000038,0.263145,0.000306,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000329,0.000003,0.000003,0.000003,0.000055,0.000003,0.000000,0.000061,0.000000,0.000000,0.000035,0.263470,0.000325,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000055,0.000003,0.000000,0.000059,0.000000,0.000000,0.000033,0.263470,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000055,0.000002,0.000000,0.000059,0.000000,0.000000,0.000030,0.263470,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000002,0.000000,0.000058,0.000000,0.000000,0.000028,0.263470,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000002,0.000000,0.000058,0.000000,0.000000,0.000026,0.263470,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000002,0.000000,0.000059,0.000000,0.000000,0.000024,0.263470,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000002,0.000000,0.000059,0.000000,0.000000,0.000022,0.263470,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000002,0.000000,0.000059,0.000000,0.000000,0.000020,0.263470,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000002,0.000000,0.000059,0.000138,0.000137,0.000019,0.263333,-0.000137,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000060,0.000384,0.000380,0.000017,0.262953,-0.000380,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000561,0.000556,0.000016,0.262397,-0.000556,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000711,0.000702,0.000015,0.261696,-0.000702,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000061,0.000835,0.000820,0.000013,0.260876,-0.000820,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000812,0.000794,0.000012,0.260082,-0.000794,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000001,0.000000,0.000061,0.000716,0.000697,0.000011,0.259385,-0.000697,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000061,0.000599,0.000581,0.000011,0.258805,-0.000581,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000062,0.000510,0.000492,0.000010,0.258313,-0.000492,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000062,0.000389,0.000374,0.000009,0.257939,-0.000374,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000062,0.000232,0.000223,0.000008,0.257716,-0.000223,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000080,0.000077,0.000008,0.257639,-0.000077,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000000,0.000000,0.000007,0.257639,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000001,0.000000,0.000063,0.000000,0.000000,0.000007,0.257639,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000001,0.000000,0.000064,0.000000,0.000000,0.000006,0.257639,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000006,0.257639,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000005,0.257639,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000000,0.000000,0.000005,0.257639,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000004,0.257639,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000004,0.257639,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000066,0.000000,0.000000,0.000004,0.257639,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000003,0.257639,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000003,0.257639,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000000,0.000000,0.000003,0.257639,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000136,0.000130,0.000003,0.257509,-0.000130,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000380,0.000364,0.000003,0.257145,-0.000364,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000558,0.000534,0.000002,0.256612,-0.000534,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000709,0.000675,0.000002,0.255937,-0.000675,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000811,0.000770,0.000002,0.255167,-0.000770,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000782,0.000738,0.000002,0.254429,-0.000738,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000692,0.000650,0.000002,0.253779,-0.000650,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000591,0.000554,0.000002,0.253225,-0.000554,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000503,0.000469,0.000001,0.252756,-0.000469,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000070,0.000381,0.000355,0.000001,0.252401,-0.000355,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000199,0.000184,0.000001,0.252217,-0.000184,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000042,0.000039,0.000001,0.252178,-0.000039,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000001,0.252178,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.252178,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.252178,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000115,0.000107,0.000000,0.252071,-0.000107,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000367,0.000339,0.000000,0.251732,-0.000339,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000549,0.000508,0.000000,0.251224,-0.000508,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000703,0.000647,0.000000,0.250577,-0.000647,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000841,0.000772,0.000000,0.249806,-0.000772,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000796,0.000726,0.000000,0.249079,-0.000726,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000711,0.000646,0.000000,0.248433,-0.000646,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000604,0.000547,0.000000,0.247886,-0.000547,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000505,0.000455,0.000000,0.247431,-0.000455,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000383,0.000345,0.000000,0.247086,-0.000345,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000221,0.000198,0.000000,0.246889,-0.000198,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000064,0.000058,0.000000,0.246831,-0.000058,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000000,0.246831,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000127,0.000114,0.000000,0.246717,-0.000114,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620750.csv b/test/channel_loss/channel_forcing/et/cat-2620750.csv new file mode 100644 index 000000000..da698bf78 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620750.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000151,0.000000,0.000000,0.000000,0.000000,0.000828,0.000212,0.000828,0.000198,0.000198,0.009145,0.372819,-0.002327,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000207,0.000773,0.000068,0.000068,0.008579,0.370525,-0.002294,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000722,0.000202,0.000722,0.000000,0.000000,0.008058,0.368352,-0.002173,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000676,0.000197,0.000676,0.000000,0.000000,0.007579,0.366229,-0.002123,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000634,0.000192,0.000634,0.000000,0.000000,0.007137,0.364156,-0.002073,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000596,0.000188,0.000596,0.000000,0.000000,0.006730,0.362131,-0.002025,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000560,0.000184,0.000561,0.000000,0.000000,0.006353,0.360153,-0.001978,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000528,0.000179,0.000528,0.000000,0.000000,0.006004,0.358221,-0.001932,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000498,0.000175,0.000499,0.000000,0.000000,0.005681,0.356334,-0.001887,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000471,0.000171,0.000471,0.000000,0.000000,0.005382,0.354492,-0.001843,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000445,0.000167,0.000446,0.000000,0.000000,0.005104,0.352692,-0.001800,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000422,0.000163,0.000422,0.000000,0.000000,0.004846,0.350934,-0.001758,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000400,0.000159,0.000401,0.000000,0.000000,0.004605,0.349217,-0.001717,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000380,0.000156,0.000381,0.000000,0.000000,0.004381,0.347540,-0.001677,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000361,0.000152,0.000362,0.000150,0.000150,0.004172,0.345756,-0.001784,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000343,0.000147,0.000345,0.000397,0.000397,0.003977,0.343772,-0.001984,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000327,0.000143,0.000329,0.000579,0.000579,0.003792,0.341657,-0.002115,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000311,0.000138,0.000313,0.000722,0.000722,0.003619,0.339451,-0.002206,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000297,0.000133,0.000299,0.000647,0.000647,0.003455,0.337371,-0.002081,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000341,0.000000,0.000000,0.000000,0.000003,0.000283,0.000129,0.000286,0.000615,0.000615,0.003302,0.335702,-0.001668,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000003,0.000270,0.000126,0.000273,0.000536,0.000536,0.003157,0.334125,-0.001577,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000345,0.000000,0.000000,0.000000,0.000003,0.000258,0.000123,0.000262,0.000427,0.000427,0.003022,0.332720,-0.001405,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000316,0.000000,0.000000,0.000000,0.000004,0.000247,0.000120,0.000251,0.000361,0.000361,0.002894,0.331383,-0.001337,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000340,0.000000,0.000000,0.000000,0.000004,0.000237,0.000117,0.000241,0.000277,0.000277,0.002775,0.330182,-0.001201,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000316,0.000000,0.000001,0.000000,0.000004,0.000227,0.000115,0.000231,0.000187,0.000187,0.002662,0.329074,-0.001108,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000583,0.000004,0.000008,0.000004,0.000004,0.000218,0.000113,0.000227,0.000089,0.000089,0.002558,0.328342,-0.000732,1.000000,0.000003 +26,2022-08-02 02:00:00,0.000827,0.000013,0.000021,0.000013,0.000005,0.000209,0.000112,0.000228,0.000000,0.000000,0.002461,0.327939,-0.000403,1.000000,0.000011 +27,2022-08-02 03:00:00,0.000869,0.000019,0.000023,0.000019,0.000005,0.000202,0.000111,0.000226,0.000000,0.000000,0.002370,0.327585,-0.000354,1.000000,0.000014 +28,2022-08-02 04:00:00,0.000872,0.000023,0.000023,0.000023,0.000005,0.000194,0.000111,0.000222,0.000000,0.000000,0.002287,0.327241,-0.000344,1.000000,0.000015 +29,2022-08-02 05:00:00,0.000913,0.000024,0.000025,0.000024,0.000006,0.000188,0.000110,0.000218,0.000000,0.000000,0.002209,0.326943,-0.000298,1.000000,0.000016 +30,2022-08-02 06:00:00,0.000876,0.000024,0.000023,0.000024,0.000006,0.000181,0.000109,0.000211,0.000000,0.000000,0.002137,0.326619,-0.000325,1.000000,0.000016 +31,2022-08-02 07:00:00,0.000000,0.000011,0.000000,0.000011,0.000007,0.000175,0.000107,0.000193,0.000000,0.000000,0.002069,0.325468,-0.001150,1.000000,0.000005 +32,2022-08-02 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000007,0.000170,0.000104,0.000181,0.000000,0.000000,0.002003,0.324345,-0.001123,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000164,0.000102,0.000172,0.000000,0.000000,0.001941,0.323248,-0.001097,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000159,0.000099,0.000167,0.000000,0.000000,0.001881,0.322176,-0.001072,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000154,0.000097,0.000162,0.000000,0.000000,0.001824,0.321129,-0.001047,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000150,0.000095,0.000158,0.000000,0.000000,0.001769,0.320107,-0.001022,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000040,0.000000,0.000000,0.000000,0.000009,0.000145,0.000093,0.000154,0.000000,0.000000,0.001717,0.319147,-0.000960,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000046,0.000000,0.000000,0.000000,0.000009,0.000141,0.000090,0.000150,0.000129,0.000129,0.001666,0.318090,-0.001057,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000046,0.000000,0.000000,0.000000,0.000010,0.000137,0.000088,0.000146,0.000342,0.000342,0.001617,0.316850,-0.001240,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000046,0.000000,0.000000,0.000000,0.000010,0.000133,0.000085,0.000143,0.000496,0.000496,0.001570,0.315488,-0.001362,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000046,0.000000,0.000000,0.000000,0.000011,0.000128,0.000081,0.000139,0.000613,0.000613,0.001523,0.314044,-0.001444,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000137,0.000000,0.000000,0.000000,0.000011,0.000125,0.000078,0.000135,0.000701,0.000701,0.001476,0.312636,-0.001408,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000121,0.000075,0.000132,0.000651,0.000651,0.001431,0.311175,-0.001461,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000117,0.000072,0.000129,0.000592,0.000592,0.001386,0.309807,-0.001368,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000113,0.000069,0.000125,0.000547,0.000547,0.001342,0.308514,-0.001292,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000109,0.000067,0.000122,0.000470,0.000470,0.001300,0.307327,-0.001187,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000106,0.000064,0.000119,0.000361,0.000361,0.001258,0.306274,-0.001053,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000102,0.000062,0.000116,0.000217,0.000217,0.001218,0.305385,-0.000888,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000099,0.000061,0.000113,0.000062,0.000062,0.001179,0.304669,-0.000716,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000096,0.000059,0.000111,0.000000,0.000000,0.001142,0.304030,-0.000639,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000093,0.000058,0.000108,0.000000,0.000000,0.001107,0.303406,-0.000624,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000090,0.000057,0.000106,0.000000,0.000000,0.001074,0.302797,-0.000609,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000087,0.000055,0.000103,0.000000,0.000000,0.001041,0.302202,-0.000595,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000085,0.000054,0.000101,0.000000,0.000000,0.001011,0.301620,-0.000581,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000082,0.000053,0.000099,0.000000,0.000000,0.000981,0.301052,-0.000568,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000080,0.000051,0.000097,0.000000,0.000000,0.000952,0.300498,-0.000555,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000078,0.000050,0.000095,0.000000,0.000000,0.000925,0.299956,-0.000542,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000075,0.000049,0.000094,0.000000,0.000000,0.000899,0.299427,-0.000529,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000073,0.000048,0.000092,0.000000,0.000000,0.000873,0.298911,-0.000517,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000071,0.000047,0.000090,0.000000,0.000000,0.000849,0.298406,-0.000505,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000069,0.000046,0.000089,0.000000,0.000000,0.000826,0.297913,-0.000493,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000067,0.000044,0.000087,0.000144,0.000144,0.000803,0.297291,-0.000622,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000065,0.000042,0.000086,0.000408,0.000408,0.000780,0.296426,-0.000865,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000063,0.000040,0.000085,0.000588,0.000588,0.000757,0.295405,-0.001021,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000061,0.000038,0.000083,0.000728,0.000728,0.000733,0.294270,-0.001134,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000059,0.000035,0.000081,0.000756,0.000756,0.000709,0.293136,-0.001135,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000057,0.000033,0.000080,0.000715,0.000715,0.000684,0.292068,-0.001068,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000212,0.000000,0.000000,0.000000,0.000023,0.000055,0.000031,0.000078,0.000633,0.000633,0.000660,0.291311,-0.000757,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000024,0.000053,0.000029,0.000077,0.000548,0.000548,0.000636,0.290504,-0.000807,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000051,0.000028,0.000075,0.000465,0.000465,0.000613,0.289741,-0.000763,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000049,0.000026,0.000074,0.000357,0.000357,0.000589,0.289102,-0.000640,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000047,0.000025,0.000072,0.000224,0.000224,0.000567,0.288607,-0.000495,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000046,0.000024,0.000071,0.000077,0.000077,0.000546,0.288267,-0.000340,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000044,0.000024,0.000070,0.000000,0.000000,0.000526,0.288010,-0.000257,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000042,0.000023,0.000069,0.000000,0.000000,0.000507,0.287760,-0.000251,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000041,0.000023,0.000068,0.000000,0.000000,0.000489,0.287515,-0.000245,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000039,0.000022,0.000067,0.000000,0.000000,0.000471,0.287276,-0.000239,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000038,0.000022,0.000066,0.000000,0.000000,0.000455,0.287043,-0.000233,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000037,0.000021,0.000065,0.000000,0.000000,0.000439,0.286815,-0.000228,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000035,0.000021,0.000064,0.000000,0.000000,0.000425,0.286592,-0.000223,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000034,0.000020,0.000064,0.000000,0.000000,0.000411,0.286374,-0.000218,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000033,0.000020,0.000063,0.000000,0.000000,0.000397,0.286162,-0.000212,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000032,0.000019,0.000062,0.000000,0.000000,0.000384,0.285954,-0.000208,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000031,0.000019,0.000062,0.000000,0.000000,0.000372,0.285752,-0.000203,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000030,0.000018,0.000061,0.000000,0.000000,0.000360,0.285554,-0.000198,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000029,0.000018,0.000061,0.000140,0.000140,0.000349,0.285224,-0.000330,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000028,0.000016,0.000060,0.000406,0.000406,0.000337,0.284642,-0.000582,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000027,0.000015,0.000060,0.000585,0.000585,0.000325,0.283899,-0.000743,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000026,0.000013,0.000059,0.000721,0.000721,0.000311,0.283040,-0.000859,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000025,0.000011,0.000058,0.000848,0.000848,0.000297,0.282077,-0.000963,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000024,0.000009,0.000057,0.000801,0.000801,0.000282,0.281182,-0.000895,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000022,0.000007,0.000057,0.000690,0.000690,0.000267,0.280417,-0.000765,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000021,0.000006,0.000056,0.000585,0.000585,0.000252,0.279772,-0.000645,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000020,0.000004,0.000055,0.000502,0.000502,0.000236,0.279223,-0.000549,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000018,0.000003,0.000054,0.000383,0.000383,0.000221,0.278803,-0.000420,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000017,0.000003,0.000053,0.000233,0.000233,0.000207,0.278540,-0.000263,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000016,0.000003,0.000053,0.000086,0.000086,0.000193,0.278427,-0.000114,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000015,0.000003,0.000052,0.000000,0.000000,0.000181,0.278399,-0.000027,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000014,0.000002,0.000052,0.000000,0.000000,0.000169,0.278373,-0.000027,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000013,0.000002,0.000051,0.000000,0.000000,0.000158,0.278347,-0.000026,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000012,0.000002,0.000051,0.000000,0.000000,0.000148,0.278321,-0.000025,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000012,0.000002,0.000050,0.000000,0.000000,0.000139,0.278296,-0.000025,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000011,0.000002,0.000050,0.000000,0.000000,0.000130,0.278272,-0.000024,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000002,0.000050,0.000000,0.000000,0.000122,0.278249,-0.000024,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000002,0.000050,0.000000,0.000000,0.000115,0.278225,-0.000023,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000009,0.000002,0.000049,0.000000,0.000000,0.000108,0.278203,-0.000023,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000008,0.000002,0.000049,0.000000,0.000000,0.000102,0.278181,-0.000022,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000008,0.000002,0.000049,0.000000,0.000000,0.000096,0.278159,-0.000022,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000008,0.000002,0.000049,0.000000,0.000000,0.000090,0.278138,-0.000021,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000007,0.000002,0.000049,0.000153,0.000153,0.000085,0.277968,-0.000170,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000007,0.000001,0.000049,0.000407,0.000407,0.000079,0.277554,-0.000414,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000006,0.000000,0.000049,0.000591,0.000591,0.000073,0.276963,-0.000591,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000006,0.000000,0.000049,0.000728,0.000726,0.000067,0.276237,-0.000726,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000005,0.000000,0.000049,0.000733,0.000729,0.000062,0.275508,-0.000729,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000054,0.000000,0.000000,0.000000,0.000044,0.000005,0.000000,0.000049,0.000694,0.000688,0.000057,0.274874,-0.000633,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000054,0.000000,0.000000,0.000000,0.000044,0.000004,0.000000,0.000049,0.000603,0.000595,0.000053,0.274333,-0.000541,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000045,0.000004,0.000000,0.000049,0.000516,0.000509,0.000049,0.273879,-0.000454,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000045,0.000004,0.000000,0.000049,0.000454,0.000446,0.000045,0.273495,-0.000383,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000346,0.000340,0.000042,0.273219,-0.000277,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000208,0.000205,0.000038,0.273077,-0.000141,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000302,0.000001,0.000001,0.000001,0.000046,0.000003,0.000000,0.000050,0.000083,0.000083,0.000035,0.273295,0.000217,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000319,0.000002,0.000003,0.000002,0.000047,0.000003,0.000000,0.000051,0.000000,0.000000,0.000033,0.273611,0.000316,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000417,0.000004,0.000005,0.000004,0.000047,0.000003,0.000000,0.000053,0.000000,0.000000,0.000030,0.274023,0.000413,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000413,0.000004,0.000005,0.000004,0.000047,0.000002,0.000000,0.000054,0.000000,0.000000,0.000028,0.274431,0.000408,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000421,0.000005,0.000005,0.000005,0.000048,0.000002,0.000000,0.000055,0.000000,0.000000,0.000026,0.274848,0.000417,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000422,0.000005,0.000005,0.000005,0.000048,0.000002,0.000000,0.000055,0.000000,0.000000,0.000024,0.275265,0.000417,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000049,0.000002,0.000000,0.000053,0.000000,0.000000,0.000022,0.275265,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000049,0.000002,0.000000,0.000052,0.000000,0.000000,0.000020,0.275265,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000002,0.000000,0.000051,0.000000,0.000000,0.000019,0.275265,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000000,0.000000,0.000017,0.275265,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000000,0.000000,0.000016,0.275265,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000052,0.000000,0.000000,0.000015,0.275265,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000014,0.275265,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000134,0.000132,0.000013,0.275133,-0.000132,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000387,0.000383,0.000012,0.274750,-0.000383,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000567,0.000559,0.000011,0.274191,-0.000559,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000709,0.000697,0.000010,0.273494,-0.000697,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000806,0.000789,0.000009,0.272704,-0.000789,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000053,0.000779,0.000760,0.000008,0.271945,-0.000760,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000688,0.000668,0.000008,0.271277,-0.000668,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000591,0.000572,0.000007,0.270705,-0.000572,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000054,0.000504,0.000486,0.000007,0.270219,-0.000486,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000054,0.000384,0.000369,0.000006,0.269850,-0.000369,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000228,0.000219,0.000006,0.269631,-0.000219,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000075,0.000072,0.000005,0.269559,-0.000072,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000005,0.269559,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000000,0.000000,0.000004,0.269559,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000004,0.269559,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000004,0.269559,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000003,0.269559,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.269559,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.269559,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000003,0.269559,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000000,0.000000,0.000003,0.269559,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.269559,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.269559,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000002,0.269559,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000132,0.000126,0.000002,0.269433,-0.000126,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000389,0.000372,0.000002,0.269061,-0.000372,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000568,0.000542,0.000002,0.268518,-0.000542,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000711,0.000677,0.000001,0.267841,-0.000677,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000792,0.000751,0.000001,0.267090,-0.000751,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000755,0.000712,0.000001,0.266378,-0.000712,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000663,0.000623,0.000001,0.265755,-0.000623,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000584,0.000547,0.000001,0.265208,-0.000547,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000499,0.000466,0.000001,0.264741,-0.000466,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000380,0.000353,0.000001,0.264388,-0.000353,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000196,0.000182,0.000001,0.264206,-0.000182,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000039,0.000036,0.000001,0.264170,-0.000036,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.264170,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.264170,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.264170,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000001,0.264170,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000001,0.264170,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.264170,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000112,0.000104,0.000000,0.264066,-0.000104,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000376,0.000349,0.000000,0.263717,-0.000349,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000560,0.000518,0.000000,0.263199,-0.000518,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000702,0.000648,0.000000,0.262551,-0.000648,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000825,0.000758,0.000000,0.261794,-0.000758,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000758,0.000693,0.000000,0.261101,-0.000693,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000685,0.000624,0.000000,0.260477,-0.000624,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000597,0.000541,0.000000,0.259935,-0.000541,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000494,0.000447,0.000000,0.259488,-0.000447,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000373,0.000337,0.000000,0.259152,-0.000337,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000216,0.000195,0.000000,0.258957,-0.000195,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000058,0.000052,0.000000,0.258905,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.258905,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000122,0.000110,0.000000,0.258795,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620751.csv b/test/channel_loss/channel_forcing/et/cat-2620751.csv new file mode 100644 index 000000000..fa26986b3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620751.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000171,0.000000,0.000000,0.000000,0.000000,0.000816,0.000082,0.000816,0.000201,0.000201,0.009027,0.371474,-0.003388,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000080,0.000751,0.000068,0.000068,0.008356,0.368110,-0.003364,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000079,0.000692,0.000000,0.000000,0.007743,0.364875,-0.003235,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000638,0.000077,0.000639,0.000000,0.000000,0.007182,0.361700,-0.003176,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000590,0.000076,0.000590,0.000000,0.000000,0.006668,0.358583,-0.003117,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000546,0.000075,0.000546,0.000000,0.000000,0.006197,0.355523,-0.003060,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000506,0.000073,0.000506,0.000000,0.000000,0.005764,0.352519,-0.003004,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000469,0.000072,0.000470,0.000000,0.000000,0.005367,0.349571,-0.002948,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000436,0.000071,0.000437,0.000000,0.000000,0.005002,0.346677,-0.002894,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000405,0.000069,0.000406,0.000000,0.000000,0.004666,0.343836,-0.002841,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000377,0.000068,0.000379,0.000000,0.000000,0.004357,0.341047,-0.002789,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000352,0.000067,0.000353,0.000000,0.000000,0.004072,0.338309,-0.002737,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000328,0.000066,0.000330,0.000000,0.000000,0.003809,0.335622,-0.002687,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000307,0.000064,0.000309,0.000000,0.000000,0.003567,0.332984,-0.002638,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000287,0.000063,0.000289,0.000150,0.000150,0.003343,0.330248,-0.002736,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000269,0.000062,0.000271,0.000396,0.000396,0.003136,0.327320,-0.002928,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000252,0.000060,0.000255,0.000576,0.000576,0.002945,0.324270,-0.003050,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000236,0.000059,0.000240,0.000707,0.000707,0.002768,0.321147,-0.003123,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000222,0.000058,0.000226,0.000643,0.000643,0.002603,0.318144,-0.003002,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000379,0.000000,0.000000,0.000000,0.000004,0.000209,0.000056,0.000213,0.000620,0.000620,0.002451,0.315591,-0.002554,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000005,0.000196,0.000055,0.000201,0.000541,0.000541,0.002310,0.313100,-0.002491,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000379,0.000000,0.000000,0.000000,0.000005,0.000185,0.000054,0.000190,0.000424,0.000424,0.002179,0.310831,-0.002268,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000175,0.000053,0.000180,0.000368,0.000368,0.002058,0.308598,-0.002233,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000165,0.000052,0.000171,0.000279,0.000279,0.001945,0.306493,-0.002105,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000316,0.000001,0.000002,0.000001,0.000007,0.000156,0.000051,0.000164,0.000184,0.000184,0.001841,0.304518,-0.001975,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000623,0.000018,0.000031,0.000018,0.000007,0.000147,0.000051,0.000172,0.000092,0.000092,0.001744,0.302942,-0.001576,1.000000,0.000014 +26,2022-08-02 02:00:00,0.000903,0.000056,0.000086,0.000056,0.000008,0.000140,0.000050,0.000203,0.000000,0.000000,0.001654,0.301707,-0.001235,1.000000,0.000045 +27,2022-08-02 03:00:00,0.000893,0.000074,0.000084,0.000074,0.000008,0.000133,0.000049,0.000215,0.000000,0.000000,0.001571,0.300486,-0.001221,1.000000,0.000055 +28,2022-08-02 04:00:00,0.000965,0.000092,0.000097,0.000092,0.000009,0.000126,0.000049,0.000227,0.000000,0.000000,0.001494,0.299345,-0.001141,1.000000,0.000061 +29,2022-08-02 05:00:00,0.000977,0.000096,0.000099,0.000096,0.000010,0.000120,0.000048,0.000225,0.000000,0.000000,0.001423,0.298236,-0.001110,1.000000,0.000064 +30,2022-08-02 06:00:00,0.000986,0.000100,0.000101,0.000100,0.000010,0.000114,0.000048,0.000224,0.000000,0.000000,0.001356,0.297153,-0.001082,1.000000,0.000065 +31,2022-08-02 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000011,0.000109,0.000047,0.000165,0.000000,0.000000,0.001294,0.295223,-0.001931,1.000000,0.000020 +32,2022-08-02 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000011,0.000104,0.000046,0.000136,0.000000,0.000000,0.001237,0.293328,-0.001895,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000099,0.000045,0.000112,0.000000,0.000000,0.001183,0.291467,-0.001860,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000095,0.000045,0.000108,0.000000,0.000000,0.001132,0.289641,-0.001826,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000091,0.000044,0.000105,0.000000,0.000000,0.001084,0.287849,-0.001793,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000087,0.000043,0.000102,0.000000,0.000000,0.001040,0.286089,-0.001760,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000015,0.000084,0.000042,0.000099,0.000000,0.000000,0.000998,0.284459,-0.001630,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000016,0.000081,0.000041,0.000096,0.000127,0.000127,0.000959,0.282736,-0.001723,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000016,0.000077,0.000041,0.000094,0.000344,0.000344,0.000922,0.280831,-0.001905,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000017,0.000074,0.000040,0.000091,0.000493,0.000493,0.000887,0.278814,-0.002017,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000018,0.000072,0.000039,0.000089,0.000608,0.000608,0.000854,0.276722,-0.002092,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000421,0.000000,0.000000,0.000000,0.000018,0.000069,0.000038,0.000087,0.000698,0.000698,0.000823,0.274896,-0.001827,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000067,0.000037,0.000086,0.000645,0.000645,0.000794,0.272741,-0.002155,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000064,0.000036,0.000084,0.000584,0.000584,0.000765,0.270686,-0.002055,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000062,0.000035,0.000083,0.000547,0.000547,0.000738,0.268705,-0.001981,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000060,0.000034,0.000081,0.000475,0.000475,0.000713,0.266831,-0.001874,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000058,0.000033,0.000080,0.000359,0.000359,0.000688,0.265105,-0.001726,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000056,0.000033,0.000079,0.000219,0.000219,0.000665,0.263548,-0.001556,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000054,0.000032,0.000078,0.000062,0.000062,0.000644,0.262174,-0.001374,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000052,0.000031,0.000077,0.000000,0.000000,0.000623,0.260887,-0.001288,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000050,0.000031,0.000076,0.000000,0.000000,0.000603,0.259623,-0.001264,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000049,0.000030,0.000075,0.000000,0.000000,0.000585,0.258382,-0.001241,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000047,0.000030,0.000075,0.000000,0.000000,0.000567,0.257164,-0.001218,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000046,0.000029,0.000074,0.000000,0.000000,0.000550,0.255969,-0.001196,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000045,0.000029,0.000074,0.000000,0.000000,0.000534,0.254795,-0.001174,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000043,0.000028,0.000073,0.000000,0.000000,0.000519,0.253643,-0.001152,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000042,0.000028,0.000073,0.000000,0.000000,0.000504,0.252512,-0.001131,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000041,0.000027,0.000072,0.000000,0.000000,0.000490,0.251402,-0.001110,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000040,0.000027,0.000072,0.000000,0.000000,0.000477,0.250313,-0.001090,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000039,0.000026,0.000072,0.000000,0.000000,0.000464,0.249243,-0.001070,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000038,0.000026,0.000072,0.000000,0.000000,0.000452,0.248193,-0.001050,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000037,0.000025,0.000072,0.000148,0.000148,0.000440,0.247017,-0.001176,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000036,0.000024,0.000072,0.000411,0.000411,0.000429,0.245605,-0.001412,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000035,0.000024,0.000072,0.000590,0.000590,0.000418,0.244042,-0.001562,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000034,0.000023,0.000071,0.000715,0.000715,0.000407,0.242386,-0.001656,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000033,0.000022,0.000071,0.000751,0.000751,0.000396,0.240725,-0.001661,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000032,0.000021,0.000071,0.000718,0.000718,0.000385,0.239128,-0.001598,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000552,0.000000,0.000000,0.000000,0.000040,0.000031,0.000021,0.000071,0.000624,0.000624,0.000375,0.238192,-0.000935,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000150,0.000000,0.000000,0.000000,0.000041,0.000030,0.000020,0.000072,0.000557,0.000557,0.000365,0.236946,-0.001246,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000030,0.000020,0.000072,0.000474,0.000474,0.000355,0.235657,-0.001289,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000029,0.000019,0.000072,0.000361,0.000361,0.000346,0.234503,-0.001155,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000028,0.000019,0.000072,0.000226,0.000226,0.000336,0.233502,-0.001001,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000027,0.000019,0.000072,0.000078,0.000078,0.000328,0.232665,-0.000837,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000027,0.000018,0.000072,0.000000,0.000000,0.000319,0.231920,-0.000745,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000026,0.000018,0.000072,0.000000,0.000000,0.000311,0.231188,-0.000731,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000025,0.000018,0.000073,0.000000,0.000000,0.000303,0.230470,-0.000718,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000025,0.000017,0.000073,0.000000,0.000000,0.000296,0.229765,-0.000705,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000024,0.000017,0.000073,0.000000,0.000000,0.000289,0.229073,-0.000692,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000023,0.000017,0.000074,0.000000,0.000000,0.000282,0.228394,-0.000679,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000023,0.000016,0.000074,0.000000,0.000000,0.000275,0.227728,-0.000667,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000022,0.000016,0.000074,0.000000,0.000000,0.000268,0.227073,-0.000654,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000022,0.000016,0.000075,0.000000,0.000000,0.000262,0.226431,-0.000642,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000021,0.000015,0.000075,0.000000,0.000000,0.000256,0.225800,-0.000631,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000021,0.000015,0.000075,0.000000,0.000000,0.000250,0.225181,-0.000619,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000020,0.000015,0.000076,0.000000,0.000000,0.000245,0.224574,-0.000608,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000020,0.000014,0.000076,0.000141,0.000141,0.000239,0.223839,-0.000735,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000020,0.000014,0.000077,0.000404,0.000404,0.000234,0.222860,-0.000979,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000019,0.000014,0.000077,0.000579,0.000579,0.000228,0.221727,-0.001133,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000019,0.000013,0.000078,0.000716,0.000716,0.000223,0.220480,-0.001247,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000018,0.000012,0.000078,0.000832,0.000832,0.000217,0.219142,-0.001338,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000018,0.000012,0.000078,0.000800,0.000800,0.000211,0.217861,-0.001282,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000017,0.000011,0.000079,0.000695,0.000695,0.000205,0.216705,-0.001155,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000017,0.000011,0.000079,0.000579,0.000579,0.000199,0.215685,-0.001020,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000016,0.000010,0.000080,0.000499,0.000499,0.000194,0.214762,-0.000923,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000016,0.000010,0.000080,0.000381,0.000381,0.000188,0.213972,-0.000790,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000015,0.000010,0.000080,0.000233,0.000233,0.000182,0.213342,-0.000630,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000015,0.000009,0.000081,0.000089,0.000089,0.000177,0.212864,-0.000478,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000014,0.000009,0.000081,0.000000,0.000000,0.000172,0.212483,-0.000381,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000014,0.000009,0.000082,0.000000,0.000000,0.000167,0.212109,-0.000374,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000014,0.000009,0.000082,0.000000,0.000000,0.000163,0.211742,-0.000367,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000013,0.000009,0.000083,0.000000,0.000000,0.000158,0.211381,-0.000361,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000013,0.000009,0.000083,0.000000,0.000000,0.000154,0.211027,-0.000354,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000013,0.000008,0.000084,0.000000,0.000000,0.000150,0.210680,-0.000347,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000012,0.000008,0.000084,0.000000,0.000000,0.000146,0.210339,-0.000341,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000012,0.000008,0.000085,0.000000,0.000000,0.000142,0.210004,-0.000335,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000012,0.000008,0.000086,0.000000,0.000000,0.000139,0.209675,-0.000329,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000011,0.000008,0.000086,0.000000,0.000000,0.000135,0.209353,-0.000323,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000011,0.000008,0.000087,0.000000,0.000000,0.000132,0.209036,-0.000317,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000011,0.000008,0.000087,0.000000,0.000000,0.000129,0.208725,-0.000311,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000010,0.000007,0.000088,0.000152,0.000152,0.000126,0.208271,-0.000454,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000010,0.000007,0.000088,0.000409,0.000409,0.000123,0.207573,-0.000698,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000010,0.000007,0.000089,0.000585,0.000585,0.000119,0.206715,-0.000858,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000010,0.000006,0.000090,0.000718,0.000718,0.000116,0.205742,-0.000973,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000009,0.000006,0.000090,0.000725,0.000725,0.000112,0.204779,-0.000962,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000082,0.000009,0.000005,0.000091,0.000690,0.000690,0.000109,0.203932,-0.000847,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000082,0.000009,0.000005,0.000091,0.000593,0.000593,0.000105,0.203194,-0.000737,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000083,0.000008,0.000005,0.000092,0.000506,0.000506,0.000101,0.202557,-0.000638,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000084,0.000008,0.000005,0.000092,0.000444,0.000444,0.000098,0.201991,-0.000566,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000085,0.000008,0.000004,0.000093,0.000342,0.000342,0.000094,0.201536,-0.000455,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000086,0.000008,0.000004,0.000093,0.000209,0.000209,0.000091,0.201219,-0.000316,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000316,0.000003,0.000005,0.000003,0.000087,0.000007,0.000004,0.000097,0.000084,0.000084,0.000088,0.201275,0.000055,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000399,0.000009,0.000015,0.000009,0.000087,0.000007,0.000004,0.000104,0.000000,0.000000,0.000085,0.201484,0.000209,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000453,0.000015,0.000019,0.000015,0.000088,0.000007,0.000004,0.000110,0.000000,0.000000,0.000082,0.201738,0.000254,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000397,0.000016,0.000014,0.000016,0.000089,0.000007,0.000004,0.000111,0.000000,0.000000,0.000080,0.201937,0.000198,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000400,0.000015,0.000015,0.000015,0.000090,0.000007,0.000005,0.000112,0.000000,0.000000,0.000078,0.202135,0.000198,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000400,0.000015,0.000015,0.000015,0.000091,0.000006,0.000005,0.000112,0.000000,0.000000,0.000077,0.202329,0.000194,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000091,0.000006,0.000005,0.000104,0.000000,0.000000,0.000075,0.202141,-0.000188,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000092,0.000006,0.000004,0.000101,0.000000,0.000000,0.000073,0.201957,-0.000184,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000006,0.000004,0.000099,0.000000,0.000000,0.000072,0.201776,-0.000181,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000006,0.000004,0.000099,0.000000,0.000000,0.000070,0.201599,-0.000177,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000006,0.000004,0.000100,0.000000,0.000000,0.000069,0.201425,-0.000174,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000006,0.000004,0.000101,0.000000,0.000000,0.000067,0.201254,-0.000171,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000005,0.000004,0.000101,0.000000,0.000000,0.000066,0.201086,-0.000168,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000005,0.000004,0.000102,0.000132,0.000132,0.000064,0.200792,-0.000295,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000005,0.000004,0.000103,0.000389,0.000389,0.000063,0.200251,-0.000541,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000005,0.000003,0.000103,0.000570,0.000570,0.000061,0.199542,-0.000709,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000005,0.000003,0.000104,0.000706,0.000706,0.000059,0.198712,-0.000829,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000005,0.000003,0.000104,0.000815,0.000815,0.000057,0.197791,-0.000921,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000005,0.000002,0.000105,0.000782,0.000782,0.000055,0.196919,-0.000872,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000004,0.000002,0.000105,0.000683,0.000683,0.000052,0.196161,-0.000758,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000004,0.000002,0.000106,0.000586,0.000586,0.000050,0.195512,-0.000649,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000004,0.000001,0.000107,0.000500,0.000500,0.000047,0.194959,-0.000553,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000004,0.000001,0.000107,0.000379,0.000379,0.000044,0.194535,-0.000424,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000003,0.000001,0.000108,0.000227,0.000227,0.000042,0.194267,-0.000267,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000003,0.000001,0.000108,0.000076,0.000076,0.000040,0.194153,-0.000114,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000003,0.000001,0.000109,0.000000,0.000000,0.000037,0.194116,-0.000037,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000003,0.000001,0.000109,0.000000,0.000000,0.000035,0.194080,-0.000037,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000003,0.000001,0.000110,0.000000,0.000000,0.000033,0.194044,-0.000036,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000003,0.000001,0.000110,0.000000,0.000000,0.000032,0.194009,-0.000035,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000002,0.000001,0.000111,0.000000,0.000000,0.000030,0.193974,-0.000035,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000002,0.000001,0.000111,0.000000,0.000000,0.000028,0.193940,-0.000034,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000002,0.000001,0.000112,0.000000,0.000000,0.000027,0.193907,-0.000033,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000002,0.000001,0.000112,0.000000,0.000000,0.000026,0.193874,-0.000033,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000002,0.000001,0.000113,0.000000,0.000000,0.000024,0.193842,-0.000032,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000002,0.000001,0.000114,0.000000,0.000000,0.000023,0.193810,-0.000032,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000002,0.000001,0.000114,0.000000,0.000000,0.000022,0.193780,-0.000031,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000002,0.000001,0.000115,0.000000,0.000000,0.000021,0.193749,-0.000030,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000002,0.000001,0.000115,0.000132,0.000132,0.000020,0.193589,-0.000160,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000002,0.000000,0.000116,0.000390,0.000390,0.000019,0.193179,-0.000410,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000116,0.000575,0.000575,0.000018,0.192596,-0.000584,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000001,0.000000,0.000117,0.000705,0.000705,0.000016,0.191891,-0.000705,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000001,0.000000,0.000117,0.000799,0.000797,0.000015,0.191094,-0.000797,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000118,0.000759,0.000751,0.000014,0.190342,-0.000751,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000001,0.000000,0.000118,0.000654,0.000643,0.000013,0.189700,-0.000643,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000001,0.000000,0.000119,0.000590,0.000575,0.000012,0.189125,-0.000575,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000119,0.000500,0.000485,0.000011,0.188640,-0.000485,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000001,0.000000,0.000120,0.000382,0.000369,0.000010,0.188271,-0.000369,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000200,0.000192,0.000009,0.188080,-0.000192,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000001,0.000000,0.000121,0.000040,0.000038,0.000009,0.188042,-0.000038,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000001,0.000000,0.000122,0.000000,0.000000,0.000008,0.188042,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000001,0.000000,0.000122,0.000000,0.000000,0.000007,0.188042,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000001,0.000000,0.000123,0.000000,0.000000,0.000007,0.188042,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000001,0.000000,0.000123,0.000000,0.000000,0.000006,0.188042,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000124,0.000000,0.000000,0.000006,0.188042,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000000,0.000000,0.000005,0.188042,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000125,0.000000,0.000000,0.000005,0.188042,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000000,0.000000,0.000005,0.188042,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000000,0.000000,0.000004,0.188042,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000000,0.000000,0.000004,0.188042,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000000,0.000000,0.000004,0.188042,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000000,0.000000,0.000003,0.188042,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000110,0.000105,0.000003,0.187936,-0.000105,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000373,0.000357,0.000003,0.187579,-0.000357,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000561,0.000535,0.000003,0.187044,-0.000535,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000694,0.000658,0.000002,0.186387,-0.000658,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000804,0.000757,0.000002,0.185630,-0.000757,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000771,0.000720,0.000002,0.184910,-0.000720,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000670,0.000621,0.000002,0.184289,-0.000621,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000601,0.000553,0.000002,0.183736,-0.000553,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000498,0.000456,0.000002,0.183280,-0.000456,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000377,0.000343,0.000001,0.182937,-0.000343,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000222,0.000201,0.000001,0.182736,-0.000201,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000000,0.000000,0.000133,0.000061,0.000055,0.000001,0.182681,-0.000055,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000000,0.000000,0.000134,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000000,0.000000,0.000135,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000000,0.000000,0.000136,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000000,0.000000,0.000137,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000138,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000138,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000138,0.000000,0.000000,0.000001,0.182681,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000000,0.000000,0.000139,0.000000,0.000000,0.000000,0.182681,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000000,0.000000,0.000139,0.000121,0.000109,0.000000,0.182572,-0.000109,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620752.csv b/test/channel_loss/channel_forcing/et/cat-2620752.csv new file mode 100644 index 000000000..098af6e58 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620752.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000182,0.000000,0.000000,0.000000,0.000000,0.000828,0.000215,0.000828,0.000206,0.000206,0.009148,0.373439,-0.002573,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000210,0.000773,0.000073,0.000073,0.008584,0.370876,-0.002564,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000723,0.000205,0.000723,0.000000,0.000000,0.008067,0.368440,-0.002435,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000201,0.000677,0.000000,0.000000,0.007590,0.366059,-0.002381,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000636,0.000196,0.000636,0.000000,0.000000,0.007151,0.363731,-0.002328,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000192,0.000597,0.000000,0.000000,0.006745,0.361455,-0.002276,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000562,0.000188,0.000562,0.000000,0.000000,0.006371,0.359229,-0.002226,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000530,0.000183,0.000530,0.000000,0.000000,0.006024,0.357053,-0.002176,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000500,0.000179,0.000501,0.000000,0.000000,0.005704,0.354926,-0.002128,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000473,0.000175,0.000473,0.000000,0.000000,0.005406,0.352845,-0.002080,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000447,0.000171,0.000448,0.000000,0.000000,0.005130,0.350812,-0.002034,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000424,0.000168,0.000425,0.000000,0.000000,0.004874,0.348823,-0.001989,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000402,0.000164,0.000404,0.000000,0.000000,0.004635,0.346879,-0.001944,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000382,0.000160,0.000384,0.000000,0.000000,0.004413,0.344977,-0.001901,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000364,0.000156,0.000365,0.000153,0.000153,0.004206,0.342969,-0.002009,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000346,0.000152,0.000348,0.000396,0.000396,0.004012,0.340768,-0.002201,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000330,0.000148,0.000332,0.000580,0.000580,0.003829,0.338436,-0.002332,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000315,0.000143,0.000317,0.000731,0.000731,0.003658,0.336008,-0.002427,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000300,0.000139,0.000303,0.000674,0.000674,0.003496,0.333690,-0.002319,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000003,0.000287,0.000135,0.000290,0.000652,0.000652,0.003344,0.331755,-0.001935,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000386,0.000000,0.000000,0.000000,0.000003,0.000274,0.000132,0.000278,0.000564,0.000564,0.003201,0.330017,-0.001738,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000429,0.000000,0.000000,0.000000,0.000004,0.000262,0.000129,0.000266,0.000451,0.000451,0.003067,0.328470,-0.001547,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000487,0.000000,0.000000,0.000000,0.000004,0.000251,0.000126,0.000256,0.000377,0.000377,0.002942,0.327086,-0.001384,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000492,0.000001,0.000001,0.000001,0.000004,0.000241,0.000123,0.000246,0.000290,0.000290,0.002824,0.325821,-0.001265,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000497,0.000002,0.000003,0.000002,0.000005,0.000231,0.000121,0.000239,0.000193,0.000193,0.002714,0.324682,-0.001139,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000900,0.000014,0.000023,0.000014,0.000005,0.000223,0.000120,0.000241,0.000095,0.000095,0.002611,0.324039,-0.000643,1.000000,0.000011 +26,2022-08-02 02:00:00,0.000883,0.000022,0.000028,0.000022,0.000005,0.000214,0.000119,0.000241,0.000000,0.000000,0.002516,0.323483,-0.000556,1.000000,0.000017 +27,2022-08-02 03:00:00,0.000872,0.000026,0.000027,0.000026,0.000006,0.000207,0.000118,0.000239,0.000000,0.000000,0.002427,0.322929,-0.000554,1.000000,0.000018 +28,2022-08-02 04:00:00,0.000879,0.000027,0.000027,0.000027,0.000006,0.000199,0.000117,0.000233,0.000000,0.000000,0.002345,0.322394,-0.000535,1.000000,0.000018 +29,2022-08-02 05:00:00,0.000897,0.000028,0.000028,0.000028,0.000007,0.000193,0.000116,0.000227,0.000000,0.000000,0.002268,0.321888,-0.000506,1.000000,0.000018 +30,2022-08-02 06:00:00,0.000900,0.000028,0.000029,0.000028,0.000007,0.000186,0.000115,0.000222,0.000000,0.000000,0.002197,0.321395,-0.000493,1.000000,0.000019 +31,2022-08-02 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000007,0.000181,0.000112,0.000201,0.000000,0.000000,0.002128,0.320061,-0.001334,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000008,0.000175,0.000110,0.000189,0.000000,0.000000,0.002063,0.318757,-0.001304,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000170,0.000107,0.000178,0.000000,0.000000,0.002001,0.317482,-0.001275,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000164,0.000105,0.000173,0.000000,0.000000,0.001942,0.316235,-0.001247,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000160,0.000103,0.000169,0.000000,0.000000,0.001885,0.315017,-0.001219,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000155,0.000100,0.000165,0.000000,0.000000,0.001831,0.313825,-0.001192,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000150,0.000098,0.000161,0.000000,0.000000,0.001778,0.312660,-0.001165,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000146,0.000096,0.000157,0.000130,0.000130,0.001728,0.311393,-0.001266,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000142,0.000093,0.000153,0.000344,0.000344,0.001679,0.309946,-0.001447,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000138,0.000090,0.000149,0.000499,0.000499,0.001631,0.308379,-0.001567,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000134,0.000087,0.000146,0.000624,0.000624,0.001584,0.306724,-0.001655,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000009,0.000000,0.000000,0.000000,0.000013,0.000130,0.000084,0.000142,0.000722,0.000722,0.001538,0.305020,-0.001704,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000126,0.000080,0.000139,0.000680,0.000680,0.001493,0.303387,-0.001634,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000122,0.000077,0.000136,0.000619,0.000619,0.001448,0.301849,-0.001538,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000118,0.000075,0.000132,0.000557,0.000557,0.001404,0.300406,-0.001443,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000115,0.000072,0.000129,0.000478,0.000478,0.001362,0.299072,-0.001334,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000111,0.000070,0.000126,0.000370,0.000370,0.001320,0.297874,-0.001198,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000108,0.000068,0.000123,0.000223,0.000223,0.001280,0.296846,-0.001028,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000105,0.000066,0.000121,0.000069,0.000069,0.001242,0.295991,-0.000854,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000101,0.000065,0.000118,0.000000,0.000000,0.001205,0.295223,-0.000768,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000098,0.000063,0.000116,0.000000,0.000000,0.001170,0.294472,-0.000751,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000096,0.000062,0.000113,0.000000,0.000000,0.001137,0.293737,-0.000734,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000093,0.000061,0.000111,0.000000,0.000000,0.001104,0.293019,-0.000718,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000090,0.000059,0.000109,0.000000,0.000000,0.001073,0.292317,-0.000702,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000088,0.000058,0.000107,0.000000,0.000000,0.001043,0.291631,-0.000686,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000085,0.000057,0.000105,0.000000,0.000000,0.001015,0.290960,-0.000671,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000083,0.000055,0.000103,0.000000,0.000000,0.000987,0.290304,-0.000656,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000081,0.000054,0.000102,0.000000,0.000000,0.000961,0.289662,-0.000642,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000078,0.000053,0.000100,0.000000,0.000000,0.000935,0.289035,-0.000627,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000076,0.000052,0.000099,0.000000,0.000000,0.000910,0.288421,-0.000613,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000074,0.000051,0.000097,0.000000,0.000000,0.000887,0.287822,-0.000600,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000072,0.000049,0.000096,0.000149,0.000149,0.000863,0.287089,-0.000732,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000070,0.000047,0.000094,0.000411,0.000411,0.000840,0.286118,-0.000971,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000068,0.000045,0.000093,0.000593,0.000593,0.000817,0.284990,-0.001128,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000066,0.000043,0.000091,0.000742,0.000742,0.000793,0.283742,-0.001249,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000064,0.000040,0.000090,0.000791,0.000791,0.000769,0.282473,-0.001269,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000062,0.000038,0.000088,0.000755,0.000755,0.000744,0.281268,-0.001205,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000022,0.000000,0.000000,0.000000,0.000027,0.000060,0.000036,0.000087,0.000667,0.000667,0.000720,0.280197,-0.001071,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000002,0.000000,0.000000,0.000000,0.000027,0.000058,0.000034,0.000085,0.000566,0.000566,0.000696,0.279229,-0.000968,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000056,0.000032,0.000084,0.000481,0.000481,0.000672,0.278363,-0.000865,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000054,0.000031,0.000083,0.000372,0.000372,0.000649,0.277624,-0.000739,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000052,0.000030,0.000081,0.000229,0.000229,0.000626,0.277041,-0.000583,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000051,0.000029,0.000080,0.000085,0.000085,0.000605,0.276612,-0.000430,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000049,0.000028,0.000079,0.000000,0.000000,0.000584,0.276275,-0.000337,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000047,0.000028,0.000078,0.000000,0.000000,0.000565,0.275946,-0.000329,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000046,0.000027,0.000077,0.000000,0.000000,0.000546,0.275624,-0.000322,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000044,0.000027,0.000076,0.000000,0.000000,0.000528,0.275309,-0.000315,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000043,0.000026,0.000075,0.000000,0.000000,0.000512,0.275001,-0.000308,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000041,0.000025,0.000074,0.000000,0.000000,0.000495,0.274700,-0.000301,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000040,0.000025,0.000073,0.000000,0.000000,0.000480,0.274406,-0.000294,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000039,0.000024,0.000073,0.000000,0.000000,0.000465,0.274118,-0.000288,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000038,0.000024,0.000072,0.000000,0.000000,0.000451,0.273837,-0.000281,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000037,0.000023,0.000072,0.000000,0.000000,0.000438,0.273562,-0.000275,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000036,0.000023,0.000071,0.000000,0.000000,0.000425,0.273293,-0.000269,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000034,0.000022,0.000071,0.000000,0.000000,0.000413,0.273030,-0.000263,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000033,0.000021,0.000070,0.000144,0.000144,0.000401,0.272632,-0.000398,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000032,0.000020,0.000070,0.000407,0.000407,0.000388,0.271986,-0.000646,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000031,0.000019,0.000069,0.000590,0.000590,0.000376,0.271176,-0.000811,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000030,0.000017,0.000069,0.000735,0.000735,0.000362,0.270241,-0.000935,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000029,0.000015,0.000068,0.000876,0.000876,0.000348,0.269190,-0.001051,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000028,0.000013,0.000067,0.000841,0.000841,0.000333,0.268195,-0.000994,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000027,0.000011,0.000066,0.000717,0.000717,0.000318,0.267345,-0.000851,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000025,0.000010,0.000066,0.000600,0.000600,0.000302,0.266628,-0.000717,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000024,0.000009,0.000065,0.000511,0.000511,0.000287,0.266013,-0.000614,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000023,0.000008,0.000064,0.000393,0.000393,0.000272,0.265528,-0.000485,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000022,0.000007,0.000064,0.000237,0.000237,0.000258,0.265206,-0.000322,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000020,0.000007,0.000063,0.000094,0.000094,0.000244,0.265032,-0.000175,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000019,0.000007,0.000062,0.000000,0.000000,0.000232,0.264953,-0.000079,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000018,0.000007,0.000062,0.000000,0.000000,0.000220,0.264875,-0.000077,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000017,0.000006,0.000062,0.000000,0.000000,0.000209,0.264800,-0.000076,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000017,0.000006,0.000061,0.000000,0.000000,0.000198,0.264726,-0.000074,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000016,0.000006,0.000061,0.000000,0.000000,0.000189,0.264654,-0.000072,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000015,0.000006,0.000061,0.000000,0.000000,0.000180,0.264583,-0.000071,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000014,0.000006,0.000060,0.000000,0.000000,0.000171,0.264514,-0.000069,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000014,0.000006,0.000060,0.000000,0.000000,0.000163,0.264447,-0.000067,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000013,0.000006,0.000060,0.000000,0.000000,0.000156,0.264381,-0.000066,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000012,0.000005,0.000060,0.000000,0.000000,0.000149,0.264316,-0.000065,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000012,0.000005,0.000060,0.000000,0.000000,0.000142,0.264253,-0.000063,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000011,0.000005,0.000060,0.000004,0.000004,0.000136,0.264188,-0.000065,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000011,0.000005,0.000060,0.000156,0.000156,0.000130,0.263975,-0.000213,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000010,0.000004,0.000060,0.000410,0.000410,0.000124,0.263518,-0.000457,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000010,0.000003,0.000060,0.000596,0.000596,0.000117,0.262890,-0.000628,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000009,0.000001,0.000060,0.000743,0.000743,0.000109,0.262133,-0.000757,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000008,0.000000,0.000059,0.000755,0.000755,0.000101,0.261378,-0.000755,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000052,0.000008,0.000000,0.000059,0.000723,0.000723,0.000093,0.260718,-0.000660,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000052,0.000007,0.000000,0.000059,0.000624,0.000621,0.000086,0.260160,-0.000558,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000052,0.000007,0.000000,0.000059,0.000525,0.000521,0.000079,0.259702,-0.000458,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000053,0.000006,0.000000,0.000059,0.000456,0.000452,0.000073,0.259313,-0.000389,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000053,0.000006,0.000000,0.000059,0.000352,0.000348,0.000067,0.259028,-0.000285,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000054,0.000005,0.000000,0.000059,0.000209,0.000207,0.000062,0.258884,-0.000144,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000426,0.000002,0.000004,0.000002,0.000054,0.000005,0.000000,0.000061,0.000088,0.000088,0.000057,0.259218,0.000334,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000488,0.000005,0.000007,0.000005,0.000055,0.000004,0.000000,0.000064,0.000000,0.000000,0.000053,0.259699,0.000480,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000488,0.000007,0.000007,0.000007,0.000055,0.000004,0.000000,0.000066,0.000000,0.000000,0.000049,0.260179,0.000480,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000488,0.000007,0.000007,0.000007,0.000056,0.000004,0.000000,0.000067,0.000000,0.000000,0.000045,0.260660,0.000480,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000486,0.000007,0.000007,0.000007,0.000056,0.000003,0.000000,0.000067,0.000000,0.000000,0.000042,0.261138,0.000479,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000487,0.000007,0.000007,0.000007,0.000057,0.000003,0.000000,0.000067,0.000000,0.000000,0.000039,0.261615,0.000477,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000057,0.000003,0.000000,0.000063,0.000000,0.000000,0.000036,0.261612,-0.000003,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000057,0.000003,0.000000,0.000062,0.000000,0.000000,0.000033,0.261609,-0.000003,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000003,0.000000,0.000060,0.000000,0.000000,0.000031,0.261606,-0.000003,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000002,0.000000,0.000061,0.000000,0.000000,0.000029,0.261604,-0.000003,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000002,0.000000,0.000061,0.000000,0.000000,0.000027,0.261601,-0.000003,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000002,0.000000,0.000061,0.000000,0.000000,0.000025,0.261598,-0.000003,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000002,0.000000,0.000061,0.000000,0.000000,0.000023,0.261596,-0.000003,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000002,0.000000,0.000062,0.000137,0.000137,0.000022,0.261458,-0.000137,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000002,0.000000,0.000062,0.000391,0.000391,0.000020,0.261068,-0.000391,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000002,0.000000,0.000062,0.000575,0.000574,0.000018,0.260494,-0.000574,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000001,0.000000,0.000063,0.000726,0.000722,0.000017,0.259772,-0.000722,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000837,0.000829,0.000016,0.258943,-0.000829,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000819,0.000806,0.000014,0.258137,-0.000806,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000001,0.000000,0.000063,0.000718,0.000704,0.000013,0.257433,-0.000704,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000001,0.000000,0.000064,0.000603,0.000588,0.000012,0.256845,-0.000588,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000001,0.000000,0.000064,0.000515,0.000501,0.000011,0.256345,-0.000501,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000001,0.000000,0.000064,0.000394,0.000382,0.000010,0.255963,-0.000382,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000001,0.000000,0.000065,0.000237,0.000229,0.000010,0.255734,-0.000229,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000001,0.000000,0.000065,0.000082,0.000079,0.000009,0.255655,-0.000079,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000001,0.000000,0.000065,0.000000,0.000000,0.000008,0.255655,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000001,0.000000,0.000066,0.000000,0.000000,0.000008,0.255655,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000001,0.000000,0.000066,0.000000,0.000000,0.000007,0.255655,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000001,0.000000,0.000066,0.000000,0.000000,0.000006,0.255655,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000000,0.000000,0.000006,0.255655,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000067,0.000000,0.000000,0.000006,0.255655,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000005,0.255655,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000068,0.000000,0.000000,0.000005,0.255655,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000004,0.255655,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000004,0.255655,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000069,0.000000,0.000000,0.000004,0.255655,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000003,0.255655,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000136,0.000131,0.000003,0.255524,-0.000131,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000070,0.000390,0.000376,0.000003,0.255148,-0.000376,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000574,0.000553,0.000003,0.254595,-0.000553,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000724,0.000694,0.000002,0.253901,-0.000694,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000825,0.000787,0.000002,0.253113,-0.000787,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000792,0.000753,0.000002,0.252360,-0.000753,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000694,0.000656,0.000002,0.251704,-0.000656,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000602,0.000567,0.000002,0.251138,-0.000567,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000516,0.000484,0.000002,0.250654,-0.000484,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000391,0.000366,0.000002,0.250288,-0.000366,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000203,0.000189,0.000001,0.250098,-0.000189,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000043,0.000040,0.000001,0.250058,-0.000040,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000074,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000001,0.250058,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000114,0.000107,0.000000,0.249951,-0.000107,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000377,0.000351,0.000000,0.249600,-0.000351,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000564,0.000524,0.000000,0.249076,-0.000524,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000717,0.000664,0.000000,0.248412,-0.000664,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000853,0.000787,0.000000,0.247625,-0.000787,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000805,0.000738,0.000000,0.246887,-0.000738,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000715,0.000652,0.000000,0.246234,-0.000652,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000611,0.000555,0.000000,0.245679,-0.000555,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000506,0.000458,0.000000,0.245221,-0.000458,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000386,0.000348,0.000000,0.244872,-0.000348,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000226,0.000203,0.000000,0.244669,-0.000203,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000067,0.000060,0.000000,0.244609,-0.000060,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.244609,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000126,0.000113,0.000000,0.244496,-0.000113,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620753.csv b/test/channel_loss/channel_forcing/et/cat-2620753.csv new file mode 100644 index 000000000..b41b7c0ad --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620753.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.000821,0.000128,0.000821,0.000206,0.000206,0.009069,0.373348,-0.003097,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000759,0.000125,0.000759,0.000072,0.000072,0.008435,0.370257,-0.003091,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000703,0.000123,0.000703,0.000000,0.000000,0.007855,0.367297,-0.002960,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000652,0.000121,0.000652,0.000000,0.000000,0.007324,0.364395,-0.002902,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000606,0.000118,0.000606,0.000000,0.000000,0.006836,0.361550,-0.002845,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000564,0.000116,0.000564,0.000000,0.000000,0.006388,0.358760,-0.002790,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000525,0.000114,0.000526,0.000000,0.000000,0.005977,0.356025,-0.002735,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000490,0.000111,0.000491,0.000000,0.000000,0.005598,0.353343,-0.002682,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000458,0.000109,0.000459,0.000000,0.000000,0.005249,0.350714,-0.002629,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000429,0.000107,0.000430,0.000000,0.000000,0.004927,0.348135,-0.002578,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000402,0.000105,0.000403,0.000000,0.000000,0.004630,0.345608,-0.002528,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000377,0.000103,0.000379,0.000000,0.000000,0.004355,0.343129,-0.002478,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000354,0.000101,0.000356,0.000000,0.000000,0.004102,0.340699,-0.002430,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000333,0.000099,0.000335,0.000000,0.000000,0.003868,0.338317,-0.002382,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000314,0.000097,0.000316,0.000153,0.000153,0.003650,0.335831,-0.002486,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000296,0.000095,0.000299,0.000400,0.000400,0.003449,0.333152,-0.002680,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000280,0.000092,0.000282,0.000581,0.000581,0.003262,0.330347,-0.002804,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000264,0.000090,0.000267,0.000712,0.000712,0.003087,0.327469,-0.002878,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000250,0.000088,0.000254,0.000662,0.000662,0.002925,0.324696,-0.002773,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000335,0.000000,0.000000,0.000000,0.000004,0.000237,0.000086,0.000241,0.000641,0.000641,0.002774,0.322326,-0.002371,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000365,0.000000,0.000000,0.000000,0.000004,0.000224,0.000084,0.000229,0.000560,0.000560,0.002633,0.320112,-0.002214,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000345,0.000000,0.000000,0.000000,0.000005,0.000213,0.000082,0.000218,0.000439,0.000439,0.002502,0.318040,-0.002072,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000317,0.000000,0.000000,0.000000,0.000005,0.000202,0.000081,0.000208,0.000379,0.000379,0.002381,0.316039,-0.002001,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000317,0.000000,0.000000,0.000000,0.000006,0.000193,0.000079,0.000198,0.000288,0.000288,0.002267,0.314165,-0.001873,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000317,0.000001,0.000001,0.000001,0.000006,0.000183,0.000078,0.000190,0.000190,0.000190,0.002161,0.312425,-0.001741,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000703,0.000015,0.000027,0.000015,0.000007,0.000175,0.000076,0.000197,0.000096,0.000096,0.002063,0.311163,-0.001262,1.000000,0.000012 +26,2022-08-02 02:00:00,0.000895,0.000038,0.000057,0.000038,0.000007,0.000167,0.000076,0.000212,0.000001,0.000001,0.001971,0.310178,-0.000986,1.000000,0.000031 +27,2022-08-02 03:00:00,0.000842,0.000047,0.000051,0.000047,0.000008,0.000160,0.000075,0.000215,0.000000,0.000000,0.001886,0.309167,-0.001011,1.000000,0.000034 +28,2022-08-02 04:00:00,0.000877,0.000054,0.000055,0.000054,0.000008,0.000153,0.000074,0.000215,0.000000,0.000000,0.001807,0.308206,-0.000960,1.000000,0.000035 +29,2022-08-02 05:00:00,0.000872,0.000053,0.000054,0.000053,0.000009,0.000147,0.000073,0.000209,0.000000,0.000000,0.001734,0.307261,-0.000946,1.000000,0.000035 +30,2022-08-02 06:00:00,0.000886,0.000055,0.000055,0.000055,0.000009,0.000141,0.000072,0.000205,0.000000,0.000000,0.001666,0.306345,-0.000915,1.000000,0.000036 +31,2022-08-02 07:00:00,0.000000,0.000025,0.000000,0.000025,0.000010,0.000135,0.000071,0.000170,0.000000,0.000000,0.001602,0.304634,-0.001711,1.000000,0.000011 +32,2022-08-02 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000010,0.000130,0.000070,0.000151,0.000000,0.000000,0.001541,0.302956,-0.001678,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000125,0.000068,0.000136,0.000000,0.000000,0.001484,0.301310,-0.001645,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000121,0.000067,0.000132,0.000000,0.000000,0.001431,0.299697,-0.001613,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000116,0.000066,0.000128,0.000000,0.000000,0.001380,0.298116,-0.001582,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000112,0.000064,0.000125,0.000000,0.000000,0.001332,0.296565,-0.001551,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000020,0.000000,0.000000,0.000000,0.000013,0.000108,0.000063,0.000122,0.000000,0.000000,0.001287,0.295064,-0.001501,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000021,0.000000,0.000000,0.000000,0.000014,0.000105,0.000062,0.000119,0.000128,0.000128,0.001244,0.293468,-0.001596,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000021,0.000000,0.000000,0.000000,0.000014,0.000101,0.000060,0.000116,0.000346,0.000346,0.001203,0.291689,-0.001779,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000021,0.000000,0.000000,0.000000,0.000015,0.000098,0.000059,0.000113,0.000496,0.000496,0.001164,0.289798,-0.001891,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000021,0.000000,0.000000,0.000000,0.000016,0.000095,0.000057,0.000110,0.000615,0.000615,0.001127,0.287827,-0.001971,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000167,0.000000,0.000000,0.000000,0.000016,0.000092,0.000056,0.000108,0.000716,0.000716,0.001091,0.285939,-0.001888,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000089,0.000054,0.000106,0.000668,0.000668,0.001056,0.283970,-0.001968,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000086,0.000052,0.000104,0.000601,0.000601,0.001022,0.282107,-0.001864,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000083,0.000051,0.000102,0.000553,0.000553,0.000990,0.280327,-0.001780,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000081,0.000050,0.000100,0.000480,0.000480,0.000959,0.278653,-0.001673,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000078,0.000048,0.000098,0.000364,0.000364,0.000930,0.277126,-0.001527,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000076,0.000047,0.000096,0.000223,0.000223,0.000901,0.275767,-0.001359,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000073,0.000046,0.000095,0.000066,0.000066,0.000874,0.274587,-0.001179,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000071,0.000045,0.000093,0.000000,0.000000,0.000848,0.273496,-0.001091,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000069,0.000044,0.000092,0.000000,0.000000,0.000824,0.272426,-0.001070,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000067,0.000044,0.000090,0.000000,0.000000,0.000800,0.271377,-0.001049,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000065,0.000043,0.000089,0.000000,0.000000,0.000778,0.270349,-0.001029,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000063,0.000042,0.000088,0.000000,0.000000,0.000756,0.269340,-0.001008,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000062,0.000041,0.000087,0.000000,0.000000,0.000736,0.268352,-0.000989,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000060,0.000040,0.000086,0.000000,0.000000,0.000716,0.267382,-0.000969,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000058,0.000039,0.000085,0.000000,0.000000,0.000697,0.266432,-0.000950,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000057,0.000039,0.000085,0.000000,0.000000,0.000679,0.265500,-0.000932,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000055,0.000038,0.000084,0.000000,0.000000,0.000661,0.264586,-0.000914,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000054,0.000037,0.000083,0.000000,0.000000,0.000645,0.263690,-0.000896,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000053,0.000036,0.000083,0.000000,0.000000,0.000629,0.262812,-0.000878,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000051,0.000036,0.000082,0.000152,0.000152,0.000613,0.261802,-0.001010,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000050,0.000035,0.000081,0.000412,0.000412,0.000597,0.260556,-0.001246,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000049,0.000033,0.000081,0.000592,0.000592,0.000582,0.259159,-0.001397,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000047,0.000032,0.000080,0.000720,0.000720,0.000567,0.257663,-0.001495,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000046,0.000031,0.000080,0.000770,0.000770,0.000552,0.256147,-0.001516,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000045,0.000030,0.000079,0.000738,0.000738,0.000537,0.254692,-0.001455,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000199,0.000000,0.000000,0.000000,0.000035,0.000044,0.000029,0.000079,0.000642,0.000642,0.000522,0.253555,-0.001137,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000048,0.000000,0.000000,0.000000,0.000036,0.000042,0.000028,0.000079,0.000570,0.000570,0.000507,0.252362,-0.001193,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000041,0.000027,0.000078,0.000486,0.000486,0.000493,0.251229,-0.001133,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000040,0.000026,0.000078,0.000370,0.000370,0.000479,0.250232,-0.000997,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000039,0.000025,0.000077,0.000230,0.000230,0.000465,0.249391,-0.000841,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000038,0.000025,0.000077,0.000083,0.000083,0.000452,0.248711,-0.000680,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000037,0.000024,0.000077,0.000000,0.000000,0.000440,0.248125,-0.000586,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000036,0.000024,0.000077,0.000000,0.000000,0.000428,0.247551,-0.000574,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000035,0.000023,0.000076,0.000000,0.000000,0.000417,0.246987,-0.000563,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000034,0.000023,0.000076,0.000000,0.000000,0.000406,0.246435,-0.000552,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000033,0.000022,0.000076,0.000000,0.000000,0.000395,0.245894,-0.000541,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000032,0.000022,0.000076,0.000000,0.000000,0.000385,0.245363,-0.000531,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000031,0.000022,0.000076,0.000000,0.000000,0.000375,0.244843,-0.000520,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000031,0.000021,0.000076,0.000000,0.000000,0.000366,0.244333,-0.000510,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000030,0.000021,0.000076,0.000000,0.000000,0.000357,0.243832,-0.000500,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000029,0.000020,0.000076,0.000000,0.000000,0.000348,0.243342,-0.000491,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000028,0.000020,0.000076,0.000000,0.000000,0.000340,0.242861,-0.000481,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000028,0.000020,0.000076,0.000000,0.000000,0.000332,0.242389,-0.000472,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000027,0.000019,0.000076,0.000144,0.000144,0.000324,0.241786,-0.000603,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000026,0.000018,0.000076,0.000404,0.000404,0.000316,0.240940,-0.000846,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000026,0.000018,0.000076,0.000580,0.000580,0.000308,0.239937,-0.001003,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000025,0.000017,0.000077,0.000726,0.000726,0.000299,0.238811,-0.001126,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000024,0.000016,0.000077,0.000847,0.000847,0.000291,0.237588,-0.001223,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000024,0.000015,0.000077,0.000822,0.000822,0.000282,0.236413,-0.001175,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000023,0.000014,0.000077,0.000719,0.000719,0.000273,0.235362,-0.001051,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000022,0.000013,0.000077,0.000585,0.000585,0.000264,0.234463,-0.000899,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000021,0.000012,0.000077,0.000504,0.000504,0.000255,0.233661,-0.000802,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000021,0.000012,0.000077,0.000386,0.000386,0.000246,0.232991,-0.000670,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000020,0.000011,0.000077,0.000237,0.000237,0.000238,0.232480,-0.000511,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000019,0.000011,0.000077,0.000095,0.000095,0.000230,0.232118,-0.000362,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000019,0.000011,0.000077,0.000000,0.000000,0.000222,0.231857,-0.000262,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000018,0.000011,0.000077,0.000000,0.000000,0.000215,0.231600,-0.000257,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000017,0.000010,0.000077,0.000000,0.000000,0.000208,0.231348,-0.000252,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000017,0.000010,0.000077,0.000000,0.000000,0.000201,0.231102,-0.000247,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000016,0.000010,0.000078,0.000000,0.000000,0.000195,0.230860,-0.000242,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000016,0.000010,0.000078,0.000000,0.000000,0.000189,0.230623,-0.000237,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000015,0.000010,0.000078,0.000000,0.000000,0.000184,0.230390,-0.000233,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000015,0.000009,0.000078,0.000000,0.000000,0.000178,0.230162,-0.000228,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000014,0.000009,0.000079,0.000000,0.000000,0.000173,0.229939,-0.000224,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000014,0.000009,0.000079,0.000000,0.000000,0.000168,0.229720,-0.000219,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000014,0.000009,0.000079,0.000000,0.000000,0.000163,0.229505,-0.000215,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000013,0.000009,0.000080,0.000003,0.000003,0.000159,0.229291,-0.000214,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000013,0.000008,0.000080,0.000155,0.000155,0.000154,0.228932,-0.000358,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000012,0.000008,0.000080,0.000409,0.000409,0.000150,0.228332,-0.000601,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000012,0.000007,0.000081,0.000587,0.000587,0.000145,0.227568,-0.000763,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000012,0.000007,0.000081,0.000725,0.000725,0.000140,0.226685,-0.000883,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000011,0.000006,0.000081,0.000740,0.000740,0.000135,0.225804,-0.000881,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000011,0.000005,0.000081,0.000709,0.000709,0.000129,0.225032,-0.000772,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000010,0.000005,0.000082,0.000608,0.000608,0.000124,0.224374,-0.000658,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000072,0.000010,0.000004,0.000082,0.000511,0.000511,0.000118,0.223824,-0.000550,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000073,0.000009,0.000004,0.000082,0.000445,0.000445,0.000112,0.223350,-0.000475,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000064,0.000000,0.000000,0.000000,0.000073,0.000009,0.000004,0.000082,0.000345,0.000345,0.000107,0.222984,-0.000366,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000074,0.000008,0.000003,0.000083,0.000210,0.000210,0.000102,0.222757,-0.000227,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000327,0.000002,0.000004,0.000002,0.000075,0.000008,0.000003,0.000085,0.000089,0.000089,0.000097,0.222908,0.000151,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000521,0.000010,0.000017,0.000010,0.000075,0.000008,0.000004,0.000093,0.000000,0.000000,0.000093,0.223321,0.000413,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000484,0.000013,0.000014,0.000013,0.000076,0.000007,0.000004,0.000096,0.000000,0.000000,0.000090,0.223691,0.000370,1.000000,0.000010 +124,2022-08-06 04:00:00,0.000480,0.000015,0.000014,0.000015,0.000077,0.000007,0.000004,0.000099,0.000000,0.000000,0.000087,0.224050,0.000360,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000479,0.000014,0.000014,0.000014,0.000077,0.000007,0.000005,0.000099,0.000000,0.000000,0.000085,0.224402,0.000352,1.000000,0.000009 +126,2022-08-06 06:00:00,0.000479,0.000014,0.000014,0.000014,0.000078,0.000007,0.000005,0.000099,0.000000,0.000000,0.000083,0.224747,0.000345,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000079,0.000007,0.000005,0.000092,0.000000,0.000000,0.000081,0.224630,-0.000118,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000079,0.000007,0.000005,0.000089,0.000000,0.000000,0.000079,0.224514,-0.000115,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000006,0.000005,0.000086,0.000000,0.000000,0.000077,0.224401,-0.000113,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000006,0.000005,0.000087,0.000000,0.000000,0.000076,0.224290,-0.000111,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000006,0.000005,0.000087,0.000000,0.000000,0.000074,0.224181,-0.000109,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000006,0.000004,0.000088,0.000000,0.000000,0.000072,0.224074,-0.000107,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000006,0.000004,0.000088,0.000000,0.000000,0.000071,0.223970,-0.000105,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000006,0.000004,0.000089,0.000136,0.000136,0.000069,0.223734,-0.000236,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000004,0.000089,0.000390,0.000390,0.000067,0.223254,-0.000480,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000005,0.000003,0.000090,0.000576,0.000576,0.000065,0.222601,-0.000653,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000005,0.000003,0.000090,0.000716,0.000716,0.000063,0.221823,-0.000778,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000005,0.000002,0.000091,0.000840,0.000840,0.000059,0.220939,-0.000884,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000005,0.000001,0.000091,0.000809,0.000809,0.000056,0.220103,-0.000836,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000001,0.000091,0.000707,0.000707,0.000052,0.219383,-0.000720,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000000,0.000091,0.000595,0.000595,0.000048,0.218786,-0.000596,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000004,0.000000,0.000092,0.000505,0.000505,0.000044,0.218282,-0.000505,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000385,0.000383,0.000041,0.217898,-0.000383,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000232,0.000231,0.000038,0.217667,-0.000231,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000081,0.000080,0.000035,0.217588,-0.000080,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000000,0.000000,0.000032,0.217588,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000000,0.000000,0.000030,0.217588,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000028,0.217588,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000025,0.217588,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000023,0.217588,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000022,0.217588,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000095,0.000000,0.000000,0.000020,0.217588,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000096,0.000000,0.000000,0.000018,0.217588,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000017,0.217588,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000097,0.000000,0.000000,0.000016,0.217588,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000000,0.000000,0.000015,0.217588,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000098,0.000000,0.000000,0.000013,0.217588,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000135,0.000134,0.000012,0.217453,-0.000134,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000098,0.000391,0.000387,0.000011,0.217066,-0.000387,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000581,0.000573,0.000011,0.216493,-0.000573,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000099,0.000712,0.000699,0.000010,0.215794,-0.000699,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000818,0.000799,0.000009,0.214995,-0.000799,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000100,0.000782,0.000758,0.000008,0.214237,-0.000758,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000676,0.000652,0.000008,0.213585,-0.000652,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000600,0.000575,0.000007,0.213010,-0.000575,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000102,0.000510,0.000487,0.000007,0.212523,-0.000487,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000102,0.000389,0.000370,0.000006,0.212153,-0.000370,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000204,0.000193,0.000006,0.211960,-0.000193,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000042,0.000040,0.000005,0.211920,-0.000040,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000005,0.211920,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.211920,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.211920,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000004,0.211920,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.211920,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.211920,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.211920,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.211920,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000003,0.211920,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000002,0.211920,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000002,0.211920,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000000,0.000000,0.000002,0.211920,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000109,0.000113,0.000107,0.000002,0.211813,-0.000107,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000373,0.000352,0.000002,0.211461,-0.000352,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000564,0.000531,0.000002,0.210929,-0.000531,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000699,0.000655,0.000001,0.210274,-0.000655,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000819,0.000764,0.000001,0.209510,-0.000764,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000796,0.000737,0.000001,0.208773,-0.000737,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000689,0.000634,0.000001,0.208139,-0.000634,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000112,0.000610,0.000558,0.000001,0.207581,-0.000558,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000509,0.000463,0.000001,0.207118,-0.000463,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000387,0.000351,0.000001,0.206767,-0.000351,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000228,0.000206,0.000001,0.206561,-0.000206,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000066,0.000060,0.000001,0.206501,-0.000060,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.206501,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.206501,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.206501,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000001,0.206501,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000001,0.206501,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000000,0.206501,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000123,0.000111,0.000000,0.206390,-0.000111,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620754.csv b/test/channel_loss/channel_forcing/et/cat-2620754.csv new file mode 100644 index 000000000..0bae35c36 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620754.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.000826,0.000188,0.000826,0.000206,0.000206,0.009119,0.374713,-0.002920,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000769,0.000184,0.000769,0.000072,0.000072,0.008534,0.371800,-0.002913,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000717,0.000181,0.000717,0.000000,0.000000,0.007998,0.369017,-0.002783,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000670,0.000177,0.000670,0.000000,0.000000,0.007505,0.366291,-0.002726,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000626,0.000173,0.000627,0.000000,0.000000,0.007052,0.363621,-0.002669,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000587,0.000170,0.000587,0.000000,0.000000,0.006634,0.361007,-0.002614,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000551,0.000166,0.000551,0.000000,0.000000,0.006249,0.358447,-0.002560,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000518,0.000163,0.000518,0.000000,0.000000,0.005894,0.355939,-0.002508,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000488,0.000159,0.000488,0.000000,0.000000,0.005565,0.353483,-0.002456,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000460,0.000156,0.000461,0.000000,0.000000,0.005262,0.351078,-0.002405,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000434,0.000153,0.000435,0.000000,0.000000,0.004980,0.348722,-0.002356,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000410,0.000150,0.000412,0.000000,0.000000,0.004720,0.346415,-0.002307,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000388,0.000147,0.000390,0.000000,0.000000,0.004478,0.344156,-0.002259,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000368,0.000144,0.000370,0.000000,0.000000,0.004253,0.341943,-0.002213,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000349,0.000140,0.000351,0.000154,0.000154,0.004044,0.339625,-0.002318,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000332,0.000137,0.000334,0.000403,0.000403,0.003849,0.337111,-0.002514,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000316,0.000133,0.000318,0.000581,0.000581,0.003667,0.334475,-0.002636,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000301,0.000130,0.000303,0.000705,0.000705,0.003496,0.331771,-0.002704,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000286,0.000126,0.000290,0.000657,0.000657,0.003335,0.329170,-0.002601,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000300,0.000000,0.000000,0.000000,0.000004,0.000273,0.000123,0.000277,0.000636,0.000636,0.003185,0.326937,-0.002233,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000322,0.000000,0.000000,0.000000,0.000004,0.000261,0.000120,0.000265,0.000555,0.000555,0.003045,0.324851,-0.002086,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000387,0.000000,0.000000,0.000000,0.000004,0.000249,0.000118,0.000253,0.000435,0.000435,0.002913,0.322989,-0.001862,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000387,0.000000,0.000000,0.000000,0.000005,0.000238,0.000115,0.000243,0.000378,0.000378,0.002790,0.321222,-0.001768,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000438,0.000001,0.000001,0.000001,0.000005,0.000228,0.000113,0.000234,0.000288,0.000288,0.002675,0.319627,-0.001594,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000464,0.000002,0.000004,0.000002,0.000006,0.000219,0.000111,0.000227,0.000188,0.000188,0.002567,0.318186,-0.001441,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000896,0.000019,0.000033,0.000019,0.000006,0.000210,0.000110,0.000235,0.000096,0.000096,0.002467,0.317260,-0.000926,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000932,0.000033,0.000044,0.000033,0.000006,0.000202,0.000109,0.000241,0.000002,0.000002,0.002374,0.316470,-0.000790,1.000000,0.000026 +27,2022-08-02 03:00:00,0.000847,0.000037,0.000036,0.000037,0.000007,0.000194,0.000108,0.000239,0.000000,0.000000,0.002287,0.315622,-0.000848,1.000000,0.000025 +28,2022-08-02 04:00:00,0.000917,0.000041,0.000042,0.000041,0.000007,0.000187,0.000107,0.000236,0.000000,0.000000,0.002206,0.314855,-0.000768,1.000000,0.000026 +29,2022-08-02 05:00:00,0.000875,0.000039,0.000039,0.000039,0.000008,0.000181,0.000105,0.000228,0.000000,0.000000,0.002131,0.314065,-0.000789,1.000000,0.000026 +30,2022-08-02 06:00:00,0.000851,0.000038,0.000037,0.000038,0.000008,0.000175,0.000104,0.000221,0.000000,0.000000,0.002060,0.313271,-0.000795,1.000000,0.000024 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000009,0.000169,0.000102,0.000195,0.000000,0.000000,0.001993,0.311695,-0.001576,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000009,0.000164,0.000100,0.000180,0.000000,0.000000,0.001930,0.310152,-0.001543,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000158,0.000098,0.000168,0.000000,0.000000,0.001870,0.308640,-0.001511,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000153,0.000096,0.000164,0.000000,0.000000,0.001812,0.307160,-0.001480,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000149,0.000094,0.000160,0.000000,0.000000,0.001757,0.305710,-0.001450,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000144,0.000092,0.000156,0.000000,0.000000,0.001705,0.304291,-0.001420,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000020,0.000000,0.000000,0.000000,0.000012,0.000140,0.000090,0.000152,0.000000,0.000000,0.001656,0.302919,-0.001371,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000020,0.000000,0.000000,0.000000,0.000013,0.000136,0.000088,0.000148,0.000128,0.000128,0.001608,0.301451,-0.001469,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000020,0.000000,0.000000,0.000000,0.000013,0.000132,0.000086,0.000145,0.000347,0.000347,0.001562,0.299799,-0.001652,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000019,0.000000,0.000000,0.000000,0.000014,0.000128,0.000084,0.000142,0.000495,0.000495,0.001517,0.298035,-0.001764,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000012,0.000000,0.000000,0.000000,0.000014,0.000124,0.000081,0.000139,0.000611,0.000611,0.001474,0.296187,-0.001847,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000178,0.000000,0.000000,0.000000,0.000015,0.000121,0.000079,0.000136,0.000710,0.000710,0.001432,0.294443,-0.001744,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000117,0.000076,0.000133,0.000663,0.000663,0.001391,0.292606,-0.001837,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000114,0.000074,0.000130,0.000591,0.000591,0.001351,0.290877,-0.001729,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000111,0.000072,0.000127,0.000545,0.000545,0.001312,0.289230,-0.001647,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000107,0.000069,0.000125,0.000475,0.000475,0.001274,0.287685,-0.001545,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000104,0.000067,0.000122,0.000360,0.000360,0.001237,0.286285,-0.001400,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000101,0.000066,0.000120,0.000221,0.000221,0.001202,0.285050,-0.001236,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000098,0.000064,0.000117,0.000065,0.000065,0.001168,0.283992,-0.001058,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000096,0.000063,0.000115,0.000000,0.000000,0.001135,0.283020,-0.000972,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000093,0.000062,0.000113,0.000000,0.000000,0.001104,0.282069,-0.000952,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000090,0.000060,0.000111,0.000000,0.000000,0.001074,0.281136,-0.000932,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000088,0.000059,0.000110,0.000000,0.000000,0.001046,0.280224,-0.000913,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000086,0.000058,0.000108,0.000000,0.000000,0.001018,0.279330,-0.000894,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000083,0.000057,0.000106,0.000000,0.000000,0.000991,0.278454,-0.000876,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000081,0.000056,0.000105,0.000000,0.000000,0.000966,0.277597,-0.000857,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000079,0.000054,0.000103,0.000000,0.000000,0.000941,0.276757,-0.000840,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000077,0.000053,0.000102,0.000000,0.000000,0.000918,0.275934,-0.000822,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000075,0.000052,0.000101,0.000000,0.000000,0.000895,0.275129,-0.000806,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000073,0.000051,0.000100,0.000000,0.000000,0.000873,0.274340,-0.000789,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000071,0.000050,0.000099,0.000000,0.000000,0.000851,0.273567,-0.000773,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000070,0.000049,0.000097,0.000153,0.000153,0.000831,0.272660,-0.000907,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000068,0.000047,0.000096,0.000413,0.000413,0.000810,0.271518,-0.001143,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000066,0.000046,0.000095,0.000590,0.000590,0.000789,0.270226,-0.001292,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000064,0.000044,0.000094,0.000712,0.000712,0.000768,0.268840,-0.001385,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000063,0.000042,0.000093,0.000764,0.000764,0.000748,0.267433,-0.001407,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000061,0.000040,0.000092,0.000731,0.000731,0.000727,0.266087,-0.001346,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000515,0.000000,0.000000,0.000000,0.000032,0.000059,0.000039,0.000091,0.000632,0.000632,0.000706,0.265370,-0.000717,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000112,0.000000,0.000000,0.000000,0.000033,0.000058,0.000038,0.000090,0.000567,0.000567,0.000686,0.264337,-0.001032,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000056,0.000036,0.000089,0.000484,0.000484,0.000666,0.263298,-0.001040,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000054,0.000035,0.000088,0.000368,0.000368,0.000647,0.262393,-0.000905,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000053,0.000034,0.000087,0.000228,0.000228,0.000628,0.261643,-0.000750,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000051,0.000033,0.000086,0.000082,0.000082,0.000610,0.261052,-0.000591,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000050,0.000032,0.000086,0.000000,0.000000,0.000593,0.260554,-0.000498,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000048,0.000032,0.000085,0.000000,0.000000,0.000576,0.260065,-0.000488,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000047,0.000031,0.000084,0.000000,0.000000,0.000560,0.259587,-0.000478,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000046,0.000030,0.000084,0.000000,0.000000,0.000545,0.259119,-0.000468,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000044,0.000030,0.000083,0.000000,0.000000,0.000531,0.258660,-0.000459,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000043,0.000029,0.000083,0.000000,0.000000,0.000516,0.258211,-0.000449,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000042,0.000029,0.000082,0.000000,0.000000,0.000503,0.257771,-0.000440,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000041,0.000028,0.000082,0.000000,0.000000,0.000490,0.257341,-0.000431,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000040,0.000027,0.000081,0.000000,0.000000,0.000477,0.256919,-0.000422,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000039,0.000027,0.000081,0.000000,0.000000,0.000465,0.256505,-0.000413,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000038,0.000026,0.000081,0.000000,0.000000,0.000454,0.256101,-0.000405,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000037,0.000026,0.000081,0.000000,0.000000,0.000442,0.255704,-0.000396,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000036,0.000025,0.000080,0.000145,0.000145,0.000431,0.255174,-0.000530,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000035,0.000024,0.000080,0.000404,0.000404,0.000420,0.254402,-0.000773,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000034,0.000023,0.000080,0.000578,0.000578,0.000409,0.253475,-0.000927,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000033,0.000021,0.000079,0.000721,0.000721,0.000397,0.252426,-0.001048,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000032,0.000020,0.000079,0.000836,0.000836,0.000384,0.251287,-0.001140,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000031,0.000018,0.000079,0.000812,0.000812,0.000371,0.250194,-0.001092,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000030,0.000017,0.000078,0.000710,0.000710,0.000358,0.249225,-0.000970,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000029,0.000016,0.000078,0.000575,0.000575,0.000345,0.248407,-0.000818,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000028,0.000015,0.000077,0.000498,0.000498,0.000332,0.247682,-0.000725,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000027,0.000014,0.000077,0.000381,0.000381,0.000319,0.247086,-0.000596,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000026,0.000013,0.000077,0.000235,0.000235,0.000307,0.246645,-0.000441,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000025,0.000013,0.000076,0.000095,0.000095,0.000295,0.246351,-0.000294,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000024,0.000013,0.000076,0.000000,0.000000,0.000284,0.246156,-0.000195,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000023,0.000012,0.000076,0.000000,0.000000,0.000274,0.245964,-0.000191,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000022,0.000012,0.000076,0.000000,0.000000,0.000264,0.245777,-0.000187,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000021,0.000012,0.000076,0.000000,0.000000,0.000255,0.245594,-0.000183,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000021,0.000012,0.000075,0.000000,0.000000,0.000246,0.245414,-0.000180,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000020,0.000011,0.000075,0.000000,0.000000,0.000237,0.245238,-0.000176,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000019,0.000011,0.000075,0.000000,0.000000,0.000229,0.245066,-0.000172,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000019,0.000011,0.000075,0.000000,0.000000,0.000222,0.244897,-0.000169,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000018,0.000011,0.000075,0.000000,0.000000,0.000215,0.244732,-0.000165,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000017,0.000010,0.000075,0.000000,0.000000,0.000208,0.244570,-0.000162,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000017,0.000010,0.000076,0.000000,0.000000,0.000201,0.244412,-0.000158,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000016,0.000010,0.000076,0.000003,0.000003,0.000195,0.244253,-0.000159,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000016,0.000010,0.000076,0.000156,0.000156,0.000189,0.243948,-0.000305,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000015,0.000009,0.000076,0.000410,0.000410,0.000183,0.243402,-0.000547,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000015,0.000008,0.000076,0.000585,0.000585,0.000176,0.242695,-0.000707,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000014,0.000007,0.000076,0.000718,0.000718,0.000169,0.241872,-0.000823,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000013,0.000006,0.000076,0.000730,0.000730,0.000161,0.241054,-0.000818,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000013,0.000005,0.000076,0.000700,0.000700,0.000153,0.240345,-0.000709,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000012,0.000004,0.000076,0.000598,0.000598,0.000145,0.239750,-0.000595,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000011,0.000003,0.000076,0.000501,0.000501,0.000137,0.239262,-0.000488,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000011,0.000003,0.000076,0.000437,0.000437,0.000129,0.238847,-0.000415,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000118,0.000000,0.000000,0.000000,0.000065,0.000010,0.000002,0.000076,0.000339,0.000339,0.000121,0.238590,-0.000257,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000009,0.000002,0.000076,0.000208,0.000208,0.000113,0.238413,-0.000177,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000526,0.000005,0.000008,0.000005,0.000067,0.000009,0.000003,0.000080,0.000089,0.000089,0.000107,0.238801,0.000387,1.000000,0.000004 +122,2022-08-06 02:00:00,0.000664,0.000013,0.000019,0.000013,0.000067,0.000009,0.000003,0.000088,0.000000,0.000000,0.000102,0.239392,0.000592,1.000000,0.000010 +123,2022-08-06 03:00:00,0.000542,0.000014,0.000013,0.000014,0.000068,0.000008,0.000004,0.000090,0.000000,0.000000,0.000098,0.239859,0.000467,1.000000,0.000010 +124,2022-08-06 04:00:00,0.000502,0.000013,0.000011,0.000013,0.000068,0.000008,0.000005,0.000089,0.000000,0.000000,0.000095,0.240278,0.000419,1.000000,0.000008 +125,2022-08-06 05:00:00,0.000491,0.000011,0.000011,0.000011,0.000069,0.000008,0.000005,0.000088,0.000000,0.000000,0.000092,0.240679,0.000401,1.000000,0.000007 +126,2022-08-06 06:00:00,0.000491,0.000011,0.000011,0.000011,0.000070,0.000008,0.000006,0.000088,0.000000,0.000000,0.000090,0.241071,0.000393,1.000000,0.000007 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000070,0.000007,0.000006,0.000082,0.000000,0.000000,0.000089,0.240985,-0.000086,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000071,0.000007,0.000005,0.000080,0.000000,0.000000,0.000087,0.240900,-0.000085,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000007,0.000005,0.000078,0.000000,0.000000,0.000085,0.240818,-0.000083,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000007,0.000005,0.000079,0.000000,0.000000,0.000083,0.240737,-0.000081,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000007,0.000005,0.000079,0.000000,0.000000,0.000082,0.240657,-0.000079,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000007,0.000005,0.000080,0.000000,0.000000,0.000080,0.240579,-0.000078,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000007,0.000005,0.000080,0.000000,0.000000,0.000079,0.240503,-0.000076,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000006,0.000005,0.000080,0.000137,0.000137,0.000077,0.240295,-0.000208,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000006,0.000004,0.000081,0.000390,0.000390,0.000075,0.239842,-0.000452,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000006,0.000003,0.000081,0.000575,0.000575,0.000072,0.239218,-0.000624,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000006,0.000002,0.000081,0.000711,0.000711,0.000068,0.238474,-0.000744,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000005,0.000001,0.000081,0.000833,0.000833,0.000064,0.237625,-0.000849,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000000,0.000082,0.000799,0.000799,0.000059,0.236825,-0.000799,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000000,0.000082,0.000697,0.000697,0.000054,0.236128,-0.000697,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000000,0.000082,0.000586,0.000583,0.000050,0.235546,-0.000583,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000004,0.000000,0.000082,0.000498,0.000493,0.000046,0.235053,-0.000493,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000004,0.000000,0.000082,0.000380,0.000375,0.000043,0.234678,-0.000375,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000003,0.000000,0.000083,0.000231,0.000228,0.000040,0.234450,-0.000228,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000080,0.000079,0.000037,0.234371,-0.000079,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000003,0.000000,0.000083,0.000000,0.000000,0.000034,0.234371,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000003,0.000000,0.000083,0.000000,0.000000,0.000031,0.234371,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000002,0.000000,0.000084,0.000000,0.000000,0.000029,0.234371,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000027,0.234371,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000002,0.000000,0.000084,0.000000,0.000000,0.000024,0.234371,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000023,0.234371,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000002,0.000000,0.000085,0.000000,0.000000,0.000021,0.234371,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000002,0.000000,0.000085,0.000000,0.000000,0.000019,0.234371,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000001,0.000000,0.000086,0.000000,0.000000,0.000018,0.234371,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000016,0.234371,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000086,0.000000,0.000000,0.000015,0.234371,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000001,0.000000,0.000087,0.000000,0.000000,0.000014,0.234371,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000137,0.000134,0.000013,0.234237,-0.000134,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000001,0.000000,0.000087,0.000392,0.000385,0.000012,0.233852,-0.000385,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000581,0.000569,0.000011,0.233283,-0.000569,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000001,0.000000,0.000088,0.000706,0.000689,0.000010,0.232594,-0.000689,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000088,0.000813,0.000789,0.000009,0.231805,-0.000789,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000001,0.000000,0.000089,0.000777,0.000750,0.000009,0.231056,-0.000750,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000089,0.000669,0.000642,0.000008,0.230414,-0.000642,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000595,0.000568,0.000007,0.229846,-0.000568,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000001,0.000000,0.000090,0.000507,0.000482,0.000007,0.229364,-0.000482,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000001,0.000000,0.000090,0.000387,0.000366,0.000006,0.228997,-0.000366,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000091,0.000203,0.000191,0.000006,0.228806,-0.000191,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000042,0.000040,0.000005,0.228766,-0.000040,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000092,0.000000,0.000000,0.000005,0.228766,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000005,0.228766,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000000,0.000000,0.000004,0.228766,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000093,0.000000,0.000000,0.000004,0.228766,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000004,0.228766,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000000,0.000000,0.000003,0.228766,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.228766,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000000,0.000000,0.000003,0.228766,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000095,0.000000,0.000000,0.000003,0.228766,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.228766,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000002,0.228766,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000096,0.000000,0.000000,0.000002,0.228766,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000114,0.000107,0.000002,0.228659,-0.000107,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000373,0.000352,0.000002,0.228307,-0.000352,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000563,0.000530,0.000002,0.227777,-0.000530,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000693,0.000649,0.000001,0.227128,-0.000649,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000808,0.000753,0.000001,0.226374,-0.000753,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000789,0.000731,0.000001,0.225643,-0.000731,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000677,0.000624,0.000001,0.225019,-0.000624,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000603,0.000553,0.000001,0.224466,-0.000553,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000505,0.000462,0.000001,0.224004,-0.000462,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000384,0.000350,0.000001,0.223654,-0.000350,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000227,0.000206,0.000001,0.223447,-0.000206,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000066,0.000060,0.000001,0.223387,-0.000060,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.223387,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000000,0.000000,0.000001,0.223387,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.223387,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.223387,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000001,0.223387,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000000,0.223387,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000124,0.000113,0.000000,0.223275,-0.000113,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620755.csv b/test/channel_loss/channel_forcing/et/cat-2620755.csv new file mode 100644 index 000000000..3b67a8bb2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620755.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000155,0.000000,0.000000,0.000000,0.000000,0.000828,0.000212,0.000828,0.000199,0.000199,0.009145,0.369875,-0.003197,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000773,0.000207,0.000773,0.000066,0.000066,0.008579,0.366722,-0.003154,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000722,0.000203,0.000722,0.000000,0.000000,0.008060,0.363696,-0.003025,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000677,0.000199,0.000677,0.000000,0.000000,0.007583,0.360732,-0.002964,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000635,0.000195,0.000635,0.000000,0.000000,0.007143,0.357829,-0.002904,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000596,0.000191,0.000597,0.000000,0.000000,0.006737,0.354984,-0.002845,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000561,0.000187,0.000562,0.000000,0.000000,0.006363,0.352197,-0.002787,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000529,0.000183,0.000530,0.000000,0.000000,0.006017,0.349466,-0.002731,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000500,0.000180,0.000500,0.000000,0.000000,0.005697,0.346791,-0.002675,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000472,0.000176,0.000473,0.000000,0.000000,0.005401,0.344170,-0.002621,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000447,0.000172,0.000448,0.000000,0.000000,0.005127,0.341602,-0.002568,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000424,0.000169,0.000425,0.000000,0.000000,0.004872,0.339086,-0.002516,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000402,0.000166,0.000404,0.000000,0.000000,0.004635,0.336621,-0.002465,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000382,0.000162,0.000384,0.000000,0.000000,0.004414,0.334206,-0.002415,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000364,0.000159,0.000366,0.000148,0.000148,0.004209,0.331696,-0.002511,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000347,0.000155,0.000349,0.000394,0.000394,0.004017,0.328994,-0.002701,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000331,0.000151,0.000334,0.000571,0.000571,0.003837,0.326175,-0.002820,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000316,0.000147,0.000319,0.000695,0.000695,0.003669,0.323291,-0.002884,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000302,0.000143,0.000305,0.000629,0.000629,0.003510,0.320530,-0.002761,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000368,0.000000,0.000000,0.000000,0.000004,0.000288,0.000140,0.000292,0.000605,0.000605,0.003362,0.318209,-0.002321,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000356,0.000000,0.000000,0.000000,0.000004,0.000276,0.000137,0.000280,0.000525,0.000525,0.003222,0.316002,-0.002207,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000374,0.000000,0.000000,0.000000,0.000005,0.000265,0.000134,0.000269,0.000409,0.000409,0.003092,0.313972,-0.002030,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000333,0.000000,0.000000,0.000000,0.000005,0.000254,0.000131,0.000259,0.000358,0.000358,0.002969,0.311992,-0.001980,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000336,0.000000,0.000000,0.000000,0.000006,0.000244,0.000129,0.000249,0.000270,0.000270,0.002854,0.310141,-0.001851,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000329,0.000001,0.000001,0.000001,0.000006,0.000234,0.000126,0.000241,0.000181,0.000181,0.002746,0.308407,-0.001734,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000622,0.000007,0.000012,0.000007,0.000006,0.000225,0.000124,0.000239,0.000088,0.000088,0.002645,0.307076,-0.001331,1.000000,0.000006 +26,2022-08-02 02:00:00,0.000916,0.000023,0.000035,0.000023,0.000007,0.000217,0.000123,0.000247,0.000000,0.000000,0.002551,0.306123,-0.000953,1.000000,0.000018 +27,2022-08-02 03:00:00,0.000893,0.000030,0.000033,0.000030,0.000007,0.000210,0.000122,0.000247,0.000000,0.000000,0.002463,0.305169,-0.000954,1.000000,0.000022 +28,2022-08-02 04:00:00,0.000974,0.000037,0.000040,0.000037,0.000008,0.000203,0.000121,0.000248,0.000000,0.000000,0.002381,0.304307,-0.000862,1.000000,0.000025 +29,2022-08-02 05:00:00,0.000951,0.000037,0.000038,0.000037,0.000008,0.000196,0.000119,0.000242,0.000000,0.000000,0.002305,0.303443,-0.000864,1.000000,0.000025 +30,2022-08-02 06:00:00,0.000977,0.000039,0.000040,0.000039,0.000009,0.000190,0.000118,0.000238,0.000000,0.000000,0.002233,0.302619,-0.000824,1.000000,0.000025 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000010,0.000184,0.000116,0.000211,0.000000,0.000000,0.002165,0.300893,-0.001725,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000010,0.000178,0.000114,0.000196,0.000000,0.000000,0.002101,0.299203,-0.001690,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000173,0.000111,0.000184,0.000000,0.000000,0.002039,0.297547,-0.001656,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000168,0.000109,0.000179,0.000000,0.000000,0.001980,0.295925,-0.001622,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000163,0.000107,0.000175,0.000000,0.000000,0.001924,0.294335,-0.001589,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000158,0.000105,0.000171,0.000000,0.000000,0.001870,0.292778,-0.001557,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000092,0.000000,0.000000,0.000000,0.000013,0.000154,0.000103,0.000167,0.000000,0.000000,0.001819,0.291343,-0.001436,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000092,0.000000,0.000000,0.000000,0.000014,0.000150,0.000100,0.000163,0.000125,0.000125,0.001770,0.289814,-0.001529,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000092,0.000000,0.000000,0.000000,0.000014,0.000146,0.000098,0.000160,0.000340,0.000340,0.001722,0.288106,-0.001708,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000092,0.000000,0.000000,0.000000,0.000015,0.000142,0.000096,0.000157,0.000487,0.000487,0.001676,0.286289,-0.001817,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000092,0.000000,0.000000,0.000000,0.000016,0.000138,0.000093,0.000153,0.000598,0.000598,0.001631,0.284399,-0.001890,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000471,0.000000,0.000000,0.000000,0.000016,0.000134,0.000091,0.000150,0.000684,0.000684,0.001588,0.282834,-0.001565,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000130,0.000088,0.000147,0.000621,0.000621,0.001546,0.280902,-0.001932,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000127,0.000086,0.000144,0.000568,0.000568,0.001504,0.279061,-0.001841,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000123,0.000083,0.000142,0.000535,0.000535,0.001464,0.277289,-0.001772,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000120,0.000081,0.000139,0.000467,0.000467,0.001424,0.275620,-0.001669,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000117,0.000079,0.000136,0.000351,0.000351,0.001386,0.274098,-0.001522,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000114,0.000077,0.000134,0.000214,0.000214,0.001349,0.272741,-0.001357,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000111,0.000075,0.000132,0.000059,0.000059,0.001314,0.271564,-0.001177,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000108,0.000074,0.000129,0.000000,0.000000,0.001280,0.270468,-0.001095,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000105,0.000072,0.000127,0.000000,0.000000,0.001247,0.269395,-0.001073,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000102,0.000071,0.000125,0.000000,0.000000,0.001215,0.268344,-0.001051,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000100,0.000069,0.000123,0.000000,0.000000,0.001185,0.267314,-0.001030,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000097,0.000068,0.000122,0.000000,0.000000,0.001155,0.266304,-0.001009,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000095,0.000066,0.000120,0.000000,0.000000,0.001127,0.265316,-0.000989,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000092,0.000065,0.000118,0.000000,0.000000,0.001099,0.264347,-0.000969,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000090,0.000064,0.000117,0.000000,0.000000,0.001073,0.263398,-0.000949,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000088,0.000062,0.000115,0.000000,0.000000,0.001047,0.262468,-0.000930,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000086,0.000061,0.000114,0.000000,0.000000,0.001023,0.261557,-0.000911,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000084,0.000060,0.000113,0.000000,0.000000,0.000999,0.260664,-0.000892,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000082,0.000059,0.000111,0.000000,0.000000,0.000976,0.259790,-0.000874,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000080,0.000057,0.000110,0.000147,0.000147,0.000953,0.258789,-0.001001,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000078,0.000056,0.000109,0.000408,0.000408,0.000930,0.257553,-0.001236,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000076,0.000054,0.000108,0.000584,0.000584,0.000908,0.256170,-0.001383,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000074,0.000052,0.000107,0.000704,0.000704,0.000885,0.254697,-0.001473,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000072,0.000050,0.000106,0.000734,0.000734,0.000863,0.253225,-0.001472,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000070,0.000048,0.000105,0.000699,0.000699,0.000840,0.251816,-0.001409,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000670,0.000000,0.000000,0.000000,0.000035,0.000069,0.000047,0.000104,0.000607,0.000607,0.000818,0.251183,-0.000633,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000182,0.000000,0.000000,0.000000,0.000036,0.000067,0.000045,0.000102,0.000542,0.000542,0.000796,0.250148,-0.001035,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000065,0.000044,0.000101,0.000463,0.000463,0.000775,0.249034,-0.001115,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000063,0.000042,0.000100,0.000354,0.000354,0.000754,0.248049,-0.000985,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000062,0.000041,0.000099,0.000222,0.000222,0.000734,0.247212,-0.000836,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000060,0.000040,0.000098,0.000074,0.000074,0.000715,0.246538,-0.000674,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000058,0.000039,0.000098,0.000000,0.000000,0.000696,0.245951,-0.000588,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000057,0.000039,0.000097,0.000000,0.000000,0.000678,0.245375,-0.000576,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000055,0.000038,0.000096,0.000000,0.000000,0.000660,0.244810,-0.000564,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000054,0.000037,0.000096,0.000000,0.000000,0.000644,0.244257,-0.000553,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000053,0.000036,0.000095,0.000000,0.000000,0.000627,0.243716,-0.000542,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000051,0.000036,0.000094,0.000000,0.000000,0.000612,0.243185,-0.000531,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000050,0.000035,0.000094,0.000000,0.000000,0.000597,0.242665,-0.000520,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000049,0.000034,0.000093,0.000000,0.000000,0.000582,0.242156,-0.000509,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000048,0.000034,0.000093,0.000000,0.000000,0.000568,0.241657,-0.000499,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000046,0.000033,0.000093,0.000000,0.000000,0.000555,0.241168,-0.000489,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000045,0.000032,0.000092,0.000000,0.000000,0.000542,0.240689,-0.000479,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000044,0.000032,0.000092,0.000000,0.000000,0.000529,0.240220,-0.000469,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000043,0.000031,0.000092,0.000141,0.000141,0.000516,0.239622,-0.000597,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000042,0.000030,0.000091,0.000403,0.000403,0.000504,0.238780,-0.000842,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000041,0.000028,0.000091,0.000572,0.000572,0.000491,0.237789,-0.000991,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000040,0.000027,0.000091,0.000706,0.000706,0.000478,0.236687,-0.001102,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000039,0.000025,0.000090,0.000810,0.000810,0.000464,0.235505,-0.001182,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000038,0.000023,0.000090,0.000780,0.000780,0.000450,0.234376,-0.001128,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000036,0.000022,0.000089,0.000675,0.000675,0.000435,0.233374,-0.001003,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000035,0.000021,0.000089,0.000565,0.000565,0.000421,0.232499,-0.000875,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000034,0.000020,0.000088,0.000490,0.000490,0.000407,0.231716,-0.000784,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000033,0.000019,0.000088,0.000373,0.000373,0.000393,0.231063,-0.000653,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000032,0.000018,0.000088,0.000229,0.000229,0.000379,0.230564,-0.000499,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000031,0.000018,0.000087,0.000086,0.000086,0.000366,0.230216,-0.000348,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000030,0.000017,0.000087,0.000000,0.000000,0.000354,0.229959,-0.000257,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000029,0.000017,0.000087,0.000000,0.000000,0.000342,0.229708,-0.000252,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000028,0.000017,0.000087,0.000000,0.000000,0.000331,0.229461,-0.000247,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000027,0.000016,0.000086,0.000000,0.000000,0.000321,0.229219,-0.000242,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000026,0.000016,0.000086,0.000000,0.000000,0.000310,0.228983,-0.000237,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000025,0.000016,0.000086,0.000000,0.000000,0.000301,0.228751,-0.000232,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000024,0.000015,0.000086,0.000000,0.000000,0.000292,0.228524,-0.000227,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000024,0.000015,0.000086,0.000000,0.000000,0.000283,0.228301,-0.000223,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000023,0.000015,0.000086,0.000000,0.000000,0.000275,0.228083,-0.000218,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000022,0.000014,0.000086,0.000000,0.000000,0.000267,0.227869,-0.000214,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000022,0.000014,0.000086,0.000000,0.000000,0.000259,0.227660,-0.000209,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000021,0.000014,0.000086,0.000000,0.000000,0.000252,0.227455,-0.000205,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000020,0.000013,0.000086,0.000151,0.000151,0.000245,0.227106,-0.000349,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000020,0.000012,0.000087,0.000404,0.000404,0.000238,0.226516,-0.000590,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000019,0.000011,0.000087,0.000578,0.000578,0.000230,0.225768,-0.000748,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000018,0.000010,0.000087,0.000706,0.000706,0.000222,0.224910,-0.000858,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000018,0.000009,0.000087,0.000708,0.000708,0.000213,0.224067,-0.000843,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000017,0.000008,0.000086,0.000668,0.000668,0.000204,0.223342,-0.000725,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000016,0.000007,0.000086,0.000575,0.000575,0.000195,0.222724,-0.000619,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000015,0.000006,0.000086,0.000495,0.000495,0.000186,0.222196,-0.000528,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000071,0.000015,0.000006,0.000086,0.000437,0.000437,0.000177,0.221735,-0.000460,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000075,0.000000,0.000000,0.000000,0.000072,0.000014,0.000005,0.000086,0.000338,0.000338,0.000168,0.221393,-0.000343,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000073,0.000013,0.000005,0.000086,0.000207,0.000207,0.000160,0.221173,-0.000219,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000338,0.000001,0.000002,0.000001,0.000073,0.000013,0.000005,0.000088,0.000082,0.000082,0.000153,0.221348,0.000175,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000459,0.000005,0.000008,0.000005,0.000074,0.000012,0.000006,0.000091,0.000000,0.000000,0.000146,0.221713,0.000365,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000441,0.000006,0.000007,0.000006,0.000075,0.000012,0.000006,0.000093,0.000000,0.000000,0.000141,0.222054,0.000340,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000421,0.000007,0.000006,0.000007,0.000075,0.000011,0.000007,0.000094,0.000000,0.000000,0.000136,0.222368,0.000314,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000418,0.000006,0.000006,0.000006,0.000076,0.000011,0.000007,0.000094,0.000000,0.000000,0.000132,0.222673,0.000305,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000418,0.000006,0.000006,0.000006,0.000077,0.000011,0.000008,0.000094,0.000000,0.000000,0.000129,0.222973,0.000299,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000077,0.000010,0.000007,0.000091,0.000000,0.000000,0.000126,0.222863,-0.000110,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000078,0.000010,0.000007,0.000089,0.000000,0.000000,0.000123,0.222755,-0.000108,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000010,0.000007,0.000089,0.000000,0.000000,0.000120,0.222649,-0.000106,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000010,0.000007,0.000089,0.000000,0.000000,0.000117,0.222546,-0.000103,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000010,0.000007,0.000089,0.000000,0.000000,0.000114,0.222444,-0.000101,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000009,0.000007,0.000090,0.000000,0.000000,0.000112,0.222345,-0.000099,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000009,0.000007,0.000090,0.000000,0.000000,0.000109,0.222248,-0.000097,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000009,0.000006,0.000091,0.000132,0.000132,0.000107,0.222024,-0.000224,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000009,0.000006,0.000091,0.000388,0.000388,0.000103,0.221553,-0.000471,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000008,0.000005,0.000091,0.000564,0.000564,0.000100,0.220919,-0.000634,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000008,0.000004,0.000091,0.000691,0.000691,0.000096,0.220174,-0.000745,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000008,0.000002,0.000092,0.000792,0.000792,0.000091,0.219345,-0.000829,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000007,0.000001,0.000092,0.000759,0.000759,0.000085,0.218565,-0.000780,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000007,0.000000,0.000092,0.000663,0.000663,0.000079,0.217895,-0.000670,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000006,0.000000,0.000092,0.000572,0.000572,0.000073,0.217324,-0.000572,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000006,0.000000,0.000092,0.000490,0.000489,0.000067,0.216835,-0.000489,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000005,0.000000,0.000092,0.000371,0.000369,0.000062,0.216466,-0.000369,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000005,0.000000,0.000092,0.000222,0.000220,0.000057,0.216246,-0.000220,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000004,0.000000,0.000093,0.000072,0.000072,0.000053,0.216174,-0.000072,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000004,0.000000,0.000093,0.000000,0.000000,0.000049,0.216174,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000004,0.000000,0.000093,0.000000,0.000000,0.000045,0.216174,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000000,0.000000,0.000042,0.216174,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000094,0.000000,0.000000,0.000038,0.216174,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000003,0.000000,0.000094,0.000000,0.000000,0.000035,0.216174,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000003,0.000000,0.000094,0.000000,0.000000,0.000033,0.216174,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000003,0.000000,0.000095,0.000000,0.000000,0.000030,0.216174,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000028,0.216174,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000026,0.216174,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000096,0.000000,0.000000,0.000024,0.216174,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000096,0.000000,0.000000,0.000022,0.216174,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000002,0.000000,0.000096,0.000000,0.000000,0.000020,0.216174,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000002,0.000000,0.000097,0.000132,0.000131,0.000019,0.216044,-0.000131,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000390,0.000386,0.000017,0.215658,-0.000386,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000098,0.000572,0.000563,0.000016,0.215095,-0.000563,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000694,0.000681,0.000015,0.214414,-0.000681,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000782,0.000764,0.000014,0.213650,-0.000764,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000738,0.000716,0.000013,0.212934,-0.000716,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000636,0.000613,0.000012,0.212321,-0.000613,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000577,0.000554,0.000011,0.211767,-0.000554,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000492,0.000470,0.000010,0.211296,-0.000470,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000100,0.000374,0.000356,0.000009,0.210940,-0.000356,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000195,0.000185,0.000008,0.210755,-0.000185,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000037,0.000035,0.000008,0.210719,-0.000035,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000102,0.000000,0.000000,0.000007,0.210719,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000102,0.000000,0.000000,0.000007,0.210719,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000001,0.000000,0.000103,0.000000,0.000000,0.000006,0.210719,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000000,0.000000,0.000006,0.210719,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000005,0.210719,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000005,0.210719,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.210719,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000004,0.210719,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000004,0.210719,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.210719,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.210719,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.210719,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000107,0.000110,0.000104,0.000003,0.210615,-0.000104,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000372,0.000353,0.000003,0.210263,-0.000353,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000557,0.000526,0.000002,0.209737,-0.000526,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000683,0.000642,0.000002,0.209095,-0.000642,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000786,0.000735,0.000002,0.208360,-0.000735,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000752,0.000699,0.000002,0.207661,-0.000699,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000651,0.000601,0.000002,0.207059,-0.000601,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000585,0.000538,0.000002,0.206521,-0.000538,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000491,0.000450,0.000001,0.206071,-0.000450,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000371,0.000338,0.000001,0.205733,-0.000338,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000111,0.000218,0.000198,0.000001,0.205534,-0.000198,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000057,0.000052,0.000001,0.205483,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000001,0.205483,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.205483,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.205483,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000120,0.000109,0.000000,0.205374,-0.000109,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620756.csv b/test/channel_loss/channel_forcing/et/cat-2620756.csv new file mode 100644 index 000000000..21b3c9b18 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620756.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000137,0.000000,0.000000,0.000000,0.000000,0.000818,0.000102,0.000818,0.000195,0.000195,0.009045,0.374406,-0.002581,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000754,0.000100,0.000754,0.000067,0.000067,0.008390,0.371869,-0.002536,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000697,0.000098,0.000697,0.000000,0.000000,0.007791,0.369452,-0.002417,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000644,0.000096,0.000644,0.000000,0.000000,0.007243,0.367086,-0.002366,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000597,0.000094,0.000597,0.000000,0.000000,0.006740,0.364769,-0.002317,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000553,0.000092,0.000554,0.000000,0.000000,0.006278,0.362501,-0.002268,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000514,0.000090,0.000514,0.000000,0.000000,0.005854,0.360280,-0.002221,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000478,0.000088,0.000478,0.000000,0.000000,0.005464,0.358106,-0.002174,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000445,0.000086,0.000446,0.000000,0.000000,0.005104,0.355977,-0.002129,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000415,0.000084,0.000416,0.000000,0.000000,0.004774,0.353893,-0.002084,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000387,0.000082,0.000388,0.000000,0.000000,0.004469,0.351852,-0.002040,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000362,0.000081,0.000363,0.000000,0.000000,0.004187,0.349854,-0.001998,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000339,0.000079,0.000340,0.000000,0.000000,0.003928,0.347899,-0.001956,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000317,0.000077,0.000319,0.000000,0.000000,0.003688,0.345984,-0.001915,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000298,0.000076,0.000299,0.000148,0.000148,0.003466,0.343964,-0.002020,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000279,0.000074,0.000282,0.000393,0.000393,0.003260,0.341747,-0.002217,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000263,0.000072,0.000265,0.000569,0.000569,0.003069,0.339403,-0.002343,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000247,0.000070,0.000250,0.000708,0.000708,0.002891,0.336974,-0.002430,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000233,0.000068,0.000235,0.000635,0.000635,0.002726,0.334666,-0.002308,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000418,0.000000,0.000000,0.000000,0.000003,0.000219,0.000066,0.000222,0.000600,0.000600,0.002573,0.332850,-0.001816,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000376,0.000000,0.000000,0.000000,0.000004,0.000207,0.000065,0.000210,0.000524,0.000524,0.002431,0.331105,-0.001744,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000425,0.000000,0.000000,0.000000,0.000004,0.000195,0.000063,0.000199,0.000415,0.000415,0.002299,0.329552,-0.001553,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000411,0.000000,0.000000,0.000000,0.000004,0.000185,0.000062,0.000189,0.000354,0.000354,0.002176,0.328077,-0.001476,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000448,0.000001,0.000002,0.000001,0.000005,0.000175,0.000061,0.000181,0.000272,0.000272,0.002062,0.326747,-0.001330,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000438,0.000003,0.000005,0.000003,0.000005,0.000166,0.000060,0.000174,0.000184,0.000184,0.001956,0.325519,-0.001228,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000921,0.000028,0.000048,0.000028,0.000005,0.000157,0.000059,0.000191,0.000086,0.000086,0.001858,0.324844,-0.000676,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000917,0.000044,0.000057,0.000044,0.000006,0.000149,0.000059,0.000200,0.000000,0.000000,0.001767,0.324253,-0.000591,1.000000,0.000035 +27,2022-08-02 03:00:00,0.000903,0.000055,0.000056,0.000055,0.000006,0.000142,0.000058,0.000203,0.000000,0.000000,0.001683,0.323663,-0.000590,1.000000,0.000037 +28,2022-08-02 04:00:00,0.000903,0.000056,0.000056,0.000056,0.000007,0.000136,0.000058,0.000198,0.000000,0.000000,0.001605,0.323086,-0.000577,1.000000,0.000036 +29,2022-08-02 05:00:00,0.000938,0.000058,0.000060,0.000058,0.000007,0.000129,0.000057,0.000194,0.000000,0.000000,0.001533,0.322550,-0.000535,1.000000,0.000038 +30,2022-08-02 06:00:00,0.000904,0.000057,0.000056,0.000057,0.000007,0.000124,0.000057,0.000188,0.000000,0.000000,0.001466,0.321997,-0.000553,1.000000,0.000037 +31,2022-08-02 07:00:00,0.000000,0.000026,0.000000,0.000026,0.000008,0.000118,0.000055,0.000152,0.000000,0.000000,0.001403,0.320625,-0.001372,1.000000,0.000011 +32,2022-08-02 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000008,0.000113,0.000054,0.000133,0.000000,0.000000,0.001344,0.319281,-0.001344,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000109,0.000053,0.000117,0.000000,0.000000,0.001289,0.317966,-0.001315,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000104,0.000052,0.000113,0.000000,0.000000,0.001237,0.316678,-0.001288,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000100,0.000051,0.000110,0.000000,0.000000,0.001188,0.315417,-0.001261,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000096,0.000050,0.000106,0.000000,0.000000,0.001142,0.314182,-0.001235,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000056,0.000000,0.000000,0.000000,0.000011,0.000092,0.000049,0.000103,0.000000,0.000000,0.001098,0.313028,-0.001154,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000074,0.000000,0.000000,0.000000,0.000011,0.000089,0.000048,0.000100,0.000129,0.000129,0.001057,0.311790,-0.001238,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000074,0.000000,0.000000,0.000000,0.000012,0.000086,0.000047,0.000097,0.000337,0.000337,0.001018,0.310374,-0.001416,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000074,0.000000,0.000000,0.000000,0.000012,0.000082,0.000045,0.000095,0.000485,0.000485,0.000981,0.308841,-0.001532,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000054,0.000000,0.000000,0.000000,0.000013,0.000079,0.000044,0.000092,0.000602,0.000602,0.000946,0.307208,-0.001633,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000099,0.000000,0.000000,0.000000,0.000013,0.000076,0.000042,0.000090,0.000695,0.000695,0.000912,0.305563,-0.001646,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000074,0.000041,0.000087,0.000650,0.000650,0.000879,0.303899,-0.001664,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000071,0.000040,0.000085,0.000587,0.000587,0.000847,0.302331,-0.001568,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000069,0.000038,0.000083,0.000545,0.000545,0.000817,0.300837,-0.001494,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000066,0.000037,0.000081,0.000465,0.000465,0.000788,0.299452,-0.001385,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000016,0.000064,0.000036,0.000080,0.000356,0.000356,0.000761,0.298208,-0.001244,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000062,0.000035,0.000078,0.000214,0.000214,0.000734,0.297124,-0.001084,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000014,0.000000,0.000000,0.000000,0.000017,0.000059,0.000034,0.000076,0.000061,0.000061,0.000709,0.296227,-0.000897,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000014,0.000000,0.000000,0.000000,0.000018,0.000057,0.000034,0.000075,0.000000,0.000000,0.000685,0.295408,-0.000819,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000014,0.000000,0.000000,0.000000,0.000018,0.000056,0.000033,0.000074,0.000000,0.000000,0.000663,0.294607,-0.000801,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000014,0.000000,0.000000,0.000000,0.000019,0.000054,0.000032,0.000072,0.000000,0.000000,0.000641,0.293822,-0.000785,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000014,0.000000,0.000000,0.000000,0.000019,0.000052,0.000032,0.000071,0.000000,0.000000,0.000621,0.293054,-0.000768,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000020,0.000000,0.000000,0.000000,0.000020,0.000050,0.000031,0.000070,0.000000,0.000000,0.000602,0.292308,-0.000746,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000049,0.000030,0.000069,0.000000,0.000000,0.000583,0.291557,-0.000750,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000047,0.000030,0.000068,0.000000,0.000000,0.000566,0.290823,-0.000735,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000046,0.000029,0.000068,0.000000,0.000000,0.000549,0.290103,-0.000719,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000045,0.000028,0.000067,0.000000,0.000000,0.000533,0.289399,-0.000704,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000043,0.000028,0.000066,0.000000,0.000000,0.000517,0.288710,-0.000690,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000042,0.000027,0.000066,0.000000,0.000000,0.000503,0.288035,-0.000675,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000041,0.000027,0.000065,0.000000,0.000000,0.000488,0.287374,-0.000661,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000040,0.000026,0.000064,0.000143,0.000143,0.000475,0.286586,-0.000787,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000039,0.000025,0.000064,0.000400,0.000400,0.000461,0.285564,-0.001022,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000037,0.000024,0.000063,0.000575,0.000575,0.000448,0.284391,-0.001173,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000036,0.000023,0.000063,0.000714,0.000714,0.000435,0.283108,-0.001284,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000035,0.000022,0.000062,0.000739,0.000739,0.000421,0.281826,-0.001281,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000004,0.000000,0.000000,0.000000,0.000028,0.000034,0.000021,0.000062,0.000699,0.000699,0.000408,0.280616,-0.001211,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000176,0.000000,0.000000,0.000000,0.000028,0.000033,0.000020,0.000061,0.000620,0.000620,0.000395,0.279675,-0.000940,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000029,0.000032,0.000019,0.000061,0.000544,0.000544,0.000383,0.278714,-0.000962,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000030,0.000031,0.000018,0.000060,0.000459,0.000459,0.000370,0.277804,-0.000910,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000030,0.000030,0.000018,0.000060,0.000352,0.000352,0.000358,0.277017,-0.000787,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000004,0.000000,0.000000,0.000000,0.000031,0.000029,0.000017,0.000060,0.000221,0.000221,0.000346,0.276374,-0.000643,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000028,0.000017,0.000059,0.000076,0.000076,0.000335,0.275883,-0.000491,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000027,0.000016,0.000059,0.000000,0.000000,0.000324,0.275477,-0.000406,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000026,0.000016,0.000059,0.000000,0.000000,0.000314,0.275079,-0.000398,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000025,0.000016,0.000059,0.000000,0.000000,0.000305,0.274689,-0.000390,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000025,0.000015,0.000058,0.000000,0.000000,0.000295,0.274308,-0.000381,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000024,0.000015,0.000058,0.000000,0.000000,0.000287,0.273935,-0.000373,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000023,0.000015,0.000058,0.000000,0.000000,0.000278,0.273569,-0.000366,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000023,0.000014,0.000058,0.000000,0.000000,0.000270,0.273211,-0.000358,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000022,0.000014,0.000058,0.000000,0.000000,0.000262,0.272861,-0.000350,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000021,0.000014,0.000058,0.000000,0.000000,0.000255,0.272518,-0.000343,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000021,0.000014,0.000058,0.000000,0.000000,0.000248,0.272182,-0.000336,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000020,0.000013,0.000058,0.000000,0.000000,0.000241,0.271853,-0.000329,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000020,0.000013,0.000058,0.000000,0.000000,0.000234,0.271531,-0.000322,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000019,0.000013,0.000058,0.000139,0.000139,0.000228,0.271080,-0.000451,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000018,0.000012,0.000058,0.000396,0.000396,0.000222,0.270386,-0.000694,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000018,0.000011,0.000058,0.000571,0.000571,0.000215,0.269535,-0.000851,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000017,0.000010,0.000058,0.000709,0.000709,0.000208,0.268568,-0.000968,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000017,0.000010,0.000058,0.000834,0.000834,0.000201,0.267498,-0.001069,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000016,0.000009,0.000058,0.000786,0.000786,0.000193,0.266498,-0.001001,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000015,0.000008,0.000058,0.000685,0.000685,0.000186,0.265617,-0.000881,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000015,0.000007,0.000058,0.000578,0.000578,0.000178,0.264860,-0.000757,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000014,0.000007,0.000058,0.000497,0.000497,0.000171,0.264197,-0.000662,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000014,0.000006,0.000058,0.000377,0.000377,0.000163,0.263666,-0.000531,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000013,0.000006,0.000058,0.000229,0.000229,0.000156,0.263292,-0.000375,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000012,0.000006,0.000058,0.000083,0.000083,0.000149,0.263067,-0.000224,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000012,0.000006,0.000058,0.000000,0.000000,0.000143,0.262929,-0.000138,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000011,0.000005,0.000058,0.000000,0.000000,0.000137,0.262794,-0.000135,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000011,0.000005,0.000058,0.000000,0.000000,0.000131,0.262662,-0.000132,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000011,0.000005,0.000059,0.000000,0.000000,0.000126,0.262533,-0.000129,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000010,0.000005,0.000059,0.000000,0.000000,0.000121,0.262406,-0.000127,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000010,0.000005,0.000059,0.000000,0.000000,0.000116,0.262282,-0.000124,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000009,0.000005,0.000059,0.000000,0.000000,0.000112,0.262160,-0.000121,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000009,0.000005,0.000059,0.000000,0.000000,0.000108,0.262042,-0.000119,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000009,0.000005,0.000060,0.000000,0.000000,0.000104,0.261925,-0.000116,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000008,0.000005,0.000060,0.000000,0.000000,0.000100,0.261811,-0.000114,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000008,0.000005,0.000060,0.000000,0.000000,0.000097,0.261699,-0.000112,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000008,0.000004,0.000060,0.000000,0.000000,0.000093,0.261590,-0.000109,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000007,0.000004,0.000061,0.000152,0.000152,0.000090,0.261334,-0.000256,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000007,0.000004,0.000061,0.000399,0.000399,0.000087,0.260842,-0.000492,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000007,0.000003,0.000061,0.000575,0.000575,0.000083,0.260187,-0.000655,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000007,0.000003,0.000061,0.000713,0.000713,0.000079,0.259411,-0.000776,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000006,0.000002,0.000061,0.000724,0.000724,0.000074,0.258641,-0.000770,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000061,0.000000,0.000000,0.000000,0.000056,0.000006,0.000001,0.000062,0.000686,0.000686,0.000070,0.257983,-0.000658,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000061,0.000000,0.000000,0.000000,0.000056,0.000005,0.000001,0.000062,0.000598,0.000598,0.000065,0.257426,-0.000558,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000061,0.000000,0.000000,0.000000,0.000057,0.000005,0.000000,0.000062,0.000516,0.000516,0.000061,0.256960,-0.000465,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000057,0.000005,0.000000,0.000062,0.000450,0.000450,0.000056,0.256572,-0.000388,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000058,0.000004,0.000000,0.000062,0.000340,0.000340,0.000052,0.256295,-0.000277,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000058,0.000004,0.000000,0.000062,0.000207,0.000207,0.000048,0.256152,-0.000144,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000262,0.000001,0.000002,0.000001,0.000059,0.000004,0.000000,0.000064,0.000083,0.000083,0.000044,0.256329,0.000177,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000446,0.000007,0.000012,0.000007,0.000059,0.000003,0.000000,0.000070,0.000000,0.000000,0.000041,0.256757,0.000428,1.000000,0.000006 +123,2022-08-06 03:00:00,0.000403,0.000009,0.000010,0.000009,0.000060,0.000003,0.000001,0.000072,0.000000,0.000000,0.000038,0.257136,0.000379,1.000000,0.000007 +124,2022-08-06 04:00:00,0.000379,0.000010,0.000009,0.000010,0.000060,0.000003,0.000001,0.000073,0.000000,0.000000,0.000036,0.257485,0.000349,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000371,0.000009,0.000008,0.000009,0.000061,0.000003,0.000001,0.000073,0.000000,0.000000,0.000034,0.257819,0.000334,1.000000,0.000006 +126,2022-08-06 06:00:00,0.000385,0.000009,0.000009,0.000009,0.000061,0.000003,0.000001,0.000073,0.000000,0.000000,0.000033,0.258158,0.000340,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000062,0.000003,0.000001,0.000069,0.000000,0.000000,0.000032,0.258123,-0.000035,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000062,0.000003,0.000001,0.000067,0.000000,0.000000,0.000031,0.258089,-0.000034,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000002,0.000001,0.000065,0.000000,0.000000,0.000030,0.258055,-0.000034,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000002,0.000001,0.000066,0.000000,0.000000,0.000029,0.258022,-0.000033,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000002,0.000001,0.000066,0.000000,0.000000,0.000028,0.257990,-0.000032,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000002,0.000001,0.000067,0.000000,0.000000,0.000027,0.257959,-0.000032,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000002,0.000001,0.000067,0.000000,0.000000,0.000026,0.257928,-0.000031,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000002,0.000001,0.000067,0.000133,0.000133,0.000025,0.257767,-0.000160,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000002,0.000001,0.000068,0.000381,0.000381,0.000024,0.257368,-0.000400,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000002,0.000000,0.000068,0.000555,0.000555,0.000022,0.256805,-0.000562,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000000,0.000068,0.000695,0.000695,0.000020,0.256110,-0.000695,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000000,0.000069,0.000797,0.000795,0.000019,0.255315,-0.000795,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000069,0.000769,0.000762,0.000017,0.254553,-0.000762,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000069,0.000682,0.000673,0.000016,0.253880,-0.000673,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000070,0.000585,0.000575,0.000015,0.253305,-0.000575,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000001,0.000000,0.000070,0.000498,0.000487,0.000014,0.252818,-0.000487,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000001,0.000000,0.000070,0.000379,0.000369,0.000013,0.252449,-0.000369,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000001,0.000000,0.000071,0.000225,0.000218,0.000012,0.252230,-0.000218,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000001,0.000000,0.000071,0.000074,0.000071,0.000011,0.252159,-0.000071,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000071,0.000000,0.000000,0.000010,0.252159,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000000,0.000000,0.000009,0.252159,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000000,0.000000,0.000008,0.252159,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000072,0.000000,0.000000,0.000008,0.252159,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000000,0.000000,0.000007,0.252159,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000073,0.000000,0.000000,0.000007,0.252159,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000000,0.000000,0.000006,0.252159,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000074,0.000000,0.000000,0.000006,0.252159,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000005,0.252159,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000075,0.000000,0.000000,0.000005,0.252159,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000004,0.252159,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000004,0.252159,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000076,0.000131,0.000128,0.000004,0.252031,-0.000128,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000381,0.000370,0.000004,0.251662,-0.000370,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000077,0.000556,0.000538,0.000003,0.251124,-0.000538,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000696,0.000671,0.000003,0.250454,-0.000671,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000780,0.000747,0.000003,0.249707,-0.000747,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000078,0.000741,0.000706,0.000003,0.249001,-0.000706,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000656,0.000622,0.000002,0.248379,-0.000622,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000576,0.000544,0.000002,0.247835,-0.000544,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000079,0.000489,0.000460,0.000002,0.247376,-0.000460,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000372,0.000349,0.000002,0.247027,-0.000349,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000193,0.000180,0.000002,0.246847,-0.000180,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000039,0.000036,0.000002,0.246811,-0.000036,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000000,0.000000,0.000001,0.246811,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000111,0.000104,0.000001,0.246707,-0.000104,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000368,0.000343,0.000001,0.246365,-0.000343,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000548,0.000509,0.000000,0.245855,-0.000509,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000689,0.000638,0.000000,0.245217,-0.000638,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000808,0.000744,0.000000,0.244473,-0.000744,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000742,0.000680,0.000000,0.243793,-0.000680,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000677,0.000617,0.000000,0.243175,-0.000617,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000591,0.000536,0.000000,0.242639,-0.000536,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000492,0.000444,0.000000,0.242195,-0.000444,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000370,0.000333,0.000000,0.241861,-0.000333,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000213,0.000191,0.000000,0.241670,-0.000191,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000056,0.000050,0.000000,0.241620,-0.000050,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.241620,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000122,0.000109,0.000000,0.241510,-0.000109,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620757.csv b/test/channel_loss/channel_forcing/et/cat-2620757.csv new file mode 100644 index 000000000..86cfa5dce --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620757.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000155,0.000000,0.000000,0.000000,0.000000,0.000816,0.000081,0.000816,0.000198,0.000198,0.009026,0.376168,-0.001558,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000079,0.000751,0.000070,0.000070,0.008355,0.374621,-0.001548,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000078,0.000692,0.000000,0.000000,0.007740,0.373179,-0.001442,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000638,0.000076,0.000638,0.000000,0.000000,0.007178,0.371771,-0.001408,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000589,0.000074,0.000590,0.000000,0.000000,0.006662,0.370397,-0.001374,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000545,0.000072,0.000545,0.000000,0.000000,0.006189,0.369056,-0.001341,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000505,0.000070,0.000505,0.000000,0.000000,0.005755,0.367747,-0.001309,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000468,0.000069,0.000468,0.000000,0.000000,0.005355,0.366469,-0.001278,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000434,0.000067,0.000435,0.000000,0.000000,0.004988,0.365223,-0.001247,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000404,0.000065,0.000404,0.000000,0.000000,0.004650,0.364005,-0.001217,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000376,0.000064,0.000376,0.000000,0.000000,0.004338,0.362818,-0.001188,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000350,0.000062,0.000350,0.000000,0.000000,0.004050,0.361658,-0.001159,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000326,0.000061,0.000327,0.000000,0.000000,0.003785,0.360527,-0.001132,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000304,0.000059,0.000305,0.000000,0.000000,0.003540,0.359422,-0.001105,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000284,0.000058,0.000285,0.000150,0.000150,0.003314,0.358198,-0.001225,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000266,0.000056,0.000267,0.000395,0.000395,0.003104,0.356763,-0.001434,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000249,0.000054,0.000250,0.000569,0.000569,0.002909,0.355193,-0.001570,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000233,0.000052,0.000234,0.000709,0.000709,0.002728,0.353524,-0.001669,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000218,0.000050,0.000220,0.000645,0.000645,0.002559,0.351958,-0.001566,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000385,0.000000,0.000000,0.000000,0.000002,0.000204,0.000048,0.000206,0.000607,0.000607,0.002403,0.350841,-0.001117,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000383,0.000000,0.000000,0.000000,0.000002,0.000192,0.000047,0.000194,0.000536,0.000536,0.002258,0.349820,-0.001021,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000374,0.000000,0.000000,0.000000,0.000002,0.000180,0.000046,0.000182,0.000423,0.000423,0.002123,0.348924,-0.000896,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000360,0.000000,0.000000,0.000000,0.000002,0.000169,0.000044,0.000172,0.000362,0.000362,0.001998,0.348097,-0.000828,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000365,0.000000,0.000000,0.000000,0.000003,0.000159,0.000043,0.000162,0.000279,0.000279,0.001882,0.347374,-0.000723,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000350,0.000001,0.000001,0.000001,0.000003,0.000150,0.000043,0.000154,0.000188,0.000188,0.001775,0.346741,-0.000632,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000708,0.000012,0.000021,0.000012,0.000003,0.000142,0.000042,0.000157,0.000087,0.000087,0.001676,0.346553,-0.000189,1.000000,0.000010 +26,2022-08-02 02:00:00,0.000895,0.000029,0.000043,0.000029,0.000003,0.000134,0.000042,0.000167,0.000000,0.000000,0.001584,0.346614,0.000061,1.000000,0.000024 +27,2022-08-02 03:00:00,0.000871,0.000038,0.000041,0.000038,0.000004,0.000127,0.000043,0.000168,0.000000,0.000000,0.001500,0.346653,0.000038,1.000000,0.000027 +28,2022-08-02 04:00:00,0.000873,0.000042,0.000041,0.000042,0.000004,0.000120,0.000043,0.000165,0.000000,0.000000,0.001423,0.346693,0.000040,1.000000,0.000027 +29,2022-08-02 05:00:00,0.000903,0.000043,0.000044,0.000043,0.000004,0.000114,0.000043,0.000161,0.000000,0.000000,0.001352,0.346758,0.000065,1.000000,0.000028 +30,2022-08-02 06:00:00,0.000910,0.000044,0.000045,0.000044,0.000004,0.000108,0.000043,0.000157,0.000000,0.000000,0.001286,0.346827,0.000070,1.000000,0.000029 +31,2022-08-02 07:00:00,0.000000,0.000020,0.000000,0.000020,0.000004,0.000103,0.000042,0.000128,0.000000,0.000000,0.001225,0.346051,-0.000776,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000005,0.000098,0.000041,0.000112,0.000000,0.000000,0.001167,0.345294,-0.000758,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000094,0.000040,0.000099,0.000000,0.000000,0.001113,0.344554,-0.000739,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000089,0.000039,0.000095,0.000000,0.000000,0.001063,0.343832,-0.000722,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000085,0.000038,0.000091,0.000000,0.000000,0.001015,0.343128,-0.000704,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000082,0.000037,0.000087,0.000000,0.000000,0.000971,0.342440,-0.000688,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000019,0.000000,0.000000,0.000000,0.000006,0.000078,0.000036,0.000084,0.000000,0.000000,0.000929,0.341788,-0.000652,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000050,0.000000,0.000000,0.000000,0.000006,0.000075,0.000035,0.000081,0.000130,0.000130,0.000890,0.341054,-0.000734,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000050,0.000000,0.000000,0.000000,0.000007,0.000071,0.000034,0.000078,0.000338,0.000338,0.000852,0.340134,-0.000920,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000050,0.000000,0.000000,0.000000,0.000007,0.000068,0.000033,0.000075,0.000485,0.000485,0.000816,0.339093,-0.001041,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000019,0.000000,0.000000,0.000000,0.000007,0.000066,0.000031,0.000073,0.000604,0.000604,0.000782,0.337932,-0.001162,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000056,0.000000,0.000000,0.000000,0.000008,0.000063,0.000029,0.000070,0.000706,0.000706,0.000748,0.336734,-0.001197,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000060,0.000028,0.000068,0.000670,0.000670,0.000716,0.335546,-0.001188,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000057,0.000026,0.000066,0.000602,0.000602,0.000685,0.334452,-0.001094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000003,0.000000,0.000000,0.000000,0.000008,0.000055,0.000025,0.000063,0.000555,0.000555,0.000655,0.333435,-0.001018,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000052,0.000024,0.000061,0.000469,0.000469,0.000627,0.332525,-0.000909,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000008,0.000000,0.000000,0.000000,0.000009,0.000050,0.000023,0.000059,0.000357,0.000357,0.000599,0.331751,-0.000775,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000048,0.000022,0.000057,0.000216,0.000216,0.000574,0.331128,-0.000623,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000020,0.000000,0.000000,0.000000,0.000010,0.000046,0.000021,0.000056,0.000064,0.000064,0.000549,0.330685,-0.000443,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000020,0.000000,0.000000,0.000000,0.000010,0.000044,0.000021,0.000054,0.000000,0.000000,0.000526,0.330315,-0.000370,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000020,0.000000,0.000000,0.000000,0.000010,0.000042,0.000020,0.000052,0.000000,0.000000,0.000504,0.329954,-0.000361,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000020,0.000000,0.000000,0.000000,0.000011,0.000040,0.000020,0.000051,0.000000,0.000000,0.000484,0.329602,-0.000352,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000020,0.000000,0.000000,0.000000,0.000011,0.000039,0.000020,0.000050,0.000000,0.000000,0.000465,0.329258,-0.000344,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000023,0.000000,0.000000,0.000000,0.000011,0.000037,0.000019,0.000049,0.000000,0.000000,0.000446,0.328925,-0.000333,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000036,0.000019,0.000047,0.000000,0.000000,0.000429,0.328578,-0.000347,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000034,0.000018,0.000046,0.000000,0.000000,0.000413,0.328239,-0.000339,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000033,0.000018,0.000045,0.000000,0.000000,0.000398,0.327908,-0.000331,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000032,0.000017,0.000045,0.000000,0.000000,0.000383,0.327585,-0.000323,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000031,0.000017,0.000044,0.000000,0.000000,0.000369,0.327270,-0.000315,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000030,0.000017,0.000043,0.000000,0.000000,0.000356,0.326962,-0.000308,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000029,0.000016,0.000042,0.000000,0.000000,0.000343,0.326662,-0.000300,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000028,0.000016,0.000041,0.000146,0.000146,0.000331,0.326227,-0.000435,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000027,0.000015,0.000041,0.000399,0.000399,0.000319,0.325555,-0.000672,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000014,0.000040,0.000572,0.000572,0.000307,0.324731,-0.000825,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000025,0.000012,0.000039,0.000716,0.000716,0.000295,0.323785,-0.000945,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000024,0.000011,0.000039,0.000748,0.000748,0.000282,0.322832,-0.000954,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000015,0.000023,0.000010,0.000038,0.000712,0.000712,0.000270,0.321944,-0.000888,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000035,0.000000,0.000000,0.000000,0.000016,0.000021,0.000009,0.000037,0.000632,0.000632,0.000257,0.321181,-0.000763,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000012,0.000000,0.000000,0.000000,0.000016,0.000020,0.000008,0.000037,0.000554,0.000554,0.000245,0.320490,-0.000691,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000008,0.000000,0.000000,0.000000,0.000016,0.000019,0.000007,0.000036,0.000469,0.000469,0.000233,0.319895,-0.000595,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000008,0.000000,0.000000,0.000000,0.000017,0.000018,0.000007,0.000035,0.000357,0.000357,0.000221,0.319423,-0.000472,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000008,0.000000,0.000000,0.000000,0.000017,0.000017,0.000006,0.000035,0.000224,0.000224,0.000209,0.319092,-0.000331,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000017,0.000006,0.000034,0.000078,0.000078,0.000199,0.318905,-0.000188,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000016,0.000006,0.000033,0.000000,0.000000,0.000189,0.318797,-0.000107,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000015,0.000006,0.000033,0.000000,0.000000,0.000179,0.318693,-0.000105,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000005,0.000033,0.000000,0.000000,0.000171,0.318591,-0.000102,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000014,0.000005,0.000032,0.000000,0.000000,0.000163,0.318491,-0.000100,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000013,0.000005,0.000032,0.000000,0.000000,0.000155,0.318394,-0.000097,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000005,0.000032,0.000000,0.000000,0.000148,0.318299,-0.000095,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000012,0.000005,0.000031,0.000000,0.000000,0.000141,0.318206,-0.000093,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000005,0.000031,0.000000,0.000000,0.000135,0.318116,-0.000090,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000011,0.000005,0.000031,0.000000,0.000000,0.000129,0.318028,-0.000088,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000005,0.000031,0.000000,0.000000,0.000123,0.317942,-0.000086,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000010,0.000005,0.000031,0.000000,0.000000,0.000118,0.317857,-0.000084,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000031,0.000000,0.000000,0.000113,0.317775,-0.000082,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000030,0.000140,0.000140,0.000108,0.317559,-0.000217,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000009,0.000004,0.000030,0.000392,0.000392,0.000103,0.317101,-0.000458,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000003,0.000030,0.000569,0.000569,0.000097,0.316482,-0.000619,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000008,0.000002,0.000030,0.000713,0.000713,0.000091,0.315737,-0.000745,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000001,0.000030,0.000842,0.000842,0.000085,0.314884,-0.000853,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000007,0.000000,0.000030,0.000803,0.000803,0.000078,0.314081,-0.000803,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000006,0.000000,0.000029,0.000699,0.000698,0.000072,0.313383,-0.000698,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000006,0.000000,0.000029,0.000579,0.000576,0.000067,0.312807,-0.000576,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000502,0.000497,0.000062,0.312310,-0.000497,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000005,0.000000,0.000029,0.000380,0.000376,0.000057,0.311933,-0.000376,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000029,0.000230,0.000228,0.000053,0.311706,-0.000228,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000085,0.000084,0.000049,0.311622,-0.000084,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000004,0.000000,0.000029,0.000000,0.000000,0.000045,0.311622,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000029,0.000000,0.000000,0.000041,0.311622,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000038,0.311622,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000035,0.311622,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000033,0.311622,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000003,0.000000,0.000029,0.000000,0.000000,0.000030,0.311622,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000028,0.311622,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000026,0.311622,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000024,0.311622,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000029,0.000000,0.000000,0.000022,0.311622,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000029,0.000000,0.000000,0.000020,0.311622,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000002,0.000000,0.000030,0.000000,0.000000,0.000019,0.311622,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000030,0.000155,0.000153,0.000017,0.311469,-0.000153,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000398,0.000392,0.000016,0.311077,-0.000392,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000572,0.000562,0.000015,0.310515,-0.000562,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000716,0.000701,0.000014,0.309813,-0.000701,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000735,0.000718,0.000012,0.309096,-0.000718,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000700,0.000683,0.000012,0.308476,-0.000620,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000610,0.000593,0.000011,0.307946,-0.000530,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000530,0.000515,0.000010,0.307494,-0.000452,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000031,0.000450,0.000436,0.000009,0.307121,-0.000373,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000031,0.000336,0.000326,0.000008,0.306859,-0.000263,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000001,0.000000,0.000031,0.000208,0.000203,0.000008,0.306719,-0.000139,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000234,0.000001,0.000001,0.000001,0.000031,0.000001,0.000000,0.000032,0.000085,0.000085,0.000007,0.306868,0.000149,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000339,0.000004,0.000006,0.000004,0.000031,0.000001,0.000000,0.000035,0.000000,0.000000,0.000007,0.307201,0.000333,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000371,0.000006,0.000007,0.000006,0.000032,0.000001,0.000000,0.000038,0.000000,0.000000,0.000006,0.307565,0.000364,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000365,0.000007,0.000007,0.000007,0.000032,0.000000,0.000000,0.000039,0.000000,0.000000,0.000006,0.307923,0.000358,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000355,0.000007,0.000006,0.000007,0.000032,0.000000,0.000000,0.000039,0.000000,0.000000,0.000005,0.308271,0.000348,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000426,0.000008,0.000009,0.000008,0.000032,0.000000,0.000000,0.000041,0.000000,0.000000,0.000005,0.308688,0.000417,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000032,0.000000,0.000000,0.000036,0.000000,0.000000,0.000004,0.308688,0.000000,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000033,0.000000,0.000000,0.000035,0.000000,0.000000,0.000004,0.308688,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.308688,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.308688,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.308688,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.308688,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000003,0.308688,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000135,0.000131,0.000003,0.308557,-0.000131,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000382,0.000370,0.000002,0.308187,-0.000370,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000556,0.000538,0.000002,0.307649,-0.000538,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000698,0.000673,0.000002,0.306976,-0.000673,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000814,0.000783,0.000002,0.306193,-0.000783,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000786,0.000753,0.000002,0.305440,-0.000753,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000702,0.000670,0.000002,0.304770,-0.000670,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000592,0.000562,0.000001,0.304208,-0.000562,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000503,0.000477,0.000001,0.303731,-0.000477,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000381,0.000360,0.000001,0.303371,-0.000360,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000226,0.000213,0.000001,0.303158,-0.000213,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000075,0.000071,0.000001,0.303086,-0.000071,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000001,0.303086,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.303086,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.303086,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.303086,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000133,0.000126,0.000000,0.302961,-0.000126,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000379,0.000357,0.000000,0.302604,-0.000357,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000554,0.000520,0.000000,0.302084,-0.000520,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000696,0.000652,0.000000,0.301432,-0.000652,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000789,0.000737,0.000000,0.300695,-0.000737,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000754,0.000701,0.000000,0.299994,-0.000701,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000667,0.000618,0.000000,0.299376,-0.000618,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000582,0.000537,0.000000,0.298839,-0.000537,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000491,0.000452,0.000000,0.298387,-0.000452,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000373,0.000342,0.000000,0.298045,-0.000342,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000194,0.000178,0.000000,0.297867,-0.000178,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000040,0.000037,0.000000,0.297831,-0.000037,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.297831,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000113,0.000103,0.000000,0.297727,-0.000103,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000365,0.000334,0.000000,0.297394,-0.000334,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000546,0.000498,0.000000,0.296895,-0.000498,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000692,0.000630,0.000000,0.296266,-0.000630,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000818,0.000742,0.000000,0.295524,-0.000742,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000768,0.000694,0.000000,0.294830,-0.000694,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000695,0.000625,0.000000,0.294205,-0.000625,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000596,0.000534,0.000000,0.293671,-0.000534,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000499,0.000446,0.000000,0.293225,-0.000446,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000376,0.000335,0.000000,0.292890,-0.000335,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000216,0.000192,0.000000,0.292698,-0.000192,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000058,0.000052,0.000000,0.292646,-0.000052,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.292646,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000124,0.000110,0.000000,0.292536,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620758.csv b/test/channel_loss/channel_forcing/et/cat-2620758.csv new file mode 100644 index 000000000..db125360f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620758.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000102,0.000000,0.000000,0.000000,0.000000,0.000817,0.000084,0.000817,0.000201,0.000201,0.009029,0.375952,-0.001569,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000082,0.000751,0.000072,0.000072,0.008360,0.374448,-0.001505,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000080,0.000692,0.000000,0.000000,0.007747,0.373049,-0.001398,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000639,0.000078,0.000639,0.000000,0.000000,0.007187,0.371685,-0.001364,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000590,0.000076,0.000590,0.000000,0.000000,0.006673,0.370354,-0.001331,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000546,0.000075,0.000546,0.000000,0.000000,0.006201,0.369055,-0.001299,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000506,0.000073,0.000506,0.000000,0.000000,0.005768,0.367787,-0.001268,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000469,0.000071,0.000470,0.000000,0.000000,0.005369,0.366550,-0.001237,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000436,0.000069,0.000436,0.000000,0.000000,0.005003,0.365343,-0.001207,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000405,0.000068,0.000406,0.000000,0.000000,0.004665,0.364165,-0.001178,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000377,0.000066,0.000378,0.000000,0.000000,0.004354,0.363016,-0.001149,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000351,0.000064,0.000352,0.000000,0.000000,0.004067,0.361894,-0.001122,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000328,0.000063,0.000328,0.000000,0.000000,0.003802,0.360800,-0.001094,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000306,0.000061,0.000307,0.000000,0.000000,0.003558,0.359732,-0.001068,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000286,0.000060,0.000287,0.000150,0.000150,0.003331,0.358543,-0.001189,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000267,0.000058,0.000268,0.000395,0.000395,0.003122,0.357145,-0.001399,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000250,0.000055,0.000251,0.000572,0.000572,0.002927,0.355607,-0.001538,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000234,0.000053,0.000236,0.000719,0.000719,0.002746,0.353962,-0.001644,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000220,0.000051,0.000221,0.000663,0.000663,0.002577,0.352412,-0.001550,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000444,0.000000,0.000000,0.000000,0.000002,0.000206,0.000049,0.000208,0.000633,0.000633,0.002420,0.351364,-0.001049,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000466,0.000000,0.000000,0.000000,0.000002,0.000193,0.000048,0.000195,0.000555,0.000555,0.002275,0.350437,-0.000926,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000444,0.000000,0.000000,0.000000,0.000002,0.000182,0.000047,0.000184,0.000432,0.000432,0.002140,0.349632,-0.000805,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000449,0.000000,0.000000,0.000000,0.000002,0.000171,0.000046,0.000173,0.000370,0.000370,0.002015,0.348911,-0.000721,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000434,0.000001,0.000001,0.000001,0.000003,0.000161,0.000045,0.000164,0.000284,0.000284,0.001900,0.348276,-0.000635,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000434,0.000002,0.000003,0.000002,0.000003,0.000152,0.000044,0.000156,0.000192,0.000192,0.001792,0.347744,-0.000532,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000703,0.000012,0.000020,0.000012,0.000003,0.000143,0.000044,0.000158,0.000089,0.000089,0.001693,0.347573,-0.000172,1.000000,0.000009 +26,2022-08-02 02:00:00,0.000886,0.000028,0.000040,0.000028,0.000003,0.000135,0.000044,0.000166,0.000000,0.000000,0.001602,0.347650,0.000077,1.000000,0.000022 +27,2022-08-02 03:00:00,0.000864,0.000035,0.000038,0.000035,0.000003,0.000128,0.000044,0.000166,0.000000,0.000000,0.001518,0.347706,0.000056,1.000000,0.000025 +28,2022-08-02 04:00:00,0.000867,0.000039,0.000038,0.000039,0.000004,0.000121,0.000044,0.000164,0.000000,0.000000,0.001441,0.347764,0.000058,1.000000,0.000025 +29,2022-08-02 05:00:00,0.000893,0.000040,0.000041,0.000040,0.000004,0.000115,0.000044,0.000159,0.000000,0.000000,0.001370,0.347843,0.000079,1.000000,0.000026 +30,2022-08-02 06:00:00,0.000908,0.000041,0.000042,0.000041,0.000004,0.000110,0.000044,0.000155,0.000000,0.000000,0.001304,0.347933,0.000090,1.000000,0.000027 +31,2022-08-02 07:00:00,0.000000,0.000019,0.000000,0.000019,0.000004,0.000105,0.000043,0.000128,0.000000,0.000000,0.001243,0.347176,-0.000757,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000005,0.000100,0.000042,0.000113,0.000000,0.000000,0.001186,0.346438,-0.000738,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000095,0.000041,0.000100,0.000000,0.000000,0.001132,0.345718,-0.000720,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000091,0.000040,0.000096,0.000000,0.000000,0.001081,0.345015,-0.000703,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000087,0.000039,0.000092,0.000000,0.000000,0.001034,0.344329,-0.000686,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000083,0.000038,0.000089,0.000000,0.000000,0.000989,0.343660,-0.000669,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000005,0.000000,0.000000,0.000000,0.000006,0.000080,0.000037,0.000085,0.000000,0.000000,0.000947,0.343012,-0.000648,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000018,0.000000,0.000000,0.000000,0.000006,0.000076,0.000036,0.000082,0.000129,0.000129,0.000907,0.342266,-0.000746,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000018,0.000000,0.000000,0.000000,0.000006,0.000073,0.000035,0.000079,0.000337,0.000337,0.000870,0.341335,-0.000931,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000018,0.000000,0.000000,0.000000,0.000007,0.000070,0.000034,0.000077,0.000487,0.000487,0.000833,0.340281,-0.001054,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000005,0.000000,0.000000,0.000000,0.000007,0.000067,0.000032,0.000074,0.000613,0.000613,0.000798,0.339117,-0.001164,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000018,0.000000,0.000000,0.000000,0.000007,0.000064,0.000030,0.000071,0.000723,0.000723,0.000764,0.337886,-0.001231,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000061,0.000028,0.000069,0.000691,0.000691,0.000732,0.336698,-0.001188,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000059,0.000027,0.000066,0.000625,0.000625,0.000700,0.335604,-0.001094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000003,0.000000,0.000000,0.000000,0.000008,0.000056,0.000026,0.000064,0.000569,0.000569,0.000669,0.334594,-0.001010,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000003,0.000000,0.000000,0.000000,0.000008,0.000054,0.000024,0.000062,0.000475,0.000475,0.000640,0.333700,-0.000894,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000051,0.000023,0.000060,0.000362,0.000362,0.000612,0.332938,-0.000762,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000049,0.000022,0.000058,0.000219,0.000219,0.000585,0.332334,-0.000605,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000013,0.000000,0.000000,0.000000,0.000009,0.000047,0.000022,0.000056,0.000066,0.000066,0.000560,0.331903,-0.000430,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000013,0.000000,0.000000,0.000000,0.000010,0.000045,0.000021,0.000054,0.000000,0.000000,0.000536,0.331548,-0.000355,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000013,0.000000,0.000000,0.000000,0.000010,0.000043,0.000021,0.000053,0.000000,0.000000,0.000514,0.331201,-0.000347,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000012,0.000000,0.000000,0.000000,0.000010,0.000041,0.000020,0.000051,0.000000,0.000000,0.000493,0.330861,-0.000340,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000013,0.000000,0.000000,0.000000,0.000011,0.000040,0.000020,0.000050,0.000000,0.000000,0.000473,0.330530,-0.000330,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000012,0.000000,0.000000,0.000000,0.000011,0.000038,0.000019,0.000049,0.000000,0.000000,0.000454,0.330206,-0.000324,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000036,0.000019,0.000048,0.000000,0.000000,0.000437,0.329879,-0.000328,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000035,0.000018,0.000047,0.000000,0.000000,0.000420,0.329559,-0.000320,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000034,0.000018,0.000046,0.000000,0.000000,0.000404,0.329247,-0.000312,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000032,0.000017,0.000045,0.000000,0.000000,0.000389,0.328943,-0.000304,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000031,0.000017,0.000044,0.000000,0.000000,0.000375,0.328646,-0.000297,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000030,0.000017,0.000043,0.000000,0.000000,0.000361,0.328356,-0.000290,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000029,0.000016,0.000042,0.000000,0.000000,0.000348,0.328073,-0.000283,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000028,0.000016,0.000041,0.000146,0.000146,0.000336,0.327655,-0.000418,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000027,0.000015,0.000041,0.000397,0.000397,0.000324,0.327002,-0.000653,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000026,0.000014,0.000040,0.000572,0.000572,0.000311,0.326194,-0.000809,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000025,0.000012,0.000039,0.000723,0.000723,0.000299,0.325257,-0.000936,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000024,0.000011,0.000038,0.000764,0.000764,0.000286,0.324304,-0.000953,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000003,0.000000,0.000000,0.000000,0.000015,0.000023,0.000010,0.000038,0.000730,0.000730,0.000272,0.323410,-0.000894,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000004,0.000000,0.000000,0.000000,0.000015,0.000022,0.000008,0.000037,0.000653,0.000653,0.000259,0.322614,-0.000797,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000003,0.000000,0.000000,0.000000,0.000016,0.000021,0.000007,0.000036,0.000569,0.000569,0.000246,0.321918,-0.000695,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000003,0.000000,0.000000,0.000000,0.000016,0.000019,0.000007,0.000035,0.000481,0.000481,0.000233,0.321325,-0.000593,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000016,0.000018,0.000006,0.000035,0.000366,0.000366,0.000221,0.320859,-0.000466,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000016,0.000017,0.000006,0.000034,0.000228,0.000228,0.000209,0.320538,-0.000321,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000016,0.000005,0.000033,0.000080,0.000080,0.000198,0.320366,-0.000172,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000016,0.000005,0.000033,0.000000,0.000000,0.000187,0.320277,-0.000089,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000015,0.000005,0.000032,0.000000,0.000000,0.000177,0.320190,-0.000087,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000014,0.000005,0.000032,0.000000,0.000000,0.000168,0.320104,-0.000085,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000013,0.000005,0.000031,0.000000,0.000000,0.000160,0.320021,-0.000083,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000013,0.000005,0.000031,0.000000,0.000000,0.000152,0.319940,-0.000081,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000012,0.000005,0.000031,0.000000,0.000000,0.000144,0.319861,-0.000079,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000004,0.000030,0.000000,0.000000,0.000137,0.319784,-0.000077,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000004,0.000030,0.000000,0.000000,0.000131,0.319709,-0.000075,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000004,0.000030,0.000000,0.000000,0.000125,0.319635,-0.000074,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000010,0.000004,0.000030,0.000000,0.000000,0.000119,0.319563,-0.000072,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000030,0.000000,0.000000,0.000113,0.319493,-0.000070,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000004,0.000029,0.000000,0.000000,0.000108,0.319425,-0.000068,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000009,0.000004,0.000029,0.000140,0.000140,0.000103,0.319222,-0.000203,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000003,0.000029,0.000391,0.000391,0.000098,0.318779,-0.000443,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000002,0.000029,0.000572,0.000572,0.000093,0.318170,-0.000609,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000001,0.000029,0.000725,0.000725,0.000086,0.317426,-0.000743,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000000,0.000028,0.000858,0.000858,0.000080,0.316568,-0.000858,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000028,0.000827,0.000827,0.000074,0.315741,-0.000827,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000028,0.000721,0.000718,0.000068,0.315023,-0.000718,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000000,0.000028,0.000592,0.000587,0.000063,0.314437,-0.000587,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000000,0.000028,0.000510,0.000504,0.000058,0.313932,-0.000504,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000028,0.000388,0.000382,0.000053,0.313550,-0.000382,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000028,0.000233,0.000229,0.000049,0.313321,-0.000229,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000028,0.000088,0.000086,0.000046,0.313235,-0.000086,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000004,0.000000,0.000028,0.000000,0.000000,0.000042,0.313235,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000028,0.000000,0.000000,0.000039,0.313235,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000000,0.000000,0.000036,0.313235,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000000,0.000000,0.000033,0.313235,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000003,0.000000,0.000028,0.000000,0.000000,0.000031,0.313235,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000028,0.000000,0.000000,0.000028,0.313235,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000026,0.313235,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000024,0.313235,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000022,0.313235,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000028,0.000000,0.000000,0.000020,0.313235,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000002,0.000000,0.000028,0.000000,0.000000,0.000019,0.313235,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000001,0.000001,0.000017,0.313234,-0.000001,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000155,0.000153,0.000016,0.313081,-0.000153,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000029,0.000400,0.000392,0.000015,0.312689,-0.000392,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000577,0.000565,0.000014,0.312124,-0.000565,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000727,0.000711,0.000013,0.311413,-0.000711,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000754,0.000734,0.000012,0.310679,-0.000734,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000045,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000722,0.000702,0.000011,0.310023,-0.000656,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000045,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000029,0.000624,0.000604,0.000010,0.309464,-0.000559,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000053,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000544,0.000526,0.000009,0.308991,-0.000473,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000053,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000456,0.000441,0.000008,0.308603,-0.000388,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000053,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000337,0.000325,0.000008,0.308331,-0.000272,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000045,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000210,0.000203,0.000007,0.308173,-0.000158,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000139,0.000000,0.000000,0.000000,0.000030,0.000001,0.000000,0.000030,0.000086,0.000086,0.000007,0.308226,0.000053,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000148,0.000001,0.000001,0.000001,0.000030,0.000001,0.000000,0.000031,0.000000,0.000000,0.000006,0.308373,0.000147,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000189,0.000001,0.000002,0.000001,0.000030,0.000000,0.000000,0.000032,0.000000,0.000000,0.000006,0.308560,0.000188,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000219,0.000002,0.000002,0.000002,0.000030,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.308777,0.000217,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000232,0.000002,0.000003,0.000002,0.000031,0.000000,0.000000,0.000033,0.000000,0.000000,0.000005,0.309006,0.000229,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000275,0.000003,0.000004,0.000003,0.000031,0.000000,0.000000,0.000034,0.000000,0.000000,0.000004,0.309277,0.000271,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000031,0.000000,0.000000,0.000033,0.000000,0.000000,0.000004,0.309277,0.000000,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000031,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.309277,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000004,0.309277,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.309277,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.309277,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000003,0.309277,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000003,0.309277,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000135,0.000130,0.000002,0.309147,-0.000130,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000383,0.000368,0.000002,0.308779,-0.000368,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000561,0.000539,0.000002,0.308241,-0.000539,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000709,0.000679,0.000002,0.307562,-0.000679,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000839,0.000800,0.000002,0.306762,-0.000800,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000809,0.000769,0.000002,0.305993,-0.000769,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000727,0.000688,0.000001,0.305305,-0.000688,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000604,0.000570,0.000001,0.304735,-0.000570,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000511,0.000481,0.000001,0.304255,-0.000481,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000388,0.000364,0.000001,0.303890,-0.000364,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000229,0.000214,0.000001,0.303676,-0.000214,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000078,0.000073,0.000001,0.303603,-0.000073,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000001,0.303603,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.303603,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.303603,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.303603,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.303603,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000133,0.000125,0.000000,0.303479,-0.000125,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000378,0.000353,0.000000,0.303126,-0.000353,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000558,0.000520,0.000000,0.302606,-0.000520,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000705,0.000655,0.000000,0.301951,-0.000655,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000807,0.000747,0.000000,0.301204,-0.000747,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000776,0.000716,0.000000,0.300488,-0.000716,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000688,0.000632,0.000000,0.299856,-0.000632,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000592,0.000542,0.000000,0.299314,-0.000542,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000495,0.000452,0.000000,0.298862,-0.000452,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000376,0.000343,0.000000,0.298519,-0.000343,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000197,0.000179,0.000000,0.298340,-0.000179,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000041,0.000037,0.000000,0.298303,-0.000037,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.298303,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000114,0.000103,0.000000,0.298200,-0.000103,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000364,0.000330,0.000000,0.297869,-0.000330,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000551,0.000499,0.000000,0.297371,-0.000499,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000702,0.000634,0.000000,0.296737,-0.000634,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000837,0.000753,0.000000,0.295984,-0.000753,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000798,0.000715,0.000000,0.295269,-0.000715,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000718,0.000641,0.000000,0.294628,-0.000641,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000615,0.000547,0.000000,0.294081,-0.000547,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000509,0.000451,0.000000,0.293630,-0.000451,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000386,0.000341,0.000000,0.293288,-0.000341,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000219,0.000194,0.000000,0.293095,-0.000194,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000061,0.000054,0.000000,0.293041,-0.000054,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000000,0.293041,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000124,0.000110,0.000000,0.292932,-0.000110,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620759.csv b/test/channel_loss/channel_forcing/et/cat-2620759.csv new file mode 100644 index 000000000..bab468e80 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620759.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000004,0.000000,0.000000,0.000000,0.000000,0.000824,0.000168,0.000824,0.000208,0.000208,0.009099,0.374828,-0.002295,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000765,0.000164,0.000765,0.000075,0.000075,0.008498,0.372712,-0.002116,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000712,0.000160,0.000712,0.000000,0.000000,0.007946,0.370719,-0.001993,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000663,0.000156,0.000663,0.000000,0.000000,0.007438,0.368772,-0.001947,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000619,0.000153,0.000619,0.000000,0.000000,0.006972,0.366870,-0.001902,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000579,0.000149,0.000579,0.000000,0.000000,0.006542,0.365013,-0.001857,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000542,0.000145,0.000542,0.000000,0.000000,0.006146,0.363198,-0.001814,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000508,0.000142,0.000508,0.000000,0.000000,0.005781,0.361426,-0.001772,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000476,0.000139,0.000477,0.000000,0.000000,0.005443,0.359696,-0.001731,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000448,0.000136,0.000448,0.000000,0.000000,0.005131,0.358005,-0.001690,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000421,0.000132,0.000422,0.000000,0.000000,0.004842,0.356354,-0.001651,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000397,0.000129,0.000398,0.000000,0.000000,0.004574,0.354741,-0.001613,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000375,0.000126,0.000376,0.000000,0.000000,0.004326,0.353166,-0.001575,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000354,0.000123,0.000355,0.000000,0.000000,0.004095,0.351627,-0.001539,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000335,0.000120,0.000336,0.000148,0.000148,0.003881,0.349980,-0.001648,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000317,0.000117,0.000319,0.000393,0.000393,0.003680,0.348131,-0.001848,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000300,0.000113,0.000302,0.000579,0.000579,0.003493,0.346144,-0.001987,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000285,0.000109,0.000287,0.000741,0.000741,0.003317,0.344045,-0.002099,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000270,0.000105,0.000272,0.000699,0.000699,0.003152,0.342036,-0.002009,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000505,0.000000,0.000000,0.000000,0.000003,0.000257,0.000102,0.000259,0.000674,0.000674,0.002998,0.340592,-0.001444,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000592,0.000000,0.000000,0.000000,0.000003,0.000244,0.000100,0.000247,0.000586,0.000586,0.002854,0.339352,-0.001240,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000516,0.000000,0.000000,0.000000,0.000003,0.000232,0.000098,0.000235,0.000453,0.000453,0.002719,0.338196,-0.001155,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000593,0.000001,0.000002,0.000001,0.000003,0.000221,0.000096,0.000225,0.000386,0.000386,0.002594,0.337207,-0.000990,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000506,0.000001,0.000002,0.000001,0.000004,0.000211,0.000094,0.000216,0.000290,0.000290,0.002477,0.336248,-0.000958,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000573,0.000004,0.000005,0.000004,0.000004,0.000201,0.000093,0.000209,0.000199,0.000199,0.002368,0.335463,-0.000785,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000720,0.000009,0.000014,0.000009,0.000004,0.000193,0.000091,0.000206,0.000094,0.000094,0.002267,0.334934,-0.000529,1.000000,0.000007 +26,2022-08-02 02:00:00,0.000889,0.000020,0.000028,0.000020,0.000004,0.000185,0.000091,0.000209,0.000000,0.000000,0.002173,0.334660,-0.000274,1.000000,0.000016 +27,2022-08-02 03:00:00,0.000880,0.000025,0.000028,0.000025,0.000005,0.000177,0.000090,0.000207,0.000000,0.000000,0.002087,0.334385,-0.000275,1.000000,0.000018 +28,2022-08-02 04:00:00,0.000887,0.000028,0.000028,0.000028,0.000005,0.000170,0.000090,0.000203,0.000000,0.000000,0.002006,0.334122,-0.000263,1.000000,0.000018 +29,2022-08-02 05:00:00,0.000890,0.000028,0.000028,0.000028,0.000005,0.000164,0.000089,0.000197,0.000000,0.000000,0.001932,0.333868,-0.000254,1.000000,0.000018 +30,2022-08-02 06:00:00,0.000916,0.000029,0.000030,0.000029,0.000006,0.000158,0.000089,0.000193,0.000000,0.000000,0.001863,0.333645,-0.000224,1.000000,0.000019 +31,2022-08-02 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000006,0.000152,0.000087,0.000171,0.000000,0.000000,0.001798,0.332560,-0.001084,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000006,0.000147,0.000085,0.000159,0.000000,0.000000,0.001736,0.331501,-0.001059,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000142,0.000083,0.000149,0.000000,0.000000,0.001677,0.330467,-0.001034,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000137,0.000081,0.000144,0.000000,0.000000,0.001621,0.329457,-0.001010,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000132,0.000079,0.000140,0.000000,0.000000,0.001568,0.328470,-0.000987,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000128,0.000077,0.000136,0.000000,0.000000,0.001517,0.327506,-0.000964,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000124,0.000076,0.000132,0.000000,0.000000,0.001469,0.326565,-0.000941,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000120,0.000074,0.000129,0.000128,0.000128,0.001422,0.325520,-0.001045,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000116,0.000071,0.000125,0.000338,0.000338,0.001377,0.324294,-0.001226,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000112,0.000069,0.000122,0.000496,0.000496,0.001333,0.322943,-0.001351,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000010,0.000109,0.000066,0.000119,0.000633,0.000633,0.001290,0.321491,-0.001453,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000105,0.000063,0.000115,0.000758,0.000758,0.001248,0.319949,-0.001541,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000102,0.000060,0.000112,0.000728,0.000728,0.001207,0.318473,-0.001476,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000098,0.000057,0.000109,0.000665,0.000665,0.001166,0.317092,-0.001380,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000095,0.000055,0.000106,0.000596,0.000596,0.001126,0.315811,-0.001281,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000091,0.000053,0.000103,0.000491,0.000491,0.001087,0.314662,-0.001149,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000088,0.000051,0.000101,0.000373,0.000373,0.001050,0.313655,-0.001007,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000085,0.000049,0.000098,0.000226,0.000226,0.001014,0.312815,-0.000840,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000082,0.000048,0.000095,0.000071,0.000071,0.000980,0.312146,-0.000669,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000080,0.000047,0.000093,0.000000,0.000000,0.000947,0.311562,-0.000584,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000077,0.000046,0.000091,0.000000,0.000000,0.000916,0.310991,-0.000570,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000074,0.000045,0.000089,0.000000,0.000000,0.000886,0.310434,-0.000557,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000072,0.000044,0.000087,0.000000,0.000000,0.000858,0.309890,-0.000544,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000070,0.000043,0.000085,0.000000,0.000000,0.000831,0.309359,-0.000531,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000068,0.000042,0.000083,0.000000,0.000000,0.000805,0.308840,-0.000519,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000065,0.000041,0.000082,0.000000,0.000000,0.000780,0.308333,-0.000507,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000063,0.000040,0.000080,0.000000,0.000000,0.000756,0.307837,-0.000495,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000062,0.000039,0.000079,0.000000,0.000000,0.000734,0.307354,-0.000484,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000060,0.000038,0.000077,0.000000,0.000000,0.000712,0.306881,-0.000472,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000058,0.000037,0.000076,0.000000,0.000000,0.000691,0.306420,-0.000461,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000056,0.000036,0.000075,0.000000,0.000000,0.000671,0.305969,-0.000451,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000055,0.000035,0.000073,0.000144,0.000144,0.000651,0.305388,-0.000581,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000053,0.000033,0.000072,0.000395,0.000395,0.000632,0.304576,-0.000812,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000051,0.000032,0.000071,0.000580,0.000580,0.000612,0.303601,-0.000974,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000050,0.000030,0.000070,0.000740,0.000740,0.000592,0.302493,-0.001108,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000048,0.000027,0.000069,0.000797,0.000797,0.000572,0.301355,-0.001138,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000046,0.000025,0.000067,0.000756,0.000756,0.000551,0.300284,-0.001071,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000044,0.000023,0.000066,0.000679,0.000679,0.000530,0.299313,-0.000971,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000043,0.000022,0.000065,0.000593,0.000593,0.000509,0.298448,-0.000865,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000041,0.000020,0.000063,0.000501,0.000501,0.000489,0.297693,-0.000755,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000039,0.000019,0.000062,0.000378,0.000378,0.000469,0.297076,-0.000617,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000038,0.000018,0.000061,0.000231,0.000231,0.000449,0.296616,-0.000459,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000036,0.000018,0.000060,0.000085,0.000085,0.000431,0.296311,-0.000306,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000035,0.000017,0.000059,0.000000,0.000000,0.000414,0.296095,-0.000215,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000033,0.000017,0.000058,0.000000,0.000000,0.000397,0.295885,-0.000210,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000032,0.000016,0.000057,0.000000,0.000000,0.000382,0.295679,-0.000206,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000031,0.000016,0.000056,0.000000,0.000000,0.000367,0.295478,-0.000201,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000030,0.000016,0.000056,0.000000,0.000000,0.000353,0.295282,-0.000196,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000028,0.000015,0.000055,0.000000,0.000000,0.000340,0.295091,-0.000192,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000027,0.000015,0.000054,0.000000,0.000000,0.000328,0.294904,-0.000187,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000026,0.000015,0.000054,0.000000,0.000000,0.000316,0.294721,-0.000183,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000025,0.000014,0.000053,0.000000,0.000000,0.000305,0.294542,-0.000178,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000025,0.000014,0.000053,0.000000,0.000000,0.000294,0.294368,-0.000174,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000024,0.000014,0.000052,0.000000,0.000000,0.000284,0.294198,-0.000170,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000023,0.000013,0.000052,0.000000,0.000000,0.000275,0.294031,-0.000166,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000022,0.000013,0.000052,0.000139,0.000139,0.000265,0.293733,-0.000298,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000012,0.000051,0.000390,0.000390,0.000256,0.293197,-0.000536,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000021,0.000010,0.000051,0.000577,0.000577,0.000246,0.292490,-0.000707,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000020,0.000009,0.000050,0.000748,0.000748,0.000235,0.291633,-0.000857,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000019,0.000007,0.000050,0.000886,0.000886,0.000223,0.290662,-0.000972,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000018,0.000005,0.000049,0.000867,0.000867,0.000211,0.289731,-0.000931,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000016,0.000004,0.000049,0.000763,0.000763,0.000198,0.288924,-0.000807,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000015,0.000002,0.000048,0.000620,0.000620,0.000185,0.288274,-0.000649,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000014,0.000001,0.000047,0.000526,0.000526,0.000172,0.287732,-0.000543,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000013,0.000001,0.000047,0.000403,0.000403,0.000159,0.287323,-0.000409,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000012,0.000000,0.000046,0.000237,0.000237,0.000147,0.287085,-0.000238,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000011,0.000000,0.000045,0.000094,0.000094,0.000135,0.286991,-0.000094,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000000,0.000045,0.000000,0.000000,0.000125,0.286991,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000000,0.000045,0.000000,0.000000,0.000115,0.286991,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000009,0.000000,0.000044,0.000000,0.000000,0.000107,0.286991,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000000,0.000044,0.000000,0.000000,0.000098,0.286991,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000000,0.000044,0.000000,0.000000,0.000091,0.286991,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000007,0.000000,0.000044,0.000000,0.000000,0.000084,0.286991,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000006,0.000000,0.000043,0.000000,0.000000,0.000077,0.286991,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000006,0.000000,0.000043,0.000000,0.000000,0.000071,0.286991,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000005,0.000000,0.000043,0.000000,0.000000,0.000066,0.286991,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000005,0.000000,0.000043,0.000000,0.000000,0.000061,0.286991,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000005,0.000000,0.000043,0.000000,0.000000,0.000056,0.286991,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000004,0.000000,0.000043,0.000003,0.000003,0.000052,0.286988,-0.000003,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000004,0.000000,0.000043,0.000155,0.000155,0.000048,0.286833,-0.000155,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000004,0.000000,0.000043,0.000401,0.000400,0.000044,0.286433,-0.000400,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000000,0.000043,0.000585,0.000583,0.000041,0.285850,-0.000583,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000000,0.000043,0.000752,0.000747,0.000038,0.285103,-0.000747,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000003,0.000000,0.000044,0.000789,0.000780,0.000035,0.284323,-0.000780,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000003,0.000000,0.000044,0.000761,0.000749,0.000032,0.283574,-0.000749,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000044,0.000643,0.000631,0.000030,0.282943,-0.000630,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000557,0.000544,0.000027,0.282400,-0.000544,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000479,0.000466,0.000025,0.281934,-0.000466,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000002,0.000000,0.000044,0.000356,0.000346,0.000023,0.281588,-0.000346,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000218,0.000211,0.000021,0.281377,-0.000211,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000011,0.000000,0.000000,0.000000,0.000043,0.000002,0.000000,0.000045,0.000090,0.000088,0.000020,0.281300,-0.000077,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000011,0.000000,0.000000,0.000000,0.000044,0.000002,0.000000,0.000045,0.000000,0.000000,0.000018,0.281311,0.000011,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000000,0.000000,0.000017,0.281321,0.000011,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000000,0.000000,0.000016,0.281332,0.000011,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000014,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000000,0.000000,0.000014,0.281346,0.000014,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000017,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000000,0.000000,0.000013,0.281364,0.000017,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000000,0.000000,0.000012,0.281364,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000046,0.000000,0.000000,0.000011,0.281364,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000010,0.281364,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000010,0.281364,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000047,0.000000,0.000000,0.000009,0.281364,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000048,0.000000,0.000000,0.000008,0.281364,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000048,0.000000,0.000000,0.000008,0.281364,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000001,0.000000,0.000048,0.000133,0.000129,0.000007,0.281234,-0.000129,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000001,0.000000,0.000048,0.000387,0.000374,0.000006,0.280860,-0.000374,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000049,0.000576,0.000556,0.000006,0.280305,-0.000556,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000005,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000049,0.000737,0.000709,0.000006,0.279600,-0.000704,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000889,0.000852,0.000005,0.278749,-0.000852,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000852,0.000812,0.000005,0.277936,-0.000812,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000050,0.000762,0.000723,0.000004,0.277213,-0.000723,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000623,0.000589,0.000004,0.276624,-0.000589,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000527,0.000496,0.000004,0.276129,-0.000496,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000399,0.000375,0.000003,0.275754,-0.000375,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000051,0.000233,0.000218,0.000003,0.275535,-0.000218,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000083,0.000077,0.000003,0.275458,-0.000077,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000003,0.275458,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000052,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000053,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000002,0.275458,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000001,0.275458,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000001,0.275458,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000001,0.275458,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000001,0.275458,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000133,0.000124,0.000001,0.275334,-0.000124,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000377,0.000352,0.000001,0.274982,-0.000352,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000571,0.000532,0.000001,0.274449,-0.000532,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000727,0.000676,0.000001,0.273774,-0.000676,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000841,0.000778,0.000001,0.272995,-0.000778,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000815,0.000750,0.000001,0.272245,-0.000750,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000719,0.000660,0.000001,0.271585,-0.000660,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000612,0.000559,0.000001,0.271026,-0.000559,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000502,0.000457,0.000001,0.270568,-0.000457,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000387,0.000351,0.000001,0.270217,-0.000351,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000203,0.000184,0.000000,0.270033,-0.000184,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000044,0.000040,0.000000,0.269993,-0.000040,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.269993,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000113,0.000102,0.000000,0.269891,-0.000102,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000362,0.000327,0.000000,0.269564,-0.000327,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000564,0.000509,0.000000,0.269055,-0.000509,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000724,0.000651,0.000000,0.268404,-0.000651,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000863,0.000772,0.000000,0.267631,-0.000772,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000841,0.000750,0.000000,0.266881,-0.000750,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000750,0.000665,0.000000,0.266216,-0.000665,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000641,0.000567,0.000000,0.265650,-0.000567,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000530,0.000467,0.000000,0.265183,-0.000467,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000408,0.000358,0.000000,0.264825,-0.000358,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000228,0.000200,0.000000,0.264625,-0.000200,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000067,0.000059,0.000000,0.264566,-0.000059,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000000,0.264566,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000124,0.000108,0.000000,0.264458,-0.000108,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620760.csv b/test/channel_loss/channel_forcing/et/cat-2620760.csv new file mode 100644 index 000000000..ac301a041 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620760.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000813,0.000047,0.000813,0.000193,0.000193,0.008978,0.377807,-0.001374,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000745,0.000046,0.000745,0.000068,0.000068,0.008279,0.376588,-0.001219,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000684,0.000045,0.000684,0.000000,0.000000,0.007641,0.375465,-0.001123,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000628,0.000044,0.000628,0.000000,0.000000,0.007057,0.374369,-0.001096,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000577,0.000043,0.000577,0.000000,0.000000,0.006522,0.373301,-0.001069,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000042,0.000532,0.000000,0.000000,0.006032,0.372258,-0.001043,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000490,0.000041,0.000490,0.000000,0.000000,0.005583,0.371240,-0.001018,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000452,0.000040,0.000452,0.000000,0.000000,0.005171,0.370247,-0.000993,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000418,0.000039,0.000418,0.000000,0.000000,0.004792,0.369279,-0.000969,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000386,0.000038,0.000386,0.000000,0.000000,0.004444,0.368334,-0.000945,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000357,0.000037,0.000358,0.000000,0.000000,0.004124,0.367412,-0.000922,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000331,0.000036,0.000331,0.000000,0.000000,0.003829,0.366512,-0.000900,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000306,0.000035,0.000307,0.000000,0.000000,0.003558,0.365634,-0.000878,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000284,0.000034,0.000285,0.000000,0.000000,0.003308,0.364778,-0.000856,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000264,0.000033,0.000265,0.000141,0.000141,0.003078,0.363805,-0.000973,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000245,0.000032,0.000246,0.000382,0.000382,0.002865,0.362621,-0.001184,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000228,0.000031,0.000229,0.000577,0.000577,0.002668,0.361275,-0.001346,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000212,0.000029,0.000213,0.000747,0.000747,0.002485,0.359796,-0.001479,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000197,0.000028,0.000199,0.000687,0.000687,0.002316,0.358412,-0.001384,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000442,0.000000,0.000000,0.000000,0.000001,0.000184,0.000027,0.000185,0.000676,0.000676,0.002159,0.357503,-0.000908,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000607,0.000000,0.000000,0.000000,0.000002,0.000171,0.000026,0.000173,0.000603,0.000603,0.002014,0.356849,-0.000654,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000667,0.000002,0.000004,0.000002,0.000002,0.000160,0.000026,0.000163,0.000445,0.000445,0.001881,0.356419,-0.000430,1.000000,0.000002 +22,2022-08-01 22:00:00,0.000754,0.000007,0.000011,0.000007,0.000002,0.000149,0.000026,0.000158,0.000369,0.000369,0.001758,0.356152,-0.000268,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000657,0.000010,0.000011,0.000010,0.000002,0.000139,0.000025,0.000151,0.000270,0.000270,0.001644,0.355893,-0.000259,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000620,0.000013,0.000014,0.000013,0.000002,0.000130,0.000025,0.000145,0.000192,0.000192,0.001539,0.355678,-0.000215,1.000000,0.000009 +25,2022-08-02 01:00:00,0.000933,0.000035,0.000053,0.000035,0.000002,0.000122,0.000025,0.000159,0.000084,0.000084,0.001443,0.355840,0.000163,1.000000,0.000027 +26,2022-08-02 02:00:00,0.000988,0.000055,0.000071,0.000055,0.000003,0.000114,0.000026,0.000172,0.000000,0.000000,0.001354,0.356117,0.000277,1.000000,0.000043 +27,2022-08-02 03:00:00,0.000998,0.000068,0.000072,0.000068,0.000003,0.000107,0.000026,0.000178,0.000000,0.000000,0.001273,0.356396,0.000279,1.000000,0.000047 +28,2022-08-02 04:00:00,0.000983,0.000071,0.000070,0.000071,0.000003,0.000101,0.000026,0.000175,0.000000,0.000000,0.001198,0.356655,0.000259,1.000000,0.000046 +29,2022-08-02 05:00:00,0.000998,0.000072,0.000072,0.000072,0.000003,0.000095,0.000026,0.000170,0.000000,0.000000,0.001129,0.356920,0.000265,1.000000,0.000047 +30,2022-08-02 06:00:00,0.001001,0.000072,0.000073,0.000072,0.000003,0.000090,0.000027,0.000165,0.000000,0.000000,0.001066,0.357182,0.000261,1.000000,0.000047 +31,2022-08-02 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000004,0.000085,0.000026,0.000121,0.000000,0.000000,0.001007,0.356531,-0.000651,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000004,0.000080,0.000025,0.000098,0.000000,0.000000,0.000953,0.355897,-0.000635,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000076,0.000025,0.000080,0.000000,0.000000,0.000902,0.355277,-0.000619,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000072,0.000024,0.000076,0.000000,0.000000,0.000854,0.354673,-0.000604,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000068,0.000024,0.000072,0.000000,0.000000,0.000810,0.354084,-0.000589,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000065,0.000023,0.000069,0.000000,0.000000,0.000768,0.353509,-0.000575,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000061,0.000022,0.000066,0.000000,0.000000,0.000730,0.352948,-0.000561,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000058,0.000022,0.000063,0.000120,0.000120,0.000693,0.352283,-0.000664,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000055,0.000021,0.000061,0.000324,0.000324,0.000659,0.351436,-0.000847,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000053,0.000020,0.000058,0.000488,0.000488,0.000626,0.350449,-0.000987,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000050,0.000019,0.000056,0.000633,0.000633,0.000595,0.349345,-0.001104,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000047,0.000018,0.000053,0.000751,0.000751,0.000566,0.348153,-0.001192,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000045,0.000017,0.000051,0.000735,0.000735,0.000537,0.347005,-0.001148,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000043,0.000015,0.000049,0.000675,0.000675,0.000510,0.345944,-0.001061,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000041,0.000015,0.000047,0.000599,0.000599,0.000484,0.344983,-0.000961,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000038,0.000014,0.000045,0.000477,0.000477,0.000459,0.344165,-0.000819,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000036,0.000013,0.000044,0.000363,0.000363,0.000436,0.343477,-0.000687,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000035,0.000012,0.000042,0.000219,0.000219,0.000414,0.342947,-0.000530,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000033,0.000012,0.000041,0.000065,0.000065,0.000393,0.342579,-0.000367,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000031,0.000012,0.000039,0.000000,0.000000,0.000373,0.342284,-0.000295,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000030,0.000012,0.000038,0.000000,0.000000,0.000355,0.341997,-0.000288,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000028,0.000011,0.000037,0.000000,0.000000,0.000338,0.341716,-0.000281,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000027,0.000011,0.000036,0.000000,0.000000,0.000322,0.341442,-0.000274,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000026,0.000011,0.000035,0.000000,0.000000,0.000307,0.341174,-0.000267,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000025,0.000010,0.000034,0.000000,0.000000,0.000293,0.340914,-0.000261,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000023,0.000010,0.000033,0.000000,0.000000,0.000280,0.340659,-0.000254,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000022,0.000010,0.000032,0.000000,0.000000,0.000268,0.340411,-0.000248,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000021,0.000010,0.000031,0.000000,0.000000,0.000256,0.340169,-0.000242,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000020,0.000009,0.000031,0.000000,0.000000,0.000245,0.339932,-0.000236,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000020,0.000009,0.000030,0.000000,0.000000,0.000235,0.339702,-0.000231,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000019,0.000009,0.000030,0.000000,0.000000,0.000225,0.339477,-0.000225,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000018,0.000009,0.000029,0.000136,0.000136,0.000215,0.339124,-0.000352,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000017,0.000008,0.000029,0.000385,0.000385,0.000206,0.338538,-0.000586,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000016,0.000007,0.000028,0.000580,0.000580,0.000197,0.337776,-0.000762,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000016,0.000006,0.000027,0.000745,0.000745,0.000188,0.336871,-0.000905,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000015,0.000005,0.000027,0.000776,0.000776,0.000178,0.335957,-0.000914,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000014,0.000005,0.000026,0.000751,0.000751,0.000169,0.335091,-0.000867,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000013,0.000004,0.000026,0.000684,0.000684,0.000160,0.334310,-0.000780,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000013,0.000003,0.000025,0.000583,0.000583,0.000150,0.333647,-0.000663,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000012,0.000003,0.000025,0.000482,0.000482,0.000141,0.333099,-0.000548,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000011,0.000002,0.000024,0.000363,0.000363,0.000132,0.332681,-0.000418,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000010,0.000002,0.000024,0.000227,0.000227,0.000124,0.332405,-0.000276,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000010,0.000002,0.000024,0.000079,0.000079,0.000116,0.332281,-0.000125,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000009,0.000002,0.000023,0.000000,0.000000,0.000109,0.332236,-0.000044,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000009,0.000002,0.000023,0.000000,0.000000,0.000102,0.332193,-0.000043,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000008,0.000002,0.000023,0.000000,0.000000,0.000096,0.332151,-0.000042,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000090,0.332110,-0.000041,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000084,0.332070,-0.000040,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000007,0.000002,0.000022,0.000000,0.000000,0.000079,0.332031,-0.000039,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000006,0.000002,0.000022,0.000000,0.000000,0.000075,0.331992,-0.000038,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000006,0.000001,0.000022,0.000000,0.000000,0.000070,0.331955,-0.000037,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000006,0.000001,0.000022,0.000000,0.000000,0.000066,0.331919,-0.000036,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000005,0.000001,0.000022,0.000000,0.000000,0.000062,0.331883,-0.000035,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000005,0.000001,0.000021,0.000000,0.000000,0.000059,0.331849,-0.000035,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000005,0.000001,0.000021,0.000000,0.000000,0.000056,0.331815,-0.000034,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000004,0.000001,0.000021,0.000131,0.000131,0.000052,0.331654,-0.000161,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000004,0.000001,0.000021,0.000375,0.000375,0.000049,0.331259,-0.000395,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000004,0.000000,0.000021,0.000572,0.000572,0.000046,0.330681,-0.000578,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000004,0.000000,0.000021,0.000749,0.000749,0.000042,0.329932,-0.000749,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000003,0.000000,0.000021,0.000880,0.000878,0.000039,0.329054,-0.000878,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000003,0.000000,0.000021,0.000869,0.000863,0.000036,0.328191,-0.000863,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000003,0.000000,0.000021,0.000772,0.000763,0.000033,0.327428,-0.000763,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000003,0.000000,0.000021,0.000636,0.000626,0.000030,0.326802,-0.000626,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000516,0.000506,0.000028,0.326296,-0.000506,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000392,0.000384,0.000026,0.325912,-0.000384,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000002,0.000000,0.000021,0.000232,0.000226,0.000024,0.325686,-0.000226,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000002,0.000000,0.000021,0.000086,0.000084,0.000022,0.325601,-0.000084,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000002,0.000000,0.000022,0.000000,0.000000,0.000020,0.325601,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000002,0.000000,0.000022,0.000000,0.000000,0.000019,0.325601,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000022,0.000000,0.000000,0.000017,0.325601,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000001,0.000000,0.000022,0.000000,0.000000,0.000016,0.325601,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000000,0.000000,0.000015,0.325601,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000000,0.000000,0.000014,0.325601,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000000,0.000000,0.000013,0.325601,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000001,0.000000,0.000022,0.000000,0.000000,0.000012,0.325601,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000022,0.000000,0.000000,0.000011,0.325601,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000000,0.000000,0.000010,0.325601,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000000,0.000000,0.000009,0.325601,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000000,0.000000,0.000008,0.325601,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000001,0.000000,0.000023,0.000148,0.000145,0.000008,0.325457,-0.000145,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000023,0.000388,0.000379,0.000007,0.325078,-0.000379,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000023,0.000583,0.000567,0.000007,0.324512,-0.000567,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000023,0.000755,0.000732,0.000006,0.323780,-0.000732,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000024,0.000793,0.000766,0.000006,0.323014,-0.000766,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000000,0.000000,0.000024,0.000769,0.000740,0.000005,0.322274,-0.000740,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000677,0.000650,0.000005,0.321624,-0.000650,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000573,0.000548,0.000004,0.321076,-0.000548,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000475,0.000452,0.000004,0.320624,-0.000452,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000024,0.000343,0.000326,0.000004,0.320298,-0.000326,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000213,0.000202,0.000004,0.320096,-0.000202,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000000,0.000000,0.000025,0.000082,0.000078,0.000003,0.320019,-0.000078,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000003,0.320019,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000003,0.320019,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000003,0.320019,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000025,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000000,0.000000,0.000026,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000002,0.320019,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000026,0.000000,0.000000,0.000001,0.320019,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.320019,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000000,0.000000,0.000001,0.320019,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000126,0.000120,0.000001,0.319899,-0.000120,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000371,0.000351,0.000001,0.319548,-0.000351,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000570,0.000538,0.000001,0.319009,-0.000538,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000027,0.000743,0.000700,0.000001,0.318310,-0.000700,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000882,0.000828,0.000001,0.317482,-0.000828,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000864,0.000808,0.000001,0.316675,-0.000808,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000792,0.000737,0.000001,0.315938,-0.000737,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000639,0.000593,0.000001,0.315345,-0.000593,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000519,0.000480,0.000001,0.314865,-0.000480,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000390,0.000360,0.000001,0.314506,-0.000360,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000227,0.000208,0.000001,0.314297,-0.000208,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000076,0.000070,0.000000,0.314227,-0.000070,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000000,0.314227,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000125,0.000115,0.000000,0.314112,-0.000115,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000361,0.000332,0.000000,0.313781,-0.000332,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000560,0.000513,0.000000,0.313268,-0.000513,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000721,0.000659,0.000000,0.312609,-0.000659,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000810,0.000737,0.000000,0.311872,-0.000737,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000798,0.000724,0.000000,0.311148,-0.000724,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000722,0.000651,0.000000,0.310497,-0.000651,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000596,0.000536,0.000000,0.309961,-0.000536,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000476,0.000427,0.000000,0.309534,-0.000427,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000366,0.000327,0.000000,0.309207,-0.000327,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000193,0.000173,0.000000,0.309034,-0.000173,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000036,0.000032,0.000000,0.309002,-0.000032,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.309002,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000105,0.000094,0.000000,0.308908,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000351,0.000313,0.000000,0.308596,-0.000313,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000557,0.000495,0.000000,0.308100,-0.000495,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000726,0.000645,0.000000,0.307456,-0.000645,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000857,0.000758,0.000000,0.306698,-0.000758,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000846,0.000744,0.000000,0.305954,-0.000744,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000767,0.000672,0.000000,0.305281,-0.000672,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000646,0.000564,0.000000,0.304717,-0.000564,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000516,0.000449,0.000000,0.304268,-0.000449,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000393,0.000341,0.000000,0.303927,-0.000341,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000217,0.000188,0.000000,0.303739,-0.000188,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000058,0.000050,0.000000,0.303689,-0.000050,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.303689,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000117,0.000101,0.000000,0.303588,-0.000101,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620761.csv b/test/channel_loss/channel_forcing/et/cat-2620761.csv new file mode 100644 index 000000000..af5e154bb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620761.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000815,0.000065,0.000815,0.000204,0.000204,0.009011,0.374830,-0.002389,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000064,0.000748,0.000074,0.000074,0.008327,0.372619,-0.002211,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000062,0.000688,0.000000,0.000000,0.007701,0.370528,-0.002091,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000633,0.000061,0.000633,0.000000,0.000000,0.007129,0.368483,-0.002046,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000060,0.000584,0.000000,0.000000,0.006604,0.366481,-0.002002,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000539,0.000058,0.000539,0.000000,0.000000,0.006123,0.364522,-0.001959,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000498,0.000057,0.000498,0.000000,0.000000,0.005682,0.362606,-0.001917,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000461,0.000056,0.000461,0.000000,0.000000,0.005277,0.360730,-0.001875,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000427,0.000055,0.000427,0.000000,0.000000,0.004905,0.358895,-0.001835,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000396,0.000053,0.000397,0.000000,0.000000,0.004563,0.357100,-0.001795,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000367,0.000052,0.000368,0.000000,0.000000,0.004247,0.355343,-0.001757,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000341,0.000051,0.000342,0.000000,0.000000,0.003957,0.353624,-0.001719,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000318,0.000050,0.000319,0.000000,0.000000,0.003690,0.351942,-0.001682,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000296,0.000049,0.000297,0.000000,0.000000,0.003443,0.350296,-0.001646,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000276,0.000048,0.000277,0.000143,0.000143,0.003215,0.348546,-0.001751,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000257,0.000047,0.000259,0.000388,0.000388,0.003005,0.346593,-0.001952,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000240,0.000045,0.000242,0.000582,0.000582,0.002810,0.344493,-0.002101,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000224,0.000044,0.000226,0.000752,0.000752,0.002630,0.342271,-0.002222,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000210,0.000042,0.000212,0.000705,0.000705,0.002463,0.340144,-0.002127,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000442,0.000000,0.000000,0.000000,0.000003,0.000196,0.000041,0.000199,0.000683,0.000683,0.002308,0.338516,-0.001628,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000505,0.000000,0.000000,0.000000,0.000003,0.000184,0.000040,0.000187,0.000603,0.000603,0.002164,0.337064,-0.001452,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000442,0.000000,0.000000,0.000000,0.000003,0.000172,0.000039,0.000176,0.000458,0.000458,0.002032,0.335722,-0.001342,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000505,0.000001,0.000001,0.000001,0.000004,0.000162,0.000039,0.000166,0.000383,0.000383,0.001909,0.334543,-0.001179,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000442,0.000002,0.000003,0.000002,0.000004,0.000152,0.000038,0.000158,0.000282,0.000282,0.001795,0.333426,-0.001118,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000505,0.000006,0.000009,0.000006,0.000004,0.000143,0.000037,0.000153,0.000199,0.000199,0.001689,0.332469,-0.000956,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000589,0.000016,0.000024,0.000016,0.000005,0.000134,0.000037,0.000155,0.000092,0.000092,0.001592,0.331706,-0.000764,1.000000,0.000013 +26,2022-08-02 02:00:00,0.000811,0.000042,0.000061,0.000042,0.000005,0.000127,0.000037,0.000173,0.000000,0.000000,0.001502,0.331229,-0.000477,1.000000,0.000032 +27,2022-08-02 03:00:00,0.000897,0.000061,0.000074,0.000061,0.000005,0.000120,0.000036,0.000186,0.000000,0.000000,0.001418,0.330833,-0.000396,1.000000,0.000046 +28,2022-08-02 04:00:00,0.000939,0.000076,0.000081,0.000076,0.000006,0.000113,0.000036,0.000194,0.000000,0.000000,0.001341,0.330481,-0.000352,1.000000,0.000051 +29,2022-08-02 05:00:00,0.000944,0.000080,0.000082,0.000080,0.000006,0.000107,0.000036,0.000193,0.000000,0.000000,0.001270,0.330141,-0.000341,1.000000,0.000053 +30,2022-08-02 06:00:00,0.000945,0.000082,0.000082,0.000082,0.000006,0.000101,0.000036,0.000190,0.000000,0.000000,0.001204,0.329808,-0.000333,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000007,0.000096,0.000035,0.000140,0.000000,0.000000,0.001143,0.328638,-0.001170,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000007,0.000091,0.000034,0.000115,0.000000,0.000000,0.001086,0.327494,-0.001144,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000087,0.000033,0.000094,0.000000,0.000000,0.001033,0.326374,-0.001120,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000083,0.000033,0.000091,0.000000,0.000000,0.000983,0.325279,-0.001096,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000079,0.000032,0.000087,0.000000,0.000000,0.000936,0.324207,-0.001072,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000075,0.000031,0.000084,0.000000,0.000000,0.000892,0.323158,-0.001049,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000071,0.000031,0.000081,0.000000,0.000000,0.000852,0.322131,-0.001026,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000068,0.000030,0.000078,0.000125,0.000125,0.000813,0.321004,-0.001127,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000065,0.000029,0.000075,0.000336,0.000336,0.000777,0.319695,-0.001309,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000062,0.000028,0.000073,0.000498,0.000498,0.000743,0.318256,-0.001440,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000060,0.000027,0.000071,0.000642,0.000642,0.000710,0.316707,-0.001549,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000057,0.000026,0.000068,0.000767,0.000767,0.000679,0.315069,-0.001638,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000054,0.000025,0.000066,0.000740,0.000740,0.000650,0.313492,-0.001577,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000052,0.000024,0.000064,0.000682,0.000682,0.000622,0.312007,-0.001485,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000050,0.000023,0.000063,0.000610,0.000610,0.000595,0.310623,-0.001384,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000048,0.000022,0.000061,0.000494,0.000494,0.000570,0.309383,-0.001240,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000046,0.000021,0.000059,0.000375,0.000375,0.000545,0.308285,-0.001097,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000044,0.000021,0.000058,0.000225,0.000225,0.000523,0.307359,-0.000927,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000042,0.000020,0.000057,0.000071,0.000071,0.000501,0.306603,-0.000756,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000040,0.000020,0.000055,0.000000,0.000000,0.000481,0.305933,-0.000670,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000039,0.000020,0.000054,0.000000,0.000000,0.000462,0.305277,-0.000656,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000037,0.000019,0.000053,0.000000,0.000000,0.000444,0.304635,-0.000642,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000036,0.000019,0.000052,0.000000,0.000000,0.000427,0.304008,-0.000628,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000034,0.000018,0.000052,0.000000,0.000000,0.000411,0.303393,-0.000614,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000033,0.000018,0.000051,0.000000,0.000000,0.000396,0.302792,-0.000601,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000032,0.000018,0.000050,0.000000,0.000000,0.000381,0.302204,-0.000588,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000031,0.000017,0.000049,0.000000,0.000000,0.000368,0.301628,-0.000576,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000030,0.000017,0.000049,0.000000,0.000000,0.000355,0.301065,-0.000563,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000029,0.000016,0.000048,0.000000,0.000000,0.000343,0.300514,-0.000551,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000028,0.000016,0.000048,0.000000,0.000000,0.000331,0.299975,-0.000539,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000027,0.000016,0.000048,0.000000,0.000000,0.000320,0.299447,-0.000528,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000026,0.000015,0.000047,0.000139,0.000139,0.000310,0.298795,-0.000652,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000025,0.000015,0.000047,0.000392,0.000392,0.000299,0.297909,-0.000886,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000024,0.000014,0.000046,0.000586,0.000586,0.000289,0.296853,-0.001057,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000023,0.000013,0.000046,0.000752,0.000752,0.000279,0.295657,-0.001196,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000022,0.000012,0.000046,0.000800,0.000800,0.000269,0.294439,-0.001217,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000022,0.000012,0.000046,0.000752,0.000752,0.000259,0.293295,-0.001144,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000021,0.000011,0.000045,0.000687,0.000687,0.000249,0.292239,-0.001056,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000020,0.000010,0.000045,0.000597,0.000597,0.000240,0.291294,-0.000945,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000019,0.000010,0.000045,0.000500,0.000500,0.000230,0.290464,-0.000830,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000018,0.000009,0.000044,0.000375,0.000375,0.000221,0.289774,-0.000690,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000018,0.000009,0.000044,0.000230,0.000230,0.000213,0.289241,-0.000533,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000017,0.000009,0.000044,0.000084,0.000084,0.000204,0.288862,-0.000379,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000016,0.000009,0.000044,0.000000,0.000000,0.000197,0.288574,-0.000288,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000016,0.000008,0.000044,0.000000,0.000000,0.000189,0.288292,-0.000282,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000015,0.000008,0.000044,0.000000,0.000000,0.000182,0.288016,-0.000276,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000015,0.000008,0.000044,0.000000,0.000000,0.000176,0.287745,-0.000270,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000014,0.000008,0.000044,0.000000,0.000000,0.000169,0.287481,-0.000264,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000014,0.000008,0.000044,0.000000,0.000000,0.000163,0.287222,-0.000259,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000013,0.000008,0.000044,0.000000,0.000000,0.000158,0.286969,-0.000253,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000013,0.000007,0.000044,0.000000,0.000000,0.000152,0.286721,-0.000248,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000012,0.000007,0.000044,0.000000,0.000000,0.000147,0.286479,-0.000242,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000012,0.000007,0.000044,0.000000,0.000000,0.000143,0.286242,-0.000237,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000012,0.000007,0.000044,0.000000,0.000000,0.000138,0.286010,-0.000232,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000007,0.000044,0.000000,0.000000,0.000134,0.285783,-0.000227,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000011,0.000007,0.000044,0.000135,0.000135,0.000129,0.285428,-0.000354,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000006,0.000045,0.000386,0.000386,0.000125,0.284836,-0.000592,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000006,0.000045,0.000580,0.000580,0.000121,0.284067,-0.000769,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000010,0.000005,0.000045,0.000758,0.000758,0.000116,0.283140,-0.000927,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000004,0.000045,0.000893,0.000893,0.000111,0.282101,-0.001039,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000009,0.000004,0.000045,0.000878,0.000878,0.000106,0.281099,-0.001002,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000772,0.000772,0.000101,0.280222,-0.000877,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000008,0.000003,0.000045,0.000635,0.000635,0.000095,0.279499,-0.000724,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000008,0.000002,0.000045,0.000528,0.000528,0.000090,0.278895,-0.000604,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000002,0.000045,0.000404,0.000404,0.000085,0.278425,-0.000469,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000007,0.000002,0.000045,0.000235,0.000235,0.000080,0.278132,-0.000294,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000002,0.000045,0.000092,0.000092,0.000075,0.277984,-0.000148,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000002,0.000046,0.000000,0.000000,0.000071,0.277930,-0.000054,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000002,0.000046,0.000000,0.000000,0.000067,0.277876,-0.000053,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000046,0.000000,0.000000,0.000063,0.277824,-0.000052,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000046,0.000000,0.000000,0.000060,0.277773,-0.000051,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000001,0.000046,0.000000,0.000000,0.000057,0.277724,-0.000050,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000004,0.000001,0.000046,0.000000,0.000000,0.000054,0.277675,-0.000049,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000004,0.000001,0.000047,0.000000,0.000000,0.000051,0.277627,-0.000048,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000001,0.000047,0.000000,0.000000,0.000048,0.277581,-0.000047,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000001,0.000047,0.000000,0.000000,0.000046,0.277535,-0.000046,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000001,0.000047,0.000000,0.000000,0.000044,0.277490,-0.000045,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000003,0.000001,0.000048,0.000000,0.000000,0.000041,0.277446,-0.000044,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000003,0.000001,0.000048,0.000001,0.000001,0.000039,0.277403,-0.000044,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000003,0.000001,0.000048,0.000151,0.000151,0.000037,0.277213,-0.000190,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000001,0.000049,0.000398,0.000398,0.000035,0.276786,-0.000427,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000591,0.000591,0.000033,0.276180,-0.000606,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000000,0.000049,0.000764,0.000764,0.000031,0.275416,-0.000764,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000002,0.000000,0.000049,0.000803,0.000803,0.000028,0.274613,-0.000803,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000002,0.000000,0.000050,0.000771,0.000767,0.000026,0.273846,-0.000767,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000002,0.000000,0.000050,0.000659,0.000652,0.000024,0.273194,-0.000652,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000002,0.000000,0.000050,0.000568,0.000560,0.000022,0.272634,-0.000560,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000002,0.000000,0.000050,0.000490,0.000481,0.000020,0.272153,-0.000481,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000002,0.000000,0.000051,0.000359,0.000352,0.000019,0.271801,-0.000352,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000001,0.000000,0.000051,0.000219,0.000214,0.000017,0.271587,-0.000214,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000051,0.000089,0.000087,0.000016,0.271500,-0.000087,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000001,0.000000,0.000052,0.000000,0.000000,0.000015,0.271500,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000014,0.271500,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000001,0.000000,0.000052,0.000000,0.000000,0.000013,0.271500,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000052,0.000000,0.000000,0.000012,0.271500,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000011,0.271500,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000001,0.000000,0.000053,0.000000,0.000000,0.000010,0.271500,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000053,0.000000,0.000000,0.000009,0.271500,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000008,0.271500,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000000,0.000000,0.000008,0.271500,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000054,0.000000,0.000000,0.000007,0.271500,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000000,0.000000,0.000007,0.271500,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000055,0.000000,0.000000,0.000006,0.271500,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000129,0.000126,0.000006,0.271375,-0.000126,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000056,0.000383,0.000373,0.000005,0.271002,-0.000373,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000580,0.000564,0.000005,0.270438,-0.000564,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000751,0.000728,0.000004,0.269710,-0.000728,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000057,0.000901,0.000869,0.000004,0.268842,-0.000869,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000869,0.000833,0.000004,0.268008,-0.000833,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000058,0.000786,0.000749,0.000004,0.267259,-0.000749,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000635,0.000603,0.000003,0.266656,-0.000603,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000530,0.000501,0.000003,0.266155,-0.000501,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000400,0.000377,0.000003,0.265779,-0.000377,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000231,0.000217,0.000003,0.265562,-0.000217,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000082,0.000077,0.000002,0.265485,-0.000077,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.265485,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.265485,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.265485,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000002,0.265485,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000002,0.265485,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000000,0.000000,0.000001,0.265485,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000128,0.000120,0.000001,0.265365,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000371,0.000348,0.000001,0.265017,-0.000348,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000573,0.000536,0.000001,0.264481,-0.000536,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000735,0.000685,0.000001,0.263797,-0.000685,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000841,0.000780,0.000001,0.263017,-0.000780,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000820,0.000757,0.000001,0.262260,-0.000757,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000724,0.000664,0.000001,0.261596,-0.000664,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000613,0.000560,0.000000,0.261035,-0.000560,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000492,0.000448,0.000000,0.260587,-0.000448,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000383,0.000348,0.000000,0.260240,-0.000348,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000201,0.000182,0.000000,0.260057,-0.000182,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000042,0.000038,0.000000,0.260019,-0.000038,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000000,0.000000,0.000000,0.260019,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000109,0.000098,0.000000,0.259921,-0.000098,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000357,0.000322,0.000000,0.259599,-0.000322,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000568,0.000512,0.000000,0.259087,-0.000512,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000734,0.000659,0.000000,0.258428,-0.000659,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000869,0.000777,0.000000,0.257651,-0.000777,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000849,0.000755,0.000000,0.256896,-0.000755,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000764,0.000675,0.000000,0.256221,-0.000675,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000651,0.000573,0.000000,0.255648,-0.000573,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000530,0.000465,0.000000,0.255183,-0.000465,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000410,0.000358,0.000000,0.254825,-0.000358,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000227,0.000198,0.000000,0.254627,-0.000198,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000065,0.000057,0.000000,0.254571,-0.000057,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.254571,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000120,0.000104,0.000000,0.254467,-0.000104,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620762.csv b/test/channel_loss/channel_forcing/et/cat-2620762.csv new file mode 100644 index 000000000..1e336c210 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620762.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000831,0.000246,0.000831,0.000204,0.000204,0.009169,0.377045,-0.002311,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.000778,0.000239,0.000778,0.000075,0.000075,0.008630,0.374918,-0.002127,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000005,0.000000,0.000000,0.000000,0.000000,0.000730,0.000234,0.000730,0.000000,0.000000,0.008134,0.372918,-0.002000,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000686,0.000228,0.000686,0.000000,0.000000,0.007676,0.370963,-0.001956,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000646,0.000222,0.000646,0.000000,0.000000,0.007252,0.369054,-0.001909,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000609,0.000217,0.000609,0.000000,0.000000,0.006861,0.367192,-0.001862,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000574,0.000212,0.000575,0.000000,0.000000,0.006498,0.365374,-0.001817,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000543,0.000207,0.000543,0.000000,0.000000,0.006162,0.363601,-0.001773,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000514,0.000202,0.000514,0.000000,0.000000,0.005849,0.361871,-0.001730,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000487,0.000197,0.000488,0.000000,0.000000,0.005559,0.360183,-0.001688,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000462,0.000192,0.000463,0.000000,0.000000,0.005289,0.358536,-0.001647,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000439,0.000187,0.000440,0.000000,0.000000,0.005037,0.356929,-0.001607,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000418,0.000183,0.000419,0.000000,0.000000,0.004801,0.355361,-0.001568,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000398,0.000178,0.000399,0.000000,0.000000,0.004582,0.353831,-0.001530,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000379,0.000174,0.000381,0.000145,0.000145,0.004376,0.352197,-0.001634,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000362,0.000168,0.000363,0.000387,0.000387,0.004182,0.350366,-0.001831,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000345,0.000163,0.000347,0.000581,0.000581,0.003999,0.348390,-0.001976,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000330,0.000156,0.000332,0.000753,0.000753,0.003826,0.346295,-0.002095,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000315,0.000151,0.000317,0.000710,0.000710,0.003661,0.344292,-0.002002,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000462,0.000000,0.000000,0.000000,0.000002,0.000302,0.000146,0.000304,0.000670,0.000670,0.003506,0.342828,-0.001464,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000549,0.000000,0.000000,0.000000,0.000003,0.000289,0.000143,0.000291,0.000605,0.000605,0.003360,0.341548,-0.001281,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000474,0.000000,0.000000,0.000000,0.000003,0.000276,0.000139,0.000279,0.000460,0.000460,0.003223,0.340366,-0.001182,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000526,0.000000,0.000001,0.000000,0.000003,0.000265,0.000136,0.000269,0.000382,0.000382,0.003094,0.339339,-0.001026,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000463,0.000001,0.000001,0.000001,0.000003,0.000254,0.000133,0.000258,0.000287,0.000287,0.002973,0.338369,-0.000971,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000515,0.000002,0.000003,0.000002,0.000004,0.000244,0.000131,0.000250,0.000199,0.000199,0.002860,0.337556,-0.000813,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000711,0.000007,0.000010,0.000007,0.000004,0.000235,0.000130,0.000246,0.000091,0.000091,0.002755,0.337052,-0.000504,1.000000,0.000005 +26,2022-08-02 02:00:00,0.000885,0.000015,0.000021,0.000015,0.000004,0.000227,0.000129,0.000246,0.000000,0.000000,0.002657,0.336810,-0.000243,1.000000,0.000012 +27,2022-08-02 03:00:00,0.000882,0.000019,0.000021,0.000019,0.000005,0.000219,0.000128,0.000242,0.000000,0.000000,0.002566,0.336570,-0.000239,1.000000,0.000014 +28,2022-08-02 04:00:00,0.000898,0.000021,0.000022,0.000021,0.000005,0.000211,0.000128,0.000238,0.000000,0.000000,0.002482,0.336351,-0.000219,1.000000,0.000014 +29,2022-08-02 05:00:00,0.000911,0.000022,0.000022,0.000022,0.000005,0.000205,0.000127,0.000232,0.000000,0.000000,0.002405,0.336150,-0.000202,1.000000,0.000014 +30,2022-08-02 06:00:00,0.000901,0.000022,0.000022,0.000022,0.000006,0.000198,0.000126,0.000226,0.000000,0.000000,0.002333,0.335944,-0.000206,1.000000,0.000014 +31,2022-08-02 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000006,0.000192,0.000123,0.000208,0.000000,0.000000,0.002264,0.334885,-0.001059,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000006,0.000187,0.000120,0.000197,0.000000,0.000000,0.002197,0.333852,-0.001033,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000181,0.000117,0.000188,0.000000,0.000000,0.002134,0.332844,-0.001008,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000176,0.000115,0.000183,0.000000,0.000000,0.002072,0.331861,-0.000984,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000171,0.000112,0.000178,0.000000,0.000000,0.002013,0.330901,-0.000960,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000166,0.000109,0.000173,0.000000,0.000000,0.001957,0.329965,-0.000936,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000161,0.000106,0.000169,0.000000,0.000000,0.001902,0.329051,-0.000914,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000157,0.000104,0.000165,0.000127,0.000127,0.001849,0.328035,-0.001015,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000152,0.000100,0.000161,0.000335,0.000335,0.001797,0.326841,-0.001194,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000148,0.000096,0.000157,0.000500,0.000500,0.001745,0.325515,-0.001326,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000143,0.000092,0.000153,0.000648,0.000648,0.001694,0.324078,-0.001438,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000139,0.000088,0.000149,0.000771,0.000771,0.001643,0.322555,-0.001523,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000135,0.000083,0.000145,0.000752,0.000752,0.001592,0.321087,-0.001467,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000130,0.000079,0.000141,0.000682,0.000682,0.001541,0.319723,-0.001364,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000126,0.000076,0.000137,0.000612,0.000612,0.001491,0.318461,-0.001262,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000122,0.000073,0.000133,0.000495,0.000495,0.001442,0.317344,-0.001117,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000118,0.000070,0.000129,0.000378,0.000378,0.001394,0.316368,-0.000976,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000114,0.000067,0.000126,0.000226,0.000226,0.001348,0.315564,-0.000804,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000110,0.000066,0.000122,0.000072,0.000072,0.001303,0.314930,-0.000634,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000106,0.000064,0.000119,0.000000,0.000000,0.001261,0.314381,-0.000549,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000103,0.000062,0.000116,0.000000,0.000000,0.001221,0.313846,-0.000535,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000100,0.000061,0.000113,0.000000,0.000000,0.001182,0.313323,-0.000522,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000096,0.000059,0.000111,0.000000,0.000000,0.001145,0.312813,-0.000510,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000093,0.000058,0.000108,0.000000,0.000000,0.001110,0.312316,-0.000497,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000090,0.000057,0.000105,0.000000,0.000000,0.001076,0.311831,-0.000485,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000088,0.000055,0.000103,0.000000,0.000000,0.001043,0.311357,-0.000474,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000085,0.000054,0.000101,0.000000,0.000000,0.001012,0.310895,-0.000462,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000083,0.000053,0.000099,0.000000,0.000000,0.000982,0.310444,-0.000451,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000080,0.000051,0.000097,0.000000,0.000000,0.000953,0.310004,-0.000440,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000078,0.000050,0.000095,0.000000,0.000000,0.000926,0.309575,-0.000429,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000075,0.000049,0.000093,0.000000,0.000000,0.000899,0.309156,-0.000419,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000073,0.000047,0.000091,0.000140,0.000140,0.000873,0.308611,-0.000545,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000071,0.000045,0.000089,0.000389,0.000389,0.000847,0.307836,-0.000775,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000069,0.000042,0.000088,0.000584,0.000584,0.000820,0.306889,-0.000946,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000067,0.000039,0.000086,0.000753,0.000753,0.000793,0.305801,-0.001088,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000064,0.000036,0.000084,0.000794,0.000794,0.000765,0.304699,-0.001102,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000062,0.000033,0.000082,0.000739,0.000739,0.000736,0.303677,-0.001022,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000059,0.000030,0.000080,0.000682,0.000682,0.000707,0.302736,-0.000941,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000057,0.000028,0.000078,0.000594,0.000594,0.000678,0.301904,-0.000832,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000054,0.000026,0.000076,0.000495,0.000495,0.000649,0.301188,-0.000716,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000052,0.000024,0.000074,0.000374,0.000374,0.000621,0.300608,-0.000580,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000050,0.000023,0.000072,0.000229,0.000229,0.000594,0.300183,-0.000425,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000048,0.000022,0.000070,0.000085,0.000085,0.000569,0.299909,-0.000274,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000046,0.000021,0.000069,0.000000,0.000000,0.000544,0.299725,-0.000184,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000044,0.000021,0.000067,0.000000,0.000000,0.000522,0.299545,-0.000180,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000042,0.000020,0.000066,0.000000,0.000000,0.000500,0.299370,-0.000175,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000040,0.000020,0.000064,0.000000,0.000000,0.000480,0.299199,-0.000171,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000039,0.000019,0.000063,0.000000,0.000000,0.000461,0.299032,-0.000167,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000037,0.000019,0.000062,0.000000,0.000000,0.000443,0.298869,-0.000163,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000036,0.000019,0.000061,0.000000,0.000000,0.000426,0.298710,-0.000159,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000034,0.000018,0.000060,0.000000,0.000000,0.000410,0.298555,-0.000155,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000033,0.000018,0.000059,0.000000,0.000000,0.000394,0.298403,-0.000151,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000032,0.000017,0.000058,0.000000,0.000000,0.000380,0.298256,-0.000148,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000031,0.000017,0.000058,0.000000,0.000000,0.000366,0.298112,-0.000144,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000029,0.000016,0.000057,0.000000,0.000000,0.000353,0.297971,-0.000141,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000028,0.000016,0.000056,0.000136,0.000136,0.000340,0.297701,-0.000269,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000027,0.000014,0.000056,0.000383,0.000383,0.000327,0.297197,-0.000504,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000026,0.000012,0.000055,0.000578,0.000578,0.000313,0.296515,-0.000683,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000025,0.000010,0.000054,0.000757,0.000757,0.000298,0.295674,-0.000840,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000023,0.000007,0.000053,0.000890,0.000890,0.000281,0.294724,-0.000950,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000022,0.000004,0.000052,0.000872,0.000872,0.000264,0.293814,-0.000910,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000020,0.000002,0.000051,0.000767,0.000767,0.000245,0.293029,-0.000785,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000019,0.000000,0.000050,0.000634,0.000634,0.000227,0.292393,-0.000636,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000017,0.000000,0.000049,0.000524,0.000524,0.000209,0.291869,-0.000524,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000016,0.000000,0.000048,0.000404,0.000403,0.000193,0.291467,-0.000403,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000015,0.000000,0.000047,0.000234,0.000233,0.000178,0.291234,-0.000233,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000014,0.000000,0.000046,0.000093,0.000092,0.000164,0.291142,-0.000092,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000013,0.000000,0.000045,0.000000,0.000000,0.000152,0.291142,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000012,0.000000,0.000045,0.000000,0.000000,0.000140,0.291142,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000011,0.000000,0.000044,0.000000,0.000000,0.000129,0.291142,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000010,0.000000,0.000044,0.000000,0.000000,0.000119,0.291142,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000009,0.000000,0.000043,0.000000,0.000000,0.000110,0.291142,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000008,0.000000,0.000043,0.000000,0.000000,0.000102,0.291142,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000008,0.000000,0.000043,0.000000,0.000000,0.000094,0.291142,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000007,0.000000,0.000042,0.000000,0.000000,0.000087,0.291142,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000007,0.000000,0.000042,0.000000,0.000000,0.000080,0.291142,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000006,0.000000,0.000042,0.000000,0.000000,0.000074,0.291142,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000006,0.000000,0.000042,0.000000,0.000000,0.000068,0.291142,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000005,0.000000,0.000042,0.000001,0.000001,0.000063,0.291140,-0.000001,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000005,0.000000,0.000042,0.000152,0.000151,0.000058,0.290989,-0.000151,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000004,0.000000,0.000042,0.000393,0.000390,0.000054,0.290599,-0.000390,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000000,0.000042,0.000587,0.000582,0.000049,0.290017,-0.000582,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000000,0.000042,0.000762,0.000752,0.000046,0.289265,-0.000752,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000004,0.000000,0.000042,0.000804,0.000791,0.000042,0.288475,-0.000791,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000000,0.000042,0.000768,0.000752,0.000039,0.287722,-0.000752,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000000,0.000042,0.000664,0.000647,0.000036,0.287075,-0.000647,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000003,0.000000,0.000042,0.000577,0.000560,0.000033,0.286515,-0.000560,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000003,0.000000,0.000042,0.000490,0.000474,0.000031,0.286041,-0.000474,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000002,0.000000,0.000042,0.000370,0.000357,0.000028,0.285684,-0.000357,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000002,0.000000,0.000042,0.000220,0.000212,0.000026,0.285471,-0.000212,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000043,0.000089,0.000086,0.000024,0.285385,-0.000086,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000043,0.000000,0.000000,0.000022,0.285385,0.000000,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000043,0.000000,0.000000,0.000021,0.285385,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000002,0.000000,0.000043,0.000000,0.000000,0.000019,0.285385,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000017,0.285385,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000043,0.000000,0.000000,0.000016,0.285385,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000001,0.000000,0.000044,0.000000,0.000000,0.000015,0.285385,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000014,0.285385,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000013,0.285385,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000001,0.000000,0.000044,0.000000,0.000000,0.000012,0.285385,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000000,0.000000,0.000011,0.285385,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000000,0.000000,0.000010,0.285385,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000000,0.000000,0.000009,0.285385,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000001,0.000000,0.000045,0.000130,0.000125,0.000009,0.285260,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000045,0.000380,0.000365,0.000008,0.284895,-0.000365,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000577,0.000553,0.000007,0.284341,-0.000553,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000001,0.000000,0.000046,0.000753,0.000721,0.000007,0.283621,-0.000721,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000001,0.000000,0.000046,0.000896,0.000853,0.000006,0.282767,-0.000853,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000867,0.000822,0.000006,0.281945,-0.000822,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000782,0.000738,0.000005,0.281208,-0.000738,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000047,0.000635,0.000596,0.000005,0.280611,-0.000596,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000528,0.000494,0.000004,0.280117,-0.000494,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000400,0.000373,0.000004,0.279744,-0.000373,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000048,0.000232,0.000216,0.000004,0.279528,-0.000216,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000083,0.000077,0.000004,0.279451,-0.000077,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000003,0.279451,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000003,0.279451,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000049,0.000000,0.000000,0.000003,0.279451,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000003,0.279451,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000002,0.279451,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000001,0.279451,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000000,0.000000,0.000001,0.279451,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000130,0.000120,0.000001,0.279331,-0.000120,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000369,0.000343,0.000001,0.278988,-0.000343,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000568,0.000527,0.000001,0.278461,-0.000527,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000734,0.000678,0.000001,0.277782,-0.000678,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000832,0.000766,0.000001,0.277017,-0.000766,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000813,0.000746,0.000001,0.276271,-0.000746,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000720,0.000657,0.000001,0.275614,-0.000657,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000608,0.000552,0.000001,0.275062,-0.000552,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000484,0.000439,0.000001,0.274623,-0.000439,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000381,0.000344,0.000001,0.274279,-0.000344,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000200,0.000181,0.000001,0.274098,-0.000181,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000043,0.000039,0.000001,0.274059,-0.000039,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000000,0.000000,0.000055,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000000,0.000000,0.000000,0.274059,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000110,0.000099,0.000000,0.273960,-0.000099,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000000,0.000000,0.000056,0.000355,0.000320,0.000000,0.273640,-0.000320,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000563,0.000505,0.000000,0.273135,-0.000505,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000733,0.000656,0.000000,0.272478,-0.000656,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000869,0.000775,0.000000,0.271703,-0.000775,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000833,0.000740,0.000000,0.270964,-0.000740,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000031,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000758,0.000673,0.000000,0.270322,-0.000642,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000000,0.000000,0.000057,0.000651,0.000573,0.000000,0.269749,-0.000573,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000531,0.000465,0.000000,0.269283,-0.000465,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000409,0.000358,0.000000,0.268925,-0.000358,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000226,0.000197,0.000000,0.268729,-0.000197,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000066,0.000058,0.000000,0.268671,-0.000058,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000000,0.268671,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000121,0.000106,0.000000,0.268565,-0.000106,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620763.csv b/test/channel_loss/channel_forcing/et/cat-2620763.csv new file mode 100644 index 000000000..df144edd3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620763.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.000813,0.000038,0.000813,0.000175,0.000175,0.008987,0.376828,-0.002353,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000744,0.000037,0.000744,0.000054,0.000054,0.008280,0.374632,-0.002196,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000682,0.000036,0.000682,0.000000,0.000000,0.007635,0.372536,-0.002097,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000625,0.000036,0.000626,0.000000,0.000000,0.007045,0.370483,-0.002052,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000575,0.000035,0.000575,0.000000,0.000000,0.006505,0.368474,-0.002009,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000529,0.000034,0.000529,0.000000,0.000000,0.006011,0.366507,-0.001967,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000487,0.000033,0.000487,0.000000,0.000000,0.005557,0.364581,-0.001926,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000448,0.000033,0.000449,0.000000,0.000000,0.005141,0.362696,-0.001885,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000414,0.000032,0.000414,0.000000,0.000000,0.004760,0.360851,-0.001845,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000382,0.000031,0.000383,0.000000,0.000000,0.004409,0.359045,-0.001806,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000353,0.000031,0.000354,0.000000,0.000000,0.004087,0.357276,-0.001768,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000327,0.000030,0.000327,0.000000,0.000000,0.003790,0.355545,-0.001731,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000302,0.000029,0.000303,0.000000,0.000000,0.003517,0.353850,-0.001695,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000280,0.000029,0.000281,0.000000,0.000000,0.003266,0.352191,-0.001659,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000260,0.000028,0.000261,0.000136,0.000136,0.003034,0.350434,-0.001757,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000241,0.000027,0.000243,0.000381,0.000381,0.002821,0.348474,-0.001960,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000224,0.000027,0.000226,0.000542,0.000542,0.002624,0.346398,-0.002076,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000208,0.000026,0.000210,0.000661,0.000661,0.002442,0.344249,-0.002149,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000193,0.000025,0.000196,0.000564,0.000564,0.002274,0.342241,-0.002009,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000541,0.000000,0.000000,0.000000,0.000003,0.000180,0.000025,0.000183,0.000531,0.000531,0.002118,0.340836,-0.001404,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000756,0.000007,0.000014,0.000007,0.000003,0.000167,0.000024,0.000178,0.000472,0.000472,0.001975,0.339715,-0.001121,1.000000,0.000006 +21,2022-08-01 21:00:00,0.000855,0.000025,0.000039,0.000025,0.000003,0.000156,0.000024,0.000185,0.000362,0.000362,0.001843,0.338798,-0.000918,1.000000,0.000020 +22,2022-08-01 22:00:00,0.000785,0.000033,0.000038,0.000033,0.000004,0.000145,0.000023,0.000182,0.000304,0.000304,0.001721,0.337889,-0.000908,1.000000,0.000025 +23,2022-08-01 23:00:00,0.000679,0.000036,0.000034,0.000036,0.000004,0.000136,0.000023,0.000176,0.000225,0.000225,0.001608,0.336978,-0.000911,1.000000,0.000023 +24,2022-08-02 00:00:00,0.000734,0.000045,0.000052,0.000045,0.000004,0.000127,0.000023,0.000176,0.000162,0.000162,0.001504,0.336183,-0.000795,1.000000,0.000030 +25,2022-08-02 01:00:00,0.001138,0.000113,0.000169,0.000113,0.000005,0.000119,0.000023,0.000236,0.000069,0.000069,0.001408,0.335778,-0.000405,1.000000,0.000086 +26,2022-08-02 02:00:00,0.001197,0.000167,0.000207,0.000167,0.000005,0.000111,0.000023,0.000283,0.000000,0.000000,0.001319,0.335468,-0.000310,1.000000,0.000127 +27,2022-08-02 03:00:00,0.001196,0.000199,0.000207,0.000199,0.000005,0.000104,0.000022,0.000309,0.000000,0.000000,0.001238,0.335164,-0.000304,1.000000,0.000134 +28,2022-08-02 04:00:00,0.001200,0.000208,0.000208,0.000208,0.000006,0.000098,0.000022,0.000311,0.000000,0.000000,0.001162,0.334869,-0.000294,1.000000,0.000135 +29,2022-08-02 05:00:00,0.001073,0.000186,0.000169,0.000186,0.000006,0.000092,0.000022,0.000285,0.000000,0.000000,0.001093,0.334495,-0.000375,1.000000,0.000118 +30,2022-08-02 06:00:00,0.001073,0.000177,0.000169,0.000177,0.000007,0.000086,0.000022,0.000270,0.000000,0.000000,0.001028,0.334128,-0.000367,1.000000,0.000110 +31,2022-08-02 07:00:00,0.000000,0.000076,0.000000,0.000076,0.000007,0.000081,0.000022,0.000164,0.000000,0.000000,0.000968,0.332884,-0.001244,1.000000,0.000034 +32,2022-08-02 08:00:00,0.000000,0.000034,0.000000,0.000034,0.000007,0.000077,0.000021,0.000118,0.000000,0.000000,0.000913,0.331667,-0.001218,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000072,0.000021,0.000080,0.000000,0.000000,0.000861,0.330475,-0.001192,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000068,0.000020,0.000076,0.000000,0.000000,0.000813,0.329308,-0.001167,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000064,0.000020,0.000073,0.000000,0.000000,0.000769,0.328165,-0.001142,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000061,0.000019,0.000070,0.000000,0.000000,0.000727,0.327047,-0.001118,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000009,0.000058,0.000019,0.000068,0.000000,0.000000,0.000688,0.326049,-0.000998,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000185,0.000001,0.000001,0.000001,0.000010,0.000055,0.000019,0.000065,0.000124,0.000124,0.000652,0.325034,-0.001015,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000097,0.000000,0.000000,0.000000,0.000010,0.000052,0.000018,0.000063,0.000324,0.000324,0.000619,0.323760,-0.001274,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000058,0.000000,0.000000,0.000000,0.000011,0.000049,0.000018,0.000060,0.000466,0.000466,0.000587,0.322335,-0.001425,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000051,0.000000,0.000000,0.000000,0.000011,0.000047,0.000017,0.000058,0.000567,0.000567,0.000558,0.320835,-0.001501,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000172,0.000000,0.000000,0.000000,0.000012,0.000044,0.000017,0.000056,0.000644,0.000644,0.000530,0.319409,-0.001426,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000003,0.000000,0.000000,0.000000,0.000012,0.000042,0.000016,0.000054,0.000578,0.000578,0.000504,0.317911,-0.001497,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000040,0.000015,0.000053,0.000533,0.000533,0.000479,0.316488,-0.001424,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000010,0.000000,0.000000,0.000000,0.000013,0.000038,0.000015,0.000051,0.000527,0.000527,0.000456,0.315109,-0.001378,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000014,0.000036,0.000014,0.000050,0.000442,0.000442,0.000434,0.313837,-0.001272,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000035,0.000014,0.000049,0.000337,0.000337,0.000414,0.312691,-0.001146,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000015,0.000033,0.000014,0.000048,0.000201,0.000201,0.000394,0.311711,-0.000980,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000079,0.000000,0.000000,0.000000,0.000015,0.000031,0.000013,0.000047,0.000046,0.000046,0.000376,0.310971,-0.000740,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000079,0.000001,0.000001,0.000001,0.000016,0.000030,0.000013,0.000046,0.000000,0.000000,0.000359,0.310291,-0.000680,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000058,0.000001,0.000001,0.000001,0.000016,0.000029,0.000013,0.000046,0.000000,0.000000,0.000344,0.309606,-0.000686,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000058,0.000001,0.000001,0.000001,0.000017,0.000027,0.000013,0.000045,0.000000,0.000000,0.000329,0.308934,-0.000671,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000072,0.000001,0.000001,0.000001,0.000017,0.000026,0.000012,0.000044,0.000000,0.000000,0.000315,0.308291,-0.000644,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000085,0.000001,0.000001,0.000001,0.000018,0.000025,0.000012,0.000044,0.000000,0.000000,0.000302,0.307673,-0.000618,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000024,0.000012,0.000043,0.000000,0.000000,0.000290,0.306986,-0.000687,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000023,0.000012,0.000042,0.000000,0.000000,0.000278,0.306314,-0.000672,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000022,0.000011,0.000042,0.000000,0.000000,0.000267,0.305655,-0.000658,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000021,0.000011,0.000041,0.000000,0.000000,0.000257,0.305011,-0.000644,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000021,0.000011,0.000041,0.000000,0.000000,0.000247,0.304380,-0.000631,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000020,0.000011,0.000041,0.000000,0.000000,0.000238,0.303763,-0.000617,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000019,0.000010,0.000041,0.000000,0.000000,0.000229,0.303159,-0.000604,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000018,0.000010,0.000041,0.000135,0.000135,0.000221,0.302435,-0.000724,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000018,0.000010,0.000041,0.000390,0.000390,0.000213,0.301476,-0.000958,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000017,0.000009,0.000040,0.000558,0.000558,0.000206,0.300374,-0.001103,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000017,0.000009,0.000040,0.000672,0.000672,0.000198,0.299183,-0.001191,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000016,0.000009,0.000040,0.000662,0.000662,0.000191,0.298026,-0.001156,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000010,0.000000,0.000000,0.000000,0.000025,0.000015,0.000008,0.000040,0.000616,0.000616,0.000184,0.296950,-0.001077,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000377,0.000000,0.000000,0.000000,0.000026,0.000015,0.000008,0.000040,0.000554,0.000554,0.000177,0.296316,-0.000634,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000135,0.000000,0.000000,0.000000,0.000026,0.000014,0.000008,0.000040,0.000498,0.000498,0.000170,0.295514,-0.000803,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000012,0.000000,0.000000,0.000000,0.000027,0.000014,0.000007,0.000040,0.000415,0.000415,0.000164,0.294689,-0.000825,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000013,0.000007,0.000040,0.000317,0.000317,0.000158,0.293966,-0.000723,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000013,0.000007,0.000040,0.000213,0.000213,0.000152,0.293359,-0.000607,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000012,0.000007,0.000040,0.000059,0.000059,0.000146,0.292915,-0.000443,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000012,0.000007,0.000041,0.000000,0.000000,0.000141,0.292539,-0.000376,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000011,0.000006,0.000041,0.000000,0.000000,0.000136,0.292171,-0.000368,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000011,0.000006,0.000041,0.000000,0.000000,0.000131,0.291811,-0.000360,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000011,0.000006,0.000041,0.000000,0.000000,0.000127,0.291458,-0.000353,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000010,0.000006,0.000041,0.000000,0.000000,0.000123,0.291113,-0.000345,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000010,0.000006,0.000042,0.000000,0.000000,0.000119,0.290775,-0.000338,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000010,0.000006,0.000042,0.000000,0.000000,0.000115,0.290444,-0.000331,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000009,0.000006,0.000042,0.000000,0.000000,0.000111,0.290120,-0.000324,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000009,0.000005,0.000042,0.000000,0.000000,0.000108,0.289803,-0.000317,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000009,0.000005,0.000043,0.000000,0.000000,0.000104,0.289492,-0.000310,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000008,0.000005,0.000043,0.000000,0.000000,0.000101,0.289188,-0.000304,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000008,0.000005,0.000043,0.000000,0.000000,0.000098,0.288891,-0.000298,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000008,0.000005,0.000043,0.000129,0.000129,0.000095,0.288473,-0.000418,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000008,0.000005,0.000044,0.000382,0.000382,0.000092,0.287816,-0.000657,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000007,0.000004,0.000044,0.000544,0.000544,0.000089,0.287015,-0.000802,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000007,0.000004,0.000044,0.000671,0.000671,0.000086,0.286106,-0.000909,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000004,0.000045,0.000754,0.000754,0.000083,0.285135,-0.000971,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000007,0.000003,0.000045,0.000714,0.000714,0.000080,0.284224,-0.000911,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000635,0.000635,0.000077,0.283410,-0.000815,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000006,0.000003,0.000045,0.000565,0.000565,0.000073,0.282680,-0.000729,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000003,0.000046,0.000472,0.000472,0.000070,0.282058,-0.000623,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000006,0.000002,0.000046,0.000357,0.000357,0.000067,0.281561,-0.000497,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000046,0.000220,0.000220,0.000064,0.281209,-0.000352,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000005,0.000002,0.000047,0.000064,0.000064,0.000061,0.281017,-0.000192,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000005,0.000002,0.000047,0.000000,0.000000,0.000058,0.280892,-0.000126,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000005,0.000002,0.000047,0.000000,0.000000,0.000056,0.280769,-0.000123,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000004,0.000002,0.000047,0.000000,0.000000,0.000053,0.280649,-0.000120,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000000,0.000000,0.000051,0.280531,-0.000118,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000004,0.000002,0.000048,0.000000,0.000000,0.000049,0.280416,-0.000115,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000047,0.280303,-0.000113,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000004,0.000002,0.000049,0.000000,0.000000,0.000045,0.280192,-0.000110,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000004,0.000002,0.000049,0.000000,0.000000,0.000044,0.280084,-0.000108,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000003,0.000002,0.000050,0.000000,0.000000,0.000042,0.279978,-0.000106,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000002,0.000050,0.000000,0.000000,0.000040,0.279875,-0.000104,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000003,0.000002,0.000050,0.000000,0.000000,0.000039,0.279773,-0.000101,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000002,0.000051,0.000000,0.000000,0.000037,0.279674,-0.000099,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000003,0.000002,0.000051,0.000144,0.000144,0.000036,0.279436,-0.000238,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000001,0.000052,0.000387,0.000387,0.000035,0.278965,-0.000471,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000001,0.000052,0.000549,0.000549,0.000033,0.278345,-0.000620,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000003,0.000001,0.000052,0.000673,0.000673,0.000031,0.277617,-0.000728,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000002,0.000001,0.000053,0.000678,0.000678,0.000030,0.276899,-0.000718,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000621,0.000621,0.000028,0.276253,-0.000646,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000555,0.000555,0.000026,0.275684,-0.000569,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000528,0.000528,0.000024,0.275154,-0.000531,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000439,0.000439,0.000022,0.274715,-0.000439,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000017,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000054,0.000336,0.000335,0.000020,0.274397,-0.000318,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000055,0.000214,0.000213,0.000019,0.274184,-0.000213,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000098,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000055,0.000070,0.000070,0.000017,0.274212,0.000028,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000173,0.000002,0.000004,0.000002,0.000054,0.000001,0.000000,0.000058,0.000000,0.000000,0.000016,0.274381,0.000169,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000072,0.000002,0.000001,0.000002,0.000054,0.000001,0.000000,0.000057,0.000000,0.000000,0.000015,0.274452,0.000072,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000054,0.000001,0.000000,0.000001,0.000055,0.000001,0.000000,0.000057,0.000000,0.000000,0.000014,0.274506,0.000054,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000061,0.000001,0.000001,0.000001,0.000055,0.000001,0.000000,0.000057,0.000000,0.000000,0.000013,0.274566,0.000060,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000066,0.000001,0.000001,0.000001,0.000056,0.000001,0.000000,0.000057,0.000000,0.000000,0.000012,0.274631,0.000065,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000000,0.000000,0.000011,0.274631,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000010,0.274631,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000009,0.274631,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000058,0.000000,0.000000,0.000008,0.274631,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000000,0.000000,0.000008,0.274631,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000059,0.000000,0.000000,0.000007,0.274631,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000059,0.000000,0.000000,0.000007,0.274631,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000001,0.000000,0.000060,0.000125,0.000125,0.000006,0.274507,-0.000125,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000381,0.000379,0.000006,0.274127,-0.000379,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000537,0.000533,0.000005,0.273594,-0.000533,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000651,0.000644,0.000005,0.272950,-0.000644,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000733,0.000722,0.000004,0.272227,-0.000722,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000062,0.000697,0.000683,0.000004,0.271545,-0.000683,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000618,0.000603,0.000004,0.270942,-0.000603,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000552,0.000536,0.000004,0.270406,-0.000536,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000459,0.000444,0.000003,0.269962,-0.000444,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000348,0.000335,0.000003,0.269627,-0.000335,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000064,0.000208,0.000200,0.000003,0.269427,-0.000200,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000055,0.000053,0.000003,0.269374,-0.000053,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000002,0.269374,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000000,0.000000,0.000001,0.269374,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000123,0.000118,0.000001,0.269256,-0.000118,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000370,0.000355,0.000001,0.268901,-0.000355,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000540,0.000517,0.000001,0.268384,-0.000517,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000652,0.000621,0.000001,0.267763,-0.000621,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000701,0.000665,0.000001,0.267098,-0.000665,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000655,0.000619,0.000001,0.266479,-0.000619,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000590,0.000555,0.000001,0.265924,-0.000555,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000545,0.000510,0.000001,0.265413,-0.000510,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000452,0.000422,0.000000,0.264992,-0.000422,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000339,0.000315,0.000000,0.264677,-0.000315,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000177,0.000165,0.000000,0.264512,-0.000165,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000031,0.000029,0.000000,0.264483,-0.000029,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000000,0.000000,0.000074,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000000,0.000000,0.000075,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000000,0.000000,0.000000,0.264483,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000102,0.000095,0.000000,0.264388,-0.000095,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000357,0.000330,0.000000,0.264058,-0.000330,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000529,0.000489,0.000000,0.263569,-0.000489,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000647,0.000595,0.000000,0.262974,-0.000595,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000739,0.000676,0.000000,0.262298,-0.000676,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000694,0.000632,0.000000,0.261666,-0.000632,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000623,0.000565,0.000000,0.261101,-0.000565,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000550,0.000496,0.000000,0.260605,-0.000496,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000459,0.000413,0.000000,0.260192,-0.000413,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000347,0.000311,0.000000,0.259881,-0.000311,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000198,0.000177,0.000000,0.259705,-0.000177,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000034,0.000031,0.000000,0.259674,-0.000031,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000000,0.000000,0.000000,0.259674,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000110,0.000098,0.000000,0.259576,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620764.csv b/test/channel_loss/channel_forcing/et/cat-2620764.csv new file mode 100644 index 000000000..33cde946e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620764.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000814,0.000054,0.000814,0.000174,0.000174,0.009001,0.377469,-0.001373,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000746,0.000052,0.000746,0.000052,0.000052,0.008307,0.376250,-0.001220,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000685,0.000051,0.000685,0.000000,0.000000,0.007673,0.375111,-0.001139,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000630,0.000050,0.000630,0.000000,0.000000,0.007093,0.373999,-0.001111,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000580,0.000049,0.000580,0.000000,0.000000,0.006561,0.372915,-0.001084,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000534,0.000047,0.000535,0.000000,0.000000,0.006074,0.371858,-0.001058,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000493,0.000046,0.000493,0.000000,0.000000,0.005627,0.370826,-0.001032,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000455,0.000045,0.000456,0.000000,0.000000,0.005217,0.369819,-0.001006,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000421,0.000044,0.000421,0.000000,0.000000,0.004840,0.368838,-0.000982,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000390,0.000043,0.000390,0.000000,0.000000,0.004493,0.367880,-0.000958,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000361,0.000042,0.000361,0.000000,0.000000,0.004174,0.366945,-0.000934,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000335,0.000041,0.000335,0.000000,0.000000,0.003881,0.366034,-0.000912,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000310,0.000040,0.000311,0.000000,0.000000,0.003610,0.365144,-0.000889,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000288,0.000039,0.000289,0.000000,0.000000,0.003361,0.364277,-0.000868,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000268,0.000038,0.000269,0.000138,0.000138,0.003130,0.363296,-0.000981,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000249,0.000036,0.000250,0.000392,0.000392,0.002917,0.362092,-0.001204,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000232,0.000035,0.000233,0.000547,0.000547,0.002720,0.360765,-0.001326,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000216,0.000033,0.000217,0.000665,0.000665,0.002537,0.359356,-0.001409,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000201,0.000032,0.000203,0.000556,0.000556,0.002368,0.358088,-0.001268,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000551,0.000000,0.000000,0.000000,0.000001,0.000188,0.000031,0.000189,0.000517,0.000517,0.002211,0.357426,-0.000662,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000684,0.000002,0.000003,0.000002,0.000002,0.000175,0.000031,0.000179,0.000468,0.000468,0.002067,0.356956,-0.000470,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000906,0.000012,0.000020,0.000012,0.000002,0.000164,0.000030,0.000177,0.000362,0.000362,0.001934,0.356800,-0.000156,1.000000,0.000010 +22,2022-08-01 22:00:00,0.000794,0.000015,0.000016,0.000015,0.000002,0.000153,0.000030,0.000170,0.000300,0.000300,0.001811,0.356601,-0.000198,1.000000,0.000011 +23,2022-08-01 23:00:00,0.000762,0.000019,0.000020,0.000019,0.000002,0.000143,0.000030,0.000165,0.000222,0.000222,0.001697,0.356451,-0.000150,1.000000,0.000012 +24,2022-08-02 00:00:00,0.000744,0.000021,0.000023,0.000021,0.000002,0.000134,0.000030,0.000158,0.000162,0.000162,0.001593,0.356341,-0.000109,1.000000,0.000014 +25,2022-08-02 01:00:00,0.001199,0.000055,0.000083,0.000055,0.000002,0.000126,0.000030,0.000184,0.000068,0.000068,0.001497,0.356711,0.000370,1.000000,0.000042 +26,2022-08-02 02:00:00,0.001202,0.000077,0.000093,0.000077,0.000003,0.000119,0.000031,0.000198,0.000000,0.000000,0.001409,0.357131,0.000420,1.000000,0.000059 +27,2022-08-02 03:00:00,0.001223,0.000093,0.000097,0.000093,0.000003,0.000112,0.000031,0.000208,0.000000,0.000000,0.001328,0.357558,0.000427,1.000000,0.000062 +28,2022-08-02 04:00:00,0.001277,0.000101,0.000105,0.000101,0.000003,0.000106,0.000032,0.000209,0.000000,0.000000,0.001255,0.358019,0.000461,1.000000,0.000067 +29,2022-08-02 05:00:00,0.001106,0.000090,0.000080,0.000090,0.000003,0.000100,0.000032,0.000193,0.000000,0.000000,0.001187,0.358327,0.000308,1.000000,0.000057 +30,2022-08-02 06:00:00,0.001106,0.000085,0.000080,0.000085,0.000003,0.000095,0.000033,0.000183,0.000000,0.000000,0.001125,0.358628,0.000301,1.000000,0.000052 +31,2022-08-02 07:00:00,0.000000,0.000036,0.000000,0.000036,0.000004,0.000090,0.000032,0.000129,0.000000,0.000000,0.001067,0.357920,-0.000708,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000004,0.000085,0.000031,0.000105,0.000000,0.000000,0.001013,0.357229,-0.000691,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000081,0.000030,0.000085,0.000000,0.000000,0.000962,0.356555,-0.000674,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000077,0.000029,0.000081,0.000000,0.000000,0.000915,0.355898,-0.000657,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000073,0.000029,0.000077,0.000000,0.000000,0.000871,0.355256,-0.000641,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000070,0.000028,0.000074,0.000000,0.000000,0.000829,0.354631,-0.000626,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000005,0.000066,0.000027,0.000072,0.000000,0.000000,0.000790,0.354117,-0.000513,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000005,0.000063,0.000027,0.000068,0.000128,0.000128,0.000754,0.353492,-0.000625,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000064,0.000000,0.000000,0.000000,0.000005,0.000060,0.000026,0.000066,0.000332,0.000332,0.000720,0.352649,-0.000844,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000006,0.000058,0.000025,0.000063,0.000473,0.000473,0.000687,0.351687,-0.000961,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000058,0.000000,0.000000,0.000000,0.000006,0.000055,0.000024,0.000061,0.000571,0.000571,0.000655,0.350649,-0.001038,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000192,0.000000,0.000000,0.000000,0.000006,0.000052,0.000023,0.000058,0.000640,0.000640,0.000626,0.349700,-0.000950,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000006,0.000050,0.000021,0.000056,0.000577,0.000577,0.000597,0.348704,-0.000996,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000048,0.000020,0.000054,0.000529,0.000529,0.000570,0.347722,-0.000982,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000045,0.000019,0.000052,0.000523,0.000523,0.000543,0.346770,-0.000951,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000043,0.000018,0.000050,0.000437,0.000437,0.000518,0.345926,-0.000845,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000041,0.000017,0.000049,0.000336,0.000336,0.000494,0.345200,-0.000725,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000039,0.000017,0.000047,0.000200,0.000200,0.000472,0.344626,-0.000574,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000038,0.000016,0.000046,0.000042,0.000042,0.000451,0.344281,-0.000345,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000036,0.000016,0.000044,0.000000,0.000000,0.000431,0.343985,-0.000296,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000034,0.000016,0.000043,0.000000,0.000000,0.000412,0.343697,-0.000289,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000033,0.000015,0.000042,0.000000,0.000000,0.000394,0.343415,-0.000282,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000009,0.000032,0.000015,0.000041,0.000000,0.000000,0.000378,0.343140,-0.000275,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000066,0.000000,0.000000,0.000000,0.000009,0.000030,0.000015,0.000040,0.000000,0.000000,0.000363,0.342876,-0.000265,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000029,0.000014,0.000039,0.000000,0.000000,0.000348,0.342553,-0.000323,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000028,0.000014,0.000038,0.000000,0.000000,0.000334,0.342238,-0.000315,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000027,0.000014,0.000037,0.000000,0.000000,0.000321,0.341931,-0.000307,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000026,0.000013,0.000036,0.000000,0.000000,0.000309,0.341631,-0.000300,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000025,0.000013,0.000035,0.000000,0.000000,0.000297,0.341339,-0.000292,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000024,0.000013,0.000035,0.000000,0.000000,0.000286,0.341053,-0.000285,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000023,0.000012,0.000034,0.000000,0.000000,0.000276,0.340775,-0.000278,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000022,0.000012,0.000034,0.000136,0.000136,0.000265,0.340371,-0.000404,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000021,0.000011,0.000033,0.000393,0.000393,0.000255,0.339726,-0.000645,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000010,0.000032,0.000558,0.000558,0.000245,0.338936,-0.000790,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000009,0.000032,0.000672,0.000672,0.000235,0.338055,-0.000882,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000019,0.000008,0.000031,0.000656,0.000656,0.000225,0.337210,-0.000845,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000018,0.000008,0.000031,0.000613,0.000613,0.000215,0.336428,-0.000782,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000502,0.000000,0.000000,0.000000,0.000013,0.000017,0.000007,0.000030,0.000545,0.000545,0.000205,0.336221,-0.000206,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000127,0.000000,0.000000,0.000000,0.000013,0.000016,0.000007,0.000030,0.000489,0.000489,0.000195,0.335708,-0.000513,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000016,0.000006,0.000029,0.000411,0.000411,0.000186,0.335160,-0.000548,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000015,0.000006,0.000029,0.000309,0.000309,0.000177,0.334724,-0.000436,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000014,0.000005,0.000028,0.000212,0.000212,0.000168,0.334394,-0.000330,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000013,0.000005,0.000028,0.000055,0.000055,0.000160,0.334225,-0.000169,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000013,0.000005,0.000027,0.000000,0.000000,0.000152,0.334114,-0.000111,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000012,0.000005,0.000027,0.000000,0.000000,0.000145,0.334005,-0.000108,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000012,0.000005,0.000027,0.000000,0.000000,0.000138,0.333899,-0.000106,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000011,0.000005,0.000027,0.000000,0.000000,0.000132,0.333796,-0.000103,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000010,0.000005,0.000026,0.000000,0.000000,0.000126,0.333696,-0.000101,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000010,0.000004,0.000026,0.000000,0.000000,0.000120,0.333597,-0.000098,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000010,0.000004,0.000026,0.000000,0.000000,0.000115,0.333501,-0.000096,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000009,0.000004,0.000026,0.000000,0.000000,0.000110,0.333408,-0.000094,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000009,0.000004,0.000026,0.000000,0.000000,0.000105,0.333317,-0.000091,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000008,0.000004,0.000026,0.000000,0.000000,0.000101,0.333228,-0.000089,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000008,0.000004,0.000026,0.000000,0.000000,0.000097,0.333141,-0.000087,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000008,0.000004,0.000025,0.000000,0.000000,0.000093,0.333056,-0.000085,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000007,0.000004,0.000025,0.000128,0.000128,0.000089,0.332848,-0.000208,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000007,0.000003,0.000025,0.000385,0.000385,0.000085,0.332395,-0.000453,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000007,0.000002,0.000025,0.000547,0.000547,0.000081,0.331795,-0.000600,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000006,0.000002,0.000025,0.000672,0.000672,0.000076,0.331088,-0.000707,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000006,0.000001,0.000025,0.000751,0.000751,0.000071,0.330322,-0.000767,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000005,0.000000,0.000025,0.000713,0.000713,0.000065,0.329609,-0.000713,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000005,0.000000,0.000025,0.000627,0.000627,0.000060,0.328982,-0.000627,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000005,0.000000,0.000024,0.000560,0.000558,0.000056,0.328424,-0.000558,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000004,0.000000,0.000024,0.000465,0.000462,0.000051,0.327961,-0.000462,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000004,0.000000,0.000024,0.000350,0.000347,0.000047,0.327614,-0.000347,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000004,0.000000,0.000024,0.000218,0.000216,0.000044,0.327398,-0.000216,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000003,0.000000,0.000024,0.000059,0.000059,0.000040,0.327340,-0.000059,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000003,0.000000,0.000024,0.000000,0.000000,0.000037,0.327340,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000003,0.000000,0.000024,0.000000,0.000000,0.000034,0.327340,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000003,0.000000,0.000024,0.000000,0.000000,0.000032,0.327340,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000029,0.327340,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000027,0.327340,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000002,0.000000,0.000024,0.000000,0.000000,0.000025,0.327340,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000024,0.000000,0.000000,0.000023,0.327340,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000025,0.000000,0.000000,0.000021,0.327340,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000025,0.000000,0.000000,0.000020,0.327340,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000002,0.000000,0.000025,0.000000,0.000000,0.000018,0.327340,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000001,0.000000,0.000025,0.000000,0.000000,0.000017,0.327340,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000000,0.000000,0.000015,0.327340,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000147,0.000145,0.000014,0.327195,-0.000145,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000393,0.000388,0.000013,0.326807,-0.000388,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000001,0.000000,0.000025,0.000552,0.000544,0.000012,0.326263,-0.000544,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000026,0.000674,0.000663,0.000011,0.325600,-0.000663,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000026,0.000673,0.000660,0.000010,0.324940,-0.000660,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000026,0.000617,0.000603,0.000010,0.324337,-0.000603,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000026,0.000559,0.000544,0.000009,0.323794,-0.000544,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000001,0.000000,0.000026,0.000532,0.000516,0.000008,0.323278,-0.000516,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000026,0.000428,0.000415,0.000008,0.322863,-0.000415,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000035,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000026,0.000330,0.000320,0.000007,0.322578,-0.000285,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000213,0.000205,0.000006,0.322372,-0.000205,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000066,0.000000,0.000000,0.000000,0.000026,0.000000,0.000000,0.000027,0.000068,0.000068,0.000006,0.322371,-0.000001,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000177,0.000001,0.000002,0.000001,0.000027,0.000000,0.000000,0.000028,0.000000,0.000000,0.000005,0.322546,0.000175,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000038,0.000001,0.000000,0.000001,0.000027,0.000000,0.000000,0.000028,0.000000,0.000000,0.000005,0.322584,0.000038,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000000,0.000000,0.000005,0.322584,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000000,0.000000,0.000004,0.322584,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000000,0.000000,0.000028,0.000000,0.000000,0.000004,0.322584,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000004,0.322584,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000003,0.322584,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000003,0.322584,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000003,0.322584,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000029,0.000000,0.000000,0.000003,0.322584,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000002,0.322584,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000000,0.000000,0.000002,0.322584,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000127,0.000123,0.000002,0.322462,-0.000123,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000387,0.000373,0.000002,0.322088,-0.000373,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000538,0.000517,0.000002,0.321571,-0.000517,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000030,0.000653,0.000626,0.000002,0.320945,-0.000626,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000739,0.000706,0.000002,0.320238,-0.000706,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000692,0.000660,0.000001,0.319578,-0.000660,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000613,0.000582,0.000001,0.318996,-0.000582,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000546,0.000517,0.000001,0.318479,-0.000517,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000450,0.000425,0.000001,0.318054,-0.000425,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000340,0.000320,0.000001,0.317734,-0.000320,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000203,0.000191,0.000001,0.317543,-0.000191,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000050,0.000047,0.000001,0.317496,-0.000047,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000001,0.317496,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.317496,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000123,0.000115,0.000000,0.317380,-0.000115,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000372,0.000349,0.000000,0.317031,-0.000349,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000539,0.000505,0.000000,0.316526,-0.000505,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000650,0.000607,0.000000,0.315919,-0.000607,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000690,0.000642,0.000000,0.315276,-0.000642,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000646,0.000600,0.000000,0.314677,-0.000600,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000585,0.000541,0.000000,0.314135,-0.000541,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000542,0.000500,0.000000,0.313635,-0.000500,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000445,0.000409,0.000000,0.313226,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000333,0.000306,0.000000,0.312920,-0.000306,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000174,0.000159,0.000000,0.312761,-0.000159,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000029,0.000027,0.000000,0.312734,-0.000027,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312734,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312735,0.000001,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312735,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000000,0.000000,0.000000,0.312735,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000104,0.000095,0.000000,0.312640,-0.000095,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000359,0.000329,0.000000,0.312311,-0.000329,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000529,0.000483,0.000000,0.311828,-0.000483,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000646,0.000588,0.000000,0.311240,-0.000588,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000729,0.000662,0.000000,0.310578,-0.000662,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000690,0.000624,0.000000,0.309954,-0.000624,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000620,0.000559,0.000000,0.309395,-0.000559,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000543,0.000488,0.000000,0.308907,-0.000488,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000449,0.000402,0.000000,0.308504,-0.000402,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000339,0.000303,0.000000,0.308201,-0.000303,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000194,0.000173,0.000000,0.308028,-0.000173,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000029,0.000026,0.000000,0.308002,-0.000026,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.308002,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000110,0.000098,0.000000,0.307904,-0.000098,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620765.csv b/test/channel_loss/channel_forcing/et/cat-2620765.csv new file mode 100644 index 000000000..012d06417 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620765.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000815,0.000060,0.000815,0.000170,0.000170,0.009007,0.376586,-0.001740,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000747,0.000059,0.000747,0.000048,0.000048,0.008318,0.375006,-0.001581,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000687,0.000057,0.000687,0.000000,0.000000,0.007688,0.373509,-0.001497,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000632,0.000056,0.000632,0.000000,0.000000,0.007112,0.372047,-0.001462,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000582,0.000055,0.000582,0.000000,0.000000,0.006585,0.370619,-0.001428,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000537,0.000053,0.000537,0.000000,0.000000,0.006101,0.369224,-0.001395,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000496,0.000052,0.000496,0.000000,0.000000,0.005657,0.367862,-0.001362,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000458,0.000051,0.000459,0.000000,0.000000,0.005249,0.366532,-0.001330,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000424,0.000050,0.000425,0.000000,0.000000,0.004875,0.365232,-0.001299,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000393,0.000048,0.000393,0.000000,0.000000,0.004530,0.363963,-0.001269,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000364,0.000047,0.000365,0.000000,0.000000,0.004213,0.362724,-0.001239,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000338,0.000046,0.000339,0.000000,0.000000,0.003921,0.361514,-0.001211,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000314,0.000045,0.000315,0.000000,0.000000,0.003652,0.360331,-0.001182,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000292,0.000044,0.000293,0.000000,0.000000,0.003404,0.359177,-0.001155,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000272,0.000043,0.000273,0.000136,0.000136,0.003175,0.357916,-0.001261,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000253,0.000042,0.000255,0.000392,0.000392,0.002963,0.356434,-0.001481,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000236,0.000040,0.000238,0.000544,0.000544,0.002767,0.354839,-0.001596,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000220,0.000039,0.000222,0.000662,0.000662,0.002586,0.353165,-0.001673,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000206,0.000037,0.000207,0.000541,0.000541,0.002417,0.351649,-0.001516,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000518,0.000000,0.000000,0.000000,0.000002,0.000192,0.000036,0.000194,0.000498,0.000498,0.002261,0.350716,-0.000933,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000807,0.000005,0.000010,0.000005,0.000002,0.000180,0.000036,0.000187,0.000455,0.000455,0.002118,0.350120,-0.000596,1.000000,0.000004 +21,2022-08-01 21:00:00,0.000958,0.000018,0.000028,0.000018,0.000002,0.000168,0.000036,0.000189,0.000355,0.000355,0.001985,0.349765,-0.000355,1.000000,0.000015 +22,2022-08-01 22:00:00,0.000836,0.000022,0.000023,0.000022,0.000003,0.000158,0.000035,0.000182,0.000296,0.000296,0.001862,0.349362,-0.000403,1.000000,0.000016 +23,2022-08-01 23:00:00,0.000838,0.000028,0.000029,0.000028,0.000003,0.000148,0.000035,0.000178,0.000221,0.000221,0.001749,0.349037,-0.000325,1.000000,0.000018 +24,2022-08-02 00:00:00,0.000784,0.000029,0.000030,0.000029,0.000003,0.000139,0.000035,0.000171,0.000157,0.000157,0.001645,0.348728,-0.000309,1.000000,0.000020 +25,2022-08-02 01:00:00,0.001311,0.000076,0.000114,0.000076,0.000003,0.000131,0.000035,0.000210,0.000066,0.000066,0.001549,0.348949,0.000220,1.000000,0.000058 +26,2022-08-02 02:00:00,0.001337,0.000107,0.000131,0.000107,0.000003,0.000123,0.000035,0.000233,0.000000,0.000000,0.001461,0.349238,0.000289,1.000000,0.000082 +27,2022-08-02 03:00:00,0.001330,0.000127,0.000130,0.000127,0.000004,0.000116,0.000035,0.000247,0.000000,0.000000,0.001380,0.349514,0.000277,1.000000,0.000085 +28,2022-08-02 04:00:00,0.001366,0.000134,0.000137,0.000134,0.000004,0.000110,0.000036,0.000248,0.000000,0.000000,0.001305,0.349812,0.000298,1.000000,0.000087 +29,2022-08-02 05:00:00,0.001223,0.000121,0.000111,0.000121,0.000004,0.000104,0.000036,0.000229,0.000000,0.000000,0.001237,0.349989,0.000177,1.000000,0.000077 +30,2022-08-02 06:00:00,0.001232,0.000117,0.000112,0.000117,0.000005,0.000099,0.000036,0.000220,0.000000,0.000000,0.001174,0.350170,0.000180,1.000000,0.000073 +31,2022-08-02 07:00:00,0.000000,0.000050,0.000000,0.000050,0.000005,0.000094,0.000035,0.000149,0.000000,0.000000,0.001115,0.349252,-0.000918,1.000000,0.000022 +32,2022-08-02 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000005,0.000089,0.000034,0.000117,0.000000,0.000000,0.001060,0.348356,-0.000896,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000085,0.000033,0.000090,0.000000,0.000000,0.001009,0.347480,-0.000875,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000081,0.000033,0.000086,0.000000,0.000000,0.000961,0.346625,-0.000855,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000077,0.000032,0.000083,0.000000,0.000000,0.000916,0.345790,-0.000835,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000073,0.000031,0.000080,0.000000,0.000000,0.000874,0.344975,-0.000816,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000134,0.000001,0.000001,0.000001,0.000007,0.000070,0.000031,0.000077,0.000000,0.000000,0.000834,0.344308,-0.000667,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000111,0.000000,0.000000,0.000000,0.000007,0.000067,0.000030,0.000074,0.000128,0.000128,0.000797,0.343511,-0.000797,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000078,0.000000,0.000000,0.000000,0.000007,0.000064,0.000029,0.000071,0.000333,0.000333,0.000762,0.342499,-0.001011,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000078,0.000000,0.000000,0.000000,0.000007,0.000061,0.000028,0.000069,0.000471,0.000471,0.000729,0.341376,-0.001123,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000078,0.000000,0.000000,0.000000,0.000008,0.000058,0.000027,0.000066,0.000567,0.000567,0.000698,0.340185,-0.001191,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000201,0.000000,0.000000,0.000000,0.000008,0.000056,0.000026,0.000064,0.000627,0.000627,0.000667,0.339083,-0.001102,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000008,0.000053,0.000025,0.000062,0.000571,0.000571,0.000639,0.337923,-0.001160,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000051,0.000024,0.000060,0.000517,0.000517,0.000611,0.336788,-0.001134,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000049,0.000023,0.000058,0.000511,0.000511,0.000585,0.335686,-0.001102,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000003,0.000000,0.000000,0.000000,0.000009,0.000047,0.000022,0.000056,0.000427,0.000427,0.000560,0.334692,-0.000994,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000010,0.000045,0.000021,0.000055,0.000329,0.000329,0.000536,0.333817,-0.000876,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000056,0.000000,0.000000,0.000000,0.000010,0.000043,0.000020,0.000053,0.000193,0.000193,0.000513,0.333146,-0.000670,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000011,0.000041,0.000020,0.000052,0.000037,0.000037,0.000492,0.332646,-0.000500,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000058,0.000000,0.000000,0.000000,0.000011,0.000039,0.000019,0.000051,0.000000,0.000000,0.000472,0.332193,-0.000453,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000058,0.000000,0.000000,0.000000,0.000011,0.000038,0.000019,0.000049,0.000000,0.000000,0.000453,0.331751,-0.000442,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000058,0.000000,0.000000,0.000000,0.000012,0.000036,0.000019,0.000048,0.000000,0.000000,0.000436,0.331319,-0.000432,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000071,0.000000,0.000000,0.000000,0.000012,0.000035,0.000018,0.000047,0.000000,0.000000,0.000419,0.330910,-0.000409,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000084,0.000000,0.000001,0.000000,0.000012,0.000034,0.000018,0.000046,0.000000,0.000000,0.000403,0.330523,-0.000387,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000032,0.000018,0.000045,0.000000,0.000000,0.000388,0.330063,-0.000460,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000031,0.000017,0.000044,0.000000,0.000000,0.000374,0.329614,-0.000449,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000030,0.000017,0.000044,0.000000,0.000000,0.000361,0.329176,-0.000438,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000029,0.000016,0.000043,0.000000,0.000000,0.000348,0.328748,-0.000428,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000028,0.000016,0.000042,0.000000,0.000000,0.000336,0.328330,-0.000418,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000027,0.000016,0.000042,0.000000,0.000000,0.000325,0.327921,-0.000408,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000026,0.000015,0.000041,0.000000,0.000000,0.000314,0.327522,-0.000399,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000025,0.000015,0.000041,0.000133,0.000133,0.000303,0.327003,-0.000519,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000024,0.000014,0.000040,0.000388,0.000388,0.000293,0.326246,-0.000757,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000024,0.000013,0.000040,0.000549,0.000549,0.000282,0.325350,-0.000896,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000023,0.000012,0.000039,0.000663,0.000663,0.000272,0.324364,-0.000986,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000022,0.000011,0.000039,0.000641,0.000641,0.000262,0.323422,-0.000942,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000021,0.000011,0.000038,0.000594,0.000594,0.000251,0.322548,-0.000874,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000342,0.000000,0.000000,0.000000,0.000018,0.000020,0.000010,0.000038,0.000527,0.000527,0.000242,0.322094,-0.000454,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000084,0.000000,0.000000,0.000000,0.000018,0.000019,0.000010,0.000037,0.000474,0.000474,0.000232,0.321450,-0.000644,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000019,0.000009,0.000037,0.000400,0.000400,0.000222,0.320811,-0.000639,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000018,0.000009,0.000036,0.000298,0.000298,0.000213,0.320287,-0.000525,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000017,0.000008,0.000036,0.000206,0.000206,0.000205,0.319864,-0.000422,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000016,0.000008,0.000036,0.000049,0.000049,0.000196,0.319606,-0.000259,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000016,0.000008,0.000036,0.000000,0.000000,0.000188,0.319401,-0.000205,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000015,0.000008,0.000035,0.000000,0.000000,0.000181,0.319200,-0.000200,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000014,0.000007,0.000035,0.000000,0.000000,0.000174,0.319005,-0.000196,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000014,0.000007,0.000035,0.000000,0.000000,0.000167,0.318814,-0.000191,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000013,0.000007,0.000035,0.000000,0.000000,0.000161,0.318627,-0.000187,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000013,0.000007,0.000035,0.000000,0.000000,0.000155,0.318445,-0.000182,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000012,0.000007,0.000035,0.000000,0.000000,0.000149,0.318267,-0.000178,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000012,0.000007,0.000034,0.000000,0.000000,0.000144,0.318094,-0.000174,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000012,0.000006,0.000034,0.000000,0.000000,0.000139,0.317924,-0.000170,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000011,0.000006,0.000034,0.000000,0.000000,0.000134,0.317758,-0.000166,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000011,0.000006,0.000034,0.000000,0.000000,0.000129,0.317596,-0.000162,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000010,0.000006,0.000034,0.000000,0.000000,0.000125,0.317438,-0.000158,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000010,0.000006,0.000034,0.000125,0.000125,0.000121,0.317162,-0.000277,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000010,0.000005,0.000034,0.000380,0.000380,0.000116,0.316643,-0.000519,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000009,0.000005,0.000034,0.000542,0.000542,0.000112,0.315978,-0.000665,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000009,0.000004,0.000034,0.000663,0.000663,0.000107,0.315210,-0.000768,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000008,0.000003,0.000034,0.000740,0.000740,0.000102,0.314384,-0.000825,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000008,0.000003,0.000034,0.000705,0.000705,0.000096,0.313612,-0.000772,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000008,0.000002,0.000034,0.000613,0.000613,0.000091,0.312949,-0.000664,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000007,0.000001,0.000034,0.000549,0.000549,0.000085,0.312363,-0.000586,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000007,0.000001,0.000034,0.000452,0.000452,0.000079,0.311885,-0.000478,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000006,0.000001,0.000034,0.000341,0.000341,0.000074,0.311527,-0.000358,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000006,0.000000,0.000034,0.000212,0.000212,0.000069,0.311303,-0.000224,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000005,0.000000,0.000034,0.000053,0.000053,0.000064,0.311240,-0.000063,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000005,0.000000,0.000034,0.000000,0.000000,0.000059,0.311230,-0.000010,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000005,0.000000,0.000034,0.000000,0.000000,0.000055,0.311220,-0.000010,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000004,0.000000,0.000034,0.000000,0.000000,0.000051,0.311211,-0.000009,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000004,0.000000,0.000034,0.000000,0.000000,0.000047,0.311202,-0.000009,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000004,0.000000,0.000034,0.000000,0.000000,0.000044,0.311193,-0.000009,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000003,0.000000,0.000034,0.000000,0.000000,0.000041,0.311184,-0.000009,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000003,0.000000,0.000034,0.000000,0.000000,0.000038,0.311175,-0.000009,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000003,0.000000,0.000034,0.000000,0.000000,0.000036,0.311167,-0.000008,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000003,0.000000,0.000034,0.000000,0.000000,0.000033,0.311159,-0.000008,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000003,0.000000,0.000034,0.000000,0.000000,0.000031,0.311151,-0.000008,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000029,0.311143,-0.000008,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000002,0.000000,0.000034,0.000000,0.000000,0.000027,0.311135,-0.000008,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000002,0.000000,0.000035,0.000145,0.000145,0.000025,0.310987,-0.000149,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000002,0.000000,0.000035,0.000391,0.000391,0.000023,0.310595,-0.000391,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000002,0.000000,0.000035,0.000549,0.000548,0.000021,0.310047,-0.000548,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000002,0.000000,0.000035,0.000667,0.000664,0.000020,0.309383,-0.000664,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000002,0.000000,0.000035,0.000662,0.000657,0.000018,0.308726,-0.000657,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000036,0.000607,0.000600,0.000017,0.308125,-0.000600,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000001,0.000000,0.000036,0.000551,0.000543,0.000015,0.307582,-0.000543,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000526,0.000517,0.000014,0.307065,-0.000517,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000417,0.000408,0.000013,0.306657,-0.000408,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000001,0.000000,0.000036,0.000321,0.000314,0.000012,0.306343,-0.000314,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000208,0.000203,0.000011,0.306140,-0.000203,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000075,0.000000,0.000000,0.000000,0.000036,0.000001,0.000000,0.000037,0.000063,0.000063,0.000010,0.306153,0.000013,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000115,0.000001,0.000001,0.000001,0.000036,0.000001,0.000000,0.000038,0.000000,0.000000,0.000010,0.306267,0.000114,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000009,0.306267,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000008,0.306267,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000007,0.306267,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000001,0.000000,0.000038,0.000000,0.000000,0.000007,0.306267,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000001,0.000000,0.000038,0.000000,0.000000,0.000006,0.306267,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000006,0.306267,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000039,0.000000,0.000000,0.000005,0.306267,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000005,0.306267,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000005,0.306267,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000004,0.306267,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000040,0.000000,0.000000,0.000004,0.306267,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000125,0.000122,0.000004,0.306145,-0.000122,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000383,0.000374,0.000003,0.305771,-0.000374,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000532,0.000517,0.000003,0.305254,-0.000517,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000041,0.000647,0.000628,0.000003,0.304627,-0.000628,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000734,0.000710,0.000003,0.303917,-0.000710,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000684,0.000659,0.000002,0.303258,-0.000659,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000608,0.000584,0.000002,0.302674,-0.000584,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000042,0.000538,0.000514,0.000002,0.302160,-0.000514,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000440,0.000419,0.000002,0.301741,-0.000419,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000331,0.000315,0.000002,0.301426,-0.000315,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000197,0.000187,0.000002,0.301239,-0.000187,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000043,0.000045,0.000043,0.000002,0.301196,-0.000043,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000001,0.301196,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000120,0.000114,0.000001,0.301082,-0.000114,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000366,0.000347,0.000000,0.300736,-0.000347,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000529,0.000501,0.000000,0.300235,-0.000501,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000640,0.000604,0.000000,0.299631,-0.000604,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000673,0.000633,0.000000,0.298998,-0.000633,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000631,0.000591,0.000000,0.298407,-0.000591,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000573,0.000535,0.000000,0.297872,-0.000535,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000532,0.000495,0.000000,0.297377,-0.000495,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000432,0.000400,0.000000,0.296977,-0.000400,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000324,0.000300,0.000000,0.296677,-0.000300,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000167,0.000154,0.000000,0.296523,-0.000154,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000026,0.000024,0.000000,0.296499,-0.000024,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000000,0.000000,0.000048,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000000,0.000000,0.000049,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000000,0.000000,0.000000,0.296499,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000000,0.000000,0.000050,0.000102,0.000094,0.000000,0.296405,-0.000094,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000354,0.000326,0.000000,0.296079,-0.000326,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000520,0.000479,0.000000,0.295599,-0.000479,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000636,0.000584,0.000000,0.295016,-0.000584,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000713,0.000652,0.000000,0.294364,-0.000652,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000000,0.000000,0.000051,0.000676,0.000616,0.000000,0.293747,-0.000616,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000606,0.000550,0.000000,0.293197,-0.000550,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000532,0.000481,0.000000,0.292716,-0.000481,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000433,0.000391,0.000000,0.292325,-0.000391,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000326,0.000294,0.000000,0.292031,-0.000294,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000185,0.000167,0.000000,0.291865,-0.000167,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000000,0.000000,0.000052,0.000023,0.000021,0.000000,0.291844,-0.000021,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000000,0.000000,0.000053,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000000,0.000000,0.000000,0.291844,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000000,0.000000,0.000054,0.000108,0.000097,0.000000,0.291747,-0.000097,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620766.csv b/test/channel_loss/channel_forcing/et/cat-2620766.csv new file mode 100644 index 000000000..ae6ea51e0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620766.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000000,0.001430,0.000059,0.001430,0.000164,0.000164,0.008394,0.383378,-0.001459,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001208,0.000058,0.001208,0.000048,0.000048,0.007243,0.382013,-0.001365,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001028,0.000056,0.001028,0.000000,0.000000,0.006272,0.380727,-0.001286,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000879,0.000055,0.000879,0.000000,0.000000,0.005448,0.379472,-0.001256,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000756,0.000054,0.000756,0.000000,0.000000,0.004745,0.378246,-0.001226,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000654,0.000052,0.000654,0.000000,0.000000,0.004144,0.377049,-0.001197,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000567,0.000051,0.000567,0.000000,0.000000,0.003629,0.375880,-0.001169,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000494,0.000050,0.000494,0.000000,0.000000,0.003185,0.374739,-0.001141,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000432,0.000049,0.000432,0.000000,0.000000,0.002802,0.373625,-0.001114,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000378,0.000048,0.000379,0.000000,0.000000,0.002471,0.372538,-0.001088,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000333,0.000047,0.000333,0.000000,0.000000,0.002185,0.371476,-0.001062,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000294,0.000045,0.000294,0.000000,0.000000,0.001936,0.370439,-0.001037,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000260,0.000044,0.000261,0.000000,0.000000,0.001721,0.369427,-0.001012,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000231,0.000043,0.000232,0.000000,0.000000,0.001533,0.368439,-0.000988,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000206,0.000042,0.000207,0.000129,0.000129,0.001369,0.367348,-0.001091,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000184,0.000041,0.000185,0.000375,0.000375,0.001226,0.366043,-0.001305,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000165,0.000039,0.000166,0.000529,0.000529,0.001101,0.364618,-0.001425,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000148,0.000038,0.000149,0.000636,0.000636,0.000991,0.363123,-0.001495,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000133,0.000036,0.000135,0.000520,0.000520,0.000894,0.361776,-0.001347,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000818,0.000007,0.000013,0.000007,0.000002,0.000120,0.000036,0.000129,0.000469,0.000469,0.000809,0.361297,-0.000479,1.000000,0.000006 +20,2022-08-01 20:00:00,0.000880,0.000015,0.000021,0.000015,0.000002,0.000109,0.000035,0.000126,0.000436,0.000436,0.000735,0.360914,-0.000383,1.000000,0.000012 +21,2022-08-01 21:00:00,0.000908,0.000025,0.000032,0.000025,0.000002,0.000100,0.000035,0.000127,0.000353,0.000353,0.000671,0.360639,-0.000276,1.000000,0.000018 +22,2022-08-01 22:00:00,0.000943,0.000036,0.000044,0.000036,0.000002,0.000091,0.000035,0.000130,0.000284,0.000284,0.000614,0.360458,-0.000180,1.000000,0.000026 +23,2022-08-01 23:00:00,0.000944,0.000047,0.000054,0.000047,0.000002,0.000084,0.000035,0.000134,0.000212,0.000212,0.000565,0.360344,-0.000114,1.000000,0.000033 +24,2022-08-02 00:00:00,0.000980,0.000060,0.000069,0.000060,0.000003,0.000077,0.000035,0.000140,0.000150,0.000150,0.000522,0.360313,-0.000031,1.000000,0.000042 +25,2022-08-02 01:00:00,0.001266,0.000105,0.000140,0.000105,0.000003,0.000072,0.000035,0.000180,0.000064,0.000064,0.000486,0.360577,0.000264,1.000000,0.000077 +26,2022-08-02 02:00:00,0.001264,0.000133,0.000154,0.000133,0.000003,0.000067,0.000035,0.000203,0.000000,0.000000,0.000454,0.360882,0.000305,1.000000,0.000097 +27,2022-08-02 03:00:00,0.001275,0.000152,0.000156,0.000152,0.000003,0.000063,0.000036,0.000219,0.000000,0.000000,0.000426,0.361189,0.000306,1.000000,0.000101 +28,2022-08-02 04:00:00,0.001270,0.000155,0.000155,0.000155,0.000003,0.000060,0.000036,0.000218,0.000000,0.000000,0.000403,0.361484,0.000295,1.000000,0.000101 +29,2022-08-02 05:00:00,0.001265,0.000155,0.000154,0.000155,0.000004,0.000057,0.000036,0.000215,0.000000,0.000000,0.000382,0.361768,0.000284,1.000000,0.000101 +30,2022-08-02 06:00:00,0.001275,0.000156,0.000157,0.000156,0.000004,0.000054,0.000037,0.000214,0.000000,0.000000,0.000365,0.362053,0.000285,1.000000,0.000101 +31,2022-08-02 07:00:00,0.000000,0.000070,0.000000,0.000070,0.000004,0.000052,0.000036,0.000126,0.000000,0.000000,0.000349,0.361239,-0.000814,1.000000,0.000031 +32,2022-08-02 08:00:00,0.000000,0.000031,0.000000,0.000031,0.000004,0.000049,0.000035,0.000085,0.000000,0.000000,0.000335,0.360445,-0.000794,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000047,0.000034,0.000052,0.000000,0.000000,0.000321,0.359669,-0.000776,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000046,0.000033,0.000050,0.000000,0.000000,0.000309,0.358912,-0.000757,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000044,0.000032,0.000049,0.000000,0.000000,0.000297,0.358172,-0.000739,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000042,0.000032,0.000048,0.000000,0.000000,0.000287,0.357450,-0.000722,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000107,0.000001,0.000001,0.000001,0.000006,0.000041,0.000031,0.000047,0.000000,0.000000,0.000277,0.356848,-0.000602,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000179,0.000000,0.000000,0.000000,0.000006,0.000039,0.000030,0.000046,0.000124,0.000124,0.000268,0.356212,-0.000637,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000114,0.000000,0.000000,0.000000,0.000006,0.000038,0.000029,0.000045,0.000319,0.000319,0.000259,0.355336,-0.000875,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000114,0.000000,0.000000,0.000000,0.000006,0.000037,0.000028,0.000043,0.000453,0.000453,0.000250,0.354351,-0.000985,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000079,0.000000,0.000000,0.000000,0.000007,0.000036,0.000027,0.000042,0.000546,0.000546,0.000242,0.353264,-0.001087,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000128,0.000000,0.000000,0.000000,0.000007,0.000034,0.000026,0.000041,0.000608,0.000608,0.000233,0.352190,-0.001075,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000043,0.000000,0.000000,0.000000,0.000007,0.000033,0.000025,0.000040,0.000549,0.000549,0.000225,0.351115,-0.001075,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000049,0.000000,0.000000,0.000000,0.000008,0.000032,0.000024,0.000040,0.000494,0.000494,0.000217,0.350126,-0.000989,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000041,0.000000,0.000000,0.000000,0.000008,0.000031,0.000023,0.000039,0.000500,0.000500,0.000209,0.349147,-0.000979,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000041,0.000000,0.000000,0.000000,0.000008,0.000030,0.000022,0.000038,0.000418,0.000418,0.000201,0.348271,-0.000876,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000049,0.000000,0.000000,0.000000,0.000008,0.000029,0.000021,0.000037,0.000316,0.000316,0.000194,0.347523,-0.000748,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000043,0.000000,0.000000,0.000000,0.000009,0.000028,0.000020,0.000036,0.000186,0.000186,0.000187,0.346914,-0.000609,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000107,0.000000,0.000001,0.000000,0.000009,0.000027,0.000020,0.000036,0.000037,0.000037,0.000180,0.346526,-0.000387,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000139,0.000001,0.000002,0.000001,0.000009,0.000026,0.000020,0.000036,0.000000,0.000000,0.000174,0.346214,-0.000312,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000170,0.000002,0.000003,0.000002,0.000010,0.000025,0.000019,0.000037,0.000000,0.000000,0.000169,0.345938,-0.000276,1.000000,0.000002 +52,2022-08-03 04:00:00,0.000174,0.000003,0.000003,0.000003,0.000010,0.000024,0.000019,0.000037,0.000000,0.000000,0.000164,0.345672,-0.000266,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000170,0.000003,0.000003,0.000003,0.000010,0.000023,0.000019,0.000037,0.000000,0.000000,0.000159,0.345409,-0.000263,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000188,0.000003,0.000004,0.000003,0.000011,0.000023,0.000019,0.000037,0.000000,0.000000,0.000155,0.345169,-0.000240,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000011,0.000022,0.000018,0.000035,0.000000,0.000000,0.000151,0.344755,-0.000414,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000011,0.000022,0.000018,0.000034,0.000000,0.000000,0.000147,0.344350,-0.000404,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000021,0.000017,0.000033,0.000000,0.000000,0.000143,0.343956,-0.000395,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000021,0.000017,0.000032,0.000000,0.000000,0.000140,0.343570,-0.000386,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000016,0.000032,0.000000,0.000000,0.000136,0.343194,-0.000376,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000020,0.000016,0.000032,0.000000,0.000000,0.000133,0.342826,-0.000368,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000019,0.000016,0.000032,0.000000,0.000000,0.000129,0.342467,-0.000359,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000019,0.000015,0.000032,0.000124,0.000124,0.000126,0.341995,-0.000472,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000018,0.000014,0.000031,0.000371,0.000371,0.000123,0.341294,-0.000702,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000017,0.000014,0.000031,0.000530,0.000530,0.000119,0.340454,-0.000840,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000017,0.000013,0.000031,0.000638,0.000638,0.000114,0.339528,-0.000925,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000016,0.000012,0.000031,0.000621,0.000621,0.000110,0.338641,-0.000887,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000046,0.000000,0.000000,0.000000,0.000015,0.000015,0.000011,0.000030,0.000571,0.000571,0.000105,0.337869,-0.000772,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000084,0.000000,0.000000,0.000000,0.000015,0.000015,0.000010,0.000030,0.000513,0.000513,0.000101,0.337208,-0.000660,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000015,0.000014,0.000009,0.000030,0.000464,0.000464,0.000096,0.336583,-0.000625,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000046,0.000000,0.000000,0.000000,0.000016,0.000013,0.000009,0.000029,0.000381,0.000381,0.000091,0.336045,-0.000538,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000047,0.000000,0.000000,0.000000,0.000016,0.000013,0.000008,0.000029,0.000285,0.000285,0.000087,0.335615,-0.000431,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000047,0.000000,0.000000,0.000000,0.000016,0.000012,0.000008,0.000029,0.000200,0.000200,0.000083,0.335278,-0.000337,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000012,0.000008,0.000028,0.000048,0.000048,0.000079,0.335051,-0.000227,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000011,0.000008,0.000028,0.000000,0.000000,0.000076,0.334876,-0.000175,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000011,0.000007,0.000028,0.000000,0.000000,0.000073,0.334705,-0.000171,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000007,0.000028,0.000000,0.000000,0.000070,0.334538,-0.000167,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000010,0.000007,0.000028,0.000000,0.000000,0.000067,0.334376,-0.000163,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000009,0.000007,0.000028,0.000000,0.000000,0.000064,0.334217,-0.000159,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000007,0.000028,0.000000,0.000000,0.000062,0.334062,-0.000155,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000007,0.000028,0.000000,0.000000,0.000060,0.333910,-0.000151,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000009,0.000006,0.000028,0.000000,0.000000,0.000058,0.333762,-0.000148,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000006,0.000028,0.000000,0.000000,0.000056,0.333618,-0.000144,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000006,0.000028,0.000000,0.000000,0.000054,0.333477,-0.000141,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000006,0.000028,0.000000,0.000000,0.000053,0.333339,-0.000138,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000006,0.000028,0.000000,0.000000,0.000051,0.333205,-0.000134,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000006,0.000028,0.000119,0.000119,0.000049,0.332958,-0.000247,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000005,0.000028,0.000368,0.000368,0.000047,0.332473,-0.000485,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000007,0.000004,0.000028,0.000526,0.000526,0.000045,0.331845,-0.000627,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000004,0.000028,0.000640,0.000640,0.000043,0.331121,-0.000724,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000003,0.000028,0.000721,0.000721,0.000040,0.330335,-0.000786,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000002,0.000028,0.000678,0.000678,0.000036,0.329610,-0.000725,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000005,0.000001,0.000028,0.000611,0.000611,0.000033,0.328967,-0.000642,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000001,0.000027,0.000546,0.000546,0.000029,0.328403,-0.000564,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000443,0.000443,0.000026,0.327953,-0.000450,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000338,0.000338,0.000023,0.327616,-0.000338,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000206,0.000206,0.000020,0.327409,-0.000206,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000051,0.000051,0.000017,0.327358,-0.000051,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000015,0.327358,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000013,0.327358,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000011,0.327358,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000000,0.000000,0.000010,0.327358,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000000,0.000000,0.000009,0.327358,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000000,0.000000,0.000008,0.327358,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000000,0.000000,0.000007,0.327358,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000000,0.000000,0.000006,0.327358,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000000,0.000000,0.000005,0.327358,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000000,0.000000,0.000004,0.327358,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000028,0.000000,0.000000,0.000004,0.327358,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000028,0.000000,0.000000,0.000003,0.327358,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000029,0.000135,0.000135,0.000003,0.327224,-0.000135,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000000,0.000000,0.000029,0.000377,0.000376,0.000003,0.326848,-0.000376,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000531,0.000529,0.000002,0.326319,-0.000529,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000644,0.000640,0.000002,0.325679,-0.000640,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000029,0.000649,0.000643,0.000002,0.325037,-0.000643,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000030,0.000596,0.000589,0.000001,0.324448,-0.000589,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000538,0.000529,0.000001,0.323919,-0.000529,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000521,0.000511,0.000001,0.323408,-0.000511,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000422,0.000413,0.000001,0.322995,-0.000413,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000321,0.000313,0.000001,0.322681,-0.000313,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000203,0.000198,0.000001,0.322483,-0.000198,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000062,0.000060,0.000001,0.322423,-0.000060,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000005,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000000,0.000000,0.000001,0.322428,0.000005,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000000,0.322428,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000116,0.000113,0.000000,0.322315,-0.000113,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000360,0.000351,0.000000,0.321965,-0.000351,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000512,0.000497,0.000000,0.321468,-0.000497,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000623,0.000604,0.000000,0.320864,-0.000604,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000707,0.000683,0.000000,0.320181,-0.000683,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000664,0.000639,0.000000,0.319542,-0.000639,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000601,0.000576,0.000000,0.318966,-0.000576,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000537,0.000513,0.000000,0.318452,-0.000513,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000439,0.000419,0.000000,0.318034,-0.000419,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000331,0.000315,0.000000,0.317718,-0.000315,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000196,0.000187,0.000000,0.317532,-0.000187,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000046,0.000043,0.000000,0.317489,-0.000043,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.317489,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000112,0.000106,0.000000,0.317383,-0.000106,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000353,0.000335,0.000000,0.317048,-0.000335,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000512,0.000485,0.000000,0.316563,-0.000485,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000621,0.000586,0.000000,0.315977,-0.000586,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000661,0.000622,0.000000,0.315355,-0.000622,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000619,0.000580,0.000000,0.314774,-0.000580,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000564,0.000527,0.000000,0.314247,-0.000527,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000522,0.000487,0.000000,0.313760,-0.000487,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000421,0.000392,0.000000,0.313368,-0.000392,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000319,0.000296,0.000000,0.313072,-0.000296,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000163,0.000151,0.000000,0.312920,-0.000151,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000028,0.000026,0.000000,0.312895,-0.000026,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.312895,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.312895,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.312895,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.312895,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.312896,0.000002,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.312897,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312897,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312899,0.000002,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312901,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312904,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312906,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000000,0.000000,0.000000,0.312906,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000000,0.000000,0.000043,0.000095,0.000088,0.000000,0.312818,-0.000088,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000340,0.000315,0.000000,0.312504,-0.000315,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000501,0.000463,0.000000,0.312040,-0.000463,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000616,0.000567,0.000000,0.311473,-0.000567,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000696,0.000639,0.000000,0.310834,-0.000639,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000657,0.000601,0.000000,0.310233,-0.000601,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000000,0.000000,0.000044,0.000592,0.000540,0.000000,0.309693,-0.000540,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000526,0.000478,0.000000,0.309215,-0.000478,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000430,0.000390,0.000000,0.308825,-0.000390,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000321,0.000290,0.000000,0.308535,-0.000290,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000180,0.000163,0.000000,0.308372,-0.000163,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000023,0.000021,0.000000,0.308351,-0.000021,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000000,0.000000,0.000045,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000000,0.000000,0.000046,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000000,0.000000,0.000000,0.308351,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000000,0.000000,0.000047,0.000101,0.000091,0.000000,0.308260,-0.000091,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620767.csv b/test/channel_loss/channel_forcing/et/cat-2620767.csv new file mode 100644 index 000000000..ccf5adb7f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620767.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000038,0.000000,0.000000,0.000000,0.000000,0.000822,0.000144,0.000822,0.000155,0.000155,0.009084,0.374208,-0.002193,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000761,0.000141,0.000761,0.000043,0.000043,0.008463,0.372138,-0.002070,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000707,0.000138,0.000707,0.000000,0.000000,0.007895,0.370158,-0.001980,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000657,0.000135,0.000657,0.000000,0.000000,0.007373,0.368223,-0.001935,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000611,0.000132,0.000611,0.000000,0.000000,0.006893,0.366333,-0.001890,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000570,0.000129,0.000570,0.000000,0.000000,0.006452,0.364486,-0.001847,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000532,0.000126,0.000532,0.000000,0.000000,0.006046,0.362682,-0.001804,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000497,0.000123,0.000497,0.000000,0.000000,0.005671,0.360919,-0.001763,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000465,0.000120,0.000466,0.000000,0.000000,0.005326,0.359197,-0.001722,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000436,0.000117,0.000437,0.000000,0.000000,0.005007,0.357515,-0.001682,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000409,0.000114,0.000410,0.000000,0.000000,0.004712,0.355871,-0.001644,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000385,0.000112,0.000386,0.000000,0.000000,0.004439,0.354265,-0.001606,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000362,0.000109,0.000363,0.000000,0.000000,0.004186,0.352696,-0.001569,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000341,0.000107,0.000342,0.000000,0.000000,0.003952,0.351164,-0.001533,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000322,0.000104,0.000323,0.000126,0.000126,0.003734,0.349543,-0.001621,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000304,0.000101,0.000305,0.000371,0.000371,0.003532,0.347721,-0.001822,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000287,0.000098,0.000289,0.000527,0.000527,0.003343,0.345789,-0.001932,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000271,0.000095,0.000273,0.000633,0.000633,0.003166,0.343797,-0.001992,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000257,0.000092,0.000259,0.000515,0.000515,0.003001,0.341966,-0.001831,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000825,0.000003,0.000005,0.000003,0.000003,0.000243,0.000090,0.000249,0.000473,0.000473,0.002848,0.341018,-0.000947,1.000000,0.000002 +20,2022-08-01 20:00:00,0.001002,0.000009,0.000014,0.000009,0.000003,0.000231,0.000089,0.000243,0.000428,0.000428,0.002706,0.340302,-0.000716,1.000000,0.000007 +21,2022-08-01 21:00:00,0.001082,0.000017,0.000023,0.000017,0.000003,0.000219,0.000088,0.000240,0.000344,0.000344,0.002575,0.339754,-0.000548,1.000000,0.000013 +22,2022-08-01 22:00:00,0.001022,0.000022,0.000024,0.000022,0.000003,0.000209,0.000087,0.000234,0.000280,0.000280,0.002453,0.339222,-0.000532,1.000000,0.000015 +23,2022-08-01 23:00:00,0.001020,0.000026,0.000028,0.000026,0.000004,0.000199,0.000086,0.000228,0.000208,0.000208,0.002340,0.338765,-0.000456,1.000000,0.000017 +24,2022-08-02 00:00:00,0.001020,0.000030,0.000033,0.000030,0.000004,0.000190,0.000086,0.000223,0.000141,0.000141,0.002236,0.338380,-0.000385,1.000000,0.000020 +25,2022-08-02 01:00:00,0.001430,0.000057,0.000078,0.000057,0.000004,0.000182,0.000086,0.000242,0.000059,0.000059,0.002140,0.338440,0.000060,1.000000,0.000042 +26,2022-08-02 02:00:00,0.001436,0.000073,0.000085,0.000073,0.000004,0.000174,0.000086,0.000251,0.000000,0.000000,0.002052,0.338556,0.000116,1.000000,0.000054 +27,2022-08-02 03:00:00,0.001422,0.000083,0.000084,0.000083,0.000005,0.000167,0.000086,0.000255,0.000000,0.000000,0.001971,0.338656,0.000100,1.000000,0.000055 +28,2022-08-02 04:00:00,0.001434,0.000085,0.000085,0.000085,0.000005,0.000161,0.000086,0.000250,0.000000,0.000000,0.001897,0.338765,0.000109,1.000000,0.000055 +29,2022-08-02 05:00:00,0.001407,0.000083,0.000082,0.000083,0.000005,0.000155,0.000086,0.000243,0.000000,0.000000,0.001829,0.338847,0.000082,1.000000,0.000054 +30,2022-08-02 06:00:00,0.001403,0.000082,0.000082,0.000082,0.000006,0.000149,0.000087,0.000237,0.000000,0.000000,0.001766,0.338925,0.000077,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000006,0.000144,0.000085,0.000187,0.000000,0.000000,0.001706,0.337709,-0.001215,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000007,0.000139,0.000083,0.000162,0.000000,0.000000,0.001650,0.336522,-0.001187,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000135,0.000081,0.000142,0.000000,0.000000,0.001596,0.335362,-0.001160,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000130,0.000079,0.000138,0.000000,0.000000,0.001544,0.334228,-0.001133,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000126,0.000077,0.000134,0.000000,0.000000,0.001495,0.333121,-0.001107,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000122,0.000075,0.000130,0.000000,0.000000,0.001448,0.332039,-0.001082,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000208,0.000001,0.000002,0.000001,0.000008,0.000118,0.000074,0.000128,0.000000,0.000000,0.001404,0.331183,-0.000856,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000222,0.000001,0.000000,0.000001,0.000009,0.000115,0.000072,0.000124,0.000120,0.000120,0.001362,0.330246,-0.000938,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000138,0.000000,0.000000,0.000000,0.000009,0.000111,0.000070,0.000121,0.000314,0.000314,0.001321,0.329059,-0.001187,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000126,0.000000,0.000000,0.000000,0.000010,0.000108,0.000068,0.000118,0.000450,0.000450,0.001281,0.327755,-0.001304,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000133,0.000000,0.000000,0.000000,0.000010,0.000105,0.000066,0.000115,0.000543,0.000543,0.001243,0.326396,-0.001359,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000216,0.000000,0.000000,0.000000,0.000010,0.000101,0.000064,0.000112,0.000599,0.000599,0.001205,0.325095,-0.001302,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000060,0.000000,0.000000,0.000000,0.000011,0.000098,0.000062,0.000109,0.000541,0.000541,0.001168,0.323727,-0.001367,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000049,0.000000,0.000000,0.000000,0.000011,0.000095,0.000060,0.000107,0.000488,0.000488,0.001133,0.322433,-0.001294,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000043,0.000000,0.000000,0.000000,0.000012,0.000092,0.000057,0.000104,0.000486,0.000486,0.001098,0.321165,-0.001269,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000043,0.000000,0.000000,0.000000,0.000012,0.000089,0.000056,0.000102,0.000409,0.000409,0.001064,0.320000,-0.001165,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000051,0.000000,0.000000,0.000000,0.000013,0.000087,0.000054,0.000099,0.000310,0.000310,0.001031,0.318967,-0.001033,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000084,0.000052,0.000097,0.000178,0.000178,0.001000,0.318099,-0.000868,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000170,0.000000,0.000001,0.000000,0.000014,0.000081,0.000051,0.000095,0.000031,0.000031,0.000970,0.317498,-0.000601,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000196,0.000001,0.000002,0.000001,0.000014,0.000079,0.000051,0.000094,0.000000,0.000000,0.000941,0.316966,-0.000532,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000190,0.000001,0.000001,0.000001,0.000014,0.000077,0.000050,0.000093,0.000000,0.000000,0.000914,0.316440,-0.000526,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000196,0.000002,0.000002,0.000002,0.000015,0.000075,0.000049,0.000091,0.000000,0.000000,0.000889,0.315932,-0.000508,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000190,0.000002,0.000001,0.000002,0.000015,0.000072,0.000048,0.000089,0.000000,0.000000,0.000864,0.315430,-0.000502,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000203,0.000002,0.000002,0.000002,0.000016,0.000071,0.000047,0.000088,0.000000,0.000000,0.000841,0.314952,-0.000478,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000016,0.000069,0.000046,0.000086,0.000000,0.000000,0.000818,0.314288,-0.000663,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000067,0.000045,0.000084,0.000000,0.000000,0.000797,0.313640,-0.000648,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000065,0.000044,0.000082,0.000000,0.000000,0.000776,0.313007,-0.000633,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000063,0.000043,0.000081,0.000000,0.000000,0.000755,0.312389,-0.000619,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000062,0.000042,0.000080,0.000000,0.000000,0.000736,0.311784,-0.000604,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000060,0.000041,0.000079,0.000000,0.000000,0.000717,0.311194,-0.000590,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000059,0.000040,0.000078,0.000000,0.000000,0.000699,0.310617,-0.000577,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000057,0.000039,0.000077,0.000120,0.000120,0.000681,0.309937,-0.000681,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000055,0.000038,0.000076,0.000368,0.000368,0.000663,0.309029,-0.000908,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000054,0.000036,0.000075,0.000526,0.000526,0.000645,0.307988,-0.001041,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000052,0.000034,0.000074,0.000637,0.000637,0.000626,0.306863,-0.001125,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000051,0.000032,0.000073,0.000618,0.000618,0.000607,0.305783,-0.001081,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000022,0.000049,0.000031,0.000072,0.000564,0.000564,0.000589,0.304781,-0.001002,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000220,0.000000,0.000000,0.000000,0.000023,0.000048,0.000029,0.000070,0.000499,0.000499,0.000570,0.304079,-0.000702,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000078,0.000000,0.000000,0.000000,0.000023,0.000046,0.000028,0.000069,0.000450,0.000450,0.000552,0.303303,-0.000776,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000002,0.000000,0.000000,0.000000,0.000024,0.000045,0.000027,0.000068,0.000372,0.000372,0.000535,0.302548,-0.000756,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000024,0.000043,0.000026,0.000067,0.000278,0.000278,0.000517,0.301903,-0.000645,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000004,0.000000,0.000000,0.000000,0.000025,0.000042,0.000025,0.000067,0.000191,0.000191,0.000500,0.301357,-0.000546,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000040,0.000024,0.000066,0.000042,0.000042,0.000484,0.300966,-0.000391,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000039,0.000024,0.000065,0.000000,0.000000,0.000469,0.300625,-0.000341,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000038,0.000023,0.000064,0.000000,0.000000,0.000454,0.300291,-0.000333,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000037,0.000023,0.000063,0.000000,0.000000,0.000440,0.299966,-0.000326,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000036,0.000022,0.000063,0.000000,0.000000,0.000426,0.299648,-0.000318,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000035,0.000022,0.000062,0.000000,0.000000,0.000413,0.299337,-0.000311,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000034,0.000021,0.000062,0.000000,0.000000,0.000401,0.299033,-0.000304,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000033,0.000021,0.000061,0.000000,0.000000,0.000389,0.298736,-0.000297,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000032,0.000020,0.000061,0.000000,0.000000,0.000378,0.298447,-0.000290,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000031,0.000020,0.000060,0.000000,0.000000,0.000367,0.298163,-0.000283,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000030,0.000019,0.000060,0.000000,0.000000,0.000356,0.297887,-0.000277,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000029,0.000019,0.000060,0.000000,0.000000,0.000346,0.297617,-0.000270,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000028,0.000018,0.000059,0.000000,0.000000,0.000337,0.297353,-0.000264,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000027,0.000018,0.000059,0.000115,0.000115,0.000327,0.296982,-0.000371,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000026,0.000017,0.000059,0.000365,0.000365,0.000317,0.296376,-0.000606,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000026,0.000016,0.000058,0.000526,0.000526,0.000307,0.295627,-0.000749,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000025,0.000014,0.000058,0.000639,0.000639,0.000297,0.294784,-0.000843,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000024,0.000013,0.000057,0.000719,0.000719,0.000286,0.293882,-0.000902,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000023,0.000011,0.000057,0.000658,0.000658,0.000274,0.293062,-0.000821,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000022,0.000010,0.000056,0.000592,0.000592,0.000262,0.292324,-0.000737,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000021,0.000009,0.000056,0.000523,0.000523,0.000250,0.291671,-0.000653,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000020,0.000008,0.000055,0.000432,0.000432,0.000239,0.291122,-0.000549,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000019,0.000007,0.000055,0.000326,0.000326,0.000227,0.290689,-0.000433,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000018,0.000007,0.000055,0.000197,0.000197,0.000216,0.290392,-0.000297,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000017,0.000007,0.000054,0.000046,0.000046,0.000206,0.290250,-0.000142,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000016,0.000007,0.000054,0.000000,0.000000,0.000196,0.290155,-0.000094,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000016,0.000006,0.000053,0.000000,0.000000,0.000187,0.290063,-0.000092,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000015,0.000006,0.000053,0.000000,0.000000,0.000178,0.289973,-0.000090,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000006,0.000053,0.000000,0.000000,0.000170,0.289885,-0.000088,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000014,0.000006,0.000053,0.000000,0.000000,0.000163,0.289799,-0.000086,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000013,0.000006,0.000053,0.000000,0.000000,0.000155,0.289715,-0.000084,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000012,0.000006,0.000053,0.000000,0.000000,0.000149,0.289633,-0.000082,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000012,0.000006,0.000053,0.000000,0.000000,0.000142,0.289553,-0.000080,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000011,0.000005,0.000052,0.000000,0.000000,0.000137,0.289475,-0.000078,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000011,0.000005,0.000052,0.000000,0.000000,0.000131,0.289398,-0.000077,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000010,0.000005,0.000052,0.000000,0.000000,0.000126,0.289323,-0.000075,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000010,0.000005,0.000053,0.000000,0.000000,0.000121,0.289250,-0.000073,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000010,0.000005,0.000053,0.000131,0.000131,0.000116,0.289051,-0.000199,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000009,0.000004,0.000053,0.000373,0.000373,0.000111,0.288620,-0.000431,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000009,0.000003,0.000053,0.000529,0.000529,0.000105,0.288046,-0.000574,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000008,0.000002,0.000052,0.000643,0.000643,0.000099,0.287374,-0.000672,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000008,0.000001,0.000052,0.000641,0.000641,0.000092,0.286720,-0.000654,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000007,0.000000,0.000052,0.000591,0.000591,0.000085,0.286129,-0.000591,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000007,0.000000,0.000052,0.000530,0.000530,0.000078,0.285599,-0.000530,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000000,0.000052,0.000506,0.000505,0.000072,0.285094,-0.000505,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000006,0.000000,0.000052,0.000411,0.000409,0.000067,0.284686,-0.000409,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000005,0.000000,0.000052,0.000311,0.000308,0.000062,0.284377,-0.000308,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000005,0.000000,0.000052,0.000194,0.000193,0.000057,0.284185,-0.000193,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000036,0.000000,0.000000,0.000000,0.000048,0.000004,0.000000,0.000052,0.000056,0.000056,0.000053,0.284165,-0.000019,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000042,0.000000,0.000000,0.000000,0.000048,0.000004,0.000000,0.000052,0.000000,0.000000,0.000049,0.284207,0.000042,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000004,0.000000,0.000052,0.000000,0.000000,0.000045,0.284207,0.000000,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000000,0.000052,0.000000,0.000000,0.000041,0.284207,0.000000,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000003,0.000000,0.000052,0.000000,0.000000,0.000038,0.284207,0.000000,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000000,0.000000,0.000035,0.284207,0.000000,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000000,0.000000,0.000033,0.284207,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000003,0.000000,0.000053,0.000000,0.000000,0.000030,0.284207,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000000,0.000000,0.000028,0.284207,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000002,0.000000,0.000053,0.000000,0.000000,0.000026,0.284207,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000024,0.284207,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000022,0.284207,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000002,0.000000,0.000054,0.000000,0.000000,0.000020,0.284207,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000002,0.000000,0.000054,0.000112,0.000111,0.000019,0.284096,-0.000111,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000054,0.000354,0.000350,0.000017,0.283746,-0.000350,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000001,0.000000,0.000055,0.000509,0.000502,0.000016,0.283244,-0.000502,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000622,0.000612,0.000015,0.282632,-0.000612,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000001,0.000000,0.000055,0.000704,0.000690,0.000014,0.281942,-0.000690,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000653,0.000638,0.000012,0.281304,-0.000638,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000586,0.000571,0.000012,0.280733,-0.000571,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000001,0.000000,0.000056,0.000521,0.000505,0.000011,0.280228,-0.000505,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000056,0.000430,0.000415,0.000010,0.279812,-0.000415,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000323,0.000312,0.000009,0.279500,-0.000312,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000001,0.000000,0.000057,0.000189,0.000182,0.000008,0.279319,-0.000182,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000057,0.000040,0.000039,0.000008,0.279280,-0.000039,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000007,0.279280,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000001,0.000000,0.000058,0.000000,0.000000,0.000007,0.279280,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000001,0.000000,0.000058,0.000000,0.000000,0.000006,0.279280,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000058,0.000000,0.000000,0.000006,0.279280,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000000,0.000000,0.000059,0.000000,0.000000,0.000005,0.279280,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000005,0.279280,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000059,0.000000,0.000000,0.000004,0.279280,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000000,0.000000,0.000060,0.000000,0.000000,0.000004,0.279280,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000004,0.279280,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000060,0.000000,0.000000,0.000003,0.279280,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000000,0.000000,0.000061,0.000000,0.000000,0.000003,0.279280,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000000,0.000000,0.000003,0.279280,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000108,0.000104,0.000003,0.279176,-0.000104,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000000,0.000000,0.000061,0.000349,0.000336,0.000003,0.278841,-0.000336,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000510,0.000490,0.000002,0.278351,-0.000490,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000621,0.000594,0.000002,0.277757,-0.000594,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000062,0.000654,0.000624,0.000002,0.277133,-0.000624,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000000,0.000000,0.000063,0.000609,0.000579,0.000002,0.276554,-0.000579,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000553,0.000524,0.000002,0.276030,-0.000524,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000509,0.000480,0.000002,0.275550,-0.000480,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000000,0.000000,0.000063,0.000413,0.000388,0.000001,0.275161,-0.000388,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000311,0.000292,0.000001,0.274869,-0.000292,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000155,0.000145,0.000001,0.274724,-0.000145,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000064,0.000023,0.000021,0.000001,0.274703,-0.000021,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.274703,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.274703,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.274703,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000000,0.000000,0.000065,0.000000,0.000000,0.000001,0.274703,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.274705,0.000002,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.274706,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.274706,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000066,0.000000,0.000000,0.000066,0.000000,0.000000,0.000001,0.274707,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.274709,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000001,0.274711,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.274713,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000000,0.000000,0.000067,0.000000,0.000000,0.000000,0.274713,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000092,0.000086,0.000000,0.274627,-0.000086,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000338,0.000317,0.000000,0.274310,-0.000317,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000499,0.000467,0.000000,0.273843,-0.000467,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000000,0.000000,0.000068,0.000613,0.000572,0.000000,0.273271,-0.000572,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000683,0.000634,0.000000,0.272637,-0.000634,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000641,0.000593,0.000000,0.272044,-0.000593,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000567,0.000522,0.000000,0.271522,-0.000522,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000000,0.000000,0.000069,0.000508,0.000466,0.000000,0.271055,-0.000466,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000417,0.000382,0.000000,0.270673,-0.000382,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000313,0.000286,0.000000,0.270387,-0.000286,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000171,0.000156,0.000000,0.270231,-0.000156,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000000,0.000000,0.000070,0.000018,0.000016,0.000000,0.270215,-0.000016,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000000,0.000000,0.000071,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000000,0.000000,0.000072,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000000,0.000000,0.000000,0.270215,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000000,0.000000,0.000073,0.000098,0.000090,0.000000,0.270125,-0.000090,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620768.csv b/test/channel_loss/channel_forcing/et/cat-2620768.csv new file mode 100644 index 000000000..652171eea --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620768.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000029,0.000000,0.000000,0.000000,0.000000,0.000813,0.000040,0.000813,0.000169,0.000169,0.008988,0.375851,-0.002655,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000744,0.000039,0.000744,0.000050,0.000050,0.008283,0.373339,-0.002512,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000682,0.000038,0.000682,0.000000,0.000000,0.007639,0.370927,-0.002412,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000626,0.000037,0.000626,0.000000,0.000000,0.007050,0.368563,-0.002364,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000575,0.000037,0.000575,0.000000,0.000000,0.006511,0.366247,-0.002316,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000529,0.000036,0.000529,0.000000,0.000000,0.006018,0.363978,-0.002269,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000487,0.000035,0.000488,0.000000,0.000000,0.005566,0.361754,-0.002223,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000449,0.000034,0.000450,0.000000,0.000000,0.005151,0.359576,-0.002179,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000415,0.000034,0.000415,0.000000,0.000000,0.004770,0.357441,-0.002135,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000383,0.000033,0.000384,0.000000,0.000000,0.004420,0.355350,-0.002091,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000354,0.000032,0.000355,0.000000,0.000000,0.004098,0.353301,-0.002049,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000328,0.000032,0.000329,0.000000,0.000000,0.003802,0.351293,-0.002008,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000303,0.000031,0.000305,0.000000,0.000000,0.003530,0.349326,-0.001967,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000281,0.000030,0.000283,0.000000,0.000000,0.003279,0.347398,-0.001928,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000261,0.000030,0.000263,0.000131,0.000131,0.003048,0.345381,-0.002017,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000242,0.000029,0.000244,0.000380,0.000380,0.002835,0.343161,-0.002220,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000225,0.000028,0.000227,0.000535,0.000535,0.002638,0.340834,-0.002327,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000209,0.000027,0.000212,0.000648,0.000648,0.002457,0.338443,-0.002391,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000194,0.000027,0.000197,0.000536,0.000536,0.002289,0.336210,-0.002233,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000677,0.000004,0.000007,0.000004,0.000003,0.000181,0.000026,0.000188,0.000483,0.000483,0.002134,0.334731,-0.001479,1.000000,0.000003 +20,2022-08-01 20:00:00,0.000756,0.000011,0.000017,0.000011,0.000004,0.000169,0.000026,0.000183,0.000451,0.000451,0.001991,0.333380,-0.001350,1.000000,0.000009 +21,2022-08-01 21:00:00,0.000778,0.000023,0.000032,0.000023,0.000004,0.000157,0.000025,0.000185,0.000355,0.000355,0.001859,0.332158,-0.001222,1.000000,0.000018 +22,2022-08-01 22:00:00,0.000774,0.000034,0.000042,0.000034,0.000004,0.000147,0.000025,0.000186,0.000286,0.000286,0.001737,0.331016,-0.001143,1.000000,0.000025 +23,2022-08-01 23:00:00,0.000783,0.000048,0.000056,0.000048,0.000005,0.000137,0.000025,0.000190,0.000211,0.000211,0.001625,0.329963,-0.001052,1.000000,0.000034 +24,2022-08-02 00:00:00,0.000816,0.000063,0.000074,0.000063,0.000005,0.000128,0.000024,0.000197,0.000155,0.000155,0.001521,0.329002,-0.000962,1.000000,0.000045 +25,2022-08-02 01:00:00,0.001188,0.000138,0.000197,0.000138,0.000005,0.000120,0.000024,0.000264,0.000066,0.000066,0.001425,0.328391,-0.000611,1.000000,0.000104 +26,2022-08-02 02:00:00,0.001184,0.000184,0.000217,0.000184,0.000006,0.000113,0.000024,0.000302,0.000000,0.000000,0.001336,0.327833,-0.000558,1.000000,0.000137 +27,2022-08-02 03:00:00,0.001200,0.000216,0.000223,0.000216,0.000006,0.000106,0.000024,0.000328,0.000000,0.000000,0.001255,0.327298,-0.000535,1.000000,0.000144 +28,2022-08-02 04:00:00,0.001184,0.000218,0.000217,0.000218,0.000007,0.000099,0.000024,0.000324,0.000000,0.000000,0.001179,0.326763,-0.000535,1.000000,0.000142 +29,2022-08-02 05:00:00,0.001166,0.000215,0.000211,0.000215,0.000007,0.000093,0.000024,0.000315,0.000000,0.000000,0.001109,0.326227,-0.000536,1.000000,0.000138 +30,2022-08-02 06:00:00,0.001166,0.000212,0.000210,0.000212,0.000008,0.000088,0.000023,0.000307,0.000000,0.000000,0.001045,0.325702,-0.000525,1.000000,0.000137 +31,2022-08-02 07:00:00,0.000000,0.000095,0.000000,0.000095,0.000008,0.000083,0.000023,0.000185,0.000000,0.000000,0.000985,0.324251,-0.001450,1.000000,0.000042 +32,2022-08-02 08:00:00,0.000000,0.000042,0.000000,0.000042,0.000009,0.000078,0.000022,0.000129,0.000000,0.000000,0.000929,0.322830,-0.001421,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000074,0.000022,0.000083,0.000000,0.000000,0.000878,0.321437,-0.001393,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000070,0.000022,0.000079,0.000000,0.000000,0.000830,0.320073,-0.001364,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000066,0.000021,0.000076,0.000000,0.000000,0.000785,0.318736,-0.001337,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000062,0.000021,0.000073,0.000000,0.000000,0.000743,0.317426,-0.001310,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000060,0.000000,0.000001,0.000000,0.000011,0.000059,0.000020,0.000070,0.000000,0.000000,0.000705,0.316201,-0.001225,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000099,0.000000,0.000000,0.000000,0.000012,0.000056,0.000020,0.000068,0.000124,0.000124,0.000668,0.314918,-0.001284,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000065,0.000000,0.000000,0.000000,0.000012,0.000053,0.000019,0.000065,0.000322,0.000322,0.000635,0.313433,-0.001485,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000065,0.000000,0.000000,0.000000,0.000013,0.000050,0.000019,0.000063,0.000460,0.000460,0.000603,0.311842,-0.001591,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000013,0.000048,0.000018,0.000061,0.000556,0.000556,0.000573,0.310188,-0.001654,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000161,0.000000,0.000000,0.000000,0.000014,0.000046,0.000018,0.000059,0.000623,0.000623,0.000546,0.308599,-0.001589,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000038,0.000000,0.000000,0.000000,0.000014,0.000043,0.000017,0.000058,0.000557,0.000557,0.000519,0.306985,-0.001614,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000029,0.000000,0.000000,0.000000,0.000015,0.000041,0.000017,0.000056,0.000505,0.000505,0.000495,0.305446,-0.001539,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000009,0.000000,0.000000,0.000000,0.000015,0.000039,0.000016,0.000055,0.000508,0.000508,0.000472,0.303916,-0.001530,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000009,0.000000,0.000000,0.000000,0.000016,0.000038,0.000016,0.000054,0.000426,0.000426,0.000450,0.302497,-0.001419,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000017,0.000036,0.000015,0.000052,0.000325,0.000325,0.000429,0.301225,-0.001272,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000038,0.000000,0.000000,0.000000,0.000017,0.000034,0.000015,0.000051,0.000192,0.000192,0.000410,0.300118,-0.001107,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000057,0.000000,0.000000,0.000000,0.000018,0.000033,0.000015,0.000051,0.000039,0.000039,0.000392,0.299201,-0.000916,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000057,0.000000,0.000001,0.000000,0.000018,0.000031,0.000014,0.000050,0.000000,0.000000,0.000375,0.298341,-0.000860,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000073,0.000001,0.000001,0.000001,0.000019,0.000030,0.000014,0.000050,0.000000,0.000000,0.000359,0.297514,-0.000827,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000091,0.000001,0.000001,0.000001,0.000020,0.000029,0.000014,0.000050,0.000000,0.000000,0.000345,0.296720,-0.000794,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000091,0.000001,0.000001,0.000001,0.000020,0.000028,0.000014,0.000049,0.000000,0.000000,0.000331,0.295942,-0.000778,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000099,0.000002,0.000002,0.000002,0.000021,0.000027,0.000013,0.000049,0.000000,0.000000,0.000318,0.295188,-0.000755,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000021,0.000025,0.000013,0.000048,0.000000,0.000000,0.000305,0.294354,-0.000834,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000024,0.000013,0.000047,0.000000,0.000000,0.000294,0.293536,-0.000817,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000024,0.000013,0.000046,0.000000,0.000000,0.000283,0.292735,-0.000801,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000023,0.000012,0.000046,0.000000,0.000000,0.000272,0.291950,-0.000785,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000022,0.000012,0.000046,0.000000,0.000000,0.000262,0.291181,-0.000769,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000021,0.000012,0.000046,0.000000,0.000000,0.000253,0.290428,-0.000753,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000020,0.000012,0.000046,0.000000,0.000000,0.000244,0.289690,-0.000738,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000020,0.000011,0.000046,0.000129,0.000129,0.000236,0.288840,-0.000850,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000027,0.000019,0.000011,0.000046,0.000379,0.000379,0.000228,0.287764,-0.001076,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000018,0.000011,0.000046,0.000542,0.000542,0.000220,0.286549,-0.001215,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000018,0.000010,0.000046,0.000652,0.000652,0.000213,0.285250,-0.001299,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000017,0.000010,0.000046,0.000637,0.000637,0.000205,0.283993,-0.001257,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000029,0.000017,0.000009,0.000046,0.000592,0.000592,0.000198,0.282813,-0.001181,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000108,0.000000,0.000000,0.000000,0.000030,0.000016,0.000009,0.000046,0.000530,0.000530,0.000191,0.281815,-0.000997,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000039,0.000000,0.000000,0.000000,0.000030,0.000015,0.000009,0.000046,0.000472,0.000472,0.000185,0.280827,-0.000988,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000008,0.000000,0.000000,0.000000,0.000031,0.000015,0.000008,0.000046,0.000390,0.000390,0.000178,0.279908,-0.000919,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000008,0.000000,0.000000,0.000000,0.000032,0.000014,0.000008,0.000046,0.000293,0.000293,0.000172,0.279102,-0.000805,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000008,0.000000,0.000000,0.000000,0.000032,0.000014,0.000008,0.000046,0.000206,0.000206,0.000166,0.278399,-0.000704,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000013,0.000008,0.000046,0.000051,0.000051,0.000161,0.277853,-0.000545,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000013,0.000008,0.000047,0.000000,0.000000,0.000155,0.277369,-0.000484,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000013,0.000007,0.000047,0.000000,0.000000,0.000150,0.276895,-0.000474,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000012,0.000007,0.000047,0.000000,0.000000,0.000146,0.276430,-0.000465,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000012,0.000007,0.000047,0.000000,0.000000,0.000141,0.275974,-0.000456,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000011,0.000007,0.000048,0.000000,0.000000,0.000137,0.275528,-0.000446,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000011,0.000007,0.000048,0.000000,0.000000,0.000132,0.275090,-0.000437,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000011,0.000007,0.000048,0.000000,0.000000,0.000129,0.274662,-0.000428,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000010,0.000007,0.000049,0.000000,0.000000,0.000125,0.274242,-0.000420,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000010,0.000006,0.000049,0.000000,0.000000,0.000121,0.273831,-0.000411,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000006,0.000049,0.000000,0.000000,0.000118,0.273428,-0.000403,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000010,0.000006,0.000050,0.000000,0.000000,0.000114,0.273033,-0.000395,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000009,0.000006,0.000050,0.000000,0.000000,0.000111,0.272646,-0.000387,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000009,0.000006,0.000051,0.000122,0.000122,0.000108,0.272147,-0.000499,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000009,0.000006,0.000051,0.000374,0.000374,0.000105,0.271412,-0.000735,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000008,0.000005,0.000051,0.000534,0.000534,0.000102,0.270535,-0.000877,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000008,0.000005,0.000052,0.000655,0.000655,0.000099,0.269557,-0.000978,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000008,0.000005,0.000052,0.000734,0.000734,0.000096,0.268520,-0.001036,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000008,0.000004,0.000053,0.000704,0.000704,0.000092,0.267535,-0.000986,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000007,0.000004,0.000053,0.000622,0.000622,0.000089,0.266649,-0.000885,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000007,0.000004,0.000053,0.000555,0.000555,0.000086,0.265848,-0.000802,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000007,0.000004,0.000054,0.000450,0.000450,0.000083,0.265165,-0.000683,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000007,0.000003,0.000054,0.000341,0.000341,0.000080,0.264602,-0.000563,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000006,0.000003,0.000054,0.000213,0.000213,0.000076,0.264177,-0.000425,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000006,0.000003,0.000055,0.000054,0.000054,0.000074,0.263916,-0.000261,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000006,0.000003,0.000055,0.000000,0.000000,0.000071,0.263713,-0.000203,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000006,0.000003,0.000056,0.000000,0.000000,0.000068,0.263515,-0.000199,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000005,0.000003,0.000056,0.000000,0.000000,0.000066,0.263320,-0.000195,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000005,0.000003,0.000057,0.000000,0.000000,0.000064,0.263129,-0.000191,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000005,0.000003,0.000057,0.000000,0.000000,0.000061,0.262942,-0.000187,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000005,0.000003,0.000057,0.000000,0.000000,0.000059,0.262759,-0.000183,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000005,0.000003,0.000058,0.000000,0.000000,0.000057,0.262580,-0.000179,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000005,0.000003,0.000058,0.000000,0.000000,0.000056,0.262404,-0.000176,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000004,0.000003,0.000059,0.000000,0.000000,0.000054,0.262232,-0.000172,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000004,0.000003,0.000059,0.000000,0.000000,0.000052,0.262063,-0.000169,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000056,0.000004,0.000003,0.000060,0.000000,0.000000,0.000051,0.261898,-0.000165,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000004,0.000003,0.000060,0.000000,0.000000,0.000049,0.261736,-0.000162,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000004,0.000002,0.000061,0.000139,0.000139,0.000048,0.261441,-0.000295,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000004,0.000002,0.000061,0.000382,0.000382,0.000046,0.260914,-0.000527,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000004,0.000002,0.000062,0.000539,0.000539,0.000044,0.260243,-0.000670,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000004,0.000002,0.000062,0.000657,0.000657,0.000043,0.259471,-0.000773,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000003,0.000002,0.000063,0.000663,0.000663,0.000041,0.258709,-0.000762,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000003,0.000001,0.000063,0.000606,0.000606,0.000039,0.258017,-0.000691,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000003,0.000001,0.000063,0.000547,0.000547,0.000037,0.257398,-0.000619,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000003,0.000001,0.000064,0.000529,0.000529,0.000035,0.256808,-0.000589,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000003,0.000001,0.000064,0.000426,0.000426,0.000033,0.256332,-0.000477,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000003,0.000001,0.000065,0.000330,0.000330,0.000031,0.255959,-0.000373,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000002,0.000001,0.000065,0.000211,0.000211,0.000029,0.255710,-0.000249,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000006,0.000000,0.000000,0.000000,0.000063,0.000002,0.000001,0.000066,0.000064,0.000064,0.000028,0.255616,-0.000094,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000007,0.000000,0.000000,0.000000,0.000064,0.000002,0.000001,0.000066,0.000000,0.000000,0.000026,0.255588,-0.000028,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000002,0.000001,0.000066,0.000000,0.000000,0.000024,0.255553,-0.000035,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000002,0.000001,0.000067,0.000000,0.000000,0.000023,0.255519,-0.000034,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000002,0.000001,0.000067,0.000000,0.000000,0.000022,0.255486,-0.000033,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000002,0.000001,0.000068,0.000000,0.000000,0.000021,0.255453,-0.000033,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000001,0.000068,0.000000,0.000000,0.000019,0.255422,-0.000032,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000002,0.000000,0.000069,0.000000,0.000000,0.000018,0.255390,-0.000031,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000069,0.000000,0.000000,0.000017,0.255360,-0.000031,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000001,0.000000,0.000070,0.000000,0.000000,0.000017,0.255330,-0.000030,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000001,0.000000,0.000070,0.000000,0.000000,0.000016,0.255300,-0.000029,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000001,0.000000,0.000071,0.000000,0.000000,0.000015,0.255271,-0.000029,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000001,0.000000,0.000071,0.000000,0.000000,0.000014,0.255243,-0.000028,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000001,0.000000,0.000071,0.000120,0.000120,0.000013,0.255098,-0.000145,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000372,0.000372,0.000013,0.254710,-0.000387,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000001,0.000000,0.000072,0.000522,0.000522,0.000012,0.254182,-0.000528,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000634,0.000634,0.000011,0.253548,-0.000634,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000001,0.000000,0.000073,0.000721,0.000720,0.000010,0.252829,-0.000720,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000680,0.000674,0.000009,0.252154,-0.000674,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000001,0.000000,0.000074,0.000609,0.000600,0.000009,0.251554,-0.000600,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000542,0.000532,0.000008,0.251022,-0.000532,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000001,0.000000,0.000075,0.000443,0.000433,0.000007,0.250589,-0.000433,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000075,0.000334,0.000325,0.000007,0.250264,-0.000325,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000001,0.000000,0.000076,0.000199,0.000193,0.000006,0.250071,-0.000193,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000076,0.000047,0.000046,0.000006,0.250025,-0.000046,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000000,0.000000,0.000077,0.000000,0.000000,0.000005,0.250025,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000077,0.000000,0.000000,0.000005,0.250025,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000000,0.000000,0.000078,0.000000,0.000000,0.000005,0.250025,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000078,0.000000,0.000000,0.000004,0.250025,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000000,0.000000,0.000079,0.000000,0.000000,0.000004,0.250025,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000004,0.250025,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000079,0.000000,0.000000,0.000079,0.000000,0.000000,0.000003,0.250026,0.000001,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000003,0.250028,0.000002,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000080,0.000000,0.000000,0.000003,0.250030,0.000002,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000080,0.000000,0.000000,0.000081,0.000000,0.000000,0.000003,0.250031,0.000002,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000081,0.000000,0.000000,0.000002,0.250032,0.000001,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000000,0.000000,0.000082,0.000000,0.000000,0.000002,0.250032,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000116,0.000113,0.000002,0.249919,-0.000113,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000000,0.000000,0.000082,0.000362,0.000350,0.000002,0.249569,-0.000350,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000525,0.000508,0.000002,0.249061,-0.000508,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000083,0.000633,0.000609,0.000002,0.248452,-0.000609,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000000,0.000000,0.000084,0.000673,0.000645,0.000001,0.247808,-0.000645,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000631,0.000601,0.000001,0.247207,-0.000601,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000000,0.000000,0.000084,0.000574,0.000544,0.000001,0.246663,-0.000544,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000532,0.000502,0.000001,0.246160,-0.000502,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000000,0.000000,0.000085,0.000431,0.000405,0.000001,0.245755,-0.000405,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000326,0.000305,0.000001,0.245450,-0.000305,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000169,0.000158,0.000001,0.245292,-0.000158,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000000,0.000000,0.000086,0.000029,0.000027,0.000001,0.245265,-0.000027,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.245265,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000000,0.000000,0.000087,0.000000,0.000000,0.000001,0.245265,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000001,0.245265,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000001,0.245265,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000088,0.000000,0.000000,0.000088,0.000000,0.000000,0.000001,0.245266,0.000001,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000001,0.245267,0.000001,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000089,0.000000,0.000000,0.000000,0.245267,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000089,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.245268,0.000001,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.245270,0.000002,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000090,0.000000,0.000000,0.000090,0.000000,0.000000,0.000000,0.245273,0.000003,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.245275,0.000002,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000004,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000000,0.000000,0.000000,0.245279,0.000004,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000000,0.000000,0.000091,0.000098,0.000091,0.000000,0.245188,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000349,0.000325,0.000000,0.244863,-0.000325,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000515,0.000478,0.000000,0.244384,-0.000478,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000000,0.000000,0.000092,0.000629,0.000582,0.000000,0.243802,-0.000582,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000711,0.000655,0.000000,0.243147,-0.000655,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000673,0.000617,0.000000,0.242530,-0.000617,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000000,0.000000,0.000093,0.000607,0.000553,0.000000,0.241977,-0.000553,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000530,0.000481,0.000000,0.241496,-0.000481,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000438,0.000395,0.000000,0.241101,-0.000395,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000000,0.000000,0.000094,0.000329,0.000296,0.000000,0.240805,-0.000296,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000187,0.000167,0.000000,0.240637,-0.000167,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000025,0.000023,0.000000,0.240615,-0.000023,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000000,0.000000,0.000095,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000000,0.000000,0.000096,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000000,0.000000,0.000097,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000098,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000000,0.000000,0.000000,0.240615,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000103,0.000093,0.000000,0.240522,-0.000093,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620769.csv b/test/channel_loss/channel_forcing/et/cat-2620769.csv new file mode 100644 index 000000000..851a5e924 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620769.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000026,0.000000,0.000000,0.000000,0.000000,0.000817,0.000084,0.000817,0.000151,0.000151,0.009029,0.373528,-0.002962,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000751,0.000082,0.000751,0.000038,0.000038,0.008360,0.370711,-0.002818,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000692,0.000081,0.000692,0.000000,0.000000,0.007749,0.367986,-0.002725,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000639,0.000079,0.000639,0.000000,0.000000,0.007189,0.365315,-0.002671,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000591,0.000078,0.000591,0.000000,0.000000,0.006676,0.362698,-0.002618,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000547,0.000076,0.000547,0.000000,0.000000,0.006205,0.360132,-0.002566,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000507,0.000075,0.000507,0.000000,0.000000,0.005773,0.357617,-0.002515,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000470,0.000073,0.000470,0.000000,0.000000,0.005377,0.355152,-0.002465,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000437,0.000072,0.000437,0.000000,0.000000,0.005012,0.352736,-0.002416,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000406,0.000070,0.000407,0.000000,0.000000,0.004676,0.350368,-0.002368,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000378,0.000069,0.000379,0.000000,0.000000,0.004367,0.348047,-0.002321,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000353,0.000068,0.000354,0.000000,0.000000,0.004081,0.345772,-0.002275,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000329,0.000066,0.000331,0.000000,0.000000,0.003819,0.343542,-0.002230,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000307,0.000065,0.000309,0.000000,0.000000,0.003576,0.341356,-0.002186,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000288,0.000063,0.000290,0.000125,0.000125,0.003352,0.339091,-0.002265,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000269,0.000062,0.000272,0.000369,0.000369,0.003145,0.336632,-0.002459,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000252,0.000060,0.000255,0.000528,0.000528,0.002953,0.334066,-0.002566,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000237,0.000059,0.000240,0.000634,0.000634,0.002775,0.331446,-0.002619,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000222,0.000057,0.000226,0.000516,0.000516,0.002610,0.328995,-0.002452,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000751,0.000004,0.000008,0.000004,0.000004,0.000209,0.000056,0.000217,0.000475,0.000475,0.002457,0.327361,-0.001634,1.000000,0.000003 +20,2022-08-01 20:00:00,0.000832,0.000011,0.000017,0.000011,0.000004,0.000197,0.000056,0.000212,0.000416,0.000416,0.002316,0.325886,-0.001474,1.000000,0.000009 +21,2022-08-01 21:00:00,0.000938,0.000026,0.000036,0.000026,0.000004,0.000186,0.000055,0.000216,0.000331,0.000331,0.002185,0.324611,-0.001276,1.000000,0.000020 +22,2022-08-01 22:00:00,0.000777,0.000026,0.000024,0.000026,0.000005,0.000175,0.000054,0.000206,0.000282,0.000282,0.002064,0.323262,-0.001349,1.000000,0.000018 +23,2022-08-01 23:00:00,0.000774,0.000030,0.000031,0.000030,0.000005,0.000165,0.000053,0.000201,0.000209,0.000209,0.001952,0.322002,-0.001260,1.000000,0.000019 +24,2022-08-02 00:00:00,0.000765,0.000034,0.000038,0.000034,0.000006,0.000156,0.000053,0.000196,0.000137,0.000137,0.001848,0.320821,-0.001180,1.000000,0.000023 +25,2022-08-02 01:00:00,0.001320,0.000095,0.000145,0.000095,0.000006,0.000148,0.000052,0.000250,0.000056,0.000056,0.001752,0.320183,-0.000639,1.000000,0.000073 +26,2022-08-02 02:00:00,0.001605,0.000168,0.000226,0.000168,0.000007,0.000141,0.000052,0.000315,0.000000,0.000000,0.001664,0.319812,-0.000371,1.000000,0.000131 +27,2022-08-02 03:00:00,0.001541,0.000201,0.000210,0.000201,0.000007,0.000134,0.000052,0.000341,0.000000,0.000000,0.001582,0.319401,-0.000410,1.000000,0.000140 +28,2022-08-02 04:00:00,0.001597,0.000221,0.000224,0.000221,0.000008,0.000127,0.000051,0.000355,0.000000,0.000000,0.001506,0.319041,-0.000361,1.000000,0.000143 +29,2022-08-02 05:00:00,0.001497,0.000207,0.000198,0.000207,0.000008,0.000121,0.000051,0.000336,0.000000,0.000000,0.001436,0.318614,-0.000427,1.000000,0.000134 +30,2022-08-02 06:00:00,0.001443,0.000196,0.000185,0.000196,0.000008,0.000116,0.000051,0.000320,0.000000,0.000000,0.001372,0.318155,-0.000458,1.000000,0.000123 +31,2022-08-02 07:00:00,0.000000,0.000086,0.000000,0.000086,0.000009,0.000110,0.000050,0.000205,0.000000,0.000000,0.001311,0.316473,-0.001682,1.000000,0.000037 +32,2022-08-02 08:00:00,0.000000,0.000037,0.000000,0.000037,0.000010,0.000106,0.000049,0.000152,0.000000,0.000000,0.001254,0.314824,-0.001649,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000101,0.000048,0.000111,0.000000,0.000000,0.001201,0.313208,-0.001616,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000097,0.000047,0.000107,0.000000,0.000000,0.001151,0.311624,-0.001584,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000093,0.000046,0.000104,0.000000,0.000000,0.001105,0.310071,-0.001553,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000089,0.000045,0.000101,0.000000,0.000000,0.001061,0.308549,-0.001522,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000268,0.000004,0.000007,0.000004,0.000012,0.000086,0.000044,0.000102,0.000000,0.000000,0.001019,0.307312,-0.001236,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000268,0.000003,0.000002,0.000003,0.000013,0.000082,0.000044,0.000098,0.000117,0.000117,0.000981,0.305991,-0.001321,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000242,0.000002,0.000000,0.000002,0.000014,0.000079,0.000043,0.000095,0.000310,0.000310,0.000944,0.304483,-0.001508,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000251,0.000000,0.000000,0.000000,0.000014,0.000076,0.000042,0.000091,0.000445,0.000445,0.000910,0.302882,-0.001601,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000275,0.000000,0.000000,0.000000,0.000015,0.000074,0.000041,0.000088,0.000539,0.000539,0.000877,0.301243,-0.001639,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000486,0.000000,0.000000,0.000000,0.000015,0.000071,0.000040,0.000086,0.000591,0.000591,0.000846,0.299793,-0.001450,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000107,0.000000,0.000000,0.000000,0.000016,0.000068,0.000039,0.000084,0.000542,0.000542,0.000816,0.298049,-0.001744,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000058,0.000000,0.000000,0.000000,0.000017,0.000066,0.000038,0.000083,0.000480,0.000480,0.000788,0.296352,-0.001697,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000017,0.000064,0.000037,0.000081,0.000472,0.000472,0.000761,0.294693,-0.001659,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000052,0.000000,0.000000,0.000000,0.000018,0.000062,0.000036,0.000080,0.000402,0.000402,0.000735,0.293133,-0.001560,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000058,0.000000,0.000000,0.000000,0.000019,0.000060,0.000035,0.000078,0.000302,0.000302,0.000711,0.291707,-0.001426,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000064,0.000000,0.000000,0.000000,0.000019,0.000058,0.000034,0.000077,0.000171,0.000171,0.000688,0.290444,-0.001263,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000074,0.000000,0.000000,0.000000,0.000020,0.000056,0.000034,0.000076,0.000026,0.000026,0.000666,0.289358,-0.001086,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000073,0.000000,0.000001,0.000000,0.000021,0.000054,0.000033,0.000075,0.000000,0.000000,0.000645,0.288318,-0.001040,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000079,0.000000,0.000001,0.000000,0.000021,0.000052,0.000032,0.000074,0.000000,0.000000,0.000625,0.287304,-0.001013,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000109,0.000001,0.000001,0.000001,0.000022,0.000051,0.000032,0.000074,0.000000,0.000000,0.000606,0.286339,-0.000965,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000117,0.000001,0.000001,0.000001,0.000023,0.000049,0.000031,0.000073,0.000000,0.000000,0.000588,0.285401,-0.000938,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000132,0.000001,0.000002,0.000001,0.000023,0.000048,0.000031,0.000073,0.000000,0.000000,0.000571,0.284496,-0.000905,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000024,0.000046,0.000030,0.000071,0.000000,0.000000,0.000555,0.283481,-0.001015,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000045,0.000030,0.000070,0.000000,0.000000,0.000539,0.282487,-0.000995,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000044,0.000029,0.000069,0.000000,0.000000,0.000524,0.281512,-0.000975,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000043,0.000028,0.000069,0.000000,0.000000,0.000510,0.280556,-0.000956,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000041,0.000028,0.000068,0.000000,0.000000,0.000496,0.279619,-0.000937,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000040,0.000027,0.000068,0.000000,0.000000,0.000483,0.278701,-0.000918,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000039,0.000027,0.000068,0.000000,0.000000,0.000470,0.277801,-0.000900,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000038,0.000026,0.000067,0.000120,0.000120,0.000458,0.276802,-0.000999,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000037,0.000025,0.000067,0.000370,0.000370,0.000446,0.275577,-0.001225,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000036,0.000025,0.000067,0.000526,0.000526,0.000435,0.274224,-0.001353,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000035,0.000024,0.000067,0.000640,0.000640,0.000423,0.272785,-0.001438,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000034,0.000023,0.000067,0.000616,0.000616,0.000411,0.271399,-0.001387,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000033,0.000022,0.000066,0.000558,0.000558,0.000400,0.270097,-0.001302,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000876,0.000007,0.000013,0.000007,0.000034,0.000033,0.000022,0.000073,0.000493,0.000493,0.000389,0.269730,-0.000367,1.000000,0.000006 +69,2022-08-03 21:00:00,0.000133,0.000003,0.000000,0.000003,0.000034,0.000032,0.000021,0.000069,0.000442,0.000442,0.000379,0.268705,-0.001025,1.000000,0.000003 +70,2022-08-03 22:00:00,0.000000,0.000003,0.000000,0.000003,0.000035,0.000031,0.000021,0.000069,0.000371,0.000371,0.000369,0.267640,-0.001065,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000030,0.000020,0.000066,0.000279,0.000279,0.000359,0.266685,-0.000954,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000029,0.000020,0.000066,0.000184,0.000184,0.000349,0.265844,-0.000842,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000028,0.000019,0.000066,0.000037,0.000037,0.000340,0.265162,-0.000682,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000028,0.000019,0.000066,0.000000,0.000000,0.000331,0.264531,-0.000631,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000027,0.000018,0.000066,0.000000,0.000000,0.000322,0.263912,-0.000619,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000026,0.000018,0.000066,0.000000,0.000000,0.000314,0.263305,-0.000607,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000026,0.000018,0.000066,0.000000,0.000000,0.000306,0.262711,-0.000595,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000025,0.000017,0.000066,0.000000,0.000000,0.000299,0.262128,-0.000583,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000024,0.000017,0.000066,0.000000,0.000000,0.000291,0.261557,-0.000571,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000024,0.000017,0.000066,0.000000,0.000000,0.000284,0.260997,-0.000560,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000023,0.000016,0.000067,0.000000,0.000000,0.000277,0.260448,-0.000549,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000023,0.000016,0.000067,0.000000,0.000000,0.000271,0.259910,-0.000538,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000022,0.000016,0.000067,0.000000,0.000000,0.000264,0.259383,-0.000527,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000022,0.000015,0.000067,0.000000,0.000000,0.000258,0.258866,-0.000517,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000021,0.000015,0.000068,0.000000,0.000000,0.000252,0.258360,-0.000507,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000021,0.000015,0.000068,0.000116,0.000116,0.000246,0.257750,-0.000610,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000020,0.000014,0.000068,0.000365,0.000365,0.000240,0.256908,-0.000842,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000020,0.000014,0.000068,0.000528,0.000528,0.000234,0.255923,-0.000985,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000019,0.000013,0.000069,0.000641,0.000641,0.000228,0.254846,-0.001077,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000019,0.000012,0.000069,0.000719,0.000719,0.000222,0.253715,-0.001131,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000018,0.000012,0.000069,0.000658,0.000658,0.000216,0.252665,-0.001049,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000017,0.000011,0.000069,0.000581,0.000581,0.000209,0.251712,-0.000953,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000017,0.000011,0.000070,0.000507,0.000507,0.000203,0.250851,-0.000861,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000016,0.000010,0.000070,0.000428,0.000428,0.000197,0.250084,-0.000767,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000016,0.000010,0.000070,0.000323,0.000323,0.000190,0.249435,-0.000649,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000015,0.000009,0.000070,0.000190,0.000190,0.000184,0.248929,-0.000506,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000015,0.000009,0.000071,0.000042,0.000042,0.000179,0.248579,-0.000350,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000014,0.000009,0.000071,0.000000,0.000000,0.000173,0.248276,-0.000303,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000014,0.000009,0.000071,0.000000,0.000000,0.000168,0.247980,-0.000297,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000014,0.000009,0.000071,0.000000,0.000000,0.000163,0.247689,-0.000291,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000158,0.247404,-0.000285,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000013,0.000008,0.000072,0.000000,0.000000,0.000154,0.247125,-0.000279,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000012,0.000008,0.000072,0.000000,0.000000,0.000149,0.246851,-0.000274,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000012,0.000008,0.000073,0.000000,0.000000,0.000145,0.246583,-0.000268,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000012,0.000008,0.000073,0.000000,0.000000,0.000141,0.246320,-0.000263,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000011,0.000008,0.000074,0.000000,0.000000,0.000137,0.246063,-0.000258,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000011,0.000007,0.000074,0.000000,0.000000,0.000134,0.245810,-0.000253,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000011,0.000007,0.000075,0.000000,0.000000,0.000130,0.245562,-0.000248,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000011,0.000007,0.000075,0.000000,0.000000,0.000127,0.245320,-0.000243,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000010,0.000007,0.000075,0.000130,0.000130,0.000124,0.244955,-0.000365,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000010,0.000007,0.000076,0.000370,0.000370,0.000120,0.244361,-0.000594,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000010,0.000006,0.000076,0.000530,0.000530,0.000117,0.243623,-0.000738,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000009,0.000006,0.000077,0.000647,0.000647,0.000113,0.242784,-0.000839,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000009,0.000005,0.000077,0.000632,0.000632,0.000109,0.241977,-0.000807,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000009,0.000005,0.000077,0.000585,0.000585,0.000105,0.241232,-0.000745,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000008,0.000004,0.000078,0.000514,0.000514,0.000101,0.240571,-0.000661,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000008,0.000004,0.000078,0.000485,0.000485,0.000097,0.239952,-0.000619,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000008,0.000004,0.000078,0.000398,0.000398,0.000093,0.239431,-0.000521,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000028,0.000000,0.000000,0.000000,0.000071,0.000007,0.000003,0.000079,0.000300,0.000300,0.000089,0.239043,-0.000388,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000007,0.000003,0.000079,0.000184,0.000184,0.000085,0.238750,-0.000293,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000111,0.000000,0.000000,0.000000,0.000073,0.000007,0.000003,0.000080,0.000051,0.000051,0.000081,0.238701,-0.000049,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000243,0.000003,0.000005,0.000003,0.000073,0.000007,0.000003,0.000083,0.000000,0.000000,0.000078,0.238827,0.000127,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000087,0.000002,0.000001,0.000002,0.000074,0.000006,0.000003,0.000082,0.000000,0.000000,0.000075,0.238803,-0.000025,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000042,0.000001,0.000000,0.000001,0.000075,0.000006,0.000003,0.000082,0.000000,0.000000,0.000072,0.238735,-0.000068,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000053,0.000000,0.000000,0.000000,0.000075,0.000006,0.000003,0.000082,0.000000,0.000000,0.000070,0.238679,-0.000056,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000074,0.000000,0.000000,0.000000,0.000076,0.000006,0.000003,0.000082,0.000000,0.000000,0.000067,0.238645,-0.000034,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000003,0.000082,0.000000,0.000000,0.000065,0.238540,-0.000106,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000005,0.000003,0.000083,0.000000,0.000000,0.000063,0.238436,-0.000103,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000005,0.000003,0.000083,0.000000,0.000000,0.000061,0.238335,-0.000101,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000005,0.000003,0.000084,0.000000,0.000000,0.000059,0.238236,-0.000099,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000005,0.000003,0.000084,0.000000,0.000000,0.000057,0.238138,-0.000097,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000005,0.000003,0.000085,0.000000,0.000000,0.000055,0.238043,-0.000095,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000003,0.000085,0.000000,0.000000,0.000054,0.237949,-0.000094,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000004,0.000003,0.000086,0.000112,0.000112,0.000052,0.237748,-0.000201,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000002,0.000086,0.000354,0.000354,0.000050,0.237313,-0.000435,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000004,0.000002,0.000086,0.000512,0.000512,0.000048,0.236731,-0.000581,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000004,0.000002,0.000087,0.000626,0.000626,0.000046,0.236050,-0.000681,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000004,0.000001,0.000087,0.000698,0.000698,0.000044,0.235312,-0.000738,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000003,0.000001,0.000088,0.000652,0.000652,0.000041,0.234634,-0.000678,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000003,0.000000,0.000088,0.000573,0.000573,0.000038,0.234046,-0.000588,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000003,0.000000,0.000088,0.000504,0.000504,0.000035,0.233537,-0.000508,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000003,0.000000,0.000089,0.000424,0.000424,0.000033,0.233113,-0.000424,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000003,0.000000,0.000089,0.000315,0.000314,0.000030,0.232799,-0.000314,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000002,0.000000,0.000090,0.000181,0.000181,0.000028,0.232618,-0.000181,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000035,0.000035,0.000026,0.232583,-0.000035,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000002,0.000000,0.000090,0.000000,0.000000,0.000024,0.232583,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000002,0.000000,0.000091,0.000000,0.000000,0.000022,0.232583,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000091,0.000000,0.000000,0.000020,0.232583,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000002,0.000000,0.000092,0.000000,0.000000,0.000019,0.232583,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000092,0.000000,0.000000,0.000017,0.232583,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000001,0.000000,0.000093,0.000000,0.000000,0.000016,0.232583,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000093,0.000000,0.000000,0.000015,0.232583,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000001,0.000000,0.000094,0.000000,0.000000,0.000014,0.232583,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000000,0.000000,0.000013,0.232583,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000001,0.000000,0.000094,0.000000,0.000000,0.000012,0.232583,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000001,0.000000,0.000095,0.000000,0.000000,0.000011,0.232583,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000095,0.000000,0.000000,0.000010,0.232583,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000107,0.000106,0.000009,0.232477,-0.000106,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000096,0.000349,0.000347,0.000008,0.232130,-0.000347,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000510,0.000506,0.000008,0.231625,-0.000506,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000097,0.000625,0.000617,0.000007,0.231008,-0.000617,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000652,0.000641,0.000007,0.230367,-0.000641,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000098,0.000605,0.000591,0.000006,0.229777,-0.000591,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000000,0.000000,0.000099,0.000541,0.000526,0.000006,0.229251,-0.000526,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000099,0.000493,0.000477,0.000005,0.228774,-0.000477,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000000,0.000000,0.000100,0.000408,0.000393,0.000005,0.228380,-0.000393,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000100,0.000304,0.000292,0.000004,0.228088,-0.000292,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000000,0.000000,0.000101,0.000147,0.000141,0.000004,0.227947,-0.000141,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000016,0.000016,0.000004,0.227932,-0.000016,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000101,0.000000,0.000000,0.000003,0.227932,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000003,0.227932,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000003,0.227932,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000003,0.227932,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000003,0.227932,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000002,0.227932,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000001,0.227932,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000092,0.000088,0.000001,0.227844,-0.000088,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000339,0.000324,0.000001,0.227520,-0.000324,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000501,0.000478,0.000001,0.227041,-0.000478,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000617,0.000587,0.000001,0.226455,-0.000587,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000677,0.000641,0.000001,0.225814,-0.000641,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000634,0.000597,0.000001,0.225217,-0.000597,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000546,0.000512,0.000001,0.224706,-0.000512,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000490,0.000457,0.000001,0.224249,-0.000457,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000411,0.000382,0.000001,0.223867,-0.000382,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000306,0.000283,0.000001,0.223584,-0.000283,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000164,0.000152,0.000001,0.223432,-0.000152,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000014,0.000013,0.000001,0.223419,-0.000013,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000001,0.223419,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.223419,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000099,0.000091,0.000000,0.223328,-0.000091,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620770.csv b/test/channel_loss/channel_forcing/et/cat-2620770.csv new file mode 100644 index 000000000..3f918d6eb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620770.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000000,0.000815,0.000066,0.000815,0.000152,0.000152,0.009013,0.374495,-0.003547,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000748,0.000064,0.000748,0.000039,0.000039,0.008329,0.371068,-0.003427,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000063,0.000688,0.000000,0.000000,0.007704,0.367741,-0.003328,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000634,0.000062,0.000634,0.000000,0.000000,0.007132,0.364472,-0.003268,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000061,0.000585,0.000000,0.000000,0.006609,0.361262,-0.003210,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000540,0.000060,0.000540,0.000000,0.000000,0.006129,0.358109,-0.003153,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000499,0.000059,0.000499,0.000000,0.000000,0.005689,0.355013,-0.003097,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000462,0.000058,0.000462,0.000000,0.000000,0.005286,0.351971,-0.003041,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000428,0.000057,0.000429,0.000000,0.000000,0.004915,0.348984,-0.002987,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000397,0.000056,0.000398,0.000000,0.000000,0.004573,0.346050,-0.002934,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000369,0.000055,0.000370,0.000000,0.000000,0.004260,0.343169,-0.002882,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000343,0.000054,0.000344,0.000000,0.000000,0.003971,0.340339,-0.002830,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000319,0.000053,0.000321,0.000000,0.000000,0.003705,0.337559,-0.002780,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000297,0.000052,0.000299,0.000000,0.000000,0.003460,0.334829,-0.002730,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000277,0.000051,0.000280,0.000126,0.000126,0.003233,0.332024,-0.002805,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000259,0.000050,0.000262,0.000365,0.000365,0.003024,0.329033,-0.002990,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000242,0.000049,0.000245,0.000522,0.000522,0.002831,0.325943,-0.003090,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000226,0.000048,0.000230,0.000625,0.000625,0.002653,0.322806,-0.003137,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000212,0.000047,0.000216,0.000510,0.000510,0.002488,0.319839,-0.002967,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000519,0.000000,0.000000,0.000000,0.000005,0.000199,0.000046,0.000203,0.000470,0.000470,0.002335,0.317472,-0.002367,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000528,0.000002,0.000003,0.000002,0.000005,0.000186,0.000045,0.000193,0.000409,0.000409,0.002194,0.315213,-0.002258,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000647,0.000011,0.000019,0.000011,0.000006,0.000175,0.000044,0.000192,0.000327,0.000327,0.002064,0.313176,-0.002037,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000604,0.000016,0.000019,0.000016,0.000006,0.000165,0.000044,0.000186,0.000284,0.000284,0.001943,0.311176,-0.002000,1.000000,0.000012 +23,2022-08-01 23:00:00,0.000572,0.000022,0.000024,0.000022,0.000007,0.000155,0.000043,0.000183,0.000210,0.000210,0.001831,0.309249,-0.001927,1.000000,0.000015 +24,2022-08-02 00:00:00,0.000553,0.000027,0.000031,0.000027,0.000007,0.000146,0.000042,0.000180,0.000138,0.000138,0.001727,0.307401,-0.001849,1.000000,0.000019 +25,2022-08-02 01:00:00,0.001003,0.000093,0.000147,0.000093,0.000008,0.000138,0.000042,0.000239,0.000057,0.000057,0.001631,0.305994,-0.001407,1.000000,0.000072 +26,2022-08-02 02:00:00,0.001480,0.000224,0.000329,0.000224,0.000008,0.000130,0.000042,0.000362,0.000000,0.000000,0.001543,0.304956,-0.001037,1.000000,0.000178 +27,2022-08-02 03:00:00,0.001385,0.000272,0.000292,0.000272,0.000009,0.000123,0.000041,0.000404,0.000000,0.000000,0.001461,0.303881,-0.001075,1.000000,0.000197 +28,2022-08-02 04:00:00,0.001495,0.000323,0.000334,0.000323,0.000009,0.000117,0.000041,0.000449,0.000000,0.000000,0.001385,0.302892,-0.000990,1.000000,0.000209 +29,2022-08-02 05:00:00,0.001346,0.000294,0.000277,0.000294,0.000010,0.000111,0.000040,0.000415,0.000000,0.000000,0.001315,0.301830,-0.001061,1.000000,0.000191 +30,2022-08-02 06:00:00,0.001325,0.000284,0.000268,0.000284,0.000011,0.000105,0.000040,0.000399,0.000000,0.000000,0.001250,0.300775,-0.001055,1.000000,0.000176 +31,2022-08-02 07:00:00,0.000000,0.000122,0.000000,0.000122,0.000011,0.000100,0.000039,0.000234,0.000000,0.000000,0.001189,0.298701,-0.002074,1.000000,0.000054 +32,2022-08-02 08:00:00,0.000000,0.000054,0.000000,0.000054,0.000012,0.000095,0.000039,0.000161,0.000000,0.000000,0.001132,0.296664,-0.002037,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000091,0.000038,0.000103,0.000000,0.000000,0.001080,0.294663,-0.002001,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000087,0.000037,0.000100,0.000000,0.000000,0.001030,0.292697,-0.001965,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000083,0.000037,0.000097,0.000000,0.000000,0.000984,0.290767,-0.001930,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000079,0.000036,0.000094,0.000000,0.000000,0.000941,0.288872,-0.001896,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000255,0.000006,0.000012,0.000006,0.000015,0.000076,0.000035,0.000097,0.000000,0.000000,0.000901,0.287248,-0.001623,1.000000,0.000005 +38,2022-08-02 14:00:00,0.000225,0.000004,0.000002,0.000004,0.000016,0.000072,0.000035,0.000093,0.000116,0.000116,0.000864,0.285521,-0.001728,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000205,0.000003,0.000000,0.000003,0.000017,0.000069,0.000034,0.000089,0.000306,0.000306,0.000828,0.283620,-0.001901,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000208,0.000000,0.000000,0.000000,0.000018,0.000067,0.000034,0.000085,0.000436,0.000436,0.000795,0.281628,-0.001992,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000255,0.000000,0.000000,0.000000,0.000018,0.000064,0.000033,0.000083,0.000529,0.000529,0.000764,0.279626,-0.002002,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000440,0.000000,0.000000,0.000000,0.000019,0.000062,0.000032,0.000081,0.000580,0.000580,0.000735,0.277791,-0.001834,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000020,0.000059,0.000031,0.000079,0.000533,0.000533,0.000707,0.275666,-0.002126,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000056,0.000000,0.000000,0.000000,0.000021,0.000057,0.000031,0.000078,0.000474,0.000474,0.000681,0.273629,-0.002037,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000051,0.000000,0.000000,0.000000,0.000022,0.000055,0.000030,0.000077,0.000465,0.000465,0.000656,0.271632,-0.001997,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000034,0.000000,0.000000,0.000000,0.000023,0.000053,0.000029,0.000075,0.000398,0.000398,0.000632,0.269719,-0.001912,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000023,0.000051,0.000029,0.000074,0.000297,0.000297,0.000610,0.267962,-0.001758,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000049,0.000028,0.000073,0.000170,0.000170,0.000589,0.266368,-0.001594,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000051,0.000000,0.000000,0.000000,0.000025,0.000048,0.000028,0.000073,0.000027,0.000027,0.000569,0.264930,-0.001438,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000034,0.000000,0.000000,0.000000,0.000026,0.000046,0.000027,0.000072,0.000000,0.000000,0.000550,0.263528,-0.001402,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000051,0.000000,0.000000,0.000000,0.000027,0.000045,0.000027,0.000072,0.000000,0.000000,0.000533,0.262167,-0.001361,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000051,0.000000,0.000000,0.000000,0.000028,0.000043,0.000026,0.000071,0.000000,0.000000,0.000516,0.260831,-0.001336,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000051,0.000000,0.000000,0.000000,0.000029,0.000042,0.000026,0.000071,0.000000,0.000000,0.000500,0.259518,-0.001313,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000056,0.000001,0.000001,0.000001,0.000029,0.000041,0.000025,0.000070,0.000000,0.000000,0.000485,0.258234,-0.001284,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000039,0.000025,0.000070,0.000000,0.000000,0.000471,0.256919,-0.001316,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000038,0.000025,0.000070,0.000000,0.000000,0.000457,0.255626,-0.001292,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000037,0.000024,0.000069,0.000000,0.000000,0.000444,0.254357,-0.001269,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000036,0.000024,0.000069,0.000000,0.000000,0.000432,0.253111,-0.001246,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000035,0.000023,0.000069,0.000000,0.000000,0.000420,0.251887,-0.001224,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000034,0.000023,0.000069,0.000000,0.000000,0.000408,0.250684,-0.001202,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000033,0.000022,0.000069,0.000000,0.000000,0.000398,0.249503,-0.001181,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000032,0.000022,0.000069,0.000121,0.000121,0.000387,0.248225,-0.001278,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000032,0.000021,0.000069,0.000368,0.000368,0.000377,0.246727,-0.001498,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000031,0.000021,0.000069,0.000520,0.000520,0.000368,0.245106,-0.001621,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000030,0.000020,0.000069,0.000632,0.000632,0.000358,0.243404,-0.001702,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000029,0.000020,0.000070,0.000609,0.000609,0.000349,0.241755,-0.001649,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000028,0.000019,0.000070,0.000554,0.000554,0.000339,0.240188,-0.001566,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000623,0.000002,0.000003,0.000002,0.000042,0.000028,0.000019,0.000072,0.000488,0.000488,0.000331,0.239325,-0.000864,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000149,0.000001,0.000000,0.000001,0.000043,0.000027,0.000018,0.000071,0.000440,0.000440,0.000322,0.238060,-0.001264,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000044,0.000026,0.000018,0.000071,0.000373,0.000373,0.000314,0.236738,-0.001322,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000026,0.000018,0.000071,0.000281,0.000281,0.000306,0.235530,-0.001208,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000025,0.000017,0.000071,0.000183,0.000183,0.000299,0.234440,-0.001090,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000024,0.000017,0.000072,0.000039,0.000039,0.000291,0.233510,-0.000930,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000024,0.000017,0.000072,0.000000,0.000000,0.000284,0.232635,-0.000875,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000023,0.000016,0.000072,0.000000,0.000000,0.000277,0.231776,-0.000859,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000023,0.000016,0.000073,0.000000,0.000000,0.000271,0.230933,-0.000844,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000022,0.000016,0.000073,0.000000,0.000000,0.000264,0.230104,-0.000829,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000022,0.000015,0.000074,0.000000,0.000000,0.000258,0.229290,-0.000814,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000021,0.000015,0.000074,0.000000,0.000000,0.000252,0.228491,-0.000799,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000021,0.000015,0.000075,0.000000,0.000000,0.000247,0.227705,-0.000785,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000020,0.000015,0.000075,0.000000,0.000000,0.000241,0.226934,-0.000771,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000020,0.000014,0.000076,0.000000,0.000000,0.000236,0.226177,-0.000757,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000019,0.000014,0.000076,0.000000,0.000000,0.000231,0.225433,-0.000744,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000019,0.000014,0.000077,0.000000,0.000000,0.000226,0.224702,-0.000731,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000018,0.000014,0.000077,0.000000,0.000000,0.000221,0.223985,-0.000718,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000018,0.000013,0.000078,0.000118,0.000118,0.000216,0.223164,-0.000821,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000018,0.000013,0.000079,0.000363,0.000363,0.000212,0.222117,-0.001047,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000017,0.000013,0.000079,0.000522,0.000522,0.000207,0.220933,-0.001184,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000017,0.000012,0.000080,0.000633,0.000633,0.000202,0.219661,-0.001272,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000016,0.000012,0.000080,0.000708,0.000708,0.000198,0.218337,-0.001323,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000016,0.000011,0.000081,0.000649,0.000649,0.000193,0.217096,-0.001242,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000016,0.000011,0.000081,0.000569,0.000569,0.000188,0.215955,-0.001141,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000015,0.000010,0.000082,0.000498,0.000498,0.000183,0.214903,-0.001051,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000015,0.000010,0.000083,0.000426,0.000426,0.000178,0.213942,-0.000961,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000014,0.000010,0.000083,0.000321,0.000321,0.000174,0.213101,-0.000841,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000014,0.000010,0.000084,0.000189,0.000189,0.000169,0.212405,-0.000696,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000014,0.000009,0.000084,0.000044,0.000044,0.000165,0.211864,-0.000541,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000013,0.000009,0.000085,0.000000,0.000000,0.000161,0.211375,-0.000489,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000013,0.000009,0.000086,0.000000,0.000000,0.000157,0.210895,-0.000480,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000013,0.000009,0.000086,0.000000,0.000000,0.000153,0.210424,-0.000471,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000012,0.000009,0.000087,0.000000,0.000000,0.000149,0.209961,-0.000463,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000012,0.000009,0.000088,0.000000,0.000000,0.000146,0.209506,-0.000455,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000012,0.000008,0.000088,0.000000,0.000000,0.000143,0.209060,-0.000447,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000012,0.000008,0.000089,0.000000,0.000000,0.000139,0.208621,-0.000439,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000011,0.000008,0.000090,0.000000,0.000000,0.000136,0.208190,-0.000431,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000011,0.000008,0.000090,0.000000,0.000000,0.000133,0.207767,-0.000423,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000011,0.000008,0.000091,0.000000,0.000000,0.000130,0.207351,-0.000416,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000011,0.000008,0.000092,0.000000,0.000000,0.000127,0.206943,-0.000408,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000010,0.000008,0.000092,0.000000,0.000000,0.000125,0.206542,-0.000401,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000010,0.000007,0.000093,0.000130,0.000130,0.000122,0.206020,-0.000522,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000010,0.000007,0.000094,0.000367,0.000367,0.000119,0.205275,-0.000745,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000010,0.000007,0.000095,0.000523,0.000523,0.000116,0.204390,-0.000885,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000009,0.000007,0.000095,0.000639,0.000639,0.000113,0.203407,-0.000983,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000009,0.000006,0.000096,0.000619,0.000619,0.000110,0.202461,-0.000946,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000009,0.000006,0.000097,0.000573,0.000573,0.000107,0.201578,-0.000884,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000009,0.000006,0.000097,0.000501,0.000501,0.000104,0.200780,-0.000798,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000008,0.000005,0.000098,0.000470,0.000470,0.000101,0.200027,-0.000753,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000008,0.000005,0.000099,0.000390,0.000390,0.000098,0.199366,-0.000661,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000055,0.000000,0.000000,0.000000,0.000091,0.000008,0.000005,0.000099,0.000294,0.000294,0.000095,0.198865,-0.000501,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000008,0.000005,0.000100,0.000180,0.000180,0.000092,0.198432,-0.000434,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000162,0.000001,0.000002,0.000001,0.000093,0.000007,0.000005,0.000102,0.000051,0.000051,0.000090,0.198290,-0.000142,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000298,0.000008,0.000013,0.000008,0.000094,0.000007,0.000005,0.000109,0.000000,0.000000,0.000087,0.198323,0.000033,1.000000,0.000006 +123,2022-08-06 03:00:00,0.000136,0.000005,0.000003,0.000005,0.000095,0.000007,0.000005,0.000107,0.000000,0.000000,0.000085,0.198207,-0.000116,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000105,0.000004,0.000002,0.000004,0.000096,0.000007,0.000005,0.000107,0.000000,0.000000,0.000083,0.198063,-0.000144,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000124,0.000002,0.000002,0.000002,0.000097,0.000007,0.000005,0.000106,0.000000,0.000000,0.000081,0.197940,-0.000123,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000152,0.000003,0.000004,0.000003,0.000098,0.000007,0.000005,0.000107,0.000000,0.000000,0.000079,0.197846,-0.000095,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000098,0.000006,0.000005,0.000106,0.000000,0.000000,0.000077,0.197607,-0.000239,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000099,0.000006,0.000004,0.000106,0.000000,0.000000,0.000075,0.197373,-0.000234,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000006,0.000004,0.000106,0.000000,0.000000,0.000073,0.197142,-0.000230,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000006,0.000004,0.000107,0.000000,0.000000,0.000072,0.196916,-0.000226,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000006,0.000004,0.000108,0.000000,0.000000,0.000070,0.196694,-0.000222,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000006,0.000004,0.000108,0.000000,0.000000,0.000068,0.196476,-0.000218,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000006,0.000004,0.000109,0.000000,0.000000,0.000067,0.196262,-0.000214,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000005,0.000004,0.000110,0.000113,0.000113,0.000065,0.195940,-0.000321,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000005,0.000004,0.000111,0.000352,0.000352,0.000064,0.195390,-0.000550,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000005,0.000004,0.000111,0.000506,0.000506,0.000062,0.194698,-0.000692,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000005,0.000003,0.000112,0.000617,0.000617,0.000060,0.193909,-0.000789,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000005,0.000003,0.000113,0.000685,0.000685,0.000059,0.193067,-0.000842,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000005,0.000003,0.000113,0.000642,0.000642,0.000057,0.192283,-0.000784,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000005,0.000002,0.000114,0.000563,0.000563,0.000054,0.191591,-0.000692,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000004,0.000002,0.000115,0.000494,0.000494,0.000052,0.190979,-0.000613,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000004,0.000002,0.000115,0.000421,0.000421,0.000050,0.190449,-0.000529,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000004,0.000002,0.000116,0.000311,0.000311,0.000048,0.190037,-0.000412,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000004,0.000002,0.000117,0.000181,0.000181,0.000046,0.189760,-0.000277,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000004,0.000002,0.000117,0.000037,0.000037,0.000044,0.189629,-0.000131,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000004,0.000002,0.000118,0.000000,0.000000,0.000042,0.189537,-0.000092,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000003,0.000002,0.000118,0.000000,0.000000,0.000041,0.189446,-0.000091,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000003,0.000002,0.000119,0.000000,0.000000,0.000039,0.189357,-0.000089,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000003,0.000002,0.000120,0.000000,0.000000,0.000038,0.189270,-0.000087,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000003,0.000002,0.000120,0.000000,0.000000,0.000036,0.189184,-0.000086,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000003,0.000002,0.000121,0.000000,0.000000,0.000035,0.189100,-0.000084,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000003,0.000002,0.000122,0.000000,0.000000,0.000034,0.189017,-0.000083,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000003,0.000002,0.000122,0.000000,0.000000,0.000033,0.188936,-0.000081,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000003,0.000002,0.000123,0.000000,0.000000,0.000031,0.188856,-0.000080,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000003,0.000001,0.000124,0.000000,0.000000,0.000030,0.188778,-0.000078,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000002,0.000001,0.000124,0.000000,0.000000,0.000029,0.188701,-0.000077,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000002,0.000001,0.000125,0.000000,0.000000,0.000029,0.188625,-0.000076,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000002,0.000001,0.000126,0.000108,0.000108,0.000028,0.188445,-0.000180,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000002,0.000001,0.000126,0.000348,0.000348,0.000027,0.188033,-0.000412,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000002,0.000001,0.000127,0.000503,0.000503,0.000026,0.187475,-0.000558,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000002,0.000001,0.000128,0.000617,0.000617,0.000024,0.186816,-0.000659,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000002,0.000001,0.000128,0.000645,0.000645,0.000023,0.186140,-0.000676,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000002,0.000000,0.000129,0.000597,0.000597,0.000022,0.185524,-0.000617,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000002,0.000000,0.000129,0.000532,0.000532,0.000020,0.184982,-0.000541,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000002,0.000000,0.000130,0.000487,0.000487,0.000019,0.184495,-0.000487,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000001,0.000000,0.000131,0.000409,0.000409,0.000017,0.184087,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000001,0.000000,0.000131,0.000303,0.000302,0.000016,0.183785,-0.000302,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000001,0.000000,0.000132,0.000147,0.000146,0.000015,0.183639,-0.000146,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000001,0.000000,0.000132,0.000017,0.000017,0.000013,0.183622,-0.000017,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000001,0.000000,0.000133,0.000000,0.000000,0.000012,0.183622,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000001,0.000000,0.000133,0.000000,0.000000,0.000011,0.183622,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000001,0.000000,0.000134,0.000000,0.000000,0.000011,0.183622,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000001,0.000000,0.000135,0.000000,0.000000,0.000010,0.183622,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000001,0.000000,0.000135,0.000000,0.000000,0.000009,0.183622,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000001,0.000000,0.000136,0.000000,0.000000,0.000008,0.183622,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000001,0.000000,0.000136,0.000000,0.000000,0.000008,0.183622,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000001,0.000000,0.000137,0.000000,0.000000,0.000007,0.183622,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000001,0.000000,0.000138,0.000000,0.000000,0.000007,0.183622,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000001,0.000000,0.000138,0.000000,0.000000,0.000006,0.183622,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000000,0.000000,0.000139,0.000000,0.000000,0.000006,0.183622,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000000,0.000000,0.000139,0.000000,0.000000,0.000005,0.183622,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000000,0.000000,0.000140,0.000093,0.000092,0.000005,0.183531,-0.000092,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000000,0.000000,0.000140,0.000336,0.000333,0.000004,0.183198,-0.000333,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000000,0.000000,0.000141,0.000495,0.000488,0.000004,0.182709,-0.000488,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000000,0.000000,0.000142,0.000609,0.000597,0.000004,0.182112,-0.000597,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000000,0.000000,0.000142,0.000669,0.000651,0.000003,0.181461,-0.000651,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000000,0.000000,0.000143,0.000624,0.000603,0.000003,0.180858,-0.000603,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000000,0.000000,0.000143,0.000535,0.000514,0.000003,0.180344,-0.000514,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000000,0.000000,0.000144,0.000482,0.000460,0.000003,0.179884,-0.000460,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000000,0.000000,0.000144,0.000411,0.000390,0.000003,0.179494,-0.000390,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000000,0.000000,0.000145,0.000304,0.000287,0.000002,0.179207,-0.000287,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000000,0.000000,0.000146,0.000165,0.000155,0.000002,0.179051,-0.000155,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000000,0.000000,0.000146,0.000017,0.000016,0.000002,0.179036,-0.000016,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000000,0.000000,0.000147,0.000000,0.000000,0.000002,0.179036,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000000,0.000000,0.000147,0.000000,0.000000,0.000002,0.179036,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000000,0.000000,0.000148,0.000000,0.000000,0.000002,0.179036,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000000,0.000000,0.000148,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000000,0.000000,0.000149,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000000,0.000000,0.000149,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000000,0.000000,0.000150,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000000,0.000000,0.000150,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000000,0.000000,0.000151,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000000,0.000000,0.000151,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000000,0.000000,0.000152,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000000,0.000000,0.000152,0.000000,0.000000,0.000001,0.179036,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000000,0.000000,0.000153,0.000101,0.000095,0.000001,0.178941,-0.000095,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620771.csv b/test/channel_loss/channel_forcing/et/cat-2620771.csv new file mode 100644 index 000000000..86e850497 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620771.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001435,0.000089,0.001435,0.000155,0.000155,0.008422,0.374620,-0.003257,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001217,0.000087,0.001217,0.000040,0.000040,0.007292,0.371475,-0.003145,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001039,0.000085,0.001039,0.000000,0.000000,0.006338,0.368429,-0.003046,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000893,0.000084,0.000893,0.000000,0.000000,0.005529,0.365440,-0.002989,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000772,0.000082,0.000772,0.000000,0.000000,0.004839,0.362508,-0.002932,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000671,0.000081,0.000671,0.000000,0.000000,0.004249,0.359631,-0.002877,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000586,0.000079,0.000586,0.000000,0.000000,0.003742,0.356809,-0.002823,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000514,0.000078,0.000514,0.000000,0.000000,0.003306,0.354039,-0.002770,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000452,0.000076,0.000453,0.000000,0.000000,0.002931,0.351322,-0.002717,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000400,0.000075,0.000401,0.000000,0.000000,0.002606,0.348656,-0.002666,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000355,0.000073,0.000356,0.000000,0.000000,0.002324,0.346040,-0.002616,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000316,0.000072,0.000318,0.000000,0.000000,0.002080,0.343473,-0.002567,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000283,0.000071,0.000285,0.000000,0.000000,0.001868,0.340955,-0.002518,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000254,0.000069,0.000256,0.000000,0.000000,0.001683,0.338484,-0.002471,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000229,0.000068,0.000231,0.000128,0.000128,0.001522,0.335934,-0.002550,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000207,0.000066,0.000210,0.000372,0.000372,0.001381,0.333193,-0.002741,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000188,0.000065,0.000191,0.000527,0.000527,0.001257,0.330352,-0.002841,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000172,0.000063,0.000175,0.000628,0.000628,0.001149,0.327465,-0.002887,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000157,0.000062,0.000161,0.000514,0.000514,0.001053,0.324744,-0.002721,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000451,0.000000,0.000000,0.000000,0.000004,0.000145,0.000061,0.000149,0.000475,0.000475,0.000969,0.322555,-0.002189,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000478,0.000000,0.000001,0.000000,0.000005,0.000133,0.000060,0.000138,0.000413,0.000413,0.000896,0.320495,-0.002060,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000542,0.000003,0.000006,0.000003,0.000005,0.000124,0.000059,0.000132,0.000332,0.000332,0.000831,0.318610,-0.001885,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000494,0.000004,0.000005,0.000004,0.000005,0.000115,0.000058,0.000125,0.000292,0.000292,0.000773,0.316754,-0.001856,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000451,0.000006,0.000007,0.000006,0.000006,0.000107,0.000057,0.000120,0.000217,0.000217,0.000723,0.314962,-0.001792,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000478,0.000011,0.000014,0.000011,0.000006,0.000101,0.000056,0.000118,0.000143,0.000143,0.000678,0.313296,-0.001665,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000896,0.000050,0.000082,0.000050,0.000007,0.000095,0.000055,0.000152,0.000060,0.000060,0.000638,0.312086,-0.001210,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001351,0.000135,0.000203,0.000135,0.000007,0.000089,0.000055,0.000232,0.000000,0.000000,0.000603,0.311287,-0.000800,1.000000,0.000108 +27,2022-08-02 03:00:00,0.001309,0.000172,0.000191,0.000172,0.000008,0.000085,0.000054,0.000265,0.000000,0.000000,0.000573,0.310472,-0.000815,1.000000,0.000126 +28,2022-08-02 04:00:00,0.001409,0.000208,0.000218,0.000208,0.000008,0.000081,0.000054,0.000298,0.000000,0.000000,0.000546,0.309745,-0.000728,1.000000,0.000136 +29,2022-08-02 05:00:00,0.001196,0.000181,0.000161,0.000181,0.000009,0.000077,0.000053,0.000267,0.000000,0.000000,0.000522,0.308878,-0.000867,1.000000,0.000116 +30,2022-08-02 06:00:00,0.001257,0.000181,0.000176,0.000181,0.000010,0.000074,0.000053,0.000264,0.000000,0.000000,0.000501,0.308072,-0.000806,1.000000,0.000111 +31,2022-08-02 07:00:00,0.000000,0.000076,0.000000,0.000076,0.000010,0.000071,0.000052,0.000158,0.000000,0.000000,0.000481,0.306221,-0.001851,1.000000,0.000035 +32,2022-08-02 08:00:00,0.000000,0.000035,0.000000,0.000035,0.000011,0.000069,0.000051,0.000115,0.000000,0.000000,0.000464,0.304405,-0.001816,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000066,0.000050,0.000078,0.000000,0.000000,0.000448,0.302623,-0.001782,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000064,0.000049,0.000076,0.000000,0.000000,0.000433,0.300875,-0.001748,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000062,0.000048,0.000075,0.000000,0.000000,0.000419,0.299160,-0.001715,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000060,0.000047,0.000073,0.000000,0.000000,0.000406,0.297477,-0.001683,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000209,0.000003,0.000005,0.000003,0.000014,0.000058,0.000046,0.000075,0.000000,0.000000,0.000394,0.296025,-0.001451,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000217,0.000002,0.000001,0.000002,0.000015,0.000057,0.000046,0.000073,0.000118,0.000118,0.000383,0.294498,-0.001528,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000200,0.000001,0.000000,0.000001,0.000015,0.000055,0.000045,0.000072,0.000313,0.000313,0.000373,0.292792,-0.001706,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000200,0.000000,0.000000,0.000000,0.000016,0.000054,0.000044,0.000070,0.000441,0.000441,0.000363,0.290992,-0.001800,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000224,0.000000,0.000000,0.000000,0.000017,0.000052,0.000043,0.000069,0.000532,0.000532,0.000354,0.289161,-0.001831,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000481,0.000000,0.000000,0.000000,0.000017,0.000051,0.000042,0.000068,0.000584,0.000584,0.000345,0.287566,-0.001595,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000050,0.000041,0.000068,0.000537,0.000537,0.000336,0.285636,-0.001929,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000048,0.000040,0.000067,0.000475,0.000475,0.000327,0.283804,-0.001833,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000019,0.000047,0.000039,0.000067,0.000468,0.000468,0.000319,0.282008,-0.001795,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000046,0.000038,0.000066,0.000405,0.000405,0.000311,0.280252,-0.001757,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000021,0.000045,0.000037,0.000066,0.000301,0.000301,0.000304,0.278692,-0.001560,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000022,0.000044,0.000036,0.000065,0.000173,0.000173,0.000296,0.277286,-0.001405,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000022,0.000043,0.000036,0.000065,0.000029,0.000029,0.000289,0.276044,-0.001242,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000042,0.000035,0.000065,0.000000,0.000000,0.000283,0.274797,-0.001247,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000058,0.000000,0.000000,0.000000,0.000024,0.000041,0.000034,0.000065,0.000000,0.000000,0.000276,0.273630,-0.001167,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000058,0.000000,0.000000,0.000000,0.000025,0.000040,0.000034,0.000065,0.000000,0.000000,0.000270,0.272485,-0.001145,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000058,0.000000,0.000000,0.000000,0.000026,0.000039,0.000033,0.000065,0.000000,0.000000,0.000264,0.271361,-0.001123,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000038,0.000033,0.000065,0.000000,0.000000,0.000259,0.270263,-0.001098,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000037,0.000032,0.000065,0.000000,0.000000,0.000253,0.269125,-0.001138,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000037,0.000031,0.000065,0.000000,0.000000,0.000248,0.268008,-0.001117,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000036,0.000031,0.000065,0.000000,0.000000,0.000243,0.266912,-0.001096,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000035,0.000030,0.000065,0.000000,0.000000,0.000238,0.265837,-0.001075,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000034,0.000030,0.000065,0.000000,0.000000,0.000233,0.264782,-0.001055,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000034,0.000029,0.000065,0.000000,0.000000,0.000229,0.263747,-0.001035,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000033,0.000029,0.000065,0.000000,0.000000,0.000224,0.262731,-0.001016,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000032,0.000028,0.000065,0.000124,0.000124,0.000220,0.261613,-0.001118,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000032,0.000027,0.000065,0.000374,0.000374,0.000215,0.260271,-0.001342,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000031,0.000026,0.000065,0.000525,0.000525,0.000211,0.258806,-0.001465,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000030,0.000026,0.000066,0.000634,0.000634,0.000206,0.257262,-0.001544,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000030,0.000025,0.000066,0.000611,0.000611,0.000201,0.255769,-0.001493,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000029,0.000024,0.000066,0.000557,0.000557,0.000196,0.254357,-0.001412,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000667,0.000002,0.000004,0.000002,0.000038,0.000028,0.000024,0.000068,0.000490,0.000490,0.000192,0.253689,-0.000668,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000128,0.000001,0.000000,0.000001,0.000039,0.000028,0.000023,0.000067,0.000447,0.000447,0.000187,0.252549,-0.001140,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000040,0.000027,0.000022,0.000067,0.000382,0.000382,0.000183,0.251369,-0.001180,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000026,0.000022,0.000067,0.000287,0.000287,0.000178,0.250305,-0.001064,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000026,0.000021,0.000067,0.000186,0.000186,0.000174,0.249361,-0.000945,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000025,0.000021,0.000067,0.000042,0.000042,0.000170,0.248575,-0.000785,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000024,0.000020,0.000067,0.000000,0.000000,0.000166,0.247846,-0.000730,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000024,0.000020,0.000068,0.000000,0.000000,0.000162,0.247130,-0.000716,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000023,0.000020,0.000068,0.000000,0.000000,0.000158,0.246428,-0.000702,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000023,0.000019,0.000068,0.000000,0.000000,0.000155,0.245739,-0.000689,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000022,0.000019,0.000069,0.000000,0.000000,0.000152,0.245062,-0.000676,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000022,0.000019,0.000069,0.000000,0.000000,0.000148,0.244399,-0.000663,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000021,0.000018,0.000069,0.000000,0.000000,0.000145,0.243748,-0.000651,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000021,0.000018,0.000070,0.000000,0.000000,0.000142,0.243110,-0.000639,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000021,0.000018,0.000070,0.000000,0.000000,0.000139,0.242483,-0.000627,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000020,0.000017,0.000071,0.000000,0.000000,0.000137,0.241868,-0.000615,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000020,0.000017,0.000071,0.000000,0.000000,0.000134,0.241265,-0.000603,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000019,0.000017,0.000072,0.000000,0.000000,0.000131,0.240673,-0.000592,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000019,0.000016,0.000072,0.000120,0.000120,0.000128,0.239975,-0.000698,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000018,0.000016,0.000073,0.000369,0.000369,0.000126,0.239045,-0.000930,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000018,0.000015,0.000073,0.000527,0.000527,0.000123,0.237979,-0.001067,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000018,0.000015,0.000073,0.000635,0.000635,0.000120,0.236825,-0.001153,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000017,0.000014,0.000074,0.000707,0.000707,0.000116,0.235623,-0.001202,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000017,0.000013,0.000074,0.000647,0.000647,0.000113,0.234503,-0.001120,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000016,0.000013,0.000074,0.000566,0.000566,0.000110,0.233483,-0.001020,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000016,0.000012,0.000075,0.000501,0.000501,0.000106,0.232546,-0.000937,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000015,0.000012,0.000075,0.000432,0.000432,0.000103,0.231694,-0.000852,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000015,0.000011,0.000075,0.000323,0.000323,0.000100,0.230966,-0.000729,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000014,0.000011,0.000076,0.000191,0.000191,0.000097,0.230380,-0.000585,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000014,0.000011,0.000076,0.000047,0.000047,0.000094,0.229947,-0.000433,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000013,0.000011,0.000077,0.000000,0.000000,0.000091,0.229569,-0.000378,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000013,0.000010,0.000077,0.000000,0.000000,0.000088,0.229197,-0.000371,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000013,0.000010,0.000078,0.000000,0.000000,0.000086,0.228833,-0.000364,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000012,0.000010,0.000078,0.000000,0.000000,0.000084,0.228475,-0.000357,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000012,0.000010,0.000079,0.000000,0.000000,0.000082,0.228125,-0.000351,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000012,0.000010,0.000079,0.000000,0.000000,0.000079,0.227780,-0.000344,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000011,0.000009,0.000080,0.000000,0.000000,0.000078,0.227443,-0.000338,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000011,0.000009,0.000080,0.000000,0.000000,0.000076,0.227112,-0.000331,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000011,0.000009,0.000081,0.000000,0.000000,0.000074,0.226786,-0.000325,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000011,0.000009,0.000081,0.000000,0.000000,0.000072,0.226468,-0.000319,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000010,0.000009,0.000082,0.000000,0.000000,0.000071,0.226155,-0.000313,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000010,0.000009,0.000083,0.000000,0.000000,0.000069,0.225848,-0.000307,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000010,0.000008,0.000083,0.000132,0.000132,0.000068,0.225416,-0.000431,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000010,0.000008,0.000084,0.000374,0.000374,0.000066,0.224757,-0.000660,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000009,0.000008,0.000084,0.000528,0.000528,0.000064,0.223958,-0.000799,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000009,0.000007,0.000085,0.000641,0.000641,0.000062,0.223063,-0.000895,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000009,0.000007,0.000085,0.000618,0.000618,0.000060,0.222209,-0.000855,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000008,0.000006,0.000086,0.000572,0.000572,0.000058,0.221415,-0.000794,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000006,0.000086,0.000500,0.000500,0.000055,0.220706,-0.000708,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000008,0.000005,0.000087,0.000469,0.000469,0.000053,0.220042,-0.000664,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000007,0.000005,0.000087,0.000394,0.000394,0.000051,0.219465,-0.000578,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000080,0.000007,0.000005,0.000088,0.000295,0.000295,0.000049,0.219056,-0.000408,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000007,0.000005,0.000088,0.000180,0.000180,0.000047,0.218707,-0.000349,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000224,0.000002,0.000003,0.000002,0.000082,0.000007,0.000005,0.000090,0.000054,0.000054,0.000045,0.218704,-0.000003,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000363,0.000008,0.000014,0.000008,0.000083,0.000006,0.000005,0.000097,0.000000,0.000000,0.000043,0.218880,0.000176,1.000000,0.000007 +123,2022-08-06 03:00:00,0.000231,0.000007,0.000006,0.000007,0.000083,0.000006,0.000005,0.000097,0.000000,0.000000,0.000042,0.218931,0.000051,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000183,0.000006,0.000004,0.000006,0.000084,0.000006,0.000005,0.000096,0.000000,0.000000,0.000041,0.218936,0.000005,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000220,0.000005,0.000005,0.000005,0.000085,0.000006,0.000005,0.000096,0.000000,0.000000,0.000040,0.218976,0.000040,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000241,0.000005,0.000006,0.000005,0.000086,0.000006,0.000005,0.000097,0.000000,0.000000,0.000039,0.219035,0.000059,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000087,0.000006,0.000005,0.000095,0.000000,0.000000,0.000038,0.218862,-0.000173,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000087,0.000006,0.000005,0.000094,0.000000,0.000000,0.000038,0.218693,-0.000170,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000005,0.000005,0.000093,0.000000,0.000000,0.000037,0.218526,-0.000166,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000005,0.000005,0.000094,0.000000,0.000000,0.000036,0.218363,-0.000163,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000005,0.000004,0.000095,0.000000,0.000000,0.000035,0.218203,-0.000160,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000005,0.000004,0.000095,0.000000,0.000000,0.000035,0.218046,-0.000157,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000005,0.000004,0.000096,0.000000,0.000000,0.000034,0.217892,-0.000154,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000005,0.000004,0.000097,0.000115,0.000115,0.000033,0.217627,-0.000265,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000005,0.000004,0.000097,0.000358,0.000358,0.000032,0.217130,-0.000497,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000005,0.000004,0.000098,0.000512,0.000512,0.000031,0.216491,-0.000639,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000004,0.000003,0.000098,0.000619,0.000619,0.000030,0.215758,-0.000732,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000004,0.000003,0.000099,0.000686,0.000686,0.000029,0.214974,-0.000784,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000004,0.000002,0.000099,0.000641,0.000641,0.000027,0.214249,-0.000726,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000004,0.000002,0.000100,0.000559,0.000559,0.000025,0.213617,-0.000632,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000003,0.000002,0.000100,0.000497,0.000497,0.000024,0.213059,-0.000558,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000003,0.000001,0.000101,0.000426,0.000426,0.000022,0.212581,-0.000478,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000003,0.000001,0.000101,0.000314,0.000314,0.000020,0.212221,-0.000359,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000003,0.000001,0.000101,0.000185,0.000185,0.000019,0.211995,-0.000226,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000003,0.000001,0.000102,0.000040,0.000040,0.000017,0.211917,-0.000079,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000002,0.000001,0.000102,0.000000,0.000000,0.000016,0.211878,-0.000039,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000002,0.000001,0.000103,0.000000,0.000000,0.000015,0.211840,-0.000038,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000002,0.000001,0.000103,0.000000,0.000000,0.000014,0.211803,-0.000037,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000002,0.000001,0.000104,0.000000,0.000000,0.000013,0.211766,-0.000037,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000002,0.000001,0.000104,0.000000,0.000000,0.000012,0.211730,-0.000036,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000002,0.000001,0.000105,0.000000,0.000000,0.000011,0.211695,-0.000035,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000002,0.000001,0.000106,0.000000,0.000000,0.000011,0.211661,-0.000034,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000002,0.000001,0.000106,0.000000,0.000000,0.000010,0.211627,-0.000034,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000001,0.000001,0.000107,0.000000,0.000000,0.000010,0.211594,-0.000033,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000001,0.000001,0.000107,0.000000,0.000000,0.000009,0.211561,-0.000033,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000001,0.000001,0.000108,0.000000,0.000000,0.000009,0.211529,-0.000032,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000001,0.000001,0.000108,0.000000,0.000000,0.000009,0.211498,-0.000031,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000001,0.000001,0.000109,0.000111,0.000111,0.000008,0.211359,-0.000139,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000001,0.000001,0.000109,0.000354,0.000354,0.000008,0.210983,-0.000375,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000001,0.000000,0.000110,0.000507,0.000507,0.000007,0.210464,-0.000519,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000001,0.000000,0.000110,0.000619,0.000619,0.000006,0.209846,-0.000619,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000001,0.000000,0.000111,0.000650,0.000650,0.000005,0.209196,-0.000650,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000001,0.000000,0.000111,0.000602,0.000598,0.000005,0.208598,-0.000598,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000001,0.000000,0.000112,0.000533,0.000527,0.000004,0.208071,-0.000527,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000001,0.000000,0.000112,0.000492,0.000484,0.000004,0.207587,-0.000484,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000417,0.000409,0.000003,0.207178,-0.000409,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000114,0.000308,0.000301,0.000003,0.206877,-0.000301,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000150,0.000146,0.000002,0.206731,-0.000146,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000115,0.000018,0.000017,0.000002,0.206714,-0.000017,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000002,0.206714,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000116,0.000000,0.000000,0.000002,0.206714,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000117,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000000,0.000000,0.000118,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000000,0.000000,0.000119,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000001,0.206714,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000000,0.000000,0.000120,0.000000,0.000000,0.000000,0.206714,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000000,0.000000,0.000000,0.206714,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000000,0.000000,0.000121,0.000095,0.000093,0.000000,0.206621,-0.000093,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000341,0.000331,0.000000,0.206290,-0.000331,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000000,0.000000,0.000122,0.000500,0.000484,0.000000,0.205806,-0.000484,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000611,0.000589,0.000000,0.205216,-0.000589,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000000,0.000000,0.000123,0.000671,0.000644,0.000000,0.204572,-0.000644,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000620,0.000591,0.000000,0.203980,-0.000591,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000000,0.000000,0.000124,0.000536,0.000508,0.000000,0.203472,-0.000508,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000486,0.000459,0.000000,0.203012,-0.000459,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000000,0.000000,0.000125,0.000419,0.000394,0.000000,0.202618,-0.000394,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000308,0.000288,0.000000,0.202329,-0.000288,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000000,0.000000,0.000126,0.000169,0.000158,0.000000,0.202171,-0.000158,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000020,0.000019,0.000000,0.202152,-0.000019,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000000,0.000000,0.000127,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000000,0.000000,0.000128,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000000,0.000000,0.000129,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000000,0.000000,0.000130,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000000,0.000000,0.000131,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000000,0.000000,0.000000,0.202152,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000000,0.000000,0.000132,0.000103,0.000096,0.000000,0.202056,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620772.csv b/test/channel_loss/channel_forcing/et/cat-2620772.csv new file mode 100644 index 000000000..89e6fa591 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620772.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000021,0.000000,0.000000,0.000000,0.000000,0.000815,0.000067,0.000815,0.000163,0.000163,0.009013,0.377399,-0.001388,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000749,0.000065,0.000749,0.000045,0.000045,0.008330,0.376140,-0.001259,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000688,0.000064,0.000688,0.000000,0.000000,0.007705,0.374956,-0.001184,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000634,0.000062,0.000634,0.000000,0.000000,0.007134,0.373801,-0.001155,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000584,0.000061,0.000585,0.000000,0.000000,0.006610,0.372674,-0.001127,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000540,0.000059,0.000540,0.000000,0.000000,0.006129,0.371575,-0.001099,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000499,0.000058,0.000499,0.000000,0.000000,0.005689,0.370503,-0.001072,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000461,0.000056,0.000462,0.000000,0.000000,0.005283,0.369458,-0.001046,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000427,0.000055,0.000428,0.000000,0.000000,0.004911,0.368438,-0.001020,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000396,0.000054,0.000397,0.000000,0.000000,0.004568,0.367443,-0.000995,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000368,0.000052,0.000368,0.000000,0.000000,0.004252,0.366473,-0.000970,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000342,0.000051,0.000342,0.000000,0.000000,0.003962,0.365527,-0.000946,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000318,0.000050,0.000319,0.000000,0.000000,0.003693,0.364604,-0.000923,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000296,0.000048,0.000297,0.000000,0.000000,0.003446,0.363703,-0.000900,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000276,0.000047,0.000277,0.000134,0.000134,0.003217,0.362695,-0.001008,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000257,0.000045,0.000258,0.000385,0.000385,0.003006,0.361466,-0.001229,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000240,0.000044,0.000241,0.000538,0.000538,0.002809,0.360117,-0.001348,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000224,0.000042,0.000225,0.000651,0.000651,0.002627,0.358693,-0.001425,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000209,0.000040,0.000211,0.000532,0.000532,0.002458,0.357419,-0.001274,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000689,0.000001,0.000002,0.000001,0.000002,0.000196,0.000039,0.000198,0.000490,0.000490,0.002302,0.356887,-0.000532,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000757,0.000004,0.000006,0.000004,0.000002,0.000183,0.000039,0.000189,0.000437,0.000437,0.002157,0.356482,-0.000405,1.000000,0.000003 +21,2022-08-01 21:00:00,0.000868,0.000010,0.000015,0.000010,0.000002,0.000172,0.000038,0.000184,0.000347,0.000347,0.002024,0.356275,-0.000207,1.000000,0.000008 +22,2022-08-01 22:00:00,0.000714,0.000010,0.000010,0.000010,0.000002,0.000161,0.000038,0.000173,0.000297,0.000297,0.001901,0.355976,-0.000299,1.000000,0.000007 +23,2022-08-01 23:00:00,0.000676,0.000012,0.000012,0.000012,0.000002,0.000151,0.000038,0.000165,0.000224,0.000224,0.001787,0.355718,-0.000258,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000670,0.000013,0.000015,0.000013,0.000002,0.000142,0.000037,0.000158,0.000151,0.000151,0.001683,0.355529,-0.000190,1.000000,0.000009 +25,2022-08-02 01:00:00,0.001153,0.000042,0.000065,0.000042,0.000003,0.000134,0.000038,0.000178,0.000063,0.000063,0.001587,0.355851,0.000323,1.000000,0.000032 +26,2022-08-02 02:00:00,0.001446,0.000081,0.000112,0.000081,0.000003,0.000126,0.000039,0.000210,0.000000,0.000000,0.001499,0.356468,0.000616,1.000000,0.000063 +27,2022-08-02 03:00:00,0.001391,0.000098,0.000104,0.000098,0.000003,0.000120,0.000039,0.000220,0.000000,0.000000,0.001419,0.357023,0.000555,1.000000,0.000069 +28,2022-08-02 04:00:00,0.001441,0.000109,0.000111,0.000109,0.000003,0.000113,0.000040,0.000226,0.000000,0.000000,0.001345,0.357606,0.000583,1.000000,0.000071 +29,2022-08-02 05:00:00,0.001316,0.000100,0.000094,0.000100,0.000003,0.000108,0.000041,0.000211,0.000000,0.000000,0.001279,0.358070,0.000464,1.000000,0.000064 +30,2022-08-02 06:00:00,0.001287,0.000095,0.000090,0.000095,0.000003,0.000102,0.000041,0.000201,0.000000,0.000000,0.001218,0.358498,0.000428,1.000000,0.000059 +31,2022-08-02 07:00:00,0.000000,0.000041,0.000000,0.000041,0.000004,0.000098,0.000040,0.000142,0.000000,0.000000,0.001160,0.357748,-0.000750,1.000000,0.000018 +32,2022-08-02 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000004,0.000093,0.000039,0.000115,0.000000,0.000000,0.001107,0.357017,-0.000732,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000089,0.000038,0.000093,0.000000,0.000000,0.001056,0.356303,-0.000714,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000085,0.000037,0.000089,0.000000,0.000000,0.001009,0.355607,-0.000696,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000081,0.000037,0.000086,0.000000,0.000000,0.000965,0.354928,-0.000679,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000077,0.000036,0.000082,0.000000,0.000000,0.000923,0.354265,-0.000662,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000171,0.000001,0.000002,0.000001,0.000005,0.000074,0.000035,0.000080,0.000000,0.000000,0.000884,0.353784,-0.000481,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000194,0.000001,0.000000,0.000001,0.000005,0.000071,0.000034,0.000077,0.000124,0.000124,0.000847,0.353218,-0.000566,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000068,0.000033,0.000074,0.000326,0.000326,0.000812,0.352469,-0.000749,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000065,0.000032,0.000071,0.000461,0.000461,0.000779,0.351605,-0.000863,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000194,0.000000,0.000000,0.000000,0.000006,0.000063,0.000031,0.000069,0.000557,0.000557,0.000747,0.350671,-0.000934,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000421,0.000000,0.000000,0.000000,0.000006,0.000060,0.000030,0.000066,0.000612,0.000612,0.000717,0.349927,-0.000744,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000007,0.000058,0.000028,0.000064,0.000565,0.000565,0.000688,0.348935,-0.000992,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000028,0.000000,0.000000,0.000000,0.000007,0.000055,0.000027,0.000062,0.000499,0.000499,0.000660,0.347960,-0.000974,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000020,0.000000,0.000000,0.000000,0.000007,0.000053,0.000026,0.000060,0.000493,0.000493,0.000632,0.347008,-0.000952,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000020,0.000000,0.000000,0.000000,0.000007,0.000051,0.000025,0.000058,0.000417,0.000417,0.000606,0.346154,-0.000854,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000028,0.000000,0.000000,0.000000,0.000008,0.000049,0.000024,0.000056,0.000317,0.000317,0.000581,0.345426,-0.000728,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000047,0.000023,0.000055,0.000184,0.000184,0.000558,0.344879,-0.000547,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000061,0.000000,0.000000,0.000000,0.000008,0.000045,0.000022,0.000053,0.000033,0.000033,0.000535,0.344492,-0.000387,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000061,0.000000,0.000000,0.000000,0.000008,0.000043,0.000022,0.000052,0.000000,0.000000,0.000514,0.344146,-0.000346,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000065,0.000000,0.000000,0.000000,0.000009,0.000041,0.000021,0.000050,0.000000,0.000000,0.000494,0.343811,-0.000334,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000090,0.000000,0.000000,0.000000,0.000009,0.000040,0.000021,0.000049,0.000000,0.000000,0.000476,0.343510,-0.000302,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000097,0.000000,0.000001,0.000000,0.000009,0.000038,0.000021,0.000048,0.000000,0.000000,0.000458,0.343223,-0.000287,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000098,0.000001,0.000001,0.000001,0.000010,0.000037,0.000020,0.000047,0.000000,0.000000,0.000441,0.342943,-0.000279,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000036,0.000020,0.000046,0.000000,0.000000,0.000426,0.342576,-0.000367,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000034,0.000019,0.000045,0.000000,0.000000,0.000411,0.342218,-0.000358,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000033,0.000019,0.000044,0.000000,0.000000,0.000396,0.341868,-0.000350,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000032,0.000018,0.000043,0.000000,0.000000,0.000383,0.341527,-0.000341,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000031,0.000018,0.000042,0.000000,0.000000,0.000370,0.341194,-0.000333,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000030,0.000017,0.000041,0.000000,0.000000,0.000357,0.340870,-0.000324,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000029,0.000017,0.000040,0.000000,0.000000,0.000346,0.340554,-0.000316,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000028,0.000016,0.000040,0.000129,0.000129,0.000334,0.340119,-0.000435,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000027,0.000016,0.000039,0.000384,0.000384,0.000323,0.339447,-0.000672,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000026,0.000014,0.000038,0.000541,0.000541,0.000311,0.338638,-0.000809,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000025,0.000013,0.000038,0.000653,0.000653,0.000299,0.337740,-0.000898,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000024,0.000012,0.000037,0.000630,0.000630,0.000288,0.336886,-0.000854,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000023,0.000011,0.000036,0.000580,0.000580,0.000276,0.336102,-0.000784,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000899,0.000004,0.000008,0.000004,0.000014,0.000022,0.000011,0.000040,0.000511,0.000511,0.000265,0.336273,0.000171,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000131,0.000002,0.000000,0.000002,0.000014,0.000021,0.000011,0.000037,0.000464,0.000464,0.000254,0.335745,-0.000528,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000014,0.000020,0.000010,0.000036,0.000393,0.000393,0.000243,0.335171,-0.000574,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000019,0.000009,0.000034,0.000294,0.000294,0.000233,0.334708,-0.000463,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000019,0.000009,0.000033,0.000197,0.000197,0.000223,0.334351,-0.000357,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000018,0.000008,0.000033,0.000045,0.000045,0.000214,0.334151,-0.000200,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000017,0.000008,0.000032,0.000000,0.000000,0.000205,0.334000,-0.000151,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000016,0.000008,0.000032,0.000000,0.000000,0.000196,0.333852,-0.000147,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000016,0.000008,0.000032,0.000000,0.000000,0.000188,0.333709,-0.000144,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000015,0.000008,0.000031,0.000000,0.000000,0.000181,0.333568,-0.000140,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000014,0.000007,0.000031,0.000000,0.000000,0.000174,0.333432,-0.000137,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000014,0.000007,0.000031,0.000000,0.000000,0.000167,0.333298,-0.000133,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000007,0.000031,0.000000,0.000000,0.000161,0.333168,-0.000130,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000013,0.000007,0.000030,0.000000,0.000000,0.000155,0.333041,-0.000127,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000007,0.000030,0.000000,0.000000,0.000149,0.332917,-0.000124,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000007,0.000030,0.000000,0.000000,0.000143,0.332797,-0.000121,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000012,0.000006,0.000030,0.000000,0.000000,0.000138,0.332679,-0.000118,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000006,0.000030,0.000000,0.000000,0.000133,0.332564,-0.000115,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000011,0.000006,0.000030,0.000123,0.000123,0.000128,0.332332,-0.000232,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000005,0.000029,0.000377,0.000377,0.000123,0.331859,-0.000474,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000010,0.000004,0.000029,0.000539,0.000539,0.000118,0.331239,-0.000620,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000003,0.000029,0.000654,0.000654,0.000112,0.330521,-0.000717,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000009,0.000002,0.000029,0.000729,0.000729,0.000106,0.329748,-0.000773,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000008,0.000001,0.000028,0.000681,0.000681,0.000099,0.329041,-0.000707,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000008,0.000001,0.000028,0.000598,0.000598,0.000092,0.328433,-0.000608,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000000,0.000028,0.000529,0.000529,0.000085,0.327904,-0.000529,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000007,0.000000,0.000028,0.000446,0.000445,0.000078,0.327458,-0.000445,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000006,0.000000,0.000027,0.000335,0.000334,0.000072,0.327124,-0.000334,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000006,0.000000,0.000027,0.000203,0.000202,0.000067,0.326922,-0.000202,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000050,0.000050,0.000061,0.326872,-0.000050,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000005,0.000000,0.000027,0.000000,0.000000,0.000057,0.326872,0.000000,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000004,0.000000,0.000027,0.000000,0.000000,0.000052,0.326872,0.000000,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000000,0.000000,0.000048,0.326872,0.000000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000004,0.000000,0.000027,0.000000,0.000000,0.000045,0.326872,0.000000,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000027,0.000000,0.000000,0.000041,0.326872,0.000000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000003,0.000000,0.000027,0.000000,0.000000,0.000038,0.326872,0.000000,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000035,0.326872,0.000000,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000003,0.000000,0.000027,0.000000,0.000000,0.000032,0.326872,0.000000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000027,0.000000,0.000000,0.000030,0.326872,0.000000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000002,0.000000,0.000027,0.000000,0.000000,0.000028,0.326872,0.000000,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000026,0.326872,0.000000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000000,0.000000,0.000024,0.326872,0.000000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000139,0.000139,0.000022,0.326734,-0.000139,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000002,0.000000,0.000027,0.000385,0.000382,0.000020,0.326351,-0.000382,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000002,0.000000,0.000027,0.000543,0.000538,0.000019,0.325813,-0.000538,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000027,0.000659,0.000652,0.000017,0.325161,-0.000652,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000028,0.000647,0.000638,0.000016,0.324523,-0.000638,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000001,0.000000,0.000028,0.000596,0.000586,0.000015,0.323937,-0.000586,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000532,0.000521,0.000013,0.323416,-0.000521,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000503,0.000492,0.000012,0.322924,-0.000492,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000409,0.000399,0.000011,0.322526,-0.000399,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000041,0.000000,0.000000,0.000000,0.000027,0.000001,0.000000,0.000028,0.000309,0.000302,0.000011,0.322265,-0.000261,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000028,0.000195,0.000190,0.000010,0.322075,-0.000190,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000119,0.000000,0.000000,0.000000,0.000028,0.000001,0.000000,0.000029,0.000058,0.000058,0.000009,0.322136,0.000061,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000263,0.000002,0.000004,0.000002,0.000028,0.000001,0.000000,0.000031,0.000000,0.000000,0.000008,0.322395,0.000259,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000113,0.000001,0.000001,0.000001,0.000028,0.000001,0.000000,0.000030,0.000000,0.000000,0.000008,0.322508,0.000113,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000023,0.000001,0.000000,0.000001,0.000029,0.000001,0.000000,0.000030,0.000000,0.000000,0.000007,0.322530,0.000023,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000045,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000029,0.000000,0.000000,0.000007,0.322576,0.000045,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000089,0.000000,0.000000,0.000000,0.000029,0.000001,0.000000,0.000030,0.000000,0.000000,0.000006,0.322664,0.000088,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000030,0.000000,0.000000,0.000006,0.322664,0.000000,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000000,0.000000,0.000030,0.000000,0.000000,0.000005,0.322664,0.000000,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000005,0.322664,0.000000,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000004,0.322664,0.000000,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000030,0.000000,0.000000,0.000004,0.322664,0.000000,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000004,0.322664,0.000000,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000000,0.000000,0.000031,0.000000,0.000000,0.000003,0.322664,0.000000,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000121,0.000118,0.000003,0.322546,-0.000118,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000373,0.000363,0.000003,0.322183,-0.000363,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000526,0.000511,0.000003,0.321672,-0.000511,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000031,0.000639,0.000619,0.000003,0.321053,-0.000619,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000000,0.000000,0.000032,0.000718,0.000693,0.000002,0.320360,-0.000693,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000670,0.000645,0.000002,0.319715,-0.000645,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000591,0.000566,0.000002,0.319149,-0.000566,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000522,0.000499,0.000002,0.318650,-0.000499,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000032,0.000436,0.000415,0.000002,0.318234,-0.000415,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000000,0.000000,0.000033,0.000326,0.000310,0.000002,0.317925,-0.000310,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000192,0.000183,0.000001,0.317742,-0.000183,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000042,0.000040,0.000001,0.317702,-0.000040,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000000,0.000000,0.000033,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000034,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000000,0.000000,0.000001,0.317702,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000116,0.000110,0.000000,0.317592,-0.000110,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000000,0.000000,0.000035,0.000360,0.000341,0.000000,0.317251,-0.000341,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000521,0.000492,0.000000,0.316759,-0.000492,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000635,0.000599,0.000000,0.316160,-0.000599,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000666,0.000627,0.000000,0.315533,-0.000627,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000622,0.000583,0.000000,0.314951,-0.000583,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000558,0.000521,0.000000,0.314429,-0.000521,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000000,0.000000,0.000036,0.000513,0.000479,0.000000,0.313951,-0.000479,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000424,0.000394,0.000000,0.313557,-0.000394,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000317,0.000294,0.000000,0.313263,-0.000294,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000159,0.000147,0.000000,0.313116,-0.000147,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000022,0.000020,0.000000,0.313096,-0.000020,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000000,0.000000,0.000037,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000038,0.000000,0.000000,0.000038,0.000000,0.000000,0.000000,0.313096,0.000001,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.313098,0.000002,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.313098,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000000,0.000000,0.000000,0.313099,0.000001,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000100,0.000093,0.000000,0.313008,-0.000091,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000003,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000350,0.000324,0.000000,0.312687,-0.000321,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000513,0.000474,0.000000,0.312213,-0.000474,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000628,0.000578,0.000000,0.311635,-0.000578,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000000,0.000000,0.000039,0.000700,0.000642,0.000000,0.310993,-0.000642,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000657,0.000601,0.000000,0.310392,-0.000601,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000579,0.000528,0.000000,0.309864,-0.000528,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000516,0.000470,0.000000,0.309395,-0.000470,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000425,0.000385,0.000000,0.309009,-0.000385,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000318,0.000287,0.000000,0.308722,-0.000287,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000178,0.000160,0.000000,0.308561,-0.000160,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000000,0.000000,0.000040,0.000021,0.000019,0.000000,0.308542,-0.000019,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000000,0.000000,0.000041,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000000,0.000000,0.000000,0.308542,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000000,0.000000,0.000042,0.000106,0.000096,0.000000,0.308446,-0.000096,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620773.csv b/test/channel_loss/channel_forcing/et/cat-2620773.csv new file mode 100644 index 000000000..dafea43de --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620773.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.000820,0.000125,0.000820,0.000142,0.000142,0.009069,0.378452,-0.002997,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000758,0.000123,0.000758,0.000033,0.000033,0.008434,0.375611,-0.002841,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000702,0.000120,0.000702,0.000000,0.000000,0.007852,0.372859,-0.002752,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000651,0.000118,0.000651,0.000000,0.000000,0.007319,0.370161,-0.002698,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000605,0.000116,0.000605,0.000000,0.000000,0.006829,0.367517,-0.002644,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000563,0.000113,0.000563,0.000000,0.000000,0.006380,0.364926,-0.002591,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000524,0.000111,0.000525,0.000000,0.000000,0.005967,0.362386,-0.002540,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000489,0.000109,0.000490,0.000000,0.000000,0.005586,0.359897,-0.002489,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000457,0.000107,0.000458,0.000000,0.000000,0.005236,0.357457,-0.002440,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000428,0.000105,0.000428,0.000000,0.000000,0.004913,0.355066,-0.002391,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000400,0.000102,0.000402,0.000000,0.000000,0.004615,0.352722,-0.002344,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000376,0.000100,0.000377,0.000000,0.000000,0.004340,0.350425,-0.002297,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000353,0.000098,0.000354,0.000000,0.000000,0.004086,0.348174,-0.002251,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000332,0.000096,0.000334,0.000000,0.000000,0.003850,0.345967,-0.002207,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000312,0.000094,0.000314,0.000119,0.000119,0.003632,0.343688,-0.002279,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000294,0.000092,0.000297,0.000360,0.000360,0.003430,0.341217,-0.002471,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000278,0.000090,0.000280,0.000528,0.000528,0.003242,0.338632,-0.002586,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000262,0.000088,0.000265,0.000633,0.000633,0.003068,0.335995,-0.002637,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000248,0.000085,0.000251,0.000512,0.000512,0.002905,0.333529,-0.002466,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000843,0.000008,0.000014,0.000008,0.000004,0.000235,0.000084,0.000246,0.000472,0.000472,0.002754,0.331963,-0.001565,1.000000,0.000006 +20,2022-08-01 20:00:00,0.000960,0.000020,0.000031,0.000020,0.000004,0.000223,0.000083,0.000247,0.000407,0.000407,0.002614,0.330592,-0.001372,1.000000,0.000017 +21,2022-08-01 21:00:00,0.001082,0.000042,0.000056,0.000042,0.000004,0.000211,0.000082,0.000257,0.000321,0.000321,0.002485,0.329425,-0.001166,1.000000,0.000032 +22,2022-08-01 22:00:00,0.000887,0.000041,0.000037,0.000041,0.000005,0.000201,0.000081,0.000247,0.000272,0.000272,0.002364,0.328159,-0.001267,1.000000,0.000028 +23,2022-08-01 23:00:00,0.000898,0.000047,0.000048,0.000047,0.000005,0.000191,0.000080,0.000244,0.000196,0.000196,0.002253,0.326991,-0.001168,1.000000,0.000029 +24,2022-08-02 00:00:00,0.000869,0.000049,0.000053,0.000049,0.000006,0.000182,0.000079,0.000237,0.000127,0.000127,0.002149,0.325881,-0.001110,1.000000,0.000034 +25,2022-08-02 01:00:00,0.001527,0.000131,0.000197,0.000131,0.000006,0.000174,0.000078,0.000311,0.000050,0.000050,0.002053,0.325372,-0.000509,1.000000,0.000099 +26,2022-08-02 02:00:00,0.001766,0.000211,0.000274,0.000211,0.000007,0.000166,0.000078,0.000384,0.000000,0.000000,0.001965,0.325081,-0.000291,1.000000,0.000163 +27,2022-08-02 03:00:00,0.001708,0.000250,0.000258,0.000250,0.000007,0.000159,0.000078,0.000416,0.000000,0.000000,0.001883,0.324756,-0.000326,1.000000,0.000171 +28,2022-08-02 04:00:00,0.001748,0.000267,0.000269,0.000267,0.000007,0.000153,0.000077,0.000428,0.000000,0.000000,0.001807,0.324465,-0.000291,1.000000,0.000173 +29,2022-08-02 05:00:00,0.001687,0.000257,0.000252,0.000257,0.000008,0.000147,0.000077,0.000412,0.000000,0.000000,0.001738,0.324137,-0.000328,1.000000,0.000167 +30,2022-08-02 06:00:00,0.001632,0.000247,0.000236,0.000247,0.000008,0.000141,0.000077,0.000397,0.000000,0.000000,0.001673,0.323776,-0.000361,1.000000,0.000157 +31,2022-08-02 07:00:00,0.000000,0.000109,0.000000,0.000109,0.000009,0.000136,0.000075,0.000255,0.000000,0.000000,0.001612,0.322055,-0.001721,1.000000,0.000047 +32,2022-08-02 08:00:00,0.000000,0.000047,0.000000,0.000047,0.000009,0.000131,0.000074,0.000188,0.000000,0.000000,0.001555,0.320368,-0.001687,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000010,0.000127,0.000072,0.000137,0.000000,0.000000,0.001501,0.318715,-0.001653,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000122,0.000071,0.000133,0.000000,0.000000,0.001449,0.317094,-0.001620,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000011,0.000118,0.000069,0.000129,0.000000,0.000000,0.001401,0.315506,-0.001588,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000114,0.000068,0.000126,0.000000,0.000000,0.001355,0.313949,-0.001557,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000383,0.000008,0.000014,0.000008,0.000012,0.000110,0.000067,0.000131,0.000000,0.000000,0.001311,0.312785,-0.001164,1.000000,0.000006 +38,2022-08-02 14:00:00,0.000308,0.000006,0.000004,0.000006,0.000013,0.000107,0.000066,0.000125,0.000111,0.000111,0.001270,0.311471,-0.001313,1.000000,0.000005 +39,2022-08-02 15:00:00,0.000294,0.000004,0.000000,0.000004,0.000013,0.000104,0.000065,0.000121,0.000300,0.000300,0.001231,0.309989,-0.001482,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000344,0.000001,0.000000,0.000001,0.000014,0.000100,0.000063,0.000115,0.000440,0.000440,0.001194,0.308449,-0.001541,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000374,0.000000,0.000000,0.000000,0.000015,0.000097,0.000062,0.000112,0.000534,0.000534,0.001158,0.306876,-0.001573,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000510,0.000000,0.000000,0.000000,0.000015,0.000095,0.000060,0.000110,0.000584,0.000584,0.001124,0.305419,-0.001457,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000156,0.000000,0.000000,0.000000,0.000016,0.000092,0.000059,0.000108,0.000530,0.000530,0.001092,0.303697,-0.001722,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000100,0.000000,0.000000,0.000000,0.000017,0.000089,0.000057,0.000106,0.000472,0.000472,0.001060,0.302010,-0.001686,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000017,0.000086,0.000056,0.000104,0.000460,0.000460,0.001030,0.300334,-0.001677,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000018,0.000084,0.000055,0.000102,0.000395,0.000395,0.001000,0.298754,-0.001580,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000082,0.000053,0.000100,0.000295,0.000295,0.000972,0.297303,-0.001451,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000019,0.000079,0.000052,0.000099,0.000162,0.000162,0.000945,0.296011,-0.001292,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000109,0.000000,0.000001,0.000000,0.000020,0.000077,0.000051,0.000097,0.000020,0.000020,0.000919,0.294929,-0.001082,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000109,0.000001,0.000001,0.000001,0.000021,0.000075,0.000050,0.000096,0.000000,0.000000,0.000894,0.293888,-0.001041,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000143,0.000002,0.000002,0.000002,0.000021,0.000073,0.000049,0.000096,0.000000,0.000000,0.000871,0.292900,-0.000988,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000173,0.000002,0.000003,0.000002,0.000022,0.000071,0.000049,0.000095,0.000000,0.000000,0.000848,0.291960,-0.000940,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000173,0.000003,0.000003,0.000003,0.000023,0.000069,0.000048,0.000095,0.000000,0.000000,0.000826,0.291038,-0.000921,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000182,0.000003,0.000003,0.000003,0.000023,0.000068,0.000047,0.000094,0.000000,0.000000,0.000806,0.290143,-0.000895,1.000000,0.000002 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000024,0.000066,0.000046,0.000091,0.000000,0.000000,0.000786,0.289091,-0.001052,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000025,0.000064,0.000045,0.000090,0.000000,0.000000,0.000767,0.288060,-0.001031,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000063,0.000044,0.000088,0.000000,0.000000,0.000748,0.287050,-0.001011,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000061,0.000043,0.000087,0.000000,0.000000,0.000730,0.286059,-0.000991,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000060,0.000042,0.000087,0.000000,0.000000,0.000713,0.285088,-0.000971,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000058,0.000042,0.000086,0.000000,0.000000,0.000696,0.284137,-0.000952,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000057,0.000041,0.000085,0.000000,0.000000,0.000680,0.283204,-0.000933,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000056,0.000040,0.000085,0.000113,0.000113,0.000665,0.282180,-0.001024,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000054,0.000039,0.000084,0.000364,0.000364,0.000649,0.280929,-0.001250,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000053,0.000038,0.000084,0.000521,0.000521,0.000634,0.279549,-0.001380,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000052,0.000036,0.000083,0.000641,0.000641,0.000618,0.278080,-0.001469,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000050,0.000035,0.000083,0.000617,0.000617,0.000603,0.276664,-0.001416,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000049,0.000034,0.000082,0.000547,0.000547,0.000587,0.275344,-0.001320,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000834,0.000006,0.000011,0.000006,0.000034,0.000048,0.000033,0.000088,0.000486,0.000486,0.000573,0.274918,-0.000427,1.000000,0.000005 +69,2022-08-03 21:00:00,0.000206,0.000003,0.000000,0.000003,0.000034,0.000047,0.000033,0.000084,0.000430,0.000430,0.000559,0.273949,-0.000968,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000035,0.000046,0.000032,0.000083,0.000355,0.000355,0.000545,0.272871,-0.001078,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000044,0.000031,0.000080,0.000270,0.000270,0.000531,0.271898,-0.000973,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000043,0.000030,0.000080,0.000174,0.000174,0.000518,0.271038,-0.000860,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000042,0.000029,0.000080,0.000031,0.000031,0.000505,0.270336,-0.000702,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000041,0.000029,0.000079,0.000000,0.000000,0.000493,0.269678,-0.000658,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000040,0.000028,0.000079,0.000000,0.000000,0.000481,0.269033,-0.000645,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000039,0.000028,0.000079,0.000000,0.000000,0.000469,0.268401,-0.000632,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000038,0.000027,0.000079,0.000000,0.000000,0.000458,0.267782,-0.000620,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000037,0.000027,0.000079,0.000000,0.000000,0.000447,0.267174,-0.000607,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000036,0.000026,0.000079,0.000000,0.000000,0.000437,0.266579,-0.000595,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000036,0.000026,0.000078,0.000000,0.000000,0.000427,0.265996,-0.000583,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000035,0.000025,0.000078,0.000000,0.000000,0.000417,0.265424,-0.000572,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000034,0.000025,0.000078,0.000000,0.000000,0.000407,0.264864,-0.000560,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000033,0.000024,0.000078,0.000000,0.000000,0.000398,0.264315,-0.000549,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000032,0.000024,0.000078,0.000000,0.000000,0.000389,0.263776,-0.000538,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000032,0.000023,0.000078,0.000000,0.000000,0.000380,0.263249,-0.000528,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000031,0.000023,0.000078,0.000109,0.000109,0.000372,0.262625,-0.000624,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000030,0.000022,0.000079,0.000358,0.000358,0.000363,0.261769,-0.000856,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000030,0.000021,0.000079,0.000526,0.000526,0.000355,0.260766,-0.001004,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000029,0.000020,0.000079,0.000640,0.000640,0.000346,0.259671,-0.001095,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000028,0.000019,0.000079,0.000723,0.000723,0.000336,0.258516,-0.001154,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000027,0.000018,0.000079,0.000652,0.000652,0.000327,0.257454,-0.001062,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000026,0.000017,0.000079,0.000578,0.000578,0.000318,0.256486,-0.000968,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000026,0.000016,0.000078,0.000499,0.000499,0.000308,0.255614,-0.000872,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000025,0.000016,0.000078,0.000418,0.000418,0.000299,0.254839,-0.000775,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000024,0.000015,0.000078,0.000317,0.000317,0.000290,0.254179,-0.000661,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000023,0.000015,0.000078,0.000182,0.000182,0.000281,0.253664,-0.000515,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000023,0.000014,0.000079,0.000034,0.000034,0.000272,0.253304,-0.000360,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000022,0.000014,0.000079,0.000000,0.000000,0.000264,0.252985,-0.000319,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000021,0.000014,0.000079,0.000000,0.000000,0.000257,0.252672,-0.000313,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000021,0.000013,0.000079,0.000000,0.000000,0.000249,0.252365,-0.000307,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000020,0.000013,0.000079,0.000000,0.000000,0.000242,0.252065,-0.000301,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000020,0.000013,0.000079,0.000000,0.000000,0.000235,0.251770,-0.000295,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000019,0.000013,0.000079,0.000000,0.000000,0.000229,0.251482,-0.000289,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000019,0.000012,0.000080,0.000000,0.000000,0.000223,0.251199,-0.000283,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000018,0.000012,0.000080,0.000000,0.000000,0.000217,0.250921,-0.000277,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000018,0.000012,0.000080,0.000000,0.000000,0.000211,0.250650,-0.000272,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000017,0.000012,0.000080,0.000000,0.000000,0.000206,0.250383,-0.000266,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000017,0.000011,0.000081,0.000000,0.000000,0.000200,0.250122,-0.000261,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000016,0.000011,0.000081,0.000000,0.000000,0.000195,0.249866,-0.000256,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000016,0.000011,0.000081,0.000122,0.000122,0.000190,0.249496,-0.000370,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000015,0.000010,0.000082,0.000363,0.000363,0.000185,0.248897,-0.000599,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000015,0.000010,0.000082,0.000527,0.000527,0.000180,0.248149,-0.000748,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000015,0.000009,0.000082,0.000649,0.000649,0.000174,0.247297,-0.000852,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000014,0.000008,0.000082,0.000633,0.000633,0.000168,0.246477,-0.000820,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000014,0.000008,0.000082,0.000587,0.000587,0.000162,0.245718,-0.000759,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000013,0.000007,0.000083,0.000510,0.000510,0.000156,0.245050,-0.000669,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000013,0.000006,0.000083,0.000481,0.000481,0.000150,0.244423,-0.000627,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000012,0.000006,0.000083,0.000393,0.000393,0.000144,0.243895,-0.000528,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000016,0.000000,0.000000,0.000000,0.000072,0.000011,0.000006,0.000083,0.000299,0.000299,0.000138,0.243486,-0.000409,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000011,0.000005,0.000083,0.000177,0.000177,0.000132,0.243189,-0.000297,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000116,0.000000,0.000000,0.000000,0.000073,0.000011,0.000005,0.000084,0.000044,0.000044,0.000127,0.243142,-0.000048,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000207,0.000002,0.000004,0.000002,0.000074,0.000010,0.000005,0.000086,0.000000,0.000000,0.000122,0.243224,0.000082,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000046,0.000001,0.000000,0.000001,0.000074,0.000010,0.000005,0.000085,0.000000,0.000000,0.000117,0.243151,-0.000073,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000017,0.000001,0.000000,0.000001,0.000075,0.000009,0.000005,0.000085,0.000000,0.000000,0.000113,0.243050,-0.000100,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000026,0.000000,0.000000,0.000000,0.000076,0.000009,0.000005,0.000085,0.000000,0.000000,0.000109,0.242961,-0.000090,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000026,0.000000,0.000000,0.000000,0.000076,0.000009,0.000005,0.000085,0.000000,0.000000,0.000105,0.242873,-0.000088,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000008,0.000005,0.000086,0.000000,0.000000,0.000102,0.242761,-0.000112,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000005,0.000086,0.000000,0.000000,0.000098,0.242651,-0.000109,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000008,0.000005,0.000086,0.000000,0.000000,0.000095,0.242544,-0.000107,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000008,0.000005,0.000087,0.000000,0.000000,0.000092,0.242439,-0.000105,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000007,0.000005,0.000087,0.000000,0.000000,0.000089,0.242336,-0.000103,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000007,0.000004,0.000088,0.000000,0.000000,0.000086,0.242235,-0.000101,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000007,0.000004,0.000088,0.000000,0.000000,0.000084,0.242136,-0.000099,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000007,0.000004,0.000088,0.000105,0.000105,0.000081,0.241936,-0.000200,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000007,0.000004,0.000089,0.000343,0.000343,0.000078,0.241507,-0.000429,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000006,0.000003,0.000089,0.000509,0.000509,0.000075,0.240924,-0.000584,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000003,0.000090,0.000626,0.000626,0.000072,0.240237,-0.000687,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000006,0.000002,0.000090,0.000696,0.000696,0.000068,0.239495,-0.000742,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000005,0.000001,0.000090,0.000648,0.000648,0.000064,0.238816,-0.000680,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000005,0.000001,0.000090,0.000570,0.000570,0.000060,0.238226,-0.000589,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000005,0.000000,0.000091,0.000497,0.000497,0.000056,0.237720,-0.000507,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000000,0.000091,0.000419,0.000419,0.000052,0.237300,-0.000420,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000004,0.000000,0.000091,0.000310,0.000310,0.000048,0.236990,-0.000310,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000004,0.000000,0.000091,0.000173,0.000173,0.000044,0.236817,-0.000173,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000003,0.000000,0.000092,0.000029,0.000029,0.000041,0.236788,-0.000029,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000003,0.000000,0.000092,0.000000,0.000000,0.000038,0.236788,0.000000,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000092,0.000000,0.000000,0.000035,0.236788,0.000000,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000003,0.000000,0.000093,0.000000,0.000000,0.000032,0.236788,0.000000,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000093,0.000000,0.000000,0.000030,0.236788,0.000000,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000002,0.000000,0.000094,0.000000,0.000000,0.000027,0.236788,0.000000,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000025,0.236788,0.000000,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000002,0.000000,0.000094,0.000000,0.000000,0.000023,0.236788,0.000000,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000002,0.000000,0.000095,0.000000,0.000000,0.000021,0.236788,0.000000,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000095,0.000000,0.000000,0.000020,0.236788,0.000000,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000002,0.000000,0.000096,0.000000,0.000000,0.000018,0.236788,0.000000,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000017,0.236788,0.000000,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000001,0.000000,0.000096,0.000000,0.000000,0.000016,0.236788,0.000000,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000100,0.000100,0.000014,0.236688,-0.000100,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000001,0.000000,0.000097,0.000344,0.000343,0.000013,0.236346,-0.000343,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000511,0.000508,0.000012,0.235838,-0.000508,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000001,0.000000,0.000098,0.000629,0.000622,0.000011,0.235215,-0.000622,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000651,0.000642,0.000010,0.234573,-0.000642,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000001,0.000000,0.000099,0.000600,0.000588,0.000010,0.233985,-0.000588,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000538,0.000525,0.000009,0.233459,-0.000525,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000001,0.000000,0.000100,0.000482,0.000469,0.000008,0.232990,-0.000469,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000397,0.000385,0.000008,0.232605,-0.000385,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000001,0.000000,0.000101,0.000296,0.000286,0.000007,0.232319,-0.000286,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000001,0.000000,0.000101,0.000138,0.000134,0.000006,0.232186,-0.000134,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000000,0.000000,0.000102,0.000012,0.000012,0.000006,0.232174,-0.000012,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000102,0.000000,0.000000,0.000006,0.232174,0.000000,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000000,0.000000,0.000103,0.000000,0.000000,0.000005,0.232174,0.000000,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000103,0.000000,0.000000,0.000005,0.232174,0.000000,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.232174,0.000000,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000104,0.000000,0.000000,0.000004,0.232174,0.000000,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000000,0.000000,0.000105,0.000000,0.000000,0.000004,0.232174,0.000000,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.232174,0.000000,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000000,0.000000,0.000105,0.000000,0.000000,0.000003,0.232174,0.000000,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.232174,0.000000,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000000,0.000000,0.000106,0.000000,0.000000,0.000003,0.232174,0.000000,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000002,0.232174,0.000000,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000107,0.000000,0.000000,0.000002,0.232174,0.000000,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000107,0.000000,0.000000,0.000108,0.000085,0.000082,0.000002,0.232093,-0.000081,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000334,0.000321,0.000002,0.231771,-0.000321,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000000,0.000000,0.000108,0.000498,0.000479,0.000002,0.231293,-0.000479,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000621,0.000594,0.000002,0.230698,-0.000594,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000000,0.000000,0.000109,0.000667,0.000636,0.000002,0.230062,-0.000636,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000628,0.000596,0.000001,0.229466,-0.000596,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000110,0.000533,0.000504,0.000001,0.228963,-0.000504,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000000,0.000000,0.000111,0.000476,0.000448,0.000001,0.228515,-0.000448,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000403,0.000378,0.000001,0.228137,-0.000378,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000000,0.000000,0.000111,0.000300,0.000281,0.000001,0.227856,-0.000281,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000155,0.000144,0.000001,0.227712,-0.000144,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000000,0.000000,0.000112,0.000007,0.000007,0.000001,0.227705,-0.000007,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000000,0.000000,0.000113,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000114,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000000,0.000000,0.000115,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000001,0.227705,0.000000,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000000,0.000000,0.000115,0.000000,0.000000,0.000000,0.227705,0.000000,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.227705,0.000000,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.227705,0.000000,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000000,0.000000,0.000116,0.000000,0.000000,0.000000,0.227705,0.000000,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000000,0.000000,0.000000,0.227705,0.000000,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000000,0.000000,0.000117,0.000093,0.000086,0.000000,0.227618,-0.000086,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620774.csv b/test/channel_loss/channel_forcing/et/cat-2620774.csv new file mode 100644 index 000000000..852b8ee6b --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620774.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000013,0.000000,0.000000,0.000000,0.000000,0.001462,0.000305,0.001462,0.000146,0.000146,0.010439,0.427317,-0.004800,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001303,0.000300,0.001303,0.000030,0.000030,0.009437,0.422686,-0.004632,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001167,0.000296,0.001167,0.000000,0.000000,0.008565,0.418148,-0.004537,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001052,0.000292,0.001052,0.000000,0.000000,0.007805,0.413675,-0.004474,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000953,0.000288,0.000953,0.000000,0.000000,0.007140,0.409263,-0.004411,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000868,0.000284,0.000868,0.000000,0.000000,0.006556,0.404913,-0.004350,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000794,0.000280,0.000795,0.000000,0.000000,0.006042,0.400624,-0.004289,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000730,0.000276,0.000730,0.000000,0.000000,0.005589,0.396395,-0.004229,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000673,0.000272,0.000674,0.000000,0.000000,0.005188,0.392224,-0.004170,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000624,0.000268,0.000625,0.000000,0.000000,0.004832,0.388112,-0.004112,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000581,0.000265,0.000582,0.000000,0.000000,0.004516,0.384057,-0.004055,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000542,0.000261,0.000544,0.000000,0.000000,0.004235,0.380059,-0.003998,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000508,0.000257,0.000511,0.000000,0.000000,0.003983,0.376117,-0.003942,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000478,0.000254,0.000481,0.000000,0.000000,0.003759,0.372230,-0.003887,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000451,0.000250,0.000455,0.000115,0.000115,0.003558,0.368283,-0.003947,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000427,0.000246,0.000431,0.000346,0.000346,0.003377,0.364163,-0.004120,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000406,0.000242,0.000410,0.000521,0.000521,0.003213,0.359929,-0.004234,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000386,0.000238,0.000391,0.000608,0.000608,0.003066,0.355668,-0.004261,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000369,0.000235,0.000374,0.000495,0.000495,0.002932,0.351578,-0.004090,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000937,0.000024,0.000044,0.000024,0.000006,0.000353,0.000232,0.000383,0.000470,0.000470,0.002810,0.348450,-0.003128,1.000000,0.000020 +20,2022-08-01 20:00:00,0.001318,0.000097,0.000157,0.000097,0.000007,0.000339,0.000229,0.000443,0.000397,0.000397,0.002701,0.345703,-0.002748,1.000000,0.000080 +21,2022-08-01 21:00:00,0.001211,0.000127,0.000143,0.000127,0.000007,0.000326,0.000227,0.000460,0.000332,0.000332,0.002602,0.342965,-0.002738,1.000000,0.000096 +22,2022-08-01 22:00:00,0.001096,0.000137,0.000127,0.000137,0.000008,0.000314,0.000224,0.000459,0.000272,0.000272,0.002512,0.340228,-0.002737,1.000000,0.000086 +23,2022-08-01 23:00:00,0.001045,0.000136,0.000137,0.000136,0.000009,0.000304,0.000222,0.000448,0.000185,0.000185,0.002430,0.337555,-0.002673,1.000000,0.000087 +24,2022-08-02 00:00:00,0.001049,0.000146,0.000157,0.000146,0.000009,0.000294,0.000219,0.000449,0.000120,0.000120,0.002356,0.334967,-0.002588,1.000000,0.000098 +25,2022-08-02 01:00:00,0.001861,0.000348,0.000512,0.000348,0.000010,0.000285,0.000217,0.000643,0.000049,0.000049,0.002288,0.332935,-0.002031,1.000000,0.000262 +26,2022-08-02 02:00:00,0.002258,0.000567,0.000741,0.000567,0.000011,0.000277,0.000216,0.000855,0.000000,0.000000,0.002226,0.331146,-0.001789,1.000000,0.000436 +27,2022-08-02 03:00:00,0.002230,0.000686,0.000724,0.000686,0.000012,0.000270,0.000214,0.000968,0.000000,0.000000,0.002170,0.329371,-0.001775,1.000000,0.000474 +28,2022-08-02 04:00:00,0.002240,0.000730,0.000728,0.000730,0.000012,0.000264,0.000213,0.001006,0.000000,0.000000,0.002119,0.327626,-0.001744,1.000000,0.000473 +29,2022-08-02 05:00:00,0.002247,0.000729,0.000730,0.000729,0.000013,0.000258,0.000211,0.000999,0.000000,0.000000,0.002073,0.325911,-0.001715,1.000000,0.000474 +30,2022-08-02 06:00:00,0.002252,0.000731,0.000732,0.000731,0.000014,0.000252,0.000209,0.000997,0.000000,0.000000,0.002030,0.324223,-0.001688,1.000000,0.000475 +31,2022-08-02 07:00:00,0.000000,0.000329,0.000000,0.000329,0.000015,0.000247,0.000206,0.000591,0.000000,0.000000,0.001990,0.321060,-0.003163,1.000000,0.000146 +32,2022-08-02 08:00:00,0.000000,0.000146,0.000000,0.000146,0.000016,0.000242,0.000204,0.000404,0.000000,0.000000,0.001951,0.317941,-0.003119,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000237,0.000201,0.000254,0.000000,0.000000,0.001914,0.314865,-0.003076,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000233,0.000198,0.000251,0.000000,0.000000,0.001879,0.311833,-0.003033,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000229,0.000195,0.000248,0.000000,0.000000,0.001846,0.308842,-0.002990,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000225,0.000192,0.000244,0.000000,0.000000,0.001814,0.305894,-0.002949,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000588,0.000035,0.000064,0.000035,0.000021,0.000221,0.000190,0.000277,0.000000,0.000000,0.001783,0.303503,-0.002390,1.000000,0.000029 +38,2022-08-02 14:00:00,0.000495,0.000031,0.000028,0.000031,0.000022,0.000217,0.000188,0.000270,0.000110,0.000110,0.001754,0.300981,-0.002522,1.000000,0.000025 +39,2022-08-02 15:00:00,0.000519,0.000026,0.000011,0.000026,0.000023,0.000214,0.000186,0.000262,0.000285,0.000285,0.001726,0.298362,-0.002619,1.000000,0.000010 +40,2022-08-02 16:00:00,0.000519,0.000009,0.000002,0.000009,0.000024,0.000210,0.000183,0.000243,0.000419,0.000419,0.001699,0.295656,-0.002706,1.000000,0.000003 +41,2022-08-02 17:00:00,0.000627,0.000004,0.000003,0.000004,0.000025,0.000207,0.000181,0.000236,0.000505,0.000505,0.001673,0.293009,-0.002647,1.000000,0.000002 +42,2022-08-02 18:00:00,0.000596,0.000001,0.000000,0.000001,0.000026,0.000204,0.000178,0.000231,0.000548,0.000548,0.001647,0.290328,-0.002681,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000231,0.000001,0.000000,0.000001,0.000027,0.000200,0.000175,0.000228,0.000492,0.000492,0.001622,0.287381,-0.002947,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000183,0.000000,0.000000,0.000000,0.000028,0.000197,0.000173,0.000226,0.000451,0.000451,0.001598,0.284467,-0.002914,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000079,0.000000,0.000000,0.000000,0.000030,0.000194,0.000170,0.000224,0.000458,0.000458,0.001574,0.281485,-0.002982,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000069,0.000000,0.000000,0.000000,0.000031,0.000191,0.000167,0.000222,0.000398,0.000398,0.001550,0.278594,-0.002891,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000077,0.000000,0.000000,0.000000,0.000032,0.000188,0.000165,0.000220,0.000289,0.000289,0.001526,0.275858,-0.002735,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000033,0.000185,0.000162,0.000218,0.000156,0.000156,0.001503,0.273331,-0.002528,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000103,0.000001,0.000001,0.000001,0.000034,0.000183,0.000160,0.000218,0.000019,0.000019,0.001481,0.270959,-0.002372,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000103,0.000001,0.000002,0.000001,0.000035,0.000180,0.000158,0.000217,0.000000,0.000000,0.001459,0.268638,-0.002321,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000103,0.000002,0.000002,0.000002,0.000037,0.000177,0.000156,0.000216,0.000000,0.000000,0.001438,0.266350,-0.002288,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000134,0.000003,0.000003,0.000003,0.000038,0.000175,0.000154,0.000215,0.000000,0.000000,0.001417,0.264123,-0.002227,1.000000,0.000002 +53,2022-08-03 05:00:00,0.000156,0.000004,0.000005,0.000004,0.000039,0.000172,0.000152,0.000215,0.000000,0.000000,0.001397,0.261948,-0.002175,1.000000,0.000003 +54,2022-08-03 06:00:00,0.000178,0.000005,0.000006,0.000005,0.000040,0.000170,0.000150,0.000215,0.000000,0.000000,0.001377,0.259823,-0.002125,1.000000,0.000004 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000042,0.000167,0.000148,0.000211,0.000000,0.000000,0.001358,0.257558,-0.002265,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000043,0.000165,0.000146,0.000209,0.000000,0.000000,0.001339,0.255325,-0.002233,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000162,0.000144,0.000207,0.000000,0.000000,0.001320,0.253123,-0.002202,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000160,0.000142,0.000206,0.000000,0.000000,0.001302,0.250952,-0.002171,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000158,0.000140,0.000205,0.000000,0.000000,0.001284,0.248811,-0.002141,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000156,0.000138,0.000204,0.000000,0.000000,0.001266,0.246700,-0.002111,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000153,0.000136,0.000203,0.000000,0.000000,0.001249,0.244619,-0.002082,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000151,0.000134,0.000202,0.000107,0.000107,0.001231,0.242461,-0.002158,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000149,0.000132,0.000201,0.000348,0.000348,0.001214,0.240096,-0.002365,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000147,0.000129,0.000201,0.000500,0.000500,0.001196,0.237613,-0.002483,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000145,0.000127,0.000200,0.000612,0.000612,0.001179,0.235054,-0.002559,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000142,0.000125,0.000199,0.000582,0.000582,0.001161,0.232561,-0.002493,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000015,0.000000,0.000000,0.000000,0.000058,0.000140,0.000123,0.000198,0.000507,0.000507,0.001143,0.230192,-0.002369,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000121,0.000000,0.000000,0.000000,0.000059,0.000138,0.000121,0.000197,0.000455,0.000455,0.001126,0.228012,-0.002180,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000077,0.000000,0.000000,0.000000,0.000061,0.000136,0.000119,0.000197,0.000426,0.000426,0.001108,0.225848,-0.002165,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000009,0.000000,0.000000,0.000000,0.000062,0.000134,0.000117,0.000196,0.000347,0.000347,0.001091,0.223723,-0.002125,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000132,0.000115,0.000195,0.000266,0.000266,0.001074,0.221700,-0.002023,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000130,0.000113,0.000194,0.000168,0.000168,0.001057,0.219802,-0.001898,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000128,0.000111,0.000194,0.000028,0.000028,0.001041,0.218068,-0.001734,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000126,0.000110,0.000193,0.000000,0.000000,0.001025,0.216386,-0.001682,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000124,0.000108,0.000193,0.000000,0.000000,0.001010,0.214727,-0.001659,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000122,0.000107,0.000192,0.000000,0.000000,0.000995,0.213092,-0.001635,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000120,0.000105,0.000192,0.000000,0.000000,0.000980,0.211479,-0.001613,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000118,0.000104,0.000192,0.000000,0.000000,0.000966,0.209889,-0.001590,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000116,0.000102,0.000191,0.000000,0.000000,0.000952,0.208321,-0.001568,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000115,0.000101,0.000191,0.000000,0.000000,0.000938,0.206775,-0.001546,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000113,0.000100,0.000191,0.000000,0.000000,0.000924,0.205251,-0.001524,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000111,0.000098,0.000191,0.000000,0.000000,0.000911,0.203748,-0.001503,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000110,0.000097,0.000191,0.000000,0.000000,0.000898,0.202265,-0.001482,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000108,0.000095,0.000191,0.000000,0.000000,0.000885,0.200804,-0.001462,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000107,0.000094,0.000190,0.000000,0.000000,0.000872,0.199363,-0.001441,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000105,0.000093,0.000190,0.000108,0.000108,0.000860,0.197836,-0.001527,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000104,0.000091,0.000190,0.000351,0.000351,0.000847,0.196090,-0.001745,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000102,0.000089,0.000190,0.000518,0.000518,0.000835,0.194204,-0.001886,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000100,0.000088,0.000190,0.000608,0.000608,0.000822,0.192256,-0.001948,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000099,0.000086,0.000190,0.000684,0.000684,0.000809,0.190260,-0.001996,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000097,0.000084,0.000190,0.000623,0.000623,0.000795,0.188351,-0.001908,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000096,0.000082,0.000190,0.000553,0.000553,0.000782,0.186539,-0.001813,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000094,0.000081,0.000190,0.000506,0.000506,0.000769,0.184797,-0.001741,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000092,0.000079,0.000189,0.000422,0.000422,0.000756,0.183164,-0.001634,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000091,0.000078,0.000189,0.000317,0.000317,0.000743,0.181656,-0.001507,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000089,0.000076,0.000189,0.000176,0.000176,0.000730,0.180309,-0.001347,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000088,0.000075,0.000189,0.000032,0.000032,0.000718,0.179123,-0.001186,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000086,0.000074,0.000189,0.000000,0.000000,0.000706,0.177984,-0.001139,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000085,0.000073,0.000189,0.000000,0.000000,0.000695,0.176862,-0.001123,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000083,0.000072,0.000190,0.000000,0.000000,0.000684,0.175754,-0.001107,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000082,0.000071,0.000190,0.000000,0.000000,0.000673,0.174663,-0.001092,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000081,0.000070,0.000190,0.000000,0.000000,0.000662,0.173586,-0.001076,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000079,0.000069,0.000190,0.000000,0.000000,0.000652,0.172525,-0.001061,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000078,0.000068,0.000190,0.000000,0.000000,0.000642,0.171479,-0.001047,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000077,0.000067,0.000191,0.000000,0.000000,0.000633,0.170447,-0.001032,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000076,0.000066,0.000191,0.000000,0.000000,0.000623,0.169429,-0.001018,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000075,0.000065,0.000191,0.000000,0.000000,0.000614,0.168426,-0.001003,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000074,0.000065,0.000192,0.000000,0.000000,0.000605,0.167436,-0.000989,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000073,0.000064,0.000192,0.000000,0.000000,0.000596,0.166461,-0.000976,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000071,0.000063,0.000193,0.000119,0.000119,0.000587,0.165381,-0.001080,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000070,0.000061,0.000193,0.000359,0.000359,0.000578,0.164080,-0.001301,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000069,0.000060,0.000193,0.000522,0.000522,0.000569,0.162636,-0.001444,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000068,0.000059,0.000194,0.000632,0.000632,0.000560,0.161105,-0.001531,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000067,0.000057,0.000194,0.000606,0.000606,0.000550,0.159620,-0.001485,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000066,0.000056,0.000194,0.000571,0.000571,0.000540,0.158191,-0.001430,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000065,0.000055,0.000194,0.000497,0.000497,0.000531,0.156854,-0.001337,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000063,0.000054,0.000195,0.000489,0.000489,0.000521,0.155543,-0.001310,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000062,0.000052,0.000195,0.000397,0.000397,0.000511,0.154342,-0.001201,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000061,0.000051,0.000195,0.000298,0.000298,0.000502,0.153255,-0.001087,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000060,0.000051,0.000196,0.000168,0.000168,0.000492,0.152311,-0.000944,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000059,0.000050,0.000196,0.000043,0.000043,0.000483,0.151505,-0.000806,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000058,0.000049,0.000196,0.000000,0.000000,0.000475,0.150752,-0.000753,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000057,0.000048,0.000197,0.000000,0.000000,0.000467,0.150009,-0.000743,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000056,0.000048,0.000197,0.000000,0.000000,0.000459,0.149277,-0.000732,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000010,0.000000,0.000000,0.000000,0.000143,0.000055,0.000047,0.000198,0.000000,0.000000,0.000451,0.148565,-0.000712,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000054,0.000046,0.000198,0.000000,0.000000,0.000444,0.147852,-0.000712,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000053,0.000046,0.000199,0.000000,0.000000,0.000436,0.147150,-0.000702,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000052,0.000045,0.000199,0.000000,0.000000,0.000429,0.146458,-0.000692,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000051,0.000045,0.000200,0.000000,0.000000,0.000423,0.145775,-0.000683,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000051,0.000044,0.000201,0.000000,0.000000,0.000416,0.145102,-0.000673,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000050,0.000043,0.000201,0.000000,0.000000,0.000410,0.144438,-0.000664,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000049,0.000043,0.000202,0.000000,0.000000,0.000403,0.143783,-0.000655,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000048,0.000042,0.000203,0.000000,0.000000,0.000397,0.143137,-0.000646,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000048,0.000041,0.000203,0.000102,0.000102,0.000391,0.142400,-0.000737,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000047,0.000041,0.000204,0.000329,0.000329,0.000385,0.141450,-0.000951,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000046,0.000040,0.000205,0.000496,0.000496,0.000379,0.140347,-0.001102,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000045,0.000038,0.000205,0.000607,0.000607,0.000372,0.139151,-0.001197,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000044,0.000037,0.000206,0.000664,0.000664,0.000365,0.137915,-0.001236,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000043,0.000036,0.000206,0.000629,0.000629,0.000358,0.136731,-0.001183,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000043,0.000035,0.000207,0.000563,0.000563,0.000350,0.135629,-0.001102,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000042,0.000034,0.000207,0.000505,0.000505,0.000343,0.134600,-0.001029,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000041,0.000033,0.000208,0.000426,0.000426,0.000336,0.133663,-0.000937,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000040,0.000033,0.000208,0.000309,0.000309,0.000328,0.132854,-0.000809,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000032,0.000209,0.000167,0.000167,0.000321,0.132196,-0.000658,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000032,0.000209,0.000027,0.000027,0.000315,0.131685,-0.000510,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000037,0.000031,0.000210,0.000000,0.000000,0.000308,0.131209,-0.000477,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000037,0.000031,0.000210,0.000000,0.000000,0.000302,0.130739,-0.000470,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000036,0.000030,0.000211,0.000000,0.000000,0.000297,0.130275,-0.000464,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000035,0.000030,0.000212,0.000000,0.000000,0.000291,0.129818,-0.000457,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000035,0.000029,0.000212,0.000000,0.000000,0.000286,0.129367,-0.000451,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000034,0.000029,0.000213,0.000000,0.000000,0.000281,0.128923,-0.000444,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000029,0.000214,0.000000,0.000000,0.000276,0.128485,-0.000438,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000033,0.000028,0.000214,0.000000,0.000000,0.000271,0.128053,-0.000432,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000032,0.000028,0.000215,0.000000,0.000000,0.000267,0.127627,-0.000426,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000032,0.000027,0.000216,0.000000,0.000000,0.000262,0.127207,-0.000420,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000031,0.000027,0.000217,0.000000,0.000000,0.000258,0.126793,-0.000414,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000027,0.000217,0.000000,0.000000,0.000254,0.126384,-0.000408,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000030,0.000026,0.000218,0.000098,0.000098,0.000250,0.125885,-0.000499,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000030,0.000026,0.000219,0.000340,0.000340,0.000246,0.125154,-0.000731,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000025,0.000220,0.000508,0.000508,0.000241,0.124268,-0.000886,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000029,0.000024,0.000220,0.000604,0.000604,0.000236,0.123299,-0.000969,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000028,0.000023,0.000221,0.000629,0.000629,0.000231,0.122319,-0.000980,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000027,0.000022,0.000222,0.000571,0.000571,0.000226,0.121410,-0.000909,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000021,0.000222,0.000522,0.000522,0.000220,0.120562,-0.000848,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000026,0.000021,0.000223,0.000472,0.000472,0.000215,0.119775,-0.000787,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000025,0.000020,0.000223,0.000385,0.000385,0.000210,0.119085,-0.000690,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000019,0.000224,0.000284,0.000284,0.000204,0.118504,-0.000580,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000024,0.000019,0.000224,0.000132,0.000132,0.000199,0.118082,-0.000423,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000019,0.000225,0.000010,0.000010,0.000194,0.117785,-0.000296,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000023,0.000018,0.000226,0.000000,0.000000,0.000190,0.117503,-0.000283,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000022,0.000018,0.000226,0.000000,0.000000,0.000185,0.117224,-0.000279,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000022,0.000018,0.000227,0.000000,0.000000,0.000181,0.116949,-0.000275,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000018,0.000228,0.000000,0.000000,0.000178,0.116678,-0.000271,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000021,0.000017,0.000229,0.000000,0.000000,0.000174,0.116410,-0.000267,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000021,0.000017,0.000229,0.000000,0.000000,0.000171,0.116147,-0.000264,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000020,0.000017,0.000230,0.000000,0.000000,0.000167,0.115887,-0.000260,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000017,0.000231,0.000000,0.000000,0.000164,0.115631,-0.000256,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000020,0.000016,0.000232,0.000000,0.000000,0.000161,0.115378,-0.000253,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000016,0.000232,0.000000,0.000000,0.000158,0.115129,-0.000249,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000016,0.000233,0.000000,0.000000,0.000155,0.114883,-0.000246,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000018,0.000016,0.000234,0.000000,0.000000,0.000153,0.114641,-0.000242,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000018,0.000016,0.000235,0.000082,0.000082,0.000150,0.114321,-0.000320,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000015,0.000236,0.000328,0.000328,0.000147,0.113763,-0.000558,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000014,0.000236,0.000476,0.000476,0.000144,0.113066,-0.000696,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000014,0.000237,0.000598,0.000598,0.000141,0.112260,-0.000806,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000013,0.000238,0.000625,0.000625,0.000137,0.111438,-0.000822,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000016,0.000012,0.000238,0.000589,0.000589,0.000133,0.110663,-0.000775,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000011,0.000239,0.000518,0.000518,0.000129,0.109969,-0.000694,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000239,0.000490,0.000490,0.000125,0.109312,-0.000657,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000010,0.000240,0.000409,0.000409,0.000121,0.108745,-0.000568,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000010,0.000241,0.000295,0.000295,0.000116,0.108297,-0.000447,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000010,0.000241,0.000148,0.000148,0.000112,0.108001,-0.000296,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000010,0.000242,0.000006,0.000006,0.000109,0.107849,-0.000152,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000009,0.000242,0.000000,0.000000,0.000105,0.107704,-0.000144,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000009,0.000243,0.000000,0.000000,0.000102,0.107562,-0.000142,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000009,0.000244,0.000000,0.000000,0.000099,0.107422,-0.000140,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000012,0.000009,0.000244,0.000000,0.000000,0.000097,0.107284,-0.000138,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000011,0.000009,0.000245,0.000000,0.000000,0.000094,0.107148,-0.000136,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000011,0.000009,0.000246,0.000000,0.000000,0.000092,0.107014,-0.000134,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000011,0.000009,0.000247,0.000000,0.000000,0.000090,0.106881,-0.000132,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000011,0.000009,0.000247,0.000000,0.000000,0.000088,0.106750,-0.000131,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000010,0.000008,0.000248,0.000000,0.000000,0.000086,0.106622,-0.000129,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000010,0.000008,0.000249,0.000000,0.000000,0.000084,0.106495,-0.000127,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000010,0.000008,0.000250,0.000000,0.000000,0.000082,0.106370,-0.000125,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000010,0.000008,0.000250,0.000000,0.000000,0.000080,0.106246,-0.000123,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000010,0.000008,0.000251,0.000089,0.000089,0.000079,0.106037,-0.000209,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620775.csv b/test/channel_loss/channel_forcing/et/cat-2620775.csv new file mode 100644 index 000000000..5f90baac0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620775.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001449,0.000210,0.001449,0.000142,0.000142,0.010357,0.426221,-0.004903,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001279,0.000207,0.001279,0.000030,0.000030,0.009286,0.421494,-0.004727,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001135,0.000204,0.001135,0.000000,0.000000,0.008355,0.416859,-0.004635,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001013,0.000202,0.001013,0.000000,0.000000,0.007544,0.412285,-0.004574,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000908,0.000199,0.000909,0.000000,0.000000,0.006835,0.407772,-0.004513,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000818,0.000196,0.000819,0.000000,0.000000,0.006213,0.403318,-0.004454,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000741,0.000194,0.000741,0.000000,0.000000,0.005666,0.398924,-0.004395,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000673,0.000191,0.000674,0.000000,0.000000,0.005184,0.394587,-0.004337,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000614,0.000189,0.000615,0.000000,0.000000,0.004759,0.390307,-0.004279,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000563,0.000186,0.000564,0.000000,0.000000,0.004383,0.386085,-0.004223,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000517,0.000184,0.000519,0.000000,0.000000,0.004049,0.381918,-0.004167,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000477,0.000181,0.000480,0.000000,0.000000,0.003753,0.377806,-0.004112,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000442,0.000179,0.000445,0.000000,0.000000,0.003490,0.373748,-0.004058,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000411,0.000177,0.000414,0.000000,0.000000,0.003255,0.369744,-0.004004,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000384,0.000174,0.000387,0.000114,0.000114,0.003046,0.365681,-0.004063,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000359,0.000172,0.000363,0.000344,0.000344,0.002859,0.361445,-0.004236,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000337,0.000169,0.000342,0.000516,0.000516,0.002690,0.357094,-0.004351,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000318,0.000167,0.000323,0.000604,0.000604,0.002539,0.352714,-0.004380,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000300,0.000164,0.000306,0.000492,0.000492,0.002403,0.348503,-0.004211,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000879,0.000028,0.000050,0.000028,0.000006,0.000284,0.000162,0.000318,0.000468,0.000468,0.002281,0.345190,-0.003314,1.000000,0.000023 +20,2022-08-01 20:00:00,0.001102,0.000088,0.000137,0.000088,0.000007,0.000270,0.000160,0.000365,0.000390,0.000390,0.002171,0.342130,-0.003060,1.000000,0.000072 +21,2022-08-01 21:00:00,0.001104,0.000133,0.000161,0.000133,0.000008,0.000258,0.000159,0.000398,0.000325,0.000325,0.002072,0.339154,-0.002976,1.000000,0.000100 +22,2022-08-01 22:00:00,0.001042,0.000155,0.000159,0.000155,0.000008,0.000246,0.000157,0.000409,0.000267,0.000267,0.001983,0.336216,-0.002938,1.000000,0.000104 +23,2022-08-01 23:00:00,0.001010,0.000170,0.000179,0.000170,0.000009,0.000236,0.000155,0.000415,0.000179,0.000179,0.001902,0.333351,-0.002865,1.000000,0.000112 +24,2022-08-02 00:00:00,0.001077,0.000202,0.000229,0.000202,0.000010,0.000227,0.000154,0.000439,0.000120,0.000120,0.001829,0.330600,-0.002751,1.000000,0.000139 +25,2022-08-02 01:00:00,0.001814,0.000449,0.000647,0.000449,0.000011,0.000218,0.000152,0.000677,0.000048,0.000048,0.001763,0.328271,-0.002328,1.000000,0.000337 +26,2022-08-02 02:00:00,0.002220,0.000719,0.000931,0.000719,0.000011,0.000211,0.000151,0.000941,0.000000,0.000000,0.001703,0.326140,-0.002131,1.000000,0.000548 +27,2022-08-02 03:00:00,0.002192,0.000863,0.000910,0.000863,0.000012,0.000204,0.000150,0.001079,0.000000,0.000000,0.001649,0.324030,-0.002110,1.000000,0.000596 +28,2022-08-02 04:00:00,0.002202,0.000917,0.000915,0.000917,0.000013,0.000198,0.000148,0.001128,0.000000,0.000000,0.001600,0.321954,-0.002077,1.000000,0.000594 +29,2022-08-02 05:00:00,0.002196,0.000911,0.000909,0.000911,0.000014,0.000192,0.000147,0.001117,0.000000,0.000000,0.001555,0.319904,-0.002049,1.000000,0.000592 +30,2022-08-02 06:00:00,0.002191,0.000907,0.000904,0.000907,0.000015,0.000187,0.000146,0.001109,0.000000,0.000000,0.001514,0.317883,-0.002022,1.000000,0.000589 +31,2022-08-02 07:00:00,0.000000,0.000408,0.000000,0.000408,0.000016,0.000182,0.000144,0.000606,0.000000,0.000000,0.001477,0.314617,-0.003265,1.000000,0.000181 +32,2022-08-02 08:00:00,0.000000,0.000181,0.000000,0.000181,0.000017,0.000178,0.000142,0.000375,0.000000,0.000000,0.001441,0.311395,-0.003222,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000173,0.000140,0.000191,0.000000,0.000000,0.001408,0.308216,-0.003180,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000170,0.000138,0.000188,0.000000,0.000000,0.001377,0.305078,-0.003138,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000166,0.000137,0.000186,0.000000,0.000000,0.001348,0.301982,-0.003096,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000162,0.000135,0.000183,0.000000,0.000000,0.001320,0.298927,-0.003055,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000595,0.000051,0.000092,0.000051,0.000022,0.000159,0.000133,0.000232,0.000000,0.000000,0.001294,0.296408,-0.002518,1.000000,0.000042 +38,2022-08-02 14:00:00,0.000495,0.000046,0.000041,0.000046,0.000023,0.000156,0.000132,0.000225,0.000109,0.000109,0.001270,0.293767,-0.002641,1.000000,0.000037 +39,2022-08-02 15:00:00,0.000519,0.000037,0.000016,0.000037,0.000024,0.000153,0.000130,0.000215,0.000282,0.000282,0.001247,0.291038,-0.002729,1.000000,0.000015 +40,2022-08-02 16:00:00,0.000524,0.000014,0.000003,0.000014,0.000025,0.000150,0.000128,0.000190,0.000416,0.000416,0.001225,0.288232,-0.002807,1.000000,0.000005 +41,2022-08-02 17:00:00,0.000611,0.000006,0.000004,0.000006,0.000026,0.000148,0.000127,0.000180,0.000500,0.000500,0.001204,0.285464,-0.002768,1.000000,0.000002 +42,2022-08-02 18:00:00,0.000581,0.000002,0.000000,0.000002,0.000027,0.000145,0.000125,0.000175,0.000546,0.000546,0.001184,0.282661,-0.002803,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000170,0.000001,0.000000,0.000001,0.000029,0.000143,0.000123,0.000172,0.000492,0.000492,0.001164,0.279543,-0.003118,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000138,0.000000,0.000000,0.000000,0.000030,0.000141,0.000122,0.000170,0.000449,0.000449,0.001145,0.276478,-0.003065,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000073,0.000000,0.000000,0.000000,0.000031,0.000138,0.000120,0.000169,0.000447,0.000447,0.001127,0.273391,-0.003087,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000072,0.000000,0.000000,0.000000,0.000032,0.000136,0.000118,0.000168,0.000390,0.000390,0.001109,0.270400,-0.002991,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000080,0.000000,0.000000,0.000000,0.000034,0.000134,0.000116,0.000167,0.000283,0.000283,0.001091,0.267562,-0.002838,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000035,0.000132,0.000115,0.000166,0.000152,0.000152,0.001074,0.264926,-0.002636,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000081,0.000001,0.000001,0.000001,0.000036,0.000130,0.000113,0.000166,0.000018,0.000018,0.001058,0.262422,-0.002504,1.000000,0.000001 +50,2022-08-03 02:00:00,0.000081,0.000001,0.000002,0.000001,0.000037,0.000128,0.000112,0.000166,0.000000,0.000000,0.001042,0.259968,-0.002454,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000081,0.000002,0.000002,0.000002,0.000039,0.000126,0.000110,0.000166,0.000000,0.000000,0.001026,0.257546,-0.002422,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000089,0.000002,0.000002,0.000002,0.000040,0.000124,0.000109,0.000166,0.000000,0.000000,0.001011,0.255164,-0.002382,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000110,0.000003,0.000003,0.000003,0.000041,0.000122,0.000108,0.000166,0.000000,0.000000,0.000997,0.252833,-0.002331,1.000000,0.000002 +54,2022-08-03 06:00:00,0.000148,0.000005,0.000006,0.000005,0.000043,0.000120,0.000106,0.000167,0.000000,0.000000,0.000983,0.250568,-0.002266,1.000000,0.000003 +55,2022-08-03 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000044,0.000119,0.000105,0.000165,0.000000,0.000000,0.000969,0.248192,-0.002376,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000045,0.000117,0.000103,0.000163,0.000000,0.000000,0.000955,0.245848,-0.002344,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000115,0.000102,0.000162,0.000000,0.000000,0.000942,0.243535,-0.002313,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000114,0.000101,0.000162,0.000000,0.000000,0.000929,0.241252,-0.002283,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000112,0.000099,0.000162,0.000000,0.000000,0.000916,0.239000,-0.002252,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000111,0.000098,0.000161,0.000000,0.000000,0.000904,0.236777,-0.002223,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000109,0.000097,0.000161,0.000000,0.000000,0.000892,0.234584,-0.002193,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000108,0.000095,0.000161,0.000106,0.000106,0.000880,0.232315,-0.002269,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000106,0.000094,0.000161,0.000347,0.000347,0.000867,0.229838,-0.002476,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000105,0.000092,0.000161,0.000495,0.000495,0.000855,0.227249,-0.002590,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000103,0.000091,0.000161,0.000608,0.000608,0.000843,0.224582,-0.002667,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000102,0.000089,0.000161,0.000582,0.000582,0.000831,0.221976,-0.002606,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000100,0.000088,0.000161,0.000497,0.000497,0.000819,0.219488,-0.002487,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000193,0.000000,0.000000,0.000000,0.000062,0.000099,0.000087,0.000161,0.000452,0.000452,0.000807,0.217268,-0.002220,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000061,0.000000,0.000000,0.000000,0.000064,0.000097,0.000085,0.000161,0.000419,0.000419,0.000795,0.214980,-0.002289,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000096,0.000084,0.000161,0.000343,0.000343,0.000783,0.212736,-0.002243,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000094,0.000083,0.000161,0.000261,0.000261,0.000771,0.210603,-0.002133,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000093,0.000081,0.000161,0.000164,0.000164,0.000760,0.208594,-0.002009,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000091,0.000080,0.000161,0.000027,0.000027,0.000749,0.206747,-0.001847,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000090,0.000079,0.000162,0.000000,0.000000,0.000738,0.204951,-0.001796,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000089,0.000078,0.000162,0.000000,0.000000,0.000728,0.203178,-0.001773,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000087,0.000077,0.000162,0.000000,0.000000,0.000717,0.201429,-0.001749,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000086,0.000076,0.000162,0.000000,0.000000,0.000707,0.199703,-0.001726,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000085,0.000075,0.000163,0.000000,0.000000,0.000697,0.198000,-0.001703,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000084,0.000074,0.000163,0.000000,0.000000,0.000688,0.196319,-0.001681,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000083,0.000073,0.000163,0.000000,0.000000,0.000678,0.194661,-0.001658,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000082,0.000072,0.000164,0.000000,0.000000,0.000669,0.193024,-0.001636,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000080,0.000071,0.000164,0.000000,0.000000,0.000660,0.191409,-0.001615,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000079,0.000070,0.000165,0.000000,0.000000,0.000651,0.189816,-0.001594,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000078,0.000069,0.000165,0.000000,0.000000,0.000642,0.188244,-0.001572,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000077,0.000068,0.000166,0.000000,0.000000,0.000633,0.186692,-0.001552,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000076,0.000067,0.000166,0.000107,0.000107,0.000624,0.185055,-0.001637,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000075,0.000066,0.000167,0.000347,0.000347,0.000616,0.183203,-0.001852,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000074,0.000065,0.000167,0.000511,0.000511,0.000607,0.181214,-0.001989,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000073,0.000064,0.000168,0.000599,0.000599,0.000598,0.179164,-0.002050,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000072,0.000063,0.000168,0.000681,0.000681,0.000589,0.177060,-0.002104,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000071,0.000062,0.000169,0.000619,0.000619,0.000580,0.175045,-0.002015,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000070,0.000060,0.000169,0.000550,0.000550,0.000571,0.173125,-0.001920,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000068,0.000059,0.000170,0.000495,0.000495,0.000562,0.171285,-0.001841,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000067,0.000058,0.000170,0.000414,0.000414,0.000553,0.169549,-0.001736,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000066,0.000057,0.000171,0.000310,0.000310,0.000544,0.167939,-0.001610,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000065,0.000057,0.000171,0.000172,0.000172,0.000535,0.166485,-0.001453,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000064,0.000056,0.000172,0.000030,0.000030,0.000527,0.165191,-0.001294,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000063,0.000055,0.000172,0.000000,0.000000,0.000519,0.163944,-0.001247,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000062,0.000054,0.000173,0.000000,0.000000,0.000511,0.162714,-0.001230,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000061,0.000054,0.000174,0.000000,0.000000,0.000503,0.161500,-0.001214,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000060,0.000053,0.000174,0.000000,0.000000,0.000496,0.160302,-0.001198,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000059,0.000052,0.000175,0.000000,0.000000,0.000489,0.159119,-0.001182,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000059,0.000051,0.000176,0.000000,0.000000,0.000482,0.157953,-0.001167,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000058,0.000051,0.000177,0.000000,0.000000,0.000475,0.156801,-0.001151,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000057,0.000050,0.000177,0.000000,0.000000,0.000468,0.155665,-0.001136,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000056,0.000049,0.000178,0.000000,0.000000,0.000461,0.154544,-0.001121,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000055,0.000049,0.000179,0.000000,0.000000,0.000455,0.153438,-0.001106,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000055,0.000048,0.000180,0.000000,0.000000,0.000448,0.152347,-0.001092,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000054,0.000048,0.000181,0.000000,0.000000,0.000442,0.151270,-0.001077,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000053,0.000047,0.000181,0.000118,0.000118,0.000436,0.150090,-0.001180,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000052,0.000046,0.000182,0.000355,0.000355,0.000430,0.148693,-0.001397,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000051,0.000045,0.000183,0.000514,0.000514,0.000423,0.147157,-0.001536,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000051,0.000044,0.000184,0.000625,0.000625,0.000417,0.145532,-0.001625,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000050,0.000043,0.000185,0.000602,0.000602,0.000410,0.143951,-0.001581,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000049,0.000042,0.000185,0.000567,0.000567,0.000404,0.142425,-0.001526,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000048,0.000041,0.000186,0.000491,0.000491,0.000397,0.140995,-0.001431,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000047,0.000041,0.000187,0.000479,0.000479,0.000390,0.139595,-0.001400,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000047,0.000040,0.000188,0.000388,0.000388,0.000383,0.138304,-0.001292,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000046,0.000039,0.000188,0.000292,0.000292,0.000377,0.137124,-0.001180,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000045,0.000039,0.000189,0.000166,0.000166,0.000370,0.136084,-0.001039,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000003,0.000000,0.000000,0.000000,0.000146,0.000044,0.000038,0.000190,0.000042,0.000042,0.000364,0.135184,-0.000900,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000029,0.000000,0.000000,0.000000,0.000147,0.000043,0.000038,0.000191,0.000000,0.000000,0.000358,0.134363,-0.000821,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000043,0.000037,0.000192,0.000000,0.000000,0.000352,0.133524,-0.000839,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000042,0.000037,0.000193,0.000000,0.000000,0.000347,0.132695,-0.000828,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000152,0.000041,0.000036,0.000193,0.000000,0.000000,0.000341,0.131880,-0.000815,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000041,0.000036,0.000194,0.000000,0.000000,0.000336,0.131074,-0.000807,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000040,0.000035,0.000195,0.000000,0.000000,0.000331,0.130278,-0.000796,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000040,0.000035,0.000196,0.000000,0.000000,0.000326,0.129492,-0.000785,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000039,0.000034,0.000197,0.000000,0.000000,0.000321,0.128717,-0.000775,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000038,0.000034,0.000198,0.000000,0.000000,0.000317,0.127953,-0.000765,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000038,0.000033,0.000199,0.000000,0.000000,0.000312,0.127198,-0.000755,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000037,0.000033,0.000200,0.000000,0.000000,0.000308,0.126453,-0.000745,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000032,0.000201,0.000000,0.000000,0.000303,0.125718,-0.000735,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000032,0.000202,0.000101,0.000101,0.000299,0.124894,-0.000825,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000036,0.000031,0.000203,0.000325,0.000325,0.000295,0.123859,-0.001035,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000031,0.000204,0.000491,0.000491,0.000290,0.122674,-0.001185,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000035,0.000030,0.000205,0.000601,0.000601,0.000285,0.121395,-0.001278,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000034,0.000029,0.000206,0.000659,0.000659,0.000280,0.120077,-0.001318,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000033,0.000028,0.000207,0.000624,0.000624,0.000275,0.118811,-0.001266,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000033,0.000028,0.000208,0.000555,0.000555,0.000270,0.117630,-0.001181,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000032,0.000027,0.000208,0.000495,0.000495,0.000265,0.116524,-0.001106,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000032,0.000026,0.000209,0.000418,0.000418,0.000260,0.115508,-0.001016,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000031,0.000026,0.000210,0.000302,0.000302,0.000255,0.114619,-0.000889,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000025,0.000211,0.000164,0.000164,0.000250,0.113879,-0.000740,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000030,0.000025,0.000212,0.000026,0.000026,0.000245,0.113285,-0.000594,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000029,0.000025,0.000213,0.000000,0.000000,0.000241,0.112724,-0.000561,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000029,0.000024,0.000214,0.000000,0.000000,0.000237,0.112171,-0.000553,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000024,0.000215,0.000000,0.000000,0.000233,0.111625,-0.000546,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000024,0.000216,0.000000,0.000000,0.000229,0.111086,-0.000539,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000027,0.000023,0.000217,0.000000,0.000000,0.000225,0.110554,-0.000532,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000023,0.000218,0.000000,0.000000,0.000221,0.110030,-0.000525,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000026,0.000023,0.000219,0.000000,0.000000,0.000218,0.109512,-0.000518,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000023,0.000220,0.000000,0.000000,0.000214,0.109001,-0.000511,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000022,0.000221,0.000000,0.000000,0.000211,0.108497,-0.000504,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000022,0.000222,0.000000,0.000000,0.000208,0.107999,-0.000497,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000025,0.000022,0.000223,0.000000,0.000000,0.000205,0.107509,-0.000491,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000024,0.000021,0.000224,0.000000,0.000000,0.000202,0.107024,-0.000484,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000021,0.000225,0.000097,0.000097,0.000198,0.106451,-0.000573,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000021,0.000226,0.000337,0.000337,0.000195,0.105648,-0.000803,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000020,0.000227,0.000500,0.000500,0.000192,0.104694,-0.000953,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000019,0.000228,0.000598,0.000598,0.000189,0.103657,-0.001037,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000019,0.000229,0.000623,0.000623,0.000185,0.102609,-0.001048,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000022,0.000018,0.000230,0.000565,0.000565,0.000181,0.101632,-0.000977,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000021,0.000018,0.000230,0.000518,0.000518,0.000177,0.100714,-0.000918,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000017,0.000231,0.000466,0.000466,0.000174,0.099860,-0.000855,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000017,0.000232,0.000380,0.000380,0.000170,0.099102,-0.000758,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000016,0.000233,0.000278,0.000278,0.000166,0.098454,-0.000648,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000020,0.000016,0.000234,0.000129,0.000129,0.000162,0.097962,-0.000492,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000019,0.000016,0.000235,0.000009,0.000000,0.000159,0.097604,-0.000358,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000016,0.000236,0.000000,0.000000,0.000156,0.097250,-0.000353,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000015,0.000237,0.000000,0.000000,0.000153,0.096901,-0.000349,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000015,0.000238,0.000000,0.000000,0.000150,0.096557,-0.000344,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000015,0.000239,0.000000,0.000000,0.000147,0.096218,-0.000340,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000015,0.000240,0.000000,0.000000,0.000144,0.095883,-0.000335,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000015,0.000241,0.000000,0.000000,0.000142,0.095552,-0.000331,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000014,0.000242,0.000000,0.000000,0.000139,0.095226,-0.000326,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000014,0.000243,0.000000,0.000000,0.000137,0.094903,-0.000322,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000014,0.000244,0.000000,0.000000,0.000135,0.094586,-0.000318,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000014,0.000244,0.000000,0.000000,0.000132,0.094272,-0.000314,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000245,0.000000,0.000000,0.000130,0.093963,-0.000309,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000013,0.000246,0.000000,0.000000,0.000128,0.093657,-0.000305,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000013,0.000247,0.000082,0.000000,0.000126,0.093356,-0.000301,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000013,0.000248,0.000324,0.000000,0.000124,0.093059,-0.000297,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000249,0.000472,0.000000,0.000122,0.092765,-0.000293,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000250,0.000591,0.000000,0.000121,0.092476,-0.000290,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000251,0.000618,0.000000,0.000119,0.092190,-0.000286,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000581,0.000000,0.000117,0.091908,-0.000282,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000508,0.000000,0.000115,0.091630,-0.000278,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000254,0.000477,0.000000,0.000114,0.091356,-0.000274,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000255,0.000402,0.000000,0.000112,0.091085,-0.000271,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000012,0.000256,0.000290,0.000000,0.000111,0.090818,-0.000267,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000012,0.000257,0.000145,0.000000,0.000109,0.090554,-0.000264,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000011,0.000258,0.000006,0.000000,0.000107,0.090294,-0.000260,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000013,0.000011,0.000259,0.000000,0.000000,0.000106,0.090037,-0.000257,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000011,0.000260,0.000000,0.000000,0.000105,0.089783,-0.000253,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000012,0.000011,0.000261,0.000000,0.000000,0.000103,0.089533,-0.000250,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000012,0.000011,0.000262,0.000000,0.000000,0.000102,0.089286,-0.000247,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000012,0.000011,0.000263,0.000000,0.000000,0.000100,0.089043,-0.000244,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000012,0.000011,0.000264,0.000000,0.000000,0.000099,0.088803,-0.000240,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000010,0.000265,0.000000,0.000000,0.000098,0.088566,-0.000237,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000010,0.000266,0.000000,0.000000,0.000096,0.088332,-0.000234,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000011,0.000010,0.000267,0.000000,0.000000,0.000095,0.088101,-0.000231,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000011,0.000010,0.000268,0.000000,0.000000,0.000094,0.087873,-0.000228,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000011,0.000010,0.000269,0.000000,0.000000,0.000092,0.087648,-0.000225,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000011,0.000010,0.000270,0.000000,0.000000,0.000091,0.087426,-0.000222,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000011,0.000010,0.000271,0.000088,0.000000,0.000090,0.087207,-0.000219,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620776.csv b/test/channel_loss/channel_forcing/et/cat-2620776.csv new file mode 100644 index 000000000..bda4f74e7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620776.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001549,0.000921,0.001549,0.000196,0.000196,0.010967,0.423165,-0.005230,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001459,0.000906,0.001459,0.000060,0.000060,0.010415,0.417966,-0.005198,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001380,0.000892,0.001380,0.000000,0.000000,0.009926,0.412910,-0.005056,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001311,0.000877,0.001312,0.000000,0.000000,0.009492,0.407936,-0.004974,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001251,0.000863,0.001251,0.000000,0.000000,0.009104,0.403042,-0.004894,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001197,0.000849,0.001197,0.000000,0.000000,0.008756,0.398228,-0.004815,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001149,0.000835,0.001149,0.000000,0.000000,0.008443,0.393491,-0.004737,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001105,0.000822,0.001106,0.000000,0.000000,0.008159,0.388830,-0.004661,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001067,0.000809,0.001068,0.000000,0.000000,0.007901,0.384245,-0.004585,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001031,0.000795,0.001033,0.000000,0.000000,0.007665,0.379733,-0.004511,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000999,0.000783,0.001001,0.000000,0.000000,0.007449,0.375295,-0.004438,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000969,0.000770,0.000971,0.000000,0.000000,0.007250,0.370928,-0.004367,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000942,0.000758,0.000945,0.000000,0.000000,0.007065,0.366632,-0.004296,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000917,0.000745,0.000920,0.000000,0.000000,0.006893,0.362405,-0.004227,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000894,0.000733,0.000897,0.000146,0.000146,0.006733,0.358102,-0.004303,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000872,0.000720,0.000875,0.000401,0.000401,0.006581,0.353619,-0.004483,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000851,0.000707,0.000855,0.000563,0.000563,0.006437,0.349048,-0.004571,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000831,0.000693,0.000836,0.000668,0.000668,0.006299,0.344448,-0.004600,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000812,0.000680,0.000817,0.000601,0.000601,0.006168,0.339988,-0.004460,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000375,0.000000,0.000000,0.000000,0.000006,0.000794,0.000669,0.000800,0.000544,0.000544,0.006043,0.336024,-0.003963,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000371,0.000000,0.000000,0.000000,0.000006,0.000777,0.000658,0.000784,0.000483,0.000483,0.005924,0.332181,-0.003843,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000437,0.000000,0.000000,0.000000,0.000007,0.000761,0.000647,0.000768,0.000398,0.000398,0.005810,0.328549,-0.003633,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000427,0.000000,0.000000,0.000000,0.000008,0.000746,0.000637,0.000754,0.000350,0.000350,0.005701,0.325012,-0.003536,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000467,0.000002,0.000003,0.000002,0.000008,0.000731,0.000627,0.000741,0.000269,0.000269,0.005598,0.321650,-0.003363,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000488,0.000005,0.000007,0.000005,0.000009,0.000717,0.000618,0.000731,0.000167,0.000167,0.005499,0.318457,-0.003193,1.000000,0.000004 +25,2022-08-02 01:00:00,0.001000,0.000033,0.000056,0.000033,0.000010,0.000704,0.000611,0.000747,0.000076,0.000076,0.005406,0.315862,-0.002596,1.000000,0.000027 +26,2022-08-02 02:00:00,0.001000,0.000051,0.000065,0.000051,0.000011,0.000692,0.000603,0.000754,0.000000,0.000000,0.005317,0.313374,-0.002488,1.000000,0.000041 +27,2022-08-02 03:00:00,0.000982,0.000062,0.000063,0.000062,0.000011,0.000680,0.000596,0.000753,0.000000,0.000000,0.005234,0.310911,-0.002463,1.000000,0.000041 +28,2022-08-02 04:00:00,0.000984,0.000063,0.000063,0.000063,0.000012,0.000669,0.000589,0.000744,0.000000,0.000000,0.005154,0.308491,-0.002420,1.000000,0.000041 +29,2022-08-02 05:00:00,0.000984,0.000063,0.000063,0.000063,0.000013,0.000658,0.000582,0.000734,0.000000,0.000000,0.005078,0.306109,-0.002381,1.000000,0.000041 +30,2022-08-02 06:00:00,0.000980,0.000062,0.000062,0.000062,0.000014,0.000648,0.000576,0.000724,0.000000,0.000000,0.005006,0.303763,-0.002346,1.000000,0.000040 +31,2022-08-02 07:00:00,0.000000,0.000028,0.000000,0.000028,0.000015,0.000638,0.000566,0.000681,0.000000,0.000000,0.004934,0.300551,-0.003212,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000015,0.000628,0.000557,0.000656,0.000000,0.000000,0.004863,0.297391,-0.003160,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000619,0.000548,0.000635,0.000000,0.000000,0.004792,0.294282,-0.003109,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000609,0.000539,0.000626,0.000000,0.000000,0.004722,0.291224,-0.003059,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000600,0.000531,0.000618,0.000000,0.000000,0.004653,0.288214,-0.003009,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000590,0.000522,0.000609,0.000000,0.000000,0.004585,0.285253,-0.002961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000020,0.000581,0.000514,0.000601,0.000000,0.000000,0.004518,0.282438,-0.002815,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000572,0.000506,0.000593,0.000123,0.000123,0.004452,0.279548,-0.002890,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000563,0.000497,0.000585,0.000344,0.000344,0.004386,0.276488,-0.003061,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000093,0.000000,0.000000,0.000000,0.000023,0.000554,0.000488,0.000577,0.000484,0.000484,0.004319,0.273332,-0.003156,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000545,0.000478,0.000569,0.000582,0.000582,0.004253,0.270102,-0.003231,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000025,0.000536,0.000469,0.000561,0.000661,0.000661,0.004186,0.267031,-0.003071,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000527,0.000460,0.000553,0.000611,0.000611,0.004119,0.263811,-0.003220,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000518,0.000451,0.000545,0.000536,0.000536,0.004053,0.260716,-0.003094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000509,0.000442,0.000537,0.000520,0.000520,0.003986,0.257688,-0.003028,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000500,0.000434,0.000529,0.000448,0.000448,0.003920,0.254779,-0.002909,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000491,0.000426,0.000521,0.000338,0.000338,0.003855,0.252026,-0.002753,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000483,0.000418,0.000514,0.000202,0.000202,0.003791,0.249451,-0.002575,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000474,0.000412,0.000507,0.000047,0.000047,0.003728,0.247069,-0.002381,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000466,0.000405,0.000500,0.000000,0.000000,0.003667,0.244773,-0.002297,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000458,0.000398,0.000493,0.000000,0.000000,0.003607,0.242513,-0.002259,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000450,0.000392,0.000486,0.000000,0.000000,0.003549,0.240290,-0.002223,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000443,0.000386,0.000480,0.000000,0.000000,0.003492,0.238103,-0.002187,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000435,0.000379,0.000473,0.000000,0.000000,0.003436,0.235952,-0.002152,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000428,0.000373,0.000467,0.000000,0.000000,0.003382,0.233835,-0.002117,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000421,0.000367,0.000461,0.000000,0.000000,0.003328,0.231752,-0.002083,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000414,0.000361,0.000456,0.000000,0.000000,0.003275,0.229703,-0.002049,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000407,0.000356,0.000450,0.000000,0.000000,0.003224,0.227686,-0.002016,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000400,0.000350,0.000445,0.000000,0.000000,0.003173,0.225703,-0.001984,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000394,0.000344,0.000439,0.000000,0.000000,0.003123,0.223751,-0.001952,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000387,0.000339,0.000434,0.000000,0.000000,0.003074,0.221831,-0.001920,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000381,0.000333,0.000429,0.000141,0.000141,0.003026,0.219804,-0.002028,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000375,0.000326,0.000424,0.000402,0.000402,0.002977,0.217552,-0.002252,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000368,0.000319,0.000419,0.000561,0.000561,0.002928,0.215179,-0.002372,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000362,0.000312,0.000413,0.000667,0.000667,0.002879,0.212741,-0.002438,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000355,0.000305,0.000408,0.000685,0.000685,0.002829,0.210325,-0.002416,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000349,0.000299,0.000403,0.000642,0.000642,0.002778,0.207991,-0.002335,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000753,0.000001,0.000002,0.000001,0.000055,0.000342,0.000294,0.000399,0.000551,0.000551,0.002730,0.206521,-0.001470,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000203,0.000001,0.000000,0.000001,0.000056,0.000336,0.000289,0.000393,0.000516,0.000516,0.002683,0.204571,-0.001950,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000330,0.000283,0.000388,0.000446,0.000446,0.002635,0.202522,-0.002049,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000324,0.000277,0.000383,0.000338,0.000338,0.002588,0.200612,-0.001910,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000318,0.000272,0.000378,0.000205,0.000205,0.002542,0.198864,-0.001748,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000312,0.000268,0.000374,0.000060,0.000060,0.002498,0.197287,-0.001577,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000307,0.000263,0.000370,0.000000,0.000000,0.002454,0.195794,-0.001493,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000301,0.000259,0.000365,0.000000,0.000000,0.002412,0.194326,-0.001469,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000296,0.000255,0.000361,0.000000,0.000000,0.002371,0.192881,-0.001445,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000291,0.000251,0.000357,0.000000,0.000000,0.002331,0.191459,-0.001422,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000286,0.000247,0.000354,0.000000,0.000000,0.002292,0.190061,-0.001399,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000281,0.000243,0.000350,0.000000,0.000000,0.002253,0.188685,-0.001376,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000276,0.000239,0.000347,0.000000,0.000000,0.002216,0.187331,-0.001354,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000271,0.000235,0.000343,0.000000,0.000000,0.002180,0.185999,-0.001332,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000267,0.000231,0.000340,0.000000,0.000000,0.002144,0.184688,-0.001310,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000262,0.000227,0.000337,0.000000,0.000000,0.002109,0.183399,-0.001289,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000258,0.000224,0.000334,0.000000,0.000000,0.002075,0.182130,-0.001269,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000254,0.000220,0.000331,0.000000,0.000000,0.002041,0.180882,-0.001248,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000249,0.000216,0.000328,0.000136,0.000136,0.002008,0.179521,-0.001362,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000245,0.000212,0.000325,0.000398,0.000398,0.001974,0.177923,-0.001598,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000241,0.000207,0.000322,0.000557,0.000557,0.001940,0.176195,-0.001728,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000236,0.000201,0.000319,0.000671,0.000671,0.001905,0.174382,-0.001813,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000232,0.000196,0.000315,0.000758,0.000758,0.001869,0.172513,-0.001869,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000227,0.000191,0.000312,0.000714,0.000714,0.001833,0.170717,-0.001796,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000222,0.000186,0.000309,0.000620,0.000620,0.001796,0.169044,-0.001673,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000218,0.000181,0.000305,0.000529,0.000529,0.001760,0.167487,-0.001557,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000213,0.000177,0.000302,0.000461,0.000461,0.001724,0.166022,-0.001465,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000209,0.000173,0.000299,0.000351,0.000351,0.001688,0.164689,-0.001334,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000204,0.000170,0.000296,0.000214,0.000214,0.001654,0.163511,-0.001177,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000200,0.000167,0.000293,0.000074,0.000074,0.001620,0.162491,-0.001020,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000196,0.000164,0.000290,0.000000,0.000000,0.001588,0.161560,-0.000931,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000192,0.000162,0.000288,0.000000,0.000000,0.001558,0.160644,-0.000916,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000189,0.000159,0.000285,0.000000,0.000000,0.001528,0.159743,-0.000901,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000185,0.000156,0.000283,0.000000,0.000000,0.001499,0.158857,-0.000887,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000181,0.000154,0.000281,0.000000,0.000000,0.001472,0.157984,-0.000872,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000178,0.000151,0.000279,0.000000,0.000000,0.001445,0.157126,-0.000858,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000175,0.000149,0.000277,0.000000,0.000000,0.001419,0.156282,-0.000844,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000172,0.000146,0.000275,0.000000,0.000000,0.001394,0.155451,-0.000831,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000169,0.000144,0.000273,0.000000,0.000000,0.001369,0.154634,-0.000817,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000166,0.000142,0.000271,0.000000,0.000000,0.001346,0.153830,-0.000804,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000163,0.000139,0.000270,0.000000,0.000000,0.001322,0.153039,-0.000791,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000160,0.000137,0.000268,0.000000,0.000000,0.001300,0.152260,-0.000778,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000157,0.000135,0.000266,0.000148,0.000148,0.001277,0.151349,-0.000912,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000154,0.000131,0.000265,0.000399,0.000399,0.001254,0.150205,-0.001143,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000151,0.000128,0.000263,0.000559,0.000559,0.001231,0.148923,-0.001282,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000148,0.000124,0.000261,0.000670,0.000670,0.001206,0.147552,-0.001371,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000145,0.000120,0.000260,0.000660,0.000660,0.001181,0.146213,-0.001339,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000116,0.000142,0.000116,0.000258,0.000618,0.000618,0.001155,0.144999,-0.001214,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000117,0.000139,0.000113,0.000256,0.000531,0.000531,0.001130,0.143891,-0.001108,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000118,0.000135,0.000110,0.000254,0.000474,0.000474,0.001104,0.142856,-0.001035,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000132,0.000107,0.000252,0.000388,0.000388,0.001079,0.141923,-0.000933,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000179,0.000000,0.000000,0.000000,0.000121,0.000129,0.000105,0.000250,0.000309,0.000309,0.001055,0.141196,-0.000727,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000080,0.000000,0.000000,0.000000,0.000122,0.000126,0.000103,0.000248,0.000191,0.000191,0.001032,0.140499,-0.000696,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000638,0.000009,0.000016,0.000009,0.000123,0.000124,0.000103,0.000256,0.000074,0.000074,0.001011,0.140462,-0.000037,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000801,0.000022,0.000032,0.000022,0.000124,0.000122,0.000104,0.000268,0.000000,0.000000,0.000993,0.140643,0.000181,1.000000,0.000018 +123,2022-08-06 03:00:00,0.000651,0.000023,0.000022,0.000023,0.000126,0.000120,0.000104,0.000269,0.000000,0.000000,0.000977,0.140685,0.000041,1.000000,0.000016 +124,2022-08-06 04:00:00,0.000500,0.000019,0.000013,0.000019,0.000127,0.000118,0.000103,0.000264,0.000000,0.000000,0.000963,0.140585,-0.000100,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000511,0.000015,0.000013,0.000015,0.000128,0.000116,0.000103,0.000259,0.000000,0.000000,0.000950,0.140497,-0.000088,1.000000,0.000009 +126,2022-08-06 06:00:00,0.000513,0.000013,0.000013,0.000013,0.000129,0.000115,0.000103,0.000257,0.000000,0.000000,0.000938,0.140413,-0.000085,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000131,0.000113,0.000101,0.000250,0.000000,0.000000,0.000926,0.139838,-0.000574,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000132,0.000112,0.000100,0.000246,0.000000,0.000000,0.000914,0.139273,-0.000565,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000110,0.000098,0.000243,0.000000,0.000000,0.000902,0.138717,-0.000556,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000109,0.000096,0.000243,0.000000,0.000000,0.000889,0.138170,-0.000547,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000107,0.000095,0.000243,0.000000,0.000000,0.000877,0.137631,-0.000538,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000106,0.000093,0.000242,0.000000,0.000000,0.000865,0.137102,-0.000530,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000104,0.000092,0.000242,0.000000,0.000000,0.000852,0.136581,-0.000521,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000103,0.000090,0.000242,0.000130,0.000130,0.000840,0.135941,-0.000640,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000101,0.000087,0.000241,0.000382,0.000382,0.000826,0.135062,-0.000878,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000099,0.000085,0.000240,0.000545,0.000545,0.000812,0.134038,-0.001024,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000097,0.000081,0.000240,0.000657,0.000657,0.000796,0.132920,-0.001118,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000095,0.000078,0.000239,0.000744,0.000744,0.000778,0.131734,-0.001186,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000093,0.000075,0.000238,0.000698,0.000698,0.000760,0.130613,-0.001121,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000090,0.000072,0.000236,0.000608,0.000608,0.000741,0.129599,-0.001014,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000088,0.000069,0.000235,0.000537,0.000537,0.000722,0.128671,-0.000928,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000086,0.000067,0.000234,0.000459,0.000459,0.000703,0.127834,-0.000836,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000083,0.000064,0.000233,0.000349,0.000349,0.000684,0.127120,-0.000715,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000081,0.000063,0.000232,0.000206,0.000206,0.000666,0.126557,-0.000563,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000079,0.000062,0.000231,0.000060,0.000060,0.000648,0.126147,-0.000410,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000077,0.000061,0.000230,0.000000,0.000000,0.000632,0.125803,-0.000344,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000075,0.000060,0.000229,0.000000,0.000000,0.000617,0.125464,-0.000339,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000073,0.000059,0.000228,0.000000,0.000000,0.000602,0.125131,-0.000333,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000072,0.000058,0.000228,0.000000,0.000000,0.000588,0.124803,-0.000328,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000070,0.000057,0.000227,0.000000,0.000000,0.000575,0.124481,-0.000322,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000068,0.000056,0.000227,0.000000,0.000000,0.000562,0.124164,-0.000317,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000067,0.000055,0.000226,0.000000,0.000000,0.000551,0.123852,-0.000312,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000066,0.000054,0.000226,0.000000,0.000000,0.000539,0.123544,-0.000307,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000064,0.000053,0.000226,0.000000,0.000000,0.000528,0.123242,-0.000302,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000063,0.000052,0.000225,0.000000,0.000000,0.000518,0.122945,-0.000297,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000062,0.000052,0.000225,0.000000,0.000000,0.000507,0.122653,-0.000292,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000061,0.000051,0.000225,0.000000,0.000000,0.000498,0.122365,-0.000288,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000059,0.000050,0.000225,0.000127,0.000127,0.000488,0.121957,-0.000408,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000058,0.000048,0.000225,0.000381,0.000381,0.000477,0.121305,-0.000652,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000057,0.000045,0.000224,0.000548,0.000548,0.000466,0.120500,-0.000805,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000055,0.000043,0.000224,0.000656,0.000656,0.000454,0.119601,-0.000899,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000053,0.000040,0.000223,0.000728,0.000728,0.000440,0.118646,-0.000955,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000052,0.000037,0.000223,0.000676,0.000676,0.000426,0.117758,-0.000888,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000050,0.000035,0.000222,0.000589,0.000589,0.000411,0.116969,-0.000788,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000033,0.000221,0.000544,0.000544,0.000396,0.116238,-0.000731,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000031,0.000220,0.000466,0.000466,0.000381,0.115595,-0.000643,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000030,0.000219,0.000353,0.000353,0.000366,0.115074,-0.000521,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000029,0.000219,0.000181,0.000181,0.000352,0.114731,-0.000343,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000028,0.000218,0.000026,0.000026,0.000339,0.114546,-0.000185,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000028,0.000217,0.000000,0.000000,0.000327,0.114389,-0.000157,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000027,0.000217,0.000000,0.000000,0.000316,0.114235,-0.000154,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000027,0.000217,0.000000,0.000000,0.000305,0.114083,-0.000152,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000026,0.000217,0.000000,0.000000,0.000296,0.113934,-0.000149,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000026,0.000216,0.000000,0.000000,0.000287,0.113787,-0.000147,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000025,0.000216,0.000000,0.000000,0.000279,0.113642,-0.000145,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000025,0.000216,0.000000,0.000000,0.000271,0.113500,-0.000142,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000032,0.000025,0.000216,0.000000,0.000000,0.000264,0.113360,-0.000140,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000031,0.000024,0.000217,0.000000,0.000000,0.000257,0.113222,-0.000138,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000030,0.000024,0.000217,0.000000,0.000000,0.000250,0.113087,-0.000135,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000030,0.000024,0.000217,0.000000,0.000000,0.000244,0.112954,-0.000133,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000029,0.000023,0.000217,0.000000,0.000000,0.000238,0.112822,-0.000131,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000028,0.000022,0.000217,0.000110,0.000110,0.000233,0.112585,-0.000237,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000021,0.000217,0.000369,0.000369,0.000226,0.112097,-0.000489,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000019,0.000217,0.000536,0.000536,0.000219,0.111452,-0.000645,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000025,0.000017,0.000217,0.000646,0.000646,0.000210,0.110710,-0.000742,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000024,0.000015,0.000217,0.000732,0.000732,0.000201,0.109895,-0.000815,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000023,0.000012,0.000217,0.000690,0.000690,0.000190,0.109134,-0.000760,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000022,0.000011,0.000216,0.000592,0.000592,0.000179,0.108483,-0.000651,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000020,0.000009,0.000216,0.000533,0.000533,0.000168,0.107899,-0.000584,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000019,0.000007,0.000215,0.000467,0.000467,0.000156,0.107391,-0.000509,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000018,0.000006,0.000214,0.000353,0.000353,0.000145,0.107002,-0.000388,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000016,0.000006,0.000214,0.000203,0.000203,0.000134,0.106768,-0.000234,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000015,0.000005,0.000214,0.000046,0.000046,0.000125,0.106691,-0.000077,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000014,0.000005,0.000213,0.000000,0.000000,0.000116,0.106661,-0.000030,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000013,0.000005,0.000213,0.000000,0.000000,0.000108,0.106632,-0.000030,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000012,0.000005,0.000213,0.000000,0.000000,0.000101,0.106603,-0.000029,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000011,0.000005,0.000213,0.000000,0.000000,0.000094,0.106574,-0.000029,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000011,0.000005,0.000213,0.000000,0.000000,0.000089,0.106546,-0.000028,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000010,0.000005,0.000214,0.000000,0.000000,0.000083,0.106518,-0.000028,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000010,0.000005,0.000214,0.000000,0.000000,0.000079,0.106491,-0.000027,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000009,0.000005,0.000214,0.000000,0.000000,0.000074,0.106464,-0.000027,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000009,0.000005,0.000214,0.000000,0.000000,0.000071,0.106438,-0.000026,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000008,0.000005,0.000215,0.000000,0.000000,0.000067,0.106412,-0.000026,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000008,0.000004,0.000215,0.000000,0.000000,0.000064,0.106387,-0.000026,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000007,0.000004,0.000216,0.000000,0.000000,0.000061,0.106361,-0.000025,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000007,0.000004,0.000216,0.000120,0.000120,0.000058,0.106219,-0.000143,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620777.csv b/test/channel_loss/channel_forcing/et/cat-2620777.csv new file mode 100644 index 000000000..fcda55457 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620777.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000190,0.000000,0.000000,0.000000,0.000000,0.001470,0.000356,0.001470,0.000172,0.000172,0.010483,0.425762,-0.004807,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001315,0.000351,0.001315,0.000050,0.000050,0.009519,0.420955,-0.004807,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001185,0.000346,0.001185,0.000000,0.000000,0.008680,0.416264,-0.004691,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001073,0.000341,0.001074,0.000000,0.000000,0.007948,0.411638,-0.004626,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000978,0.000337,0.000978,0.000000,0.000000,0.007307,0.407076,-0.004562,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000895,0.000332,0.000896,0.000000,0.000000,0.006744,0.402578,-0.004498,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000823,0.000327,0.000824,0.000000,0.000000,0.006248,0.398142,-0.004436,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000323,0.000762,0.000000,0.000000,0.005810,0.393767,-0.004375,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000706,0.000318,0.000707,0.000000,0.000000,0.005422,0.389453,-0.004314,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000658,0.000314,0.000660,0.000000,0.000000,0.005078,0.385199,-0.004254,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000616,0.000310,0.000618,0.000000,0.000000,0.004772,0.381004,-0.004195,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000578,0.000305,0.000580,0.000000,0.000000,0.004499,0.376868,-0.004137,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000545,0.000301,0.000548,0.000000,0.000000,0.004255,0.372788,-0.004079,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000516,0.000297,0.000518,0.000000,0.000000,0.004036,0.368765,-0.004023,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000489,0.000293,0.000492,0.000135,0.000135,0.003840,0.364665,-0.004101,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000465,0.000288,0.000469,0.000377,0.000377,0.003663,0.360383,-0.004282,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000444,0.000284,0.000448,0.000526,0.000526,0.003503,0.356013,-0.004369,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000425,0.000279,0.000430,0.000613,0.000613,0.003357,0.351619,-0.004394,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000407,0.000275,0.000413,0.000535,0.000535,0.003224,0.347362,-0.004257,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000391,0.000271,0.000397,0.000484,0.000484,0.003104,0.343526,-0.003836,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000280,0.000000,0.000000,0.000000,0.000007,0.000377,0.000267,0.000384,0.000430,0.000430,0.002994,0.339761,-0.003765,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000362,0.000000,0.000000,0.000000,0.000007,0.000364,0.000263,0.000371,0.000363,0.000363,0.002893,0.336195,-0.003566,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000263,0.000000,0.000000,0.000000,0.000008,0.000352,0.000259,0.000360,0.000323,0.000323,0.002801,0.332621,-0.003574,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000280,0.000000,0.000000,0.000000,0.000009,0.000341,0.000256,0.000350,0.000245,0.000245,0.002716,0.329190,-0.003432,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000321,0.000003,0.000005,0.000003,0.000010,0.000330,0.000252,0.000343,0.000155,0.000155,0.002638,0.325931,-0.003259,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000929,0.000067,0.000120,0.000067,0.000010,0.000321,0.000250,0.000399,0.000067,0.000067,0.002567,0.323289,-0.002642,1.000000,0.000055 +26,2022-08-02 02:00:00,0.001008,0.000119,0.000160,0.000119,0.000011,0.000313,0.000247,0.000443,0.000000,0.000000,0.002501,0.320788,-0.002500,1.000000,0.000096 +27,2022-08-02 03:00:00,0.000944,0.000142,0.000141,0.000142,0.000012,0.000305,0.000245,0.000459,0.000000,0.000000,0.002441,0.318278,-0.002510,1.000000,0.000096 +28,2022-08-02 04:00:00,0.000970,0.000149,0.000148,0.000149,0.000013,0.000298,0.000242,0.000459,0.000000,0.000000,0.002385,0.315822,-0.002456,1.000000,0.000095 +29,2022-08-02 05:00:00,0.000912,0.000138,0.000132,0.000138,0.000014,0.000291,0.000239,0.000442,0.000000,0.000000,0.002334,0.313360,-0.002463,1.000000,0.000089 +30,2022-08-02 06:00:00,0.000907,0.000134,0.000130,0.000134,0.000015,0.000285,0.000237,0.000433,0.000000,0.000000,0.002286,0.310928,-0.002432,1.000000,0.000085 +31,2022-08-02 07:00:00,0.000000,0.000059,0.000000,0.000059,0.000015,0.000279,0.000234,0.000353,0.000000,0.000000,0.002240,0.307763,-0.003165,1.000000,0.000026 +32,2022-08-02 08:00:00,0.000000,0.000026,0.000000,0.000026,0.000016,0.000274,0.000230,0.000316,0.000000,0.000000,0.002197,0.304642,-0.003121,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000268,0.000227,0.000286,0.000000,0.000000,0.002156,0.301565,-0.003078,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000263,0.000224,0.000281,0.000000,0.000000,0.002117,0.298530,-0.003035,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000258,0.000221,0.000278,0.000000,0.000000,0.002079,0.295537,-0.002993,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000254,0.000218,0.000274,0.000000,0.000000,0.002043,0.292586,-0.002951,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000021,0.000249,0.000215,0.000272,0.000000,0.000000,0.002009,0.289773,-0.002813,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000245,0.000212,0.000268,0.000119,0.000119,0.001975,0.286883,-0.002890,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000241,0.000209,0.000265,0.000329,0.000329,0.001943,0.283826,-0.003057,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000085,0.000000,0.000000,0.000000,0.000024,0.000237,0.000205,0.000261,0.000456,0.000456,0.001912,0.280671,-0.003155,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000233,0.000202,0.000259,0.000540,0.000540,0.001881,0.277457,-0.003215,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000027,0.000229,0.000199,0.000256,0.000600,0.000600,0.001850,0.274414,-0.003043,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000007,0.000000,0.000000,0.000000,0.000028,0.000225,0.000196,0.000253,0.000538,0.000538,0.001821,0.271233,-0.003181,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000222,0.000192,0.000251,0.000486,0.000486,0.001791,0.268139,-0.003094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000218,0.000189,0.000248,0.000490,0.000490,0.001762,0.265085,-0.003054,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000215,0.000186,0.000246,0.000423,0.000423,0.001734,0.262139,-0.002946,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000211,0.000183,0.000243,0.000315,0.000315,0.001706,0.259340,-0.002799,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000208,0.000181,0.000241,0.000182,0.000182,0.001679,0.256711,-0.002629,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000204,0.000178,0.000239,0.000037,0.000037,0.001653,0.254262,-0.002449,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000201,0.000176,0.000237,0.000000,0.000000,0.001628,0.251884,-0.002379,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000198,0.000173,0.000235,0.000000,0.000000,0.001603,0.249538,-0.002346,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000195,0.000171,0.000233,0.000000,0.000000,0.001579,0.247225,-0.002313,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000192,0.000168,0.000232,0.000000,0.000000,0.001555,0.244944,-0.002281,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000189,0.000166,0.000230,0.000000,0.000000,0.001532,0.242694,-0.002249,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000186,0.000164,0.000229,0.000000,0.000000,0.001510,0.240476,-0.002218,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000183,0.000161,0.000227,0.000000,0.000000,0.001488,0.238289,-0.002187,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000181,0.000159,0.000226,0.000000,0.000000,0.001466,0.236132,-0.002157,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000178,0.000157,0.000224,0.000000,0.000000,0.001445,0.234004,-0.002127,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000175,0.000155,0.000223,0.000000,0.000000,0.001425,0.231907,-0.002098,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000173,0.000153,0.000222,0.000000,0.000000,0.001404,0.229838,-0.002069,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000170,0.000151,0.000221,0.000000,0.000000,0.001385,0.227798,-0.002040,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000168,0.000148,0.000220,0.000130,0.000130,0.001365,0.225659,-0.002140,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000166,0.000146,0.000218,0.000377,0.000377,0.001345,0.223305,-0.002354,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000163,0.000143,0.000217,0.000523,0.000523,0.001326,0.220840,-0.002465,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000161,0.000141,0.000216,0.000619,0.000619,0.001306,0.218314,-0.002525,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000158,0.000138,0.000215,0.000613,0.000613,0.001286,0.215830,-0.002485,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000156,0.000136,0.000214,0.000557,0.000557,0.001266,0.213435,-0.002395,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000714,0.000004,0.000008,0.000004,0.000060,0.000153,0.000134,0.000217,0.000490,0.000490,0.001247,0.211836,-0.001599,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000189,0.000002,0.000000,0.000002,0.000061,0.000151,0.000132,0.000214,0.000476,0.000476,0.001228,0.209764,-0.002072,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000063,0.000148,0.000130,0.000213,0.000413,0.000413,0.001209,0.207595,-0.002168,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000146,0.000127,0.000210,0.000308,0.000308,0.001190,0.205560,-0.002035,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000144,0.000126,0.000209,0.000187,0.000187,0.001172,0.203673,-0.001887,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000142,0.000124,0.000209,0.000050,0.000050,0.001154,0.201947,-0.001727,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000139,0.000122,0.000208,0.000000,0.000000,0.001137,0.200294,-0.001653,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000137,0.000120,0.000207,0.000000,0.000000,0.001120,0.198664,-0.001630,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000135,0.000119,0.000207,0.000000,0.000000,0.001103,0.197056,-0.001607,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000133,0.000117,0.000206,0.000000,0.000000,0.001087,0.195471,-0.001585,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000131,0.000115,0.000205,0.000000,0.000000,0.001071,0.193908,-0.001563,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000129,0.000114,0.000205,0.000000,0.000000,0.001055,0.192366,-0.001541,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000127,0.000112,0.000204,0.000000,0.000000,0.001040,0.190846,-0.001520,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000126,0.000111,0.000204,0.000000,0.000000,0.001025,0.189347,-0.001499,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000124,0.000109,0.000204,0.000000,0.000000,0.001010,0.187869,-0.001478,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000122,0.000108,0.000203,0.000000,0.000000,0.000996,0.186411,-0.001458,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000120,0.000106,0.000203,0.000000,0.000000,0.000982,0.184974,-0.001437,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000119,0.000105,0.000203,0.000000,0.000000,0.000968,0.183556,-0.001418,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000117,0.000103,0.000203,0.000126,0.000126,0.000954,0.182034,-0.001523,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000115,0.000101,0.000202,0.000373,0.000373,0.000941,0.180289,-0.001745,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000113,0.000099,0.000202,0.000522,0.000522,0.000926,0.178421,-0.001868,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000112,0.000097,0.000202,0.000618,0.000618,0.000912,0.176485,-0.001936,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000110,0.000095,0.000202,0.000689,0.000689,0.000898,0.174506,-0.001979,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000108,0.000093,0.000201,0.000632,0.000632,0.000883,0.172610,-0.001896,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000106,0.000091,0.000201,0.000553,0.000553,0.000868,0.170819,-0.001792,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000104,0.000090,0.000201,0.000505,0.000505,0.000854,0.169100,-0.001719,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000103,0.000088,0.000200,0.000441,0.000441,0.000839,0.167467,-0.001632,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000101,0.000086,0.000200,0.000329,0.000329,0.000825,0.165967,-0.001500,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000099,0.000085,0.000200,0.000195,0.000195,0.000811,0.164621,-0.001346,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000097,0.000084,0.000199,0.000060,0.000060,0.000797,0.163427,-0.001194,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000096,0.000083,0.000199,0.000000,0.000000,0.000784,0.162308,-0.001119,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000094,0.000081,0.000199,0.000000,0.000000,0.000771,0.161205,-0.001103,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000093,0.000080,0.000199,0.000000,0.000000,0.000759,0.160117,-0.001088,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000091,0.000079,0.000199,0.000000,0.000000,0.000747,0.159045,-0.001073,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000090,0.000078,0.000199,0.000000,0.000000,0.000735,0.157987,-0.001058,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000088,0.000077,0.000199,0.000000,0.000000,0.000724,0.156944,-0.001043,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000087,0.000076,0.000199,0.000000,0.000000,0.000713,0.155915,-0.001029,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000086,0.000075,0.000200,0.000000,0.000000,0.000702,0.154900,-0.001014,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000084,0.000074,0.000200,0.000000,0.000000,0.000692,0.153900,-0.001000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000083,0.000073,0.000200,0.000000,0.000000,0.000681,0.152913,-0.000986,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000082,0.000072,0.000200,0.000000,0.000000,0.000671,0.151941,-0.000973,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000081,0.000071,0.000201,0.000000,0.000000,0.000661,0.150981,-0.000959,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000079,0.000070,0.000201,0.000138,0.000138,0.000652,0.149900,-0.001082,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000078,0.000068,0.000201,0.000375,0.000375,0.000642,0.148599,-0.001301,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000077,0.000067,0.000201,0.000522,0.000522,0.000632,0.147171,-0.001428,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000076,0.000065,0.000201,0.000623,0.000623,0.000621,0.145664,-0.001507,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000074,0.000064,0.000202,0.000602,0.000602,0.000611,0.144198,-0.001466,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000073,0.000062,0.000202,0.000553,0.000553,0.000600,0.142863,-0.001335,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000072,0.000061,0.000202,0.000487,0.000487,0.000589,0.141611,-0.001252,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000070,0.000060,0.000202,0.000457,0.000457,0.000579,0.140407,-0.001204,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000069,0.000059,0.000202,0.000377,0.000377,0.000568,0.139298,-0.001108,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000148,0.000000,0.000000,0.000000,0.000134,0.000068,0.000058,0.000202,0.000292,0.000292,0.000558,0.138371,-0.000927,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000067,0.000057,0.000203,0.000178,0.000178,0.000548,0.137488,-0.000884,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000441,0.000010,0.000019,0.000010,0.000137,0.000066,0.000056,0.000213,0.000064,0.000064,0.000539,0.137083,-0.000405,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000743,0.000043,0.000070,0.000043,0.000139,0.000065,0.000056,0.000246,0.000000,0.000000,0.000531,0.136993,-0.000089,1.000000,0.000035 +123,2022-08-06 03:00:00,0.000601,0.000047,0.000046,0.000047,0.000140,0.000064,0.000056,0.000251,0.000000,0.000000,0.000523,0.136788,-0.000205,1.000000,0.000035 +124,2022-08-06 04:00:00,0.000557,0.000048,0.000040,0.000048,0.000142,0.000063,0.000056,0.000252,0.000000,0.000000,0.000516,0.136549,-0.000239,1.000000,0.000027 +125,2022-08-06 05:00:00,0.000584,0.000043,0.000044,0.000043,0.000143,0.000062,0.000056,0.000249,0.000000,0.000000,0.000510,0.136335,-0.000214,1.000000,0.000028 +126,2022-08-06 06:00:00,0.000584,0.000043,0.000044,0.000043,0.000145,0.000061,0.000055,0.000249,0.000000,0.000000,0.000504,0.136125,-0.000211,1.000000,0.000028 +127,2022-08-06 07:00:00,0.000000,0.000020,0.000000,0.000020,0.000146,0.000061,0.000055,0.000226,0.000000,0.000000,0.000498,0.135385,-0.000740,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000147,0.000060,0.000054,0.000216,0.000000,0.000000,0.000492,0.134655,-0.000730,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000059,0.000053,0.000208,0.000000,0.000000,0.000486,0.133935,-0.000720,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000058,0.000052,0.000209,0.000000,0.000000,0.000480,0.133226,-0.000710,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000058,0.000052,0.000209,0.000000,0.000000,0.000474,0.132526,-0.000700,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000057,0.000051,0.000210,0.000000,0.000000,0.000468,0.131836,-0.000690,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000056,0.000050,0.000211,0.000000,0.000000,0.000462,0.131156,-0.000680,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000055,0.000049,0.000211,0.000122,0.000122,0.000456,0.130365,-0.000791,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000055,0.000048,0.000212,0.000359,0.000359,0.000450,0.129351,-0.001014,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000054,0.000047,0.000212,0.000504,0.000504,0.000443,0.128208,-0.001143,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000053,0.000046,0.000213,0.000599,0.000599,0.000436,0.126988,-0.001221,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000052,0.000045,0.000213,0.000666,0.000666,0.000428,0.125717,-0.001270,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000051,0.000043,0.000214,0.000615,0.000615,0.000421,0.124516,-0.001202,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000050,0.000042,0.000214,0.000545,0.000545,0.000413,0.123400,-0.001116,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000049,0.000041,0.000215,0.000508,0.000508,0.000405,0.122335,-0.001064,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000048,0.000040,0.000215,0.000434,0.000434,0.000397,0.121359,-0.000976,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000047,0.000039,0.000215,0.000325,0.000325,0.000389,0.120504,-0.000855,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000046,0.000038,0.000216,0.000187,0.000187,0.000381,0.119796,-0.000708,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000045,0.000038,0.000216,0.000049,0.000049,0.000373,0.119234,-0.000562,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000044,0.000037,0.000217,0.000000,0.000000,0.000366,0.118729,-0.000506,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000037,0.000217,0.000000,0.000000,0.000359,0.118230,-0.000499,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000043,0.000036,0.000218,0.000000,0.000000,0.000353,0.117738,-0.000492,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000042,0.000036,0.000218,0.000000,0.000000,0.000346,0.117253,-0.000485,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000035,0.000219,0.000000,0.000000,0.000340,0.116775,-0.000478,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000041,0.000035,0.000219,0.000000,0.000000,0.000335,0.116304,-0.000472,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000040,0.000034,0.000220,0.000000,0.000000,0.000329,0.115839,-0.000465,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000034,0.000221,0.000000,0.000000,0.000324,0.115380,-0.000459,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000033,0.000221,0.000000,0.000000,0.000318,0.114928,-0.000452,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000038,0.000033,0.000222,0.000000,0.000000,0.000313,0.114482,-0.000446,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000032,0.000223,0.000000,0.000000,0.000308,0.114042,-0.000440,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000032,0.000223,0.000000,0.000000,0.000304,0.113609,-0.000434,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000031,0.000224,0.000117,0.000117,0.000299,0.113066,-0.000543,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000036,0.000031,0.000225,0.000355,0.000355,0.000294,0.112296,-0.000770,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000030,0.000225,0.000505,0.000505,0.000288,0.111389,-0.000907,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000029,0.000226,0.000604,0.000604,0.000283,0.110396,-0.000993,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000034,0.000028,0.000226,0.000655,0.000655,0.000277,0.109367,-0.001029,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000027,0.000227,0.000601,0.000601,0.000271,0.108406,-0.000961,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000026,0.000227,0.000528,0.000528,0.000264,0.107529,-0.000876,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000025,0.000228,0.000513,0.000513,0.000258,0.106680,-0.000849,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000228,0.000441,0.000441,0.000251,0.105914,-0.000767,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000023,0.000229,0.000325,0.000325,0.000245,0.105272,-0.000641,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000023,0.000229,0.000162,0.000162,0.000239,0.104800,-0.000472,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000023,0.000230,0.000019,0.000019,0.000233,0.104476,-0.000324,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000022,0.000230,0.000000,0.000000,0.000228,0.104175,-0.000301,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000231,0.000000,0.000000,0.000223,0.103878,-0.000297,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000231,0.000000,0.000000,0.000218,0.103586,-0.000293,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000000,0.000000,0.000213,0.103297,-0.000289,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000233,0.000000,0.000000,0.000209,0.103013,-0.000285,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000021,0.000233,0.000000,0.000000,0.000205,0.102732,-0.000281,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000234,0.000000,0.000000,0.000201,0.102455,-0.000277,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000000,0.000000,0.000197,0.102182,-0.000273,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000020,0.000235,0.000000,0.000000,0.000194,0.101913,-0.000269,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000020,0.000236,0.000000,0.000000,0.000190,0.101648,-0.000265,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000000,0.000000,0.000187,0.101386,-0.000262,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000238,0.000000,0.000000,0.000184,0.101128,-0.000258,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000019,0.000238,0.000101,0.000101,0.000181,0.100775,-0.000354,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000344,0.000344,0.000177,0.100186,-0.000589,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000017,0.000240,0.000496,0.000496,0.000173,0.099455,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000021,0.000016,0.000240,0.000593,0.000593,0.000169,0.098640,-0.000816,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000016,0.000241,0.000662,0.000662,0.000165,0.097767,-0.000873,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000015,0.000241,0.000600,0.000600,0.000160,0.096968,-0.000799,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000014,0.000242,0.000532,0.000532,0.000155,0.096246,-0.000722,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000013,0.000242,0.000509,0.000509,0.000150,0.095557,-0.000688,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000013,0.000243,0.000437,0.000437,0.000146,0.094949,-0.000608,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000012,0.000243,0.000323,0.000323,0.000141,0.094462,-0.000487,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000012,0.000244,0.000183,0.000183,0.000136,0.094119,-0.000343,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000012,0.000244,0.000035,0.000035,0.000132,0.093927,-0.000192,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000011,0.000245,0.000000,0.000000,0.000128,0.093772,-0.000155,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000011,0.000245,0.000000,0.000000,0.000124,0.093620,-0.000152,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000011,0.000246,0.000000,0.000000,0.000120,0.093469,-0.000150,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000011,0.000247,0.000000,0.000000,0.000117,0.093321,-0.000148,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000011,0.000247,0.000000,0.000000,0.000114,0.093175,-0.000146,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000111,0.093031,-0.000144,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000010,0.000249,0.000000,0.000000,0.000109,0.092889,-0.000142,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000010,0.000249,0.000000,0.000000,0.000106,0.092749,-0.000140,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000010,0.000250,0.000000,0.000000,0.000104,0.092610,-0.000138,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000010,0.000251,0.000000,0.000000,0.000102,0.092474,-0.000136,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000010,0.000251,0.000000,0.000000,0.000099,0.092340,-0.000134,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000252,0.000000,0.000000,0.000097,0.092207,-0.000133,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000253,0.000111,0.000000,0.000096,0.092076,-0.000131,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620778.csv b/test/channel_loss/channel_forcing/et/cat-2620778.csv new file mode 100644 index 000000000..08bb39135 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620778.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000146,0.000000,0.000000,0.000000,0.000000,0.001498,0.000560,0.001498,0.000168,0.000168,0.010659,0.425677,-0.004893,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001367,0.000552,0.001367,0.000047,0.000047,0.009844,0.420833,-0.004844,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001255,0.000544,0.001255,0.000000,0.000000,0.009132,0.416107,-0.004726,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001159,0.000535,0.001159,0.000000,0.000000,0.008509,0.411452,-0.004655,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001075,0.000527,0.001076,0.000000,0.000000,0.007961,0.406866,-0.004586,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001003,0.000520,0.001003,0.000000,0.000000,0.007478,0.402349,-0.004517,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000940,0.000512,0.000940,0.000000,0.000000,0.007050,0.397899,-0.004450,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000884,0.000504,0.000885,0.000000,0.000000,0.006670,0.393515,-0.004383,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000835,0.000497,0.000836,0.000000,0.000000,0.006331,0.389197,-0.004318,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000792,0.000489,0.000793,0.000000,0.000000,0.006028,0.384944,-0.004253,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000753,0.000482,0.000755,0.000000,0.000000,0.005757,0.380754,-0.004190,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000719,0.000475,0.000721,0.000000,0.000000,0.005513,0.376627,-0.004127,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000688,0.000468,0.000690,0.000000,0.000000,0.005292,0.372561,-0.004066,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000660,0.000461,0.000663,0.000000,0.000000,0.005093,0.368556,-0.004005,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000635,0.000454,0.000638,0.000133,0.000133,0.004911,0.364480,-0.004076,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000612,0.000446,0.000616,0.000379,0.000379,0.004745,0.360222,-0.004258,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000591,0.000439,0.000595,0.000527,0.000527,0.004593,0.355882,-0.004340,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000572,0.000431,0.000577,0.000610,0.000610,0.004452,0.351525,-0.004357,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000554,0.000424,0.000559,0.000524,0.000524,0.004321,0.347318,-0.004207,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000538,0.000417,0.000544,0.000470,0.000470,0.004201,0.343538,-0.003780,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000272,0.000000,0.000000,0.000000,0.000007,0.000523,0.000411,0.000529,0.000421,0.000421,0.004089,0.339820,-0.003718,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000414,0.000000,0.000000,0.000000,0.000007,0.000509,0.000405,0.000516,0.000360,0.000360,0.003985,0.336356,-0.003464,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000266,0.000000,0.000000,0.000000,0.000008,0.000496,0.000398,0.000503,0.000320,0.000320,0.003888,0.332839,-0.003517,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000307,0.000000,0.000000,0.000000,0.000008,0.000483,0.000393,0.000492,0.000243,0.000243,0.003797,0.329490,-0.003349,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000272,0.000001,0.000002,0.000001,0.000009,0.000472,0.000387,0.000482,0.000154,0.000154,0.003712,0.326243,-0.003247,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000676,0.000023,0.000040,0.000023,0.000010,0.000461,0.000382,0.000494,0.000066,0.000066,0.003633,0.323490,-0.002752,1.000000,0.000018 +26,2022-08-02 02:00:00,0.001106,0.000079,0.000125,0.000079,0.000011,0.000452,0.000378,0.000542,0.000000,0.000000,0.003559,0.321185,-0.002306,1.000000,0.000064 +27,2022-08-02 03:00:00,0.001040,0.000100,0.000111,0.000100,0.000011,0.000442,0.000374,0.000554,0.000000,0.000000,0.003491,0.318862,-0.002323,1.000000,0.000075 +28,2022-08-02 04:00:00,0.001118,0.000123,0.000127,0.000123,0.000012,0.000434,0.000370,0.000569,0.000000,0.000000,0.003427,0.316635,-0.002227,1.000000,0.000079 +29,2022-08-02 05:00:00,0.000979,0.000108,0.000098,0.000108,0.000013,0.000426,0.000366,0.000547,0.000000,0.000000,0.003367,0.314333,-0.002302,1.000000,0.000070 +30,2022-08-02 06:00:00,0.000908,0.000097,0.000085,0.000097,0.000014,0.000419,0.000362,0.000529,0.000000,0.000000,0.003311,0.312008,-0.002324,1.000000,0.000058 +31,2022-08-02 07:00:00,0.000000,0.000041,0.000000,0.000041,0.000015,0.000411,0.000357,0.000467,0.000000,0.000000,0.003256,0.308907,-0.003101,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000404,0.000351,0.000437,0.000000,0.000000,0.003203,0.305853,-0.003055,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000398,0.000346,0.000414,0.000000,0.000000,0.003152,0.302844,-0.003009,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000391,0.000341,0.000408,0.000000,0.000000,0.003102,0.299880,-0.002964,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000385,0.000336,0.000403,0.000000,0.000000,0.003053,0.296960,-0.002920,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000378,0.000331,0.000398,0.000000,0.000000,0.003005,0.294083,-0.002876,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000020,0.000372,0.000326,0.000393,0.000000,0.000000,0.002959,0.291347,-0.002736,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000366,0.000321,0.000388,0.000117,0.000117,0.002914,0.288538,-0.002809,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000361,0.000316,0.000383,0.000331,0.000331,0.002869,0.285560,-0.002978,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000355,0.000311,0.000378,0.000459,0.000459,0.002825,0.282500,-0.003060,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000349,0.000305,0.000373,0.000538,0.000538,0.002781,0.279408,-0.003092,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000368,0.000000,0.000000,0.000000,0.000025,0.000343,0.000300,0.000369,0.000592,0.000592,0.002738,0.276574,-0.002834,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000056,0.000000,0.000000,0.000000,0.000026,0.000338,0.000295,0.000364,0.000528,0.000528,0.002695,0.273537,-0.003037,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000332,0.000290,0.000360,0.000480,0.000480,0.002653,0.270537,-0.003000,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000327,0.000285,0.000355,0.000492,0.000492,0.002611,0.267571,-0.002966,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000321,0.000280,0.000351,0.000426,0.000426,0.002569,0.264714,-0.002857,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000316,0.000275,0.000347,0.000313,0.000313,0.002528,0.262011,-0.002704,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000311,0.000271,0.000343,0.000178,0.000178,0.002487,0.259481,-0.002530,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000306,0.000266,0.000339,0.000033,0.000033,0.002448,0.257132,-0.002349,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000301,0.000262,0.000335,0.000000,0.000000,0.002409,0.254850,-0.002282,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000296,0.000259,0.000331,0.000000,0.000000,0.002372,0.252603,-0.002248,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000291,0.000255,0.000328,0.000000,0.000000,0.002335,0.250389,-0.002214,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000287,0.000251,0.000324,0.000000,0.000000,0.002300,0.248208,-0.002181,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000282,0.000247,0.000321,0.000000,0.000000,0.002264,0.246059,-0.002148,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000278,0.000243,0.000318,0.000000,0.000000,0.002230,0.243943,-0.002116,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000273,0.000240,0.000315,0.000000,0.000000,0.002197,0.241858,-0.002085,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000269,0.000236,0.000312,0.000000,0.000000,0.002164,0.239804,-0.002054,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000265,0.000233,0.000309,0.000000,0.000000,0.002131,0.237782,-0.002023,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000261,0.000229,0.000306,0.000000,0.000000,0.002099,0.235789,-0.001993,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000257,0.000226,0.000303,0.000000,0.000000,0.002068,0.233826,-0.001963,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000253,0.000222,0.000301,0.000000,0.000000,0.002037,0.231892,-0.001934,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000249,0.000219,0.000298,0.000128,0.000128,0.002007,0.229862,-0.002030,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000245,0.000215,0.000295,0.000379,0.000379,0.001977,0.227614,-0.002248,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000241,0.000211,0.000293,0.000528,0.000528,0.001946,0.225253,-0.002361,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000238,0.000207,0.000290,0.000614,0.000614,0.001915,0.222842,-0.002411,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000234,0.000203,0.000288,0.000597,0.000597,0.001884,0.220484,-0.002358,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000230,0.000199,0.000285,0.000536,0.000536,0.001853,0.218221,-0.002263,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001178,0.000024,0.000044,0.000024,0.000057,0.000226,0.000197,0.000307,0.000482,0.000482,0.001824,0.217163,-0.001058,1.000000,0.000020 +69,2022-08-03 21:00:00,0.000189,0.000011,0.000000,0.000011,0.000058,0.000222,0.000193,0.000291,0.000473,0.000473,0.001795,0.215199,-0.001964,1.000000,0.000009 +70,2022-08-03 22:00:00,0.000000,0.000009,0.000000,0.000009,0.000059,0.000219,0.000190,0.000287,0.000410,0.000410,0.001766,0.213139,-0.002060,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000017,0.000000,0.000000,0.000000,0.000061,0.000215,0.000186,0.000276,0.000303,0.000303,0.001738,0.211233,-0.001906,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000211,0.000183,0.000273,0.000186,0.000186,0.001710,0.209453,-0.001780,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000208,0.000180,0.000271,0.000046,0.000046,0.001682,0.207838,-0.001615,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000205,0.000178,0.000269,0.000000,0.000000,0.001655,0.206292,-0.001546,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000201,0.000175,0.000267,0.000000,0.000000,0.001629,0.204770,-0.001523,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000198,0.000173,0.000265,0.000000,0.000000,0.001604,0.203270,-0.001500,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000195,0.000170,0.000263,0.000000,0.000000,0.001579,0.201793,-0.001477,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000192,0.000167,0.000262,0.000000,0.000000,0.001554,0.200337,-0.001455,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000189,0.000165,0.000260,0.000000,0.000000,0.001531,0.198903,-0.001434,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000186,0.000162,0.000258,0.000000,0.000000,0.001507,0.197491,-0.001412,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000183,0.000160,0.000257,0.000000,0.000000,0.001484,0.196100,-0.001391,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000180,0.000158,0.000255,0.000000,0.000000,0.001462,0.194730,-0.001370,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000177,0.000155,0.000254,0.000000,0.000000,0.001440,0.193380,-0.001350,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000175,0.000153,0.000253,0.000000,0.000000,0.001418,0.192050,-0.001330,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000172,0.000151,0.000251,0.000000,0.000000,0.001397,0.190740,-0.001310,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000169,0.000148,0.000250,0.000123,0.000123,0.001376,0.189328,-0.001412,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000167,0.000145,0.000249,0.000376,0.000376,0.001354,0.187689,-0.001639,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000164,0.000142,0.000247,0.000528,0.000528,0.001333,0.185924,-0.001765,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000161,0.000139,0.000246,0.000619,0.000619,0.001310,0.184096,-0.001828,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000158,0.000136,0.000245,0.000675,0.000675,0.001288,0.182240,-0.001856,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000156,0.000133,0.000243,0.000609,0.000609,0.001265,0.180477,-0.001763,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000153,0.000130,0.000242,0.000541,0.000541,0.001242,0.178807,-0.001670,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000150,0.000127,0.000240,0.000507,0.000507,0.001220,0.177195,-0.001612,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000147,0.000124,0.000239,0.000443,0.000443,0.001197,0.175670,-0.001525,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000144,0.000122,0.000237,0.000326,0.000326,0.001175,0.174283,-0.001387,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000142,0.000120,0.000236,0.000193,0.000193,0.001153,0.173049,-0.001234,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000139,0.000118,0.000235,0.000054,0.000054,0.001132,0.171970,-0.001079,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000136,0.000116,0.000234,0.000000,0.000000,0.001112,0.170960,-0.001010,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000134,0.000114,0.000233,0.000000,0.000000,0.001093,0.169965,-0.000995,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000132,0.000113,0.000232,0.000000,0.000000,0.001074,0.168984,-0.000980,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000129,0.000111,0.000231,0.000000,0.000000,0.001055,0.168019,-0.000966,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000127,0.000109,0.000230,0.000000,0.000000,0.001038,0.167068,-0.000951,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000125,0.000108,0.000229,0.000000,0.000000,0.001020,0.166131,-0.000937,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000123,0.000106,0.000228,0.000000,0.000000,0.001004,0.165208,-0.000923,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000121,0.000105,0.000228,0.000000,0.000000,0.000987,0.164299,-0.000909,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000119,0.000103,0.000227,0.000000,0.000000,0.000971,0.163403,-0.000896,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000117,0.000101,0.000227,0.000000,0.000000,0.000956,0.162521,-0.000882,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000115,0.000100,0.000226,0.000000,0.000000,0.000941,0.161652,-0.000869,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000113,0.000098,0.000226,0.000000,0.000000,0.000926,0.160796,-0.000856,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000111,0.000097,0.000225,0.000136,0.000136,0.000911,0.159818,-0.000977,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000110,0.000095,0.000225,0.000379,0.000379,0.000896,0.158616,-0.001202,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000108,0.000092,0.000224,0.000527,0.000527,0.000881,0.157286,-0.001330,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000106,0.000090,0.000223,0.000622,0.000622,0.000865,0.155882,-0.001404,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000104,0.000088,0.000223,0.000600,0.000600,0.000849,0.154521,-0.001361,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000102,0.000085,0.000222,0.000543,0.000543,0.000833,0.153299,-0.001223,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000122,0.000100,0.000083,0.000221,0.000487,0.000487,0.000816,0.152150,-0.001149,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000098,0.000081,0.000221,0.000467,0.000467,0.000800,0.151039,-0.001112,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000065,0.000000,0.000000,0.000000,0.000124,0.000096,0.000080,0.000220,0.000391,0.000391,0.000784,0.150020,-0.001019,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000158,0.000000,0.000000,0.000000,0.000126,0.000094,0.000078,0.000219,0.000296,0.000296,0.000768,0.149201,-0.000819,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000092,0.000077,0.000219,0.000177,0.000177,0.000753,0.148419,-0.000782,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000447,0.000007,0.000013,0.000007,0.000128,0.000090,0.000076,0.000225,0.000061,0.000061,0.000740,0.148128,-0.000291,1.000000,0.000006 +122,2022-08-06 02:00:00,0.000788,0.000031,0.000051,0.000031,0.000130,0.000089,0.000077,0.000249,0.000000,0.000000,0.000727,0.148201,0.000073,1.000000,0.000025 +123,2022-08-06 03:00:00,0.000554,0.000029,0.000025,0.000029,0.000131,0.000087,0.000076,0.000247,0.000000,0.000000,0.000716,0.148066,-0.000134,1.000000,0.000022 +124,2022-08-06 04:00:00,0.000513,0.000029,0.000022,0.000029,0.000132,0.000086,0.000076,0.000247,0.000000,0.000000,0.000706,0.147897,-0.000169,1.000000,0.000015 +125,2022-08-06 05:00:00,0.000522,0.000023,0.000023,0.000023,0.000134,0.000085,0.000076,0.000242,0.000000,0.000000,0.000697,0.147738,-0.000159,1.000000,0.000015 +126,2022-08-06 06:00:00,0.000522,0.000022,0.000023,0.000022,0.000135,0.000084,0.000075,0.000241,0.000000,0.000000,0.000688,0.147581,-0.000157,1.000000,0.000015 +127,2022-08-06 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000136,0.000083,0.000074,0.000229,0.000000,0.000000,0.000680,0.146935,-0.000646,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000137,0.000082,0.000073,0.000224,0.000000,0.000000,0.000671,0.146299,-0.000636,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000081,0.000072,0.000219,0.000000,0.000000,0.000662,0.145672,-0.000627,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000080,0.000071,0.000220,0.000000,0.000000,0.000654,0.145055,-0.000617,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000079,0.000070,0.000220,0.000000,0.000000,0.000645,0.144446,-0.000608,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000078,0.000069,0.000220,0.000000,0.000000,0.000636,0.143847,-0.000599,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000077,0.000068,0.000220,0.000000,0.000000,0.000628,0.143257,-0.000590,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000075,0.000067,0.000221,0.000119,0.000119,0.000619,0.142558,-0.000699,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000074,0.000065,0.000221,0.000364,0.000364,0.000610,0.141629,-0.000930,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000073,0.000063,0.000221,0.000512,0.000512,0.000600,0.140567,-0.001061,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000072,0.000061,0.000221,0.000601,0.000601,0.000589,0.139434,-0.001133,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000059,0.000221,0.000658,0.000658,0.000578,0.138261,-0.001173,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000069,0.000057,0.000220,0.000596,0.000596,0.000567,0.137167,-0.001094,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000068,0.000056,0.000220,0.000531,0.000531,0.000555,0.136153,-0.001013,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000066,0.000054,0.000220,0.000509,0.000509,0.000542,0.135176,-0.000977,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000065,0.000052,0.000220,0.000438,0.000438,0.000530,0.134284,-0.000892,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000063,0.000051,0.000219,0.000322,0.000322,0.000518,0.133519,-0.000765,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000062,0.000050,0.000219,0.000186,0.000186,0.000506,0.132900,-0.000619,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000060,0.000049,0.000219,0.000044,0.000044,0.000495,0.132430,-0.000470,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000059,0.000048,0.000219,0.000000,0.000000,0.000484,0.132010,-0.000420,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000058,0.000048,0.000219,0.000000,0.000000,0.000474,0.131597,-0.000414,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000047,0.000219,0.000000,0.000000,0.000465,0.131189,-0.000407,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000055,0.000046,0.000219,0.000000,0.000000,0.000455,0.130788,-0.000401,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000054,0.000045,0.000219,0.000000,0.000000,0.000447,0.130393,-0.000395,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000053,0.000045,0.000219,0.000000,0.000000,0.000438,0.130003,-0.000389,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000044,0.000219,0.000000,0.000000,0.000430,0.129620,-0.000384,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000220,0.000000,0.000000,0.000422,0.129242,-0.000378,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000043,0.000220,0.000000,0.000000,0.000415,0.128870,-0.000372,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000042,0.000220,0.000000,0.000000,0.000407,0.128503,-0.000367,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000049,0.000042,0.000220,0.000000,0.000000,0.000400,0.128142,-0.000361,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000041,0.000221,0.000000,0.000000,0.000393,0.127786,-0.000356,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000040,0.000221,0.000113,0.000113,0.000387,0.127324,-0.000462,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000039,0.000221,0.000356,0.000356,0.000379,0.126630,-0.000694,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000037,0.000222,0.000506,0.000506,0.000372,0.125798,-0.000832,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000036,0.000222,0.000598,0.000598,0.000363,0.124888,-0.000910,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000034,0.000222,0.000639,0.000639,0.000355,0.123951,-0.000937,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000042,0.000033,0.000222,0.000580,0.000580,0.000345,0.123087,-0.000864,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000041,0.000031,0.000222,0.000520,0.000520,0.000336,0.122295,-0.000792,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000030,0.000222,0.000509,0.000509,0.000326,0.121525,-0.000770,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000029,0.000222,0.000438,0.000438,0.000317,0.120836,-0.000689,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000028,0.000221,0.000320,0.000320,0.000307,0.120274,-0.000562,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000027,0.000221,0.000156,0.000156,0.000298,0.119883,-0.000392,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000035,0.000027,0.000221,0.000017,0.000017,0.000290,0.119633,-0.000249,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000026,0.000222,0.000000,0.000000,0.000282,0.119405,-0.000229,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000033,0.000026,0.000222,0.000000,0.000000,0.000275,0.119179,-0.000225,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000026,0.000222,0.000000,0.000000,0.000268,0.118957,-0.000222,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000032,0.000025,0.000222,0.000000,0.000000,0.000261,0.118739,-0.000219,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000025,0.000223,0.000000,0.000000,0.000255,0.118523,-0.000215,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000030,0.000024,0.000223,0.000000,0.000000,0.000249,0.118311,-0.000212,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000024,0.000223,0.000000,0.000000,0.000244,0.118102,-0.000209,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000029,0.000024,0.000224,0.000000,0.000000,0.000238,0.117896,-0.000206,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000028,0.000023,0.000224,0.000000,0.000000,0.000233,0.117694,-0.000203,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000023,0.000225,0.000000,0.000000,0.000229,0.117494,-0.000200,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000027,0.000023,0.000225,0.000000,0.000000,0.000224,0.117297,-0.000197,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000022,0.000225,0.000000,0.000000,0.000220,0.117103,-0.000194,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000026,0.000022,0.000226,0.000099,0.000099,0.000216,0.116815,-0.000288,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000021,0.000226,0.000346,0.000346,0.000211,0.116288,-0.000527,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000020,0.000227,0.000499,0.000499,0.000206,0.115617,-0.000670,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000018,0.000227,0.000589,0.000589,0.000200,0.114868,-0.000749,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000017,0.000227,0.000649,0.000649,0.000193,0.114071,-0.000797,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000016,0.000227,0.000570,0.000570,0.000187,0.113364,-0.000708,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000015,0.000227,0.000516,0.000516,0.000180,0.112721,-0.000643,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000021,0.000014,0.000228,0.000506,0.000506,0.000172,0.112097,-0.000624,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000020,0.000013,0.000228,0.000438,0.000438,0.000165,0.111549,-0.000547,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000012,0.000228,0.000320,0.000320,0.000158,0.111127,-0.000423,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000018,0.000011,0.000228,0.000178,0.000178,0.000151,0.110850,-0.000277,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000017,0.000011,0.000228,0.000030,0.000030,0.000144,0.110723,-0.000127,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000011,0.000228,0.000000,0.000000,0.000139,0.110627,-0.000096,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000011,0.000228,0.000000,0.000000,0.000133,0.110533,-0.000094,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000011,0.000229,0.000000,0.000000,0.000129,0.110440,-0.000093,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000011,0.000229,0.000000,0.000000,0.000124,0.110348,-0.000091,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000015,0.000010,0.000229,0.000000,0.000000,0.000120,0.110258,-0.000090,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000010,0.000230,0.000000,0.000000,0.000116,0.110170,-0.000089,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000014,0.000010,0.000230,0.000000,0.000000,0.000113,0.110082,-0.000087,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000013,0.000010,0.000231,0.000000,0.000000,0.000109,0.109996,-0.000086,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000013,0.000010,0.000231,0.000000,0.000000,0.000106,0.109911,-0.000085,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000012,0.000010,0.000232,0.000000,0.000000,0.000103,0.109828,-0.000084,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000012,0.000009,0.000232,0.000000,0.000000,0.000101,0.109745,-0.000082,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000012,0.000009,0.000233,0.000000,0.000000,0.000098,0.109664,-0.000081,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000012,0.000009,0.000233,0.000108,0.000108,0.000095,0.109478,-0.000186,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620779.csv b/test/channel_loss/channel_forcing/et/cat-2620779.csv new file mode 100644 index 000000000..834bbf841 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620779.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000107,0.000000,0.000000,0.000000,0.000000,0.001438,0.000127,0.001438,0.000162,0.000162,0.010286,0.424826,-0.004919,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001258,0.000126,0.001258,0.000043,0.000043,0.009153,0.419982,-0.004844,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001107,0.000124,0.001107,0.000000,0.000000,0.008170,0.415240,-0.004741,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000979,0.000122,0.000979,0.000000,0.000000,0.007314,0.410559,-0.004682,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000869,0.000121,0.000869,0.000000,0.000000,0.006566,0.405936,-0.004623,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000775,0.000119,0.000775,0.000000,0.000000,0.005910,0.401372,-0.004565,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000694,0.000118,0.000694,0.000000,0.000000,0.005334,0.396864,-0.004507,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000623,0.000116,0.000624,0.000000,0.000000,0.004827,0.392414,-0.004450,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000562,0.000115,0.000563,0.000000,0.000000,0.004380,0.388020,-0.004394,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000509,0.000113,0.000510,0.000000,0.000000,0.003985,0.383680,-0.004339,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000462,0.000112,0.000463,0.000000,0.000000,0.003635,0.379396,-0.004285,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000420,0.000111,0.000423,0.000000,0.000000,0.003325,0.375165,-0.004231,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000384,0.000109,0.000387,0.000000,0.000000,0.003050,0.370987,-0.004178,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000352,0.000108,0.000355,0.000000,0.000000,0.002806,0.366862,-0.004125,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000324,0.000106,0.000328,0.000130,0.000130,0.002588,0.362661,-0.004201,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000299,0.000105,0.000303,0.000375,0.000375,0.002394,0.358271,-0.004390,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000277,0.000103,0.000281,0.000525,0.000525,0.002221,0.353787,-0.004484,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000257,0.000102,0.000262,0.000614,0.000614,0.002066,0.349272,-0.004515,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000239,0.000101,0.000245,0.000520,0.000520,0.001928,0.344907,-0.004365,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000331,0.000000,0.000000,0.000000,0.000007,0.000223,0.000099,0.000230,0.000473,0.000473,0.001804,0.340971,-0.003936,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000326,0.000000,0.000000,0.000000,0.000007,0.000209,0.000098,0.000216,0.000419,0.000419,0.001692,0.337132,-0.003839,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000535,0.000010,0.000018,0.000010,0.000008,0.000197,0.000097,0.000215,0.000347,0.000347,0.001593,0.333601,-0.003531,1.000000,0.000008 +22,2022-08-01 22:00:00,0.000331,0.000005,0.000000,0.000005,0.000009,0.000185,0.000096,0.000199,0.000308,0.000308,0.001503,0.329968,-0.003632,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000414,0.000013,0.000017,0.000013,0.000009,0.000175,0.000094,0.000198,0.000231,0.000231,0.001422,0.326523,-0.003446,1.000000,0.000008 +24,2022-08-02 00:00:00,0.000330,0.000013,0.000017,0.000013,0.000010,0.000166,0.000093,0.000190,0.000149,0.000149,0.001349,0.323119,-0.003403,1.000000,0.000011 +25,2022-08-02 01:00:00,0.001114,0.000221,0.000388,0.000221,0.000011,0.000158,0.000092,0.000390,0.000063,0.000063,0.001284,0.320251,-0.002868,1.000000,0.000178 +26,2022-08-02 02:00:00,0.001350,0.000418,0.000577,0.000418,0.000012,0.000150,0.000091,0.000580,0.000000,0.000000,0.001225,0.317527,-0.002724,1.000000,0.000337 +27,2022-08-02 03:00:00,0.001256,0.000504,0.000513,0.000504,0.000013,0.000144,0.000091,0.000661,0.000000,0.000000,0.001171,0.314808,-0.002720,1.000000,0.000346 +28,2022-08-02 04:00:00,0.001332,0.000553,0.000562,0.000553,0.000014,0.000138,0.000090,0.000704,0.000000,0.000000,0.001123,0.312150,-0.002658,1.000000,0.000356 +29,2022-08-02 05:00:00,0.001142,0.000484,0.000438,0.000484,0.000015,0.000132,0.000089,0.000631,0.000000,0.000000,0.001080,0.309460,-0.002690,1.000000,0.000310 +30,2022-08-02 06:00:00,0.001014,0.000420,0.000360,0.000420,0.000016,0.000127,0.000088,0.000563,0.000000,0.000000,0.001040,0.306754,-0.002705,1.000000,0.000249 +31,2022-08-02 07:00:00,0.000000,0.000178,0.000000,0.000178,0.000017,0.000123,0.000087,0.000317,0.000000,0.000000,0.001004,0.303437,-0.003317,1.000000,0.000072 +32,2022-08-02 08:00:00,0.000000,0.000072,0.000000,0.000072,0.000018,0.000119,0.000086,0.000208,0.000000,0.000000,0.000971,0.300161,-0.003276,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000115,0.000085,0.000134,0.000000,0.000000,0.000940,0.296927,-0.003234,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000112,0.000083,0.000131,0.000000,0.000000,0.000912,0.293734,-0.003194,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000108,0.000082,0.000129,0.000000,0.000000,0.000886,0.290580,-0.003153,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000105,0.000081,0.000127,0.000000,0.000000,0.000862,0.287466,-0.003114,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000190,0.000009,0.000017,0.000009,0.000023,0.000103,0.000080,0.000135,0.000000,0.000000,0.000840,0.284563,-0.002904,1.000000,0.000008 +38,2022-08-02 14:00:00,0.000195,0.000006,0.000003,0.000006,0.000024,0.000100,0.000079,0.000130,0.000117,0.000117,0.000819,0.281599,-0.002964,1.000000,0.000005 +39,2022-08-02 15:00:00,0.000195,0.000004,0.000000,0.000004,0.000025,0.000098,0.000078,0.000127,0.000322,0.000322,0.000800,0.278473,-0.003126,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000195,0.000001,0.000000,0.000001,0.000026,0.000095,0.000077,0.000122,0.000451,0.000451,0.000782,0.275258,-0.003214,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000148,0.000000,0.000000,0.000000,0.000028,0.000093,0.000076,0.000121,0.000534,0.000534,0.000765,0.271956,-0.003302,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000384,0.000000,0.000000,0.000000,0.000029,0.000091,0.000075,0.000120,0.000588,0.000588,0.000749,0.268875,-0.003081,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000089,0.000074,0.000119,0.000531,0.000531,0.000733,0.265572,-0.003303,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000019,0.000000,0.000000,0.000000,0.000031,0.000088,0.000073,0.000119,0.000482,0.000482,0.000719,0.262315,-0.003257,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000012,0.000000,0.000000,0.000000,0.000032,0.000086,0.000072,0.000118,0.000479,0.000479,0.000705,0.259095,-0.003220,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000008,0.000000,0.000000,0.000000,0.000034,0.000084,0.000071,0.000118,0.000418,0.000418,0.000691,0.255972,-0.003123,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000019,0.000000,0.000000,0.000000,0.000035,0.000083,0.000070,0.000118,0.000307,0.000307,0.000679,0.253008,-0.002964,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000012,0.000000,0.000000,0.000000,0.000036,0.000081,0.000069,0.000118,0.000174,0.000174,0.000666,0.250207,-0.002801,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000012,0.000000,0.000000,0.000000,0.000038,0.000080,0.000068,0.000117,0.000029,0.000029,0.000655,0.247584,-0.002623,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000008,0.000000,0.000000,0.000000,0.000039,0.000078,0.000067,0.000117,0.000000,0.000000,0.000643,0.245018,-0.002566,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000012,0.000000,0.000000,0.000000,0.000040,0.000077,0.000066,0.000117,0.000000,0.000000,0.000633,0.242489,-0.002529,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000012,0.000000,0.000000,0.000000,0.000042,0.000076,0.000066,0.000118,0.000000,0.000000,0.000623,0.239992,-0.002497,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000012,0.000000,0.000000,0.000000,0.000043,0.000075,0.000065,0.000118,0.000000,0.000000,0.000613,0.237526,-0.002466,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000019,0.000000,0.000000,0.000000,0.000044,0.000073,0.000064,0.000118,0.000000,0.000000,0.000603,0.235097,-0.002428,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000072,0.000063,0.000118,0.000000,0.000000,0.000594,0.232681,-0.002416,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000071,0.000062,0.000119,0.000000,0.000000,0.000585,0.230295,-0.002386,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000070,0.000062,0.000119,0.000000,0.000000,0.000577,0.227940,-0.002356,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000069,0.000061,0.000119,0.000000,0.000000,0.000568,0.225614,-0.002326,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000068,0.000060,0.000120,0.000000,0.000000,0.000560,0.223317,-0.002297,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000067,0.000059,0.000120,0.000000,0.000000,0.000552,0.221049,-0.002268,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000066,0.000059,0.000121,0.000000,0.000000,0.000544,0.218810,-0.002239,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000065,0.000058,0.000121,0.000125,0.000125,0.000537,0.216475,-0.002334,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000064,0.000057,0.000122,0.000374,0.000374,0.000529,0.213924,-0.002551,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000064,0.000056,0.000123,0.000523,0.000523,0.000522,0.211258,-0.002666,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000063,0.000055,0.000123,0.000619,0.000619,0.000514,0.208531,-0.002728,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000062,0.000054,0.000124,0.000600,0.000600,0.000507,0.205857,-0.002674,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000061,0.000053,0.000124,0.000539,0.000539,0.000500,0.203276,-0.002580,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001521,0.000182,0.000330,0.000182,0.000065,0.000060,0.000053,0.000307,0.000487,0.000487,0.000493,0.201955,-0.001322,1.000000,0.000149 +69,2022-08-03 21:00:00,0.000199,0.000083,0.000000,0.000083,0.000067,0.000059,0.000052,0.000208,0.000461,0.000461,0.000486,0.199697,-0.002258,1.000000,0.000066 +70,2022-08-03 22:00:00,0.000000,0.000066,0.000000,0.000066,0.000068,0.000058,0.000051,0.000193,0.000399,0.000399,0.000479,0.197332,-0.002365,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000018,0.000000,0.000000,0.000000,0.000070,0.000057,0.000051,0.000127,0.000294,0.000294,0.000472,0.195118,-0.002214,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000057,0.000050,0.000128,0.000184,0.000184,0.000466,0.193023,-0.002095,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000056,0.000049,0.000129,0.000042,0.000042,0.000459,0.191095,-0.001929,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000055,0.000049,0.000130,0.000000,0.000000,0.000453,0.189232,-0.001863,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000054,0.000048,0.000130,0.000000,0.000000,0.000447,0.187393,-0.001839,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000054,0.000047,0.000131,0.000000,0.000000,0.000440,0.185577,-0.001816,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000053,0.000047,0.000132,0.000000,0.000000,0.000435,0.183783,-0.001793,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000052,0.000046,0.000133,0.000000,0.000000,0.000429,0.182012,-0.001771,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000051,0.000046,0.000134,0.000000,0.000000,0.000423,0.180264,-0.001748,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000051,0.000045,0.000135,0.000000,0.000000,0.000417,0.178538,-0.001726,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000050,0.000045,0.000136,0.000000,0.000000,0.000412,0.176833,-0.001705,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000049,0.000044,0.000137,0.000000,0.000000,0.000407,0.175149,-0.001683,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000049,0.000043,0.000138,0.000000,0.000000,0.000401,0.173487,-0.001662,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000048,0.000043,0.000139,0.000000,0.000000,0.000396,0.171846,-0.001641,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000047,0.000042,0.000140,0.000000,0.000000,0.000391,0.170225,-0.001621,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000047,0.000042,0.000141,0.000121,0.000121,0.000386,0.168506,-0.001719,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000046,0.000041,0.000142,0.000369,0.000369,0.000381,0.166563,-0.001943,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000046,0.000040,0.000143,0.000526,0.000526,0.000376,0.164489,-0.002074,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000045,0.000040,0.000144,0.000622,0.000622,0.000370,0.162347,-0.002142,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000044,0.000039,0.000145,0.000684,0.000684,0.000365,0.160171,-0.002176,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000044,0.000038,0.000146,0.000622,0.000622,0.000360,0.158082,-0.002088,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000043,0.000038,0.000147,0.000545,0.000545,0.000354,0.156097,-0.001986,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000042,0.000037,0.000148,0.000506,0.000506,0.000349,0.154174,-0.001923,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000042,0.000036,0.000149,0.000440,0.000440,0.000344,0.152341,-0.001833,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000041,0.000036,0.000150,0.000322,0.000322,0.000339,0.150648,-0.001693,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000040,0.000035,0.000151,0.000189,0.000189,0.000333,0.149107,-0.001540,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000040,0.000035,0.000152,0.000048,0.000048,0.000328,0.147726,-0.001382,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000039,0.000034,0.000153,0.000000,0.000000,0.000324,0.146408,-0.001317,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000039,0.000034,0.000154,0.000000,0.000000,0.000319,0.145108,-0.001301,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000038,0.000034,0.000155,0.000000,0.000000,0.000314,0.143823,-0.001284,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000038,0.000033,0.000157,0.000000,0.000000,0.000310,0.142555,-0.001268,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000037,0.000033,0.000158,0.000000,0.000000,0.000306,0.141303,-0.001252,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000037,0.000032,0.000159,0.000000,0.000000,0.000301,0.140066,-0.001236,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000036,0.000032,0.000160,0.000000,0.000000,0.000297,0.138845,-0.001221,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000036,0.000032,0.000161,0.000000,0.000000,0.000293,0.137640,-0.001206,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000035,0.000031,0.000162,0.000000,0.000000,0.000289,0.136449,-0.001190,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000035,0.000031,0.000164,0.000000,0.000000,0.000285,0.135274,-0.001175,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000034,0.000030,0.000165,0.000000,0.000000,0.000282,0.134113,-0.001161,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000034,0.000030,0.000166,0.000000,0.000000,0.000278,0.132967,-0.001146,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000033,0.000030,0.000167,0.000133,0.000133,0.000274,0.131704,-0.001263,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000033,0.000029,0.000168,0.000374,0.000374,0.000270,0.130218,-0.001486,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000032,0.000029,0.000170,0.000526,0.000526,0.000267,0.128602,-0.001616,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000032,0.000028,0.000171,0.000628,0.000628,0.000263,0.126905,-0.001697,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000031,0.000027,0.000172,0.000608,0.000608,0.000259,0.125249,-0.001656,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000142,0.000031,0.000027,0.000173,0.000557,0.000557,0.000255,0.123727,-0.001522,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000144,0.000030,0.000026,0.000174,0.000497,0.000497,0.000251,0.122284,-0.001444,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000146,0.000030,0.000026,0.000176,0.000465,0.000465,0.000247,0.120889,-0.001395,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000147,0.000029,0.000026,0.000177,0.000396,0.000396,0.000243,0.119580,-0.001309,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000182,0.000000,0.000000,0.000000,0.000149,0.000029,0.000025,0.000178,0.000296,0.000296,0.000239,0.118504,-0.001076,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000151,0.000029,0.000025,0.000179,0.000177,0.000177,0.000235,0.117442,-0.001062,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000412,0.000024,0.000044,0.000024,0.000152,0.000028,0.000025,0.000205,0.000057,0.000057,0.000232,0.116813,-0.000629,1.000000,0.000020 +122,2022-08-06 02:00:00,0.000743,0.000105,0.000171,0.000105,0.000154,0.000028,0.000024,0.000287,0.000000,0.000000,0.000229,0.116450,-0.000363,1.000000,0.000086 +123,2022-08-06 03:00:00,0.000466,0.000092,0.000073,0.000092,0.000156,0.000027,0.000024,0.000275,0.000000,0.000000,0.000226,0.115913,-0.000537,1.000000,0.000067 +124,2022-08-06 04:00:00,0.000322,0.000073,0.000037,0.000073,0.000157,0.000027,0.000024,0.000257,0.000000,0.000000,0.000223,0.115277,-0.000636,1.000000,0.000031 +125,2022-08-06 05:00:00,0.000319,0.000044,0.000036,0.000044,0.000159,0.000027,0.000024,0.000229,0.000000,0.000000,0.000220,0.114648,-0.000630,1.000000,0.000024 +126,2022-08-06 06:00:00,0.000396,0.000046,0.000054,0.000046,0.000160,0.000026,0.000024,0.000233,0.000000,0.000000,0.000217,0.114084,-0.000563,1.000000,0.000032 +127,2022-08-06 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000162,0.000026,0.000023,0.000209,0.000000,0.000000,0.000215,0.113190,-0.000894,1.000000,0.000011 +128,2022-08-06 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000164,0.000026,0.000023,0.000200,0.000000,0.000000,0.000212,0.112307,-0.000883,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000025,0.000023,0.000191,0.000000,0.000000,0.000209,0.111435,-0.000872,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000025,0.000023,0.000192,0.000000,0.000000,0.000207,0.110574,-0.000861,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000025,0.000022,0.000193,0.000000,0.000000,0.000204,0.109724,-0.000850,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000024,0.000022,0.000195,0.000000,0.000000,0.000202,0.108885,-0.000839,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000024,0.000022,0.000196,0.000000,0.000000,0.000199,0.108056,-0.000829,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000024,0.000021,0.000197,0.000116,0.000116,0.000197,0.107123,-0.000933,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000024,0.000021,0.000199,0.000358,0.000358,0.000194,0.105963,-0.001160,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000023,0.000021,0.000200,0.000509,0.000509,0.000192,0.104668,-0.001295,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000023,0.000020,0.000201,0.000604,0.000604,0.000189,0.103296,-0.001372,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000023,0.000020,0.000202,0.000668,0.000668,0.000186,0.101878,-0.001418,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000022,0.000019,0.000204,0.000612,0.000612,0.000183,0.100533,-0.001345,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000022,0.000019,0.000205,0.000540,0.000540,0.000180,0.099276,-0.001257,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000021,0.000018,0.000206,0.000507,0.000507,0.000177,0.098067,-0.001209,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000021,0.000018,0.000207,0.000433,0.000433,0.000174,0.096947,-0.001120,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000021,0.000018,0.000208,0.000317,0.000317,0.000171,0.095955,-0.000992,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000020,0.000017,0.000210,0.000183,0.000183,0.000168,0.095108,-0.000847,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000020,0.000017,0.000211,0.000040,0.000040,0.000165,0.094413,-0.000695,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000020,0.000017,0.000212,0.000000,0.000000,0.000162,0.093766,-0.000647,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000019,0.000017,0.000213,0.000000,0.000000,0.000160,0.093128,-0.000639,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000019,0.000016,0.000214,0.000000,0.000000,0.000157,0.092497,-0.000631,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000019,0.000016,0.000216,0.000000,0.000000,0.000155,0.091874,-0.000623,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000018,0.000016,0.000217,0.000000,0.000000,0.000152,0.091259,-0.000615,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000018,0.000016,0.000218,0.000000,0.000000,0.000150,0.090652,-0.000607,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000016,0.000219,0.000000,0.000000,0.000148,0.090053,-0.000600,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000015,0.000221,0.000000,0.000000,0.000146,0.089461,-0.000592,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000017,0.000015,0.000222,0.000000,0.000000,0.000144,0.088876,-0.000585,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000015,0.000223,0.000000,0.000000,0.000141,0.088299,-0.000577,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000015,0.000224,0.000000,0.000000,0.000140,0.087729,-0.000570,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000015,0.000226,0.000000,0.000000,0.000138,0.087166,-0.000563,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000015,0.000227,0.000111,0.000000,0.000136,0.086611,-0.000556,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000014,0.000228,0.000353,0.000000,0.000134,0.086062,-0.000549,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000014,0.000229,0.000504,0.000000,0.000132,0.085520,-0.000542,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000014,0.000231,0.000603,0.000000,0.000130,0.084985,-0.000535,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000014,0.000232,0.000642,0.000000,0.000128,0.084457,-0.000528,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000014,0.000233,0.000587,0.000000,0.000127,0.083935,-0.000522,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000013,0.000234,0.000529,0.000000,0.000125,0.083420,-0.000515,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000013,0.000236,0.000503,0.000000,0.000123,0.082912,-0.000509,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000425,0.000000,0.000122,0.082410,-0.000502,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000013,0.000238,0.000314,0.000000,0.000120,0.081914,-0.000496,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000013,0.000239,0.000150,0.000000,0.000119,0.081424,-0.000490,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000013,0.000241,0.000016,0.000000,0.000117,0.080941,-0.000483,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000116,0.080463,-0.000477,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000000,0.000000,0.000114,0.079992,-0.000471,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000012,0.000244,0.000000,0.000000,0.000113,0.079526,-0.000465,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000012,0.000245,0.000000,0.000000,0.000111,0.079067,-0.000460,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000012,0.000247,0.000000,0.000000,0.000110,0.078613,-0.000454,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000012,0.000248,0.000000,0.000000,0.000108,0.078165,-0.000448,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000012,0.000249,0.000000,0.000000,0.000107,0.077722,-0.000442,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000106,0.077285,-0.000437,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000251,0.000000,0.000000,0.000104,0.076854,-0.000431,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000253,0.000000,0.000000,0.000103,0.076428,-0.000426,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000011,0.000254,0.000000,0.000000,0.000102,0.076007,-0.000421,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000011,0.000255,0.000000,0.000000,0.000100,0.075592,-0.000415,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000012,0.000011,0.000256,0.000096,0.000000,0.000099,0.075182,-0.000410,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000012,0.000011,0.000257,0.000340,0.000000,0.000098,0.074777,-0.000405,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000012,0.000010,0.000259,0.000496,0.000000,0.000097,0.074377,-0.000400,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000012,0.000010,0.000260,0.000594,0.000000,0.000095,0.073982,-0.000395,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000010,0.000261,0.000655,0.000000,0.000094,0.073592,-0.000390,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000011,0.000010,0.000262,0.000574,0.000000,0.000093,0.073207,-0.000385,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000011,0.000010,0.000263,0.000522,0.000000,0.000092,0.072827,-0.000380,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000011,0.000010,0.000264,0.000496,0.000000,0.000091,0.072452,-0.000375,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000011,0.000010,0.000265,0.000428,0.000000,0.000090,0.072081,-0.000371,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000011,0.000010,0.000267,0.000313,0.000000,0.000088,0.071715,-0.000366,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000011,0.000009,0.000268,0.000172,0.000000,0.000087,0.071354,-0.000361,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000010,0.000009,0.000269,0.000024,0.000000,0.000086,0.070997,-0.000357,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000010,0.000009,0.000270,0.000000,0.000000,0.000085,0.070645,-0.000352,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000010,0.000009,0.000271,0.000000,0.000000,0.000084,0.070297,-0.000348,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000010,0.000009,0.000272,0.000000,0.000000,0.000083,0.069953,-0.000344,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000010,0.000009,0.000273,0.000000,0.000000,0.000082,0.069614,-0.000339,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000010,0.000009,0.000274,0.000000,0.000000,0.000081,0.069279,-0.000335,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000010,0.000009,0.000276,0.000000,0.000000,0.000080,0.068949,-0.000331,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000010,0.000009,0.000277,0.000000,0.000000,0.000079,0.068622,-0.000327,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000268,0.000009,0.000008,0.000278,0.000000,0.000000,0.000078,0.068300,-0.000322,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000269,0.000009,0.000008,0.000279,0.000000,0.000000,0.000077,0.067981,-0.000318,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000271,0.000009,0.000008,0.000280,0.000000,0.000000,0.000076,0.067667,-0.000314,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000272,0.000009,0.000008,0.000281,0.000000,0.000000,0.000075,0.067356,-0.000310,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000273,0.000009,0.000008,0.000282,0.000000,0.000000,0.000074,0.067050,-0.000307,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000274,0.000009,0.000008,0.000283,0.000105,0.000000,0.000073,0.066747,-0.000303,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620780.csv b/test/channel_loss/channel_forcing/et/cat-2620780.csv new file mode 100644 index 000000000..21d0e4b52 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620780.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001487,0.000483,0.001487,0.000155,0.000155,0.010592,0.427519,-0.004829,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001347,0.000475,0.001347,0.000040,0.000040,0.009720,0.422813,-0.004706,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001228,0.000468,0.001228,0.000000,0.000000,0.008960,0.418215,-0.004597,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001126,0.000461,0.001126,0.000000,0.000000,0.008295,0.413686,-0.004529,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001038,0.000455,0.001038,0.000000,0.000000,0.007712,0.409224,-0.004462,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000962,0.000448,0.000962,0.000000,0.000000,0.007198,0.404828,-0.004396,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000895,0.000441,0.000896,0.000000,0.000000,0.006744,0.400496,-0.004331,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000837,0.000435,0.000838,0.000000,0.000000,0.006342,0.396229,-0.004267,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000786,0.000428,0.000787,0.000000,0.000000,0.005984,0.392025,-0.004204,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000741,0.000422,0.000742,0.000000,0.000000,0.005666,0.387883,-0.004142,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000700,0.000416,0.000702,0.000000,0.000000,0.005381,0.383803,-0.004081,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000665,0.000410,0.000667,0.000000,0.000000,0.005126,0.379783,-0.004020,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000633,0.000403,0.000635,0.000000,0.000000,0.004896,0.375822,-0.003961,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000604,0.000397,0.000607,0.000000,0.000000,0.004689,0.371920,-0.003902,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000579,0.000391,0.000582,0.000128,0.000128,0.004502,0.367950,-0.003970,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000556,0.000385,0.000559,0.000370,0.000370,0.004332,0.363799,-0.004150,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000534,0.000379,0.000539,0.000523,0.000523,0.004176,0.359560,-0.004239,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000515,0.000372,0.000520,0.000617,0.000617,0.004033,0.355291,-0.004269,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000497,0.000366,0.000503,0.000514,0.000514,0.003901,0.351186,-0.004105,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000422,0.000000,0.000000,0.000000,0.000006,0.000481,0.000360,0.000487,0.000470,0.000470,0.003780,0.347602,-0.003585,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000432,0.000000,0.000000,0.000000,0.000006,0.000466,0.000355,0.000473,0.000413,0.000413,0.003669,0.344135,-0.003467,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000798,0.000015,0.000028,0.000015,0.000007,0.000453,0.000350,0.000475,0.000334,0.000334,0.003567,0.341132,-0.003003,1.000000,0.000012 +22,2022-08-01 22:00:00,0.000671,0.000017,0.000018,0.000017,0.000008,0.000440,0.000346,0.000465,0.000297,0.000297,0.003473,0.338093,-0.003038,1.000000,0.000014 +23,2022-08-01 23:00:00,0.000716,0.000027,0.000031,0.000027,0.000008,0.000428,0.000341,0.000464,0.000220,0.000220,0.003385,0.335208,-0.002886,1.000000,0.000018 +24,2022-08-02 00:00:00,0.000669,0.000030,0.000035,0.000030,0.000009,0.000418,0.000337,0.000457,0.000144,0.000144,0.003305,0.332390,-0.002818,1.000000,0.000022 +25,2022-08-02 01:00:00,0.001363,0.000121,0.000193,0.000121,0.000010,0.000408,0.000334,0.000539,0.000060,0.000060,0.003230,0.330224,-0.002166,1.000000,0.000094 +26,2022-08-02 02:00:00,0.001445,0.000183,0.000233,0.000183,0.000011,0.000399,0.000331,0.000593,0.000000,0.000000,0.003162,0.328191,-0.002033,1.000000,0.000143 +27,2022-08-02 03:00:00,0.001329,0.000206,0.000199,0.000206,0.000011,0.000391,0.000327,0.000608,0.000000,0.000000,0.003099,0.326107,-0.002084,1.000000,0.000136 +28,2022-08-02 04:00:00,0.001450,0.000224,0.000232,0.000224,0.000012,0.000383,0.000324,0.000619,0.000000,0.000000,0.003040,0.324139,-0.001968,1.000000,0.000144 +29,2022-08-02 05:00:00,0.001226,0.000191,0.000170,0.000191,0.000013,0.000376,0.000321,0.000580,0.000000,0.000000,0.002986,0.322042,-0.002097,1.000000,0.000123 +30,2022-08-02 06:00:00,0.001190,0.000177,0.000160,0.000177,0.000014,0.000369,0.000318,0.000560,0.000000,0.000000,0.002935,0.319950,-0.002092,1.000000,0.000106 +31,2022-08-02 07:00:00,0.000000,0.000074,0.000000,0.000074,0.000015,0.000363,0.000313,0.000451,0.000000,0.000000,0.002885,0.316874,-0.003076,1.000000,0.000032 +32,2022-08-02 08:00:00,0.000000,0.000032,0.000000,0.000032,0.000015,0.000356,0.000309,0.000404,0.000000,0.000000,0.002838,0.313844,-0.003030,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000350,0.000304,0.000367,0.000000,0.000000,0.002791,0.310859,-0.002985,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000345,0.000300,0.000362,0.000000,0.000000,0.002746,0.307918,-0.002941,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000339,0.000295,0.000357,0.000000,0.000000,0.002703,0.305020,-0.002898,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000333,0.000291,0.000352,0.000000,0.000000,0.002660,0.302165,-0.002855,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000258,0.000004,0.000008,0.000004,0.000020,0.000328,0.000287,0.000353,0.000000,0.000000,0.002619,0.299599,-0.002566,1.000000,0.000004 +38,2022-08-02 14:00:00,0.000258,0.000003,0.000002,0.000003,0.000021,0.000323,0.000283,0.000347,0.000117,0.000117,0.002579,0.296961,-0.002638,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000164,0.000002,0.000000,0.000002,0.000022,0.000318,0.000278,0.000342,0.000314,0.000314,0.002540,0.294079,-0.002883,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000138,0.000000,0.000000,0.000000,0.000023,0.000313,0.000274,0.000336,0.000443,0.000443,0.002501,0.291086,-0.002993,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000163,0.000000,0.000000,0.000000,0.000024,0.000308,0.000269,0.000332,0.000529,0.000529,0.002463,0.288077,-0.003009,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000364,0.000000,0.000000,0.000000,0.000025,0.000303,0.000265,0.000328,0.000582,0.000582,0.002425,0.285259,-0.002818,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000298,0.000260,0.000324,0.000531,0.000531,0.002387,0.282235,-0.003023,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000293,0.000256,0.000320,0.000476,0.000476,0.002350,0.279311,-0.002924,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000288,0.000251,0.000317,0.000467,0.000467,0.002313,0.276439,-0.002872,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000036,0.000000,0.000000,0.000000,0.000029,0.000284,0.000247,0.000313,0.000407,0.000407,0.002276,0.273642,-0.002797,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000279,0.000243,0.000310,0.000301,0.000301,0.002240,0.271017,-0.002624,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000275,0.000239,0.000306,0.000170,0.000170,0.002205,0.268560,-0.002457,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000270,0.000236,0.000303,0.000027,0.000027,0.002171,0.266279,-0.002280,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000036,0.000000,0.000000,0.000000,0.000034,0.000266,0.000232,0.000300,0.000000,0.000000,0.002137,0.264033,-0.002246,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000262,0.000229,0.000297,0.000000,0.000000,0.002105,0.261847,-0.002187,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000258,0.000226,0.000294,0.000000,0.000000,0.002073,0.259692,-0.002154,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000038,0.000254,0.000223,0.000292,0.000000,0.000000,0.002042,0.257570,-0.002122,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000000,0.000000,0.000000,0.000039,0.000250,0.000219,0.000289,0.000000,0.000000,0.002012,0.255479,-0.002091,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000246,0.000216,0.000286,0.000000,0.000000,0.001982,0.253357,-0.002122,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000242,0.000213,0.000283,0.000000,0.000000,0.001952,0.251267,-0.002090,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000239,0.000210,0.000281,0.000000,0.000000,0.001924,0.249207,-0.002060,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000235,0.000207,0.000279,0.000000,0.000000,0.001895,0.247178,-0.002029,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000231,0.000204,0.000276,0.000000,0.000000,0.001868,0.245179,-0.001999,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000228,0.000201,0.000274,0.000000,0.000000,0.001840,0.243209,-0.001969,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000225,0.000198,0.000272,0.000000,0.000000,0.001813,0.241269,-0.001940,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000221,0.000195,0.000270,0.000122,0.000122,0.001787,0.239237,-0.002032,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000218,0.000191,0.000268,0.000370,0.000370,0.001760,0.236991,-0.002246,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000214,0.000188,0.000266,0.000518,0.000518,0.001733,0.234631,-0.002359,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000211,0.000184,0.000263,0.000621,0.000621,0.001706,0.232206,-0.002426,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000207,0.000180,0.000261,0.000602,0.000602,0.001679,0.229836,-0.002370,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000204,0.000177,0.000259,0.000544,0.000544,0.001651,0.227557,-0.002279,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001162,0.000026,0.000047,0.000026,0.000056,0.000201,0.000175,0.000283,0.000486,0.000486,0.001625,0.226468,-0.001089,1.000000,0.000021 +69,2022-08-03 21:00:00,0.000245,0.000012,0.000000,0.000012,0.000058,0.000198,0.000172,0.000267,0.000449,0.000449,0.001600,0.224575,-0.001893,1.000000,0.000009 +70,2022-08-03 22:00:00,0.000000,0.000009,0.000000,0.000009,0.000059,0.000194,0.000169,0.000263,0.000385,0.000385,0.001575,0.222530,-0.002044,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000191,0.000166,0.000252,0.000286,0.000286,0.001550,0.220614,-0.001917,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000188,0.000163,0.000250,0.000182,0.000182,0.001525,0.218828,-0.001785,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000185,0.000161,0.000248,0.000040,0.000040,0.001501,0.217210,-0.001619,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000182,0.000158,0.000246,0.000000,0.000000,0.001477,0.215654,-0.001556,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000179,0.000156,0.000245,0.000000,0.000000,0.001454,0.214121,-0.001533,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000176,0.000154,0.000243,0.000000,0.000000,0.001431,0.212611,-0.001510,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000174,0.000152,0.000242,0.000000,0.000000,0.001409,0.211123,-0.001488,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000171,0.000149,0.000241,0.000000,0.000000,0.001388,0.209658,-0.001466,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000168,0.000147,0.000239,0.000000,0.000000,0.001367,0.208214,-0.001444,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000166,0.000145,0.000238,0.000000,0.000000,0.001346,0.206791,-0.001423,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000163,0.000143,0.000237,0.000000,0.000000,0.001326,0.205389,-0.001402,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000161,0.000141,0.000236,0.000000,0.000000,0.001306,0.204009,-0.001381,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000158,0.000139,0.000235,0.000000,0.000000,0.001286,0.202648,-0.001360,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000156,0.000137,0.000234,0.000000,0.000000,0.001267,0.201308,-0.001340,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000153,0.000135,0.000233,0.000000,0.000000,0.001248,0.199987,-0.001320,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000151,0.000132,0.000232,0.000119,0.000119,0.001229,0.198569,-0.001418,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000149,0.000130,0.000231,0.000365,0.000365,0.001211,0.196929,-0.001640,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000146,0.000127,0.000230,0.000522,0.000522,0.001191,0.195159,-0.001770,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000144,0.000124,0.000229,0.000624,0.000624,0.001172,0.193314,-0.001845,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000141,0.000121,0.000228,0.000692,0.000692,0.001152,0.191430,-0.001884,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000139,0.000119,0.000226,0.000633,0.000633,0.001132,0.189632,-0.001798,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000136,0.000116,0.000225,0.000554,0.000554,0.001112,0.187938,-0.001694,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000134,0.000114,0.000224,0.000502,0.000502,0.001091,0.186321,-0.001617,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000131,0.000111,0.000223,0.000432,0.000432,0.001071,0.184797,-0.001525,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000129,0.000109,0.000222,0.000321,0.000321,0.001052,0.183404,-0.001392,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000126,0.000107,0.000221,0.000187,0.000187,0.001032,0.182164,-0.001240,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000124,0.000106,0.000220,0.000045,0.000045,0.001014,0.181083,-0.001082,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000122,0.000104,0.000219,0.000000,0.000000,0.000996,0.180061,-0.001021,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000120,0.000102,0.000218,0.000000,0.000000,0.000979,0.179055,-0.001006,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000118,0.000101,0.000218,0.000000,0.000000,0.000962,0.178064,-0.000991,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000116,0.000099,0.000217,0.000000,0.000000,0.000946,0.177087,-0.000977,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000114,0.000098,0.000216,0.000000,0.000000,0.000930,0.176125,-0.000962,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000112,0.000097,0.000216,0.000000,0.000000,0.000914,0.175177,-0.000948,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000110,0.000095,0.000215,0.000000,0.000000,0.000900,0.174243,-0.000934,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000108,0.000094,0.000215,0.000000,0.000000,0.000885,0.173323,-0.000920,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000106,0.000092,0.000215,0.000000,0.000000,0.000871,0.172417,-0.000906,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000105,0.000091,0.000214,0.000000,0.000000,0.000857,0.171523,-0.000893,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000103,0.000090,0.000214,0.000000,0.000000,0.000844,0.170644,-0.000880,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000101,0.000088,0.000214,0.000000,0.000000,0.000831,0.169777,-0.000867,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000100,0.000087,0.000214,0.000131,0.000131,0.000817,0.168794,-0.000983,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000098,0.000085,0.000213,0.000370,0.000370,0.000804,0.167590,-0.001204,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000097,0.000083,0.000213,0.000523,0.000523,0.000791,0.166253,-0.001337,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000095,0.000081,0.000213,0.000630,0.000630,0.000776,0.164830,-0.001423,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000093,0.000079,0.000212,0.000611,0.000611,0.000762,0.163447,-0.001383,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000011,0.000000,0.000000,0.000000,0.000120,0.000091,0.000077,0.000212,0.000564,0.000564,0.000747,0.162142,-0.001305,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000011,0.000000,0.000000,0.000000,0.000122,0.000089,0.000075,0.000211,0.000499,0.000499,0.000733,0.160920,-0.001222,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000011,0.000000,0.000000,0.000000,0.000123,0.000088,0.000073,0.000211,0.000465,0.000465,0.000718,0.159749,-0.001171,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000124,0.000086,0.000071,0.000210,0.000393,0.000393,0.000704,0.158700,-0.001049,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000128,0.000000,0.000000,0.000000,0.000126,0.000084,0.000070,0.000210,0.000294,0.000294,0.000690,0.157846,-0.000854,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000044,0.000000,0.000000,0.000000,0.000127,0.000082,0.000069,0.000210,0.000176,0.000176,0.000676,0.157038,-0.000808,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000325,0.000004,0.000007,0.000004,0.000128,0.000081,0.000068,0.000213,0.000053,0.000053,0.000663,0.156633,-0.000405,1.000000,0.000003 +122,2022-08-06 02:00:00,0.000597,0.000020,0.000034,0.000020,0.000130,0.000079,0.000068,0.000230,0.000000,0.000000,0.000652,0.156528,-0.000104,1.000000,0.000017 +123,2022-08-06 03:00:00,0.000315,0.000015,0.000010,0.000015,0.000131,0.000078,0.000067,0.000224,0.000000,0.000000,0.000641,0.156171,-0.000358,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000236,0.000012,0.000005,0.000012,0.000132,0.000077,0.000067,0.000222,0.000000,0.000000,0.000631,0.155745,-0.000425,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000266,0.000007,0.000007,0.000007,0.000134,0.000076,0.000066,0.000217,0.000000,0.000000,0.000622,0.155354,-0.000391,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000299,0.000008,0.000009,0.000008,0.000135,0.000075,0.000066,0.000217,0.000000,0.000000,0.000613,0.155000,-0.000354,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000136,0.000074,0.000065,0.000214,0.000000,0.000000,0.000604,0.154365,-0.000635,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000138,0.000072,0.000064,0.000212,0.000000,0.000000,0.000595,0.153738,-0.000626,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000071,0.000063,0.000210,0.000000,0.000000,0.000587,0.153122,-0.000617,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000070,0.000062,0.000211,0.000000,0.000000,0.000578,0.152514,-0.000608,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000069,0.000061,0.000211,0.000000,0.000000,0.000570,0.151915,-0.000599,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000068,0.000060,0.000211,0.000000,0.000000,0.000561,0.151326,-0.000590,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000067,0.000059,0.000212,0.000000,0.000000,0.000553,0.150744,-0.000581,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000066,0.000058,0.000212,0.000114,0.000114,0.000545,0.150060,-0.000685,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000065,0.000057,0.000212,0.000353,0.000353,0.000537,0.149150,-0.000910,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000064,0.000055,0.000212,0.000505,0.000505,0.000528,0.148103,-0.001047,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000063,0.000053,0.000212,0.000607,0.000607,0.000518,0.146972,-0.001131,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000062,0.000052,0.000212,0.000673,0.000673,0.000508,0.145791,-0.001180,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000060,0.000050,0.000212,0.000624,0.000624,0.000497,0.144678,-0.001114,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000059,0.000048,0.000212,0.000550,0.000550,0.000486,0.143653,-0.001024,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000058,0.000047,0.000212,0.000501,0.000501,0.000475,0.142692,-0.000961,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000056,0.000046,0.000212,0.000426,0.000426,0.000465,0.141819,-0.000873,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000055,0.000044,0.000212,0.000314,0.000314,0.000454,0.141070,-0.000750,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000054,0.000043,0.000212,0.000181,0.000181,0.000443,0.140462,-0.000607,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000053,0.000043,0.000212,0.000038,0.000038,0.000433,0.140005,-0.000457,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000042,0.000212,0.000000,0.000000,0.000424,0.139591,-0.000414,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000050,0.000042,0.000212,0.000000,0.000000,0.000415,0.139184,-0.000407,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000049,0.000041,0.000212,0.000000,0.000000,0.000407,0.138782,-0.000401,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000048,0.000040,0.000212,0.000000,0.000000,0.000399,0.138387,-0.000396,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000047,0.000040,0.000213,0.000000,0.000000,0.000391,0.137997,-0.000390,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000039,0.000213,0.000000,0.000000,0.000383,0.137613,-0.000384,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000039,0.000213,0.000000,0.000000,0.000376,0.137235,-0.000378,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000038,0.000214,0.000000,0.000000,0.000369,0.136862,-0.000373,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000044,0.000037,0.000214,0.000000,0.000000,0.000363,0.136495,-0.000367,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000043,0.000037,0.000214,0.000000,0.000000,0.000356,0.136133,-0.000362,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000042,0.000036,0.000215,0.000000,0.000000,0.000350,0.135777,-0.000356,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000036,0.000215,0.000000,0.000000,0.000344,0.135426,-0.000351,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000041,0.000035,0.000216,0.000109,0.000109,0.000338,0.134973,-0.000453,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000034,0.000216,0.000350,0.000350,0.000332,0.134289,-0.000684,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000039,0.000033,0.000216,0.000502,0.000502,0.000325,0.133466,-0.000823,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000039,0.000031,0.000217,0.000607,0.000607,0.000318,0.132551,-0.000915,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000030,0.000217,0.000641,0.000641,0.000310,0.131616,-0.000935,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000029,0.000217,0.000591,0.000591,0.000302,0.130744,-0.000872,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000027,0.000217,0.000530,0.000530,0.000294,0.129946,-0.000799,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000035,0.000026,0.000217,0.000493,0.000493,0.000286,0.129195,-0.000751,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000025,0.000217,0.000416,0.000416,0.000277,0.128531,-0.000664,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000033,0.000024,0.000217,0.000307,0.000307,0.000269,0.127985,-0.000546,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000032,0.000024,0.000218,0.000147,0.000147,0.000261,0.127604,-0.000380,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000023,0.000218,0.000016,0.000016,0.000254,0.127359,-0.000246,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000030,0.000023,0.000218,0.000000,0.000000,0.000247,0.127132,-0.000227,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000029,0.000023,0.000218,0.000000,0.000000,0.000240,0.126909,-0.000223,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000028,0.000022,0.000219,0.000000,0.000000,0.000234,0.126689,-0.000220,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000028,0.000022,0.000219,0.000000,0.000000,0.000229,0.126473,-0.000217,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000027,0.000022,0.000219,0.000000,0.000000,0.000223,0.126259,-0.000213,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000026,0.000021,0.000220,0.000000,0.000000,0.000218,0.126049,-0.000210,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000021,0.000220,0.000000,0.000000,0.000214,0.125842,-0.000207,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000025,0.000021,0.000221,0.000000,0.000000,0.000209,0.125638,-0.000204,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000020,0.000221,0.000000,0.000000,0.000205,0.125437,-0.000201,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000024,0.000020,0.000222,0.000000,0.000000,0.000201,0.125239,-0.000198,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000024,0.000020,0.000222,0.000000,0.000000,0.000197,0.125043,-0.000195,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000023,0.000020,0.000223,0.000000,0.000000,0.000193,0.124851,-0.000192,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000023,0.000019,0.000224,0.000094,0.000094,0.000189,0.124570,-0.000282,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000022,0.000018,0.000224,0.000337,0.000337,0.000185,0.124052,-0.000518,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000022,0.000017,0.000224,0.000494,0.000494,0.000181,0.123388,-0.000664,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000016,0.000225,0.000599,0.000599,0.000176,0.122630,-0.000758,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000021,0.000015,0.000225,0.000659,0.000659,0.000170,0.121824,-0.000806,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000014,0.000225,0.000592,0.000592,0.000164,0.121097,-0.000727,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000013,0.000226,0.000525,0.000525,0.000158,0.120445,-0.000651,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000018,0.000012,0.000226,0.000488,0.000488,0.000151,0.119841,-0.000605,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000018,0.000011,0.000226,0.000420,0.000420,0.000145,0.119312,-0.000529,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000010,0.000226,0.000307,0.000307,0.000139,0.118902,-0.000410,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000010,0.000226,0.000167,0.000167,0.000133,0.118636,-0.000266,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000015,0.000010,0.000227,0.000020,0.000020,0.000127,0.118519,-0.000117,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000015,0.000010,0.000227,0.000000,0.000000,0.000122,0.118423,-0.000096,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000014,0.000010,0.000227,0.000000,0.000000,0.000117,0.118328,-0.000094,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000014,0.000009,0.000228,0.000000,0.000000,0.000113,0.118236,-0.000093,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000009,0.000228,0.000000,0.000000,0.000109,0.118144,-0.000092,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000013,0.000009,0.000229,0.000000,0.000000,0.000106,0.118054,-0.000090,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000009,0.000229,0.000000,0.000000,0.000102,0.117965,-0.000089,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000012,0.000009,0.000230,0.000000,0.000000,0.000099,0.117877,-0.000088,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000012,0.000009,0.000230,0.000000,0.000000,0.000096,0.117791,-0.000086,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000011,0.000009,0.000231,0.000000,0.000000,0.000094,0.117706,-0.000085,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000011,0.000009,0.000231,0.000000,0.000000,0.000091,0.117622,-0.000084,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000011,0.000008,0.000232,0.000000,0.000000,0.000089,0.117540,-0.000083,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000010,0.000008,0.000232,0.000000,0.000000,0.000087,0.117459,-0.000081,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000010,0.000008,0.000233,0.000103,0.000103,0.000084,0.117277,-0.000181,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620781.csv b/test/channel_loss/channel_forcing/et/cat-2620781.csv new file mode 100644 index 000000000..23e501343 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620781.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001467,0.000336,0.001467,0.000150,0.000150,0.010464,0.425876,-0.004810,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001310,0.000331,0.001310,0.000036,0.000036,0.009484,0.421185,-0.004692,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001178,0.000326,0.001178,0.000000,0.000000,0.008633,0.416594,-0.004590,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001065,0.000322,0.001065,0.000000,0.000000,0.007889,0.412068,-0.004526,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000968,0.000317,0.000968,0.000000,0.000000,0.007239,0.407606,-0.004462,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000884,0.000313,0.000884,0.000000,0.000000,0.006667,0.403206,-0.004400,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000811,0.000308,0.000812,0.000000,0.000000,0.006164,0.398868,-0.004338,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000748,0.000304,0.000749,0.000000,0.000000,0.005720,0.394590,-0.004277,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000693,0.000300,0.000694,0.000000,0.000000,0.005326,0.390373,-0.004217,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000644,0.000295,0.000646,0.000000,0.000000,0.004978,0.386215,-0.004158,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000602,0.000291,0.000603,0.000000,0.000000,0.004667,0.382115,-0.004100,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000564,0.000287,0.000566,0.000000,0.000000,0.004391,0.378073,-0.004042,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000530,0.000283,0.000533,0.000000,0.000000,0.004144,0.374087,-0.003986,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000500,0.000279,0.000503,0.000000,0.000000,0.003923,0.370157,-0.003930,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000474,0.000275,0.000477,0.000125,0.000125,0.003724,0.366160,-0.003998,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000450,0.000271,0.000454,0.000371,0.000371,0.003545,0.361976,-0.004184,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000428,0.000267,0.000433,0.000531,0.000531,0.003384,0.357692,-0.004284,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000409,0.000262,0.000414,0.000630,0.000630,0.003237,0.353371,-0.004321,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000391,0.000258,0.000397,0.000521,0.000521,0.003104,0.349219,-0.004152,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000509,0.000000,0.000000,0.000000,0.000006,0.000375,0.000254,0.000382,0.000476,0.000476,0.002983,0.345670,-0.003549,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000534,0.000002,0.000003,0.000002,0.000007,0.000361,0.000251,0.000369,0.000414,0.000414,0.002873,0.342255,-0.003415,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000959,0.000039,0.000070,0.000039,0.000007,0.000348,0.000248,0.000394,0.000329,0.000329,0.002773,0.339324,-0.002930,1.000000,0.000032 +22,2022-08-01 22:00:00,0.000800,0.000044,0.000046,0.000044,0.000008,0.000336,0.000245,0.000388,0.000289,0.000289,0.002682,0.336340,-0.002984,1.000000,0.000035 +23,2022-08-01 23:00:00,0.000873,0.000067,0.000076,0.000067,0.000009,0.000325,0.000242,0.000401,0.000210,0.000210,0.002599,0.333519,-0.002822,1.000000,0.000043 +24,2022-08-02 00:00:00,0.000791,0.000068,0.000073,0.000068,0.000009,0.000315,0.000239,0.000393,0.000138,0.000138,0.002522,0.330729,-0.002789,1.000000,0.000048 +25,2022-08-02 01:00:00,0.001556,0.000218,0.000336,0.000218,0.000010,0.000307,0.000237,0.000535,0.000056,0.000056,0.002453,0.328556,-0.002174,1.000000,0.000166 +26,2022-08-02 02:00:00,0.001640,0.000315,0.000392,0.000315,0.000011,0.000298,0.000235,0.000624,0.000000,0.000000,0.002390,0.326495,-0.002061,1.000000,0.000244 +27,2022-08-02 03:00:00,0.001553,0.000361,0.000355,0.000361,0.000012,0.000291,0.000233,0.000663,0.000000,0.000000,0.002332,0.324414,-0.002081,1.000000,0.000238 +28,2022-08-02 04:00:00,0.001678,0.000391,0.000406,0.000391,0.000013,0.000284,0.000231,0.000687,0.000000,0.000000,0.002279,0.322435,-0.001979,1.000000,0.000254 +29,2022-08-02 05:00:00,0.001465,0.000348,0.000319,0.000348,0.000013,0.000278,0.000229,0.000639,0.000000,0.000000,0.002230,0.320360,-0.002075,1.000000,0.000225 +30,2022-08-02 06:00:00,0.001403,0.000323,0.000294,0.000323,0.000014,0.000272,0.000227,0.000609,0.000000,0.000000,0.002185,0.318278,-0.002082,1.000000,0.000196 +31,2022-08-02 07:00:00,0.000000,0.000137,0.000000,0.000137,0.000015,0.000266,0.000224,0.000419,0.000000,0.000000,0.002142,0.315131,-0.003147,1.000000,0.000059 +32,2022-08-02 08:00:00,0.000000,0.000059,0.000000,0.000059,0.000016,0.000261,0.000220,0.000336,0.000000,0.000000,0.002101,0.312028,-0.003103,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000256,0.000217,0.000273,0.000000,0.000000,0.002062,0.308969,-0.003059,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000252,0.000214,0.000269,0.000000,0.000000,0.002025,0.305953,-0.003016,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000247,0.000211,0.000266,0.000000,0.000000,0.001989,0.302979,-0.002974,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000243,0.000208,0.000263,0.000000,0.000000,0.001955,0.300047,-0.002932,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000346,0.000011,0.000021,0.000011,0.000021,0.000238,0.000206,0.000271,0.000000,0.000000,0.001922,0.297477,-0.002570,1.000000,0.000009 +38,2022-08-02 14:00:00,0.000301,0.000008,0.000006,0.000008,0.000022,0.000234,0.000203,0.000265,0.000115,0.000115,0.001891,0.294799,-0.002678,1.000000,0.000007 +39,2022-08-02 15:00:00,0.000218,0.000006,0.000000,0.000006,0.000023,0.000231,0.000200,0.000259,0.000312,0.000312,0.001860,0.291889,-0.002910,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000185,0.000001,0.000000,0.000001,0.000024,0.000227,0.000197,0.000252,0.000446,0.000446,0.001831,0.288855,-0.003034,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000208,0.000000,0.000000,0.000000,0.000025,0.000223,0.000194,0.000248,0.000535,0.000535,0.001801,0.285798,-0.003057,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000378,0.000000,0.000000,0.000000,0.000026,0.000219,0.000191,0.000246,0.000590,0.000590,0.001773,0.282898,-0.002900,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000027,0.000216,0.000188,0.000243,0.000539,0.000539,0.001745,0.279786,-0.003112,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000212,0.000185,0.000241,0.000483,0.000483,0.001717,0.276765,-0.003020,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000209,0.000182,0.000239,0.000465,0.000465,0.001690,0.273804,-0.002961,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000052,0.000000,0.000000,0.000000,0.000031,0.000206,0.000179,0.000236,0.000406,0.000406,0.001663,0.270931,-0.002873,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000202,0.000176,0.000234,0.000300,0.000300,0.001637,0.268215,-0.002716,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000199,0.000174,0.000232,0.000167,0.000167,0.001612,0.265669,-0.002547,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000196,0.000171,0.000230,0.000023,0.000023,0.001587,0.263299,-0.002370,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000052,0.000000,0.000000,0.000000,0.000035,0.000193,0.000169,0.000229,0.000000,0.000000,0.001563,0.260974,-0.002325,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000037,0.000190,0.000167,0.000227,0.000000,0.000000,0.001540,0.258693,-0.002281,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000187,0.000164,0.000226,0.000000,0.000000,0.001517,0.256443,-0.002249,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000184,0.000162,0.000224,0.000000,0.000000,0.001495,0.254225,-0.002218,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000066,0.000001,0.000001,0.000001,0.000040,0.000182,0.000160,0.000223,0.000000,0.000000,0.001473,0.252041,-0.002184,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000179,0.000158,0.000221,0.000000,0.000000,0.001451,0.249824,-0.002218,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000176,0.000155,0.000219,0.000000,0.000000,0.001431,0.247637,-0.002187,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000174,0.000153,0.000218,0.000000,0.000000,0.001410,0.245481,-0.002156,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000171,0.000151,0.000217,0.000000,0.000000,0.001390,0.243355,-0.002126,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000169,0.000149,0.000216,0.000000,0.000000,0.001370,0.241259,-0.002096,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000166,0.000147,0.000214,0.000000,0.000000,0.001351,0.239193,-0.002067,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000164,0.000145,0.000213,0.000000,0.000000,0.001332,0.237155,-0.002038,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000161,0.000143,0.000212,0.000119,0.000119,0.001313,0.235029,-0.002127,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000159,0.000140,0.000211,0.000371,0.000371,0.001294,0.232683,-0.002345,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000157,0.000138,0.000210,0.000524,0.000524,0.001275,0.230221,-0.002463,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000154,0.000135,0.000209,0.000634,0.000634,0.001256,0.227684,-0.002537,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000152,0.000133,0.000208,0.000612,0.000612,0.001237,0.225204,-0.002480,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000150,0.000130,0.000207,0.000555,0.000555,0.001217,0.222816,-0.002388,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000998,0.000021,0.000038,0.000021,0.000059,0.000147,0.000129,0.000227,0.000492,0.000492,0.001199,0.221469,-0.001347,1.000000,0.000017 +69,2022-08-03 21:00:00,0.000223,0.000009,0.000000,0.000009,0.000060,0.000145,0.000127,0.000215,0.000443,0.000443,0.001181,0.219463,-0.002007,1.000000,0.000008 +70,2022-08-03 22:00:00,0.000000,0.000008,0.000000,0.000008,0.000062,0.000143,0.000125,0.000212,0.000375,0.000375,0.001163,0.217332,-0.002131,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000141,0.000123,0.000204,0.000282,0.000282,0.001145,0.215323,-0.002009,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000138,0.000121,0.000203,0.000178,0.000178,0.001127,0.213444,-0.001878,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000136,0.000119,0.000202,0.000035,0.000035,0.001110,0.211734,-0.001711,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000134,0.000117,0.000202,0.000000,0.000000,0.001094,0.210081,-0.001652,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000132,0.000116,0.000201,0.000000,0.000000,0.001077,0.208452,-0.001629,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000130,0.000114,0.000200,0.000000,0.000000,0.001061,0.206846,-0.001606,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000128,0.000113,0.000200,0.000000,0.000000,0.001046,0.205262,-0.001584,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000126,0.000111,0.000199,0.000000,0.000000,0.001030,0.203700,-0.001562,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000124,0.000109,0.000199,0.000000,0.000000,0.001015,0.202161,-0.001540,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000123,0.000108,0.000199,0.000000,0.000000,0.001001,0.200643,-0.001518,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000121,0.000106,0.000198,0.000000,0.000000,0.000986,0.199146,-0.001497,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000119,0.000105,0.000198,0.000000,0.000000,0.000972,0.197670,-0.001476,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000117,0.000103,0.000198,0.000000,0.000000,0.000958,0.196215,-0.001455,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000116,0.000102,0.000198,0.000000,0.000000,0.000945,0.194780,-0.001435,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000114,0.000101,0.000197,0.000000,0.000000,0.000931,0.193366,-0.001415,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000112,0.000099,0.000197,0.000115,0.000115,0.000918,0.191857,-0.001508,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000111,0.000097,0.000197,0.000366,0.000366,0.000904,0.190123,-0.001734,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000109,0.000095,0.000197,0.000530,0.000530,0.000891,0.188251,-0.001872,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000107,0.000093,0.000196,0.000637,0.000637,0.000877,0.186301,-0.001951,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000105,0.000091,0.000196,0.000709,0.000709,0.000863,0.184306,-0.001995,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000104,0.000089,0.000196,0.000641,0.000641,0.000849,0.182406,-0.001900,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000102,0.000088,0.000196,0.000568,0.000568,0.000834,0.180605,-0.001801,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000100,0.000086,0.000195,0.000505,0.000505,0.000820,0.178892,-0.001713,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000098,0.000084,0.000195,0.000431,0.000431,0.000806,0.177275,-0.001617,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000097,0.000083,0.000195,0.000321,0.000321,0.000792,0.175790,-0.001485,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000095,0.000081,0.000195,0.000184,0.000184,0.000778,0.174461,-0.001330,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000093,0.000080,0.000194,0.000039,0.000039,0.000765,0.173293,-0.001168,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000092,0.000079,0.000194,0.000000,0.000000,0.000752,0.172180,-0.001113,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000090,0.000078,0.000194,0.000000,0.000000,0.000740,0.171082,-0.001098,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000089,0.000077,0.000194,0.000000,0.000000,0.000728,0.170000,-0.001082,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000087,0.000076,0.000194,0.000000,0.000000,0.000716,0.168933,-0.001067,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000086,0.000075,0.000194,0.000000,0.000000,0.000705,0.167881,-0.001052,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000085,0.000074,0.000195,0.000000,0.000000,0.000694,0.166844,-0.001037,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000083,0.000073,0.000195,0.000000,0.000000,0.000683,0.165821,-0.001023,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000082,0.000072,0.000195,0.000000,0.000000,0.000673,0.164813,-0.001008,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000081,0.000071,0.000195,0.000000,0.000000,0.000663,0.163819,-0.000994,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000080,0.000070,0.000195,0.000000,0.000000,0.000653,0.162838,-0.000980,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000078,0.000069,0.000196,0.000000,0.000000,0.000643,0.161872,-0.000967,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000077,0.000068,0.000196,0.000000,0.000000,0.000634,0.160919,-0.000953,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000076,0.000067,0.000196,0.000127,0.000127,0.000624,0.159854,-0.001065,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000075,0.000065,0.000196,0.000370,0.000370,0.000615,0.158564,-0.001290,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000074,0.000064,0.000197,0.000530,0.000530,0.000605,0.157134,-0.001429,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000072,0.000062,0.000197,0.000644,0.000644,0.000595,0.155613,-0.001522,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000071,0.000061,0.000197,0.000626,0.000626,0.000584,0.154130,-0.001482,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000059,0.000197,0.000579,0.000579,0.000574,0.152715,-0.001416,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000069,0.000058,0.000197,0.000510,0.000510,0.000563,0.151387,-0.001328,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000067,0.000057,0.000198,0.000475,0.000475,0.000553,0.150113,-0.001274,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000066,0.000056,0.000198,0.000397,0.000397,0.000542,0.148934,-0.001180,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000078,0.000000,0.000000,0.000000,0.000133,0.000065,0.000055,0.000198,0.000298,0.000298,0.000532,0.147945,-0.000989,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000064,0.000054,0.000198,0.000175,0.000175,0.000522,0.147015,-0.000930,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000239,0.000003,0.000005,0.000003,0.000136,0.000062,0.000053,0.000201,0.000049,0.000049,0.000513,0.146452,-0.000563,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000393,0.000013,0.000021,0.000013,0.000137,0.000061,0.000053,0.000212,0.000000,0.000000,0.000504,0.146083,-0.000370,1.000000,0.000010 +123,2022-08-06 03:00:00,0.000238,0.000011,0.000008,0.000011,0.000139,0.000060,0.000052,0.000210,0.000000,0.000000,0.000496,0.145578,-0.000505,1.000000,0.000008 +124,2022-08-06 04:00:00,0.000146,0.000008,0.000003,0.000008,0.000140,0.000059,0.000052,0.000207,0.000000,0.000000,0.000488,0.144994,-0.000584,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000177,0.000005,0.000004,0.000005,0.000142,0.000059,0.000051,0.000205,0.000000,0.000000,0.000481,0.144448,-0.000546,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000192,0.000005,0.000005,0.000005,0.000143,0.000058,0.000051,0.000205,0.000000,0.000000,0.000474,0.143924,-0.000524,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000145,0.000057,0.000050,0.000204,0.000000,0.000000,0.000467,0.143223,-0.000701,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000146,0.000056,0.000049,0.000203,0.000000,0.000000,0.000460,0.142532,-0.000691,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000055,0.000048,0.000203,0.000000,0.000000,0.000453,0.141850,-0.000682,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000054,0.000048,0.000203,0.000000,0.000000,0.000447,0.141178,-0.000672,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000054,0.000047,0.000204,0.000000,0.000000,0.000440,0.140515,-0.000663,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000053,0.000046,0.000204,0.000000,0.000000,0.000434,0.139862,-0.000653,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000052,0.000046,0.000205,0.000000,0.000000,0.000428,0.139218,-0.000644,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000051,0.000045,0.000206,0.000110,0.000110,0.000422,0.138474,-0.000744,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000050,0.000044,0.000206,0.000352,0.000352,0.000415,0.137502,-0.000972,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000050,0.000043,0.000207,0.000512,0.000512,0.000409,0.136386,-0.001116,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000049,0.000042,0.000207,0.000620,0.000620,0.000401,0.135179,-0.001207,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000048,0.000040,0.000208,0.000687,0.000687,0.000394,0.133923,-0.001256,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000039,0.000208,0.000637,0.000637,0.000386,0.132734,-0.001189,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000038,0.000209,0.000567,0.000567,0.000378,0.131630,-0.001104,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000037,0.000209,0.000503,0.000503,0.000371,0.130606,-0.001025,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000044,0.000036,0.000209,0.000428,0.000428,0.000363,0.129670,-0.000936,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000043,0.000035,0.000210,0.000314,0.000314,0.000355,0.128859,-0.000811,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000042,0.000035,0.000210,0.000178,0.000178,0.000347,0.128194,-0.000665,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000041,0.000034,0.000211,0.000033,0.000033,0.000340,0.127681,-0.000513,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000040,0.000034,0.000211,0.000000,0.000000,0.000333,0.127207,-0.000473,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000033,0.000212,0.000000,0.000000,0.000327,0.126741,-0.000467,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000039,0.000033,0.000212,0.000000,0.000000,0.000321,0.126280,-0.000460,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000038,0.000032,0.000213,0.000000,0.000000,0.000315,0.125827,-0.000454,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000037,0.000032,0.000213,0.000000,0.000000,0.000309,0.125379,-0.000447,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000037,0.000031,0.000214,0.000000,0.000000,0.000303,0.124938,-0.000441,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000036,0.000031,0.000215,0.000000,0.000000,0.000298,0.124503,-0.000435,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000030,0.000215,0.000000,0.000000,0.000293,0.124075,-0.000429,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000035,0.000030,0.000216,0.000000,0.000000,0.000288,0.123652,-0.000423,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000034,0.000030,0.000217,0.000000,0.000000,0.000283,0.123235,-0.000417,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000029,0.000217,0.000000,0.000000,0.000279,0.122824,-0.000411,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000033,0.000029,0.000218,0.000000,0.000000,0.000274,0.122419,-0.000405,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000028,0.000219,0.000106,0.000106,0.000270,0.121915,-0.000504,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000028,0.000219,0.000351,0.000351,0.000265,0.121177,-0.000738,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000032,0.000027,0.000220,0.000510,0.000510,0.000260,0.120292,-0.000885,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000031,0.000026,0.000221,0.000621,0.000621,0.000255,0.119310,-0.000982,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000025,0.000221,0.000651,0.000651,0.000249,0.118312,-0.000998,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000030,0.000024,0.000222,0.000601,0.000601,0.000244,0.117378,-0.000934,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000023,0.000222,0.000539,0.000539,0.000238,0.116517,-0.000860,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000028,0.000022,0.000223,0.000490,0.000490,0.000232,0.115718,-0.000800,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000027,0.000021,0.000223,0.000412,0.000412,0.000226,0.115006,-0.000712,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000027,0.000021,0.000224,0.000304,0.000304,0.000220,0.114410,-0.000596,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000020,0.000224,0.000143,0.000143,0.000214,0.113982,-0.000428,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000020,0.000225,0.000013,0.000013,0.000209,0.113688,-0.000294,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000025,0.000020,0.000225,0.000000,0.000000,0.000204,0.113410,-0.000277,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000019,0.000226,0.000000,0.000000,0.000199,0.113137,-0.000273,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000019,0.000227,0.000000,0.000000,0.000195,0.112868,-0.000269,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000019,0.000227,0.000000,0.000000,0.000190,0.112602,-0.000266,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000019,0.000228,0.000000,0.000000,0.000186,0.112341,-0.000262,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000018,0.000229,0.000000,0.000000,0.000183,0.112082,-0.000258,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000022,0.000018,0.000229,0.000000,0.000000,0.000179,0.111828,-0.000255,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000021,0.000018,0.000230,0.000000,0.000000,0.000176,0.111577,-0.000251,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000018,0.000231,0.000000,0.000000,0.000172,0.111329,-0.000247,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000017,0.000231,0.000000,0.000000,0.000169,0.111085,-0.000244,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000020,0.000017,0.000232,0.000000,0.000000,0.000166,0.110845,-0.000241,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000017,0.000233,0.000000,0.000000,0.000163,0.110608,-0.000237,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000017,0.000234,0.000090,0.000090,0.000160,0.110285,-0.000323,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000019,0.000016,0.000234,0.000338,0.000338,0.000157,0.109722,-0.000563,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000015,0.000235,0.000500,0.000500,0.000154,0.109007,-0.000714,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000014,0.000236,0.000611,0.000611,0.000150,0.108193,-0.000814,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000018,0.000014,0.000236,0.000665,0.000000,0.000147,0.107993,-0.000200,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000014,0.000237,0.000610,0.000000,0.000143,0.107796,-0.000197,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000014,0.000238,0.000532,0.000000,0.000140,0.107602,-0.000194,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000014,0.000238,0.000486,0.000000,0.000137,0.107410,-0.000192,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000013,0.000239,0.000416,0.000000,0.000134,0.107221,-0.000189,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000016,0.000013,0.000240,0.000305,0.000000,0.000132,0.107035,-0.000186,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000013,0.000241,0.000162,0.000000,0.000129,0.106851,-0.000184,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000013,0.000241,0.000014,0.000000,0.000127,0.106670,-0.000181,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000013,0.000242,0.000000,0.000000,0.000124,0.106491,-0.000179,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000013,0.000243,0.000000,0.000000,0.000122,0.106315,-0.000176,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000012,0.000244,0.000000,0.000000,0.000120,0.106141,-0.000174,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000012,0.000244,0.000000,0.000000,0.000118,0.105970,-0.000171,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000012,0.000245,0.000000,0.000000,0.000116,0.105801,-0.000169,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000012,0.000246,0.000000,0.000000,0.000114,0.105635,-0.000166,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000012,0.000247,0.000000,0.000000,0.000112,0.105471,-0.000164,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000247,0.000000,0.000000,0.000110,0.105309,-0.000162,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000108,0.105149,-0.000160,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000107,0.104992,-0.000157,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000105,0.104837,-0.000155,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000000,0.000000,0.000103,0.104684,-0.000153,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000251,0.000099,0.000000,0.000102,0.104533,-0.000151,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620782.csv b/test/channel_loss/channel_forcing/et/cat-2620782.csv new file mode 100644 index 000000000..88a0a26c1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620782.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000060,0.000000,0.000000,0.000000,0.000000,0.001477,0.000412,0.001477,0.000147,0.000147,0.010527,0.424200,-0.004952,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001329,0.000406,0.001329,0.000034,0.000034,0.009604,0.419371,-0.004829,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001204,0.000400,0.001204,0.000000,0.000000,0.008800,0.414644,-0.004727,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001097,0.000395,0.001097,0.000000,0.000000,0.008098,0.409984,-0.004660,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001004,0.000389,0.001004,0.000000,0.000000,0.007483,0.405389,-0.004595,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000924,0.000384,0.000925,0.000000,0.000000,0.006942,0.400859,-0.004530,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000855,0.000378,0.000856,0.000000,0.000000,0.006465,0.396393,-0.004466,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000794,0.000373,0.000795,0.000000,0.000000,0.006044,0.391991,-0.004403,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000741,0.000368,0.000742,0.000000,0.000000,0.005670,0.387650,-0.004341,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000362,0.000696,0.000000,0.000000,0.005338,0.383371,-0.004279,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000653,0.000357,0.000655,0.000000,0.000000,0.005041,0.379152,-0.004219,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000617,0.000352,0.000619,0.000000,0.000000,0.004777,0.374993,-0.004159,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000584,0.000347,0.000587,0.000000,0.000000,0.004540,0.370892,-0.004101,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000555,0.000342,0.000558,0.000000,0.000000,0.004327,0.366849,-0.004043,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000529,0.000337,0.000532,0.000123,0.000123,0.004135,0.362743,-0.004107,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000506,0.000332,0.000510,0.000369,0.000369,0.003962,0.358452,-0.004291,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000484,0.000327,0.000489,0.000533,0.000533,0.003804,0.354059,-0.004393,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000465,0.000321,0.000470,0.000634,0.000634,0.003660,0.349629,-0.004430,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000448,0.000316,0.000453,0.000518,0.000518,0.003529,0.345376,-0.004253,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000562,0.000001,0.000001,0.000001,0.000006,0.000432,0.000312,0.000439,0.000475,0.000475,0.003409,0.341778,-0.003597,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000634,0.000005,0.000008,0.000005,0.000007,0.000417,0.000308,0.000429,0.000411,0.000411,0.003300,0.338359,-0.003420,1.000000,0.000004 +21,2022-08-01 21:00:00,0.000890,0.000029,0.000048,0.000029,0.000007,0.000404,0.000304,0.000440,0.000325,0.000325,0.003199,0.335286,-0.003073,1.000000,0.000023 +22,2022-08-01 22:00:00,0.000768,0.000033,0.000035,0.000033,0.000008,0.000392,0.000300,0.000433,0.000283,0.000283,0.003108,0.332189,-0.003097,1.000000,0.000026 +23,2022-08-01 23:00:00,0.000945,0.000062,0.000079,0.000062,0.000009,0.000381,0.000297,0.000452,0.000204,0.000204,0.003024,0.329346,-0.002843,1.000000,0.000043 +24,2022-08-02 00:00:00,0.000898,0.000073,0.000084,0.000073,0.000010,0.000371,0.000293,0.000453,0.000134,0.000134,0.002946,0.326560,-0.002785,1.000000,0.000053 +25,2022-08-02 01:00:00,0.001640,0.000214,0.000322,0.000214,0.000010,0.000362,0.000291,0.000585,0.000053,0.000053,0.002876,0.324392,-0.002169,1.000000,0.000161 +26,2022-08-02 02:00:00,0.001720,0.000301,0.000370,0.000301,0.000011,0.000353,0.000288,0.000665,0.000000,0.000000,0.002811,0.322337,-0.002055,1.000000,0.000231 +27,2022-08-02 03:00:00,0.001609,0.000337,0.000327,0.000337,0.000012,0.000345,0.000286,0.000694,0.000000,0.000000,0.002751,0.320244,-0.002093,1.000000,0.000221 +28,2022-08-02 04:00:00,0.001723,0.000359,0.000369,0.000359,0.000013,0.000338,0.000283,0.000710,0.000000,0.000000,0.002697,0.318251,-0.001993,1.000000,0.000231 +29,2022-08-02 05:00:00,0.001576,0.000330,0.000314,0.000330,0.000014,0.000332,0.000281,0.000675,0.000000,0.000000,0.002646,0.316197,-0.002054,1.000000,0.000215 +30,2022-08-02 06:00:00,0.001508,0.000311,0.000289,0.000311,0.000014,0.000325,0.000278,0.000651,0.000000,0.000000,0.002599,0.314129,-0.002068,1.000000,0.000193 +31,2022-08-02 07:00:00,0.000000,0.000135,0.000000,0.000135,0.000015,0.000320,0.000274,0.000470,0.000000,0.000000,0.002554,0.310887,-0.003241,1.000000,0.000058 +32,2022-08-02 08:00:00,0.000000,0.000058,0.000000,0.000058,0.000016,0.000314,0.000271,0.000388,0.000000,0.000000,0.002510,0.307692,-0.003195,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000309,0.000267,0.000326,0.000000,0.000000,0.002468,0.304542,-0.003150,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000303,0.000263,0.000322,0.000000,0.000000,0.002428,0.301436,-0.003106,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000298,0.000259,0.000317,0.000000,0.000000,0.002389,0.298374,-0.003062,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000293,0.000256,0.000314,0.000000,0.000000,0.002351,0.295355,-0.003019,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000368,0.000011,0.000019,0.000011,0.000021,0.000289,0.000252,0.000321,0.000000,0.000000,0.002315,0.292723,-0.002632,1.000000,0.000009 +38,2022-08-02 14:00:00,0.000296,0.000008,0.000005,0.000008,0.000022,0.000284,0.000249,0.000314,0.000114,0.000114,0.002280,0.289959,-0.002764,1.000000,0.000006 +39,2022-08-02 15:00:00,0.000241,0.000005,0.000000,0.000005,0.000023,0.000280,0.000245,0.000308,0.000308,0.000308,0.002245,0.286993,-0.002966,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000242,0.000001,0.000000,0.000001,0.000024,0.000275,0.000242,0.000301,0.000444,0.000444,0.002212,0.283937,-0.003057,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000224,0.000000,0.000000,0.000000,0.000025,0.000271,0.000238,0.000297,0.000535,0.000535,0.002178,0.280815,-0.003121,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000343,0.000000,0.000000,0.000000,0.000027,0.000267,0.000234,0.000294,0.000588,0.000588,0.002146,0.277803,-0.003012,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000087,0.000000,0.000000,0.000000,0.000028,0.000263,0.000230,0.000291,0.000537,0.000537,0.002113,0.274631,-0.003173,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000259,0.000227,0.000288,0.000480,0.000480,0.002081,0.271536,-0.003094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000255,0.000223,0.000285,0.000463,0.000463,0.002049,0.268503,-0.003033,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000057,0.000000,0.000000,0.000000,0.000031,0.000251,0.000219,0.000282,0.000402,0.000402,0.002018,0.265566,-0.002937,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000247,0.000216,0.000279,0.000297,0.000297,0.001988,0.262780,-0.002786,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000243,0.000213,0.000277,0.000165,0.000165,0.001957,0.260163,-0.002616,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000239,0.000210,0.000274,0.000022,0.000022,0.001928,0.257725,-0.002439,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000057,0.000000,0.000000,0.000000,0.000036,0.000236,0.000207,0.000272,0.000000,0.000000,0.001900,0.255336,-0.002389,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000001,0.000000,0.000037,0.000232,0.000204,0.000270,0.000000,0.000000,0.001872,0.252987,-0.002349,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000229,0.000201,0.000268,0.000000,0.000000,0.001845,0.250670,-0.002316,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000225,0.000199,0.000266,0.000000,0.000000,0.001818,0.248387,-0.002283,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000069,0.000001,0.000001,0.000001,0.000041,0.000222,0.000196,0.000264,0.000000,0.000000,0.001792,0.246142,-0.002246,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000219,0.000193,0.000261,0.000000,0.000000,0.001766,0.243860,-0.002281,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000216,0.000190,0.000259,0.000000,0.000000,0.001741,0.241612,-0.002249,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000212,0.000188,0.000257,0.000000,0.000000,0.001717,0.239394,-0.002217,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000209,0.000185,0.000256,0.000000,0.000000,0.001692,0.237208,-0.002186,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000206,0.000182,0.000254,0.000000,0.000000,0.001669,0.235053,-0.002155,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000203,0.000180,0.000252,0.000000,0.000000,0.001645,0.232929,-0.002125,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000200,0.000177,0.000251,0.000000,0.000000,0.001622,0.230834,-0.002095,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000198,0.000175,0.000249,0.000118,0.000118,0.001599,0.228653,-0.002181,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000195,0.000172,0.000248,0.000370,0.000370,0.001576,0.226254,-0.002399,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000192,0.000169,0.000246,0.000524,0.000524,0.001553,0.223737,-0.002517,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000189,0.000166,0.000245,0.000639,0.000639,0.001530,0.221142,-0.002595,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000186,0.000163,0.000243,0.000615,0.000615,0.001507,0.218607,-0.002535,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000183,0.000160,0.000241,0.000555,0.000555,0.001483,0.216167,-0.002439,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000738,0.000004,0.000008,0.000004,0.000060,0.000180,0.000158,0.000244,0.000492,0.000492,0.001461,0.214544,-0.001623,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000173,0.000002,0.000000,0.000002,0.000061,0.000177,0.000155,0.000241,0.000438,0.000438,0.001439,0.212447,-0.002097,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000063,0.000175,0.000152,0.000239,0.000368,0.000368,0.001417,0.210279,-0.002168,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000172,0.000150,0.000236,0.000279,0.000279,0.001395,0.208229,-0.002049,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000169,0.000148,0.000235,0.000177,0.000177,0.001373,0.206309,-0.001920,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000166,0.000145,0.000233,0.000033,0.000033,0.001352,0.204558,-0.001751,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000164,0.000143,0.000232,0.000000,0.000000,0.001332,0.202864,-0.001694,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000161,0.000141,0.000231,0.000000,0.000000,0.001312,0.201194,-0.001670,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000159,0.000139,0.000230,0.000000,0.000000,0.001292,0.199548,-0.001646,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000157,0.000137,0.000229,0.000000,0.000000,0.001273,0.197925,-0.001623,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000154,0.000136,0.000228,0.000000,0.000000,0.001254,0.196324,-0.001600,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000152,0.000134,0.000228,0.000000,0.000000,0.001236,0.194747,-0.001578,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000150,0.000132,0.000227,0.000000,0.000000,0.001218,0.193191,-0.001555,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000147,0.000130,0.000226,0.000000,0.000000,0.001201,0.191658,-0.001533,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000145,0.000128,0.000225,0.000000,0.000000,0.001183,0.190146,-0.001512,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000143,0.000126,0.000225,0.000000,0.000000,0.001166,0.188655,-0.001490,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000141,0.000124,0.000224,0.000000,0.000000,0.001150,0.187186,-0.001469,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000139,0.000123,0.000224,0.000000,0.000000,0.001133,0.185737,-0.001449,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000137,0.000121,0.000223,0.000114,0.000114,0.001117,0.184197,-0.001540,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000135,0.000119,0.000223,0.000364,0.000364,0.001101,0.182432,-0.001765,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000133,0.000116,0.000222,0.000530,0.000530,0.001084,0.180528,-0.001904,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000131,0.000114,0.000221,0.000640,0.000640,0.001067,0.178542,-0.001986,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000129,0.000111,0.000221,0.000717,0.000717,0.001050,0.176508,-0.002034,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000127,0.000109,0.000220,0.000647,0.000647,0.001032,0.174573,-0.001936,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000124,0.000107,0.000219,0.000573,0.000573,0.001015,0.172737,-0.001836,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000122,0.000105,0.000219,0.000502,0.000502,0.000998,0.170997,-0.001740,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000120,0.000103,0.000218,0.000427,0.000427,0.000980,0.169356,-0.001641,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000118,0.000101,0.000217,0.000320,0.000320,0.000963,0.167844,-0.001512,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000116,0.000099,0.000217,0.000183,0.000183,0.000947,0.166488,-0.001356,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000114,0.000098,0.000216,0.000037,0.000037,0.000931,0.165295,-0.001193,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000112,0.000096,0.000216,0.000000,0.000000,0.000915,0.164156,-0.001140,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000110,0.000095,0.000216,0.000000,0.000000,0.000900,0.163032,-0.001123,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000108,0.000094,0.000215,0.000000,0.000000,0.000886,0.161925,-0.001108,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000107,0.000092,0.000215,0.000000,0.000000,0.000872,0.160833,-0.001092,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000105,0.000091,0.000215,0.000000,0.000000,0.000858,0.159756,-0.001077,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000103,0.000090,0.000215,0.000000,0.000000,0.000844,0.158695,-0.001061,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000102,0.000089,0.000214,0.000000,0.000000,0.000831,0.157649,-0.001046,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000100,0.000087,0.000214,0.000000,0.000000,0.000819,0.156617,-0.001032,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000099,0.000086,0.000214,0.000000,0.000000,0.000806,0.155600,-0.001017,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000097,0.000085,0.000214,0.000000,0.000000,0.000794,0.154597,-0.001003,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000096,0.000084,0.000214,0.000000,0.000000,0.000782,0.153609,-0.000989,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000094,0.000083,0.000214,0.000000,0.000000,0.000771,0.152634,-0.000975,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000093,0.000081,0.000214,0.000126,0.000126,0.000759,0.151549,-0.001085,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000091,0.000080,0.000215,0.000369,0.000369,0.000748,0.150240,-0.001309,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000090,0.000078,0.000215,0.000531,0.000531,0.000736,0.148790,-0.001450,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000088,0.000076,0.000214,0.000649,0.000649,0.000723,0.147243,-0.001546,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000087,0.000074,0.000214,0.000629,0.000629,0.000711,0.145739,-0.001505,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000085,0.000072,0.000214,0.000584,0.000584,0.000698,0.144300,-0.001439,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000084,0.000071,0.000214,0.000509,0.000509,0.000685,0.142955,-0.001345,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000082,0.000069,0.000214,0.000476,0.000476,0.000672,0.141661,-0.001294,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000080,0.000068,0.000214,0.000395,0.000395,0.000660,0.140466,-0.001195,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000062,0.000000,0.000000,0.000000,0.000135,0.000079,0.000067,0.000214,0.000298,0.000298,0.000647,0.139445,-0.001021,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000077,0.000065,0.000214,0.000175,0.000175,0.000635,0.138498,-0.000947,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000169,0.000001,0.000002,0.000001,0.000138,0.000076,0.000065,0.000215,0.000047,0.000047,0.000624,0.137856,-0.000642,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000314,0.000007,0.000011,0.000007,0.000139,0.000075,0.000064,0.000221,0.000000,0.000000,0.000613,0.137402,-0.000454,1.000000,0.000005 +123,2022-08-06 03:00:00,0.000151,0.000005,0.000003,0.000005,0.000141,0.000073,0.000063,0.000219,0.000000,0.000000,0.000603,0.136803,-0.000600,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000103,0.000004,0.000001,0.000004,0.000142,0.000072,0.000063,0.000218,0.000000,0.000000,0.000593,0.136165,-0.000637,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000122,0.000002,0.000002,0.000002,0.000144,0.000071,0.000062,0.000217,0.000000,0.000000,0.000584,0.135555,-0.000610,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000137,0.000002,0.000002,0.000002,0.000145,0.000070,0.000061,0.000217,0.000000,0.000000,0.000575,0.134969,-0.000587,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000147,0.000069,0.000060,0.000216,0.000000,0.000000,0.000566,0.134257,-0.000711,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000068,0.000059,0.000216,0.000000,0.000000,0.000558,0.133556,-0.000701,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000067,0.000059,0.000216,0.000000,0.000000,0.000549,0.132865,-0.000691,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000066,0.000058,0.000217,0.000000,0.000000,0.000541,0.132183,-0.000682,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000065,0.000057,0.000217,0.000000,0.000000,0.000533,0.131511,-0.000672,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000064,0.000056,0.000218,0.000000,0.000000,0.000525,0.130849,-0.000663,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000063,0.000055,0.000218,0.000000,0.000000,0.000518,0.130195,-0.000653,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000062,0.000054,0.000218,0.000109,0.000109,0.000510,0.129445,-0.000751,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000061,0.000053,0.000219,0.000350,0.000350,0.000502,0.128466,-0.000979,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000060,0.000052,0.000219,0.000514,0.000514,0.000494,0.127340,-0.001126,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000059,0.000050,0.000220,0.000626,0.000626,0.000485,0.126119,-0.001221,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000058,0.000049,0.000220,0.000692,0.000692,0.000476,0.124850,-0.001269,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000047,0.000220,0.000644,0.000644,0.000467,0.123647,-0.001203,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000046,0.000220,0.000572,0.000572,0.000457,0.122532,-0.001115,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000045,0.000220,0.000500,0.000500,0.000447,0.121504,-0.001028,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000053,0.000044,0.000221,0.000425,0.000425,0.000438,0.120563,-0.000940,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000052,0.000043,0.000221,0.000312,0.000312,0.000428,0.119748,-0.000815,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000051,0.000042,0.000221,0.000176,0.000176,0.000419,0.119078,-0.000670,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000050,0.000041,0.000221,0.000031,0.000031,0.000411,0.118560,-0.000517,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000049,0.000041,0.000222,0.000000,0.000000,0.000402,0.118081,-0.000480,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000048,0.000040,0.000222,0.000000,0.000000,0.000394,0.117608,-0.000473,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000047,0.000039,0.000222,0.000000,0.000000,0.000387,0.117142,-0.000466,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000046,0.000039,0.000223,0.000000,0.000000,0.000380,0.116682,-0.000460,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000045,0.000038,0.000223,0.000000,0.000000,0.000373,0.116229,-0.000453,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000044,0.000038,0.000224,0.000000,0.000000,0.000366,0.115782,-0.000447,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000044,0.000037,0.000224,0.000000,0.000000,0.000360,0.115342,-0.000440,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000043,0.000037,0.000225,0.000000,0.000000,0.000354,0.114907,-0.000434,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000036,0.000226,0.000000,0.000000,0.000348,0.114479,-0.000428,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000042,0.000036,0.000226,0.000000,0.000000,0.000342,0.114057,-0.000422,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000041,0.000035,0.000227,0.000000,0.000000,0.000336,0.113641,-0.000416,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000035,0.000227,0.000000,0.000000,0.000331,0.113231,-0.000410,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000040,0.000034,0.000228,0.000104,0.000104,0.000325,0.112724,-0.000507,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000039,0.000033,0.000229,0.000350,0.000350,0.000320,0.111982,-0.000742,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000032,0.000229,0.000512,0.000512,0.000314,0.111090,-0.000892,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000031,0.000230,0.000627,0.000627,0.000307,0.110098,-0.000992,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000030,0.000230,0.000653,0.000653,0.000301,0.109094,-0.001004,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000036,0.000029,0.000230,0.000602,0.000602,0.000294,0.108154,-0.000940,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000028,0.000231,0.000540,0.000540,0.000286,0.107289,-0.000865,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000027,0.000231,0.000486,0.000486,0.000279,0.106490,-0.000800,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000026,0.000231,0.000407,0.000407,0.000272,0.105779,-0.000711,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000025,0.000232,0.000301,0.000301,0.000265,0.105183,-0.000596,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000024,0.000232,0.000141,0.000141,0.000258,0.104753,-0.000430,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000024,0.000233,0.000012,0.000012,0.000251,0.104456,-0.000297,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000000,0.000000,0.000245,0.104176,-0.000280,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000023,0.000233,0.000000,0.000000,0.000240,0.103899,-0.000277,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000000,0.000000,0.000234,0.103627,-0.000273,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000235,0.000000,0.000000,0.000229,0.103358,-0.000269,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000022,0.000235,0.000000,0.000000,0.000225,0.103093,-0.000265,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000236,0.000000,0.000000,0.000220,0.102832,-0.000261,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000022,0.000236,0.000000,0.000000,0.000216,0.102574,-0.000258,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000212,0.102320,-0.000254,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000208,0.102070,-0.000250,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000238,0.000000,0.000000,0.000204,0.101823,-0.000247,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000021,0.000239,0.000000,0.000000,0.000200,0.101580,-0.000243,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000240,0.000000,0.000000,0.000197,0.101340,-0.000240,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000023,0.000020,0.000240,0.000089,0.000089,0.000193,0.101016,-0.000324,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000019,0.000241,0.000338,0.000338,0.000189,0.100451,-0.000565,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000022,0.000018,0.000242,0.000499,0.000499,0.000185,0.099735,-0.000716,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000017,0.000242,0.000618,0.000618,0.000181,0.098912,-0.000823,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000016,0.000243,0.000668,0.000668,0.000176,0.098051,-0.000860,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000015,0.000243,0.000619,0.000619,0.000171,0.097251,-0.000800,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000014,0.000244,0.000534,0.000534,0.000165,0.096545,-0.000706,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000014,0.000244,0.000482,0.000482,0.000159,0.095902,-0.000644,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000013,0.000244,0.000412,0.000412,0.000154,0.095336,-0.000566,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000012,0.000245,0.000303,0.000303,0.000148,0.094885,-0.000450,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000012,0.000245,0.000159,0.000159,0.000143,0.094583,-0.000302,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000012,0.000246,0.000011,0.000011,0.000138,0.094432,-0.000152,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000012,0.000246,0.000000,0.000000,0.000134,0.094293,-0.000139,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000012,0.000247,0.000000,0.000000,0.000130,0.094156,-0.000137,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000011,0.000247,0.000000,0.000000,0.000126,0.094021,-0.000135,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000011,0.000248,0.000000,0.000000,0.000122,0.093888,-0.000133,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000011,0.000248,0.000000,0.000000,0.000119,0.093756,-0.000131,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000249,0.000000,0.000000,0.000116,0.093627,-0.000129,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000011,0.000250,0.000000,0.000000,0.000113,0.093499,-0.000128,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000110,0.093373,-0.000126,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000251,0.000000,0.000000,0.000108,0.093249,-0.000124,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000010,0.000252,0.000000,0.000000,0.000105,0.093127,-0.000122,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000252,0.000000,0.000000,0.000103,0.093007,-0.000121,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000253,0.000000,0.000000,0.000101,0.092888,-0.000119,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000254,0.000097,0.000000,0.000099,0.092771,-0.000117,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620783.csv b/test/channel_loss/channel_forcing/et/cat-2620783.csv new file mode 100644 index 000000000..954cba9b5 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620783.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001524,0.000742,0.001524,0.000139,0.000139,0.010813,0.421102,-0.005119,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001413,0.000730,0.001413,0.000030,0.000030,0.010130,0.416172,-0.004930,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001318,0.000718,0.001318,0.000000,0.000000,0.009531,0.411349,-0.004823,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001235,0.000707,0.001235,0.000000,0.000000,0.009002,0.406603,-0.004746,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001163,0.000695,0.001163,0.000000,0.000000,0.008535,0.401932,-0.004671,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001100,0.000684,0.001100,0.000000,0.000000,0.008120,0.397336,-0.004597,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001044,0.000674,0.001044,0.000000,0.000000,0.007750,0.392812,-0.004524,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000994,0.000663,0.000995,0.000000,0.000000,0.007418,0.388360,-0.004452,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000950,0.000652,0.000951,0.000000,0.000000,0.007120,0.383979,-0.004381,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000911,0.000642,0.000912,0.000000,0.000000,0.006851,0.379668,-0.004311,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000875,0.000632,0.000877,0.000000,0.000000,0.006608,0.375425,-0.004243,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000843,0.000622,0.000845,0.000000,0.000000,0.006386,0.371249,-0.004176,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000814,0.000612,0.000817,0.000000,0.000000,0.006184,0.367140,-0.004109,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000788,0.000602,0.000790,0.000000,0.000000,0.005998,0.363096,-0.004044,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000763,0.000592,0.000767,0.000116,0.000116,0.005827,0.359001,-0.004095,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000741,0.000582,0.000745,0.000354,0.000354,0.005668,0.354738,-0.004263,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000720,0.000572,0.000724,0.000528,0.000528,0.005520,0.350371,-0.004367,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000700,0.000561,0.000705,0.000628,0.000628,0.005380,0.345975,-0.004396,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000682,0.000551,0.000687,0.000507,0.000507,0.005249,0.341768,-0.004207,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000872,0.000007,0.000013,0.000007,0.000006,0.000665,0.000543,0.000678,0.000474,0.000474,0.005127,0.338506,-0.003262,1.000000,0.000006 +20,2022-08-01 20:00:00,0.000981,0.000018,0.000027,0.000018,0.000006,0.000649,0.000536,0.000674,0.000396,0.000396,0.005014,0.335465,-0.003041,1.000000,0.000015 +21,2022-08-01 21:00:00,0.001169,0.000041,0.000057,0.000041,0.000007,0.000635,0.000529,0.000682,0.000314,0.000314,0.004908,0.332709,-0.002756,1.000000,0.000031 +22,2022-08-01 22:00:00,0.001062,0.000047,0.000049,0.000047,0.000008,0.000621,0.000523,0.000676,0.000265,0.000265,0.004810,0.329947,-0.002763,1.000000,0.000034 +23,2022-08-01 23:00:00,0.001174,0.000065,0.000075,0.000065,0.000008,0.000608,0.000516,0.000682,0.000184,0.000184,0.004718,0.327394,-0.002553,1.000000,0.000044 +24,2022-08-02 00:00:00,0.001092,0.000068,0.000072,0.000068,0.000009,0.000597,0.000510,0.000674,0.000121,0.000121,0.004631,0.324865,-0.002529,1.000000,0.000047 +25,2022-08-02 01:00:00,0.001851,0.000161,0.000232,0.000161,0.000010,0.000586,0.000506,0.000756,0.000047,0.000047,0.004552,0.323040,-0.001826,1.000000,0.000119 +26,2022-08-02 02:00:00,0.001900,0.000213,0.000255,0.000213,0.000010,0.000576,0.000502,0.000799,0.000000,0.000000,0.004478,0.321315,-0.001725,1.000000,0.000161 +27,2022-08-02 03:00:00,0.001854,0.000244,0.000243,0.000244,0.000011,0.000566,0.000498,0.000821,0.000000,0.000000,0.004409,0.319584,-0.001731,1.000000,0.000160 +28,2022-08-02 04:00:00,0.001895,0.000251,0.000253,0.000251,0.000012,0.000557,0.000494,0.000820,0.000000,0.000000,0.004345,0.317912,-0.001672,1.000000,0.000162 +29,2022-08-02 05:00:00,0.001776,0.000234,0.000223,0.000234,0.000013,0.000549,0.000489,0.000796,0.000000,0.000000,0.004286,0.316177,-0.001735,1.000000,0.000151 +30,2022-08-02 06:00:00,0.001760,0.000227,0.000219,0.000227,0.000014,0.000542,0.000485,0.000782,0.000000,0.000000,0.004229,0.314459,-0.001718,1.000000,0.000143 +31,2022-08-02 07:00:00,0.000000,0.000099,0.000000,0.000099,0.000014,0.000534,0.000478,0.000648,0.000000,0.000000,0.004173,0.311251,-0.003208,1.000000,0.000044 +32,2022-08-02 08:00:00,0.000000,0.000044,0.000000,0.000044,0.000015,0.000526,0.000470,0.000585,0.000000,0.000000,0.004116,0.308095,-0.003157,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000519,0.000463,0.000535,0.000000,0.000000,0.004060,0.304988,-0.003107,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000511,0.000455,0.000528,0.000000,0.000000,0.004004,0.301931,-0.003057,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000504,0.000448,0.000522,0.000000,0.000000,0.003948,0.298922,-0.003009,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000496,0.000441,0.000515,0.000000,0.000000,0.003893,0.295961,-0.002961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000460,0.000009,0.000016,0.000009,0.000020,0.000489,0.000435,0.000518,0.000000,0.000000,0.003839,0.293484,-0.002477,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000326,0.000006,0.000004,0.000006,0.000021,0.000482,0.000429,0.000509,0.000109,0.000109,0.003786,0.290819,-0.002665,1.000000,0.000005 +39,2022-08-02 15:00:00,0.000313,0.000004,0.000000,0.000004,0.000022,0.000475,0.000422,0.000501,0.000290,0.000290,0.003733,0.288009,-0.002810,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000307,0.000001,0.000000,0.000001,0.000023,0.000468,0.000415,0.000491,0.000430,0.000430,0.003680,0.285100,-0.002909,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000303,0.000000,0.000000,0.000000,0.000024,0.000461,0.000408,0.000484,0.000519,0.000519,0.003627,0.282147,-0.002954,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000438,0.000000,0.000000,0.000000,0.000025,0.000454,0.000401,0.000478,0.000570,0.000570,0.003574,0.279322,-0.002825,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000128,0.000000,0.000000,0.000000,0.000026,0.000447,0.000394,0.000472,0.000515,0.000515,0.003521,0.276292,-0.003030,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000440,0.000386,0.000466,0.000463,0.000463,0.003468,0.273297,-0.002995,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000432,0.000379,0.000460,0.000445,0.000445,0.003415,0.270367,-0.002930,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000425,0.000373,0.000455,0.000388,0.000388,0.003362,0.267540,-0.002827,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000419,0.000366,0.000449,0.000286,0.000286,0.003310,0.264858,-0.002682,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000412,0.000360,0.000443,0.000155,0.000155,0.003258,0.262348,-0.002511,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000091,0.000000,0.000000,0.000000,0.000032,0.000405,0.000355,0.000438,0.000017,0.000017,0.003208,0.260040,-0.002308,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000117,0.000001,0.000001,0.000001,0.000034,0.000399,0.000349,0.000433,0.000000,0.000000,0.003159,0.257810,-0.002230,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000126,0.000001,0.000001,0.000001,0.000035,0.000392,0.000344,0.000428,0.000000,0.000000,0.003110,0.255625,-0.002185,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000126,0.000001,0.000001,0.000001,0.000036,0.000386,0.000339,0.000423,0.000000,0.000000,0.003063,0.253474,-0.002151,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000126,0.000001,0.000001,0.000001,0.000037,0.000380,0.000334,0.000418,0.000000,0.000000,0.003017,0.251358,-0.002116,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000143,0.000001,0.000001,0.000001,0.000038,0.000374,0.000329,0.000413,0.000000,0.000000,0.002972,0.249291,-0.002066,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000039,0.000368,0.000324,0.000408,0.000000,0.000000,0.002927,0.247118,-0.002173,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000362,0.000318,0.000403,0.000000,0.000000,0.002883,0.244980,-0.002138,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000357,0.000313,0.000398,0.000000,0.000000,0.002840,0.242875,-0.002105,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000351,0.000308,0.000394,0.000000,0.000000,0.002797,0.240804,-0.002071,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000346,0.000303,0.000390,0.000000,0.000000,0.002755,0.238766,-0.002038,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000340,0.000299,0.000386,0.000000,0.000000,0.002713,0.236760,-0.002006,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000335,0.000294,0.000382,0.000000,0.000000,0.002672,0.234786,-0.001974,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000330,0.000289,0.000378,0.000110,0.000110,0.002632,0.232736,-0.002050,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000324,0.000284,0.000373,0.000358,0.000358,0.002591,0.230473,-0.002263,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000319,0.000278,0.000369,0.000510,0.000510,0.002550,0.228097,-0.002376,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000314,0.000272,0.000365,0.000634,0.000634,0.002508,0.225637,-0.002460,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000308,0.000266,0.000361,0.000609,0.000609,0.002466,0.223240,-0.002397,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000303,0.000261,0.000357,0.000526,0.000526,0.002424,0.220963,-0.002277,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000694,0.000002,0.000003,0.000002,0.000055,0.000298,0.000257,0.000355,0.000478,0.000478,0.002384,0.219449,-0.001514,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000140,0.000001,0.000000,0.000001,0.000057,0.000292,0.000252,0.000350,0.000422,0.000422,0.002343,0.217472,-0.001976,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000058,0.000287,0.000248,0.000346,0.000346,0.000346,0.002304,0.215465,-0.002008,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000282,0.000243,0.000342,0.000265,0.000265,0.002264,0.213567,-0.001897,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000277,0.000239,0.000338,0.000167,0.000167,0.002226,0.211797,-0.001770,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000272,0.000235,0.000334,0.000027,0.000027,0.002188,0.210193,-0.001604,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000268,0.000231,0.000331,0.000000,0.000000,0.002152,0.208641,-0.001552,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000263,0.000227,0.000328,0.000000,0.000000,0.002116,0.207113,-0.001528,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000259,0.000224,0.000325,0.000000,0.000000,0.002081,0.205610,-0.001503,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000254,0.000220,0.000322,0.000000,0.000000,0.002047,0.204130,-0.001479,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000250,0.000217,0.000319,0.000000,0.000000,0.002014,0.202674,-0.001456,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000246,0.000213,0.000316,0.000000,0.000000,0.001981,0.201242,-0.001433,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000242,0.000210,0.000313,0.000000,0.000000,0.001949,0.199832,-0.001410,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000238,0.000207,0.000310,0.000000,0.000000,0.001918,0.198444,-0.001388,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000234,0.000203,0.000308,0.000000,0.000000,0.001887,0.197078,-0.001366,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000230,0.000200,0.000305,0.000000,0.000000,0.001857,0.195734,-0.001344,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000226,0.000197,0.000303,0.000000,0.000000,0.001828,0.194412,-0.001323,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000223,0.000194,0.000301,0.000000,0.000000,0.001799,0.193110,-0.001302,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000219,0.000190,0.000298,0.000108,0.000108,0.001770,0.191723,-0.001387,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000215,0.000187,0.000296,0.000352,0.000352,0.001741,0.190117,-0.001606,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000212,0.000182,0.000294,0.000521,0.000521,0.001712,0.188371,-0.001746,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000208,0.000178,0.000291,0.000630,0.000630,0.001682,0.186545,-0.001826,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000204,0.000174,0.000289,0.000719,0.000719,0.001652,0.184661,-0.001884,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000200,0.000169,0.000286,0.000636,0.000636,0.001621,0.182888,-0.001773,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000196,0.000165,0.000284,0.000568,0.000568,0.001590,0.181210,-0.001678,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000192,0.000161,0.000281,0.000492,0.000492,0.001559,0.179634,-0.001576,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000189,0.000158,0.000278,0.000412,0.000412,0.001528,0.178161,-0.001472,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000185,0.000155,0.000276,0.000311,0.000311,0.001498,0.176811,-0.001350,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000181,0.000152,0.000274,0.000175,0.000175,0.001469,0.175617,-0.001194,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000178,0.000149,0.000271,0.000030,0.000030,0.001440,0.174584,-0.001033,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000174,0.000147,0.000269,0.000000,0.000000,0.001413,0.173597,-0.000987,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000171,0.000145,0.000267,0.000000,0.000000,0.001387,0.172626,-0.000971,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000168,0.000142,0.000266,0.000000,0.000000,0.001362,0.171671,-0.000956,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000165,0.000140,0.000264,0.000000,0.000000,0.001337,0.170730,-0.000941,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000162,0.000138,0.000262,0.000000,0.000000,0.001314,0.169804,-0.000926,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000159,0.000136,0.000261,0.000000,0.000000,0.001291,0.168893,-0.000911,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000156,0.000133,0.000259,0.000000,0.000000,0.001268,0.167997,-0.000896,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000153,0.000131,0.000258,0.000000,0.000000,0.001246,0.167115,-0.000882,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000151,0.000129,0.000257,0.000000,0.000000,0.001225,0.166246,-0.000868,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000148,0.000127,0.000255,0.000000,0.000000,0.001204,0.165392,-0.000854,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000145,0.000125,0.000254,0.000000,0.000000,0.001184,0.164551,-0.000841,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000143,0.000123,0.000253,0.000000,0.000000,0.001164,0.163723,-0.000828,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000141,0.000121,0.000252,0.000119,0.000119,0.001145,0.162792,-0.000932,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000138,0.000118,0.000251,0.000359,0.000359,0.001125,0.161639,-0.001152,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000135,0.000115,0.000249,0.000522,0.000522,0.001105,0.160344,-0.001295,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000133,0.000112,0.000248,0.000645,0.000645,0.001084,0.158949,-0.001396,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000130,0.000109,0.000247,0.000622,0.000622,0.001062,0.157598,-0.001351,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000127,0.000105,0.000245,0.000583,0.000583,0.001040,0.156307,-0.001291,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000125,0.000103,0.000244,0.000501,0.000501,0.001018,0.155117,-0.001190,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000122,0.000100,0.000242,0.000474,0.000474,0.000996,0.153973,-0.001144,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000119,0.000097,0.000241,0.000386,0.000386,0.000974,0.152934,-0.001039,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000007,0.000000,0.000000,0.000000,0.000123,0.000117,0.000095,0.000240,0.000293,0.000293,0.000952,0.152009,-0.000924,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000114,0.000093,0.000238,0.000169,0.000169,0.000931,0.151215,-0.000795,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000118,0.000000,0.000000,0.000000,0.000126,0.000112,0.000092,0.000237,0.000041,0.000041,0.000912,0.150674,-0.000540,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000214,0.000002,0.000003,0.000002,0.000127,0.000109,0.000091,0.000238,0.000000,0.000000,0.000893,0.150275,-0.000399,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000056,0.000001,0.000000,0.000001,0.000128,0.000107,0.000090,0.000236,0.000000,0.000000,0.000876,0.149730,-0.000546,1.000000,0.000001 +124,2022-08-06 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000129,0.000105,0.000088,0.000235,0.000000,0.000000,0.000859,0.149138,-0.000592,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000131,0.000103,0.000087,0.000234,0.000000,0.000000,0.000843,0.148566,-0.000572,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000132,0.000101,0.000085,0.000233,0.000000,0.000000,0.000827,0.148003,-0.000563,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000099,0.000084,0.000232,0.000000,0.000000,0.000812,0.147439,-0.000565,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000097,0.000083,0.000232,0.000000,0.000000,0.000797,0.146883,-0.000556,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000096,0.000081,0.000231,0.000000,0.000000,0.000783,0.146336,-0.000547,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000094,0.000080,0.000231,0.000000,0.000000,0.000769,0.145797,-0.000538,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000092,0.000079,0.000230,0.000000,0.000000,0.000756,0.145268,-0.000530,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000091,0.000078,0.000230,0.000000,0.000000,0.000743,0.144746,-0.000521,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000089,0.000076,0.000230,0.000000,0.000000,0.000730,0.144233,-0.000513,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000088,0.000075,0.000229,0.000102,0.000102,0.000718,0.143628,-0.000605,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000086,0.000073,0.000229,0.000333,0.000333,0.000705,0.142805,-0.000823,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000084,0.000071,0.000229,0.000504,0.000504,0.000691,0.141826,-0.000978,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000082,0.000068,0.000228,0.000622,0.000622,0.000677,0.140747,-0.001079,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000081,0.000065,0.000227,0.000686,0.000686,0.000661,0.139623,-0.001124,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000079,0.000063,0.000227,0.000644,0.000644,0.000645,0.138558,-0.001065,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000077,0.000060,0.000226,0.000565,0.000565,0.000629,0.137587,-0.000971,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000075,0.000058,0.000225,0.000489,0.000489,0.000613,0.136706,-0.000881,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000073,0.000056,0.000224,0.000414,0.000414,0.000597,0.135913,-0.000793,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000071,0.000055,0.000223,0.000303,0.000303,0.000581,0.135242,-0.000671,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000069,0.000054,0.000223,0.000167,0.000167,0.000565,0.134716,-0.000526,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000067,0.000053,0.000222,0.000025,0.000025,0.000551,0.134337,-0.000379,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000065,0.000052,0.000222,0.000000,0.000000,0.000537,0.133989,-0.000348,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000064,0.000051,0.000221,0.000000,0.000000,0.000524,0.133647,-0.000342,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000062,0.000050,0.000221,0.000000,0.000000,0.000512,0.133310,-0.000337,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000049,0.000221,0.000000,0.000000,0.000501,0.132979,-0.000332,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000060,0.000049,0.000220,0.000000,0.000000,0.000490,0.132652,-0.000326,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000058,0.000048,0.000220,0.000000,0.000000,0.000479,0.132331,-0.000321,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000047,0.000220,0.000000,0.000000,0.000469,0.132015,-0.000316,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000056,0.000046,0.000220,0.000000,0.000000,0.000460,0.131704,-0.000311,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000055,0.000046,0.000220,0.000000,0.000000,0.000450,0.131398,-0.000306,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000045,0.000220,0.000000,0.000000,0.000442,0.131097,-0.000301,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000053,0.000044,0.000220,0.000000,0.000000,0.000433,0.130801,-0.000296,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000052,0.000043,0.000220,0.000000,0.000000,0.000425,0.130509,-0.000292,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000051,0.000043,0.000220,0.000098,0.000098,0.000417,0.130126,-0.000383,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000050,0.000041,0.000220,0.000341,0.000341,0.000408,0.129509,-0.000617,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000039,0.000220,0.000509,0.000509,0.000399,0.128736,-0.000772,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000037,0.000220,0.000624,0.000624,0.000389,0.127863,-0.000873,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000035,0.000220,0.000645,0.000645,0.000378,0.126983,-0.000880,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000033,0.000220,0.000590,0.000590,0.000366,0.126172,-0.000811,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000031,0.000219,0.000534,0.000534,0.000355,0.125428,-0.000743,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000030,0.000219,0.000470,0.000470,0.000343,0.124760,-0.000669,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000028,0.000218,0.000389,0.000389,0.000331,0.124182,-0.000578,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000027,0.000218,0.000287,0.000287,0.000319,0.123712,-0.000469,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000026,0.000218,0.000132,0.000132,0.000308,0.123404,-0.000309,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000026,0.000217,0.000009,0.000009,0.000298,0.123220,-0.000183,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000026,0.000217,0.000000,0.000000,0.000288,0.123049,-0.000171,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000025,0.000217,0.000000,0.000000,0.000280,0.122880,-0.000169,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000025,0.000217,0.000000,0.000000,0.000271,0.122715,-0.000166,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000024,0.000217,0.000000,0.000000,0.000264,0.122551,-0.000163,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000186,0.000031,0.000024,0.000217,0.000000,0.000000,0.000257,0.122393,-0.000158,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000187,0.000030,0.000024,0.000218,0.000000,0.000000,0.000250,0.122237,-0.000156,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000188,0.000030,0.000023,0.000218,0.000000,0.000000,0.000243,0.122083,-0.000154,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000189,0.000029,0.000023,0.000218,0.000000,0.000000,0.000237,0.121932,-0.000151,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000190,0.000028,0.000022,0.000218,0.000000,0.000000,0.000232,0.121782,-0.000149,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000191,0.000027,0.000022,0.000219,0.000000,0.000000,0.000227,0.121636,-0.000147,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000192,0.000027,0.000022,0.000219,0.000000,0.000000,0.000221,0.121491,-0.000145,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000026,0.000021,0.000219,0.000000,0.000000,0.000217,0.121347,-0.000144,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000021,0.000220,0.000082,0.000082,0.000212,0.121124,-0.000223,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000025,0.000020,0.000220,0.000328,0.000328,0.000207,0.120663,-0.000461,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000024,0.000018,0.000220,0.000488,0.000488,0.000201,0.120052,-0.000611,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000023,0.000017,0.000220,0.000616,0.000616,0.000194,0.119325,-0.000727,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000023,0.000015,0.000220,0.000647,0.000647,0.000186,0.118579,-0.000746,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000022,0.000013,0.000220,0.000612,0.000612,0.000178,0.117879,-0.000700,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000020,0.000012,0.000220,0.000524,0.000524,0.000169,0.117277,-0.000602,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000019,0.000010,0.000220,0.000465,0.000465,0.000160,0.116742,-0.000535,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000009,0.000220,0.000399,0.000399,0.000151,0.116281,-0.000461,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000017,0.000008,0.000220,0.000293,0.000293,0.000142,0.115931,-0.000350,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000016,0.000008,0.000219,0.000147,0.000147,0.000134,0.115730,-0.000201,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000015,0.000008,0.000219,0.000005,0.000005,0.000126,0.115673,-0.000057,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000014,0.000008,0.000219,0.000000,0.000000,0.000119,0.115622,-0.000051,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000014,0.000008,0.000220,0.000000,0.000000,0.000113,0.115571,-0.000051,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000013,0.000007,0.000220,0.000000,0.000000,0.000108,0.115521,-0.000050,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000012,0.000007,0.000220,0.000000,0.000000,0.000103,0.115472,-0.000049,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000012,0.000007,0.000220,0.000000,0.000000,0.000098,0.115424,-0.000048,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000011,0.000007,0.000220,0.000000,0.000000,0.000094,0.115377,-0.000048,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000011,0.000007,0.000221,0.000000,0.000000,0.000090,0.115330,-0.000047,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000010,0.000007,0.000221,0.000000,0.000000,0.000086,0.115284,-0.000046,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000010,0.000007,0.000222,0.000000,0.000000,0.000083,0.115238,-0.000045,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000010,0.000007,0.000222,0.000000,0.000000,0.000080,0.115194,-0.000045,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000009,0.000007,0.000223,0.000000,0.000000,0.000077,0.115150,-0.000044,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000009,0.000006,0.000223,0.000000,0.000000,0.000075,0.115107,-0.000043,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000009,0.000006,0.000224,0.000091,0.000091,0.000072,0.114975,-0.000132,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620784.csv b/test/channel_loss/channel_forcing/et/cat-2620784.csv new file mode 100644 index 000000000..760c53021 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620784.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000076,0.000000,0.000000,0.000000,0.000000,0.001468,0.000348,0.001468,0.000158,0.000158,0.010476,0.424678,-0.004936,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001313,0.000343,0.001313,0.000041,0.000041,0.009506,0.419852,-0.004827,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001182,0.000339,0.001182,0.000000,0.000000,0.008662,0.415132,-0.004720,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001070,0.000334,0.001070,0.000000,0.000000,0.007926,0.410477,-0.004655,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000974,0.000329,0.000974,0.000000,0.000000,0.007282,0.405886,-0.004591,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000891,0.000325,0.000891,0.000000,0.000000,0.006715,0.401359,-0.004527,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000819,0.000320,0.000820,0.000000,0.000000,0.006217,0.396894,-0.004465,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000756,0.000316,0.000757,0.000000,0.000000,0.005777,0.392490,-0.004404,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000701,0.000312,0.000702,0.000000,0.000000,0.005387,0.388148,-0.004343,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000653,0.000307,0.000654,0.000000,0.000000,0.005041,0.383865,-0.004283,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000611,0.000303,0.000612,0.000000,0.000000,0.004734,0.379641,-0.004224,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000573,0.000299,0.000575,0.000000,0.000000,0.004459,0.375475,-0.004166,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000540,0.000295,0.000542,0.000000,0.000000,0.004215,0.371366,-0.004108,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000510,0.000291,0.000513,0.000000,0.000000,0.003995,0.367314,-0.004052,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000484,0.000287,0.000487,0.000128,0.000128,0.003798,0.363192,-0.004122,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000460,0.000282,0.000464,0.000369,0.000369,0.003621,0.358889,-0.004303,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000438,0.000278,0.000443,0.000520,0.000520,0.003460,0.354496,-0.004392,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000419,0.000273,0.000424,0.000610,0.000610,0.003314,0.350075,-0.004421,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000402,0.000269,0.000407,0.000515,0.000515,0.003182,0.345809,-0.004266,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000377,0.000000,0.000000,0.000000,0.000006,0.000386,0.000265,0.000392,0.000470,0.000470,0.003062,0.342018,-0.003791,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000377,0.000000,0.000000,0.000000,0.000007,0.000371,0.000262,0.000378,0.000415,0.000415,0.002952,0.338333,-0.003685,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000773,0.000019,0.000035,0.000019,0.000008,0.000358,0.000258,0.000385,0.000340,0.000340,0.002852,0.335130,-0.003203,1.000000,0.000016 +22,2022-08-01 22:00:00,0.000406,0.000010,0.000002,0.000010,0.000008,0.000346,0.000255,0.000364,0.000303,0.000303,0.002761,0.331677,-0.003452,1.000000,0.000008 +23,2022-08-01 23:00:00,0.000442,0.000012,0.000009,0.000012,0.000009,0.000335,0.000252,0.000357,0.000226,0.000226,0.002677,0.328377,-0.003301,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000360,0.000007,0.000009,0.000007,0.000010,0.000325,0.000248,0.000343,0.000146,0.000146,0.002600,0.325120,-0.003256,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000870,0.000065,0.000110,0.000065,0.000010,0.000316,0.000246,0.000391,0.000061,0.000061,0.002529,0.322395,-0.002725,1.000000,0.000051 +26,2022-08-02 02:00:00,0.001424,0.000199,0.000308,0.000199,0.000011,0.000308,0.000243,0.000518,0.000000,0.000000,0.002464,0.320119,-0.002276,1.000000,0.000161 +27,2022-08-02 03:00:00,0.001297,0.000242,0.000259,0.000242,0.000012,0.000300,0.000241,0.000554,0.000000,0.000000,0.002405,0.317796,-0.002323,1.000000,0.000178 +28,2022-08-02 04:00:00,0.001415,0.000293,0.000302,0.000293,0.000013,0.000293,0.000239,0.000599,0.000000,0.000000,0.002351,0.315580,-0.002217,1.000000,0.000188 +29,2022-08-02 05:00:00,0.001165,0.000244,0.000212,0.000244,0.000014,0.000287,0.000236,0.000545,0.000000,0.000000,0.002300,0.313236,-0.002344,1.000000,0.000156 +30,2022-08-02 06:00:00,0.001047,0.000209,0.000174,0.000209,0.000015,0.000281,0.000234,0.000505,0.000000,0.000000,0.002254,0.310846,-0.002390,1.000000,0.000121 +31,2022-08-02 07:00:00,0.000000,0.000086,0.000000,0.000086,0.000016,0.000275,0.000231,0.000377,0.000000,0.000000,0.002209,0.307628,-0.003218,1.000000,0.000035 +32,2022-08-02 08:00:00,0.000000,0.000035,0.000000,0.000035,0.000017,0.000270,0.000228,0.000321,0.000000,0.000000,0.002167,0.304454,-0.003174,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000265,0.000225,0.000282,0.000000,0.000000,0.002127,0.301324,-0.003130,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000260,0.000221,0.000278,0.000000,0.000000,0.002089,0.298238,-0.003087,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000255,0.000218,0.000274,0.000000,0.000000,0.002053,0.295193,-0.003044,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000251,0.000215,0.000271,0.000000,0.000000,0.002017,0.292191,-0.003002,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000204,0.000004,0.000007,0.000004,0.000021,0.000246,0.000213,0.000272,0.000000,0.000000,0.001984,0.289423,-0.002768,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000204,0.000003,0.000001,0.000003,0.000023,0.000242,0.000210,0.000267,0.000117,0.000117,0.001951,0.286584,-0.002839,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000200,0.000002,0.000000,0.000002,0.000024,0.000238,0.000207,0.000264,0.000317,0.000317,0.001920,0.283585,-0.002999,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000200,0.000000,0.000000,0.000000,0.000025,0.000234,0.000204,0.000259,0.000445,0.000445,0.001889,0.280501,-0.003085,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000204,0.000000,0.000000,0.000000,0.000026,0.000230,0.000201,0.000256,0.000528,0.000528,0.001860,0.277381,-0.003120,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000622,0.000000,0.000000,0.000000,0.000027,0.000227,0.000198,0.000254,0.000583,0.000583,0.001831,0.274662,-0.002718,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000028,0.000223,0.000195,0.000251,0.000528,0.000528,0.001802,0.271520,-0.003142,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000090,0.000000,0.000000,0.000000,0.000029,0.000220,0.000192,0.000249,0.000479,0.000479,0.001774,0.268461,-0.003060,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000061,0.000000,0.000000,0.000000,0.000030,0.000216,0.000189,0.000247,0.000472,0.000472,0.001747,0.265421,-0.003039,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000061,0.000000,0.000000,0.000000,0.000032,0.000213,0.000186,0.000244,0.000413,0.000413,0.001720,0.262483,-0.002939,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000209,0.000183,0.000242,0.000303,0.000303,0.001693,0.259694,-0.002789,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000061,0.000000,0.000000,0.000000,0.000034,0.000206,0.000180,0.000240,0.000170,0.000170,0.001667,0.257073,-0.002621,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000061,0.000000,0.000000,0.000000,0.000035,0.000203,0.000178,0.000238,0.000027,0.000027,0.001642,0.254629,-0.002444,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000061,0.000000,0.000001,0.000000,0.000036,0.000200,0.000175,0.000237,0.000000,0.000000,0.001618,0.252245,-0.002384,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000061,0.000001,0.000001,0.000001,0.000038,0.000197,0.000173,0.000235,0.000000,0.000000,0.001594,0.249894,-0.002351,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000061,0.000001,0.000001,0.000001,0.000039,0.000194,0.000171,0.000233,0.000000,0.000000,0.001571,0.247576,-0.002319,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000061,0.000001,0.000001,0.000001,0.000040,0.000191,0.000168,0.000232,0.000000,0.000000,0.001548,0.245289,-0.002287,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000042,0.000188,0.000166,0.000230,0.000000,0.000000,0.001526,0.243036,-0.002254,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000186,0.000164,0.000229,0.000000,0.000000,0.001504,0.240752,-0.002284,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000183,0.000162,0.000227,0.000000,0.000000,0.001483,0.238499,-0.002252,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000180,0.000159,0.000226,0.000000,0.000000,0.001462,0.236278,-0.002221,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000178,0.000157,0.000224,0.000000,0.000000,0.001442,0.234087,-0.002191,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000175,0.000155,0.000223,0.000000,0.000000,0.001422,0.231926,-0.002161,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000173,0.000153,0.000222,0.000000,0.000000,0.001402,0.229796,-0.002131,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000170,0.000151,0.000221,0.000000,0.000000,0.001382,0.227694,-0.002101,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000168,0.000149,0.000220,0.000123,0.000123,0.001363,0.225500,-0.002194,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000165,0.000146,0.000219,0.000369,0.000369,0.001344,0.223095,-0.002406,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000163,0.000144,0.000218,0.000516,0.000516,0.001325,0.220576,-0.002518,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000161,0.000141,0.000217,0.000615,0.000615,0.001305,0.217996,-0.002581,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000158,0.000139,0.000216,0.000595,0.000595,0.001286,0.215470,-0.002526,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000156,0.000136,0.000215,0.000533,0.000533,0.001266,0.213041,-0.002429,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002123,0.000188,0.000341,0.000188,0.000061,0.000153,0.000135,0.000402,0.000485,0.000485,0.001248,0.212448,-0.000593,1.000000,0.000154 +69,2022-08-03 21:00:00,0.000229,0.000085,0.000000,0.000085,0.000062,0.000151,0.000133,0.000299,0.000454,0.000454,0.001230,0.210363,-0.002085,1.000000,0.000068 +70,2022-08-03 22:00:00,0.000000,0.000068,0.000000,0.000068,0.000064,0.000149,0.000131,0.000281,0.000391,0.000391,0.001213,0.208144,-0.002219,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000005,0.000000,0.000000,0.000000,0.000065,0.000147,0.000129,0.000212,0.000289,0.000289,0.001195,0.206061,-0.002083,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000145,0.000127,0.000211,0.000181,0.000181,0.001178,0.204109,-0.001953,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000142,0.000125,0.000210,0.000040,0.000040,0.001160,0.202322,-0.001787,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000140,0.000124,0.000210,0.000000,0.000000,0.001144,0.200599,-0.001723,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000138,0.000122,0.000209,0.000000,0.000000,0.001127,0.198900,-0.001699,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000136,0.000120,0.000209,0.000000,0.000000,0.001111,0.197224,-0.001676,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000134,0.000119,0.000208,0.000000,0.000000,0.001095,0.195571,-0.001653,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000132,0.000117,0.000208,0.000000,0.000000,0.001080,0.193941,-0.001630,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000131,0.000115,0.000207,0.000000,0.000000,0.001065,0.192333,-0.001608,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000129,0.000114,0.000207,0.000000,0.000000,0.001050,0.190748,-0.001585,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000127,0.000112,0.000207,0.000000,0.000000,0.001035,0.189184,-0.001564,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000125,0.000111,0.000206,0.000000,0.000000,0.001021,0.187642,-0.001542,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000123,0.000109,0.000206,0.000000,0.000000,0.001007,0.186122,-0.001521,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000122,0.000108,0.000206,0.000000,0.000000,0.000993,0.184622,-0.001500,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000120,0.000106,0.000206,0.000000,0.000000,0.000979,0.183143,-0.001479,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000118,0.000105,0.000205,0.000120,0.000120,0.000965,0.181566,-0.001577,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000116,0.000103,0.000205,0.000364,0.000364,0.000952,0.179770,-0.001796,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000115,0.000101,0.000205,0.000521,0.000521,0.000938,0.177844,-0.001926,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000113,0.000099,0.000205,0.000618,0.000618,0.000923,0.175849,-0.001995,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000111,0.000097,0.000204,0.000681,0.000681,0.000909,0.173819,-0.002030,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000109,0.000095,0.000204,0.000622,0.000622,0.000894,0.171876,-0.001943,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000108,0.000093,0.000204,0.000543,0.000543,0.000880,0.170037,-0.001839,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000106,0.000091,0.000204,0.000502,0.000502,0.000865,0.168264,-0.001774,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000104,0.000090,0.000203,0.000436,0.000436,0.000851,0.166580,-0.001683,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000102,0.000088,0.000203,0.000318,0.000318,0.000837,0.165036,-0.001544,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000101,0.000087,0.000203,0.000185,0.000185,0.000823,0.163644,-0.001392,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000099,0.000085,0.000203,0.000045,0.000045,0.000809,0.162410,-0.001234,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000097,0.000084,0.000203,0.000000,0.000000,0.000796,0.161237,-0.001173,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000096,0.000083,0.000203,0.000000,0.000000,0.000783,0.160080,-0.001157,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000094,0.000082,0.000203,0.000000,0.000000,0.000771,0.158938,-0.001141,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000093,0.000081,0.000203,0.000000,0.000000,0.000759,0.157813,-0.001125,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000091,0.000080,0.000203,0.000000,0.000000,0.000748,0.156703,-0.001110,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000090,0.000079,0.000203,0.000000,0.000000,0.000736,0.155609,-0.001095,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000088,0.000077,0.000203,0.000000,0.000000,0.000725,0.154529,-0.001079,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000087,0.000076,0.000203,0.000000,0.000000,0.000714,0.153465,-0.001065,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000086,0.000075,0.000203,0.000000,0.000000,0.000704,0.152415,-0.001050,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000085,0.000074,0.000204,0.000000,0.000000,0.000694,0.151379,-0.001035,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000083,0.000073,0.000204,0.000000,0.000000,0.000684,0.150358,-0.001021,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000082,0.000072,0.000204,0.000000,0.000000,0.000674,0.149351,-0.001007,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000081,0.000071,0.000205,0.000132,0.000132,0.000664,0.148228,-0.001123,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000080,0.000070,0.000205,0.000370,0.000370,0.000654,0.146886,-0.001342,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000078,0.000068,0.000205,0.000521,0.000521,0.000644,0.145413,-0.001473,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000077,0.000067,0.000205,0.000624,0.000624,0.000633,0.143858,-0.001554,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000076,0.000065,0.000206,0.000607,0.000607,0.000623,0.142342,-0.001516,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000024,0.000000,0.000000,0.000000,0.000131,0.000075,0.000064,0.000206,0.000557,0.000557,0.000612,0.140920,-0.001422,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000024,0.000000,0.000000,0.000000,0.000133,0.000073,0.000062,0.000206,0.000497,0.000497,0.000601,0.139577,-0.001344,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000024,0.000000,0.000000,0.000000,0.000134,0.000072,0.000061,0.000206,0.000462,0.000462,0.000590,0.138286,-0.001291,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000071,0.000060,0.000206,0.000394,0.000394,0.000580,0.137119,-0.001167,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000137,0.000069,0.000059,0.000206,0.000294,0.000294,0.000570,0.136191,-0.000928,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000068,0.000058,0.000207,0.000175,0.000175,0.000560,0.135269,-0.000922,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000428,0.000010,0.000019,0.000010,0.000140,0.000067,0.000058,0.000218,0.000054,0.000054,0.000550,0.134819,-0.000450,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000759,0.000046,0.000075,0.000046,0.000142,0.000066,0.000058,0.000253,0.000000,0.000000,0.000542,0.134701,-0.000118,1.000000,0.000037 +123,2022-08-06 03:00:00,0.000413,0.000035,0.000023,0.000035,0.000143,0.000065,0.000057,0.000243,0.000000,0.000000,0.000534,0.134294,-0.000407,1.000000,0.000025 +124,2022-08-06 04:00:00,0.000279,0.000027,0.000011,0.000027,0.000145,0.000064,0.000057,0.000235,0.000000,0.000000,0.000527,0.133773,-0.000521,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000300,0.000014,0.000012,0.000014,0.000146,0.000063,0.000056,0.000223,0.000000,0.000000,0.000520,0.133278,-0.000495,1.000000,0.000008 +126,2022-08-06 06:00:00,0.000400,0.000017,0.000022,0.000017,0.000147,0.000062,0.000056,0.000227,0.000000,0.000000,0.000513,0.132880,-0.000399,1.000000,0.000012 +127,2022-08-06 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000149,0.000062,0.000055,0.000218,0.000000,0.000000,0.000506,0.132113,-0.000766,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000150,0.000061,0.000054,0.000215,0.000000,0.000000,0.000500,0.131358,-0.000756,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000060,0.000053,0.000212,0.000000,0.000000,0.000493,0.130612,-0.000745,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000059,0.000053,0.000212,0.000000,0.000000,0.000487,0.129877,-0.000735,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000058,0.000052,0.000213,0.000000,0.000000,0.000480,0.129152,-0.000725,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000058,0.000051,0.000214,0.000000,0.000000,0.000474,0.128437,-0.000715,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000057,0.000051,0.000214,0.000000,0.000000,0.000468,0.127732,-0.000705,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000056,0.000050,0.000215,0.000114,0.000114,0.000461,0.126924,-0.000808,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000055,0.000049,0.000216,0.000352,0.000352,0.000455,0.125893,-0.001032,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000054,0.000048,0.000216,0.000503,0.000503,0.000448,0.124727,-0.001166,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000054,0.000046,0.000217,0.000599,0.000599,0.000441,0.123482,-0.001244,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000045,0.000217,0.000664,0.000664,0.000433,0.122190,-0.001292,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000052,0.000044,0.000218,0.000611,0.000611,0.000425,0.120969,-0.001221,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000218,0.000538,0.000538,0.000417,0.119836,-0.001133,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000219,0.000503,0.000503,0.000409,0.118753,-0.001083,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000041,0.000219,0.000426,0.000426,0.000401,0.117761,-0.000992,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000040,0.000219,0.000314,0.000314,0.000393,0.116894,-0.000867,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000039,0.000220,0.000179,0.000179,0.000385,0.116171,-0.000723,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000038,0.000220,0.000038,0.000038,0.000378,0.115598,-0.000573,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000038,0.000221,0.000000,0.000000,0.000371,0.115069,-0.000528,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000037,0.000221,0.000000,0.000000,0.000364,0.114548,-0.000521,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000000,0.000000,0.000357,0.114035,-0.000514,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000036,0.000223,0.000000,0.000000,0.000351,0.113528,-0.000507,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000036,0.000223,0.000000,0.000000,0.000345,0.113028,-0.000500,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000041,0.000035,0.000224,0.000000,0.000000,0.000339,0.112535,-0.000493,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000040,0.000035,0.000225,0.000000,0.000000,0.000334,0.112049,-0.000486,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000034,0.000225,0.000000,0.000000,0.000328,0.111570,-0.000479,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000034,0.000226,0.000000,0.000000,0.000323,0.111097,-0.000473,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000033,0.000227,0.000000,0.000000,0.000318,0.110631,-0.000466,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000033,0.000227,0.000000,0.000000,0.000313,0.110171,-0.000460,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000033,0.000228,0.000000,0.000000,0.000308,0.109717,-0.000453,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000032,0.000229,0.000109,0.000109,0.000303,0.109163,-0.000555,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000031,0.000229,0.000348,0.000348,0.000298,0.108379,-0.000783,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000036,0.000030,0.000230,0.000499,0.000499,0.000293,0.107459,-0.000921,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000029,0.000231,0.000598,0.000598,0.000287,0.106452,-0.001006,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000028,0.000231,0.000637,0.000637,0.000281,0.105422,-0.001030,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000027,0.000232,0.000584,0.000584,0.000275,0.104459,-0.000964,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000033,0.000026,0.000232,0.000527,0.000527,0.000269,0.103564,-0.000895,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000032,0.000026,0.000233,0.000497,0.000497,0.000263,0.102711,-0.000853,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000233,0.000418,0.000418,0.000256,0.101948,-0.000763,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000024,0.000234,0.000310,0.000310,0.000250,0.101303,-0.000645,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000030,0.000024,0.000234,0.000146,0.000146,0.000244,0.100827,-0.000476,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000023,0.000235,0.000015,0.000015,0.000239,0.100488,-0.000339,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000236,0.000000,0.000000,0.000233,0.100168,-0.000320,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000023,0.000236,0.000000,0.000000,0.000228,0.099852,-0.000316,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000022,0.000237,0.000000,0.000000,0.000223,0.099541,-0.000311,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000022,0.000237,0.000000,0.000000,0.000219,0.099234,-0.000307,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000022,0.000238,0.000000,0.000000,0.000215,0.098931,-0.000303,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000021,0.000239,0.000000,0.000000,0.000211,0.098633,-0.000299,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000240,0.000000,0.000000,0.000207,0.098338,-0.000295,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000021,0.000240,0.000000,0.000000,0.000203,0.098048,-0.000290,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000021,0.000241,0.000000,0.000000,0.000199,0.097761,-0.000286,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000242,0.000000,0.000000,0.000196,0.097479,-0.000283,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000243,0.000000,0.000000,0.000193,0.097200,-0.000279,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000189,0.096925,-0.000275,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000019,0.000244,0.000094,0.000094,0.000186,0.096562,-0.000363,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000335,0.000335,0.000183,0.095965,-0.000597,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000018,0.000246,0.000491,0.000491,0.000179,0.095223,-0.000742,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000017,0.000246,0.000590,0.000590,0.000175,0.094394,-0.000829,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000016,0.000247,0.000651,0.000651,0.000171,0.093516,-0.000878,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000016,0.000247,0.000574,0.000574,0.000166,0.092726,-0.000790,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000015,0.000248,0.000521,0.000521,0.000161,0.091999,-0.000727,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000015,0.000248,0.000490,0.000000,0.000157,0.091795,-0.000203,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000014,0.000249,0.000422,0.000000,0.000153,0.091595,-0.000200,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000014,0.000250,0.000308,0.000000,0.000149,0.091397,-0.000198,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000014,0.000250,0.000168,0.000000,0.000145,0.091203,-0.000195,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000014,0.000251,0.000022,0.000000,0.000142,0.091010,-0.000192,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000014,0.000252,0.000000,0.000000,0.000139,0.090821,-0.000190,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000013,0.000252,0.000000,0.000000,0.000136,0.090634,-0.000187,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000013,0.000253,0.000000,0.000000,0.000133,0.090450,-0.000184,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000013,0.000254,0.000000,0.000000,0.000130,0.090268,-0.000182,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000013,0.000255,0.000000,0.000000,0.000128,0.090089,-0.000179,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000013,0.000255,0.000000,0.000000,0.000125,0.089912,-0.000177,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000013,0.000256,0.000000,0.000000,0.000123,0.089737,-0.000174,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000012,0.000257,0.000000,0.000000,0.000121,0.089565,-0.000172,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000014,0.000012,0.000258,0.000000,0.000000,0.000118,0.089396,-0.000170,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000014,0.000012,0.000258,0.000000,0.000000,0.000116,0.089228,-0.000167,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000014,0.000012,0.000259,0.000000,0.000000,0.000114,0.089064,-0.000165,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000012,0.000260,0.000000,0.000000,0.000112,0.088901,-0.000163,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000013,0.000012,0.000261,0.000104,0.000000,0.000111,0.088740,-0.000160,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620785.csv b/test/channel_loss/channel_forcing/et/cat-2620785.csv new file mode 100644 index 000000000..df85a9e98 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620785.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000000,0.001508,0.000631,0.001508,0.000174,0.000174,0.010717,0.422001,-0.004998,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001385,0.000622,0.001385,0.000051,0.000051,0.009954,0.417075,-0.004925,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001279,0.000612,0.001279,0.000000,0.000000,0.009287,0.412276,-0.004800,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001188,0.000603,0.001189,0.000000,0.000000,0.008701,0.407549,-0.004727,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001110,0.000594,0.001110,0.000000,0.000000,0.008185,0.402894,-0.004655,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001041,0.000584,0.001041,0.000000,0.000000,0.007729,0.398310,-0.004584,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000980,0.000576,0.000981,0.000000,0.000000,0.007324,0.393796,-0.004514,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000927,0.000567,0.000928,0.000000,0.000000,0.006963,0.389351,-0.004445,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000880,0.000558,0.000881,0.000000,0.000000,0.006641,0.384974,-0.004377,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000839,0.000550,0.000840,0.000000,0.000000,0.006352,0.380664,-0.004311,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000801,0.000541,0.000803,0.000000,0.000000,0.006092,0.376419,-0.004245,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000768,0.000533,0.000770,0.000000,0.000000,0.005857,0.372239,-0.004180,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000738,0.000525,0.000740,0.000000,0.000000,0.005645,0.368122,-0.004116,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000710,0.000517,0.000713,0.000000,0.000000,0.005451,0.364069,-0.004054,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000686,0.000509,0.000689,0.000139,0.000139,0.005274,0.359940,-0.004128,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000663,0.000500,0.000667,0.000391,0.000391,0.005111,0.355627,-0.004314,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000642,0.000492,0.000646,0.000542,0.000542,0.004961,0.351229,-0.004397,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000623,0.000483,0.000627,0.000635,0.000635,0.004821,0.346808,-0.004421,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000605,0.000474,0.000610,0.000540,0.000540,0.004691,0.342548,-0.004260,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000336,0.000000,0.000000,0.000000,0.000006,0.000588,0.000467,0.000594,0.000493,0.000493,0.004569,0.338729,-0.003819,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000007,0.000573,0.000460,0.000579,0.000432,0.000432,0.004456,0.335009,-0.003720,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000413,0.000000,0.000000,0.000000,0.000007,0.000558,0.000453,0.000566,0.000362,0.000362,0.004350,0.331509,-0.003500,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000316,0.000000,0.000000,0.000000,0.000008,0.000545,0.000446,0.000553,0.000325,0.000325,0.004251,0.328005,-0.003504,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000394,0.000001,0.000002,0.000001,0.000008,0.000532,0.000439,0.000542,0.000246,0.000246,0.004158,0.324707,-0.003298,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000443,0.000005,0.000008,0.000005,0.000009,0.000520,0.000433,0.000534,0.000158,0.000158,0.004071,0.321588,-0.003119,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000995,0.000045,0.000077,0.000045,0.000010,0.000509,0.000428,0.000564,0.000070,0.000070,0.003990,0.319079,-0.002509,1.000000,0.000036 +26,2022-08-02 02:00:00,0.001130,0.000083,0.000112,0.000083,0.000011,0.000499,0.000424,0.000593,0.000000,0.000000,0.003914,0.316776,-0.002303,1.000000,0.000066 +27,2022-08-02 03:00:00,0.001037,0.000096,0.000095,0.000096,0.000011,0.000490,0.000419,0.000597,0.000000,0.000000,0.003843,0.314432,-0.002343,1.000000,0.000065 +28,2022-08-02 04:00:00,0.001108,0.000105,0.000107,0.000105,0.000012,0.000481,0.000414,0.000598,0.000000,0.000000,0.003777,0.312183,-0.002249,1.000000,0.000067 +29,2022-08-02 05:00:00,0.000994,0.000094,0.000087,0.000094,0.000013,0.000472,0.000410,0.000579,0.000000,0.000000,0.003715,0.309875,-0.002308,1.000000,0.000061 +30,2022-08-02 06:00:00,0.000948,0.000087,0.000079,0.000087,0.000014,0.000464,0.000405,0.000565,0.000000,0.000000,0.003655,0.307565,-0.002310,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000015,0.000457,0.000399,0.000509,0.000000,0.000000,0.003598,0.304435,-0.003130,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000449,0.000393,0.000481,0.000000,0.000000,0.003541,0.301352,-0.003083,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000442,0.000387,0.000459,0.000000,0.000000,0.003487,0.298317,-0.003036,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000435,0.000381,0.000452,0.000000,0.000000,0.003433,0.295327,-0.002989,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000428,0.000375,0.000446,0.000000,0.000000,0.003380,0.292384,-0.002944,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000421,0.000370,0.000440,0.000000,0.000000,0.003329,0.289485,-0.002899,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000020,0.000414,0.000364,0.000435,0.000000,0.000000,0.003279,0.286728,-0.002757,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000408,0.000359,0.000429,0.000122,0.000122,0.003229,0.283893,-0.002835,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000401,0.000353,0.000424,0.000337,0.000337,0.003180,0.280890,-0.003003,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000087,0.000000,0.000000,0.000000,0.000023,0.000395,0.000347,0.000418,0.000466,0.000466,0.003132,0.277794,-0.003097,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000389,0.000340,0.000413,0.000551,0.000551,0.003084,0.274637,-0.003156,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000283,0.000000,0.000000,0.000000,0.000025,0.000382,0.000335,0.000408,0.000606,0.000606,0.003036,0.271691,-0.002946,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000376,0.000328,0.000403,0.000542,0.000542,0.002988,0.268637,-0.003055,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000370,0.000323,0.000397,0.000492,0.000492,0.002940,0.265615,-0.003021,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000364,0.000317,0.000392,0.000494,0.000494,0.002893,0.262638,-0.002977,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000358,0.000311,0.000387,0.000429,0.000429,0.002847,0.259770,-0.002868,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000352,0.000306,0.000382,0.000318,0.000318,0.002801,0.257055,-0.002715,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000346,0.000301,0.000378,0.000188,0.000188,0.002755,0.254510,-0.002545,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000340,0.000296,0.000373,0.000039,0.000039,0.002711,0.252150,-0.002360,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000334,0.000291,0.000369,0.000000,0.000000,0.002668,0.249865,-0.002285,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000329,0.000287,0.000364,0.000000,0.000000,0.002626,0.247614,-0.002251,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000324,0.000283,0.000360,0.000000,0.000000,0.002585,0.245398,-0.002216,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000318,0.000278,0.000356,0.000000,0.000000,0.002545,0.243215,-0.002182,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000313,0.000274,0.000352,0.000000,0.000000,0.002506,0.241066,-0.002149,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000308,0.000270,0.000348,0.000000,0.000000,0.002467,0.238950,-0.002116,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000304,0.000266,0.000345,0.000000,0.000000,0.002429,0.236866,-0.002084,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000299,0.000262,0.000341,0.000000,0.000000,0.002392,0.234813,-0.002052,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000294,0.000258,0.000338,0.000000,0.000000,0.002356,0.232792,-0.002021,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000289,0.000254,0.000334,0.000000,0.000000,0.002320,0.230802,-0.001990,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000285,0.000250,0.000331,0.000000,0.000000,0.002285,0.228842,-0.001960,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000281,0.000246,0.000328,0.000000,0.000000,0.002251,0.226912,-0.001930,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000276,0.000242,0.000325,0.000133,0.000133,0.002217,0.224881,-0.002031,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000272,0.000238,0.000322,0.000392,0.000392,0.002183,0.222625,-0.002255,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000267,0.000233,0.000319,0.000541,0.000541,0.002148,0.220257,-0.002368,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000263,0.000228,0.000315,0.000638,0.000638,0.002114,0.217829,-0.002428,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000258,0.000223,0.000312,0.000624,0.000624,0.002079,0.215452,-0.002377,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000254,0.000219,0.000309,0.000565,0.000565,0.002044,0.213170,-0.002282,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000821,0.000005,0.000008,0.000005,0.000056,0.000250,0.000216,0.000311,0.000500,0.000500,0.002010,0.211787,-0.001383,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000199,0.000002,0.000000,0.000002,0.000058,0.000245,0.000212,0.000305,0.000472,0.000472,0.001977,0.209849,-0.001939,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000059,0.000241,0.000208,0.000302,0.000417,0.000417,0.001944,0.207798,-0.002051,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000237,0.000205,0.000297,0.000310,0.000310,0.001912,0.205883,-0.001915,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000233,0.000201,0.000295,0.000196,0.000196,0.001880,0.204110,-0.001773,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000229,0.000198,0.000292,0.000053,0.000053,0.001849,0.202505,-0.001605,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000225,0.000195,0.000290,0.000000,0.000000,0.001818,0.200977,-0.001529,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000221,0.000192,0.000287,0.000000,0.000000,0.001789,0.199472,-0.001505,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000218,0.000189,0.000285,0.000000,0.000000,0.001760,0.197989,-0.001482,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000214,0.000186,0.000283,0.000000,0.000000,0.001732,0.196530,-0.001460,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000211,0.000183,0.000280,0.000000,0.000000,0.001704,0.195092,-0.001437,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000207,0.000180,0.000278,0.000000,0.000000,0.001677,0.193677,-0.001415,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000204,0.000178,0.000276,0.000000,0.000000,0.001651,0.192283,-0.001394,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000201,0.000175,0.000274,0.000000,0.000000,0.001625,0.190910,-0.001373,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000198,0.000172,0.000273,0.000000,0.000000,0.001600,0.189559,-0.001352,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000194,0.000170,0.000271,0.000000,0.000000,0.001575,0.188227,-0.001331,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000191,0.000167,0.000269,0.000000,0.000000,0.001551,0.186917,-0.001311,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000188,0.000165,0.000268,0.000000,0.000000,0.001527,0.185626,-0.001291,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000185,0.000162,0.000266,0.000126,0.000126,0.001504,0.184230,-0.001396,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000182,0.000159,0.000264,0.000385,0.000385,0.001480,0.182601,-0.001629,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000179,0.000155,0.000263,0.000539,0.000539,0.001455,0.180845,-0.001756,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000176,0.000152,0.000261,0.000640,0.000640,0.001431,0.179017,-0.001828,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000173,0.000148,0.000259,0.000707,0.000707,0.001405,0.177150,-0.001867,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000170,0.000144,0.000257,0.000639,0.000639,0.001380,0.175379,-0.001772,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000167,0.000141,0.000255,0.000564,0.000564,0.001354,0.173708,-0.001671,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000163,0.000138,0.000253,0.000516,0.000516,0.001329,0.172110,-0.001597,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000160,0.000135,0.000252,0.000448,0.000448,0.001303,0.170604,-0.001507,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000157,0.000132,0.000250,0.000335,0.000335,0.001278,0.169232,-0.001372,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000154,0.000130,0.000248,0.000202,0.000202,0.001254,0.168013,-0.001220,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000151,0.000128,0.000247,0.000061,0.000061,0.001231,0.166949,-0.001063,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000148,0.000126,0.000245,0.000000,0.000000,0.001208,0.165963,-0.000986,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000146,0.000124,0.000244,0.000000,0.000000,0.001186,0.164992,-0.000971,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000143,0.000122,0.000242,0.000000,0.000000,0.001165,0.164035,-0.000957,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000140,0.000120,0.000241,0.000000,0.000000,0.001145,0.163093,-0.000942,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000138,0.000118,0.000240,0.000000,0.000000,0.001125,0.162166,-0.000928,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000136,0.000116,0.000239,0.000000,0.000000,0.001106,0.161252,-0.000913,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000133,0.000115,0.000238,0.000000,0.000000,0.001087,0.160353,-0.000900,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000131,0.000113,0.000237,0.000000,0.000000,0.001069,0.159467,-0.000886,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000129,0.000111,0.000236,0.000000,0.000000,0.001051,0.158594,-0.000872,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000127,0.000110,0.000236,0.000000,0.000000,0.001034,0.157735,-0.000859,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000125,0.000108,0.000235,0.000000,0.000000,0.001017,0.156889,-0.000846,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000123,0.000106,0.000234,0.000000,0.000000,0.001001,0.156056,-0.000833,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000121,0.000104,0.000233,0.000141,0.000141,0.000985,0.155097,-0.000959,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000119,0.000102,0.000233,0.000389,0.000389,0.000968,0.153908,-0.001189,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000116,0.000099,0.000232,0.000541,0.000541,0.000951,0.152587,-0.001320,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000114,0.000097,0.000231,0.000644,0.000644,0.000933,0.151186,-0.001402,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000112,0.000094,0.000230,0.000619,0.000619,0.000915,0.149830,-0.001355,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000110,0.000092,0.000229,0.000567,0.000567,0.000897,0.148609,-0.001221,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000107,0.000089,0.000228,0.000501,0.000501,0.000879,0.147472,-0.001138,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000122,0.000105,0.000087,0.000227,0.000471,0.000471,0.000861,0.146380,-0.001091,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000103,0.000085,0.000226,0.000395,0.000395,0.000843,0.145380,-0.001000,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000098,0.000000,0.000000,0.000000,0.000125,0.000101,0.000083,0.000226,0.000301,0.000301,0.000826,0.144523,-0.000858,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000099,0.000082,0.000225,0.000184,0.000184,0.000809,0.143759,-0.000764,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000362,0.000003,0.000006,0.000003,0.000127,0.000097,0.000081,0.000228,0.000065,0.000065,0.000793,0.143412,-0.000347,1.000000,0.000003 +122,2022-08-06 02:00:00,0.000554,0.000014,0.000022,0.000014,0.000129,0.000095,0.000081,0.000237,0.000000,0.000000,0.000779,0.143308,-0.000104,1.000000,0.000011 +123,2022-08-06 03:00:00,0.000469,0.000015,0.000016,0.000015,0.000130,0.000094,0.000081,0.000239,0.000000,0.000000,0.000766,0.143129,-0.000179,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000409,0.000015,0.000012,0.000015,0.000131,0.000092,0.000080,0.000238,0.000000,0.000000,0.000754,0.142897,-0.000232,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000412,0.000013,0.000012,0.000013,0.000133,0.000091,0.000080,0.000236,0.000000,0.000000,0.000743,0.142671,-0.000226,1.000000,0.000008 +126,2022-08-06 06:00:00,0.000412,0.000012,0.000012,0.000012,0.000134,0.000089,0.000079,0.000235,0.000000,0.000000,0.000733,0.142448,-0.000223,1.000000,0.000008 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000135,0.000088,0.000078,0.000229,0.000000,0.000000,0.000723,0.141836,-0.000613,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000136,0.000087,0.000077,0.000226,0.000000,0.000000,0.000713,0.141232,-0.000604,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000086,0.000076,0.000223,0.000000,0.000000,0.000703,0.140638,-0.000594,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000085,0.000075,0.000223,0.000000,0.000000,0.000693,0.140053,-0.000585,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000083,0.000073,0.000223,0.000000,0.000000,0.000683,0.139476,-0.000576,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000082,0.000072,0.000224,0.000000,0.000000,0.000674,0.138909,-0.000568,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000081,0.000071,0.000224,0.000000,0.000000,0.000664,0.138350,-0.000559,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000080,0.000070,0.000224,0.000124,0.000124,0.000654,0.137677,-0.000672,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000078,0.000068,0.000224,0.000375,0.000375,0.000644,0.136768,-0.000909,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000077,0.000066,0.000224,0.000527,0.000527,0.000633,0.135723,-0.001045,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000076,0.000064,0.000223,0.000625,0.000625,0.000621,0.134597,-0.001125,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000074,0.000062,0.000223,0.000688,0.000688,0.000608,0.133427,-0.001171,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000073,0.000059,0.000223,0.000634,0.000634,0.000595,0.132327,-0.001100,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000071,0.000057,0.000222,0.000554,0.000554,0.000582,0.131323,-0.001004,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000069,0.000056,0.000222,0.000518,0.000518,0.000568,0.130370,-0.000953,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000067,0.000054,0.000221,0.000446,0.000446,0.000554,0.129502,-0.000868,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000066,0.000052,0.000221,0.000329,0.000329,0.000541,0.128762,-0.000740,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000064,0.000051,0.000220,0.000192,0.000192,0.000528,0.128169,-0.000593,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000063,0.000050,0.000220,0.000051,0.000051,0.000515,0.127724,-0.000445,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000061,0.000050,0.000220,0.000000,0.000000,0.000504,0.127336,-0.000388,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000060,0.000049,0.000220,0.000000,0.000000,0.000492,0.126953,-0.000382,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000059,0.000048,0.000219,0.000000,0.000000,0.000482,0.126576,-0.000377,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000057,0.000047,0.000219,0.000000,0.000000,0.000472,0.126206,-0.000371,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000056,0.000047,0.000219,0.000000,0.000000,0.000462,0.125840,-0.000365,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000055,0.000046,0.000219,0.000000,0.000000,0.000453,0.125481,-0.000360,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000045,0.000220,0.000000,0.000000,0.000444,0.125127,-0.000354,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000053,0.000044,0.000220,0.000000,0.000000,0.000436,0.124778,-0.000349,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000052,0.000044,0.000220,0.000000,0.000000,0.000427,0.124434,-0.000343,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000051,0.000043,0.000220,0.000000,0.000000,0.000420,0.124096,-0.000338,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000050,0.000042,0.000220,0.000000,0.000000,0.000412,0.123763,-0.000333,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000042,0.000220,0.000000,0.000000,0.000405,0.123435,-0.000328,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000041,0.000221,0.000119,0.000119,0.000397,0.122995,-0.000440,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000040,0.000221,0.000369,0.000369,0.000390,0.122315,-0.000680,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000038,0.000221,0.000522,0.000522,0.000381,0.121495,-0.000820,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000036,0.000221,0.000623,0.000623,0.000372,0.120588,-0.000907,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000034,0.000221,0.000667,0.000667,0.000363,0.119652,-0.000937,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000043,0.000033,0.000221,0.000613,0.000613,0.000352,0.118783,-0.000869,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000031,0.000220,0.000540,0.000540,0.000342,0.117999,-0.000783,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000040,0.000030,0.000220,0.000518,0.000518,0.000331,0.117249,-0.000750,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000028,0.000220,0.000447,0.000447,0.000321,0.116580,-0.000669,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000027,0.000220,0.000327,0.000327,0.000310,0.116039,-0.000541,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000026,0.000220,0.000165,0.000165,0.000300,0.115666,-0.000373,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000026,0.000220,0.000023,0.000023,0.000291,0.115439,-0.000227,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000026,0.000220,0.000000,0.000000,0.000282,0.115238,-0.000201,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000025,0.000220,0.000000,0.000000,0.000274,0.115040,-0.000198,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000025,0.000220,0.000000,0.000000,0.000267,0.114845,-0.000195,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000024,0.000220,0.000000,0.000000,0.000260,0.114653,-0.000192,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000024,0.000220,0.000000,0.000000,0.000253,0.114464,-0.000189,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000030,0.000024,0.000220,0.000000,0.000000,0.000247,0.114278,-0.000186,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000023,0.000221,0.000000,0.000000,0.000241,0.114095,-0.000183,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000023,0.000221,0.000000,0.000000,0.000236,0.113914,-0.000181,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000023,0.000221,0.000000,0.000000,0.000230,0.113736,-0.000178,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000027,0.000022,0.000222,0.000000,0.000000,0.000225,0.113561,-0.000175,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000022,0.000222,0.000000,0.000000,0.000221,0.113389,-0.000172,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000026,0.000022,0.000223,0.000000,0.000000,0.000216,0.113219,-0.000170,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000026,0.000021,0.000223,0.000103,0.000103,0.000212,0.112950,-0.000269,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000025,0.000020,0.000223,0.000356,0.000356,0.000207,0.112437,-0.000514,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000024,0.000019,0.000224,0.000514,0.000514,0.000201,0.111775,-0.000661,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000024,0.000017,0.000224,0.000614,0.000614,0.000195,0.111025,-0.000750,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000023,0.000016,0.000224,0.000679,0.000679,0.000188,0.110223,-0.000802,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000022,0.000014,0.000224,0.000618,0.000618,0.000180,0.109493,-0.000730,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000021,0.000013,0.000224,0.000546,0.000546,0.000172,0.108845,-0.000648,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000020,0.000012,0.000224,0.000518,0.000518,0.000164,0.108235,-0.000610,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000019,0.000011,0.000224,0.000448,0.000448,0.000156,0.107703,-0.000533,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000018,0.000010,0.000224,0.000327,0.000327,0.000148,0.107298,-0.000405,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000009,0.000224,0.000187,0.000187,0.000141,0.107037,-0.000261,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000016,0.000009,0.000224,0.000035,0.000035,0.000134,0.106930,-0.000107,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000015,0.000009,0.000224,0.000000,0.000000,0.000127,0.106858,-0.000071,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000015,0.000009,0.000224,0.000000,0.000000,0.000122,0.106788,-0.000070,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000014,0.000009,0.000224,0.000000,0.000000,0.000116,0.106719,-0.000069,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000013,0.000009,0.000225,0.000000,0.000000,0.000112,0.106651,-0.000068,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000013,0.000009,0.000225,0.000000,0.000000,0.000107,0.106584,-0.000067,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000008,0.000225,0.000000,0.000000,0.000103,0.106518,-0.000066,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000012,0.000008,0.000226,0.000000,0.000000,0.000099,0.106453,-0.000065,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000012,0.000008,0.000226,0.000000,0.000000,0.000096,0.106389,-0.000064,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000011,0.000008,0.000227,0.000000,0.000000,0.000093,0.106326,-0.000063,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000011,0.000008,0.000227,0.000000,0.000000,0.000090,0.106264,-0.000062,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000011,0.000008,0.000228,0.000000,0.000000,0.000087,0.106202,-0.000061,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000010,0.000008,0.000228,0.000000,0.000000,0.000084,0.106142,-0.000060,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000010,0.000007,0.000229,0.000112,0.000112,0.000082,0.105973,-0.000169,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620786.csv b/test/channel_loss/channel_forcing/et/cat-2620786.csv new file mode 100644 index 000000000..b241427c9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620786.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000096,0.000000,0.000000,0.000000,0.000000,0.001451,0.000226,0.001451,0.000167,0.000167,0.010371,0.425688,-0.004881,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001283,0.000223,0.001283,0.000046,0.000046,0.009311,0.420896,-0.004792,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001141,0.000220,0.001141,0.000000,0.000000,0.008390,0.416213,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001019,0.000217,0.001020,0.000000,0.000000,0.007588,0.411591,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000916,0.000214,0.000916,0.000000,0.000000,0.006886,0.407030,-0.004561,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000827,0.000211,0.000827,0.000000,0.000000,0.006271,0.402530,-0.004501,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000750,0.000209,0.000750,0.000000,0.000000,0.005730,0.398088,-0.004441,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000683,0.000206,0.000683,0.000000,0.000000,0.005253,0.393706,-0.004383,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000624,0.000203,0.000625,0.000000,0.000000,0.004832,0.389381,-0.004325,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000573,0.000200,0.000574,0.000000,0.000000,0.004460,0.385113,-0.004268,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000528,0.000198,0.000530,0.000000,0.000000,0.004129,0.380902,-0.004211,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000489,0.000195,0.000491,0.000000,0.000000,0.003836,0.376746,-0.004156,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000454,0.000193,0.000456,0.000000,0.000000,0.003575,0.372645,-0.004101,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000423,0.000190,0.000426,0.000000,0.000000,0.003342,0.368598,-0.004047,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000395,0.000187,0.000399,0.000134,0.000134,0.003134,0.364473,-0.004125,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000371,0.000185,0.000375,0.000383,0.000383,0.002948,0.360156,-0.004317,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000349,0.000182,0.000354,0.000535,0.000535,0.002781,0.355746,-0.004410,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000329,0.000179,0.000335,0.000625,0.000625,0.002631,0.351305,-0.004441,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000312,0.000176,0.000318,0.000525,0.000525,0.002495,0.347021,-0.004284,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000330,0.000000,0.000000,0.000000,0.000006,0.000296,0.000174,0.000303,0.000481,0.000481,0.002373,0.343163,-0.003858,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000330,0.000000,0.000000,0.000000,0.000007,0.000282,0.000172,0.000289,0.000425,0.000425,0.002263,0.339412,-0.003751,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000612,0.000011,0.000020,0.000011,0.000008,0.000269,0.000170,0.000288,0.000352,0.000352,0.002163,0.336041,-0.003370,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000486,0.000010,0.000009,0.000010,0.000008,0.000258,0.000167,0.000276,0.000315,0.000315,0.002073,0.332638,-0.003404,1.000000,0.000008 +23,2022-08-01 23:00:00,0.000577,0.000024,0.000032,0.000024,0.000009,0.000247,0.000165,0.000280,0.000237,0.000237,0.001991,0.329423,-0.003215,1.000000,0.000016 +24,2022-08-02 00:00:00,0.000502,0.000028,0.000034,0.000028,0.000010,0.000238,0.000163,0.000276,0.000153,0.000153,0.001917,0.326257,-0.003166,1.000000,0.000022 +25,2022-08-02 01:00:00,0.001146,0.000162,0.000268,0.000162,0.000011,0.000229,0.000162,0.000402,0.000065,0.000065,0.001850,0.323625,-0.002632,1.000000,0.000127 +26,2022-08-02 02:00:00,0.001245,0.000261,0.000341,0.000261,0.000012,0.000221,0.000160,0.000494,0.000000,0.000000,0.001788,0.321117,-0.002508,1.000000,0.000207 +27,2022-08-02 03:00:00,0.001217,0.000318,0.000327,0.000318,0.000012,0.000214,0.000159,0.000545,0.000000,0.000000,0.001733,0.318629,-0.002488,1.000000,0.000215 +28,2022-08-02 04:00:00,0.001221,0.000330,0.000328,0.000330,0.000013,0.000208,0.000157,0.000551,0.000000,0.000000,0.001682,0.316177,-0.002452,1.000000,0.000213 +29,2022-08-02 05:00:00,0.001106,0.000298,0.000275,0.000298,0.000014,0.000202,0.000156,0.000514,0.000000,0.000000,0.001635,0.313695,-0.002482,1.000000,0.000189 +30,2022-08-02 06:00:00,0.001022,0.000265,0.000238,0.000265,0.000015,0.000197,0.000154,0.000477,0.000000,0.000000,0.001593,0.311200,-0.002495,1.000000,0.000162 +31,2022-08-02 07:00:00,0.000000,0.000115,0.000000,0.000115,0.000016,0.000192,0.000152,0.000322,0.000000,0.000000,0.001553,0.307964,-0.003236,1.000000,0.000048 +32,2022-08-02 08:00:00,0.000000,0.000048,0.000000,0.000048,0.000017,0.000187,0.000150,0.000252,0.000000,0.000000,0.001516,0.304770,-0.003193,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000183,0.000148,0.000201,0.000000,0.000000,0.001481,0.301619,-0.003151,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000179,0.000146,0.000197,0.000000,0.000000,0.001449,0.298509,-0.003110,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000175,0.000144,0.000195,0.000000,0.000000,0.001418,0.295441,-0.003069,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000171,0.000142,0.000192,0.000000,0.000000,0.001389,0.292413,-0.003028,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000107,0.000002,0.000003,0.000002,0.000022,0.000168,0.000140,0.000191,0.000000,0.000000,0.001362,0.289527,-0.002886,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000095,0.000001,0.000000,0.000001,0.000023,0.000164,0.000139,0.000188,0.000119,0.000119,0.001336,0.286552,-0.002974,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000068,0.000001,0.000000,0.000001,0.000024,0.000161,0.000137,0.000186,0.000329,0.000329,0.001312,0.283384,-0.003168,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000068,0.000000,0.000000,0.000000,0.000025,0.000158,0.000134,0.000184,0.000458,0.000458,0.001288,0.280130,-0.003254,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000068,0.000000,0.000000,0.000000,0.000026,0.000155,0.000132,0.000182,0.000542,0.000542,0.001265,0.276836,-0.003294,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000320,0.000000,0.000000,0.000000,0.000028,0.000153,0.000131,0.000180,0.000595,0.000595,0.001243,0.273782,-0.003054,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000150,0.000128,0.000179,0.000537,0.000537,0.001221,0.270572,-0.003210,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000147,0.000126,0.000177,0.000486,0.000486,0.001200,0.267393,-0.003180,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000145,0.000125,0.000176,0.000486,0.000486,0.001180,0.264255,-0.003137,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000142,0.000123,0.000175,0.000422,0.000422,0.001160,0.261222,-0.003033,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000140,0.000121,0.000174,0.000312,0.000312,0.001141,0.258337,-0.002885,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000138,0.000119,0.000173,0.000180,0.000180,0.001122,0.255621,-0.002717,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000135,0.000118,0.000172,0.000033,0.000033,0.001104,0.253085,-0.002536,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000133,0.000116,0.000171,0.000000,0.000000,0.001087,0.250616,-0.002469,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000131,0.000114,0.000170,0.000000,0.000000,0.001070,0.248179,-0.002437,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000129,0.000113,0.000169,0.000000,0.000000,0.001054,0.245774,-0.002405,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000127,0.000111,0.000169,0.000000,0.000000,0.001038,0.243402,-0.002373,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000125,0.000110,0.000168,0.000000,0.000000,0.001023,0.241060,-0.002341,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000123,0.000109,0.000167,0.000000,0.000000,0.001008,0.238749,-0.002311,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000122,0.000107,0.000167,0.000000,0.000000,0.000993,0.236469,-0.002280,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000120,0.000106,0.000167,0.000000,0.000000,0.000979,0.234219,-0.002250,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000118,0.000104,0.000166,0.000000,0.000000,0.000965,0.231999,-0.002220,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000116,0.000103,0.000166,0.000000,0.000000,0.000952,0.229808,-0.002191,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000115,0.000102,0.000166,0.000000,0.000000,0.000938,0.227646,-0.002162,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000113,0.000100,0.000165,0.000000,0.000000,0.000925,0.225512,-0.002134,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000112,0.000099,0.000165,0.000128,0.000128,0.000913,0.223281,-0.002231,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000110,0.000097,0.000165,0.000384,0.000384,0.000900,0.220826,-0.002455,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000108,0.000096,0.000165,0.000534,0.000534,0.000887,0.218255,-0.002570,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000107,0.000094,0.000165,0.000632,0.000632,0.000874,0.215622,-0.002633,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000105,0.000092,0.000165,0.000612,0.000612,0.000861,0.213043,-0.002579,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000104,0.000091,0.000165,0.000553,0.000553,0.000848,0.210556,-0.002487,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001067,0.000040,0.000072,0.000040,0.000062,0.000102,0.000090,0.000204,0.000493,0.000493,0.000836,0.209143,-0.001413,1.000000,0.000032 +69,2022-08-03 21:00:00,0.000268,0.000018,0.000000,0.000018,0.000064,0.000101,0.000089,0.000183,0.000471,0.000471,0.000824,0.207054,-0.002090,1.000000,0.000014 +70,2022-08-03 22:00:00,0.000000,0.000014,0.000000,0.000014,0.000065,0.000099,0.000087,0.000179,0.000409,0.000409,0.000812,0.204789,-0.002265,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000098,0.000086,0.000165,0.000302,0.000302,0.000800,0.202659,-0.002130,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000096,0.000085,0.000165,0.000191,0.000191,0.000788,0.200667,-0.001992,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000095,0.000083,0.000165,0.000047,0.000047,0.000777,0.198843,-0.001824,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000093,0.000082,0.000165,0.000000,0.000000,0.000766,0.197089,-0.001754,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000092,0.000081,0.000165,0.000000,0.000000,0.000755,0.195359,-0.001730,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000091,0.000080,0.000165,0.000000,0.000000,0.000744,0.193651,-0.001708,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000090,0.000079,0.000165,0.000000,0.000000,0.000734,0.191966,-0.001685,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000088,0.000078,0.000166,0.000000,0.000000,0.000724,0.190304,-0.001663,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000087,0.000077,0.000166,0.000000,0.000000,0.000714,0.188663,-0.001641,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000086,0.000076,0.000166,0.000000,0.000000,0.000704,0.187044,-0.001619,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000085,0.000075,0.000167,0.000000,0.000000,0.000694,0.185446,-0.001598,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000083,0.000074,0.000167,0.000000,0.000000,0.000685,0.183869,-0.001577,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000082,0.000073,0.000167,0.000000,0.000000,0.000675,0.182313,-0.001556,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000081,0.000072,0.000168,0.000000,0.000000,0.000666,0.180778,-0.001535,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000080,0.000071,0.000168,0.000000,0.000000,0.000657,0.179262,-0.001515,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000079,0.000070,0.000169,0.000123,0.000123,0.000648,0.177646,-0.001616,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000078,0.000069,0.000169,0.000377,0.000377,0.000639,0.175800,-0.001846,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000077,0.000068,0.000170,0.000536,0.000536,0.000630,0.173822,-0.001978,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000076,0.000066,0.000170,0.000634,0.000634,0.000621,0.171773,-0.002049,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000075,0.000065,0.000171,0.000696,0.000696,0.000612,0.169690,-0.002084,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000073,0.000064,0.000171,0.000632,0.000632,0.000602,0.167697,-0.001993,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000072,0.000063,0.000171,0.000556,0.000556,0.000593,0.165805,-0.001891,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000071,0.000062,0.000172,0.000513,0.000513,0.000583,0.163982,-0.001824,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000070,0.000060,0.000172,0.000446,0.000446,0.000574,0.162248,-0.001734,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000069,0.000059,0.000173,0.000329,0.000329,0.000565,0.160652,-0.001596,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000068,0.000059,0.000173,0.000196,0.000196,0.000556,0.159209,-0.001443,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000067,0.000058,0.000174,0.000054,0.000054,0.000547,0.157925,-0.001283,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000066,0.000057,0.000174,0.000000,0.000000,0.000538,0.156712,-0.001214,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000064,0.000056,0.000175,0.000000,0.000000,0.000530,0.155514,-0.001198,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000064,0.000055,0.000175,0.000000,0.000000,0.000522,0.154332,-0.001182,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000063,0.000055,0.000176,0.000000,0.000000,0.000514,0.153166,-0.001166,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000062,0.000054,0.000177,0.000000,0.000000,0.000507,0.152015,-0.001151,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000061,0.000053,0.000177,0.000000,0.000000,0.000499,0.150880,-0.001136,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000060,0.000053,0.000178,0.000000,0.000000,0.000492,0.149759,-0.001121,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000059,0.000052,0.000179,0.000000,0.000000,0.000485,0.148653,-0.001106,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000058,0.000051,0.000179,0.000000,0.000000,0.000478,0.147562,-0.001091,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000057,0.000051,0.000180,0.000000,0.000000,0.000471,0.146485,-0.001077,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000057,0.000050,0.000181,0.000000,0.000000,0.000465,0.145422,-0.001063,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000056,0.000049,0.000182,0.000000,0.000000,0.000458,0.144374,-0.001049,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000055,0.000049,0.000182,0.000137,0.000137,0.000452,0.143204,-0.001170,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000054,0.000048,0.000183,0.000383,0.000383,0.000445,0.141807,-0.001397,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000053,0.000047,0.000184,0.000535,0.000535,0.000439,0.140277,-0.001529,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000052,0.000046,0.000185,0.000639,0.000639,0.000432,0.138666,-0.001611,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000052,0.000045,0.000185,0.000614,0.000614,0.000425,0.137101,-0.001566,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000051,0.000044,0.000186,0.000563,0.000563,0.000418,0.135669,-0.001432,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000050,0.000043,0.000187,0.000499,0.000499,0.000411,0.134318,-0.001350,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000049,0.000042,0.000187,0.000470,0.000470,0.000404,0.133015,-0.001303,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000140,0.000048,0.000041,0.000188,0.000401,0.000401,0.000397,0.131797,-0.001218,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000146,0.000000,0.000000,0.000000,0.000141,0.000047,0.000041,0.000189,0.000298,0.000298,0.000390,0.130778,-0.001019,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000047,0.000040,0.000190,0.000180,0.000180,0.000384,0.129807,-0.000971,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000367,0.000011,0.000020,0.000011,0.000145,0.000046,0.000040,0.000201,0.000061,0.000061,0.000378,0.129247,-0.000559,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000712,0.000058,0.000097,0.000058,0.000146,0.000045,0.000040,0.000250,0.000000,0.000000,0.000372,0.129019,-0.000229,1.000000,0.000048 +123,2022-08-06 03:00:00,0.000466,0.000052,0.000044,0.000052,0.000148,0.000045,0.000039,0.000244,0.000000,0.000000,0.000367,0.128603,-0.000416,1.000000,0.000039 +124,2022-08-06 04:00:00,0.000353,0.000045,0.000026,0.000045,0.000149,0.000044,0.000039,0.000238,0.000000,0.000000,0.000362,0.128099,-0.000504,1.000000,0.000020 +125,2022-08-06 05:00:00,0.000336,0.000028,0.000023,0.000028,0.000151,0.000043,0.000039,0.000222,0.000000,0.000000,0.000357,0.127588,-0.000512,1.000000,0.000016 +126,2022-08-06 06:00:00,0.000400,0.000029,0.000033,0.000029,0.000152,0.000043,0.000038,0.000224,0.000000,0.000000,0.000353,0.127137,-0.000451,1.000000,0.000019 +127,2022-08-06 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000154,0.000042,0.000038,0.000209,0.000000,0.000000,0.000349,0.126330,-0.000807,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000155,0.000042,0.000037,0.000204,0.000000,0.000000,0.000344,0.125533,-0.000797,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000041,0.000037,0.000198,0.000000,0.000000,0.000340,0.124747,-0.000786,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000041,0.000036,0.000199,0.000000,0.000000,0.000336,0.123971,-0.000776,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000040,0.000036,0.000200,0.000000,0.000000,0.000331,0.123205,-0.000766,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000040,0.000035,0.000201,0.000000,0.000000,0.000327,0.122450,-0.000755,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000039,0.000035,0.000202,0.000000,0.000000,0.000323,0.121704,-0.000746,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000039,0.000034,0.000203,0.000119,0.000119,0.000319,0.120851,-0.000853,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000038,0.000034,0.000204,0.000369,0.000369,0.000314,0.119763,-0.001088,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000038,0.000033,0.000205,0.000522,0.000522,0.000310,0.118538,-0.001225,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000037,0.000032,0.000206,0.000616,0.000616,0.000305,0.117236,-0.001302,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000036,0.000031,0.000207,0.000681,0.000681,0.000300,0.115887,-0.001348,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000036,0.000031,0.000207,0.000625,0.000625,0.000295,0.114611,-0.001276,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000035,0.000030,0.000208,0.000548,0.000548,0.000289,0.113429,-0.001183,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000034,0.000029,0.000209,0.000514,0.000514,0.000284,0.112295,-0.001133,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000034,0.000028,0.000210,0.000441,0.000441,0.000279,0.111249,-0.001046,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000033,0.000028,0.000211,0.000322,0.000322,0.000273,0.110333,-0.000916,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000033,0.000027,0.000212,0.000190,0.000190,0.000268,0.109560,-0.000773,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000032,0.000027,0.000212,0.000045,0.000045,0.000263,0.108941,-0.000619,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000031,0.000027,0.000213,0.000000,0.000000,0.000259,0.108373,-0.000567,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000031,0.000026,0.000214,0.000000,0.000000,0.000254,0.107814,-0.000560,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000030,0.000026,0.000215,0.000000,0.000000,0.000250,0.107261,-0.000552,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000030,0.000026,0.000216,0.000000,0.000000,0.000246,0.106716,-0.000545,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000029,0.000025,0.000217,0.000000,0.000000,0.000242,0.106178,-0.000538,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000029,0.000025,0.000218,0.000000,0.000000,0.000238,0.105647,-0.000531,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000028,0.000025,0.000219,0.000000,0.000000,0.000234,0.105124,-0.000524,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000028,0.000024,0.000220,0.000000,0.000000,0.000230,0.104607,-0.000517,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000024,0.000221,0.000000,0.000000,0.000227,0.104097,-0.000510,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000024,0.000222,0.000000,0.000000,0.000223,0.103593,-0.000503,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000027,0.000023,0.000223,0.000000,0.000000,0.000220,0.103097,-0.000497,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000026,0.000023,0.000224,0.000000,0.000000,0.000217,0.102606,-0.000490,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000026,0.000023,0.000225,0.000114,0.000114,0.000214,0.102010,-0.000596,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000025,0.000022,0.000226,0.000362,0.000362,0.000210,0.101177,-0.000833,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000025,0.000022,0.000226,0.000515,0.000515,0.000207,0.100205,-0.000973,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000227,0.000615,0.000615,0.000203,0.099146,-0.001059,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000024,0.000020,0.000228,0.000654,0.000654,0.000199,0.098063,-0.001083,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000229,0.000599,0.000599,0.000195,0.097048,-0.001015,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000019,0.000230,0.000534,0.000534,0.000191,0.096111,-0.000937,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000018,0.000231,0.000509,0.000509,0.000187,0.095210,-0.000901,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000232,0.000434,0.000434,0.000182,0.094396,-0.000815,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000017,0.000232,0.000320,0.000320,0.000178,0.093704,-0.000691,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000017,0.000233,0.000156,0.000000,0.000174,0.093338,-0.000366,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000017,0.000234,0.000019,0.000000,0.000171,0.092977,-0.000361,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000017,0.000235,0.000000,0.000000,0.000167,0.092620,-0.000357,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000236,0.000000,0.000000,0.000164,0.092268,-0.000352,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000016,0.000237,0.000000,0.000000,0.000161,0.091921,-0.000347,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000016,0.000238,0.000000,0.000000,0.000158,0.091578,-0.000343,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000016,0.000239,0.000000,0.000000,0.000155,0.091240,-0.000338,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000016,0.000240,0.000000,0.000000,0.000152,0.090906,-0.000334,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000015,0.000240,0.000000,0.000000,0.000149,0.090577,-0.000329,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000015,0.000241,0.000000,0.000000,0.000147,0.090252,-0.000325,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000015,0.000242,0.000000,0.000000,0.000144,0.089932,-0.000321,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000015,0.000243,0.000000,0.000000,0.000142,0.089615,-0.000316,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000015,0.000244,0.000000,0.000000,0.000140,0.089303,-0.000312,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000014,0.000245,0.000000,0.000000,0.000138,0.088995,-0.000308,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000246,0.000099,0.000000,0.000136,0.088691,-0.000304,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000014,0.000247,0.000350,0.000000,0.000133,0.088391,-0.000300,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000248,0.000506,0.000000,0.000131,0.088095,-0.000296,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000014,0.000249,0.000606,0.000000,0.000130,0.087802,-0.000292,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000014,0.000250,0.000667,0.000000,0.000128,0.087514,-0.000288,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000590,0.000000,0.000126,0.087230,-0.000285,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000013,0.000252,0.000534,0.000000,0.000124,0.086949,-0.000281,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000504,0.000000,0.000122,0.086672,-0.000277,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000013,0.000254,0.000438,0.000000,0.000120,0.086398,-0.000273,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000013,0.000255,0.000319,0.000000,0.000119,0.086129,-0.000270,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000013,0.000256,0.000178,0.000000,0.000117,0.085862,-0.000266,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000014,0.000012,0.000257,0.000028,0.000000,0.000115,0.085600,-0.000263,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000014,0.000012,0.000258,0.000000,0.000000,0.000114,0.085340,-0.000259,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000014,0.000012,0.000259,0.000000,0.000000,0.000112,0.085085,-0.000256,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000013,0.000012,0.000260,0.000000,0.000000,0.000111,0.084832,-0.000252,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000013,0.000012,0.000260,0.000000,0.000000,0.000109,0.084583,-0.000249,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000012,0.000261,0.000000,0.000000,0.000108,0.084337,-0.000246,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000011,0.000262,0.000000,0.000000,0.000106,0.084095,-0.000243,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000011,0.000263,0.000000,0.000000,0.000105,0.083855,-0.000239,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000011,0.000264,0.000000,0.000000,0.000103,0.083619,-0.000236,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000102,0.083386,-0.000233,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000101,0.083156,-0.000230,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000011,0.000267,0.000000,0.000000,0.000099,0.082929,-0.000227,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000012,0.000011,0.000268,0.000000,0.000000,0.000098,0.082705,-0.000224,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000012,0.000010,0.000269,0.000108,0.000000,0.000097,0.082484,-0.000221,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620787.csv b/test/channel_loss/channel_forcing/et/cat-2620787.csv new file mode 100644 index 000000000..1488073ac --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620787.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001504,0.000603,0.001504,0.000162,0.000162,0.010691,0.418392,-0.005087,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001378,0.000594,0.001378,0.000044,0.000044,0.009907,0.413435,-0.004957,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001269,0.000585,0.001270,0.000000,0.000000,0.009222,0.408597,-0.004839,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001176,0.000576,0.001177,0.000000,0.000000,0.008621,0.403831,-0.004766,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001096,0.000567,0.001096,0.000000,0.000000,0.008093,0.399136,-0.004694,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001026,0.000559,0.001026,0.000000,0.000000,0.007626,0.394513,-0.004623,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000964,0.000550,0.000965,0.000000,0.000000,0.007212,0.389959,-0.004554,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000910,0.000542,0.000911,0.000000,0.000000,0.006844,0.385474,-0.004485,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000862,0.000534,0.000863,0.000000,0.000000,0.006515,0.381057,-0.004417,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000820,0.000526,0.000821,0.000000,0.000000,0.006221,0.376706,-0.004351,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000782,0.000518,0.000784,0.000000,0.000000,0.005956,0.372421,-0.004285,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000748,0.000510,0.000750,0.000000,0.000000,0.005718,0.368200,-0.004221,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000718,0.000502,0.000720,0.000000,0.000000,0.005503,0.364043,-0.004157,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000690,0.000495,0.000693,0.000000,0.000000,0.005307,0.359949,-0.004094,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000665,0.000487,0.000669,0.000132,0.000132,0.005128,0.355786,-0.004163,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000643,0.000479,0.000646,0.000378,0.000378,0.004965,0.351444,-0.004342,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000622,0.000471,0.000626,0.000529,0.000529,0.004814,0.347019,-0.004426,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000603,0.000463,0.000607,0.000625,0.000625,0.004673,0.342565,-0.004453,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000585,0.000455,0.000590,0.000518,0.000518,0.004543,0.338284,-0.004281,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000403,0.000000,0.000000,0.000000,0.000006,0.000568,0.000448,0.000574,0.000478,0.000478,0.004423,0.334505,-0.003780,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000447,0.000000,0.000000,0.000000,0.000007,0.000553,0.000441,0.000560,0.000419,0.000419,0.004311,0.330883,-0.003621,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000707,0.000007,0.000013,0.000007,0.000007,0.000539,0.000435,0.000553,0.000339,0.000339,0.004207,0.327638,-0.003245,1.000000,0.000006 +22,2022-08-01 22:00:00,0.000605,0.000008,0.000009,0.000008,0.000008,0.000526,0.000429,0.000542,0.000304,0.000304,0.004110,0.324380,-0.003258,1.000000,0.000007 +23,2022-08-01 23:00:00,0.000646,0.000014,0.000017,0.000014,0.000009,0.000513,0.000423,0.000536,0.000228,0.000228,0.004020,0.321278,-0.003101,1.000000,0.000009 +24,2022-08-02 00:00:00,0.000615,0.000017,0.000021,0.000017,0.000009,0.000502,0.000418,0.000529,0.000149,0.000149,0.003935,0.318267,-0.003011,1.000000,0.000013 +25,2022-08-02 01:00:00,0.001258,0.000078,0.000127,0.000078,0.000010,0.000492,0.000413,0.000580,0.000063,0.000063,0.003857,0.315915,-0.002352,1.000000,0.000061 +26,2022-08-02 02:00:00,0.001301,0.000117,0.000148,0.000117,0.000011,0.000482,0.000409,0.000610,0.000000,0.000000,0.003784,0.313681,-0.002233,1.000000,0.000092 +27,2022-08-02 03:00:00,0.001262,0.000139,0.000139,0.000139,0.000012,0.000473,0.000405,0.000623,0.000000,0.000000,0.003716,0.311451,-0.002230,1.000000,0.000092 +28,2022-08-02 04:00:00,0.001286,0.000144,0.000144,0.000144,0.000012,0.000464,0.000401,0.000620,0.000000,0.000000,0.003653,0.309275,-0.002177,1.000000,0.000093 +29,2022-08-02 05:00:00,0.001165,0.000129,0.000119,0.000129,0.000013,0.000456,0.000397,0.000599,0.000000,0.000000,0.003593,0.307036,-0.002238,1.000000,0.000082 +30,2022-08-02 06:00:00,0.001136,0.000121,0.000113,0.000121,0.000014,0.000449,0.000393,0.000584,0.000000,0.000000,0.003537,0.304809,-0.002228,1.000000,0.000075 +31,2022-08-02 07:00:00,0.000000,0.000052,0.000000,0.000052,0.000015,0.000442,0.000387,0.000509,0.000000,0.000000,0.003483,0.301607,-0.003201,1.000000,0.000023 +32,2022-08-02 08:00:00,0.000000,0.000023,0.000000,0.000023,0.000016,0.000434,0.000381,0.000473,0.000000,0.000000,0.003429,0.298454,-0.003153,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000428,0.000375,0.000444,0.000000,0.000000,0.003377,0.295349,-0.003106,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000421,0.000370,0.000438,0.000000,0.000000,0.003326,0.292290,-0.003059,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000414,0.000364,0.000433,0.000000,0.000000,0.003275,0.289277,-0.003013,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000408,0.000358,0.000427,0.000000,0.000000,0.003226,0.286310,-0.002967,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000171,0.000001,0.000003,0.000001,0.000021,0.000401,0.000353,0.000423,0.000000,0.000000,0.003178,0.283553,-0.002757,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000154,0.000001,0.000000,0.000001,0.000022,0.000395,0.000348,0.000417,0.000119,0.000119,0.003131,0.280706,-0.002847,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000108,0.000001,0.000000,0.000001,0.000023,0.000389,0.000342,0.000412,0.000321,0.000321,0.003085,0.277659,-0.003047,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000108,0.000000,0.000000,0.000000,0.000024,0.000383,0.000337,0.000407,0.000448,0.000448,0.003039,0.274532,-0.003127,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000108,0.000000,0.000000,0.000000,0.000025,0.000377,0.000331,0.000402,0.000535,0.000535,0.002993,0.271366,-0.003166,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000318,0.000000,0.000000,0.000000,0.000026,0.000371,0.000325,0.000397,0.000587,0.000587,0.002947,0.268404,-0.002962,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000365,0.000320,0.000392,0.000534,0.000534,0.002902,0.265287,-0.003117,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000016,0.000000,0.000000,0.000000,0.000028,0.000359,0.000314,0.000387,0.000479,0.000479,0.002857,0.262226,-0.003061,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000014,0.000000,0.000000,0.000000,0.000029,0.000353,0.000308,0.000382,0.000475,0.000475,0.002812,0.259212,-0.003014,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000347,0.000303,0.000378,0.000412,0.000412,0.002767,0.256292,-0.002920,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000016,0.000000,0.000000,0.000000,0.000031,0.000342,0.000298,0.000373,0.000306,0.000306,0.002724,0.253537,-0.002755,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000018,0.000000,0.000000,0.000000,0.000033,0.000336,0.000293,0.000369,0.000178,0.000178,0.002681,0.250951,-0.002586,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000014,0.000000,0.000000,0.000000,0.000034,0.000331,0.000289,0.000364,0.000032,0.000032,0.002639,0.248543,-0.002408,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000325,0.000284,0.000360,0.000000,0.000000,0.002598,0.246189,-0.002353,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000014,0.000000,0.000000,0.000000,0.000036,0.000320,0.000280,0.000356,0.000000,0.000000,0.002558,0.243885,-0.002304,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000014,0.000000,0.000000,0.000000,0.000037,0.000315,0.000276,0.000352,0.000000,0.000000,0.002518,0.241615,-0.002270,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000014,0.000000,0.000000,0.000000,0.000038,0.000310,0.000272,0.000349,0.000000,0.000000,0.002480,0.239380,-0.002235,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000016,0.000000,0.000000,0.000000,0.000040,0.000305,0.000268,0.000345,0.000000,0.000000,0.002442,0.237181,-0.002199,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000300,0.000264,0.000341,0.000000,0.000000,0.002406,0.234999,-0.002182,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000296,0.000260,0.000338,0.000000,0.000000,0.002369,0.232850,-0.002149,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000291,0.000256,0.000335,0.000000,0.000000,0.002334,0.230733,-0.002117,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000287,0.000252,0.000331,0.000000,0.000000,0.002299,0.228649,-0.002085,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000282,0.000248,0.000328,0.000000,0.000000,0.002265,0.226595,-0.002053,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000278,0.000244,0.000325,0.000000,0.000000,0.002231,0.224573,-0.002022,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000274,0.000241,0.000322,0.000000,0.000000,0.002198,0.222581,-0.001992,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000270,0.000237,0.000319,0.000126,0.000126,0.002165,0.220495,-0.002086,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000265,0.000233,0.000316,0.000379,0.000379,0.002132,0.218191,-0.002304,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000261,0.000228,0.000314,0.000528,0.000528,0.002099,0.215776,-0.002415,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000257,0.000223,0.000311,0.000630,0.000630,0.002066,0.213296,-0.002480,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000253,0.000219,0.000308,0.000609,0.000609,0.002032,0.210874,-0.002422,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000248,0.000215,0.000305,0.000554,0.000554,0.001999,0.208543,-0.002331,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000889,0.000007,0.000013,0.000007,0.000058,0.000244,0.000212,0.000309,0.000491,0.000491,0.001967,0.207173,-0.001370,1.000000,0.000006 +69,2022-08-03 21:00:00,0.000253,0.000003,0.000000,0.000003,0.000059,0.000240,0.000209,0.000302,0.000459,0.000459,0.001935,0.205240,-0.001933,1.000000,0.000003 +70,2022-08-03 22:00:00,0.000000,0.000003,0.000000,0.000003,0.000060,0.000236,0.000205,0.000299,0.000398,0.000398,0.001904,0.203148,-0.002092,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000232,0.000201,0.000294,0.000295,0.000295,0.001873,0.201189,-0.001959,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000228,0.000198,0.000291,0.000189,0.000189,0.001842,0.199363,-0.001826,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000225,0.000195,0.000289,0.000045,0.000045,0.001812,0.197706,-0.001656,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000221,0.000192,0.000287,0.000000,0.000000,0.001783,0.196120,-0.001587,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000217,0.000189,0.000284,0.000000,0.000000,0.001755,0.194557,-0.001563,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000214,0.000186,0.000282,0.000000,0.000000,0.001727,0.193017,-0.001539,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000210,0.000183,0.000280,0.000000,0.000000,0.001700,0.191501,-0.001516,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000207,0.000180,0.000278,0.000000,0.000000,0.001673,0.190008,-0.001493,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000204,0.000178,0.000276,0.000000,0.000000,0.001647,0.188537,-0.001471,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000200,0.000175,0.000274,0.000000,0.000000,0.001622,0.187088,-0.001449,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000197,0.000172,0.000273,0.000000,0.000000,0.001597,0.185662,-0.001427,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000194,0.000170,0.000271,0.000000,0.000000,0.001573,0.184256,-0.001405,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000191,0.000167,0.000269,0.000000,0.000000,0.001549,0.182872,-0.001384,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000188,0.000165,0.000268,0.000000,0.000000,0.001525,0.181509,-0.001363,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000185,0.000162,0.000266,0.000000,0.000000,0.001502,0.180166,-0.001343,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000182,0.000160,0.000265,0.000123,0.000123,0.001479,0.178723,-0.001443,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000180,0.000156,0.000263,0.000372,0.000372,0.001456,0.177056,-0.001667,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000177,0.000153,0.000262,0.000529,0.000529,0.001433,0.175259,-0.001797,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000174,0.000150,0.000260,0.000632,0.000632,0.001409,0.173388,-0.001870,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000171,0.000146,0.000259,0.000698,0.000698,0.001384,0.171480,-0.001908,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000167,0.000143,0.000257,0.000637,0.000637,0.001360,0.169661,-0.001819,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000164,0.000140,0.000255,0.000560,0.000560,0.001335,0.167946,-0.001715,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000161,0.000137,0.000253,0.000507,0.000507,0.001310,0.166308,-0.001637,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000158,0.000134,0.000252,0.000440,0.000440,0.001286,0.164762,-0.001547,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000155,0.000131,0.000250,0.000326,0.000326,0.001262,0.163350,-0.001412,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000152,0.000129,0.000249,0.000194,0.000194,0.001239,0.162090,-0.001260,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000149,0.000127,0.000247,0.000052,0.000052,0.001216,0.160989,-0.001101,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000147,0.000125,0.000246,0.000000,0.000000,0.001194,0.159956,-0.001033,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000144,0.000123,0.000245,0.000000,0.000000,0.001173,0.158938,-0.001018,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000142,0.000121,0.000244,0.000000,0.000000,0.001153,0.157935,-0.001002,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000139,0.000119,0.000242,0.000000,0.000000,0.001133,0.156948,-0.000987,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000137,0.000117,0.000241,0.000000,0.000000,0.001114,0.155976,-0.000972,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000134,0.000116,0.000241,0.000000,0.000000,0.001095,0.155018,-0.000958,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000132,0.000114,0.000240,0.000000,0.000000,0.001077,0.154074,-0.000943,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000130,0.000112,0.000239,0.000000,0.000000,0.001059,0.153145,-0.000929,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000128,0.000111,0.000238,0.000000,0.000000,0.001042,0.152230,-0.000915,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000126,0.000109,0.000237,0.000000,0.000000,0.001025,0.151329,-0.000901,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000124,0.000107,0.000237,0.000000,0.000000,0.001009,0.150441,-0.000888,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000122,0.000106,0.000236,0.000000,0.000000,0.000993,0.149567,-0.000874,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000120,0.000104,0.000236,0.000136,0.000136,0.000977,0.148572,-0.000995,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000118,0.000102,0.000235,0.000378,0.000378,0.000961,0.147354,-0.001218,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000116,0.000099,0.000234,0.000530,0.000530,0.000944,0.146004,-0.001350,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000113,0.000096,0.000234,0.000637,0.000637,0.000927,0.144569,-0.001435,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000111,0.000094,0.000233,0.000613,0.000613,0.000910,0.143179,-0.001390,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000051,0.000000,0.000000,0.000000,0.000123,0.000109,0.000091,0.000232,0.000565,0.000565,0.000892,0.141908,-0.001272,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000051,0.000000,0.000000,0.000000,0.000124,0.000107,0.000089,0.000231,0.000498,0.000498,0.000874,0.140721,-0.001187,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000055,0.000000,0.000000,0.000000,0.000125,0.000105,0.000087,0.000230,0.000468,0.000468,0.000857,0.139586,-0.001134,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000055,0.000000,0.000000,0.000000,0.000127,0.000103,0.000085,0.000229,0.000396,0.000396,0.000839,0.138540,-0.001047,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000095,0.000000,0.000000,0.000000,0.000128,0.000101,0.000084,0.000229,0.000295,0.000295,0.000823,0.137648,-0.000892,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000051,0.000000,0.000000,0.000000,0.000130,0.000099,0.000082,0.000228,0.000180,0.000180,0.000806,0.136839,-0.000809,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000314,0.000003,0.000005,0.000003,0.000131,0.000097,0.000081,0.000230,0.000058,0.000058,0.000791,0.136417,-0.000421,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000521,0.000012,0.000019,0.000012,0.000132,0.000095,0.000081,0.000239,0.000000,0.000000,0.000777,0.136249,-0.000168,1.000000,0.000010 +123,2022-08-06 03:00:00,0.000337,0.000010,0.000008,0.000010,0.000134,0.000093,0.000080,0.000237,0.000000,0.000000,0.000764,0.135913,-0.000336,1.000000,0.000008 +124,2022-08-06 04:00:00,0.000248,0.000008,0.000004,0.000008,0.000135,0.000092,0.000080,0.000235,0.000000,0.000000,0.000752,0.135497,-0.000415,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000293,0.000006,0.000006,0.000006,0.000136,0.000090,0.000079,0.000233,0.000000,0.000000,0.000740,0.135130,-0.000367,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000338,0.000007,0.000008,0.000007,0.000138,0.000089,0.000078,0.000234,0.000000,0.000000,0.000730,0.134812,-0.000319,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000139,0.000088,0.000077,0.000230,0.000000,0.000000,0.000719,0.134173,-0.000639,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000140,0.000086,0.000076,0.000228,0.000000,0.000000,0.000709,0.133544,-0.000629,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000085,0.000075,0.000227,0.000000,0.000000,0.000698,0.132924,-0.000620,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000084,0.000074,0.000227,0.000000,0.000000,0.000688,0.132314,-0.000610,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000083,0.000073,0.000227,0.000000,0.000000,0.000678,0.131713,-0.000601,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000081,0.000072,0.000227,0.000000,0.000000,0.000668,0.131121,-0.000592,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000080,0.000070,0.000227,0.000000,0.000000,0.000658,0.130538,-0.000583,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000079,0.000069,0.000227,0.000118,0.000118,0.000648,0.129847,-0.000691,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000078,0.000067,0.000227,0.000363,0.000363,0.000638,0.128925,-0.000922,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000076,0.000066,0.000227,0.000515,0.000515,0.000627,0.127868,-0.001057,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000075,0.000063,0.000227,0.000615,0.000615,0.000615,0.126728,-0.001140,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000074,0.000061,0.000227,0.000681,0.000681,0.000603,0.125540,-0.001188,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000072,0.000059,0.000226,0.000632,0.000632,0.000590,0.124419,-0.001122,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000070,0.000057,0.000226,0.000553,0.000553,0.000577,0.123392,-0.001026,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000069,0.000055,0.000226,0.000506,0.000506,0.000564,0.122428,-0.000965,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000067,0.000054,0.000225,0.000434,0.000434,0.000551,0.121548,-0.000879,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000065,0.000052,0.000225,0.000317,0.000317,0.000538,0.120797,-0.000751,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000064,0.000051,0.000225,0.000188,0.000188,0.000525,0.120184,-0.000613,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000062,0.000050,0.000224,0.000043,0.000043,0.000513,0.119724,-0.000461,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000061,0.000050,0.000224,0.000000,0.000000,0.000502,0.119313,-0.000411,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000060,0.000049,0.000224,0.000000,0.000000,0.000491,0.118907,-0.000405,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000058,0.000048,0.000224,0.000000,0.000000,0.000481,0.118508,-0.000399,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000057,0.000047,0.000224,0.000000,0.000000,0.000471,0.118115,-0.000393,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000056,0.000047,0.000224,0.000000,0.000000,0.000462,0.117728,-0.000387,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000055,0.000046,0.000224,0.000000,0.000000,0.000453,0.117347,-0.000381,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000045,0.000224,0.000000,0.000000,0.000444,0.116972,-0.000375,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000053,0.000045,0.000225,0.000000,0.000000,0.000436,0.116602,-0.000370,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000052,0.000044,0.000225,0.000000,0.000000,0.000428,0.116238,-0.000364,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000051,0.000043,0.000225,0.000000,0.000000,0.000420,0.115879,-0.000359,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000050,0.000043,0.000225,0.000000,0.000000,0.000413,0.115526,-0.000353,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000226,0.000000,0.000000,0.000405,0.115178,-0.000348,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000041,0.000226,0.000113,0.000113,0.000398,0.114723,-0.000454,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000047,0.000040,0.000226,0.000356,0.000356,0.000391,0.114037,-0.000687,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000046,0.000038,0.000226,0.000509,0.000509,0.000383,0.113210,-0.000827,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000045,0.000037,0.000226,0.000614,0.000614,0.000374,0.112292,-0.000917,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000044,0.000035,0.000226,0.000649,0.000649,0.000365,0.111354,-0.000939,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000043,0.000033,0.000226,0.000599,0.000599,0.000355,0.110479,-0.000875,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000042,0.000032,0.000226,0.000532,0.000532,0.000345,0.109683,-0.000796,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000041,0.000030,0.000226,0.000500,0.000500,0.000335,0.108930,-0.000753,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000029,0.000226,0.000426,0.000426,0.000325,0.108262,-0.000668,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000028,0.000226,0.000314,0.000314,0.000315,0.107714,-0.000548,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000037,0.000028,0.000226,0.000155,0.000155,0.000305,0.107332,-0.000382,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000027,0.000226,0.000019,0.000019,0.000296,0.107088,-0.000243,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000027,0.000226,0.000000,0.000000,0.000288,0.106868,-0.000221,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000026,0.000226,0.000000,0.000000,0.000280,0.106650,-0.000217,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000026,0.000226,0.000000,0.000000,0.000273,0.106436,-0.000214,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000025,0.000227,0.000000,0.000000,0.000266,0.106225,-0.000211,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000025,0.000227,0.000000,0.000000,0.000260,0.106017,-0.000208,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000025,0.000227,0.000000,0.000000,0.000254,0.105812,-0.000205,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000227,0.000000,0.000000,0.000248,0.105611,-0.000202,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000024,0.000228,0.000000,0.000000,0.000243,0.105412,-0.000199,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000024,0.000228,0.000000,0.000000,0.000237,0.105217,-0.000196,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000023,0.000229,0.000000,0.000000,0.000233,0.105024,-0.000193,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000229,0.000000,0.000000,0.000228,0.104834,-0.000190,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000023,0.000230,0.000000,0.000000,0.000223,0.104648,-0.000187,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000230,0.000098,0.000098,0.000219,0.104367,-0.000280,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000345,0.000345,0.000214,0.103848,-0.000519,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000020,0.000231,0.000501,0.000501,0.000209,0.103183,-0.000665,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000018,0.000231,0.000605,0.000605,0.000202,0.102424,-0.000758,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000017,0.000231,0.000667,0.000667,0.000196,0.101617,-0.000807,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000016,0.000231,0.000602,0.000602,0.000189,0.100886,-0.000732,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000014,0.000231,0.000537,0.000537,0.000181,0.100230,-0.000656,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000013,0.000231,0.000496,0.000496,0.000173,0.099624,-0.000606,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000012,0.000231,0.000429,0.000429,0.000166,0.099093,-0.000531,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000012,0.000232,0.000313,0.000313,0.000158,0.098684,-0.000409,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000018,0.000011,0.000232,0.000175,0.000175,0.000151,0.098418,-0.000267,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000011,0.000232,0.000025,0.000025,0.000144,0.098303,-0.000115,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000011,0.000232,0.000000,0.000000,0.000138,0.098214,-0.000088,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000011,0.000232,0.000000,0.000000,0.000133,0.098127,-0.000087,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000015,0.000010,0.000232,0.000000,0.000000,0.000127,0.098042,-0.000086,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000010,0.000233,0.000000,0.000000,0.000123,0.097957,-0.000084,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000014,0.000010,0.000233,0.000000,0.000000,0.000119,0.097874,-0.000083,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000014,0.000010,0.000234,0.000000,0.000000,0.000115,0.097792,-0.000082,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000013,0.000010,0.000234,0.000000,0.000000,0.000111,0.097711,-0.000081,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000013,0.000010,0.000235,0.000000,0.000000,0.000107,0.097632,-0.000079,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000013,0.000009,0.000235,0.000000,0.000000,0.000104,0.097554,-0.000078,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000009,0.000236,0.000000,0.000000,0.000101,0.097477,-0.000077,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000012,0.000009,0.000236,0.000000,0.000000,0.000099,0.097401,-0.000076,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000012,0.000009,0.000237,0.000000,0.000000,0.000096,0.097326,-0.000075,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000011,0.000009,0.000237,0.000107,0.000107,0.000093,0.097147,-0.000179,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620788.csv b/test/channel_loss/channel_forcing/et/cat-2620788.csv new file mode 100644 index 000000000..28d4cf232 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620788.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000092,0.000000,0.000000,0.000000,0.000000,0.000863,0.000717,0.000863,0.000166,0.000166,0.011446,0.419495,-0.005103,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000851,0.000706,0.000851,0.000048,0.000048,0.011301,0.414497,-0.004998,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000840,0.000695,0.000840,0.000000,0.000000,0.011156,0.409624,-0.004873,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000828,0.000684,0.000828,0.000000,0.000000,0.011012,0.404827,-0.004797,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000816,0.000673,0.000816,0.000000,0.000000,0.010869,0.400105,-0.004722,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000805,0.000663,0.000805,0.000000,0.000000,0.010728,0.395457,-0.004648,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000793,0.000652,0.000794,0.000000,0.000000,0.010587,0.390881,-0.004576,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000782,0.000642,0.000783,0.000000,0.000000,0.010447,0.386377,-0.004504,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000771,0.000632,0.000772,0.000000,0.000000,0.010309,0.381943,-0.004434,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000760,0.000622,0.000761,0.000000,0.000000,0.010171,0.377578,-0.004365,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000749,0.000613,0.000750,0.000000,0.000000,0.010035,0.373282,-0.004296,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000738,0.000603,0.000740,0.000000,0.000000,0.009900,0.369053,-0.004229,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000727,0.000594,0.000730,0.000000,0.000000,0.009767,0.364889,-0.004163,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000717,0.000584,0.000719,0.000000,0.000000,0.009635,0.360791,-0.004098,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000706,0.000575,0.000709,0.000136,0.000136,0.009503,0.356623,-0.004168,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000696,0.000565,0.000699,0.000376,0.000376,0.009373,0.352284,-0.004339,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000685,0.000555,0.000690,0.000524,0.000524,0.009242,0.347867,-0.004417,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000675,0.000545,0.000680,0.000618,0.000618,0.009112,0.343427,-0.004440,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000665,0.000535,0.000670,0.000518,0.000518,0.008983,0.339154,-0.004273,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000376,0.000000,0.000000,0.000000,0.000006,0.000655,0.000527,0.000661,0.000478,0.000478,0.008855,0.335358,-0.003796,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000343,0.000000,0.000000,0.000000,0.000006,0.000645,0.000518,0.000651,0.000417,0.000417,0.008729,0.331648,-0.003710,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000478,0.000001,0.000002,0.000001,0.000007,0.000635,0.000511,0.000643,0.000343,0.000343,0.008604,0.328200,-0.003448,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000413,0.000001,0.000001,0.000001,0.000008,0.000625,0.000503,0.000634,0.000308,0.000308,0.008482,0.324778,-0.003422,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000539,0.000005,0.000008,0.000005,0.000008,0.000616,0.000496,0.000629,0.000231,0.000231,0.008362,0.321601,-0.003176,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000511,0.000008,0.000011,0.000008,0.000009,0.000607,0.000489,0.000624,0.000152,0.000152,0.008244,0.318522,-0.003079,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001103,0.000049,0.000082,0.000049,0.000010,0.000598,0.000483,0.000657,0.000067,0.000067,0.008129,0.316087,-0.002435,1.000000,0.000039 +26,2022-08-02 02:00:00,0.001190,0.000082,0.000107,0.000082,0.000011,0.000589,0.000478,0.000681,0.000000,0.000000,0.008018,0.313817,-0.002270,1.000000,0.000065 +27,2022-08-02 03:00:00,0.001142,0.000097,0.000099,0.000097,0.000011,0.000581,0.000473,0.000689,0.000000,0.000000,0.007911,0.311544,-0.002273,1.000000,0.000066 +28,2022-08-02 04:00:00,0.001163,0.000102,0.000102,0.000102,0.000012,0.000573,0.000468,0.000687,0.000000,0.000000,0.007806,0.309324,-0.002220,1.000000,0.000065 +29,2022-08-02 05:00:00,0.001024,0.000089,0.000079,0.000089,0.000013,0.000565,0.000463,0.000666,0.000000,0.000000,0.007704,0.307024,-0.002300,1.000000,0.000056 +30,2022-08-02 06:00:00,0.001026,0.000084,0.000079,0.000084,0.000014,0.000557,0.000458,0.000655,0.000000,0.000000,0.007605,0.304761,-0.002263,1.000000,0.000052 +31,2022-08-02 07:00:00,0.000000,0.000036,0.000000,0.000036,0.000015,0.000549,0.000450,0.000600,0.000000,0.000000,0.007506,0.301602,-0.003159,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000542,0.000443,0.000573,0.000000,0.000000,0.007408,0.298493,-0.003110,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000534,0.000436,0.000551,0.000000,0.000000,0.007310,0.295431,-0.003061,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000527,0.000430,0.000544,0.000000,0.000000,0.007213,0.292418,-0.003013,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000519,0.000423,0.000538,0.000000,0.000000,0.007117,0.289452,-0.002966,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000512,0.000416,0.000531,0.000000,0.000000,0.007021,0.286532,-0.002920,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000020,0.000505,0.000410,0.000525,0.000000,0.000000,0.006926,0.283755,-0.002777,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000497,0.000404,0.000519,0.000120,0.000120,0.006833,0.280904,-0.002851,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000076,0.000000,0.000000,0.000000,0.000022,0.000490,0.000397,0.000513,0.000319,0.000319,0.006739,0.277879,-0.003026,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000483,0.000390,0.000506,0.000443,0.000443,0.006646,0.274766,-0.003113,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000476,0.000383,0.000500,0.000526,0.000526,0.006552,0.271620,-0.003146,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000316,0.000000,0.000000,0.000000,0.000025,0.000469,0.000376,0.000494,0.000580,0.000580,0.006459,0.268719,-0.002901,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000462,0.000369,0.000488,0.000520,0.000520,0.006367,0.265673,-0.003046,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000455,0.000362,0.000482,0.000473,0.000473,0.006274,0.262658,-0.003014,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000448,0.000356,0.000476,0.000472,0.000472,0.006182,0.259693,-0.002966,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000441,0.000349,0.000470,0.000412,0.000412,0.006090,0.256832,-0.002861,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000434,0.000343,0.000465,0.000305,0.000305,0.005999,0.254121,-0.002711,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000427,0.000337,0.000459,0.000181,0.000181,0.005909,0.251575,-0.002546,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000421,0.000332,0.000453,0.000037,0.000037,0.005820,0.249210,-0.002364,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000414,0.000327,0.000448,0.000000,0.000000,0.005733,0.246919,-0.002291,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000407,0.000322,0.000443,0.000000,0.000000,0.005647,0.244664,-0.002256,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000401,0.000317,0.000437,0.000000,0.000000,0.005563,0.242443,-0.002220,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000395,0.000312,0.000432,0.000000,0.000000,0.005480,0.240258,-0.002186,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000389,0.000307,0.000427,0.000000,0.000000,0.005398,0.238106,-0.002151,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000383,0.000302,0.000423,0.000000,0.000000,0.005317,0.235988,-0.002118,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000377,0.000297,0.000418,0.000000,0.000000,0.005237,0.233903,-0.002085,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000371,0.000293,0.000413,0.000000,0.000000,0.005159,0.231851,-0.002052,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000365,0.000288,0.000409,0.000000,0.000000,0.005082,0.229831,-0.002020,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000359,0.000284,0.000404,0.000000,0.000000,0.005006,0.227842,-0.001989,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000354,0.000279,0.000400,0.000000,0.000000,0.004931,0.225885,-0.001958,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000348,0.000275,0.000396,0.000000,0.000000,0.004858,0.223958,-0.001927,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000343,0.000270,0.000391,0.000130,0.000130,0.004785,0.221933,-0.002025,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000338,0.000265,0.000387,0.000380,0.000380,0.004712,0.219694,-0.002239,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000332,0.000260,0.000383,0.000523,0.000523,0.004640,0.217349,-0.002345,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000327,0.000254,0.000379,0.000621,0.000621,0.004567,0.214944,-0.002405,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000322,0.000249,0.000375,0.000604,0.000604,0.004495,0.212593,-0.002350,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000316,0.000244,0.000371,0.000550,0.000550,0.004423,0.210332,-0.002261,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000811,0.000004,0.000007,0.000004,0.000056,0.000311,0.000241,0.000371,0.000487,0.000487,0.004353,0.208959,-0.001373,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000232,0.000002,0.000000,0.000002,0.000057,0.000306,0.000237,0.000365,0.000459,0.000459,0.004283,0.207073,-0.001886,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000059,0.000301,0.000232,0.000361,0.000403,0.000403,0.004214,0.205044,-0.002030,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000296,0.000228,0.000356,0.000299,0.000299,0.004146,0.203148,-0.001896,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000291,0.000224,0.000352,0.000192,0.000192,0.004079,0.201387,-0.001760,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000286,0.000220,0.000349,0.000050,0.000050,0.004013,0.199793,-0.001594,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000281,0.000217,0.000345,0.000000,0.000000,0.003949,0.198274,-0.001519,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000277,0.000213,0.000342,0.000000,0.000000,0.003885,0.196778,-0.001496,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000272,0.000210,0.000339,0.000000,0.000000,0.003823,0.195306,-0.001472,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000268,0.000207,0.000335,0.000000,0.000000,0.003762,0.193856,-0.001449,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000263,0.000203,0.000332,0.000000,0.000000,0.003702,0.192429,-0.001427,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000259,0.000200,0.000329,0.000000,0.000000,0.003644,0.191025,-0.001404,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000255,0.000197,0.000327,0.000000,0.000000,0.003586,0.189643,-0.001382,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000251,0.000194,0.000324,0.000000,0.000000,0.003529,0.188282,-0.001361,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000247,0.000191,0.000321,0.000000,0.000000,0.003474,0.186942,-0.001340,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000243,0.000188,0.000318,0.000000,0.000000,0.003419,0.185623,-0.001319,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000239,0.000185,0.000316,0.000000,0.000000,0.003366,0.184325,-0.001298,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000235,0.000182,0.000313,0.000000,0.000000,0.003313,0.183047,-0.001278,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000231,0.000179,0.000311,0.000127,0.000127,0.003261,0.181664,-0.001383,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000227,0.000175,0.000308,0.000372,0.000372,0.003209,0.180062,-0.001602,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000224,0.000172,0.000306,0.000525,0.000525,0.003157,0.178333,-0.001728,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000220,0.000167,0.000304,0.000624,0.000624,0.003105,0.176535,-0.001799,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000216,0.000163,0.000301,0.000691,0.000691,0.003052,0.174699,-0.001836,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000212,0.000159,0.000299,0.000623,0.000623,0.002999,0.172958,-0.001741,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000208,0.000156,0.000296,0.000551,0.000551,0.002947,0.171315,-0.001642,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000205,0.000152,0.000294,0.000502,0.000502,0.002894,0.169746,-0.001569,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000201,0.000149,0.000291,0.000437,0.000437,0.002842,0.168266,-0.001481,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000197,0.000146,0.000289,0.000324,0.000324,0.002791,0.166919,-0.001346,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000193,0.000143,0.000287,0.000196,0.000196,0.002740,0.165720,-0.001199,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000190,0.000141,0.000284,0.000058,0.000058,0.002691,0.164676,-0.001044,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000186,0.000138,0.000282,0.000000,0.000000,0.002643,0.163705,-0.000971,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000183,0.000136,0.000280,0.000000,0.000000,0.002596,0.162749,-0.000956,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000180,0.000134,0.000278,0.000000,0.000000,0.002551,0.161808,-0.000941,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000177,0.000132,0.000276,0.000000,0.000000,0.002506,0.160882,-0.000926,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000173,0.000130,0.000275,0.000000,0.000000,0.002463,0.159971,-0.000912,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000170,0.000128,0.000273,0.000000,0.000000,0.002420,0.159073,-0.000897,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000167,0.000126,0.000271,0.000000,0.000000,0.002379,0.158190,-0.000883,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000165,0.000124,0.000270,0.000000,0.000000,0.002338,0.157320,-0.000870,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000162,0.000122,0.000268,0.000000,0.000000,0.002298,0.156464,-0.000856,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000159,0.000120,0.000267,0.000000,0.000000,0.002260,0.155622,-0.000843,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000156,0.000118,0.000265,0.000000,0.000000,0.002222,0.154792,-0.000829,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000154,0.000116,0.000264,0.000000,0.000000,0.002184,0.153975,-0.000817,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000151,0.000114,0.000263,0.000139,0.000139,0.002148,0.153034,-0.000941,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000148,0.000112,0.000261,0.000377,0.000377,0.002111,0.151875,-0.001160,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000146,0.000109,0.000260,0.000526,0.000526,0.002074,0.150586,-0.001289,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000143,0.000106,0.000259,0.000629,0.000629,0.002037,0.149216,-0.001370,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000140,0.000103,0.000257,0.000602,0.000602,0.001999,0.147894,-0.001322,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000118,0.000138,0.000100,0.000256,0.000552,0.000552,0.001961,0.146704,-0.001190,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000135,0.000097,0.000255,0.000487,0.000487,0.001924,0.145596,-0.001108,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000132,0.000095,0.000253,0.000459,0.000459,0.001887,0.144533,-0.001063,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000122,0.000130,0.000093,0.000252,0.000392,0.000392,0.001850,0.143553,-0.000980,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000085,0.000000,0.000000,0.000000,0.000124,0.000127,0.000091,0.000251,0.000291,0.000291,0.001814,0.142710,-0.000843,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000125,0.000089,0.000249,0.000182,0.000182,0.001778,0.141966,-0.000745,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000319,0.000002,0.000004,0.000002,0.000126,0.000122,0.000088,0.000251,0.000062,0.000062,0.001744,0.141598,-0.000368,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000496,0.000009,0.000015,0.000009,0.000127,0.000120,0.000088,0.000257,0.000000,0.000000,0.001713,0.141461,-0.000137,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000422,0.000011,0.000011,0.000011,0.000129,0.000118,0.000088,0.000257,0.000000,0.000000,0.001682,0.141257,-0.000204,1.000000,0.000008 +124,2022-08-06 04:00:00,0.000326,0.000009,0.000007,0.000009,0.000130,0.000116,0.000087,0.000255,0.000000,0.000000,0.001654,0.140967,-0.000291,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000326,0.000007,0.000007,0.000007,0.000131,0.000114,0.000086,0.000252,0.000000,0.000000,0.001626,0.140681,-0.000286,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000400,0.000008,0.000010,0.000008,0.000132,0.000112,0.000086,0.000253,0.000000,0.000000,0.001600,0.140469,-0.000212,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000134,0.000110,0.000085,0.000248,0.000000,0.000000,0.001574,0.139876,-0.000593,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000135,0.000108,0.000083,0.000245,0.000000,0.000000,0.001549,0.139293,-0.000584,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000107,0.000082,0.000243,0.000000,0.000000,0.001524,0.138718,-0.000574,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000105,0.000081,0.000242,0.000000,0.000000,0.001500,0.138153,-0.000565,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000103,0.000079,0.000242,0.000000,0.000000,0.001476,0.137596,-0.000557,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000102,0.000078,0.000241,0.000000,0.000000,0.001453,0.137048,-0.000548,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000100,0.000077,0.000241,0.000000,0.000000,0.001430,0.136509,-0.000539,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000098,0.000075,0.000241,0.000122,0.000122,0.001407,0.135857,-0.000651,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000097,0.000073,0.000240,0.000365,0.000365,0.001384,0.134978,-0.000880,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000095,0.000071,0.000240,0.000512,0.000512,0.001360,0.133967,-0.001011,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000093,0.000069,0.000239,0.000608,0.000608,0.001335,0.132877,-0.001090,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000091,0.000066,0.000239,0.000670,0.000670,0.001310,0.131743,-0.001134,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000090,0.000064,0.000238,0.000623,0.000623,0.001284,0.130674,-0.001070,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000088,0.000062,0.000237,0.000538,0.000538,0.001258,0.129704,-0.000970,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000086,0.000059,0.000237,0.000503,0.000503,0.001231,0.128784,-0.000920,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000084,0.000058,0.000236,0.000435,0.000435,0.001205,0.127946,-0.000839,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000082,0.000056,0.000235,0.000315,0.000315,0.001178,0.127238,-0.000707,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000080,0.000055,0.000235,0.000189,0.000189,0.001152,0.126666,-0.000572,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000079,0.000054,0.000234,0.000048,0.000048,0.001128,0.126242,-0.000425,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000077,0.000053,0.000234,0.000000,0.000000,0.001103,0.125871,-0.000371,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000075,0.000052,0.000233,0.000000,0.000000,0.001080,0.125506,-0.000365,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000074,0.000051,0.000233,0.000000,0.000000,0.001058,0.125147,-0.000359,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000072,0.000050,0.000232,0.000000,0.000000,0.001036,0.124794,-0.000353,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000071,0.000050,0.000232,0.000000,0.000000,0.001015,0.124446,-0.000348,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000069,0.000049,0.000232,0.000000,0.000000,0.000994,0.124103,-0.000343,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000068,0.000048,0.000231,0.000000,0.000000,0.000974,0.123766,-0.000337,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000067,0.000047,0.000231,0.000000,0.000000,0.000955,0.123434,-0.000332,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000065,0.000047,0.000231,0.000000,0.000000,0.000937,0.123107,-0.000327,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000064,0.000046,0.000231,0.000000,0.000000,0.000918,0.122786,-0.000322,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000063,0.000045,0.000231,0.000000,0.000000,0.000901,0.122469,-0.000317,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000062,0.000044,0.000231,0.000000,0.000000,0.000884,0.122157,-0.000312,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000060,0.000043,0.000231,0.000117,0.000117,0.000867,0.121735,-0.000422,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000059,0.000042,0.000230,0.000358,0.000358,0.000850,0.121083,-0.000652,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000058,0.000040,0.000230,0.000505,0.000505,0.000832,0.120295,-0.000787,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000038,0.000230,0.000606,0.000606,0.000814,0.119421,-0.000875,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000055,0.000036,0.000230,0.000644,0.000644,0.000795,0.118523,-0.000898,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000054,0.000034,0.000230,0.000593,0.000593,0.000775,0.117689,-0.000834,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000053,0.000033,0.000229,0.000526,0.000526,0.000755,0.116934,-0.000754,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000051,0.000031,0.000229,0.000500,0.000500,0.000735,0.116217,-0.000717,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000050,0.000030,0.000229,0.000432,0.000432,0.000715,0.115578,-0.000639,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000048,0.000028,0.000228,0.000316,0.000316,0.000695,0.115063,-0.000515,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000047,0.000028,0.000228,0.000160,0.000160,0.000676,0.114710,-0.000353,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000046,0.000027,0.000228,0.000022,0.000022,0.000657,0.114498,-0.000212,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000044,0.000027,0.000227,0.000000,0.000000,0.000639,0.114311,-0.000187,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000043,0.000026,0.000227,0.000000,0.000000,0.000622,0.114126,-0.000184,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000042,0.000026,0.000227,0.000000,0.000000,0.000606,0.113945,-0.000181,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000041,0.000025,0.000227,0.000000,0.000000,0.000590,0.113766,-0.000179,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000025,0.000227,0.000000,0.000000,0.000576,0.113591,-0.000176,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000025,0.000227,0.000000,0.000000,0.000561,0.113418,-0.000173,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000024,0.000227,0.000000,0.000000,0.000547,0.113247,-0.000170,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000024,0.000227,0.000000,0.000000,0.000534,0.113080,-0.000168,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000024,0.000227,0.000000,0.000000,0.000522,0.112915,-0.000165,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000023,0.000227,0.000000,0.000000,0.000509,0.112752,-0.000162,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000023,0.000227,0.000000,0.000000,0.000498,0.112592,-0.000160,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000022,0.000228,0.000000,0.000000,0.000486,0.112435,-0.000157,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000022,0.000228,0.000101,0.000101,0.000475,0.112181,-0.000254,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000021,0.000228,0.000346,0.000346,0.000464,0.111689,-0.000492,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000019,0.000228,0.000497,0.000497,0.000452,0.111056,-0.000633,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000018,0.000228,0.000598,0.000598,0.000439,0.110335,-0.000722,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000016,0.000228,0.000657,0.000657,0.000425,0.109566,-0.000769,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000014,0.000228,0.000604,0.000604,0.000411,0.108861,-0.000705,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000013,0.000228,0.000533,0.000533,0.000397,0.108238,-0.000624,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000012,0.000228,0.000499,0.000499,0.000382,0.107657,-0.000580,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000010,0.000228,0.000435,0.000435,0.000367,0.107149,-0.000509,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000010,0.000227,0.000315,0.000315,0.000352,0.106767,-0.000382,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000009,0.000227,0.000180,0.000180,0.000338,0.106523,-0.000244,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000022,0.000009,0.000227,0.000031,0.000031,0.000324,0.106429,-0.000094,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000009,0.000227,0.000000,0.000000,0.000311,0.106368,-0.000061,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000021,0.000009,0.000227,0.000000,0.000000,0.000299,0.106308,-0.000060,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000008,0.000227,0.000000,0.000000,0.000288,0.106249,-0.000059,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000008,0.000227,0.000000,0.000000,0.000277,0.106190,-0.000058,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000018,0.000008,0.000228,0.000000,0.000000,0.000266,0.106133,-0.000057,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000008,0.000228,0.000000,0.000000,0.000257,0.106077,-0.000057,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000008,0.000228,0.000000,0.000000,0.000247,0.106021,-0.000056,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000017,0.000008,0.000228,0.000000,0.000000,0.000239,0.105966,-0.000055,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000008,0.000228,0.000000,0.000000,0.000230,0.105912,-0.000054,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000015,0.000008,0.000229,0.000000,0.000000,0.000223,0.105859,-0.000053,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000007,0.000229,0.000000,0.000000,0.000215,0.105807,-0.000052,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000014,0.000007,0.000229,0.000000,0.000000,0.000208,0.105756,-0.000051,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000007,0.000230,0.000111,0.000111,0.000201,0.105596,-0.000160,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620789.csv b/test/channel_loss/channel_forcing/et/cat-2620789.csv new file mode 100644 index 000000000..54fe940b4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620789.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000000,0.001452,0.000233,0.001452,0.000171,0.000171,0.010377,0.425715,-0.004855,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001285,0.000229,0.001285,0.000048,0.000048,0.009322,0.420920,-0.004794,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001143,0.000226,0.001143,0.000000,0.000000,0.008405,0.416236,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001022,0.000223,0.001022,0.000000,0.000000,0.007606,0.411615,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000919,0.000220,0.000919,0.000000,0.000000,0.006908,0.407054,-0.004561,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000830,0.000218,0.000831,0.000000,0.000000,0.006295,0.402554,-0.004500,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000753,0.000215,0.000754,0.000000,0.000000,0.005757,0.398113,-0.004441,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000687,0.000212,0.000687,0.000000,0.000000,0.005282,0.393731,-0.004382,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000628,0.000209,0.000629,0.000000,0.000000,0.004863,0.389407,-0.004324,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000577,0.000206,0.000579,0.000000,0.000000,0.004491,0.385140,-0.004267,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000533,0.000204,0.000534,0.000000,0.000000,0.004162,0.380930,-0.004210,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000493,0.000201,0.000495,0.000000,0.000000,0.003870,0.376775,-0.004155,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000458,0.000198,0.000461,0.000000,0.000000,0.003610,0.372676,-0.004100,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000427,0.000196,0.000430,0.000000,0.000000,0.003378,0.368630,-0.004045,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000400,0.000193,0.000404,0.000135,0.000135,0.003171,0.364505,-0.004125,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000376,0.000190,0.000380,0.000387,0.000387,0.002985,0.360186,-0.004319,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000354,0.000187,0.000358,0.000538,0.000538,0.002818,0.355775,-0.004411,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000334,0.000184,0.000339,0.000625,0.000625,0.002668,0.351337,-0.004439,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000317,0.000182,0.000323,0.000531,0.000531,0.002533,0.347050,-0.004287,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000301,0.000179,0.000307,0.000482,0.000482,0.002411,0.343179,-0.003870,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000007,0.000287,0.000177,0.000294,0.000426,0.000426,0.002301,0.339415,-0.003764,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000514,0.000004,0.000007,0.000004,0.000008,0.000274,0.000174,0.000285,0.000361,0.000361,0.002201,0.335954,-0.003461,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000445,0.000004,0.000004,0.000004,0.000008,0.000262,0.000172,0.000275,0.000322,0.000322,0.002111,0.332512,-0.003442,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000541,0.000016,0.000024,0.000016,0.000009,0.000252,0.000170,0.000277,0.000243,0.000243,0.002029,0.329268,-0.003244,1.000000,0.000012 +24,2022-08-02 00:00:00,0.000481,0.000023,0.000029,0.000023,0.000010,0.000243,0.000168,0.000275,0.000156,0.000156,0.001954,0.326089,-0.003179,1.000000,0.000018 +25,2022-08-02 01:00:00,0.001072,0.000139,0.000230,0.000139,0.000011,0.000234,0.000166,0.000383,0.000067,0.000067,0.001887,0.323425,-0.002664,1.000000,0.000109 +26,2022-08-02 02:00:00,0.001190,0.000233,0.000308,0.000233,0.000011,0.000226,0.000165,0.000470,0.000000,0.000000,0.001825,0.320902,-0.002523,1.000000,0.000185 +27,2022-08-02 03:00:00,0.001102,0.000271,0.000268,0.000271,0.000012,0.000219,0.000163,0.000502,0.000000,0.000000,0.001769,0.318364,-0.002538,1.000000,0.000182 +28,2022-08-02 04:00:00,0.001175,0.000293,0.000299,0.000293,0.000013,0.000212,0.000161,0.000519,0.000000,0.000000,0.001718,0.315901,-0.002463,1.000000,0.000188 +29,2022-08-02 05:00:00,0.001054,0.000264,0.000247,0.000264,0.000014,0.000207,0.000160,0.000485,0.000000,0.000000,0.001671,0.313403,-0.002497,1.000000,0.000171 +30,2022-08-02 06:00:00,0.000948,0.000233,0.000204,0.000233,0.000015,0.000201,0.000158,0.000450,0.000000,0.000000,0.001628,0.310877,-0.002527,1.000000,0.000141 +31,2022-08-02 07:00:00,0.000000,0.000100,0.000000,0.000100,0.000016,0.000196,0.000156,0.000312,0.000000,0.000000,0.001588,0.307649,-0.003228,1.000000,0.000041 +32,2022-08-02 08:00:00,0.000000,0.000041,0.000000,0.000041,0.000017,0.000191,0.000154,0.000249,0.000000,0.000000,0.001551,0.304464,-0.003185,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000187,0.000152,0.000205,0.000000,0.000000,0.001516,0.301321,-0.003143,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000183,0.000150,0.000202,0.000000,0.000000,0.001483,0.298220,-0.003101,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000179,0.000148,0.000199,0.000000,0.000000,0.001452,0.295159,-0.003060,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000175,0.000146,0.000196,0.000000,0.000000,0.001423,0.292140,-0.003020,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000003,0.000001,0.000022,0.000172,0.000144,0.000195,0.000000,0.000000,0.001395,0.289256,-0.002884,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000001,0.000000,0.000001,0.000023,0.000168,0.000142,0.000192,0.000120,0.000120,0.001369,0.286294,-0.002961,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000073,0.000001,0.000000,0.000001,0.000024,0.000165,0.000140,0.000190,0.000335,0.000335,0.001344,0.283133,-0.003162,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000162,0.000138,0.000188,0.000465,0.000465,0.001319,0.279875,-0.003257,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000159,0.000136,0.000186,0.000547,0.000547,0.001296,0.276580,-0.003295,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000294,0.000000,0.000000,0.000000,0.000028,0.000157,0.000134,0.000184,0.000600,0.000600,0.001273,0.273504,-0.003076,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000154,0.000132,0.000182,0.000538,0.000538,0.001251,0.270302,-0.003202,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000151,0.000130,0.000181,0.000487,0.000487,0.001230,0.267130,-0.003172,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000149,0.000128,0.000180,0.000494,0.000494,0.001209,0.263994,-0.003136,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000146,0.000126,0.000178,0.000429,0.000429,0.001189,0.260964,-0.003030,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000144,0.000124,0.000177,0.000317,0.000317,0.001169,0.258084,-0.002880,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000141,0.000122,0.000176,0.000183,0.000183,0.001150,0.255374,-0.002710,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000139,0.000121,0.000175,0.000035,0.000035,0.001132,0.252846,-0.002528,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000137,0.000119,0.000174,0.000000,0.000000,0.001114,0.250386,-0.002460,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000135,0.000117,0.000173,0.000000,0.000000,0.001097,0.247959,-0.002427,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000132,0.000116,0.000172,0.000000,0.000000,0.001080,0.245563,-0.002395,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000130,0.000114,0.000172,0.000000,0.000000,0.001064,0.243200,-0.002364,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000128,0.000113,0.000171,0.000000,0.000000,0.001048,0.240867,-0.002332,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000127,0.000111,0.000170,0.000000,0.000000,0.001033,0.238566,-0.002302,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000125,0.000110,0.000170,0.000000,0.000000,0.001018,0.236295,-0.002271,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000123,0.000108,0.000170,0.000000,0.000000,0.001004,0.234054,-0.002241,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000121,0.000107,0.000169,0.000000,0.000000,0.000989,0.231842,-0.002211,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000119,0.000105,0.000169,0.000000,0.000000,0.000975,0.229660,-0.002182,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000118,0.000104,0.000168,0.000000,0.000000,0.000962,0.227507,-0.002153,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000116,0.000103,0.000168,0.000000,0.000000,0.000948,0.225382,-0.002125,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000114,0.000101,0.000168,0.000129,0.000129,0.000935,0.223158,-0.002224,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000113,0.000100,0.000168,0.000387,0.000387,0.000922,0.220709,-0.002449,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000111,0.000098,0.000168,0.000537,0.000537,0.000909,0.218144,-0.002565,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000110,0.000096,0.000167,0.000630,0.000630,0.000896,0.215521,-0.002623,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000108,0.000095,0.000167,0.000611,0.000611,0.000882,0.212951,-0.002569,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000106,0.000093,0.000167,0.000552,0.000552,0.000869,0.210475,-0.002477,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001033,0.000035,0.000063,0.000035,0.000062,0.000105,0.000092,0.000201,0.000492,0.000492,0.000857,0.209047,-0.001428,1.000000,0.000028 +69,2022-08-03 21:00:00,0.000251,0.000016,0.000000,0.000016,0.000064,0.000103,0.000091,0.000183,0.000475,0.000475,0.000844,0.206945,-0.002102,1.000000,0.000013 +70,2022-08-03 22:00:00,0.000000,0.000013,0.000000,0.000013,0.000065,0.000102,0.000089,0.000179,0.000414,0.000414,0.000832,0.204684,-0.002261,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000100,0.000088,0.000167,0.000306,0.000306,0.000820,0.202559,-0.002125,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000099,0.000087,0.000167,0.000192,0.000192,0.000808,0.200576,-0.001984,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000097,0.000085,0.000167,0.000048,0.000048,0.000796,0.198759,-0.001816,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000096,0.000084,0.000167,0.000000,0.000000,0.000784,0.197015,-0.001744,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000094,0.000083,0.000167,0.000000,0.000000,0.000773,0.195294,-0.001721,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000093,0.000082,0.000167,0.000000,0.000000,0.000762,0.193595,-0.001699,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000092,0.000081,0.000167,0.000000,0.000000,0.000752,0.191919,-0.001676,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000090,0.000080,0.000168,0.000000,0.000000,0.000741,0.190265,-0.001654,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000089,0.000079,0.000168,0.000000,0.000000,0.000731,0.188633,-0.001632,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000088,0.000078,0.000168,0.000000,0.000000,0.000721,0.187022,-0.001610,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000087,0.000077,0.000168,0.000000,0.000000,0.000711,0.185433,-0.001589,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000086,0.000076,0.000169,0.000000,0.000000,0.000701,0.183865,-0.001568,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000084,0.000075,0.000169,0.000000,0.000000,0.000692,0.182318,-0.001547,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000083,0.000074,0.000170,0.000000,0.000000,0.000682,0.180791,-0.001527,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000082,0.000073,0.000170,0.000000,0.000000,0.000673,0.179284,-0.001507,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000081,0.000072,0.000170,0.000123,0.000123,0.000664,0.177676,-0.001608,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000080,0.000071,0.000171,0.000381,0.000381,0.000655,0.175834,-0.001841,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000079,0.000069,0.000171,0.000537,0.000537,0.000645,0.173863,-0.001971,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000077,0.000068,0.000172,0.000633,0.000633,0.000636,0.171823,-0.002040,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000076,0.000067,0.000172,0.000693,0.000693,0.000626,0.169751,-0.002072,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000075,0.000065,0.000172,0.000627,0.000627,0.000616,0.167771,-0.001980,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000074,0.000064,0.000173,0.000554,0.000554,0.000607,0.165890,-0.001881,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000073,0.000063,0.000173,0.000515,0.000515,0.000597,0.164073,-0.001818,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000072,0.000062,0.000173,0.000449,0.000449,0.000587,0.162344,-0.001729,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000070,0.000061,0.000174,0.000331,0.000331,0.000578,0.160754,-0.001590,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000069,0.000060,0.000174,0.000198,0.000198,0.000568,0.159318,-0.001437,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000068,0.000059,0.000175,0.000056,0.000056,0.000559,0.158040,-0.001278,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000067,0.000058,0.000175,0.000000,0.000000,0.000551,0.156834,-0.001206,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000066,0.000058,0.000176,0.000000,0.000000,0.000542,0.155644,-0.001190,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000065,0.000057,0.000176,0.000000,0.000000,0.000534,0.154470,-0.001174,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000064,0.000056,0.000177,0.000000,0.000000,0.000526,0.153312,-0.001158,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000063,0.000055,0.000178,0.000000,0.000000,0.000518,0.152169,-0.001143,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000062,0.000055,0.000178,0.000000,0.000000,0.000511,0.151041,-0.001128,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000061,0.000054,0.000179,0.000000,0.000000,0.000503,0.149927,-0.001113,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000060,0.000053,0.000180,0.000000,0.000000,0.000496,0.148829,-0.001098,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000059,0.000052,0.000180,0.000000,0.000000,0.000489,0.147745,-0.001084,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000059,0.000052,0.000181,0.000000,0.000000,0.000482,0.146676,-0.001070,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000058,0.000051,0.000182,0.000000,0.000000,0.000475,0.145620,-0.001055,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000057,0.000050,0.000182,0.000000,0.000000,0.000469,0.144579,-0.001041,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000056,0.000050,0.000183,0.000138,0.000138,0.000462,0.143415,-0.001164,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000055,0.000049,0.000184,0.000387,0.000387,0.000455,0.142022,-0.001394,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000055,0.000048,0.000185,0.000538,0.000538,0.000449,0.140497,-0.001525,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000054,0.000047,0.000185,0.000637,0.000637,0.000442,0.138894,-0.001603,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000053,0.000046,0.000186,0.000613,0.000613,0.000434,0.137337,-0.001557,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000052,0.000045,0.000187,0.000558,0.000558,0.000427,0.135917,-0.001420,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000051,0.000044,0.000187,0.000496,0.000496,0.000420,0.134578,-0.001340,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000050,0.000043,0.000188,0.000471,0.000471,0.000413,0.133280,-0.001298,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000049,0.000042,0.000189,0.000399,0.000399,0.000406,0.132070,-0.001210,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000131,0.000000,0.000000,0.000000,0.000141,0.000048,0.000042,0.000189,0.000300,0.000300,0.000399,0.131040,-0.001030,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000048,0.000041,0.000190,0.000181,0.000181,0.000392,0.130076,-0.000965,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000385,0.000012,0.000021,0.000012,0.000144,0.000047,0.000041,0.000202,0.000063,0.000063,0.000386,0.129537,-0.000539,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000709,0.000057,0.000094,0.000057,0.000146,0.000046,0.000040,0.000249,0.000000,0.000000,0.000380,0.129315,-0.000222,1.000000,0.000046 +123,2022-08-06 03:00:00,0.000482,0.000053,0.000045,0.000053,0.000147,0.000046,0.000040,0.000245,0.000000,0.000000,0.000375,0.128920,-0.000395,1.000000,0.000039 +124,2022-08-06 04:00:00,0.000423,0.000050,0.000035,0.000050,0.000149,0.000045,0.000040,0.000243,0.000000,0.000000,0.000370,0.128482,-0.000438,1.000000,0.000025 +125,2022-08-06 05:00:00,0.000423,0.000037,0.000035,0.000037,0.000150,0.000044,0.000040,0.000232,0.000000,0.000000,0.000365,0.128050,-0.000432,1.000000,0.000023 +126,2022-08-06 06:00:00,0.000423,0.000035,0.000035,0.000035,0.000152,0.000044,0.000039,0.000231,0.000000,0.000000,0.000361,0.127624,-0.000426,1.000000,0.000023 +127,2022-08-06 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000153,0.000043,0.000039,0.000212,0.000000,0.000000,0.000356,0.126820,-0.000803,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000155,0.000043,0.000038,0.000204,0.000000,0.000000,0.000352,0.126028,-0.000793,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000042,0.000038,0.000198,0.000000,0.000000,0.000348,0.125246,-0.000782,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000042,0.000037,0.000199,0.000000,0.000000,0.000343,0.124474,-0.000772,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000041,0.000037,0.000200,0.000000,0.000000,0.000339,0.123712,-0.000762,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000041,0.000036,0.000201,0.000000,0.000000,0.000335,0.122961,-0.000752,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000040,0.000036,0.000202,0.000000,0.000000,0.000330,0.122219,-0.000742,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000040,0.000035,0.000203,0.000120,0.000120,0.000326,0.121368,-0.000851,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000039,0.000035,0.000204,0.000372,0.000372,0.000322,0.120281,-0.001088,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000038,0.000034,0.000205,0.000524,0.000524,0.000317,0.119058,-0.001223,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000038,0.000033,0.000206,0.000617,0.000617,0.000312,0.117759,-0.001299,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000037,0.000032,0.000207,0.000677,0.000677,0.000307,0.116417,-0.001341,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000037,0.000031,0.000208,0.000615,0.000615,0.000302,0.115155,-0.001262,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000036,0.000031,0.000208,0.000540,0.000540,0.000296,0.113984,-0.001172,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000035,0.000030,0.000209,0.000515,0.000515,0.000291,0.112853,-0.001131,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000035,0.000029,0.000210,0.000444,0.000444,0.000285,0.111807,-0.001046,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000034,0.000029,0.000211,0.000326,0.000326,0.000280,0.110891,-0.000916,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000033,0.000028,0.000212,0.000189,0.000189,0.000275,0.110122,-0.000769,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000028,0.000212,0.000046,0.000046,0.000269,0.109505,-0.000618,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000032,0.000027,0.000213,0.000000,0.000000,0.000265,0.108941,-0.000564,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000032,0.000027,0.000214,0.000000,0.000000,0.000260,0.108385,-0.000556,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000031,0.000027,0.000215,0.000000,0.000000,0.000256,0.107836,-0.000549,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000030,0.000026,0.000216,0.000000,0.000000,0.000251,0.107295,-0.000542,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000030,0.000026,0.000217,0.000000,0.000000,0.000247,0.106760,-0.000534,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000029,0.000025,0.000218,0.000000,0.000000,0.000243,0.106233,-0.000527,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000025,0.000219,0.000000,0.000000,0.000239,0.105713,-0.000520,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000025,0.000220,0.000000,0.000000,0.000236,0.105199,-0.000513,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000028,0.000024,0.000221,0.000000,0.000000,0.000232,0.104693,-0.000507,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000024,0.000222,0.000000,0.000000,0.000228,0.104193,-0.000500,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000024,0.000222,0.000000,0.000000,0.000225,0.103700,-0.000493,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000027,0.000024,0.000223,0.000000,0.000000,0.000222,0.103213,-0.000487,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000023,0.000224,0.000115,0.000115,0.000218,0.102619,-0.000594,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000026,0.000023,0.000225,0.000364,0.000364,0.000215,0.101787,-0.000832,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000226,0.000517,0.000517,0.000211,0.100815,-0.000972,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000021,0.000227,0.000614,0.000614,0.000207,0.099760,-0.001055,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000228,0.000654,0.000654,0.000203,0.098680,-0.001080,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000020,0.000229,0.000597,0.000597,0.000199,0.097671,-0.001009,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000019,0.000230,0.000532,0.000532,0.000195,0.096739,-0.000932,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000019,0.000230,0.000514,0.000514,0.000191,0.095837,-0.000902,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000018,0.000231,0.000442,0.000442,0.000186,0.095019,-0.000819,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000232,0.000323,0.000323,0.000182,0.094328,-0.000691,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000017,0.000233,0.000159,0.000159,0.000178,0.093808,-0.000520,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000017,0.000234,0.000019,0.000000,0.000174,0.093452,-0.000356,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000017,0.000234,0.000000,0.000000,0.000170,0.093101,-0.000351,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000017,0.000235,0.000000,0.000000,0.000167,0.092754,-0.000347,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000236,0.000000,0.000000,0.000164,0.092412,-0.000342,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000016,0.000237,0.000000,0.000000,0.000160,0.092075,-0.000337,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000016,0.000238,0.000000,0.000000,0.000158,0.091742,-0.000333,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000016,0.000239,0.000000,0.000000,0.000155,0.091413,-0.000329,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000016,0.000240,0.000000,0.000000,0.000152,0.091089,-0.000324,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000015,0.000241,0.000000,0.000000,0.000149,0.090769,-0.000320,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000015,0.000242,0.000000,0.000000,0.000147,0.090454,-0.000316,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000015,0.000243,0.000000,0.000000,0.000144,0.090142,-0.000312,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000015,0.000244,0.000000,0.000000,0.000142,0.089835,-0.000307,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000015,0.000245,0.000000,0.000000,0.000140,0.089531,-0.000303,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000014,0.000245,0.000100,0.000000,0.000138,0.089232,-0.000299,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000246,0.000352,0.000000,0.000135,0.088937,-0.000295,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000014,0.000247,0.000509,0.000000,0.000133,0.088645,-0.000291,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000248,0.000605,0.000000,0.000131,0.088358,-0.000288,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000014,0.000249,0.000666,0.000000,0.000129,0.088074,-0.000284,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000014,0.000250,0.000594,0.000000,0.000128,0.087794,-0.000280,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000531,0.000000,0.000126,0.087517,-0.000276,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000013,0.000252,0.000512,0.000000,0.000124,0.087245,-0.000273,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000443,0.000000,0.000122,0.086976,-0.000269,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000013,0.000254,0.000323,0.000000,0.000120,0.086710,-0.000266,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000013,0.000255,0.000181,0.000000,0.000119,0.086448,-0.000262,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000031,0.000000,0.000117,0.086190,-0.000259,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000014,0.000012,0.000257,0.000000,0.000000,0.000115,0.085935,-0.000255,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000014,0.000012,0.000258,0.000000,0.000000,0.000114,0.085683,-0.000252,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000014,0.000012,0.000259,0.000000,0.000000,0.000112,0.085434,-0.000248,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000013,0.000012,0.000260,0.000000,0.000000,0.000111,0.085189,-0.000245,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000013,0.000012,0.000260,0.000000,0.000000,0.000109,0.084947,-0.000242,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000012,0.000261,0.000000,0.000000,0.000108,0.084709,-0.000239,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000011,0.000262,0.000000,0.000000,0.000106,0.084473,-0.000236,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000011,0.000263,0.000000,0.000000,0.000105,0.084241,-0.000232,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000011,0.000264,0.000000,0.000000,0.000103,0.084011,-0.000229,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000102,0.083785,-0.000226,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000101,0.083562,-0.000223,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000011,0.000267,0.000000,0.000000,0.000099,0.083342,-0.000220,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000012,0.000011,0.000268,0.000108,0.000000,0.000098,0.083124,-0.000217,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620790.csv b/test/channel_loss/channel_forcing/et/cat-2620790.csv new file mode 100644 index 000000000..24923e0bd --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620790.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000128,0.000000,0.000000,0.000000,0.000000,0.001502,0.000585,0.001502,0.000166,0.000166,0.010680,0.424766,-0.004998,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001373,0.000576,0.001373,0.000044,0.000044,0.009883,0.419836,-0.004930,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001263,0.000568,0.001263,0.000000,0.000000,0.009187,0.415022,-0.004814,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001169,0.000559,0.001169,0.000000,0.000000,0.008577,0.410280,-0.004742,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001087,0.000551,0.001088,0.000000,0.000000,0.008040,0.405608,-0.004672,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001016,0.000543,0.001017,0.000000,0.000000,0.007567,0.401005,-0.004603,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000954,0.000535,0.000955,0.000000,0.000000,0.007147,0.396471,-0.004534,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000900,0.000527,0.000900,0.000000,0.000000,0.006774,0.392003,-0.004467,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000851,0.000519,0.000852,0.000000,0.000000,0.006442,0.387602,-0.004401,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000809,0.000511,0.000810,0.000000,0.000000,0.006144,0.383267,-0.004336,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000770,0.000504,0.000772,0.000000,0.000000,0.005877,0.378995,-0.004271,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000736,0.000496,0.000738,0.000000,0.000000,0.005637,0.374787,-0.004208,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000706,0.000489,0.000708,0.000000,0.000000,0.005420,0.370642,-0.004146,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000678,0.000481,0.000681,0.000000,0.000000,0.005223,0.366558,-0.004084,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000653,0.000474,0.000657,0.000131,0.000131,0.005044,0.362405,-0.004152,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000631,0.000466,0.000634,0.000379,0.000379,0.004880,0.358070,-0.004335,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000610,0.000459,0.000614,0.000530,0.000530,0.004728,0.353651,-0.004419,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000591,0.000451,0.000595,0.000614,0.000614,0.004588,0.349214,-0.004437,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000573,0.000443,0.000578,0.000526,0.000526,0.004459,0.344930,-0.004284,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000556,0.000436,0.000562,0.000473,0.000473,0.004338,0.341072,-0.003858,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000287,0.000000,0.000000,0.000000,0.000007,0.000541,0.000430,0.000548,0.000423,0.000423,0.004227,0.337293,-0.003779,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000499,0.000001,0.000002,0.000001,0.000007,0.000527,0.000423,0.000536,0.000354,0.000354,0.004123,0.333844,-0.003449,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000279,0.000001,0.000000,0.000001,0.000008,0.000514,0.000417,0.000523,0.000315,0.000315,0.004026,0.330270,-0.003573,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000361,0.000001,0.000002,0.000001,0.000009,0.000502,0.000411,0.000512,0.000237,0.000237,0.003935,0.326906,-0.003364,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000287,0.000002,0.000002,0.000002,0.000009,0.000490,0.000405,0.000501,0.000152,0.000152,0.003850,0.323602,-0.003304,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000743,0.000027,0.000048,0.000027,0.000010,0.000480,0.000400,0.000517,0.000064,0.000064,0.003770,0.320837,-0.002765,1.000000,0.000022 +26,2022-08-02 02:00:00,0.001296,0.000103,0.000164,0.000103,0.000011,0.000470,0.000396,0.000584,0.000000,0.000000,0.003697,0.318607,-0.002230,1.000000,0.000084 +27,2022-08-02 03:00:00,0.001172,0.000125,0.000136,0.000125,0.000012,0.000461,0.000392,0.000598,0.000000,0.000000,0.003628,0.316316,-0.002291,1.000000,0.000094 +28,2022-08-02 04:00:00,0.001284,0.000155,0.000160,0.000155,0.000012,0.000452,0.000388,0.000620,0.000000,0.000000,0.003564,0.314145,-0.002171,1.000000,0.000099 +29,2022-08-02 05:00:00,0.001064,0.000129,0.000112,0.000129,0.000013,0.000444,0.000384,0.000586,0.000000,0.000000,0.003505,0.311837,-0.002308,1.000000,0.000082 +30,2022-08-02 06:00:00,0.000927,0.000107,0.000086,0.000107,0.000014,0.000437,0.000380,0.000558,0.000000,0.000000,0.003448,0.309454,-0.002383,1.000000,0.000061 +31,2022-08-02 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000015,0.000429,0.000374,0.000488,0.000000,0.000000,0.003393,0.306277,-0.003176,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000422,0.000369,0.000455,0.000000,0.000000,0.003339,0.303148,-0.003129,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000415,0.000363,0.000432,0.000000,0.000000,0.003287,0.300065,-0.003083,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000409,0.000358,0.000427,0.000000,0.000000,0.003237,0.297028,-0.003037,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000402,0.000353,0.000421,0.000000,0.000000,0.003187,0.294036,-0.002992,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000396,0.000348,0.000416,0.000000,0.000000,0.003139,0.291089,-0.002948,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000102,0.000001,0.000001,0.000001,0.000021,0.000390,0.000343,0.000411,0.000000,0.000000,0.003092,0.288285,-0.002804,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000120,0.000000,0.000000,0.000000,0.000022,0.000384,0.000337,0.000406,0.000117,0.000117,0.003045,0.285425,-0.002859,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000120,0.000000,0.000000,0.000000,0.000023,0.000378,0.000332,0.000401,0.000329,0.000329,0.003000,0.282400,-0.003026,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000120,0.000000,0.000000,0.000000,0.000024,0.000372,0.000327,0.000395,0.000459,0.000459,0.002955,0.279291,-0.003109,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000120,0.000000,0.000000,0.000000,0.000025,0.000366,0.000321,0.000391,0.000540,0.000540,0.002910,0.276148,-0.003143,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000567,0.000000,0.000000,0.000000,0.000026,0.000360,0.000316,0.000386,0.000595,0.000595,0.002866,0.273438,-0.002710,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000027,0.000354,0.000311,0.000381,0.000535,0.000535,0.002822,0.270368,-0.003070,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000349,0.000305,0.000377,0.000488,0.000488,0.002779,0.267291,-0.003077,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000343,0.000300,0.000372,0.000489,0.000489,0.002735,0.264258,-0.003033,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000338,0.000295,0.000368,0.000425,0.000425,0.002693,0.261333,-0.002925,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000332,0.000290,0.000363,0.000312,0.000312,0.002650,0.258563,-0.002770,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000327,0.000285,0.000359,0.000175,0.000175,0.002609,0.255970,-0.002594,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000321,0.000281,0.000355,0.000030,0.000030,0.002568,0.253558,-0.002412,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000316,0.000277,0.000351,0.000000,0.000000,0.002529,0.251210,-0.002347,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000311,0.000273,0.000347,0.000000,0.000000,0.002490,0.248898,-0.002312,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000306,0.000269,0.000344,0.000000,0.000000,0.002452,0.246620,-0.002278,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000302,0.000265,0.000340,0.000000,0.000000,0.002415,0.244376,-0.002244,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000297,0.000261,0.000337,0.000000,0.000000,0.002379,0.242165,-0.002211,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000292,0.000257,0.000333,0.000000,0.000000,0.002343,0.239987,-0.002178,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000288,0.000253,0.000330,0.000000,0.000000,0.002309,0.237841,-0.002146,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000283,0.000249,0.000327,0.000000,0.000000,0.002274,0.235727,-0.002114,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000279,0.000246,0.000324,0.000000,0.000000,0.002241,0.233644,-0.002083,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000275,0.000242,0.000321,0.000000,0.000000,0.002208,0.231593,-0.002052,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000271,0.000238,0.000318,0.000000,0.000000,0.002175,0.229571,-0.002021,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000267,0.000235,0.000315,0.000000,0.000000,0.002143,0.227580,-0.001991,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000263,0.000231,0.000312,0.000125,0.000125,0.002112,0.225495,-0.002085,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000259,0.000227,0.000310,0.000377,0.000377,0.002080,0.223193,-0.002302,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000255,0.000223,0.000307,0.000527,0.000527,0.002048,0.220777,-0.002416,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000250,0.000218,0.000304,0.000619,0.000619,0.002016,0.218307,-0.002470,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000246,0.000214,0.000301,0.000601,0.000601,0.001984,0.215891,-0.002416,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000242,0.000210,0.000298,0.000538,0.000538,0.001952,0.213572,-0.002319,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001753,0.000073,0.000133,0.000073,0.000058,0.000238,0.000209,0.000369,0.000489,0.000489,0.001922,0.212932,-0.000640,1.000000,0.000060 +69,2022-08-03 21:00:00,0.000221,0.000033,0.000000,0.000033,0.000059,0.000235,0.000205,0.000327,0.000469,0.000469,0.001893,0.210944,-0.001988,1.000000,0.000027 +70,2022-08-03 22:00:00,0.000000,0.000027,0.000000,0.000027,0.000060,0.000231,0.000201,0.000318,0.000406,0.000406,0.001863,0.208828,-0.002115,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000060,0.000000,0.000000,0.000000,0.000062,0.000227,0.000198,0.000289,0.000298,0.000298,0.001834,0.206910,-0.001918,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000224,0.000195,0.000287,0.000184,0.000184,0.001805,0.205074,-0.001836,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000220,0.000192,0.000284,0.000042,0.000042,0.001777,0.203404,-0.001670,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000217,0.000189,0.000282,0.000000,0.000000,0.001750,0.201801,-0.001603,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000213,0.000186,0.000280,0.000000,0.000000,0.001723,0.200221,-0.001579,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000210,0.000183,0.000278,0.000000,0.000000,0.001697,0.198666,-0.001556,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000207,0.000181,0.000276,0.000000,0.000000,0.001671,0.197133,-0.001533,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000203,0.000178,0.000275,0.000000,0.000000,0.001645,0.195623,-0.001510,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000200,0.000175,0.000273,0.000000,0.000000,0.001621,0.194135,-0.001488,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000197,0.000173,0.000271,0.000000,0.000000,0.001596,0.192669,-0.001466,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000194,0.000170,0.000269,0.000000,0.000000,0.001572,0.191225,-0.001444,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000191,0.000168,0.000268,0.000000,0.000000,0.001549,0.189803,-0.001422,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000188,0.000165,0.000266,0.000000,0.000000,0.001526,0.188402,-0.001401,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000185,0.000163,0.000265,0.000000,0.000000,0.001503,0.187021,-0.001381,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000183,0.000160,0.000264,0.000000,0.000000,0.001481,0.185661,-0.001360,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000180,0.000158,0.000262,0.000121,0.000121,0.001459,0.184201,-0.001459,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000177,0.000155,0.000261,0.000373,0.000373,0.001437,0.182515,-0.001686,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000174,0.000152,0.000259,0.000529,0.000529,0.001414,0.180701,-0.001815,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000171,0.000148,0.000258,0.000622,0.000622,0.001391,0.178821,-0.001879,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000168,0.000145,0.000256,0.000680,0.000680,0.001368,0.176913,-0.001909,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000165,0.000142,0.000255,0.000616,0.000616,0.001344,0.175095,-0.001818,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000162,0.000139,0.000253,0.000544,0.000544,0.001320,0.173376,-0.001719,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000159,0.000136,0.000252,0.000510,0.000510,0.001296,0.171716,-0.001660,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000156,0.000133,0.000250,0.000444,0.000444,0.001273,0.170145,-0.001571,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000154,0.000130,0.000249,0.000324,0.000324,0.001249,0.168717,-0.001428,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000151,0.000128,0.000247,0.000189,0.000189,0.001227,0.167442,-0.001275,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000148,0.000126,0.000246,0.000048,0.000048,0.001205,0.166325,-0.001117,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000145,0.000124,0.000245,0.000000,0.000000,0.001184,0.165272,-0.001053,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000143,0.000122,0.000243,0.000000,0.000000,0.001163,0.164235,-0.001037,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000140,0.000120,0.000242,0.000000,0.000000,0.001143,0.163212,-0.001022,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000138,0.000119,0.000241,0.000000,0.000000,0.001124,0.162206,-0.001007,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000136,0.000117,0.000240,0.000000,0.000000,0.001105,0.161214,-0.000992,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000133,0.000115,0.000240,0.000000,0.000000,0.001087,0.160236,-0.000977,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000131,0.000114,0.000239,0.000000,0.000000,0.001070,0.159274,-0.000963,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000129,0.000112,0.000238,0.000000,0.000000,0.001053,0.158325,-0.000948,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000127,0.000110,0.000237,0.000000,0.000000,0.001036,0.157391,-0.000934,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000125,0.000109,0.000237,0.000000,0.000000,0.001019,0.156470,-0.000921,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000123,0.000107,0.000236,0.000000,0.000000,0.001003,0.155563,-0.000907,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000121,0.000105,0.000236,0.000000,0.000000,0.000988,0.154670,-0.000893,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000119,0.000104,0.000235,0.000134,0.000134,0.000972,0.153657,-0.001012,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000117,0.000101,0.000234,0.000378,0.000378,0.000957,0.152420,-0.001238,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000115,0.000099,0.000234,0.000529,0.000529,0.000940,0.151052,-0.001368,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000113,0.000096,0.000233,0.000627,0.000627,0.000924,0.149608,-0.001444,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000111,0.000094,0.000232,0.000608,0.000608,0.000907,0.148204,-0.001404,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000109,0.000092,0.000232,0.000554,0.000554,0.000890,0.146937,-0.001267,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000107,0.000089,0.000231,0.000497,0.000497,0.000872,0.145744,-0.001193,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000105,0.000087,0.000230,0.000470,0.000470,0.000855,0.144595,-0.001149,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000102,0.000086,0.000229,0.000399,0.000399,0.000838,0.143533,-0.001062,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000128,0.000100,0.000084,0.000229,0.000298,0.000298,0.000822,0.142711,-0.000822,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000098,0.000083,0.000228,0.000177,0.000177,0.000806,0.141897,-0.000815,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000442,0.000007,0.000012,0.000007,0.000131,0.000097,0.000082,0.000234,0.000059,0.000059,0.000792,0.141572,-0.000325,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000885,0.000037,0.000061,0.000037,0.000132,0.000095,0.000082,0.000264,0.000000,0.000000,0.000779,0.141698,0.000126,1.000000,0.000030 +123,2022-08-06 03:00:00,0.000530,0.000030,0.000023,0.000030,0.000134,0.000094,0.000082,0.000258,0.000000,0.000000,0.000767,0.141511,-0.000187,1.000000,0.000022 +124,2022-08-06 04:00:00,0.000407,0.000025,0.000013,0.000025,0.000135,0.000092,0.000081,0.000253,0.000000,0.000000,0.000756,0.141213,-0.000297,1.000000,0.000011 +125,2022-08-06 05:00:00,0.000397,0.000015,0.000013,0.000015,0.000136,0.000091,0.000081,0.000242,0.000000,0.000000,0.000746,0.140911,-0.000302,1.000000,0.000008 +126,2022-08-06 06:00:00,0.000418,0.000014,0.000014,0.000014,0.000138,0.000090,0.000080,0.000241,0.000000,0.000000,0.000737,0.140633,-0.000278,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000139,0.000089,0.000079,0.000234,0.000000,0.000000,0.000727,0.139961,-0.000672,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000140,0.000088,0.000078,0.000231,0.000000,0.000000,0.000718,0.139299,-0.000662,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000086,0.000077,0.000228,0.000000,0.000000,0.000708,0.138647,-0.000652,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000085,0.000076,0.000228,0.000000,0.000000,0.000699,0.138004,-0.000642,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000084,0.000075,0.000228,0.000000,0.000000,0.000689,0.137372,-0.000633,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000083,0.000074,0.000229,0.000000,0.000000,0.000680,0.136748,-0.000624,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000082,0.000072,0.000229,0.000000,0.000000,0.000671,0.136134,-0.000614,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000081,0.000071,0.000229,0.000117,0.000117,0.000661,0.135413,-0.000720,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000079,0.000069,0.000229,0.000361,0.000361,0.000651,0.134463,-0.000951,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000078,0.000068,0.000229,0.000513,0.000513,0.000641,0.133377,-0.001086,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000077,0.000065,0.000229,0.000604,0.000604,0.000629,0.132217,-0.001160,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000075,0.000063,0.000229,0.000666,0.000666,0.000618,0.131014,-0.001203,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000074,0.000061,0.000228,0.000607,0.000607,0.000605,0.129887,-0.001127,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000072,0.000059,0.000228,0.000540,0.000540,0.000592,0.128842,-0.001045,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000071,0.000058,0.000228,0.000512,0.000512,0.000580,0.127841,-0.001002,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000069,0.000056,0.000228,0.000439,0.000439,0.000567,0.126926,-0.000915,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000067,0.000055,0.000227,0.000320,0.000320,0.000554,0.126143,-0.000783,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000066,0.000054,0.000227,0.000183,0.000183,0.000542,0.125505,-0.000637,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000064,0.000053,0.000227,0.000040,0.000040,0.000530,0.125018,-0.000487,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000063,0.000052,0.000227,0.000000,0.000000,0.000519,0.124578,-0.000440,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000062,0.000051,0.000227,0.000000,0.000000,0.000508,0.124144,-0.000434,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000061,0.000050,0.000227,0.000000,0.000000,0.000498,0.123717,-0.000427,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000059,0.000050,0.000227,0.000000,0.000000,0.000488,0.123296,-0.000421,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000058,0.000049,0.000227,0.000000,0.000000,0.000479,0.122881,-0.000415,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000057,0.000048,0.000227,0.000000,0.000000,0.000470,0.122472,-0.000409,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000056,0.000047,0.000227,0.000000,0.000000,0.000461,0.122070,-0.000403,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000055,0.000047,0.000227,0.000000,0.000000,0.000453,0.121673,-0.000397,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000054,0.000046,0.000227,0.000000,0.000000,0.000445,0.121282,-0.000391,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000053,0.000045,0.000228,0.000000,0.000000,0.000437,0.120897,-0.000385,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000052,0.000045,0.000228,0.000000,0.000000,0.000430,0.120518,-0.000379,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000051,0.000044,0.000228,0.000000,0.000000,0.000422,0.120145,-0.000374,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000050,0.000043,0.000228,0.000111,0.000111,0.000415,0.119667,-0.000478,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000050,0.000042,0.000229,0.000355,0.000355,0.000408,0.118956,-0.000711,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000049,0.000040,0.000229,0.000507,0.000507,0.000399,0.118106,-0.000850,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000047,0.000039,0.000229,0.000603,0.000603,0.000391,0.117175,-0.000931,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000046,0.000037,0.000229,0.000643,0.000643,0.000381,0.116218,-0.000957,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000045,0.000035,0.000229,0.000584,0.000584,0.000372,0.115332,-0.000886,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000044,0.000034,0.000229,0.000529,0.000529,0.000362,0.114514,-0.000818,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000033,0.000229,0.000509,0.000509,0.000352,0.113728,-0.000786,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000041,0.000031,0.000229,0.000433,0.000433,0.000342,0.113029,-0.000700,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000040,0.000030,0.000229,0.000318,0.000318,0.000332,0.112453,-0.000576,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000030,0.000229,0.000151,0.000151,0.000322,0.112050,-0.000403,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000029,0.000229,0.000015,0.000015,0.000314,0.111787,-0.000263,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000029,0.000229,0.000000,0.000000,0.000305,0.111543,-0.000244,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000028,0.000229,0.000000,0.000000,0.000298,0.111302,-0.000240,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000028,0.000229,0.000000,0.000000,0.000290,0.111065,-0.000237,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000028,0.000229,0.000000,0.000000,0.000283,0.110832,-0.000233,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000027,0.000230,0.000000,0.000000,0.000277,0.110602,-0.000230,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000027,0.000230,0.000000,0.000000,0.000271,0.110376,-0.000226,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000026,0.000230,0.000000,0.000000,0.000265,0.110153,-0.000223,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000031,0.000026,0.000231,0.000000,0.000000,0.000259,0.109933,-0.000220,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000026,0.000231,0.000000,0.000000,0.000254,0.109716,-0.000217,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000232,0.000000,0.000000,0.000249,0.109503,-0.000213,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000025,0.000232,0.000000,0.000000,0.000244,0.109293,-0.000210,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000024,0.000232,0.000000,0.000000,0.000240,0.109086,-0.000207,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000024,0.000233,0.000097,0.000097,0.000235,0.108787,-0.000299,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000023,0.000233,0.000342,0.000342,0.000230,0.108250,-0.000537,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000027,0.000022,0.000234,0.000499,0.000499,0.000225,0.107567,-0.000683,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000020,0.000234,0.000593,0.000593,0.000218,0.106801,-0.000766,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000019,0.000234,0.000653,0.000653,0.000212,0.105988,-0.000813,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000025,0.000018,0.000234,0.000562,0.000562,0.000205,0.105276,-0.000712,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000016,0.000234,0.000520,0.000520,0.000197,0.104616,-0.000660,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000015,0.000234,0.000502,0.000502,0.000190,0.103984,-0.000632,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000014,0.000234,0.000433,0.000433,0.000182,0.103429,-0.000555,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000014,0.000235,0.000316,0.000316,0.000174,0.102997,-0.000432,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000020,0.000013,0.000235,0.000174,0.000174,0.000167,0.102712,-0.000285,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000019,0.000013,0.000235,0.000026,0.000026,0.000161,0.102577,-0.000135,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000019,0.000013,0.000235,0.000000,0.000000,0.000155,0.102470,-0.000107,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000018,0.000012,0.000235,0.000000,0.000000,0.000149,0.102364,-0.000106,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000012,0.000236,0.000000,0.000000,0.000144,0.102260,-0.000104,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000236,0.000000,0.000000,0.000139,0.102157,-0.000103,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000016,0.000012,0.000236,0.000000,0.000000,0.000135,0.102056,-0.000101,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000012,0.000237,0.000000,0.000000,0.000131,0.101956,-0.000100,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000012,0.000237,0.000000,0.000000,0.000127,0.101858,-0.000098,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000011,0.000238,0.000000,0.000000,0.000123,0.101761,-0.000097,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000238,0.000000,0.000000,0.000120,0.101666,-0.000095,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000011,0.000239,0.000000,0.000000,0.000117,0.101572,-0.000094,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000011,0.000239,0.000000,0.000000,0.000114,0.101480,-0.000092,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000013,0.000011,0.000240,0.000000,0.000000,0.000111,0.101389,-0.000091,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000010,0.000240,0.000105,0.000105,0.000109,0.101195,-0.000193,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620791.csv b/test/channel_loss/channel_forcing/et/cat-2620791.csv new file mode 100644 index 000000000..3b7f12606 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620791.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000158,0.000000,0.000000,0.000000,0.000000,0.001541,0.000863,0.001541,0.000165,0.000165,0.010919,0.421291,-0.005338,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001444,0.000850,0.001444,0.000045,0.000045,0.010325,0.415998,-0.005292,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001360,0.000837,0.001360,0.000000,0.000000,0.009802,0.410832,-0.005167,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001287,0.000824,0.001287,0.000000,0.000000,0.009338,0.405745,-0.005087,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001223,0.000811,0.001223,0.000000,0.000000,0.008927,0.400737,-0.005008,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001166,0.000799,0.001167,0.000000,0.000000,0.008559,0.395806,-0.004931,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001116,0.000786,0.001117,0.000000,0.000000,0.008229,0.390952,-0.004854,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001071,0.000774,0.001072,0.000000,0.000000,0.007932,0.386173,-0.004779,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001031,0.000762,0.001032,0.000000,0.000000,0.007664,0.381468,-0.004705,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000994,0.000750,0.000996,0.000000,0.000000,0.007419,0.376836,-0.004632,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000961,0.000739,0.000963,0.000000,0.000000,0.007197,0.372275,-0.004561,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000931,0.000727,0.000933,0.000000,0.000000,0.006993,0.367785,-0.004490,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000904,0.000716,0.000906,0.000000,0.000000,0.006805,0.363364,-0.004421,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000879,0.000705,0.000882,0.000000,0.000000,0.006631,0.359012,-0.004352,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000855,0.000694,0.000859,0.000131,0.000131,0.006469,0.354599,-0.004414,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000833,0.000682,0.000837,0.000375,0.000375,0.006318,0.350012,-0.004586,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000813,0.000670,0.000817,0.000523,0.000523,0.006175,0.345352,-0.004661,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000794,0.000658,0.000799,0.000606,0.000606,0.006040,0.340682,-0.004670,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000775,0.000647,0.000781,0.000524,0.000524,0.005911,0.336165,-0.004517,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000305,0.000000,0.000000,0.000000,0.000006,0.000758,0.000636,0.000764,0.000468,0.000468,0.005790,0.332073,-0.004092,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000234,0.000000,0.000000,0.000000,0.000007,0.000742,0.000626,0.000748,0.000422,0.000422,0.005674,0.328020,-0.004053,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000456,0.000000,0.000001,0.000000,0.000007,0.000726,0.000617,0.000734,0.000355,0.000355,0.005564,0.324313,-0.003707,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000224,0.000000,0.000000,0.000000,0.000008,0.000711,0.000607,0.000720,0.000317,0.000317,0.005460,0.320474,-0.003839,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000306,0.000000,0.000000,0.000000,0.000009,0.000697,0.000598,0.000707,0.000239,0.000239,0.005360,0.316851,-0.003623,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000234,0.000000,0.000001,0.000000,0.000009,0.000684,0.000589,0.000694,0.000153,0.000153,0.005264,0.313298,-0.003553,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000697,0.000016,0.000030,0.000016,0.000010,0.000671,0.000581,0.000698,0.000065,0.000065,0.005174,0.310314,-0.002984,1.000000,0.000013 +26,2022-08-02 02:00:00,0.001204,0.000064,0.000102,0.000064,0.000011,0.000660,0.000575,0.000734,0.000000,0.000000,0.005089,0.307867,-0.002447,1.000000,0.000052 +27,2022-08-02 03:00:00,0.001078,0.000077,0.000082,0.000077,0.000012,0.000649,0.000568,0.000737,0.000000,0.000000,0.005009,0.305353,-0.002514,1.000000,0.000058 +28,2022-08-02 04:00:00,0.001205,0.000097,0.000102,0.000097,0.000013,0.000638,0.000562,0.000748,0.000000,0.000000,0.004933,0.302985,-0.002369,1.000000,0.000062 +29,2022-08-02 05:00:00,0.000970,0.000079,0.000067,0.000079,0.000013,0.000628,0.000556,0.000720,0.000000,0.000000,0.004861,0.300456,-0.002528,1.000000,0.000050 +30,2022-08-02 06:00:00,0.000849,0.000065,0.000051,0.000065,0.000014,0.000619,0.000549,0.000698,0.000000,0.000000,0.004791,0.297863,-0.002593,1.000000,0.000036 +31,2022-08-02 07:00:00,0.000000,0.000026,0.000000,0.000026,0.000015,0.000609,0.000541,0.000650,0.000000,0.000000,0.004723,0.294525,-0.003339,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000016,0.000600,0.000532,0.000626,0.000000,0.000000,0.004656,0.291238,-0.003287,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000591,0.000524,0.000608,0.000000,0.000000,0.004589,0.288001,-0.003236,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000582,0.000516,0.000600,0.000000,0.000000,0.004523,0.284815,-0.003186,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000573,0.000508,0.000592,0.000000,0.000000,0.004459,0.281679,-0.003137,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000564,0.000500,0.000584,0.000000,0.000000,0.004395,0.278590,-0.003088,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000021,0.000556,0.000493,0.000577,0.000000,0.000000,0.004332,0.275648,-0.002943,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000547,0.000485,0.000569,0.000116,0.000116,0.004270,0.272637,-0.003011,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000539,0.000477,0.000562,0.000328,0.000328,0.004208,0.269464,-0.003172,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000530,0.000469,0.000554,0.000456,0.000456,0.004146,0.266215,-0.003250,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000025,0.000522,0.000460,0.000547,0.000534,0.000534,0.004085,0.262938,-0.003276,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000533,0.000000,0.000000,0.000000,0.000026,0.000514,0.000453,0.000540,0.000591,0.000591,0.004024,0.260083,-0.002855,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000093,0.000000,0.000000,0.000000,0.000027,0.000506,0.000445,0.000533,0.000530,0.000530,0.003963,0.256900,-0.003183,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000498,0.000437,0.000526,0.000485,0.000485,0.003902,0.253718,-0.003182,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000489,0.000429,0.000519,0.000491,0.000491,0.003842,0.250579,-0.003139,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000481,0.000421,0.000512,0.000425,0.000425,0.003782,0.247554,-0.003026,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000473,0.000414,0.000505,0.000311,0.000311,0.003722,0.244687,-0.002867,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000466,0.000407,0.000498,0.000173,0.000173,0.003664,0.242000,-0.002687,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000458,0.000401,0.000492,0.000029,0.000029,0.003607,0.239497,-0.002503,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000450,0.000394,0.000486,0.000000,0.000000,0.003551,0.237062,-0.002436,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000443,0.000388,0.000480,0.000000,0.000000,0.003496,0.234664,-0.002398,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000436,0.000382,0.000474,0.000000,0.000000,0.003442,0.232303,-0.002361,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000429,0.000376,0.000468,0.000000,0.000000,0.003390,0.229979,-0.002324,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000422,0.000371,0.000462,0.000000,0.000000,0.003338,0.227691,-0.002288,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000416,0.000365,0.000457,0.000000,0.000000,0.003287,0.225438,-0.002253,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000409,0.000359,0.000451,0.000000,0.000000,0.003238,0.223220,-0.002218,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000403,0.000354,0.000446,0.000000,0.000000,0.003189,0.221036,-0.002184,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000396,0.000348,0.000441,0.000000,0.000000,0.003141,0.218886,-0.002150,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000390,0.000343,0.000436,0.000000,0.000000,0.003094,0.216770,-0.002117,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000384,0.000338,0.000431,0.000000,0.000000,0.003047,0.214686,-0.002084,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000378,0.000332,0.000427,0.000000,0.000000,0.003002,0.212634,-0.002052,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000372,0.000327,0.000422,0.000125,0.000125,0.002957,0.210491,-0.002143,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000366,0.000321,0.000418,0.000374,0.000374,0.002911,0.208136,-0.002355,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000360,0.000315,0.000413,0.000522,0.000522,0.002866,0.205671,-0.002464,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000354,0.000308,0.000408,0.000610,0.000610,0.002820,0.203159,-0.002512,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000348,0.000302,0.000404,0.000593,0.000593,0.002774,0.200702,-0.002457,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000342,0.000296,0.000399,0.000532,0.000532,0.002728,0.198343,-0.002359,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001784,0.000055,0.000100,0.000055,0.000058,0.000337,0.000294,0.000450,0.000483,0.000483,0.002685,0.197727,-0.000617,1.000000,0.000045 +69,2022-08-03 21:00:00,0.000234,0.000025,0.000000,0.000025,0.000059,0.000331,0.000289,0.000416,0.000469,0.000469,0.002643,0.195706,-0.002021,1.000000,0.000020 +70,2022-08-03 22:00:00,0.000000,0.000020,0.000000,0.000020,0.000061,0.000326,0.000284,0.000406,0.000407,0.000407,0.002601,0.193547,-0.002159,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000062,0.000000,0.000000,0.000000,0.000062,0.000320,0.000279,0.000382,0.000298,0.000298,0.002560,0.191590,-0.001957,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000315,0.000274,0.000378,0.000182,0.000182,0.002519,0.189717,-0.001873,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000310,0.000270,0.000375,0.000042,0.000042,0.002479,0.188010,-0.001707,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000305,0.000265,0.000371,0.000000,0.000000,0.002439,0.186371,-0.001639,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000300,0.000261,0.000367,0.000000,0.000000,0.002401,0.184758,-0.001613,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000295,0.000257,0.000364,0.000000,0.000000,0.002363,0.183169,-0.001588,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000290,0.000253,0.000360,0.000000,0.000000,0.002326,0.181605,-0.001564,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000286,0.000249,0.000357,0.000000,0.000000,0.002290,0.180066,-0.001540,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000281,0.000246,0.000354,0.000000,0.000000,0.002255,0.178550,-0.001516,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000276,0.000242,0.000351,0.000000,0.000000,0.002220,0.177057,-0.001492,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000272,0.000238,0.000348,0.000000,0.000000,0.002186,0.175588,-0.001469,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000268,0.000234,0.000345,0.000000,0.000000,0.002153,0.174141,-0.001447,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000264,0.000231,0.000342,0.000000,0.000000,0.002120,0.172717,-0.001424,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000259,0.000227,0.000339,0.000000,0.000000,0.002087,0.171315,-0.001402,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000255,0.000224,0.000337,0.000000,0.000000,0.002055,0.169935,-0.001380,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000251,0.000220,0.000334,0.000122,0.000122,0.002024,0.168456,-0.001479,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000247,0.000215,0.000331,0.000372,0.000372,0.001992,0.166753,-0.001703,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000243,0.000211,0.000329,0.000524,0.000524,0.001960,0.164926,-0.001826,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000239,0.000206,0.000326,0.000614,0.000614,0.001927,0.163041,-0.001886,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000235,0.000201,0.000323,0.000670,0.000670,0.001893,0.161129,-0.001912,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000230,0.000197,0.000320,0.000604,0.000604,0.001859,0.159311,-0.001818,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000226,0.000192,0.000317,0.000536,0.000536,0.001825,0.157588,-0.001723,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000222,0.000188,0.000314,0.000506,0.000506,0.001792,0.155922,-0.001666,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000218,0.000184,0.000311,0.000442,0.000442,0.001758,0.154345,-0.001577,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000213,0.000180,0.000309,0.000322,0.000322,0.001725,0.152910,-0.001435,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000209,0.000177,0.000306,0.000187,0.000187,0.001693,0.151631,-0.001279,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000205,0.000174,0.000303,0.000048,0.000048,0.001661,0.150508,-0.001123,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000202,0.000171,0.000301,0.000000,0.000000,0.001631,0.149449,-0.001059,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000198,0.000169,0.000299,0.000000,0.000000,0.001602,0.148407,-0.001042,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000194,0.000166,0.000297,0.000000,0.000000,0.001574,0.147381,-0.001026,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000191,0.000164,0.000295,0.000000,0.000000,0.001547,0.146371,-0.001010,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000188,0.000161,0.000293,0.000000,0.000000,0.001520,0.145376,-0.000994,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000184,0.000159,0.000291,0.000000,0.000000,0.001495,0.144397,-0.000979,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000181,0.000156,0.000289,0.000000,0.000000,0.001470,0.143433,-0.000964,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000178,0.000154,0.000287,0.000000,0.000000,0.001445,0.142484,-0.000949,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000175,0.000151,0.000286,0.000000,0.000000,0.001422,0.141550,-0.000934,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000172,0.000149,0.000284,0.000000,0.000000,0.001398,0.140630,-0.000920,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000169,0.000147,0.000283,0.000000,0.000000,0.001376,0.139724,-0.000906,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000167,0.000144,0.000281,0.000000,0.000000,0.001354,0.138833,-0.000892,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000164,0.000142,0.000280,0.000134,0.000134,0.001332,0.137823,-0.001009,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000161,0.000139,0.000278,0.000376,0.000376,0.001309,0.136591,-0.001232,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000158,0.000135,0.000277,0.000523,0.000523,0.001286,0.135233,-0.001358,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000155,0.000132,0.000275,0.000618,0.000618,0.001263,0.133802,-0.001431,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000152,0.000128,0.000274,0.000600,0.000600,0.001239,0.132412,-0.001390,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000149,0.000125,0.000272,0.000544,0.000544,0.001214,0.131160,-0.001252,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000146,0.000122,0.000270,0.000492,0.000492,0.001190,0.129979,-0.001181,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000143,0.000119,0.000269,0.000468,0.000468,0.001166,0.128840,-0.001139,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000140,0.000116,0.000267,0.000394,0.000394,0.001142,0.127791,-0.001049,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000128,0.000137,0.000114,0.000266,0.000296,0.000296,0.001119,0.126979,-0.000812,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000135,0.000112,0.000264,0.000175,0.000175,0.001097,0.126175,-0.000805,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000494,0.000006,0.000011,0.000006,0.000131,0.000132,0.000112,0.000269,0.000059,0.000059,0.001076,0.125910,-0.000264,1.000000,0.000005 +122,2022-08-06 02:00:00,0.001000,0.000033,0.000054,0.000033,0.000132,0.000130,0.000112,0.000295,0.000000,0.000000,0.001059,0.126163,0.000253,1.000000,0.000027 +123,2022-08-06 03:00:00,0.000613,0.000027,0.000021,0.000027,0.000134,0.000128,0.000112,0.000289,0.000000,0.000000,0.001043,0.126064,-0.000099,1.000000,0.000020 +124,2022-08-06 04:00:00,0.000507,0.000024,0.000014,0.000024,0.000135,0.000126,0.000111,0.000285,0.000000,0.000000,0.001028,0.125869,-0.000195,1.000000,0.000011 +125,2022-08-06 05:00:00,0.000505,0.000016,0.000014,0.000016,0.000136,0.000124,0.000111,0.000276,0.000000,0.000000,0.001015,0.125674,-0.000194,1.000000,0.000009 +126,2022-08-06 06:00:00,0.000511,0.000014,0.000015,0.000014,0.000138,0.000123,0.000110,0.000275,0.000000,0.000000,0.001003,0.125489,-0.000186,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000139,0.000121,0.000109,0.000267,0.000000,0.000000,0.000990,0.124818,-0.000671,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000140,0.000120,0.000107,0.000263,0.000000,0.000000,0.000977,0.124157,-0.000661,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000118,0.000105,0.000260,0.000000,0.000000,0.000965,0.123506,-0.000651,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000117,0.000104,0.000259,0.000000,0.000000,0.000952,0.122865,-0.000641,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000115,0.000102,0.000259,0.000000,0.000000,0.000939,0.122234,-0.000631,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000113,0.000101,0.000259,0.000000,0.000000,0.000926,0.121613,-0.000621,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000112,0.000099,0.000258,0.000000,0.000000,0.000914,0.121002,-0.000611,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000110,0.000097,0.000258,0.000117,0.000117,0.000901,0.120285,-0.000717,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000108,0.000095,0.000258,0.000359,0.000359,0.000887,0.119341,-0.000944,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000107,0.000092,0.000257,0.000505,0.000505,0.000873,0.118268,-0.001073,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000105,0.000089,0.000257,0.000594,0.000594,0.000857,0.117123,-0.001144,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000103,0.000086,0.000256,0.000654,0.000654,0.000840,0.115937,-0.001186,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000101,0.000083,0.000255,0.000595,0.000595,0.000823,0.114828,-0.001109,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000098,0.000081,0.000254,0.000535,0.000535,0.000805,0.113794,-0.001033,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000096,0.000078,0.000253,0.000510,0.000510,0.000787,0.112802,-0.000993,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000094,0.000076,0.000252,0.000437,0.000437,0.000769,0.111896,-0.000905,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000092,0.000074,0.000251,0.000318,0.000318,0.000751,0.111122,-0.000774,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000090,0.000072,0.000250,0.000181,0.000181,0.000734,0.110495,-0.000628,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000088,0.000071,0.000249,0.000040,0.000040,0.000718,0.110015,-0.000479,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000086,0.000070,0.000249,0.000000,0.000000,0.000702,0.109583,-0.000432,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000084,0.000069,0.000248,0.000000,0.000000,0.000687,0.109158,-0.000425,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000082,0.000068,0.000247,0.000000,0.000000,0.000673,0.108739,-0.000419,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000080,0.000067,0.000247,0.000000,0.000000,0.000659,0.108327,-0.000412,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000079,0.000066,0.000247,0.000000,0.000000,0.000646,0.107921,-0.000406,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000077,0.000065,0.000246,0.000000,0.000000,0.000634,0.107522,-0.000400,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000076,0.000064,0.000246,0.000000,0.000000,0.000622,0.107129,-0.000393,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000074,0.000063,0.000246,0.000000,0.000000,0.000610,0.106741,-0.000387,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000073,0.000062,0.000246,0.000000,0.000000,0.000599,0.106360,-0.000381,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000072,0.000061,0.000245,0.000000,0.000000,0.000588,0.105985,-0.000375,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000070,0.000060,0.000245,0.000000,0.000000,0.000578,0.105615,-0.000370,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000069,0.000059,0.000245,0.000000,0.000000,0.000567,0.105251,-0.000364,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000068,0.000058,0.000245,0.000111,0.000111,0.000557,0.104783,-0.000468,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000067,0.000056,0.000245,0.000352,0.000352,0.000547,0.104086,-0.000697,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000065,0.000054,0.000245,0.000501,0.000501,0.000535,0.103253,-0.000833,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000064,0.000052,0.000244,0.000593,0.000593,0.000523,0.102342,-0.000911,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000062,0.000049,0.000244,0.000636,0.000636,0.000510,0.101402,-0.000939,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000060,0.000047,0.000243,0.000576,0.000576,0.000497,0.100537,-0.000865,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000059,0.000045,0.000243,0.000523,0.000523,0.000483,0.099737,-0.000800,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000057,0.000043,0.000242,0.000508,0.000508,0.000469,0.098964,-0.000773,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000055,0.000041,0.000242,0.000436,0.000436,0.000455,0.098273,-0.000690,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000054,0.000040,0.000241,0.000318,0.000318,0.000441,0.097710,-0.000563,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000052,0.000039,0.000240,0.000151,0.000151,0.000428,0.097320,-0.000391,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000050,0.000038,0.000240,0.000014,0.000014,0.000415,0.097070,-0.000250,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000049,0.000038,0.000240,0.000000,0.000000,0.000404,0.096838,-0.000232,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000048,0.000037,0.000239,0.000000,0.000000,0.000393,0.096610,-0.000228,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000046,0.000036,0.000239,0.000000,0.000000,0.000383,0.096386,-0.000225,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000045,0.000036,0.000239,0.000000,0.000000,0.000373,0.096165,-0.000221,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000044,0.000035,0.000239,0.000000,0.000000,0.000364,0.095947,-0.000218,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000043,0.000035,0.000239,0.000000,0.000000,0.000356,0.095733,-0.000214,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000042,0.000034,0.000239,0.000000,0.000000,0.000348,0.095522,-0.000211,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000041,0.000034,0.000239,0.000000,0.000000,0.000340,0.095314,-0.000208,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000040,0.000033,0.000240,0.000000,0.000000,0.000333,0.095110,-0.000204,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000040,0.000033,0.000240,0.000000,0.000000,0.000326,0.094909,-0.000201,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000039,0.000032,0.000240,0.000000,0.000000,0.000319,0.094710,-0.000198,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000038,0.000032,0.000240,0.000000,0.000000,0.000313,0.094515,-0.000195,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000037,0.000031,0.000240,0.000097,0.000097,0.000307,0.094228,-0.000287,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000036,0.000030,0.000241,0.000341,0.000341,0.000300,0.093705,-0.000523,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000035,0.000028,0.000241,0.000493,0.000493,0.000292,0.093040,-0.000665,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000034,0.000026,0.000241,0.000583,0.000583,0.000284,0.092296,-0.000744,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000033,0.000024,0.000240,0.000642,0.000642,0.000274,0.091506,-0.000790,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000032,0.000022,0.000240,0.000555,0.000555,0.000264,0.090813,-0.000692,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000031,0.000021,0.000240,0.000513,0.000513,0.000254,0.090174,-0.000640,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000030,0.000019,0.000240,0.000502,0.000502,0.000244,0.089555,-0.000619,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000028,0.000018,0.000239,0.000433,0.000433,0.000233,0.089013,-0.000542,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000017,0.000239,0.000316,0.000316,0.000223,0.088595,-0.000418,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000016,0.000239,0.000174,0.000174,0.000213,0.088323,-0.000272,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000016,0.000238,0.000027,0.000027,0.000204,0.088201,-0.000123,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000015,0.000238,0.000000,0.000000,0.000195,0.088106,-0.000094,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000023,0.000015,0.000238,0.000000,0.000000,0.000188,0.088013,-0.000093,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000015,0.000238,0.000000,0.000000,0.000180,0.087922,-0.000091,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000015,0.000239,0.000000,0.000000,0.000174,0.087832,-0.000090,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000014,0.000239,0.000000,0.000000,0.000168,0.087743,-0.000089,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000014,0.000239,0.000000,0.000000,0.000162,0.087656,-0.000087,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000014,0.000239,0.000000,0.000000,0.000157,0.087570,-0.000086,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000014,0.000239,0.000000,0.000000,0.000153,0.087485,-0.000085,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000013,0.000240,0.000000,0.000000,0.000148,0.087402,-0.000083,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000013,0.000240,0.000000,0.000000,0.000144,0.087320,-0.000082,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000013,0.000241,0.000000,0.000000,0.000140,0.087239,-0.000081,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000013,0.000241,0.000000,0.000000,0.000136,0.087160,-0.000080,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000012,0.000241,0.000106,0.000106,0.000133,0.086977,-0.000182,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620792.csv b/test/channel_loss/channel_forcing/et/cat-2620792.csv new file mode 100644 index 000000000..dde63df1c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620792.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000225,0.000000,0.000000,0.000000,0.000000,0.001500,0.000576,0.001501,0.000172,0.000172,0.010672,0.424945,-0.004907,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001371,0.000567,0.001371,0.000050,0.000050,0.009868,0.420010,-0.004935,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001260,0.000559,0.001260,0.000000,0.000000,0.009167,0.415197,-0.004813,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001165,0.000551,0.001165,0.000000,0.000000,0.008552,0.410456,-0.004742,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001083,0.000542,0.001083,0.000000,0.000000,0.008011,0.405784,-0.004672,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001011,0.000534,0.001012,0.000000,0.000000,0.007534,0.401181,-0.004603,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000949,0.000526,0.000950,0.000000,0.000000,0.007112,0.396647,-0.004535,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000894,0.000519,0.000895,0.000000,0.000000,0.006737,0.392179,-0.004467,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000846,0.000511,0.000847,0.000000,0.000000,0.006402,0.387778,-0.004401,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000803,0.000503,0.000804,0.000000,0.000000,0.006103,0.383442,-0.004336,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000764,0.000496,0.000766,0.000000,0.000000,0.005834,0.379169,-0.004272,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000730,0.000489,0.000732,0.000000,0.000000,0.005593,0.374960,-0.004209,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000700,0.000481,0.000702,0.000000,0.000000,0.005375,0.370813,-0.004147,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000672,0.000474,0.000675,0.000000,0.000000,0.005177,0.366728,-0.004086,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000647,0.000467,0.000650,0.000133,0.000133,0.004997,0.362572,-0.004156,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000624,0.000460,0.000628,0.000375,0.000375,0.004833,0.358238,-0.004333,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000603,0.000452,0.000608,0.000524,0.000524,0.004681,0.353823,-0.004416,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000584,0.000444,0.000589,0.000607,0.000607,0.004541,0.349390,-0.004432,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000566,0.000437,0.000572,0.000531,0.000531,0.004411,0.345099,-0.004292,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000273,0.000000,0.000000,0.000000,0.000006,0.000550,0.000430,0.000556,0.000479,0.000479,0.004291,0.341190,-0.003909,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000249,0.000000,0.000000,0.000000,0.000007,0.000535,0.000423,0.000542,0.000427,0.000427,0.004180,0.337366,-0.003824,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000313,0.000000,0.000000,0.000000,0.000007,0.000521,0.000417,0.000528,0.000367,0.000367,0.004076,0.333722,-0.003644,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000248,0.000000,0.000000,0.000000,0.000008,0.000508,0.000411,0.000516,0.000324,0.000324,0.003978,0.330110,-0.003612,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000267,0.000000,0.000000,0.000000,0.000009,0.000495,0.000405,0.000504,0.000248,0.000248,0.003887,0.326645,-0.003465,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000332,0.000002,0.000004,0.000002,0.000009,0.000484,0.000399,0.000495,0.000154,0.000154,0.003802,0.323384,-0.003260,1.000000,0.000002 +25,2022-08-02 01:00:00,0.000959,0.000046,0.000083,0.000046,0.000010,0.000473,0.000394,0.000530,0.000066,0.000066,0.003723,0.320798,-0.002586,1.000000,0.000038 +26,2022-08-02 02:00:00,0.000999,0.000078,0.000102,0.000078,0.000011,0.000464,0.000390,0.000552,0.000000,0.000000,0.003650,0.318336,-0.002462,1.000000,0.000062 +27,2022-08-02 03:00:00,0.000955,0.000093,0.000093,0.000093,0.000012,0.000454,0.000386,0.000560,0.000000,0.000000,0.003581,0.315875,-0.002460,1.000000,0.000062 +28,2022-08-02 04:00:00,0.000960,0.000095,0.000094,0.000095,0.000012,0.000446,0.000382,0.000554,0.000000,0.000000,0.003516,0.313455,-0.002420,1.000000,0.000061 +29,2022-08-02 05:00:00,0.000867,0.000084,0.000077,0.000084,0.000013,0.000438,0.000377,0.000536,0.000000,0.000000,0.003456,0.310996,-0.002459,1.000000,0.000053 +30,2022-08-02 06:00:00,0.000889,0.000082,0.000080,0.000082,0.000014,0.000430,0.000373,0.000527,0.000000,0.000000,0.003399,0.308591,-0.002405,1.000000,0.000052 +31,2022-08-02 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000015,0.000423,0.000368,0.000473,0.000000,0.000000,0.003343,0.305425,-0.003166,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000416,0.000362,0.000448,0.000000,0.000000,0.003290,0.302306,-0.003119,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000409,0.000357,0.000426,0.000000,0.000000,0.003237,0.299234,-0.003073,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000402,0.000351,0.000420,0.000000,0.000000,0.003187,0.296206,-0.003027,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000396,0.000346,0.000414,0.000000,0.000000,0.003137,0.293224,-0.002983,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000389,0.000341,0.000409,0.000000,0.000000,0.003089,0.290285,-0.002938,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000021,0.000383,0.000336,0.000404,0.000000,0.000000,0.003042,0.287488,-0.002798,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000377,0.000331,0.000399,0.000117,0.000117,0.002996,0.284618,-0.002870,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000371,0.000326,0.000394,0.000331,0.000331,0.002951,0.281578,-0.003039,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000068,0.000000,0.000000,0.000000,0.000024,0.000365,0.000321,0.000389,0.000459,0.000459,0.002906,0.278427,-0.003151,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000360,0.000315,0.000384,0.000541,0.000541,0.002862,0.275236,-0.003191,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000200,0.000000,0.000000,0.000000,0.000026,0.000354,0.000310,0.000380,0.000605,0.000605,0.002817,0.272165,-0.003071,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000348,0.000304,0.000375,0.000542,0.000542,0.002773,0.269004,-0.003161,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000342,0.000299,0.000370,0.000489,0.000489,0.002730,0.265942,-0.003062,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000337,0.000293,0.000366,0.000497,0.000497,0.002687,0.262918,-0.003024,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000331,0.000288,0.000361,0.000426,0.000426,0.002644,0.260008,-0.002910,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000326,0.000284,0.000357,0.000317,0.000317,0.002602,0.257248,-0.002760,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000320,0.000279,0.000353,0.000180,0.000180,0.002560,0.254664,-0.002584,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000315,0.000275,0.000349,0.000034,0.000034,0.002520,0.252262,-0.002402,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000310,0.000271,0.000345,0.000000,0.000000,0.002481,0.249929,-0.002333,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000305,0.000267,0.000341,0.000000,0.000000,0.002443,0.247631,-0.002298,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000300,0.000263,0.000338,0.000000,0.000000,0.002405,0.245366,-0.002264,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000296,0.000259,0.000334,0.000000,0.000000,0.002369,0.243135,-0.002231,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000291,0.000255,0.000331,0.000000,0.000000,0.002333,0.240937,-0.002198,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000286,0.000251,0.000327,0.000000,0.000000,0.002298,0.238772,-0.002165,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000282,0.000248,0.000324,0.000000,0.000000,0.002263,0.236639,-0.002133,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000278,0.000244,0.000321,0.000000,0.000000,0.002230,0.234537,-0.002102,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000273,0.000240,0.000318,0.000000,0.000000,0.002197,0.232466,-0.002071,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000269,0.000237,0.000315,0.000000,0.000000,0.002164,0.230426,-0.002040,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000265,0.000233,0.000312,0.000000,0.000000,0.002132,0.228416,-0.002010,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000261,0.000230,0.000310,0.000000,0.000000,0.002101,0.226436,-0.001980,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000257,0.000226,0.000307,0.000127,0.000127,0.002070,0.224359,-0.002077,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000253,0.000222,0.000304,0.000375,0.000375,0.002039,0.222069,-0.002290,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000249,0.000218,0.000302,0.000520,0.000520,0.002008,0.219670,-0.002399,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000245,0.000214,0.000299,0.000612,0.000612,0.001976,0.217217,-0.002454,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000241,0.000210,0.000296,0.000605,0.000605,0.001945,0.214806,-0.002411,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000237,0.000206,0.000294,0.000548,0.000548,0.001913,0.212487,-0.002319,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000672,0.000002,0.000003,0.000002,0.000058,0.000233,0.000203,0.000293,0.000486,0.000486,0.001883,0.210923,-0.001564,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000154,0.000001,0.000000,0.000001,0.000059,0.000230,0.000199,0.000289,0.000480,0.000480,0.001852,0.208880,-0.002043,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000060,0.000226,0.000196,0.000287,0.000411,0.000411,0.001822,0.206784,-0.002097,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000222,0.000192,0.000284,0.000307,0.000307,0.001793,0.204820,-0.001963,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000218,0.000189,0.000281,0.000182,0.000182,0.001764,0.203009,-0.001811,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000215,0.000186,0.000279,0.000048,0.000048,0.001735,0.201358,-0.001652,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000211,0.000183,0.000277,0.000000,0.000000,0.001707,0.199778,-0.001580,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000208,0.000181,0.000275,0.000000,0.000000,0.001681,0.198221,-0.001557,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000204,0.000178,0.000273,0.000000,0.000000,0.001654,0.196687,-0.001534,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000201,0.000175,0.000271,0.000000,0.000000,0.001628,0.195176,-0.001511,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000198,0.000173,0.000269,0.000000,0.000000,0.001603,0.193687,-0.001489,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000195,0.000170,0.000268,0.000000,0.000000,0.001579,0.192220,-0.001467,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000192,0.000168,0.000266,0.000000,0.000000,0.001555,0.190775,-0.001445,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000189,0.000165,0.000264,0.000000,0.000000,0.001531,0.189351,-0.001424,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000186,0.000163,0.000263,0.000000,0.000000,0.001508,0.187948,-0.001403,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000183,0.000160,0.000261,0.000000,0.000000,0.001485,0.186566,-0.001382,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000180,0.000158,0.000260,0.000000,0.000000,0.001463,0.185205,-0.001362,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000178,0.000156,0.000259,0.000000,0.000000,0.001441,0.183863,-0.001341,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000175,0.000153,0.000257,0.000124,0.000124,0.001420,0.182419,-0.001444,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000172,0.000150,0.000256,0.000372,0.000372,0.001398,0.180752,-0.001667,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000169,0.000147,0.000255,0.000521,0.000521,0.001376,0.178964,-0.001789,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000167,0.000144,0.000253,0.000612,0.000612,0.001353,0.177111,-0.001852,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000164,0.000141,0.000252,0.000677,0.000677,0.001330,0.175222,-0.001889,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000161,0.000138,0.000250,0.000616,0.000616,0.001307,0.173421,-0.001801,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000158,0.000135,0.000249,0.000540,0.000540,0.001284,0.171721,-0.001700,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000155,0.000132,0.000247,0.000499,0.000499,0.001261,0.170087,-0.001634,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000152,0.000129,0.000246,0.000437,0.000437,0.001238,0.168539,-0.001549,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000149,0.000127,0.000244,0.000326,0.000326,0.001215,0.167123,-0.001416,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000146,0.000124,0.000243,0.000191,0.000191,0.001193,0.165861,-0.001262,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000144,0.000122,0.000242,0.000056,0.000056,0.001171,0.164750,-0.001111,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000141,0.000121,0.000240,0.000000,0.000000,0.001151,0.163711,-0.001039,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000139,0.000119,0.000239,0.000000,0.000000,0.001131,0.162687,-0.001024,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000136,0.000117,0.000238,0.000000,0.000000,0.001112,0.161679,-0.001009,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000134,0.000115,0.000237,0.000000,0.000000,0.001093,0.160685,-0.000994,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000132,0.000114,0.000237,0.000000,0.000000,0.001075,0.159706,-0.000979,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000130,0.000112,0.000236,0.000000,0.000000,0.001057,0.158742,-0.000964,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000127,0.000110,0.000235,0.000000,0.000000,0.001040,0.157791,-0.000950,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000125,0.000109,0.000234,0.000000,0.000000,0.001023,0.156855,-0.000936,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000123,0.000107,0.000234,0.000000,0.000000,0.001007,0.155933,-0.000922,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000121,0.000105,0.000233,0.000000,0.000000,0.000991,0.155024,-0.000909,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000119,0.000104,0.000233,0.000000,0.000000,0.000976,0.154129,-0.000895,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000118,0.000102,0.000232,0.000000,0.000000,0.000961,0.153247,-0.000882,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000116,0.000101,0.000232,0.000136,0.000136,0.000946,0.152244,-0.001003,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000114,0.000099,0.000231,0.000374,0.000374,0.000930,0.151022,-0.001222,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000112,0.000096,0.000230,0.000521,0.000521,0.000915,0.149673,-0.001349,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000110,0.000094,0.000230,0.000617,0.000617,0.000898,0.148248,-0.001424,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000108,0.000091,0.000229,0.000597,0.000597,0.000882,0.146865,-0.001384,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000106,0.000089,0.000229,0.000542,0.000542,0.000865,0.145618,-0.001247,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000104,0.000087,0.000228,0.000483,0.000483,0.000849,0.144448,-0.001170,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000064,0.000000,0.000000,0.000000,0.000125,0.000102,0.000085,0.000227,0.000456,0.000456,0.000832,0.143323,-0.001125,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000121,0.000000,0.000000,0.000000,0.000127,0.000100,0.000083,0.000226,0.000376,0.000376,0.000816,0.142349,-0.000973,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000128,0.000098,0.000082,0.000226,0.000294,0.000294,0.000800,0.141539,-0.000811,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000121,0.000000,0.000000,0.000000,0.000130,0.000096,0.000081,0.000225,0.000177,0.000177,0.000785,0.140788,-0.000751,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000552,0.000011,0.000020,0.000011,0.000131,0.000094,0.000080,0.000236,0.000063,0.000063,0.000771,0.140565,-0.000222,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000924,0.000042,0.000068,0.000042,0.000132,0.000093,0.000081,0.000267,0.000000,0.000000,0.000759,0.140728,0.000163,1.000000,0.000034 +123,2022-08-06 03:00:00,0.000762,0.000046,0.000046,0.000046,0.000134,0.000091,0.000081,0.000271,0.000000,0.000000,0.000748,0.140749,0.000021,1.000000,0.000034 +124,2022-08-06 04:00:00,0.000697,0.000047,0.000039,0.000047,0.000135,0.000090,0.000081,0.000272,0.000000,0.000000,0.000739,0.140712,-0.000036,1.000000,0.000027 +125,2022-08-06 05:00:00,0.000694,0.000040,0.000039,0.000040,0.000136,0.000089,0.000080,0.000266,0.000000,0.000000,0.000730,0.140675,-0.000038,1.000000,0.000025 +126,2022-08-06 06:00:00,0.000702,0.000039,0.000040,0.000039,0.000138,0.000088,0.000080,0.000265,0.000000,0.000000,0.000722,0.140644,-0.000030,1.000000,0.000026 +127,2022-08-06 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000139,0.000087,0.000079,0.000244,0.000000,0.000000,0.000715,0.139962,-0.000683,1.000000,0.000008 +128,2022-08-06 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000140,0.000086,0.000078,0.000234,0.000000,0.000000,0.000706,0.139289,-0.000673,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000085,0.000077,0.000227,0.000000,0.000000,0.000698,0.138627,-0.000663,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000084,0.000076,0.000227,0.000000,0.000000,0.000690,0.137974,-0.000653,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000083,0.000075,0.000227,0.000000,0.000000,0.000681,0.137331,-0.000643,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000082,0.000074,0.000228,0.000000,0.000000,0.000673,0.136697,-0.000634,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000081,0.000072,0.000228,0.000000,0.000000,0.000664,0.136073,-0.000624,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000080,0.000071,0.000228,0.000120,0.000120,0.000656,0.135340,-0.000733,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000079,0.000070,0.000228,0.000358,0.000358,0.000646,0.134382,-0.000957,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000078,0.000068,0.000228,0.000502,0.000502,0.000637,0.133298,-0.001084,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000076,0.000066,0.000228,0.000592,0.000592,0.000626,0.132141,-0.001157,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000075,0.000064,0.000228,0.000658,0.000658,0.000615,0.130935,-0.001205,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000073,0.000062,0.000228,0.000601,0.000601,0.000603,0.129804,-0.001131,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000072,0.000060,0.000228,0.000536,0.000536,0.000591,0.128754,-0.001050,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000070,0.000058,0.000227,0.000508,0.000508,0.000578,0.127747,-0.001007,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000069,0.000056,0.000227,0.000433,0.000433,0.000566,0.126828,-0.000919,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000067,0.000055,0.000227,0.000324,0.000324,0.000553,0.126031,-0.000797,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000066,0.000054,0.000227,0.000185,0.000185,0.000541,0.125382,-0.000649,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000064,0.000053,0.000227,0.000046,0.000046,0.000530,0.124879,-0.000503,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000063,0.000052,0.000226,0.000000,0.000000,0.000519,0.124430,-0.000450,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000062,0.000051,0.000226,0.000000,0.000000,0.000508,0.123987,-0.000443,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000061,0.000051,0.000226,0.000000,0.000000,0.000498,0.123550,-0.000436,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000059,0.000050,0.000226,0.000000,0.000000,0.000489,0.123120,-0.000430,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000058,0.000049,0.000227,0.000000,0.000000,0.000480,0.122697,-0.000424,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000057,0.000048,0.000227,0.000000,0.000000,0.000471,0.122280,-0.000417,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000056,0.000048,0.000227,0.000000,0.000000,0.000462,0.121868,-0.000411,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000055,0.000047,0.000227,0.000000,0.000000,0.000454,0.121463,-0.000405,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000054,0.000046,0.000227,0.000000,0.000000,0.000446,0.121064,-0.000399,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000053,0.000046,0.000228,0.000000,0.000000,0.000439,0.120671,-0.000393,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000052,0.000045,0.000228,0.000000,0.000000,0.000431,0.120284,-0.000387,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000052,0.000044,0.000228,0.000000,0.000000,0.000424,0.119902,-0.000382,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000051,0.000043,0.000228,0.000115,0.000115,0.000417,0.119413,-0.000489,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000050,0.000042,0.000229,0.000354,0.000354,0.000409,0.118695,-0.000718,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000049,0.000041,0.000229,0.000502,0.000502,0.000401,0.117843,-0.000852,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000048,0.000039,0.000229,0.000599,0.000599,0.000393,0.116907,-0.000936,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000047,0.000037,0.000229,0.000649,0.000649,0.000384,0.115937,-0.000971,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000045,0.000036,0.000229,0.000588,0.000588,0.000374,0.115040,-0.000897,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000044,0.000034,0.000229,0.000520,0.000520,0.000364,0.114224,-0.000816,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000033,0.000229,0.000510,0.000510,0.000354,0.113429,-0.000794,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000042,0.000032,0.000229,0.000439,0.000439,0.000344,0.112717,-0.000712,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000041,0.000031,0.000229,0.000324,0.000324,0.000334,0.112127,-0.000589,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000030,0.000229,0.000159,0.000159,0.000325,0.111710,-0.000417,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000038,0.000030,0.000229,0.000016,0.000016,0.000316,0.111439,-0.000271,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000029,0.000229,0.000000,0.000000,0.000308,0.111188,-0.000251,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000029,0.000229,0.000000,0.000000,0.000300,0.110941,-0.000247,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000028,0.000229,0.000000,0.000000,0.000293,0.110698,-0.000243,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000035,0.000028,0.000229,0.000000,0.000000,0.000286,0.110458,-0.000240,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000027,0.000230,0.000000,0.000000,0.000280,0.110222,-0.000236,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000027,0.000230,0.000000,0.000000,0.000274,0.109989,-0.000233,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000027,0.000230,0.000000,0.000000,0.000268,0.109759,-0.000229,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000026,0.000231,0.000000,0.000000,0.000262,0.109533,-0.000226,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000026,0.000231,0.000000,0.000000,0.000257,0.109311,-0.000223,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000025,0.000232,0.000000,0.000000,0.000252,0.109091,-0.000219,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000025,0.000232,0.000000,0.000000,0.000247,0.108875,-0.000216,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000025,0.000233,0.000000,0.000000,0.000242,0.108662,-0.000213,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000099,0.000099,0.000238,0.108354,-0.000308,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000023,0.000233,0.000343,0.000343,0.000233,0.107811,-0.000543,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000022,0.000234,0.000493,0.000493,0.000227,0.107128,-0.000683,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000027,0.000021,0.000234,0.000585,0.000585,0.000221,0.106364,-0.000763,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000019,0.000234,0.000652,0.000652,0.000214,0.105546,-0.000818,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000018,0.000234,0.000580,0.000580,0.000207,0.104811,-0.000735,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000017,0.000234,0.000520,0.000520,0.000200,0.104146,-0.000665,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000016,0.000235,0.000501,0.000501,0.000192,0.103509,-0.000636,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000015,0.000235,0.000433,0.000433,0.000185,0.102949,-0.000561,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000014,0.000235,0.000322,0.000322,0.000177,0.102506,-0.000443,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000013,0.000235,0.000181,0.000181,0.000170,0.102208,-0.000297,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000013,0.000235,0.000034,0.000034,0.000164,0.102061,-0.000148,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000019,0.000013,0.000235,0.000000,0.000000,0.000158,0.101948,-0.000112,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000018,0.000013,0.000235,0.000000,0.000000,0.000152,0.101838,-0.000111,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000013,0.000236,0.000000,0.000000,0.000147,0.101729,-0.000109,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000236,0.000000,0.000000,0.000142,0.101622,-0.000107,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000012,0.000236,0.000000,0.000000,0.000138,0.101516,-0.000106,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000012,0.000237,0.000000,0.000000,0.000134,0.101412,-0.000104,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000016,0.000012,0.000237,0.000000,0.000000,0.000130,0.101309,-0.000103,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000012,0.000238,0.000000,0.000000,0.000126,0.101208,-0.000101,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000012,0.000238,0.000000,0.000000,0.000123,0.101109,-0.000100,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000239,0.000000,0.000000,0.000120,0.101010,-0.000098,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000011,0.000239,0.000000,0.000000,0.000117,0.100914,-0.000097,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000011,0.000240,0.000000,0.000000,0.000114,0.100818,-0.000095,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000011,0.000240,0.000109,0.000109,0.000111,0.100617,-0.000201,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620793.csv b/test/channel_loss/channel_forcing/et/cat-2620793.csv new file mode 100644 index 000000000..9928ccbcb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620793.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001457,0.000264,0.001457,0.000164,0.000164,0.010404,0.425782,-0.004788,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001292,0.000261,0.001292,0.000047,0.000047,0.009372,0.420987,-0.004795,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001154,0.000257,0.001154,0.000000,0.000000,0.008476,0.416302,-0.004685,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001035,0.000254,0.001035,0.000000,0.000000,0.007694,0.411680,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000934,0.000250,0.000934,0.000000,0.000000,0.007011,0.407121,-0.004560,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000847,0.000247,0.000847,0.000000,0.000000,0.006411,0.402622,-0.004499,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000771,0.000244,0.000772,0.000000,0.000000,0.005883,0.398183,-0.004439,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000706,0.000240,0.000706,0.000000,0.000000,0.005418,0.393804,-0.004379,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000648,0.000237,0.000649,0.000000,0.000000,0.005007,0.389484,-0.004320,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000598,0.000234,0.000599,0.000000,0.000000,0.004643,0.385221,-0.004263,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000554,0.000231,0.000556,0.000000,0.000000,0.004320,0.381016,-0.004205,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000515,0.000228,0.000517,0.000000,0.000000,0.004033,0.376866,-0.004149,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000481,0.000225,0.000483,0.000000,0.000000,0.003777,0.372773,-0.004094,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000450,0.000222,0.000453,0.000000,0.000000,0.003548,0.368734,-0.004039,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000423,0.000219,0.000426,0.000131,0.000131,0.003344,0.364620,-0.004114,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000399,0.000215,0.000403,0.000364,0.000364,0.003161,0.360332,-0.004289,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000377,0.000212,0.000382,0.000506,0.000506,0.002996,0.355961,-0.004371,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000358,0.000209,0.000363,0.000584,0.000584,0.002847,0.351571,-0.004389,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000340,0.000206,0.000346,0.000508,0.000508,0.002713,0.347316,-0.004256,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000324,0.000203,0.000331,0.000457,0.000457,0.002591,0.343479,-0.003837,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000310,0.000200,0.000317,0.000411,0.000411,0.002481,0.339676,-0.003802,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000331,0.000000,0.000000,0.000000,0.000008,0.000297,0.000197,0.000305,0.000352,0.000352,0.002381,0.336060,-0.003616,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000286,0.000195,0.000294,0.000314,0.000314,0.002291,0.332453,-0.003607,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000275,0.000192,0.000284,0.000237,0.000237,0.002208,0.328970,-0.003483,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000253,0.000001,0.000003,0.000001,0.000010,0.000265,0.000190,0.000276,0.000151,0.000151,0.002132,0.325616,-0.003354,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000632,0.000041,0.000072,0.000041,0.000011,0.000256,0.000187,0.000307,0.000064,0.000064,0.002063,0.322697,-0.002919,1.000000,0.000033 +26,2022-08-02 02:00:00,0.000948,0.000121,0.000185,0.000121,0.000011,0.000248,0.000185,0.000380,0.000000,0.000000,0.002000,0.320082,-0.002616,1.000000,0.000098 +27,2022-08-02 03:00:00,0.000946,0.000162,0.000184,0.000162,0.000012,0.000241,0.000184,0.000415,0.000000,0.000000,0.001943,0.317500,-0.002581,1.000000,0.000120 +28,2022-08-02 04:00:00,0.000974,0.000189,0.000193,0.000189,0.000013,0.000234,0.000182,0.000437,0.000000,0.000000,0.001890,0.314972,-0.002528,1.000000,0.000124 +29,2022-08-02 05:00:00,0.000864,0.000170,0.000155,0.000170,0.000014,0.000228,0.000180,0.000412,0.000000,0.000000,0.001842,0.312407,-0.002565,1.000000,0.000108 +30,2022-08-02 06:00:00,0.000893,0.000168,0.000164,0.000168,0.000015,0.000223,0.000178,0.000405,0.000000,0.000000,0.001797,0.309897,-0.002511,1.000000,0.000105 +31,2022-08-02 07:00:00,0.000000,0.000072,0.000000,0.000072,0.000016,0.000217,0.000175,0.000305,0.000000,0.000000,0.001755,0.306700,-0.003196,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000212,0.000173,0.000262,0.000000,0.000000,0.001716,0.303547,-0.003154,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000208,0.000171,0.000225,0.000000,0.000000,0.001679,0.300435,-0.003111,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000203,0.000169,0.000222,0.000000,0.000000,0.001645,0.297366,-0.003070,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000199,0.000166,0.000219,0.000000,0.000000,0.001612,0.294337,-0.003029,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000195,0.000164,0.000216,0.000000,0.000000,0.001581,0.291349,-0.002988,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000022,0.000191,0.000162,0.000215,0.000000,0.000000,0.001551,0.288498,-0.002852,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000001,0.000000,0.000001,0.000023,0.000188,0.000160,0.000211,0.000116,0.000116,0.001523,0.285572,-0.002926,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000184,0.000157,0.000209,0.000319,0.000319,0.001496,0.282485,-0.003086,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000025,0.000181,0.000155,0.000206,0.000440,0.000440,0.001470,0.279321,-0.003165,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000178,0.000153,0.000204,0.000517,0.000517,0.001445,0.276123,-0.003198,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000323,0.000000,0.000000,0.000000,0.000027,0.000175,0.000150,0.000202,0.000573,0.000573,0.001420,0.273132,-0.002991,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000172,0.000148,0.000200,0.000509,0.000509,0.001396,0.269926,-0.003206,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000169,0.000146,0.000199,0.000466,0.000466,0.001373,0.266805,-0.003121,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000166,0.000143,0.000197,0.000479,0.000479,0.001350,0.263713,-0.003092,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000163,0.000141,0.000195,0.000413,0.000413,0.001328,0.260728,-0.002985,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000161,0.000139,0.000194,0.000305,0.000305,0.001307,0.257889,-0.002839,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000158,0.000137,0.000193,0.000173,0.000173,0.001286,0.255219,-0.002670,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000156,0.000135,0.000191,0.000032,0.000032,0.001265,0.252723,-0.002496,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000153,0.000133,0.000190,0.000000,0.000000,0.001246,0.250292,-0.002430,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000151,0.000132,0.000189,0.000000,0.000000,0.001227,0.247894,-0.002398,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000148,0.000130,0.000188,0.000000,0.000000,0.001208,0.245529,-0.002366,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000146,0.000128,0.000187,0.000000,0.000000,0.001190,0.243194,-0.002334,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000144,0.000126,0.000186,0.000000,0.000000,0.001173,0.240892,-0.002303,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000142,0.000125,0.000185,0.000000,0.000000,0.001156,0.238620,-0.002272,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000140,0.000123,0.000185,0.000000,0.000000,0.001139,0.236378,-0.002242,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000138,0.000121,0.000184,0.000000,0.000000,0.001123,0.234166,-0.002212,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000136,0.000120,0.000183,0.000000,0.000000,0.001107,0.231985,-0.002182,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000134,0.000118,0.000183,0.000000,0.000000,0.001091,0.229832,-0.002153,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000132,0.000117,0.000182,0.000000,0.000000,0.001076,0.227708,-0.002124,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000130,0.000115,0.000182,0.000000,0.000000,0.001061,0.225613,-0.002095,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000128,0.000113,0.000181,0.000125,0.000125,0.001046,0.223422,-0.002191,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000126,0.000112,0.000181,0.000364,0.000364,0.001031,0.221024,-0.002397,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000125,0.000110,0.000180,0.000504,0.000504,0.001017,0.218521,-0.002503,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000123,0.000108,0.000180,0.000592,0.000592,0.001002,0.215965,-0.002556,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000121,0.000106,0.000179,0.000579,0.000579,0.000987,0.213455,-0.002510,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000119,0.000104,0.000179,0.000522,0.000522,0.000972,0.211035,-0.002420,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000884,0.000019,0.000034,0.000019,0.000061,0.000117,0.000103,0.000197,0.000467,0.000467,0.000958,0.209541,-0.001494,1.000000,0.000015 +69,2022-08-03 21:00:00,0.000189,0.000009,0.000000,0.000009,0.000063,0.000116,0.000101,0.000187,0.000466,0.000466,0.000944,0.207417,-0.002125,1.000000,0.000007 +70,2022-08-03 22:00:00,0.000000,0.000007,0.000000,0.000007,0.000064,0.000114,0.000100,0.000185,0.000402,0.000402,0.000930,0.205197,-0.002220,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000112,0.000098,0.000178,0.000296,0.000296,0.000916,0.203111,-0.002086,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000110,0.000097,0.000178,0.000178,0.000178,0.000903,0.201170,-0.001941,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000109,0.000095,0.000178,0.000045,0.000045,0.000889,0.199385,-0.001785,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000107,0.000094,0.000177,0.000000,0.000000,0.000876,0.197669,-0.001716,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000106,0.000093,0.000177,0.000000,0.000000,0.000864,0.195976,-0.001693,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000104,0.000092,0.000177,0.000000,0.000000,0.000851,0.194306,-0.001670,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000103,0.000090,0.000177,0.000000,0.000000,0.000839,0.192658,-0.001648,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000101,0.000089,0.000177,0.000000,0.000000,0.000827,0.191032,-0.001626,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000100,0.000088,0.000177,0.000000,0.000000,0.000816,0.189428,-0.001604,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000098,0.000087,0.000178,0.000000,0.000000,0.000804,0.187845,-0.001583,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000097,0.000086,0.000178,0.000000,0.000000,0.000793,0.186284,-0.001561,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000096,0.000085,0.000178,0.000000,0.000000,0.000782,0.184743,-0.001540,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000094,0.000083,0.000178,0.000000,0.000000,0.000772,0.183224,-0.001520,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000093,0.000082,0.000178,0.000000,0.000000,0.000761,0.181724,-0.001499,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000092,0.000081,0.000178,0.000000,0.000000,0.000751,0.180245,-0.001479,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000090,0.000080,0.000179,0.000124,0.000124,0.000740,0.178663,-0.001582,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000089,0.000079,0.000179,0.000363,0.000363,0.000730,0.176866,-0.001797,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000088,0.000077,0.000179,0.000505,0.000505,0.000719,0.174953,-0.001913,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000086,0.000076,0.000179,0.000593,0.000593,0.000709,0.172980,-0.001974,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000085,0.000074,0.000180,0.000655,0.000655,0.000698,0.170971,-0.002009,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000084,0.000073,0.000180,0.000593,0.000593,0.000687,0.169050,-0.001921,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000082,0.000072,0.000180,0.000523,0.000523,0.000676,0.167225,-0.001825,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000081,0.000070,0.000180,0.000492,0.000492,0.000665,0.165455,-0.001770,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000080,0.000069,0.000180,0.000432,0.000432,0.000654,0.163767,-0.001687,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000078,0.000068,0.000181,0.000318,0.000318,0.000644,0.162214,-0.001553,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000077,0.000067,0.000181,0.000186,0.000186,0.000633,0.160813,-0.001401,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000076,0.000066,0.000181,0.000053,0.000053,0.000623,0.159562,-0.001252,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000075,0.000065,0.000182,0.000000,0.000000,0.000613,0.158379,-0.001182,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000074,0.000064,0.000182,0.000000,0.000000,0.000604,0.157213,-0.001167,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000072,0.000063,0.000182,0.000000,0.000000,0.000595,0.156061,-0.001151,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000071,0.000062,0.000183,0.000000,0.000000,0.000586,0.154926,-0.001136,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000070,0.000062,0.000183,0.000000,0.000000,0.000577,0.153805,-0.001120,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000069,0.000061,0.000184,0.000000,0.000000,0.000568,0.152700,-0.001105,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000068,0.000060,0.000184,0.000000,0.000000,0.000560,0.151610,-0.001091,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000067,0.000059,0.000185,0.000000,0.000000,0.000552,0.150534,-0.001076,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000066,0.000058,0.000185,0.000000,0.000000,0.000544,0.149472,-0.001062,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000065,0.000058,0.000186,0.000000,0.000000,0.000536,0.148425,-0.001047,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000064,0.000057,0.000187,0.000000,0.000000,0.000529,0.147391,-0.001033,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000063,0.000056,0.000187,0.000000,0.000000,0.000521,0.146372,-0.001019,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000063,0.000055,0.000188,0.000133,0.000133,0.000514,0.145235,-0.001137,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000062,0.000054,0.000188,0.000362,0.000362,0.000506,0.143888,-0.001347,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000061,0.000053,0.000189,0.000504,0.000504,0.000499,0.142418,-0.001470,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000060,0.000052,0.000190,0.000599,0.000599,0.000491,0.140874,-0.001544,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000059,0.000051,0.000190,0.000576,0.000576,0.000483,0.139374,-0.001500,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000058,0.000050,0.000191,0.000521,0.000521,0.000475,0.138010,-0.001364,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000057,0.000049,0.000191,0.000468,0.000468,0.000467,0.136716,-0.001294,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000056,0.000048,0.000192,0.000450,0.000450,0.000459,0.135458,-0.001258,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000069,0.000000,0.000000,0.000000,0.000137,0.000055,0.000047,0.000192,0.000372,0.000372,0.000451,0.134300,-0.001159,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000187,0.000000,0.000000,0.000000,0.000139,0.000054,0.000046,0.000193,0.000286,0.000286,0.000443,0.133358,-0.000942,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000069,0.000000,0.000000,0.000000,0.000141,0.000053,0.000046,0.000194,0.000172,0.000172,0.000436,0.132425,-0.000934,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000483,0.000017,0.000031,0.000017,0.000142,0.000052,0.000045,0.000211,0.000060,0.000060,0.000429,0.131992,-0.000433,1.000000,0.000014 +122,2022-08-06 02:00:00,0.000849,0.000072,0.000118,0.000072,0.000144,0.000051,0.000045,0.000267,0.000000,0.000000,0.000423,0.131900,-0.000092,1.000000,0.000059 +123,2022-08-06 03:00:00,0.000649,0.000075,0.000071,0.000075,0.000145,0.000051,0.000045,0.000271,0.000000,0.000000,0.000417,0.131659,-0.000241,1.000000,0.000056 +124,2022-08-06 04:00:00,0.000600,0.000075,0.000061,0.000075,0.000147,0.000050,0.000045,0.000272,0.000000,0.000000,0.000412,0.131381,-0.000277,1.000000,0.000042 +125,2022-08-06 05:00:00,0.000601,0.000063,0.000061,0.000063,0.000148,0.000049,0.000045,0.000261,0.000000,0.000000,0.000407,0.131109,-0.000272,1.000000,0.000040 +126,2022-08-06 06:00:00,0.000627,0.000064,0.000067,0.000064,0.000150,0.000049,0.000044,0.000263,0.000000,0.000000,0.000403,0.130861,-0.000248,1.000000,0.000042 +127,2022-08-06 07:00:00,0.000000,0.000029,0.000000,0.000029,0.000151,0.000048,0.000044,0.000228,0.000000,0.000000,0.000398,0.130063,-0.000798,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000152,0.000048,0.000043,0.000214,0.000000,0.000000,0.000394,0.129276,-0.000787,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000047,0.000043,0.000201,0.000000,0.000000,0.000389,0.128499,-0.000777,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000047,0.000042,0.000202,0.000000,0.000000,0.000384,0.127732,-0.000766,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000046,0.000042,0.000203,0.000000,0.000000,0.000380,0.126976,-0.000756,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000046,0.000041,0.000204,0.000000,0.000000,0.000375,0.126230,-0.000746,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000045,0.000040,0.000205,0.000000,0.000000,0.000371,0.125494,-0.000736,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000044,0.000040,0.000206,0.000118,0.000118,0.000366,0.124652,-0.000843,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000044,0.000039,0.000207,0.000347,0.000347,0.000361,0.123595,-0.001057,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000043,0.000038,0.000207,0.000483,0.000483,0.000356,0.122417,-0.001177,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000043,0.000037,0.000208,0.000570,0.000570,0.000351,0.121170,-0.001247,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000042,0.000036,0.000209,0.000632,0.000632,0.000345,0.119878,-0.001292,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000041,0.000035,0.000210,0.000576,0.000576,0.000339,0.118659,-0.001219,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000040,0.000034,0.000210,0.000517,0.000517,0.000333,0.117515,-0.001144,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000040,0.000034,0.000211,0.000496,0.000496,0.000327,0.116406,-0.001108,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000039,0.000033,0.000212,0.000423,0.000423,0.000321,0.115385,-0.001021,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000038,0.000032,0.000212,0.000313,0.000313,0.000315,0.114485,-0.000900,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000213,0.000180,0.000180,0.000309,0.113729,-0.000757,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000037,0.000031,0.000214,0.000044,0.000044,0.000303,0.113117,-0.000612,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000036,0.000031,0.000215,0.000000,0.000000,0.000298,0.112557,-0.000560,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000030,0.000215,0.000000,0.000000,0.000293,0.112004,-0.000553,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000035,0.000030,0.000216,0.000000,0.000000,0.000288,0.111459,-0.000545,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000030,0.000217,0.000000,0.000000,0.000283,0.110920,-0.000538,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000029,0.000218,0.000000,0.000000,0.000279,0.110390,-0.000531,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000033,0.000029,0.000219,0.000000,0.000000,0.000274,0.109866,-0.000524,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000028,0.000220,0.000000,0.000000,0.000270,0.109349,-0.000517,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000028,0.000220,0.000000,0.000000,0.000266,0.108839,-0.000510,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000028,0.000221,0.000000,0.000000,0.000261,0.108336,-0.000503,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000031,0.000027,0.000222,0.000000,0.000000,0.000257,0.107840,-0.000496,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000027,0.000223,0.000000,0.000000,0.000254,0.107350,-0.000490,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000027,0.000224,0.000000,0.000000,0.000250,0.106867,-0.000483,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000026,0.000225,0.000112,0.000112,0.000246,0.106280,-0.000587,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000025,0.000226,0.000341,0.000341,0.000242,0.105475,-0.000805,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000025,0.000227,0.000483,0.000483,0.000238,0.104541,-0.000934,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000024,0.000227,0.000577,0.000577,0.000234,0.103526,-0.001014,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000023,0.000228,0.000622,0.000622,0.000229,0.102481,-0.001045,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000023,0.000229,0.000562,0.000562,0.000225,0.101508,-0.000973,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000022,0.000230,0.000502,0.000502,0.000220,0.100608,-0.000900,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000500,0.000500,0.000215,0.099722,-0.000886,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000231,0.000430,0.000430,0.000210,0.098916,-0.000805,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000020,0.000232,0.000314,0.000314,0.000205,0.098237,-0.000680,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000232,0.000153,0.000153,0.000201,0.097725,-0.000512,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000019,0.000233,0.000016,0.000016,0.000196,0.097355,-0.000370,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000192,0.097006,-0.000349,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000188,0.096661,-0.000344,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000000,0.000000,0.000185,0.096321,-0.000340,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000018,0.000236,0.000000,0.000000,0.000181,0.095986,-0.000335,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000018,0.000237,0.000000,0.000000,0.000178,0.095655,-0.000331,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000175,0.095329,-0.000326,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000171,0.095007,-0.000322,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000240,0.000000,0.000000,0.000168,0.094689,-0.000318,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000000,0.000000,0.000166,0.094376,-0.000313,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000241,0.000000,0.000000,0.000163,0.094066,-0.000309,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000017,0.000242,0.000000,0.000000,0.000160,0.093761,-0.000305,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000017,0.000243,0.000000,0.000000,0.000158,0.093460,-0.000301,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000016,0.000244,0.000097,0.000000,0.000155,0.093163,-0.000297,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000016,0.000245,0.000332,0.000000,0.000153,0.092870,-0.000293,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000016,0.000246,0.000476,0.000000,0.000150,0.092581,-0.000289,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000016,0.000247,0.000565,0.000000,0.000148,0.092296,-0.000285,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000015,0.000248,0.000625,0.000000,0.000146,0.092015,-0.000281,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000015,0.000249,0.000557,0.000000,0.000144,0.091737,-0.000278,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000249,0.000503,0.000000,0.000142,0.091463,-0.000274,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000015,0.000250,0.000492,0.000000,0.000140,0.091193,-0.000270,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000251,0.000424,0.000000,0.000138,0.090926,-0.000267,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000014,0.000252,0.000312,0.000000,0.000136,0.090663,-0.000263,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000014,0.000253,0.000175,0.000000,0.000134,0.090404,-0.000260,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000014,0.000254,0.000031,0.000000,0.000132,0.090148,-0.000256,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000000,0.000000,0.000130,0.089895,-0.000253,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000000,0.000000,0.000128,0.089646,-0.000249,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000014,0.000257,0.000000,0.000000,0.000126,0.089400,-0.000246,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000013,0.000257,0.000000,0.000000,0.000125,0.089157,-0.000243,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000015,0.000013,0.000258,0.000000,0.000000,0.000123,0.088918,-0.000239,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000259,0.000000,0.000000,0.000121,0.088682,-0.000236,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000013,0.000260,0.000000,0.000000,0.000119,0.088449,-0.000233,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000013,0.000261,0.000000,0.000000,0.000118,0.088219,-0.000230,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000014,0.000012,0.000262,0.000000,0.000000,0.000116,0.087992,-0.000227,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000012,0.000263,0.000000,0.000000,0.000115,0.087768,-0.000224,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000012,0.000263,0.000000,0.000000,0.000113,0.087548,-0.000221,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000012,0.000264,0.000000,0.000000,0.000112,0.087330,-0.000218,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000012,0.000265,0.000108,0.000000,0.000110,0.087115,-0.000215,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620794.csv b/test/channel_loss/channel_forcing/et/cat-2620794.csv new file mode 100644 index 000000000..d69373197 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620794.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001501,0.000582,0.001501,0.000161,0.000161,0.010678,0.420215,-0.005145,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001373,0.000574,0.001373,0.000046,0.000046,0.009879,0.415071,-0.005144,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001263,0.000566,0.001263,0.000000,0.000000,0.009182,0.410045,-0.005025,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001168,0.000558,0.001168,0.000000,0.000000,0.008571,0.405092,-0.004953,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001086,0.000550,0.001087,0.000000,0.000000,0.008034,0.400209,-0.004882,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001015,0.000542,0.001016,0.000000,0.000000,0.007561,0.395397,-0.004812,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000953,0.000534,0.000954,0.000000,0.000000,0.007141,0.390654,-0.004743,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000899,0.000526,0.000900,0.000000,0.000000,0.006769,0.385978,-0.004675,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000851,0.000519,0.000852,0.000000,0.000000,0.006437,0.381370,-0.004608,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000808,0.000511,0.000809,0.000000,0.000000,0.006140,0.376827,-0.004542,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000770,0.000504,0.000772,0.000000,0.000000,0.005874,0.372350,-0.004477,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000736,0.000497,0.000738,0.000000,0.000000,0.005635,0.367937,-0.004413,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000706,0.000490,0.000708,0.000000,0.000000,0.005419,0.363587,-0.004350,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000678,0.000483,0.000681,0.000000,0.000000,0.005223,0.359299,-0.004288,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000654,0.000475,0.000657,0.000129,0.000129,0.005045,0.354946,-0.004354,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000631,0.000468,0.000635,0.000360,0.000360,0.004882,0.350426,-0.004519,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000610,0.000461,0.000615,0.000503,0.000503,0.004732,0.345832,-0.004595,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000591,0.000453,0.000596,0.000582,0.000582,0.004594,0.341225,-0.004607,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000574,0.000446,0.000580,0.000503,0.000503,0.004466,0.336762,-0.004463,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000263,0.000000,0.000000,0.000000,0.000006,0.000558,0.000439,0.000564,0.000455,0.000455,0.004347,0.332670,-0.004093,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000207,0.000000,0.000000,0.000000,0.000007,0.000543,0.000432,0.000550,0.000409,0.000409,0.004237,0.328626,-0.004044,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000383,0.000000,0.000000,0.000000,0.000008,0.000529,0.000426,0.000536,0.000349,0.000349,0.004134,0.324872,-0.003753,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000198,0.000000,0.000000,0.000000,0.000008,0.000516,0.000420,0.000524,0.000309,0.000309,0.004039,0.321030,-0.003842,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000504,0.000414,0.000513,0.000236,0.000236,0.003949,0.317369,-0.003661,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000207,0.000000,0.000000,0.000000,0.000010,0.000492,0.000408,0.000502,0.000151,0.000151,0.003865,0.313798,-0.003571,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000641,0.000020,0.000037,0.000020,0.000011,0.000482,0.000403,0.000513,0.000064,0.000064,0.003786,0.310757,-0.003042,1.000000,0.000017 +26,2022-08-02 02:00:00,0.001033,0.000071,0.000112,0.000071,0.000011,0.000472,0.000399,0.000554,0.000000,0.000000,0.003713,0.308134,-0.002623,1.000000,0.000058 +27,2022-08-02 03:00:00,0.000968,0.000090,0.000099,0.000090,0.000012,0.000463,0.000395,0.000565,0.000000,0.000000,0.003644,0.305498,-0.002636,1.000000,0.000067 +28,2022-08-02 04:00:00,0.001063,0.000111,0.000117,0.000111,0.000013,0.000454,0.000390,0.000579,0.000000,0.000000,0.003580,0.302975,-0.002523,1.000000,0.000072 +29,2022-08-02 05:00:00,0.000868,0.000093,0.000079,0.000093,0.000014,0.000446,0.000386,0.000553,0.000000,0.000000,0.003520,0.300333,-0.002642,1.000000,0.000059 +30,2022-08-02 06:00:00,0.000821,0.000082,0.000071,0.000082,0.000015,0.000439,0.000382,0.000536,0.000000,0.000000,0.003463,0.297691,-0.002642,1.000000,0.000048 +31,2022-08-02 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000016,0.000431,0.000376,0.000481,0.000000,0.000000,0.003408,0.294348,-0.003343,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000017,0.000424,0.000371,0.000455,0.000000,0.000000,0.003355,0.291053,-0.003295,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000418,0.000366,0.000435,0.000000,0.000000,0.003303,0.287804,-0.003248,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000411,0.000360,0.000430,0.000000,0.000000,0.003252,0.284603,-0.003202,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000404,0.000355,0.000424,0.000000,0.000000,0.003203,0.281447,-0.003156,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000398,0.000350,0.000419,0.000000,0.000000,0.003155,0.278337,-0.003111,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000022,0.000392,0.000345,0.000414,0.000000,0.000000,0.003108,0.275368,-0.002968,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000386,0.000340,0.000409,0.000115,0.000115,0.003063,0.272330,-0.003038,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000380,0.000335,0.000404,0.000317,0.000317,0.003018,0.269137,-0.003193,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000025,0.000374,0.000330,0.000399,0.000438,0.000438,0.002973,0.265869,-0.003267,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000368,0.000324,0.000395,0.000515,0.000515,0.002929,0.262573,-0.003296,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000416,0.000000,0.000000,0.000000,0.000027,0.000363,0.000319,0.000390,0.000575,0.000575,0.002886,0.259576,-0.002997,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000043,0.000000,0.000000,0.000000,0.000028,0.000357,0.000314,0.000385,0.000514,0.000514,0.002843,0.256315,-0.003261,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000352,0.000309,0.000381,0.000472,0.000472,0.002800,0.253100,-0.003215,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000346,0.000304,0.000377,0.000482,0.000482,0.002758,0.249920,-0.003180,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000341,0.000299,0.000372,0.000413,0.000413,0.002716,0.246854,-0.003066,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000335,0.000294,0.000368,0.000305,0.000305,0.002675,0.243939,-0.002915,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000330,0.000289,0.000364,0.000170,0.000170,0.002634,0.241198,-0.002740,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000325,0.000285,0.000360,0.000031,0.000031,0.002594,0.238634,-0.002564,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000320,0.000281,0.000357,0.000000,0.000000,0.002556,0.236137,-0.002497,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000315,0.000277,0.000353,0.000000,0.000000,0.002518,0.233676,-0.002461,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000310,0.000273,0.000349,0.000000,0.000000,0.002481,0.231250,-0.002426,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000305,0.000269,0.000346,0.000000,0.000000,0.002445,0.228859,-0.002391,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000301,0.000265,0.000343,0.000000,0.000000,0.002409,0.226502,-0.002357,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000296,0.000261,0.000340,0.000000,0.000000,0.002374,0.224179,-0.002323,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000292,0.000258,0.000336,0.000000,0.000000,0.002340,0.221889,-0.002290,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000288,0.000254,0.000333,0.000000,0.000000,0.002307,0.219632,-0.002257,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000283,0.000250,0.000331,0.000000,0.000000,0.002274,0.217407,-0.002225,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000279,0.000247,0.000328,0.000000,0.000000,0.002241,0.215215,-0.002193,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000275,0.000243,0.000325,0.000000,0.000000,0.002209,0.213053,-0.002161,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000271,0.000240,0.000322,0.000000,0.000000,0.002178,0.210923,-0.002130,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000267,0.000236,0.000320,0.000124,0.000124,0.002147,0.208701,-0.002222,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000263,0.000232,0.000317,0.000363,0.000363,0.002116,0.206275,-0.002426,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000259,0.000228,0.000315,0.000504,0.000504,0.002085,0.203746,-0.002530,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000255,0.000224,0.000312,0.000587,0.000587,0.002054,0.201170,-0.002575,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000251,0.000220,0.000309,0.000575,0.000575,0.002022,0.198644,-0.002526,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000247,0.000216,0.000307,0.000517,0.000517,0.001991,0.196210,-0.002434,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001382,0.000041,0.000075,0.000041,0.000061,0.000243,0.000214,0.000345,0.000467,0.000467,0.001961,0.195150,-0.001060,1.000000,0.000034 +69,2022-08-03 21:00:00,0.000193,0.000019,0.000000,0.000019,0.000062,0.000240,0.000210,0.000321,0.000460,0.000460,0.001932,0.193013,-0.002137,1.000000,0.000015 +70,2022-08-03 22:00:00,0.000000,0.000015,0.000000,0.000015,0.000064,0.000236,0.000207,0.000315,0.000398,0.000398,0.001903,0.190777,-0.002236,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000043,0.000000,0.000000,0.000000,0.000065,0.000232,0.000203,0.000298,0.000293,0.000293,0.001874,0.188719,-0.002058,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000229,0.000200,0.000295,0.000176,0.000176,0.001846,0.186764,-0.001955,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000225,0.000197,0.000293,0.000043,0.000043,0.001818,0.184968,-0.001796,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000222,0.000194,0.000291,0.000000,0.000000,0.001791,0.183240,-0.001728,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000218,0.000192,0.000289,0.000000,0.000000,0.001764,0.181537,-0.001703,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000215,0.000189,0.000288,0.000000,0.000000,0.001738,0.179858,-0.001679,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000212,0.000186,0.000286,0.000000,0.000000,0.001713,0.178203,-0.001655,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000209,0.000184,0.000284,0.000000,0.000000,0.001688,0.176572,-0.001631,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000206,0.000181,0.000282,0.000000,0.000000,0.001663,0.174964,-0.001608,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000202,0.000178,0.000281,0.000000,0.000000,0.001639,0.173380,-0.001585,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000199,0.000176,0.000279,0.000000,0.000000,0.001615,0.171818,-0.001562,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000197,0.000173,0.000278,0.000000,0.000000,0.001592,0.170279,-0.001539,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000194,0.000171,0.000276,0.000000,0.000000,0.001569,0.168761,-0.001517,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000191,0.000168,0.000275,0.000000,0.000000,0.001547,0.167265,-0.001496,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000188,0.000166,0.000274,0.000000,0.000000,0.001525,0.165791,-0.001474,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000185,0.000163,0.000273,0.000122,0.000122,0.001503,0.164218,-0.001573,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000183,0.000160,0.000271,0.000361,0.000361,0.001481,0.162431,-0.001787,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000180,0.000157,0.000270,0.000506,0.000506,0.001458,0.160527,-0.001904,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000177,0.000154,0.000269,0.000594,0.000594,0.001435,0.158564,-0.001963,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000174,0.000151,0.000267,0.000648,0.000648,0.001412,0.156576,-0.001988,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000171,0.000148,0.000266,0.000579,0.000579,0.001389,0.154685,-0.001891,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000168,0.000145,0.000264,0.000516,0.000516,0.001366,0.152882,-0.001803,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000165,0.000142,0.000263,0.000486,0.000486,0.001343,0.151134,-0.001748,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000162,0.000139,0.000262,0.000426,0.000426,0.001319,0.149471,-0.001663,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000159,0.000137,0.000260,0.000311,0.000311,0.001297,0.147945,-0.001526,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000157,0.000134,0.000259,0.000182,0.000182,0.001275,0.146568,-0.001377,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000154,0.000132,0.000258,0.000049,0.000049,0.001253,0.145342,-0.001226,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000151,0.000131,0.000257,0.000000,0.000000,0.001232,0.144182,-0.001160,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000149,0.000129,0.000256,0.000000,0.000000,0.001212,0.143039,-0.001143,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000146,0.000127,0.000255,0.000000,0.000000,0.001193,0.141912,-0.001127,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000144,0.000125,0.000254,0.000000,0.000000,0.001174,0.140801,-0.001111,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000142,0.000123,0.000253,0.000000,0.000000,0.001155,0.139706,-0.001095,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000140,0.000121,0.000252,0.000000,0.000000,0.001137,0.138627,-0.001079,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000137,0.000120,0.000252,0.000000,0.000000,0.001119,0.137563,-0.001064,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000135,0.000118,0.000251,0.000000,0.000000,0.001102,0.136514,-0.001049,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000133,0.000116,0.000250,0.000000,0.000000,0.001086,0.135480,-0.001034,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000131,0.000115,0.000250,0.000000,0.000000,0.001069,0.134462,-0.001019,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000129,0.000113,0.000249,0.000000,0.000000,0.001053,0.133458,-0.001004,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000127,0.000111,0.000249,0.000000,0.000000,0.001037,0.132468,-0.000990,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000125,0.000110,0.000248,0.000132,0.000132,0.001022,0.131362,-0.001106,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000123,0.000107,0.000248,0.000362,0.000362,0.001006,0.130046,-0.001316,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000121,0.000105,0.000247,0.000505,0.000505,0.000990,0.128607,-0.001439,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000119,0.000103,0.000247,0.000599,0.000599,0.000973,0.127097,-0.001510,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000117,0.000100,0.000246,0.000579,0.000579,0.000957,0.125627,-0.001469,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000115,0.000098,0.000246,0.000519,0.000519,0.000940,0.124300,-0.001327,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000113,0.000096,0.000245,0.000474,0.000474,0.000923,0.123037,-0.001263,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000111,0.000094,0.000244,0.000451,0.000451,0.000906,0.121815,-0.001222,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000116,0.000000,0.000000,0.000000,0.000135,0.000109,0.000092,0.000244,0.000375,0.000375,0.000889,0.120737,-0.001077,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000136,0.000107,0.000091,0.000243,0.000286,0.000286,0.000873,0.119835,-0.000903,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000104,0.000000,0.000000,0.000000,0.000138,0.000105,0.000089,0.000243,0.000172,0.000172,0.000858,0.118972,-0.000862,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000546,0.000011,0.000020,0.000011,0.000139,0.000103,0.000089,0.000253,0.000059,0.000059,0.000843,0.118650,-0.000322,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000985,0.000048,0.000078,0.000048,0.000141,0.000102,0.000089,0.000290,0.000000,0.000000,0.000831,0.118767,0.000117,1.000000,0.000039 +123,2022-08-06 03:00:00,0.000715,0.000046,0.000042,0.000046,0.000142,0.000100,0.000089,0.000289,0.000000,0.000000,0.000820,0.118652,-0.000115,1.000000,0.000034 +124,2022-08-06 04:00:00,0.000627,0.000044,0.000032,0.000044,0.000144,0.000099,0.000088,0.000286,0.000000,0.000000,0.000809,0.118460,-0.000191,1.000000,0.000023 +125,2022-08-06 05:00:00,0.000641,0.000035,0.000034,0.000035,0.000145,0.000098,0.000088,0.000278,0.000000,0.000000,0.000800,0.118284,-0.000176,1.000000,0.000022 +126,2022-08-06 06:00:00,0.000641,0.000033,0.000034,0.000033,0.000147,0.000097,0.000088,0.000277,0.000000,0.000000,0.000791,0.118110,-0.000174,1.000000,0.000022 +127,2022-08-06 07:00:00,0.000000,0.000015,0.000000,0.000015,0.000148,0.000096,0.000087,0.000259,0.000000,0.000000,0.000782,0.117340,-0.000770,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000149,0.000094,0.000085,0.000251,0.000000,0.000000,0.000773,0.116582,-0.000759,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000093,0.000084,0.000244,0.000000,0.000000,0.000764,0.115834,-0.000748,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000092,0.000083,0.000244,0.000000,0.000000,0.000755,0.115096,-0.000737,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000091,0.000082,0.000245,0.000000,0.000000,0.000746,0.114370,-0.000727,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000090,0.000081,0.000245,0.000000,0.000000,0.000736,0.113653,-0.000716,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000089,0.000079,0.000245,0.000000,0.000000,0.000727,0.112947,-0.000706,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000088,0.000078,0.000245,0.000116,0.000116,0.000718,0.112137,-0.000810,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000086,0.000076,0.000246,0.000345,0.000345,0.000708,0.111113,-0.001024,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000085,0.000075,0.000246,0.000481,0.000481,0.000697,0.109969,-0.001144,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000084,0.000073,0.000246,0.000569,0.000569,0.000686,0.108755,-0.001214,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000082,0.000071,0.000246,0.000631,0.000631,0.000675,0.107498,-0.001258,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000081,0.000069,0.000246,0.000575,0.000575,0.000662,0.106313,-0.001184,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000079,0.000067,0.000245,0.000518,0.000518,0.000650,0.105202,-0.001111,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000078,0.000065,0.000245,0.000497,0.000497,0.000637,0.104127,-0.001075,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000076,0.000063,0.000245,0.000422,0.000422,0.000625,0.103141,-0.000986,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000075,0.000062,0.000245,0.000312,0.000312,0.000612,0.102279,-0.000862,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000073,0.000061,0.000245,0.000178,0.000178,0.000600,0.101561,-0.000719,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000072,0.000060,0.000245,0.000042,0.000042,0.000588,0.100987,-0.000574,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000070,0.000059,0.000245,0.000000,0.000000,0.000577,0.100462,-0.000524,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000069,0.000058,0.000245,0.000000,0.000000,0.000566,0.099945,-0.000517,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000068,0.000057,0.000245,0.000000,0.000000,0.000556,0.099436,-0.000510,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000066,0.000057,0.000245,0.000000,0.000000,0.000546,0.098933,-0.000502,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000065,0.000056,0.000245,0.000000,0.000000,0.000536,0.098438,-0.000495,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000064,0.000055,0.000245,0.000000,0.000000,0.000527,0.097951,-0.000488,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000063,0.000054,0.000245,0.000000,0.000000,0.000518,0.097470,-0.000481,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000062,0.000053,0.000246,0.000000,0.000000,0.000510,0.096996,-0.000474,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000061,0.000053,0.000246,0.000000,0.000000,0.000501,0.096528,-0.000467,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000060,0.000052,0.000246,0.000000,0.000000,0.000493,0.096068,-0.000461,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000059,0.000051,0.000247,0.000000,0.000000,0.000485,0.095614,-0.000454,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000058,0.000050,0.000247,0.000000,0.000000,0.000478,0.095166,-0.000447,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000057,0.000049,0.000247,0.000111,0.000111,0.000470,0.094616,-0.000550,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000056,0.000048,0.000247,0.000340,0.000340,0.000462,0.093847,-0.000769,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000055,0.000047,0.000248,0.000481,0.000481,0.000454,0.092951,-0.000896,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000054,0.000045,0.000248,0.000572,0.000572,0.000445,0.091978,-0.000973,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000053,0.000044,0.000248,0.000619,0.000619,0.000435,0.090973,-0.001005,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000052,0.000042,0.000248,0.000560,0.000560,0.000426,0.090040,-0.000933,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000050,0.000041,0.000248,0.000503,0.000503,0.000416,0.089177,-0.000863,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000049,0.000039,0.000248,0.000498,0.000498,0.000405,0.088330,-0.000847,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000048,0.000038,0.000248,0.000426,0.000426,0.000395,0.087567,-0.000763,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000047,0.000037,0.000248,0.000312,0.000312,0.000385,0.086928,-0.000639,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000046,0.000036,0.000248,0.000150,0.000150,0.000376,0.086457,-0.000471,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000045,0.000036,0.000248,0.000015,0.000015,0.000367,0.086127,-0.000331,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000044,0.000035,0.000248,0.000000,0.000000,0.000358,0.085815,-0.000312,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000043,0.000035,0.000249,0.000000,0.000000,0.000351,0.085508,-0.000307,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000042,0.000034,0.000249,0.000000,0.000000,0.000343,0.085205,-0.000303,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000041,0.000034,0.000249,0.000000,0.000000,0.000336,0.084907,-0.000298,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000040,0.000033,0.000250,0.000000,0.000000,0.000329,0.084613,-0.000294,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000039,0.000033,0.000250,0.000000,0.000000,0.000322,0.084323,-0.000290,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000038,0.000032,0.000250,0.000000,0.000000,0.000316,0.084038,-0.000286,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000038,0.000032,0.000251,0.000000,0.000000,0.000310,0.083756,-0.000282,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000037,0.000031,0.000251,0.000000,0.000000,0.000305,0.083479,-0.000278,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000036,0.000031,0.000252,0.000000,0.000000,0.000299,0.083205,-0.000274,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000036,0.000030,0.000252,0.000000,0.000000,0.000294,0.082935,-0.000270,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000035,0.000030,0.000253,0.000000,0.000000,0.000289,0.082670,-0.000266,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000034,0.000029,0.000253,0.000095,0.000095,0.000284,0.082314,-0.000356,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000034,0.000028,0.000254,0.000331,0.000331,0.000278,0.081731,-0.000583,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000033,0.000027,0.000254,0.000475,0.000475,0.000272,0.081014,-0.000717,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000032,0.000026,0.000254,0.000561,0.000561,0.000266,0.080223,-0.000792,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000031,0.000025,0.000255,0.000619,0.000619,0.000259,0.079385,-0.000837,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000031,0.000023,0.000255,0.000548,0.000548,0.000252,0.078631,-0.000755,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000030,0.000023,0.000255,0.000495,0.000000,0.000245,0.078427,-0.000204,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000029,0.000023,0.000256,0.000488,0.000000,0.000239,0.078225,-0.000201,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000028,0.000022,0.000256,0.000420,0.000000,0.000233,0.078027,-0.000198,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000028,0.000022,0.000256,0.000310,0.000000,0.000227,0.077832,-0.000195,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000027,0.000022,0.000257,0.000172,0.000000,0.000222,0.077639,-0.000193,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000026,0.000021,0.000257,0.000030,0.000000,0.000217,0.077449,-0.000190,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000026,0.000021,0.000258,0.000000,0.000000,0.000213,0.077262,-0.000187,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000025,0.000021,0.000258,0.000000,0.000000,0.000208,0.077078,-0.000184,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000025,0.000020,0.000259,0.000000,0.000000,0.000204,0.076896,-0.000182,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000024,0.000020,0.000259,0.000000,0.000000,0.000200,0.076716,-0.000179,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000024,0.000020,0.000260,0.000000,0.000000,0.000196,0.076540,-0.000177,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000023,0.000020,0.000260,0.000000,0.000000,0.000192,0.076366,-0.000174,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000023,0.000019,0.000261,0.000000,0.000000,0.000189,0.076194,-0.000172,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000022,0.000019,0.000261,0.000000,0.000000,0.000185,0.076025,-0.000169,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000022,0.000019,0.000262,0.000000,0.000000,0.000182,0.075858,-0.000167,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000022,0.000018,0.000263,0.000000,0.000000,0.000179,0.075694,-0.000164,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000021,0.000018,0.000263,0.000000,0.000000,0.000176,0.075532,-0.000162,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000021,0.000018,0.000264,0.000000,0.000000,0.000173,0.075372,-0.000160,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000021,0.000018,0.000264,0.000107,0.000000,0.000170,0.075215,-0.000157,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620795.csv b/test/channel_loss/channel_forcing/et/cat-2620795.csv new file mode 100644 index 000000000..f22a5b285 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620795.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000241,0.000000,0.000000,0.000000,0.000000,0.001551,0.000936,0.001551,0.000169,0.000169,0.010981,0.419279,-0.005449,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001463,0.000921,0.001463,0.000050,0.000050,0.010440,0.413794,-0.005485,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001386,0.000907,0.001386,0.000000,0.000000,0.009961,0.408443,-0.005351,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001318,0.000893,0.001318,0.000000,0.000000,0.009536,0.403174,-0.005269,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001259,0.000879,0.001259,0.000000,0.000000,0.009156,0.397985,-0.005188,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001206,0.000866,0.001206,0.000000,0.000000,0.008816,0.392877,-0.005109,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001159,0.000853,0.001159,0.000000,0.000000,0.008510,0.387846,-0.005030,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001117,0.000839,0.001117,0.000000,0.000000,0.008233,0.382894,-0.004953,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001078,0.000827,0.001080,0.000000,0.000000,0.007981,0.378017,-0.004877,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001044,0.000814,0.001045,0.000000,0.000000,0.007751,0.373215,-0.004802,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001012,0.000801,0.001014,0.000000,0.000000,0.007540,0.368486,-0.004728,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000983,0.000789,0.000986,0.000000,0.000000,0.007346,0.363831,-0.004656,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000957,0.000777,0.000959,0.000000,0.000000,0.007166,0.359246,-0.004584,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000932,0.000765,0.000935,0.000000,0.000000,0.006998,0.354733,-0.004514,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000909,0.000753,0.000913,0.000131,0.000131,0.006842,0.350159,-0.004573,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000888,0.000740,0.000892,0.000368,0.000368,0.006694,0.345422,-0.004737,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000868,0.000728,0.000872,0.000514,0.000514,0.006554,0.340614,-0.004808,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000848,0.000715,0.000853,0.000595,0.000595,0.006421,0.335801,-0.004814,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000830,0.000703,0.000836,0.000524,0.000524,0.006294,0.331131,-0.004670,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000246,0.000000,0.000000,0.000000,0.000006,0.000813,0.000691,0.000819,0.000475,0.000475,0.006172,0.326823,-0.004308,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000223,0.000000,0.000000,0.000000,0.000007,0.000796,0.000680,0.000803,0.000425,0.000425,0.006057,0.322608,-0.004215,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000317,0.000000,0.000000,0.000000,0.000008,0.000780,0.000670,0.000788,0.000363,0.000363,0.005946,0.318611,-0.003997,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000219,0.000000,0.000000,0.000000,0.000008,0.000765,0.000659,0.000773,0.000320,0.000320,0.005840,0.314621,-0.003990,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000246,0.000000,0.000000,0.000000,0.000009,0.000751,0.000649,0.000760,0.000246,0.000246,0.005738,0.310793,-0.003828,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000223,0.000000,0.000000,0.000000,0.000010,0.000737,0.000639,0.000747,0.000155,0.000155,0.005640,0.307090,-0.003703,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000625,0.000012,0.000022,0.000012,0.000011,0.000724,0.000631,0.000746,0.000068,0.000068,0.005547,0.303904,-0.003186,1.000000,0.000010 +26,2022-08-02 02:00:00,0.000922,0.000037,0.000058,0.000037,0.000011,0.000711,0.000623,0.000760,0.000000,0.000000,0.005459,0.301091,-0.002813,1.000000,0.000030 +27,2022-08-02 03:00:00,0.000949,0.000052,0.000061,0.000052,0.000012,0.000700,0.000616,0.000764,0.000000,0.000000,0.005375,0.298344,-0.002747,1.000000,0.000039 +28,2022-08-02 04:00:00,0.000969,0.000062,0.000063,0.000062,0.000013,0.000688,0.000609,0.000763,0.000000,0.000000,0.005296,0.295657,-0.002687,1.000000,0.000041 +29,2022-08-02 05:00:00,0.000857,0.000055,0.000050,0.000055,0.000014,0.000678,0.000602,0.000747,0.000000,0.000000,0.005219,0.292915,-0.002742,1.000000,0.000035 +30,2022-08-02 06:00:00,0.000851,0.000052,0.000049,0.000052,0.000015,0.000668,0.000594,0.000734,0.000000,0.000000,0.005146,0.290209,-0.002706,1.000000,0.000032 +31,2022-08-02 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000016,0.000658,0.000585,0.000695,0.000000,0.000000,0.005074,0.286756,-0.003454,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000017,0.000648,0.000576,0.000674,0.000000,0.000000,0.005003,0.283355,-0.003401,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000638,0.000568,0.000655,0.000000,0.000000,0.004932,0.280006,-0.003349,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000628,0.000559,0.000647,0.000000,0.000000,0.004863,0.276709,-0.003297,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000619,0.000550,0.000638,0.000000,0.000000,0.004794,0.273463,-0.003247,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000610,0.000542,0.000630,0.000000,0.000000,0.004726,0.270266,-0.003197,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000021,0.000600,0.000534,0.000622,0.000000,0.000000,0.004660,0.267216,-0.003050,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000591,0.000525,0.000614,0.000117,0.000117,0.004594,0.264098,-0.003118,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000582,0.000517,0.000606,0.000329,0.000329,0.004528,0.260820,-0.003278,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000025,0.000573,0.000508,0.000598,0.000454,0.000454,0.004463,0.257469,-0.003351,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000564,0.000499,0.000590,0.000536,0.000536,0.004397,0.254088,-0.003381,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000284,0.000000,0.000000,0.000000,0.000027,0.000556,0.000491,0.000582,0.000602,0.000602,0.004332,0.250876,-0.003212,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000028,0.000547,0.000482,0.000575,0.000541,0.000541,0.004267,0.247502,-0.003374,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000538,0.000473,0.000567,0.000491,0.000491,0.004202,0.244221,-0.003281,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000529,0.000464,0.000559,0.000497,0.000497,0.004137,0.240984,-0.003237,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000520,0.000456,0.000552,0.000422,0.000422,0.004073,0.237870,-0.003114,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000512,0.000448,0.000544,0.000316,0.000316,0.004009,0.234909,-0.002961,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000503,0.000441,0.000537,0.000177,0.000177,0.003947,0.232129,-0.002779,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000495,0.000434,0.000530,0.000034,0.000034,0.003886,0.229534,-0.002595,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000487,0.000427,0.000523,0.000000,0.000000,0.003826,0.227012,-0.002522,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000479,0.000421,0.000517,0.000000,0.000000,0.003767,0.224528,-0.002483,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000472,0.000414,0.000510,0.000000,0.000000,0.003710,0.222083,-0.002445,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000464,0.000408,0.000504,0.000000,0.000000,0.003654,0.219675,-0.002408,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000457,0.000402,0.000498,0.000000,0.000000,0.003599,0.217304,-0.002371,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000450,0.000396,0.000492,0.000000,0.000000,0.003545,0.214970,-0.002334,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000443,0.000390,0.000486,0.000000,0.000000,0.003492,0.212671,-0.002299,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000436,0.000384,0.000481,0.000000,0.000000,0.003440,0.210408,-0.002263,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000429,0.000378,0.000475,0.000000,0.000000,0.003389,0.208180,-0.002229,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000422,0.000372,0.000470,0.000000,0.000000,0.003338,0.205985,-0.002194,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000416,0.000366,0.000465,0.000000,0.000000,0.003289,0.203825,-0.002161,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000409,0.000361,0.000459,0.000000,0.000000,0.003240,0.201697,-0.002127,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000403,0.000355,0.000454,0.000126,0.000126,0.003192,0.199479,-0.002219,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000397,0.000348,0.000449,0.000369,0.000369,0.003144,0.197055,-0.002424,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000390,0.000342,0.000444,0.000512,0.000512,0.003095,0.194527,-0.002528,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000384,0.000335,0.000439,0.000605,0.000605,0.003046,0.191947,-0.002580,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000377,0.000328,0.000434,0.000595,0.000595,0.002997,0.189416,-0.002531,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000371,0.000322,0.000429,0.000540,0.000540,0.002948,0.186978,-0.002438,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000787,0.000003,0.000006,0.000003,0.000060,0.000365,0.000317,0.000427,0.000480,0.000480,0.002901,0.185407,-0.001571,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000169,0.000001,0.000000,0.000001,0.000061,0.000359,0.000312,0.000421,0.000474,0.000474,0.002854,0.183262,-0.002145,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000062,0.000352,0.000306,0.000416,0.000405,0.000405,0.002807,0.181052,-0.002210,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000008,0.000000,0.000000,0.000000,0.000064,0.000346,0.000301,0.000410,0.000301,0.000301,0.002761,0.178986,-0.002066,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000341,0.000295,0.000406,0.000180,0.000180,0.002716,0.177063,-0.001923,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000335,0.000291,0.000401,0.000047,0.000047,0.002672,0.175300,-0.001763,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000329,0.000286,0.000397,0.000000,0.000000,0.002629,0.173610,-0.001689,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000324,0.000282,0.000393,0.000000,0.000000,0.002587,0.171947,-0.001664,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000319,0.000278,0.000389,0.000000,0.000000,0.002546,0.170309,-0.001638,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000313,0.000273,0.000386,0.000000,0.000000,0.002506,0.168696,-0.001613,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000308,0.000269,0.000382,0.000000,0.000000,0.002467,0.167108,-0.001588,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000303,0.000265,0.000378,0.000000,0.000000,0.002429,0.165544,-0.001564,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000299,0.000261,0.000375,0.000000,0.000000,0.002391,0.164005,-0.001540,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000294,0.000257,0.000372,0.000000,0.000000,0.002354,0.162489,-0.001516,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000289,0.000253,0.000368,0.000000,0.000000,0.002318,0.160996,-0.001493,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000285,0.000249,0.000365,0.000000,0.000000,0.002283,0.159526,-0.001470,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000280,0.000245,0.000362,0.000000,0.000000,0.002248,0.158079,-0.001447,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000276,0.000242,0.000359,0.000000,0.000000,0.002214,0.156654,-0.001425,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000271,0.000237,0.000356,0.000121,0.000121,0.002180,0.155131,-0.001522,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000267,0.000233,0.000353,0.000364,0.000364,0.002146,0.153393,-0.001738,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000263,0.000228,0.000350,0.000513,0.000513,0.002111,0.151534,-0.001859,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000258,0.000223,0.000347,0.000605,0.000605,0.002076,0.149614,-0.001920,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000253,0.000218,0.000344,0.000668,0.000668,0.002041,0.147662,-0.001952,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000249,0.000213,0.000341,0.000603,0.000603,0.002004,0.145803,-0.001859,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000244,0.000208,0.000338,0.000529,0.000529,0.001968,0.144045,-0.001758,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000240,0.000204,0.000335,0.000494,0.000494,0.001932,0.142349,-0.001696,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000235,0.000199,0.000332,0.000432,0.000432,0.001897,0.140740,-0.001609,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000231,0.000196,0.000329,0.000322,0.000322,0.001862,0.139264,-0.001476,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000226,0.000192,0.000326,0.000188,0.000188,0.001827,0.137943,-0.001321,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000222,0.000189,0.000323,0.000054,0.000054,0.001794,0.136774,-0.001169,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000218,0.000186,0.000320,0.000000,0.000000,0.001762,0.135676,-0.001098,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000214,0.000183,0.000318,0.000000,0.000000,0.001731,0.134595,-0.001081,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000210,0.000180,0.000315,0.000000,0.000000,0.001701,0.133530,-0.001064,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000207,0.000178,0.000313,0.000000,0.000000,0.001672,0.132482,-0.001048,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000203,0.000175,0.000311,0.000000,0.000000,0.001644,0.131450,-0.001032,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000200,0.000172,0.000309,0.000000,0.000000,0.001617,0.130434,-0.001016,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000196,0.000170,0.000307,0.000000,0.000000,0.001590,0.129433,-0.001001,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000193,0.000167,0.000305,0.000000,0.000000,0.001564,0.128448,-0.000985,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000190,0.000164,0.000303,0.000000,0.000000,0.001538,0.127478,-0.000970,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000187,0.000162,0.000302,0.000000,0.000000,0.001514,0.126523,-0.000955,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000184,0.000159,0.000300,0.000000,0.000000,0.001489,0.125582,-0.000941,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000181,0.000157,0.000298,0.000000,0.000000,0.001466,0.124656,-0.000926,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000178,0.000154,0.000297,0.000134,0.000134,0.001442,0.123612,-0.001044,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000175,0.000151,0.000295,0.000369,0.000369,0.001418,0.122353,-0.001259,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000172,0.000147,0.000294,0.000515,0.000515,0.001394,0.120970,-0.001383,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000168,0.000143,0.000292,0.000613,0.000613,0.001369,0.119511,-0.001458,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000165,0.000140,0.000290,0.000594,0.000594,0.001343,0.118094,-0.001418,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000068,0.000000,0.000000,0.000000,0.000126,0.000162,0.000136,0.000288,0.000538,0.000538,0.001317,0.116819,-0.001274,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000068,0.000000,0.000000,0.000000,0.000128,0.000159,0.000133,0.000286,0.000481,0.000481,0.001292,0.115622,-0.001198,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000080,0.000000,0.000000,0.000000,0.000129,0.000156,0.000130,0.000285,0.000455,0.000455,0.001266,0.114480,-0.001142,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000130,0.000152,0.000127,0.000283,0.000377,0.000377,0.001241,0.113477,-0.001003,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000132,0.000149,0.000125,0.000281,0.000293,0.000293,0.001217,0.112635,-0.000843,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000147,0.000123,0.000280,0.000177,0.000177,0.001193,0.111857,-0.000778,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000564,0.000007,0.000013,0.000007,0.000134,0.000144,0.000123,0.000286,0.000064,0.000064,0.001172,0.111621,-0.000236,1.000000,0.000006 +122,2022-08-06 02:00:00,0.000890,0.000026,0.000041,0.000026,0.000136,0.000142,0.000123,0.000303,0.000000,0.000000,0.001153,0.111745,0.000124,1.000000,0.000021 +123,2022-08-06 03:00:00,0.000818,0.000032,0.000034,0.000032,0.000137,0.000139,0.000123,0.000308,0.000000,0.000000,0.001137,0.111803,0.000058,1.000000,0.000024 +124,2022-08-06 04:00:00,0.000736,0.000032,0.000028,0.000032,0.000139,0.000138,0.000123,0.000308,0.000000,0.000000,0.001122,0.111785,-0.000018,1.000000,0.000019 +125,2022-08-06 05:00:00,0.000754,0.000030,0.000029,0.000030,0.000140,0.000136,0.000123,0.000306,0.000000,0.000000,0.001109,0.111784,-0.000001,1.000000,0.000019 +126,2022-08-06 06:00:00,0.000728,0.000028,0.000027,0.000028,0.000141,0.000135,0.000123,0.000304,0.000000,0.000000,0.001097,0.111760,-0.000025,1.000000,0.000018 +127,2022-08-06 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000143,0.000133,0.000121,0.000288,0.000000,0.000000,0.001085,0.111046,-0.000714,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000144,0.000132,0.000119,0.000281,0.000000,0.000000,0.001073,0.110343,-0.000703,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000130,0.000117,0.000275,0.000000,0.000000,0.001060,0.109651,-0.000692,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000128,0.000115,0.000275,0.000000,0.000000,0.001047,0.108969,-0.000681,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000127,0.000114,0.000275,0.000000,0.000000,0.001034,0.108298,-0.000671,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000125,0.000112,0.000274,0.000000,0.000000,0.001021,0.107638,-0.000661,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000123,0.000110,0.000274,0.000000,0.000000,0.001008,0.106987,-0.000651,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000122,0.000108,0.000274,0.000118,0.000118,0.000994,0.106231,-0.000757,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000120,0.000106,0.000273,0.000351,0.000351,0.000980,0.105257,-0.000974,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000118,0.000103,0.000273,0.000491,0.000491,0.000965,0.104159,-0.001097,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000116,0.000100,0.000272,0.000581,0.000581,0.000948,0.102990,-0.001169,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000114,0.000096,0.000271,0.000650,0.000650,0.000931,0.101771,-0.001219,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000112,0.000093,0.000270,0.000592,0.000592,0.000913,0.100627,-0.001143,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000109,0.000091,0.000269,0.000531,0.000531,0.000894,0.099562,-0.001066,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000107,0.000088,0.000268,0.000505,0.000505,0.000875,0.098538,-0.001024,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000105,0.000085,0.000267,0.000428,0.000428,0.000856,0.097605,-0.000933,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000102,0.000083,0.000266,0.000321,0.000321,0.000837,0.096792,-0.000813,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000100,0.000082,0.000265,0.000184,0.000184,0.000818,0.096128,-0.000665,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000098,0.000080,0.000264,0.000046,0.000046,0.000801,0.095609,-0.000519,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000096,0.000079,0.000263,0.000000,0.000000,0.000784,0.095143,-0.000466,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000094,0.000078,0.000262,0.000000,0.000000,0.000768,0.094684,-0.000459,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000092,0.000077,0.000262,0.000000,0.000000,0.000753,0.094233,-0.000452,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000090,0.000075,0.000261,0.000000,0.000000,0.000738,0.093788,-0.000445,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000088,0.000074,0.000261,0.000000,0.000000,0.000724,0.093350,-0.000438,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000087,0.000073,0.000260,0.000000,0.000000,0.000710,0.092919,-0.000431,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000085,0.000072,0.000260,0.000000,0.000000,0.000697,0.092494,-0.000425,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000083,0.000071,0.000260,0.000000,0.000000,0.000685,0.092076,-0.000418,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000082,0.000070,0.000259,0.000000,0.000000,0.000672,0.091665,-0.000412,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000081,0.000069,0.000259,0.000000,0.000000,0.000661,0.091259,-0.000405,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000079,0.000068,0.000259,0.000000,0.000000,0.000649,0.090860,-0.000399,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000078,0.000067,0.000259,0.000000,0.000000,0.000638,0.090467,-0.000393,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000076,0.000065,0.000258,0.000113,0.000113,0.000627,0.089969,-0.000498,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000075,0.000063,0.000258,0.000349,0.000349,0.000615,0.089246,-0.000723,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000073,0.000061,0.000258,0.000493,0.000493,0.000603,0.088392,-0.000854,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000072,0.000059,0.000257,0.000591,0.000591,0.000590,0.087455,-0.000937,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000070,0.000056,0.000257,0.000641,0.000641,0.000576,0.086482,-0.000972,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000068,0.000054,0.000256,0.000581,0.000581,0.000561,0.085584,-0.000898,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000066,0.000052,0.000256,0.000514,0.000514,0.000546,0.084766,-0.000818,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000065,0.000049,0.000255,0.000510,0.000510,0.000531,0.083965,-0.000801,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000063,0.000048,0.000254,0.000434,0.000434,0.000516,0.083251,-0.000714,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000061,0.000046,0.000253,0.000321,0.000321,0.000501,0.082659,-0.000592,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000059,0.000045,0.000253,0.000156,0.000156,0.000486,0.082238,-0.000420,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000058,0.000044,0.000252,0.000016,0.000016,0.000473,0.081962,-0.000276,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000056,0.000043,0.000252,0.000000,0.000000,0.000461,0.081706,-0.000256,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000055,0.000043,0.000252,0.000000,0.000000,0.000449,0.081453,-0.000252,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000053,0.000042,0.000251,0.000000,0.000000,0.000438,0.081205,-0.000249,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000052,0.000041,0.000251,0.000000,0.000000,0.000427,0.080960,-0.000245,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000051,0.000041,0.000251,0.000000,0.000000,0.000417,0.080719,-0.000241,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000050,0.000040,0.000251,0.000000,0.000000,0.000408,0.080482,-0.000237,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000048,0.000040,0.000251,0.000000,0.000000,0.000399,0.080248,-0.000234,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000047,0.000039,0.000251,0.000000,0.000000,0.000391,0.080018,-0.000230,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000046,0.000038,0.000251,0.000000,0.000000,0.000383,0.079792,-0.000226,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000046,0.000038,0.000251,0.000000,0.000000,0.000375,0.079569,-0.000223,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000045,0.000037,0.000251,0.000000,0.000000,0.000367,0.079349,-0.000220,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000044,0.000037,0.000251,0.000000,0.000000,0.000360,0.079133,-0.000216,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000043,0.000036,0.000252,0.000097,0.000097,0.000353,0.078825,-0.000308,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000042,0.000034,0.000252,0.000335,0.000335,0.000346,0.078286,-0.000538,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000041,0.000033,0.000252,0.000485,0.000485,0.000337,0.077609,-0.000677,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000040,0.000031,0.000252,0.000574,0.000574,0.000328,0.076854,-0.000755,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000039,0.000028,0.000251,0.000641,0.000641,0.000318,0.076046,-0.000809,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000037,0.000028,0.000251,0.000571,0.000000,0.000309,0.075880,-0.000165,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000036,0.000028,0.000251,0.000514,0.000000,0.000300,0.075717,-0.000163,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000035,0.000027,0.000251,0.000494,0.000000,0.000292,0.075557,-0.000160,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000034,0.000027,0.000251,0.000426,0.000000,0.000284,0.075399,-0.000158,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000034,0.000026,0.000251,0.000319,0.000000,0.000277,0.075243,-0.000156,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000033,0.000026,0.000252,0.000180,0.000000,0.000270,0.075090,-0.000153,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000032,0.000026,0.000252,0.000034,0.000000,0.000264,0.074939,-0.000151,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000031,0.000025,0.000252,0.000000,0.000000,0.000258,0.074791,-0.000148,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000031,0.000025,0.000252,0.000000,0.000000,0.000252,0.074645,-0.000146,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000030,0.000024,0.000253,0.000000,0.000000,0.000246,0.074501,-0.000144,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000029,0.000024,0.000253,0.000000,0.000000,0.000241,0.074359,-0.000142,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000029,0.000024,0.000253,0.000000,0.000000,0.000236,0.074219,-0.000140,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000028,0.000023,0.000253,0.000000,0.000000,0.000231,0.074082,-0.000137,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000027,0.000023,0.000254,0.000000,0.000000,0.000227,0.073946,-0.000135,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000027,0.000023,0.000254,0.000000,0.000000,0.000222,0.073813,-0.000133,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000026,0.000022,0.000255,0.000000,0.000000,0.000218,0.073682,-0.000131,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000026,0.000022,0.000255,0.000000,0.000000,0.000214,0.073553,-0.000129,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000025,0.000022,0.000255,0.000000,0.000000,0.000210,0.073426,-0.000127,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000025,0.000021,0.000256,0.000000,0.000000,0.000207,0.073300,-0.000125,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000025,0.000021,0.000256,0.000106,0.000000,0.000203,0.073177,-0.000123,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620796.csv b/test/channel_loss/channel_forcing/et/cat-2620796.csv new file mode 100644 index 000000000..6d4394c12 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620796.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000162,0.000000,0.000000,0.000000,0.000000,0.001501,0.000581,0.001501,0.000172,0.000172,0.010677,0.425682,-0.004887,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001372,0.000573,0.001372,0.000049,0.000049,0.009877,0.420830,-0.004852,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001262,0.000564,0.001262,0.000000,0.000000,0.009179,0.416100,-0.004731,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001167,0.000555,0.001168,0.000000,0.000000,0.008567,0.411440,-0.004659,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001086,0.000547,0.001086,0.000000,0.000000,0.008028,0.406851,-0.004589,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001014,0.000539,0.001015,0.000000,0.000000,0.007553,0.402331,-0.004520,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000952,0.000531,0.000952,0.000000,0.000000,0.007132,0.397878,-0.004452,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000897,0.000523,0.000898,0.000000,0.000000,0.006758,0.393493,-0.004385,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000849,0.000515,0.000850,0.000000,0.000000,0.006424,0.389174,-0.004319,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000806,0.000507,0.000807,0.000000,0.000000,0.006125,0.384919,-0.004254,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000768,0.000500,0.000769,0.000000,0.000000,0.005857,0.380729,-0.004190,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000733,0.000492,0.000735,0.000000,0.000000,0.005616,0.376601,-0.004127,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000703,0.000485,0.000705,0.000000,0.000000,0.005398,0.372536,-0.004065,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000675,0.000477,0.000678,0.000000,0.000000,0.005200,0.368532,-0.004004,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000650,0.000470,0.000653,0.000136,0.000136,0.005020,0.364454,-0.004077,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000627,0.000462,0.000631,0.000384,0.000384,0.004855,0.360193,-0.004261,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000606,0.000454,0.000611,0.000534,0.000534,0.004703,0.355849,-0.004344,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000587,0.000446,0.000592,0.000619,0.000619,0.004562,0.351486,-0.004363,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000569,0.000439,0.000574,0.000532,0.000532,0.004432,0.347275,-0.004211,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000553,0.000432,0.000559,0.000480,0.000480,0.004311,0.343489,-0.003786,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000302,0.000000,0.000000,0.000000,0.000006,0.000537,0.000425,0.000544,0.000425,0.000425,0.004198,0.339800,-0.003689,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000503,0.000001,0.000002,0.000001,0.000007,0.000523,0.000419,0.000532,0.000362,0.000362,0.004094,0.336425,-0.003375,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000396,0.000001,0.000001,0.000001,0.000008,0.000510,0.000413,0.000519,0.000324,0.000324,0.003996,0.333035,-0.003390,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000441,0.000003,0.000004,0.000003,0.000008,0.000498,0.000407,0.000509,0.000246,0.000246,0.003905,0.329813,-0.003222,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000458,0.000007,0.000010,0.000007,0.000009,0.000486,0.000401,0.000502,0.000156,0.000156,0.003820,0.326739,-0.003074,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000981,0.000050,0.000084,0.000050,0.000010,0.000476,0.000397,0.000535,0.000068,0.000068,0.003741,0.324240,-0.002499,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001093,0.000088,0.000118,0.000088,0.000011,0.000466,0.000393,0.000565,0.000000,0.000000,0.003668,0.321922,-0.002318,1.000000,0.000070 +27,2022-08-02 03:00:00,0.000952,0.000096,0.000091,0.000096,0.000011,0.000457,0.000388,0.000565,0.000000,0.000000,0.003599,0.319528,-0.002394,1.000000,0.000064 +28,2022-08-02 04:00:00,0.001074,0.000109,0.000114,0.000109,0.000012,0.000448,0.000384,0.000569,0.000000,0.000000,0.003535,0.317267,-0.002261,1.000000,0.000069 +29,2022-08-02 05:00:00,0.000977,0.000098,0.000094,0.000098,0.000013,0.000440,0.000380,0.000552,0.000000,0.000000,0.003474,0.314964,-0.002304,1.000000,0.000065 +30,2022-08-02 06:00:00,0.000900,0.000091,0.000080,0.000091,0.000014,0.000433,0.000376,0.000537,0.000000,0.000000,0.003417,0.312633,-0.002331,1.000000,0.000055 +31,2022-08-02 07:00:00,0.000000,0.000039,0.000000,0.000039,0.000015,0.000425,0.000370,0.000479,0.000000,0.000000,0.003362,0.309530,-0.003103,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000418,0.000364,0.000450,0.000000,0.000000,0.003308,0.306473,-0.003056,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000411,0.000359,0.000428,0.000000,0.000000,0.003255,0.303463,-0.003010,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000405,0.000353,0.000422,0.000000,0.000000,0.003204,0.300497,-0.002965,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000398,0.000348,0.000416,0.000000,0.000000,0.003155,0.297577,-0.002921,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000392,0.000343,0.000411,0.000000,0.000000,0.003106,0.294700,-0.002877,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000020,0.000385,0.000338,0.000406,0.000000,0.000000,0.003059,0.291964,-0.002736,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000089,0.000000,0.000000,0.000000,0.000021,0.000379,0.000333,0.000401,0.000120,0.000120,0.003012,0.289141,-0.002823,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000022,0.000373,0.000327,0.000396,0.000335,0.000335,0.002966,0.286123,-0.003018,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000367,0.000322,0.000390,0.000465,0.000465,0.002921,0.283023,-0.003100,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000361,0.000316,0.000386,0.000545,0.000545,0.002875,0.279891,-0.003133,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000025,0.000355,0.000311,0.000381,0.000600,0.000600,0.002830,0.276938,-0.002952,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000057,0.000000,0.000000,0.000000,0.000026,0.000350,0.000305,0.000376,0.000532,0.000532,0.002786,0.273904,-0.003034,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000344,0.000300,0.000371,0.000484,0.000484,0.002742,0.270907,-0.002997,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000338,0.000294,0.000367,0.000493,0.000493,0.002698,0.267946,-0.002961,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000333,0.000289,0.000362,0.000427,0.000427,0.002654,0.265094,-0.002852,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000327,0.000284,0.000358,0.000316,0.000316,0.002611,0.262395,-0.002699,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000322,0.000280,0.000353,0.000183,0.000183,0.002569,0.259868,-0.002527,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000316,0.000275,0.000349,0.000036,0.000036,0.002528,0.257523,-0.002345,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000311,0.000271,0.000345,0.000000,0.000000,0.002488,0.255249,-0.002274,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000306,0.000267,0.000341,0.000000,0.000000,0.002449,0.253009,-0.002240,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000301,0.000263,0.000338,0.000000,0.000000,0.002411,0.250802,-0.002206,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000296,0.000259,0.000334,0.000000,0.000000,0.002374,0.248629,-0.002173,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000292,0.000255,0.000330,0.000000,0.000000,0.002338,0.246489,-0.002140,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000287,0.000251,0.000327,0.000000,0.000000,0.002302,0.244381,-0.002108,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000283,0.000248,0.000324,0.000000,0.000000,0.002267,0.242304,-0.002077,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000278,0.000244,0.000321,0.000000,0.000000,0.002233,0.240259,-0.002045,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000274,0.000240,0.000317,0.000000,0.000000,0.002199,0.238244,-0.002015,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000270,0.000237,0.000314,0.000000,0.000000,0.002166,0.236260,-0.001984,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000265,0.000233,0.000312,0.000000,0.000000,0.002134,0.234306,-0.001954,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000261,0.000229,0.000309,0.000000,0.000000,0.002102,0.232381,-0.001925,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000257,0.000226,0.000306,0.000130,0.000130,0.002070,0.230357,-0.002024,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000253,0.000222,0.000303,0.000384,0.000384,0.002039,0.228113,-0.002244,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000249,0.000217,0.000300,0.000532,0.000532,0.002007,0.225756,-0.002356,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000245,0.000213,0.000298,0.000622,0.000622,0.001975,0.223347,-0.002409,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000241,0.000209,0.000295,0.000609,0.000609,0.001943,0.220987,-0.002360,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000237,0.000205,0.000292,0.000545,0.000545,0.001910,0.218725,-0.002261,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000854,0.000007,0.000012,0.000007,0.000056,0.000233,0.000202,0.000296,0.000482,0.000482,0.001880,0.217388,-0.001337,1.000000,0.000006 +69,2022-08-03 21:00:00,0.000265,0.000003,0.000000,0.000003,0.000058,0.000229,0.000199,0.000290,0.000472,0.000472,0.001849,0.215514,-0.001875,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000059,0.000225,0.000195,0.000287,0.000413,0.000413,0.001819,0.213465,-0.002049,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000221,0.000192,0.000282,0.000308,0.000308,0.001789,0.211550,-0.001915,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000218,0.000188,0.000279,0.000189,0.000189,0.001760,0.209781,-0.001769,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000214,0.000185,0.000277,0.000049,0.000049,0.001731,0.208177,-0.001605,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000211,0.000183,0.000275,0.000000,0.000000,0.001703,0.206645,-0.001532,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000207,0.000180,0.000273,0.000000,0.000000,0.001676,0.205136,-0.001509,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000204,0.000177,0.000271,0.000000,0.000000,0.001649,0.203650,-0.001486,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000200,0.000175,0.000269,0.000000,0.000000,0.001623,0.202186,-0.001464,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000197,0.000172,0.000267,0.000000,0.000000,0.001598,0.200744,-0.001442,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000194,0.000169,0.000265,0.000000,0.000000,0.001573,0.199324,-0.001420,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000191,0.000167,0.000263,0.000000,0.000000,0.001549,0.197925,-0.001399,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000188,0.000164,0.000262,0.000000,0.000000,0.001525,0.196547,-0.001378,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000185,0.000162,0.000260,0.000000,0.000000,0.001501,0.195190,-0.001357,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000182,0.000159,0.000259,0.000000,0.000000,0.001479,0.193854,-0.001337,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000179,0.000157,0.000257,0.000000,0.000000,0.001456,0.192537,-0.001316,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000177,0.000155,0.000256,0.000000,0.000000,0.001434,0.191241,-0.001297,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000174,0.000152,0.000254,0.000125,0.000125,0.001412,0.189840,-0.001400,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000171,0.000149,0.000253,0.000379,0.000379,0.001390,0.188211,-0.001630,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000168,0.000146,0.000251,0.000530,0.000530,0.001368,0.186456,-0.001754,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000165,0.000143,0.000250,0.000625,0.000625,0.001345,0.184635,-0.001821,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000163,0.000139,0.000248,0.000685,0.000685,0.001321,0.182782,-0.001853,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000160,0.000136,0.000247,0.000619,0.000619,0.001298,0.181023,-0.001760,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000157,0.000133,0.000245,0.000550,0.000550,0.001274,0.179357,-0.001665,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000154,0.000130,0.000244,0.000509,0.000509,0.001250,0.177757,-0.001600,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000151,0.000127,0.000242,0.000445,0.000445,0.001227,0.176245,-0.001512,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000148,0.000125,0.000240,0.000330,0.000330,0.001204,0.174868,-0.001377,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000145,0.000123,0.000239,0.000197,0.000197,0.001181,0.173643,-0.001225,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000142,0.000121,0.000238,0.000058,0.000058,0.001160,0.172573,-0.001070,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000140,0.000119,0.000236,0.000000,0.000000,0.001139,0.171577,-0.000996,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000137,0.000117,0.000235,0.000000,0.000000,0.001119,0.170595,-0.000981,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000135,0.000115,0.000234,0.000000,0.000000,0.001099,0.169629,-0.000967,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000132,0.000114,0.000233,0.000000,0.000000,0.001080,0.168676,-0.000952,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000130,0.000112,0.000232,0.000000,0.000000,0.001062,0.167739,-0.000938,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000128,0.000110,0.000231,0.000000,0.000000,0.001044,0.166815,-0.000924,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000126,0.000108,0.000231,0.000000,0.000000,0.001027,0.165905,-0.000910,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000124,0.000107,0.000230,0.000000,0.000000,0.001010,0.165009,-0.000896,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000122,0.000105,0.000229,0.000000,0.000000,0.000993,0.164126,-0.000883,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000120,0.000104,0.000229,0.000000,0.000000,0.000977,0.163257,-0.000869,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000118,0.000102,0.000228,0.000000,0.000000,0.000962,0.162401,-0.000856,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000116,0.000101,0.000227,0.000000,0.000000,0.000946,0.161557,-0.000843,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000114,0.000099,0.000227,0.000139,0.000139,0.000931,0.160590,-0.000967,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000112,0.000097,0.000226,0.000382,0.000382,0.000916,0.159398,-0.001192,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000110,0.000094,0.000226,0.000530,0.000530,0.000900,0.158077,-0.001321,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000108,0.000092,0.000225,0.000627,0.000627,0.000884,0.156682,-0.001396,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000106,0.000089,0.000224,0.000605,0.000605,0.000867,0.155328,-0.001353,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000104,0.000087,0.000223,0.000551,0.000551,0.000850,0.154111,-0.001218,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000102,0.000085,0.000223,0.000489,0.000489,0.000833,0.152972,-0.001138,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000122,0.000100,0.000083,0.000222,0.000465,0.000465,0.000816,0.151875,-0.001097,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000098,0.000081,0.000221,0.000386,0.000386,0.000800,0.150872,-0.001003,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000126,0.000000,0.000000,0.000000,0.000125,0.000096,0.000080,0.000221,0.000296,0.000296,0.000784,0.150035,-0.000837,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000094,0.000078,0.000220,0.000179,0.000179,0.000768,0.149264,-0.000772,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000428,0.000006,0.000011,0.000006,0.000128,0.000092,0.000078,0.000225,0.000063,0.000063,0.000754,0.148966,-0.000298,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000733,0.000026,0.000042,0.000026,0.000129,0.000090,0.000078,0.000245,0.000000,0.000000,0.000741,0.149005,0.000039,1.000000,0.000021 +123,2022-08-06 03:00:00,0.000512,0.000024,0.000021,0.000024,0.000130,0.000089,0.000077,0.000243,0.000000,0.000000,0.000729,0.148847,-0.000158,1.000000,0.000018 +124,2022-08-06 04:00:00,0.000522,0.000026,0.000022,0.000026,0.000131,0.000088,0.000077,0.000245,0.000000,0.000000,0.000719,0.148700,-0.000147,1.000000,0.000014 +125,2022-08-06 05:00:00,0.000533,0.000022,0.000023,0.000022,0.000133,0.000087,0.000077,0.000241,0.000000,0.000000,0.000709,0.148566,-0.000135,1.000000,0.000015 +126,2022-08-06 06:00:00,0.000533,0.000023,0.000023,0.000023,0.000134,0.000085,0.000077,0.000242,0.000000,0.000000,0.000700,0.148433,-0.000133,1.000000,0.000015 +127,2022-08-06 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000135,0.000084,0.000075,0.000230,0.000000,0.000000,0.000692,0.147800,-0.000633,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000137,0.000083,0.000074,0.000224,0.000000,0.000000,0.000683,0.147176,-0.000624,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000082,0.000073,0.000220,0.000000,0.000000,0.000674,0.146562,-0.000614,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000081,0.000072,0.000220,0.000000,0.000000,0.000665,0.145956,-0.000605,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000080,0.000071,0.000220,0.000000,0.000000,0.000656,0.145360,-0.000596,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000079,0.000070,0.000221,0.000000,0.000000,0.000647,0.144773,-0.000587,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000078,0.000069,0.000221,0.000000,0.000000,0.000638,0.144195,-0.000578,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000077,0.000068,0.000221,0.000122,0.000122,0.000629,0.143506,-0.000689,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000076,0.000066,0.000221,0.000368,0.000368,0.000620,0.142584,-0.000921,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000074,0.000064,0.000221,0.000516,0.000516,0.000610,0.141531,-0.001054,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000073,0.000062,0.000221,0.000608,0.000608,0.000599,0.140402,-0.001128,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000071,0.000060,0.000221,0.000667,0.000667,0.000587,0.139233,-0.001170,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000058,0.000220,0.000610,0.000610,0.000575,0.138137,-0.001096,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000068,0.000056,0.000220,0.000542,0.000542,0.000563,0.137125,-0.001012,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000067,0.000054,0.000220,0.000513,0.000513,0.000550,0.136157,-0.000968,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000065,0.000053,0.000219,0.000438,0.000438,0.000537,0.135277,-0.000880,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000064,0.000051,0.000219,0.000327,0.000327,0.000525,0.134519,-0.000757,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000062,0.000050,0.000219,0.000187,0.000187,0.000513,0.133911,-0.000608,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000061,0.000049,0.000219,0.000048,0.000048,0.000501,0.133449,-0.000462,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000060,0.000049,0.000218,0.000000,0.000000,0.000490,0.133041,-0.000408,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000058,0.000048,0.000218,0.000000,0.000000,0.000480,0.132640,-0.000402,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000057,0.000047,0.000218,0.000000,0.000000,0.000470,0.132244,-0.000396,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000046,0.000218,0.000000,0.000000,0.000460,0.131854,-0.000390,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000055,0.000046,0.000218,0.000000,0.000000,0.000451,0.131470,-0.000384,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000054,0.000045,0.000219,0.000000,0.000000,0.000442,0.131092,-0.000378,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000053,0.000044,0.000219,0.000000,0.000000,0.000434,0.130719,-0.000372,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000044,0.000219,0.000000,0.000000,0.000426,0.130353,-0.000367,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000219,0.000000,0.000000,0.000418,0.129991,-0.000361,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000219,0.000000,0.000000,0.000411,0.129635,-0.000356,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000042,0.000220,0.000000,0.000000,0.000404,0.129285,-0.000351,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000041,0.000220,0.000000,0.000000,0.000397,0.128940,-0.000345,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000040,0.000220,0.000117,0.000117,0.000390,0.128484,-0.000455,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000039,0.000220,0.000361,0.000361,0.000382,0.127795,-0.000689,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000038,0.000221,0.000513,0.000513,0.000374,0.126967,-0.000829,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000044,0.000036,0.000221,0.000607,0.000607,0.000366,0.126059,-0.000908,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000034,0.000221,0.000652,0.000652,0.000357,0.125120,-0.000939,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000033,0.000221,0.000595,0.000595,0.000347,0.124251,-0.000869,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000031,0.000220,0.000525,0.000525,0.000337,0.123465,-0.000787,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000030,0.000220,0.000513,0.000513,0.000328,0.122702,-0.000763,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000039,0.000029,0.000220,0.000443,0.000443,0.000318,0.122019,-0.000683,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000028,0.000220,0.000324,0.000324,0.000308,0.121464,-0.000555,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000036,0.000027,0.000220,0.000161,0.000161,0.000298,0.121078,-0.000386,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000026,0.000220,0.000019,0.000019,0.000290,0.120837,-0.000241,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000034,0.000026,0.000220,0.000000,0.000000,0.000282,0.120619,-0.000218,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000026,0.000220,0.000000,0.000000,0.000274,0.120404,-0.000215,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000025,0.000220,0.000000,0.000000,0.000267,0.120192,-0.000212,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000032,0.000025,0.000221,0.000000,0.000000,0.000260,0.119984,-0.000209,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000031,0.000024,0.000221,0.000000,0.000000,0.000254,0.119778,-0.000205,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000024,0.000221,0.000000,0.000000,0.000248,0.119576,-0.000202,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000029,0.000024,0.000222,0.000000,0.000000,0.000242,0.119377,-0.000199,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000023,0.000222,0.000000,0.000000,0.000237,0.119180,-0.000196,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000023,0.000222,0.000000,0.000000,0.000232,0.118987,-0.000193,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000028,0.000023,0.000223,0.000000,0.000000,0.000227,0.118797,-0.000190,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000027,0.000022,0.000223,0.000000,0.000000,0.000222,0.118609,-0.000188,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000026,0.000022,0.000224,0.000000,0.000000,0.000218,0.118425,-0.000185,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000022,0.000224,0.000101,0.000101,0.000214,0.118143,-0.000281,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000021,0.000225,0.000349,0.000349,0.000209,0.117621,-0.000522,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000025,0.000019,0.000225,0.000504,0.000504,0.000204,0.116955,-0.000666,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000018,0.000225,0.000599,0.000599,0.000198,0.116206,-0.000749,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000023,0.000017,0.000225,0.000662,0.000662,0.000191,0.115406,-0.000800,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000022,0.000015,0.000225,0.000590,0.000590,0.000184,0.114688,-0.000717,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000014,0.000225,0.000528,0.000528,0.000177,0.114042,-0.000646,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000020,0.000013,0.000225,0.000513,0.000513,0.000169,0.113421,-0.000621,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000012,0.000225,0.000442,0.000442,0.000161,0.112878,-0.000542,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000011,0.000225,0.000323,0.000323,0.000154,0.112461,-0.000417,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000018,0.000011,0.000226,0.000182,0.000182,0.000147,0.112189,-0.000272,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000010,0.000226,0.000033,0.000033,0.000140,0.112069,-0.000121,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000010,0.000226,0.000000,0.000000,0.000134,0.111982,-0.000086,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000010,0.000226,0.000000,0.000000,0.000129,0.111897,-0.000085,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000015,0.000010,0.000226,0.000000,0.000000,0.000124,0.111813,-0.000084,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000014,0.000010,0.000227,0.000000,0.000000,0.000119,0.111731,-0.000082,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000014,0.000010,0.000227,0.000000,0.000000,0.000115,0.111650,-0.000081,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000013,0.000010,0.000227,0.000000,0.000000,0.000111,0.111570,-0.000080,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000009,0.000228,0.000000,0.000000,0.000108,0.111491,-0.000079,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000013,0.000009,0.000228,0.000000,0.000000,0.000104,0.111413,-0.000078,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000009,0.000229,0.000000,0.000000,0.000101,0.111337,-0.000076,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000009,0.000229,0.000000,0.000000,0.000098,0.111261,-0.000075,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000012,0.000009,0.000230,0.000000,0.000000,0.000095,0.111187,-0.000074,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000011,0.000009,0.000230,0.000000,0.000000,0.000093,0.111114,-0.000073,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000011,0.000008,0.000231,0.000110,0.000110,0.000090,0.110934,-0.000180,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620797.csv b/test/channel_loss/channel_forcing/et/cat-2620797.csv new file mode 100644 index 000000000..54cee8b87 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620797.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000209,0.000000,0.000000,0.000000,0.000000,0.001505,0.000607,0.001505,0.000177,0.000177,0.010699,0.425716,-0.004853,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001379,0.000597,0.001379,0.000051,0.000051,0.009917,0.420855,-0.004861,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001271,0.000588,0.001271,0.000000,0.000000,0.009235,0.416119,-0.004737,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001178,0.000579,0.001178,0.000000,0.000000,0.008636,0.411454,-0.004665,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001098,0.000571,0.001098,0.000000,0.000000,0.008109,0.406859,-0.004594,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001028,0.000562,0.001028,0.000000,0.000000,0.007643,0.402335,-0.004525,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000966,0.000553,0.000967,0.000000,0.000000,0.007230,0.397879,-0.004456,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000912,0.000545,0.000913,0.000000,0.000000,0.006863,0.393491,-0.004388,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000865,0.000537,0.000866,0.000000,0.000000,0.006535,0.389169,-0.004322,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000822,0.000529,0.000824,0.000000,0.000000,0.006241,0.384913,-0.004256,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000785,0.000521,0.000786,0.000000,0.000000,0.005977,0.380721,-0.004191,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000751,0.000513,0.000753,0.000000,0.000000,0.005739,0.376594,-0.004128,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000720,0.000505,0.000723,0.000000,0.000000,0.005523,0.372528,-0.004065,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000693,0.000497,0.000696,0.000000,0.000000,0.005327,0.368525,-0.004004,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000668,0.000489,0.000671,0.000136,0.000136,0.005149,0.364448,-0.004077,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000645,0.000481,0.000649,0.000386,0.000386,0.004985,0.360187,-0.004261,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000624,0.000473,0.000629,0.000538,0.000538,0.004834,0.355840,-0.004346,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000605,0.000465,0.000610,0.000625,0.000625,0.004693,0.351474,-0.004366,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000587,0.000457,0.000592,0.000549,0.000549,0.004563,0.347250,-0.004225,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000570,0.000449,0.000576,0.000495,0.000495,0.004441,0.343453,-0.003796,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000253,0.000000,0.000000,0.000000,0.000006,0.000555,0.000442,0.000562,0.000439,0.000439,0.004328,0.339708,-0.003746,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000320,0.000000,0.000000,0.000000,0.000007,0.000541,0.000435,0.000548,0.000374,0.000374,0.004223,0.336149,-0.003559,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000527,0.000429,0.000535,0.000331,0.000331,0.004124,0.332621,-0.003529,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000515,0.000422,0.000523,0.000252,0.000252,0.004031,0.329223,-0.003398,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000253,0.000001,0.000001,0.000001,0.000009,0.000503,0.000416,0.000513,0.000155,0.000155,0.003944,0.325972,-0.003251,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000632,0.000018,0.000032,0.000018,0.000010,0.000492,0.000410,0.000520,0.000067,0.000067,0.003862,0.323199,-0.002773,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000929,0.000054,0.000083,0.000054,0.000011,0.000482,0.000406,0.000546,0.000000,0.000000,0.003786,0.320777,-0.002422,1.000000,0.000044 +27,2022-08-02 03:00:00,0.000941,0.000074,0.000085,0.000074,0.000011,0.000472,0.000401,0.000558,0.000000,0.000000,0.003715,0.318402,-0.002375,1.000000,0.000055 +28,2022-08-02 04:00:00,0.000960,0.000086,0.000088,0.000086,0.000012,0.000463,0.000397,0.000562,0.000000,0.000000,0.003649,0.316079,-0.002323,1.000000,0.000056 +29,2022-08-02 05:00:00,0.000875,0.000079,0.000073,0.000079,0.000013,0.000455,0.000392,0.000547,0.000000,0.000000,0.003586,0.313721,-0.002357,1.000000,0.000051 +30,2022-08-02 06:00:00,0.000896,0.000078,0.000076,0.000078,0.000014,0.000447,0.000388,0.000539,0.000000,0.000000,0.003527,0.311418,-0.002304,1.000000,0.000049 +31,2022-08-02 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000015,0.000440,0.000382,0.000488,0.000000,0.000000,0.003469,0.308342,-0.003076,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000015,0.000432,0.000376,0.000463,0.000000,0.000000,0.003413,0.305312,-0.003030,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000425,0.000371,0.000441,0.000000,0.000000,0.003359,0.302329,-0.002984,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000418,0.000365,0.000435,0.000000,0.000000,0.003306,0.299390,-0.002938,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000411,0.000359,0.000429,0.000000,0.000000,0.003254,0.296497,-0.002894,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000404,0.000354,0.000424,0.000000,0.000000,0.003204,0.293647,-0.002850,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000020,0.000398,0.000349,0.000419,0.000000,0.000000,0.003154,0.290938,-0.002709,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000392,0.000343,0.000413,0.000118,0.000118,0.003106,0.288155,-0.002783,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000385,0.000338,0.000408,0.000338,0.000338,0.003059,0.285197,-0.002958,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000379,0.000332,0.000402,0.000468,0.000468,0.003011,0.282156,-0.003041,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000024,0.000373,0.000326,0.000397,0.000553,0.000553,0.002964,0.279078,-0.003078,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000385,0.000000,0.000000,0.000000,0.000025,0.000367,0.000321,0.000392,0.000616,0.000616,0.002918,0.276265,-0.002814,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000361,0.000315,0.000387,0.000555,0.000555,0.002872,0.273176,-0.003089,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000355,0.000309,0.000382,0.000499,0.000499,0.002826,0.270188,-0.002987,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000349,0.000303,0.000377,0.000503,0.000503,0.002781,0.267243,-0.002945,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000343,0.000298,0.000372,0.000433,0.000433,0.002735,0.264410,-0.002833,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000337,0.000293,0.000368,0.000323,0.000323,0.002691,0.261729,-0.002681,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000332,0.000288,0.000363,0.000185,0.000185,0.002647,0.259224,-0.002505,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000326,0.000284,0.000359,0.000037,0.000037,0.002605,0.256904,-0.002320,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000321,0.000279,0.000355,0.000000,0.000000,0.002563,0.254655,-0.002249,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000316,0.000275,0.000351,0.000000,0.000000,0.002523,0.252440,-0.002215,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000310,0.000271,0.000347,0.000000,0.000000,0.002483,0.250259,-0.002181,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000305,0.000267,0.000343,0.000000,0.000000,0.002445,0.248110,-0.002148,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000301,0.000263,0.000339,0.000000,0.000000,0.002407,0.245995,-0.002116,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000296,0.000259,0.000335,0.000000,0.000000,0.002370,0.243911,-0.002083,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000291,0.000255,0.000332,0.000000,0.000000,0.002334,0.241860,-0.002052,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000287,0.000251,0.000329,0.000000,0.000000,0.002298,0.239839,-0.002021,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000282,0.000247,0.000325,0.000000,0.000000,0.002263,0.237849,-0.001990,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000278,0.000243,0.000322,0.000000,0.000000,0.002229,0.235889,-0.001960,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000273,0.000240,0.000319,0.000000,0.000000,0.002195,0.233959,-0.001930,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000269,0.000236,0.000316,0.000000,0.000000,0.002162,0.232058,-0.001901,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000265,0.000232,0.000313,0.000130,0.000130,0.002130,0.230058,-0.002000,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000261,0.000228,0.000310,0.000386,0.000386,0.002097,0.227837,-0.002222,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000257,0.000224,0.000307,0.000534,0.000534,0.002064,0.225503,-0.002334,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000252,0.000219,0.000304,0.000630,0.000630,0.002031,0.223110,-0.002393,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000248,0.000214,0.000301,0.000625,0.000625,0.001997,0.220758,-0.002352,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000244,0.000210,0.000298,0.000571,0.000571,0.001964,0.218496,-0.002263,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000646,0.000001,0.000002,0.000001,0.000056,0.000240,0.000207,0.000296,0.000500,0.000500,0.001931,0.216971,-0.001525,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000170,0.000000,0.000000,0.000000,0.000057,0.000235,0.000203,0.000293,0.000489,0.000489,0.001899,0.215013,-0.001958,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000231,0.000200,0.000290,0.000421,0.000421,0.001867,0.212986,-0.002028,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000227,0.000196,0.000287,0.000315,0.000315,0.001836,0.211093,-0.001893,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000224,0.000193,0.000285,0.000188,0.000188,0.001805,0.209354,-0.001739,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000220,0.000190,0.000282,0.000050,0.000050,0.001775,0.207777,-0.001577,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000216,0.000187,0.000280,0.000000,0.000000,0.001746,0.206274,-0.001504,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000212,0.000184,0.000277,0.000000,0.000000,0.001717,0.204793,-0.001481,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000209,0.000181,0.000275,0.000000,0.000000,0.001689,0.203335,-0.001458,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000205,0.000178,0.000273,0.000000,0.000000,0.001662,0.201899,-0.001436,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000202,0.000176,0.000271,0.000000,0.000000,0.001636,0.200485,-0.001414,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000199,0.000173,0.000269,0.000000,0.000000,0.001610,0.199092,-0.001393,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000196,0.000170,0.000267,0.000000,0.000000,0.001585,0.197720,-0.001372,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000193,0.000168,0.000265,0.000000,0.000000,0.001560,0.196369,-0.001351,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000189,0.000165,0.000264,0.000000,0.000000,0.001536,0.195039,-0.001330,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000186,0.000163,0.000262,0.000000,0.000000,0.001512,0.193728,-0.001310,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000184,0.000160,0.000260,0.000000,0.000000,0.001489,0.192438,-0.001290,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000181,0.000158,0.000259,0.000000,0.000000,0.001466,0.191167,-0.001271,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000178,0.000155,0.000257,0.000126,0.000126,0.001443,0.189792,-0.001375,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000175,0.000152,0.000256,0.000382,0.000382,0.001420,0.188185,-0.001607,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000172,0.000149,0.000254,0.000534,0.000534,0.001397,0.186453,-0.001732,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000169,0.000145,0.000253,0.000629,0.000629,0.001373,0.184654,-0.001799,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000166,0.000142,0.000251,0.000700,0.000700,0.001349,0.182812,-0.001842,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000163,0.000138,0.000249,0.000642,0.000642,0.001325,0.181056,-0.001756,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000160,0.000135,0.000248,0.000560,0.000560,0.001300,0.179406,-0.001649,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000157,0.000132,0.000246,0.000512,0.000512,0.001276,0.177829,-0.001577,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000154,0.000129,0.000244,0.000447,0.000447,0.001251,0.176340,-0.001489,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000151,0.000127,0.000242,0.000335,0.000335,0.001227,0.174984,-0.001356,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000148,0.000125,0.000241,0.000197,0.000197,0.001204,0.173784,-0.001200,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000145,0.000123,0.000239,0.000060,0.000060,0.001182,0.172738,-0.001047,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000142,0.000121,0.000238,0.000000,0.000000,0.001160,0.171766,-0.000972,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000140,0.000119,0.000237,0.000000,0.000000,0.001139,0.170809,-0.000957,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000137,0.000117,0.000236,0.000000,0.000000,0.001119,0.169866,-0.000943,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000135,0.000115,0.000235,0.000000,0.000000,0.001099,0.168938,-0.000928,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000132,0.000114,0.000234,0.000000,0.000000,0.001080,0.168024,-0.000914,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000130,0.000112,0.000233,0.000000,0.000000,0.001062,0.167124,-0.000900,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000128,0.000110,0.000232,0.000000,0.000000,0.001044,0.166237,-0.000887,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000126,0.000108,0.000231,0.000000,0.000000,0.001027,0.165364,-0.000873,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000124,0.000107,0.000230,0.000000,0.000000,0.001010,0.164504,-0.000860,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000122,0.000105,0.000229,0.000000,0.000000,0.000993,0.163657,-0.000847,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000120,0.000104,0.000229,0.000000,0.000000,0.000977,0.162823,-0.000834,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000118,0.000102,0.000228,0.000000,0.000000,0.000962,0.162002,-0.000821,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000116,0.000100,0.000227,0.000139,0.000139,0.000946,0.161057,-0.000945,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000114,0.000098,0.000227,0.000384,0.000384,0.000930,0.159884,-0.001172,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000112,0.000095,0.000226,0.000534,0.000534,0.000914,0.158581,-0.001303,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000110,0.000093,0.000225,0.000633,0.000633,0.000897,0.157201,-0.001380,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000108,0.000090,0.000224,0.000612,0.000612,0.000880,0.155862,-0.001339,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000118,0.000105,0.000088,0.000224,0.000559,0.000559,0.000862,0.154658,-0.001204,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000103,0.000086,0.000223,0.000493,0.000493,0.000845,0.153537,-0.001120,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000101,0.000084,0.000222,0.000462,0.000462,0.000827,0.152464,-0.001073,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000073,0.000000,0.000000,0.000000,0.000122,0.000099,0.000082,0.000221,0.000380,0.000380,0.000810,0.151497,-0.000967,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000180,0.000000,0.000000,0.000000,0.000123,0.000097,0.000080,0.000220,0.000299,0.000299,0.000794,0.150730,-0.000767,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000073,0.000000,0.000000,0.000000,0.000125,0.000095,0.000079,0.000220,0.000180,0.000180,0.000778,0.149987,-0.000743,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000466,0.000007,0.000013,0.000007,0.000126,0.000093,0.000079,0.000226,0.000065,0.000065,0.000763,0.149744,-0.000243,1.000000,0.000006 +122,2022-08-06 02:00:00,0.000736,0.000026,0.000041,0.000026,0.000127,0.000092,0.000079,0.000245,0.000000,0.000000,0.000750,0.149806,0.000062,1.000000,0.000021 +123,2022-08-06 03:00:00,0.000679,0.000032,0.000035,0.000032,0.000129,0.000090,0.000079,0.000251,0.000000,0.000000,0.000739,0.149816,0.000011,1.000000,0.000024 +124,2022-08-06 04:00:00,0.000615,0.000033,0.000029,0.000033,0.000130,0.000089,0.000079,0.000252,0.000000,0.000000,0.000729,0.149770,-0.000046,1.000000,0.000020 +125,2022-08-06 05:00:00,0.000615,0.000030,0.000029,0.000030,0.000131,0.000088,0.000079,0.000249,0.000000,0.000000,0.000719,0.149724,-0.000046,1.000000,0.000019 +126,2022-08-06 06:00:00,0.000639,0.000030,0.000031,0.000030,0.000132,0.000087,0.000078,0.000249,0.000000,0.000000,0.000711,0.149700,-0.000024,1.000000,0.000020 +127,2022-08-06 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000134,0.000086,0.000077,0.000233,0.000000,0.000000,0.000703,0.149078,-0.000622,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000135,0.000085,0.000076,0.000226,0.000000,0.000000,0.000694,0.148465,-0.000613,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000084,0.000075,0.000220,0.000000,0.000000,0.000685,0.147862,-0.000603,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000083,0.000074,0.000220,0.000000,0.000000,0.000677,0.147267,-0.000594,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000081,0.000073,0.000220,0.000000,0.000000,0.000668,0.146682,-0.000585,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000080,0.000072,0.000220,0.000000,0.000000,0.000659,0.146106,-0.000576,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000079,0.000071,0.000220,0.000000,0.000000,0.000650,0.145538,-0.000568,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000078,0.000069,0.000221,0.000122,0.000122,0.000641,0.144858,-0.000680,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000077,0.000067,0.000221,0.000368,0.000368,0.000632,0.143947,-0.000911,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000076,0.000065,0.000221,0.000516,0.000516,0.000622,0.142904,-0.001043,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000074,0.000063,0.000220,0.000610,0.000610,0.000611,0.141784,-0.001120,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000073,0.000061,0.000220,0.000679,0.000679,0.000599,0.140613,-0.001171,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000071,0.000059,0.000220,0.000623,0.000623,0.000586,0.139515,-0.001098,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000057,0.000220,0.000552,0.000552,0.000574,0.138504,-0.001011,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000068,0.000055,0.000219,0.000516,0.000516,0.000560,0.137544,-0.000960,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000067,0.000054,0.000219,0.000441,0.000441,0.000547,0.136672,-0.000872,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000052,0.000218,0.000330,0.000330,0.000534,0.135922,-0.000750,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000064,0.000051,0.000218,0.000191,0.000191,0.000522,0.135321,-0.000601,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000062,0.000050,0.000218,0.000049,0.000049,0.000510,0.134869,-0.000452,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000061,0.000049,0.000217,0.000000,0.000000,0.000499,0.134472,-0.000397,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000059,0.000049,0.000217,0.000000,0.000000,0.000488,0.134081,-0.000391,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000048,0.000217,0.000000,0.000000,0.000478,0.133695,-0.000385,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000047,0.000217,0.000000,0.000000,0.000468,0.133316,-0.000379,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000046,0.000217,0.000000,0.000000,0.000459,0.132943,-0.000374,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000046,0.000217,0.000000,0.000000,0.000450,0.132575,-0.000368,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000045,0.000217,0.000000,0.000000,0.000441,0.132212,-0.000362,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000044,0.000218,0.000000,0.000000,0.000433,0.131856,-0.000357,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000052,0.000044,0.000218,0.000000,0.000000,0.000425,0.131504,-0.000351,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000051,0.000043,0.000218,0.000000,0.000000,0.000417,0.131158,-0.000346,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000042,0.000218,0.000000,0.000000,0.000410,0.130817,-0.000341,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000049,0.000042,0.000218,0.000000,0.000000,0.000402,0.130482,-0.000336,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000048,0.000041,0.000219,0.000117,0.000117,0.000395,0.130036,-0.000446,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000047,0.000040,0.000219,0.000364,0.000364,0.000388,0.129354,-0.000682,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000046,0.000038,0.000219,0.000516,0.000516,0.000380,0.128532,-0.000822,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000045,0.000036,0.000219,0.000617,0.000617,0.000371,0.127623,-0.000908,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000034,0.000219,0.000668,0.000668,0.000361,0.126678,-0.000945,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000033,0.000219,0.000609,0.000609,0.000351,0.125805,-0.000873,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000031,0.000219,0.000535,0.000535,0.000341,0.125019,-0.000787,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000030,0.000218,0.000520,0.000520,0.000331,0.124259,-0.000760,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000028,0.000218,0.000448,0.000448,0.000320,0.123582,-0.000677,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000038,0.000027,0.000218,0.000332,0.000332,0.000310,0.123029,-0.000553,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000027,0.000218,0.000164,0.000164,0.000300,0.122650,-0.000379,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000026,0.000218,0.000018,0.000018,0.000291,0.122420,-0.000229,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000026,0.000218,0.000000,0.000000,0.000283,0.122212,-0.000208,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000025,0.000218,0.000000,0.000000,0.000275,0.122007,-0.000205,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000032,0.000025,0.000218,0.000000,0.000000,0.000268,0.121805,-0.000202,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000025,0.000218,0.000000,0.000000,0.000261,0.121606,-0.000199,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000031,0.000024,0.000218,0.000000,0.000000,0.000254,0.121410,-0.000196,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000030,0.000024,0.000219,0.000000,0.000000,0.000248,0.121217,-0.000193,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000024,0.000219,0.000000,0.000000,0.000242,0.121027,-0.000190,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000023,0.000219,0.000000,0.000000,0.000237,0.120840,-0.000187,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000028,0.000023,0.000220,0.000000,0.000000,0.000232,0.120656,-0.000184,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000023,0.000220,0.000000,0.000000,0.000227,0.120475,-0.000181,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000027,0.000022,0.000220,0.000000,0.000000,0.000222,0.120296,-0.000179,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000022,0.000221,0.000000,0.000000,0.000218,0.120120,-0.000176,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000021,0.000221,0.000102,0.000102,0.000213,0.119846,-0.000274,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000025,0.000020,0.000222,0.000353,0.000353,0.000208,0.119329,-0.000517,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000019,0.000222,0.000508,0.000508,0.000203,0.118668,-0.000661,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000024,0.000018,0.000222,0.000603,0.000603,0.000197,0.117922,-0.000746,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000016,0.000222,0.000674,0.000674,0.000190,0.117119,-0.000803,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000015,0.000222,0.000608,0.000608,0.000182,0.116392,-0.000726,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000021,0.000013,0.000222,0.000539,0.000539,0.000175,0.115745,-0.000648,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000020,0.000012,0.000222,0.000515,0.000515,0.000167,0.115130,-0.000614,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000019,0.000011,0.000222,0.000444,0.000444,0.000159,0.114596,-0.000535,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000018,0.000010,0.000222,0.000330,0.000330,0.000151,0.114181,-0.000414,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000017,0.000010,0.000222,0.000186,0.000186,0.000144,0.113915,-0.000267,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000010,0.000222,0.000035,0.000035,0.000137,0.113801,-0.000114,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000016,0.000010,0.000222,0.000000,0.000000,0.000131,0.113723,-0.000077,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000015,0.000009,0.000223,0.000000,0.000000,0.000125,0.113647,-0.000076,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000014,0.000009,0.000223,0.000000,0.000000,0.000120,0.113572,-0.000075,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000014,0.000009,0.000223,0.000000,0.000000,0.000115,0.113498,-0.000074,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000013,0.000009,0.000223,0.000000,0.000000,0.000111,0.113425,-0.000073,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000013,0.000009,0.000224,0.000000,0.000000,0.000107,0.113353,-0.000072,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000012,0.000009,0.000224,0.000000,0.000000,0.000103,0.113283,-0.000071,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000009,0.000225,0.000000,0.000000,0.000100,0.113213,-0.000070,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000009,0.000225,0.000000,0.000000,0.000096,0.113145,-0.000069,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000011,0.000008,0.000226,0.000000,0.000000,0.000094,0.113077,-0.000067,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000011,0.000008,0.000226,0.000000,0.000000,0.000091,0.113011,-0.000066,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000011,0.000008,0.000227,0.000000,0.000000,0.000088,0.112945,-0.000065,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000010,0.000008,0.000227,0.000111,0.000111,0.000086,0.112772,-0.000174,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620798.csv b/test/channel_loss/channel_forcing/et/cat-2620798.csv new file mode 100644 index 000000000..f0c83c05a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620798.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001468,0.000341,0.001468,0.000182,0.000182,0.010470,0.424646,-0.004836,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001312,0.000337,0.001312,0.000055,0.000055,0.009495,0.419814,-0.004831,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001180,0.000332,0.001180,0.000000,0.000000,0.008647,0.415104,-0.004710,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001067,0.000327,0.001067,0.000000,0.000000,0.007907,0.410459,-0.004645,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000971,0.000323,0.000971,0.000000,0.000000,0.007259,0.405878,-0.004581,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000887,0.000318,0.000888,0.000000,0.000000,0.006690,0.401359,-0.004518,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000815,0.000314,0.000816,0.000000,0.000000,0.006189,0.396903,-0.004456,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000752,0.000310,0.000753,0.000000,0.000000,0.005747,0.392509,-0.004395,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000697,0.000305,0.000698,0.000000,0.000000,0.005356,0.388175,-0.004334,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000648,0.000301,0.000650,0.000000,0.000000,0.005008,0.383900,-0.004274,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000606,0.000297,0.000608,0.000000,0.000000,0.004700,0.379685,-0.004216,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000568,0.000293,0.000570,0.000000,0.000000,0.004424,0.375527,-0.004157,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000535,0.000289,0.000537,0.000000,0.000000,0.004178,0.371427,-0.004100,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000505,0.000285,0.000508,0.000000,0.000000,0.003958,0.367383,-0.004044,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000478,0.000281,0.000482,0.000142,0.000142,0.003761,0.363255,-0.004128,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000455,0.000277,0.000459,0.000390,0.000390,0.003583,0.358940,-0.004315,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000433,0.000272,0.000438,0.000545,0.000545,0.003422,0.354530,-0.004410,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000414,0.000268,0.000419,0.000643,0.000643,0.003276,0.350085,-0.004445,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000396,0.000264,0.000402,0.000567,0.000567,0.003143,0.345776,-0.004309,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000320,0.000000,0.000000,0.000000,0.000006,0.000381,0.000260,0.000387,0.000512,0.000512,0.003022,0.341896,-0.003880,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000007,0.000366,0.000256,0.000373,0.000453,0.000453,0.002912,0.338124,-0.003772,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000379,0.000000,0.000000,0.000000,0.000008,0.000353,0.000253,0.000361,0.000378,0.000378,0.002812,0.334539,-0.003584,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000314,0.000000,0.000000,0.000000,0.000008,0.000341,0.000249,0.000349,0.000335,0.000335,0.002720,0.330983,-0.003557,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000406,0.000002,0.000004,0.000002,0.000009,0.000330,0.000246,0.000341,0.000256,0.000256,0.002636,0.327639,-0.003343,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000459,0.000010,0.000016,0.000010,0.000010,0.000320,0.000243,0.000340,0.000161,0.000161,0.002558,0.324476,-0.003164,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000981,0.000080,0.000137,0.000080,0.000010,0.000311,0.000240,0.000402,0.000073,0.000073,0.002487,0.321840,-0.002636,1.000000,0.000065 +26,2022-08-02 02:00:00,0.001002,0.000127,0.000163,0.000127,0.000011,0.000303,0.000238,0.000441,0.000000,0.000000,0.002423,0.319306,-0.002534,1.000000,0.000101 +27,2022-08-02 03:00:00,0.000935,0.000147,0.000143,0.000147,0.000012,0.000295,0.000235,0.000454,0.000000,0.000000,0.002363,0.316761,-0.002545,1.000000,0.000097 +28,2022-08-02 04:00:00,0.000953,0.000150,0.000148,0.000150,0.000013,0.000288,0.000233,0.000450,0.000000,0.000000,0.002308,0.314265,-0.002496,1.000000,0.000095 +29,2022-08-02 05:00:00,0.000958,0.000147,0.000148,0.000147,0.000014,0.000281,0.000230,0.000442,0.000000,0.000000,0.002257,0.311806,-0.002458,1.000000,0.000096 +30,2022-08-02 06:00:00,0.000968,0.000150,0.000151,0.000150,0.000015,0.000275,0.000228,0.000439,0.000000,0.000000,0.002210,0.309390,-0.002417,1.000000,0.000098 +31,2022-08-02 07:00:00,0.000000,0.000067,0.000000,0.000067,0.000016,0.000269,0.000225,0.000352,0.000000,0.000000,0.002165,0.306200,-0.003189,1.000000,0.000030 +32,2022-08-02 08:00:00,0.000000,0.000030,0.000000,0.000030,0.000017,0.000264,0.000222,0.000311,0.000000,0.000000,0.002123,0.303055,-0.003145,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000259,0.000219,0.000276,0.000000,0.000000,0.002082,0.299953,-0.003102,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000254,0.000216,0.000272,0.000000,0.000000,0.002044,0.296893,-0.003059,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000249,0.000213,0.000269,0.000000,0.000000,0.002007,0.293876,-0.003017,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000245,0.000210,0.000265,0.000000,0.000000,0.001972,0.290900,-0.002976,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000021,0.000241,0.000207,0.000263,0.000000,0.000000,0.001939,0.288062,-0.002838,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000236,0.000204,0.000259,0.000122,0.000122,0.001906,0.285144,-0.002918,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000088,0.000000,0.000000,0.000000,0.000024,0.000232,0.000201,0.000256,0.000335,0.000335,0.001875,0.282045,-0.003100,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000228,0.000198,0.000253,0.000469,0.000469,0.001844,0.278832,-0.003213,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000225,0.000195,0.000250,0.000561,0.000561,0.001814,0.275573,-0.003259,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000027,0.000221,0.000192,0.000248,0.000629,0.000629,0.001785,0.272478,-0.003095,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000028,0.000217,0.000188,0.000245,0.000569,0.000569,0.001756,0.269237,-0.003241,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000214,0.000185,0.000243,0.000510,0.000510,0.001727,0.266098,-0.003139,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000210,0.000182,0.000240,0.000503,0.000503,0.001700,0.263008,-0.003089,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000207,0.000179,0.000238,0.000435,0.000435,0.001672,0.260029,-0.002979,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000203,0.000177,0.000236,0.000326,0.000326,0.001645,0.257198,-0.002831,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000200,0.000174,0.000234,0.000193,0.000193,0.001619,0.254537,-0.002661,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000197,0.000171,0.000232,0.000043,0.000043,0.001594,0.252061,-0.002476,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000194,0.000169,0.000230,0.000000,0.000000,0.001569,0.249661,-0.002400,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000191,0.000167,0.000228,0.000000,0.000000,0.001545,0.247294,-0.002367,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000188,0.000164,0.000227,0.000000,0.000000,0.001522,0.244960,-0.002334,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000185,0.000162,0.000225,0.000000,0.000000,0.001500,0.242658,-0.002302,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000182,0.000160,0.000224,0.000000,0.000000,0.001477,0.240388,-0.002270,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000179,0.000158,0.000222,0.000000,0.000000,0.001456,0.238148,-0.002239,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000177,0.000156,0.000221,0.000000,0.000000,0.001435,0.235940,-0.002208,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000174,0.000153,0.000220,0.000000,0.000000,0.001414,0.233762,-0.002178,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000172,0.000151,0.000218,0.000000,0.000000,0.001394,0.231614,-0.002148,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000169,0.000149,0.000217,0.000000,0.000000,0.001374,0.229496,-0.002118,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000167,0.000147,0.000216,0.000000,0.000000,0.001354,0.227407,-0.002089,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000164,0.000145,0.000215,0.000000,0.000000,0.001335,0.225347,-0.002060,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000162,0.000143,0.000214,0.000136,0.000136,0.001316,0.223181,-0.002166,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000160,0.000141,0.000213,0.000390,0.000390,0.001298,0.220794,-0.002386,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000157,0.000138,0.000212,0.000541,0.000541,0.001279,0.218292,-0.002503,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000155,0.000136,0.000211,0.000647,0.000647,0.001260,0.215719,-0.002573,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000152,0.000133,0.000210,0.000650,0.000650,0.001240,0.213179,-0.002540,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000150,0.000131,0.000209,0.000600,0.000600,0.001221,0.210723,-0.002456,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000667,0.000002,0.000003,0.000002,0.000060,0.000148,0.000129,0.000210,0.000522,0.000522,0.001203,0.209032,-0.001691,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000189,0.000001,0.000000,0.000001,0.000062,0.000145,0.000127,0.000208,0.000490,0.000490,0.001184,0.206928,-0.002104,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000063,0.000143,0.000125,0.000207,0.000428,0.000428,0.001166,0.204727,-0.002200,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000141,0.000123,0.000206,0.000320,0.000320,0.001148,0.202663,-0.002064,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000139,0.000121,0.000205,0.000197,0.000197,0.001130,0.200750,-0.001914,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000137,0.000119,0.000204,0.000056,0.000056,0.001113,0.199001,-0.001748,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000134,0.000118,0.000203,0.000000,0.000000,0.001096,0.197332,-0.001669,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000132,0.000116,0.000203,0.000000,0.000000,0.001080,0.195686,-0.001646,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000130,0.000114,0.000202,0.000000,0.000000,0.001064,0.194062,-0.001623,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000128,0.000113,0.000202,0.000000,0.000000,0.001048,0.192461,-0.001601,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000127,0.000111,0.000201,0.000000,0.000000,0.001033,0.190882,-0.001579,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000125,0.000110,0.000201,0.000000,0.000000,0.001018,0.189325,-0.001557,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000123,0.000108,0.000201,0.000000,0.000000,0.001003,0.187789,-0.001536,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000121,0.000107,0.000200,0.000000,0.000000,0.000989,0.186274,-0.001515,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000119,0.000105,0.000200,0.000000,0.000000,0.000975,0.184780,-0.001494,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000118,0.000104,0.000200,0.000000,0.000000,0.000961,0.183307,-0.001473,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000116,0.000102,0.000200,0.000000,0.000000,0.000947,0.181854,-0.001453,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000114,0.000101,0.000200,0.000000,0.000000,0.000934,0.180421,-0.001433,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000113,0.000099,0.000199,0.000132,0.000132,0.000921,0.178878,-0.001543,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000111,0.000098,0.000199,0.000386,0.000386,0.000908,0.177105,-0.001772,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000109,0.000096,0.000199,0.000539,0.000539,0.000894,0.175206,-0.001899,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000108,0.000094,0.000199,0.000644,0.000644,0.000880,0.173230,-0.001977,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000106,0.000092,0.000199,0.000728,0.000728,0.000866,0.171198,-0.002032,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000104,0.000090,0.000198,0.000676,0.000676,0.000852,0.169245,-0.001953,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000102,0.000088,0.000198,0.000587,0.000587,0.000838,0.167406,-0.001838,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000101,0.000086,0.000198,0.000519,0.000519,0.000824,0.165661,-0.001746,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000099,0.000085,0.000198,0.000453,0.000453,0.000810,0.164004,-0.001656,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000097,0.000083,0.000197,0.000341,0.000341,0.000796,0.162481,-0.001524,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000096,0.000082,0.000197,0.000206,0.000206,0.000782,0.161112,-0.001369,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000094,0.000081,0.000197,0.000068,0.000068,0.000769,0.159898,-0.001214,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000092,0.000080,0.000197,0.000000,0.000000,0.000757,0.158767,-0.001131,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000091,0.000079,0.000197,0.000000,0.000000,0.000744,0.157652,-0.001115,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000089,0.000077,0.000197,0.000000,0.000000,0.000732,0.156552,-0.001100,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000088,0.000076,0.000197,0.000000,0.000000,0.000721,0.155468,-0.001085,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000087,0.000075,0.000197,0.000000,0.000000,0.000710,0.154398,-0.001070,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000085,0.000074,0.000197,0.000000,0.000000,0.000699,0.153343,-0.001055,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000084,0.000073,0.000198,0.000000,0.000000,0.000688,0.152303,-0.001040,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000083,0.000072,0.000198,0.000000,0.000000,0.000678,0.151277,-0.001026,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000081,0.000071,0.000198,0.000000,0.000000,0.000668,0.150265,-0.001012,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000080,0.000070,0.000198,0.000000,0.000000,0.000658,0.149267,-0.000998,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000079,0.000069,0.000199,0.000000,0.000000,0.000648,0.148283,-0.000984,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000078,0.000068,0.000199,0.000000,0.000000,0.000639,0.147312,-0.000971,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000077,0.000067,0.000199,0.000143,0.000143,0.000629,0.146214,-0.001099,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000076,0.000066,0.000200,0.000386,0.000386,0.000620,0.144890,-0.001323,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000074,0.000065,0.000200,0.000540,0.000540,0.000610,0.143434,-0.001456,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000073,0.000063,0.000200,0.000649,0.000649,0.000600,0.141891,-0.001543,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000072,0.000062,0.000200,0.000631,0.000631,0.000590,0.140385,-0.001505,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000071,0.000060,0.000201,0.000587,0.000587,0.000580,0.139007,-0.001378,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000069,0.000059,0.000201,0.000513,0.000513,0.000569,0.137721,-0.001286,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000068,0.000058,0.000201,0.000468,0.000468,0.000559,0.136496,-0.001225,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000067,0.000057,0.000201,0.000383,0.000383,0.000549,0.135373,-0.001124,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000143,0.000000,0.000000,0.000000,0.000136,0.000066,0.000056,0.000202,0.000302,0.000302,0.000539,0.134423,-0.000949,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000064,0.000055,0.000202,0.000185,0.000185,0.000529,0.133523,-0.000900,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000395,0.000008,0.000015,0.000008,0.000139,0.000063,0.000054,0.000210,0.000069,0.000069,0.000520,0.133063,-0.000461,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000697,0.000039,0.000063,0.000039,0.000140,0.000062,0.000054,0.000241,0.000000,0.000000,0.000512,0.132927,-0.000136,1.000000,0.000031 +123,2022-08-06 03:00:00,0.000590,0.000044,0.000046,0.000044,0.000142,0.000061,0.000054,0.000247,0.000000,0.000000,0.000505,0.132704,-0.000223,1.000000,0.000033 +124,2022-08-06 04:00:00,0.000500,0.000043,0.000033,0.000043,0.000143,0.000061,0.000054,0.000246,0.000000,0.000000,0.000498,0.132408,-0.000296,1.000000,0.000024 +125,2022-08-06 05:00:00,0.000502,0.000036,0.000034,0.000036,0.000145,0.000060,0.000053,0.000241,0.000000,0.000000,0.000492,0.132118,-0.000290,1.000000,0.000022 +126,2022-08-06 06:00:00,0.000502,0.000034,0.000034,0.000034,0.000146,0.000059,0.000053,0.000239,0.000000,0.000000,0.000486,0.131832,-0.000286,1.000000,0.000022 +127,2022-08-06 07:00:00,0.000000,0.000015,0.000000,0.000015,0.000148,0.000058,0.000052,0.000221,0.000000,0.000000,0.000480,0.131088,-0.000744,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000149,0.000058,0.000052,0.000213,0.000000,0.000000,0.000474,0.130354,-0.000734,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000057,0.000051,0.000207,0.000000,0.000000,0.000468,0.129630,-0.000724,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000056,0.000050,0.000208,0.000000,0.000000,0.000462,0.128917,-0.000714,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000055,0.000050,0.000209,0.000000,0.000000,0.000456,0.128213,-0.000704,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000055,0.000049,0.000209,0.000000,0.000000,0.000450,0.127519,-0.000694,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000054,0.000048,0.000210,0.000000,0.000000,0.000445,0.126834,-0.000685,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000047,0.000211,0.000127,0.000127,0.000439,0.126034,-0.000800,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000053,0.000046,0.000211,0.000370,0.000370,0.000433,0.125005,-0.001029,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000045,0.000212,0.000522,0.000522,0.000426,0.123840,-0.001165,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000051,0.000044,0.000213,0.000628,0.000628,0.000419,0.122586,-0.001253,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000043,0.000213,0.000706,0.000706,0.000412,0.121274,-0.001313,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000042,0.000214,0.000658,0.000658,0.000404,0.120026,-0.001248,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000048,0.000040,0.000214,0.000578,0.000578,0.000397,0.118874,-0.001152,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000047,0.000039,0.000214,0.000523,0.000523,0.000389,0.117792,-0.001082,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000046,0.000038,0.000215,0.000449,0.000449,0.000381,0.116799,-0.000993,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000045,0.000038,0.000215,0.000337,0.000337,0.000373,0.115930,-0.000869,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000044,0.000037,0.000216,0.000196,0.000196,0.000366,0.115211,-0.000718,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000043,0.000036,0.000216,0.000055,0.000055,0.000358,0.114642,-0.000569,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000043,0.000036,0.000217,0.000000,0.000000,0.000351,0.114135,-0.000507,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000035,0.000217,0.000000,0.000000,0.000345,0.113634,-0.000500,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000035,0.000218,0.000000,0.000000,0.000338,0.113141,-0.000493,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000034,0.000218,0.000000,0.000000,0.000332,0.112654,-0.000487,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000034,0.000219,0.000000,0.000000,0.000327,0.112174,-0.000480,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000033,0.000220,0.000000,0.000000,0.000321,0.111701,-0.000473,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000033,0.000220,0.000000,0.000000,0.000316,0.111234,-0.000467,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000032,0.000221,0.000000,0.000000,0.000310,0.110774,-0.000460,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000032,0.000222,0.000000,0.000000,0.000305,0.110319,-0.000454,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000032,0.000222,0.000000,0.000000,0.000300,0.109872,-0.000448,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000036,0.000031,0.000223,0.000000,0.000000,0.000296,0.109430,-0.000442,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000031,0.000224,0.000000,0.000000,0.000291,0.108994,-0.000436,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000030,0.000225,0.000122,0.000122,0.000287,0.108444,-0.000550,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000029,0.000225,0.000368,0.000368,0.000282,0.107659,-0.000785,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000028,0.000226,0.000525,0.000525,0.000277,0.106730,-0.000929,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000027,0.000227,0.000633,0.000633,0.000271,0.105707,-0.001023,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000026,0.000227,0.000693,0.000693,0.000265,0.104639,-0.001068,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000025,0.000228,0.000641,0.000641,0.000259,0.103638,-0.001002,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000025,0.000228,0.000562,0.000562,0.000253,0.102728,-0.000910,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000229,0.000530,0.000530,0.000247,0.101862,-0.000866,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000023,0.000229,0.000455,0.000455,0.000241,0.101082,-0.000780,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000022,0.000230,0.000338,0.000338,0.000235,0.100428,-0.000654,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000022,0.000230,0.000172,0.000172,0.000229,0.099947,-0.000481,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000021,0.000231,0.000024,0.000024,0.000223,0.099619,-0.000328,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000000,0.000000,0.000218,0.099318,-0.000300,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000000,0.000000,0.000213,0.099022,-0.000296,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000232,0.000000,0.000000,0.000208,0.098730,-0.000292,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000020,0.000233,0.000000,0.000000,0.000204,0.098442,-0.000288,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000234,0.000000,0.000000,0.000200,0.098157,-0.000284,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000000,0.000000,0.000196,0.097877,-0.000280,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000192,0.097600,-0.000276,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000000,0.000000,0.000188,0.097328,-0.000273,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000237,0.000000,0.000000,0.000185,0.097059,-0.000269,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000237,0.000000,0.000000,0.000182,0.096794,-0.000265,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000018,0.000238,0.000000,0.000000,0.000178,0.096532,-0.000262,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000175,0.096274,-0.000258,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000106,0.000106,0.000172,0.095915,-0.000359,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000017,0.000240,0.000357,0.000357,0.000169,0.095314,-0.000601,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000016,0.000241,0.000515,0.000515,0.000166,0.094565,-0.000749,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000016,0.000242,0.000621,0.000621,0.000162,0.093721,-0.000843,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000015,0.000242,0.000699,0.000000,0.000158,0.093502,-0.000219,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000015,0.000243,0.000649,0.000000,0.000154,0.093286,-0.000216,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000015,0.000244,0.000566,0.000000,0.000151,0.093073,-0.000213,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000015,0.000245,0.000523,0.000000,0.000148,0.092862,-0.000210,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000015,0.000245,0.000452,0.000000,0.000145,0.092655,-0.000207,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000014,0.000246,0.000337,0.000000,0.000142,0.092450,-0.000205,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000014,0.000247,0.000193,0.000000,0.000140,0.092249,-0.000202,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000014,0.000247,0.000041,0.000000,0.000137,0.092050,-0.000199,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000248,0.000000,0.000000,0.000135,0.091853,-0.000196,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000014,0.000249,0.000000,0.000000,0.000132,0.091660,-0.000194,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000013,0.000250,0.000000,0.000000,0.000130,0.091469,-0.000191,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000251,0.000000,0.000000,0.000128,0.091281,-0.000188,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000000,0.000000,0.000126,0.091095,-0.000186,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000013,0.000252,0.000000,0.000000,0.000124,0.090912,-0.000183,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000000,0.000000,0.000122,0.090732,-0.000181,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000013,0.000254,0.000000,0.000000,0.000120,0.090554,-0.000178,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000000,0.000000,0.000118,0.090378,-0.000176,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000255,0.000000,0.000000,0.000116,0.090205,-0.000173,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000000,0.000000,0.000114,0.090034,-0.000171,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000014,0.000012,0.000257,0.000000,0.000000,0.000112,0.089866,-0.000168,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000012,0.000257,0.000116,0.000000,0.000111,0.089699,-0.000166,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620799.csv b/test/channel_loss/channel_forcing/et/cat-2620799.csv new file mode 100644 index 000000000..ad6c25704 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620799.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000159,0.000000,0.000000,0.000000,0.000000,0.001495,0.000534,0.001495,0.000177,0.000177,0.010635,0.425167,-0.004917,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001360,0.000526,0.001360,0.000053,0.000053,0.009801,0.420288,-0.004879,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001246,0.000519,0.001246,0.000000,0.000000,0.009073,0.415534,-0.004755,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001148,0.000511,0.001148,0.000000,0.000000,0.008437,0.410849,-0.004685,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001063,0.000503,0.001063,0.000000,0.000000,0.007877,0.406233,-0.004616,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000989,0.000496,0.000990,0.000000,0.000000,0.007384,0.401685,-0.004548,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000925,0.000489,0.000926,0.000000,0.000000,0.006948,0.397204,-0.004481,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000869,0.000482,0.000869,0.000000,0.000000,0.006561,0.392789,-0.004415,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000819,0.000474,0.000820,0.000000,0.000000,0.006216,0.388439,-0.004350,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000775,0.000468,0.000776,0.000000,0.000000,0.005909,0.384153,-0.004286,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000736,0.000461,0.000738,0.000000,0.000000,0.005633,0.379930,-0.004223,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000701,0.000454,0.000703,0.000000,0.000000,0.005386,0.375769,-0.004161,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000670,0.000447,0.000673,0.000000,0.000000,0.005163,0.371669,-0.004100,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000642,0.000441,0.000645,0.000000,0.000000,0.004961,0.367629,-0.004040,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000617,0.000434,0.000620,0.000141,0.000141,0.004779,0.363511,-0.004119,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000594,0.000427,0.000598,0.000393,0.000393,0.004612,0.359204,-0.004306,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000573,0.000420,0.000577,0.000545,0.000545,0.004458,0.354811,-0.004393,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000554,0.000413,0.000558,0.000639,0.000639,0.004317,0.350390,-0.004421,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000536,0.000406,0.000541,0.000553,0.000553,0.004187,0.346118,-0.004272,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000520,0.000399,0.000526,0.000503,0.000503,0.004067,0.342270,-0.003848,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000007,0.000505,0.000393,0.000511,0.000441,0.000441,0.003955,0.338539,-0.003731,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000473,0.000001,0.000001,0.000001,0.000007,0.000491,0.000388,0.000499,0.000370,0.000370,0.003852,0.335087,-0.003452,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000369,0.000000,0.000000,0.000000,0.000008,0.000478,0.000382,0.000486,0.000332,0.000332,0.003756,0.331623,-0.003464,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000442,0.000003,0.000004,0.000003,0.000009,0.000466,0.000377,0.000477,0.000252,0.000252,0.003667,0.328355,-0.003268,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000473,0.000008,0.000012,0.000008,0.000009,0.000455,0.000372,0.000472,0.000160,0.000160,0.003583,0.325249,-0.003105,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000984,0.000054,0.000092,0.000054,0.000010,0.000445,0.000367,0.000509,0.000071,0.000071,0.003506,0.322702,-0.002548,1.000000,0.000044 +26,2022-08-02 02:00:00,0.001077,0.000094,0.000125,0.000094,0.000011,0.000435,0.000364,0.000540,0.000000,0.000000,0.003435,0.320321,-0.002381,1.000000,0.000074 +27,2022-08-02 03:00:00,0.000948,0.000103,0.000098,0.000103,0.000012,0.000426,0.000360,0.000541,0.000000,0.000000,0.003368,0.317874,-0.002446,1.000000,0.000069 +28,2022-08-02 04:00:00,0.001040,0.000113,0.000116,0.000113,0.000012,0.000418,0.000356,0.000543,0.000000,0.000000,0.003306,0.315537,-0.002338,1.000000,0.000072 +29,2022-08-02 05:00:00,0.000971,0.000104,0.000101,0.000104,0.000013,0.000410,0.000352,0.000528,0.000000,0.000000,0.003248,0.313179,-0.002357,1.000000,0.000069 +30,2022-08-02 06:00:00,0.000911,0.000098,0.000089,0.000098,0.000014,0.000403,0.000348,0.000515,0.000000,0.000000,0.003193,0.310810,-0.002370,1.000000,0.000061 +31,2022-08-02 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000015,0.000396,0.000343,0.000454,0.000000,0.000000,0.003140,0.307665,-0.003144,1.000000,0.000018 +32,2022-08-02 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000016,0.000389,0.000338,0.000423,0.000000,0.000000,0.003088,0.304567,-0.003098,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000383,0.000333,0.000400,0.000000,0.000000,0.003038,0.301515,-0.003053,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000376,0.000328,0.000394,0.000000,0.000000,0.002990,0.298507,-0.003008,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000370,0.000323,0.000389,0.000000,0.000000,0.002943,0.295543,-0.002963,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000364,0.000318,0.000384,0.000000,0.000000,0.002897,0.292623,-0.002920,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000021,0.000358,0.000314,0.000380,0.000000,0.000000,0.002853,0.289844,-0.002780,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000094,0.000000,0.000000,0.000000,0.000022,0.000353,0.000309,0.000375,0.000123,0.000123,0.002809,0.286979,-0.002864,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000347,0.000304,0.000370,0.000340,0.000340,0.002766,0.283913,-0.003066,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000342,0.000299,0.000365,0.000470,0.000470,0.002724,0.280763,-0.003150,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000336,0.000294,0.000361,0.000558,0.000558,0.002682,0.277573,-0.003190,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000026,0.000331,0.000289,0.000357,0.000619,0.000619,0.002640,0.274557,-0.003016,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000049,0.000000,0.000000,0.000000,0.000027,0.000325,0.000284,0.000352,0.000554,0.000554,0.002599,0.271448,-0.003108,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000320,0.000279,0.000348,0.000502,0.000502,0.002558,0.268389,-0.003060,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000315,0.000274,0.000344,0.000500,0.000500,0.002517,0.265375,-0.003013,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000310,0.000269,0.000340,0.000433,0.000433,0.002477,0.262473,-0.002903,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000304,0.000265,0.000336,0.000323,0.000323,0.002437,0.259721,-0.002752,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000299,0.000261,0.000332,0.000190,0.000190,0.002398,0.257140,-0.002581,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000295,0.000257,0.000328,0.000041,0.000041,0.002361,0.254745,-0.002395,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000290,0.000253,0.000325,0.000000,0.000000,0.002324,0.252425,-0.002320,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000285,0.000249,0.000321,0.000000,0.000000,0.002288,0.250139,-0.002286,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000281,0.000246,0.000318,0.000000,0.000000,0.002253,0.247887,-0.002252,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000276,0.000242,0.000315,0.000000,0.000000,0.002219,0.245668,-0.002219,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000272,0.000238,0.000312,0.000000,0.000000,0.002185,0.243482,-0.002186,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000268,0.000235,0.000309,0.000000,0.000000,0.002152,0.241328,-0.002154,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000264,0.000232,0.000306,0.000000,0.000000,0.002120,0.239205,-0.002122,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000260,0.000228,0.000303,0.000000,0.000000,0.002088,0.237114,-0.002091,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000256,0.000225,0.000300,0.000000,0.000000,0.002057,0.235053,-0.002061,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000252,0.000221,0.000298,0.000000,0.000000,0.002027,0.233023,-0.002030,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000248,0.000218,0.000295,0.000000,0.000000,0.001997,0.231023,-0.002000,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000244,0.000215,0.000293,0.000000,0.000000,0.001968,0.229052,-0.001971,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000241,0.000212,0.000290,0.000134,0.000134,0.001939,0.226978,-0.002074,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000237,0.000208,0.000288,0.000392,0.000392,0.001910,0.224680,-0.002298,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000233,0.000204,0.000285,0.000542,0.000542,0.001881,0.222268,-0.002412,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000229,0.000200,0.000283,0.000643,0.000643,0.001851,0.219792,-0.002476,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000226,0.000196,0.000281,0.000636,0.000636,0.001822,0.217359,-0.002433,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000222,0.000192,0.000278,0.000578,0.000578,0.001792,0.215020,-0.002339,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000743,0.000003,0.000005,0.000003,0.000058,0.000218,0.000190,0.000279,0.000508,0.000508,0.001763,0.213511,-0.001509,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000255,0.000001,0.000000,0.000001,0.000059,0.000215,0.000187,0.000275,0.000476,0.000476,0.001735,0.211579,-0.001932,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000060,0.000211,0.000183,0.000272,0.000422,0.000422,0.001707,0.209479,-0.002100,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000208,0.000180,0.000269,0.000315,0.000315,0.001679,0.207514,-0.001964,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000204,0.000177,0.000267,0.000196,0.000196,0.001652,0.205696,-0.001819,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000201,0.000174,0.000265,0.000054,0.000054,0.001626,0.204044,-0.001652,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000198,0.000172,0.000263,0.000000,0.000000,0.001600,0.202470,-0.001574,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000194,0.000169,0.000261,0.000000,0.000000,0.001575,0.200919,-0.001551,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000191,0.000167,0.000260,0.000000,0.000000,0.001550,0.199391,-0.001528,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000188,0.000164,0.000258,0.000000,0.000000,0.001526,0.197885,-0.001506,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000185,0.000162,0.000256,0.000000,0.000000,0.001502,0.196402,-0.001484,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000182,0.000159,0.000255,0.000000,0.000000,0.001479,0.194940,-0.001462,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000180,0.000157,0.000254,0.000000,0.000000,0.001457,0.193500,-0.001440,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000177,0.000155,0.000252,0.000000,0.000000,0.001435,0.192081,-0.001419,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000174,0.000153,0.000251,0.000000,0.000000,0.001413,0.190682,-0.001398,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000171,0.000150,0.000250,0.000000,0.000000,0.001392,0.189305,-0.001378,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000169,0.000148,0.000248,0.000000,0.000000,0.001371,0.187947,-0.001357,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000166,0.000146,0.000247,0.000000,0.000000,0.001351,0.186610,-0.001337,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000164,0.000144,0.000246,0.000129,0.000129,0.001331,0.185166,-0.001444,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000161,0.000141,0.000245,0.000387,0.000387,0.001310,0.183488,-0.001678,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000159,0.000138,0.000244,0.000540,0.000540,0.001290,0.181685,-0.001803,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000156,0.000135,0.000242,0.000641,0.000641,0.001269,0.179807,-0.001877,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000153,0.000132,0.000241,0.000717,0.000717,0.001247,0.177884,-0.001924,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000151,0.000129,0.000240,0.000654,0.000654,0.001225,0.176050,-0.001834,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000148,0.000126,0.000238,0.000573,0.000573,0.001203,0.174323,-0.001727,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000145,0.000123,0.000237,0.000518,0.000518,0.001181,0.172675,-0.001648,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000142,0.000121,0.000236,0.000451,0.000451,0.001160,0.171118,-0.001557,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000140,0.000118,0.000235,0.000338,0.000338,0.001138,0.169695,-0.001423,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000137,0.000116,0.000233,0.000203,0.000203,0.001117,0.168425,-0.001269,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000135,0.000114,0.000232,0.000064,0.000064,0.001097,0.167312,-0.001114,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000132,0.000113,0.000231,0.000000,0.000000,0.001078,0.166278,-0.001034,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000130,0.000111,0.000230,0.000000,0.000000,0.001059,0.165259,-0.001019,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000128,0.000109,0.000229,0.000000,0.000000,0.001041,0.164256,-0.001004,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000125,0.000108,0.000229,0.000000,0.000000,0.001024,0.163267,-0.000989,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000123,0.000106,0.000228,0.000000,0.000000,0.001007,0.162292,-0.000974,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000121,0.000105,0.000227,0.000000,0.000000,0.000990,0.161332,-0.000960,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000119,0.000103,0.000227,0.000000,0.000000,0.000974,0.160386,-0.000946,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000117,0.000102,0.000226,0.000000,0.000000,0.000958,0.159454,-0.000932,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000115,0.000100,0.000226,0.000000,0.000000,0.000943,0.158536,-0.000918,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000114,0.000099,0.000225,0.000000,0.000000,0.000928,0.157631,-0.000905,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000112,0.000097,0.000225,0.000000,0.000000,0.000914,0.156740,-0.000892,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000110,0.000096,0.000224,0.000000,0.000000,0.000899,0.155861,-0.000878,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000108,0.000094,0.000224,0.000142,0.000142,0.000885,0.154855,-0.001006,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000106,0.000092,0.000224,0.000389,0.000389,0.000871,0.153621,-0.001234,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000105,0.000090,0.000223,0.000541,0.000541,0.000856,0.152256,-0.001365,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000103,0.000088,0.000223,0.000646,0.000646,0.000841,0.150807,-0.001449,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000101,0.000085,0.000222,0.000625,0.000625,0.000825,0.149400,-0.001407,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000099,0.000083,0.000222,0.000575,0.000575,0.000810,0.148126,-0.001275,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000097,0.000081,0.000221,0.000507,0.000507,0.000794,0.146937,-0.001189,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000095,0.000079,0.000220,0.000472,0.000472,0.000778,0.145800,-0.001137,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000093,0.000078,0.000220,0.000389,0.000389,0.000763,0.144762,-0.001038,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000119,0.000000,0.000000,0.000000,0.000128,0.000091,0.000076,0.000219,0.000302,0.000302,0.000748,0.143880,-0.000882,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000090,0.000075,0.000219,0.000184,0.000184,0.000733,0.143071,-0.000809,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000382,0.000005,0.000009,0.000005,0.000131,0.000088,0.000074,0.000223,0.000067,0.000067,0.000720,0.142695,-0.000376,1.000000,0.000004 +122,2022-08-06 02:00:00,0.000621,0.000020,0.000033,0.000020,0.000132,0.000086,0.000074,0.000239,0.000000,0.000000,0.000708,0.142603,-0.000092,1.000000,0.000017 +123,2022-08-06 03:00:00,0.000520,0.000023,0.000024,0.000023,0.000133,0.000085,0.000074,0.000241,0.000000,0.000000,0.000697,0.142422,-0.000181,1.000000,0.000017 +124,2022-08-06 04:00:00,0.000490,0.000024,0.000021,0.000024,0.000135,0.000084,0.000074,0.000243,0.000000,0.000000,0.000687,0.142216,-0.000206,1.000000,0.000014 +125,2022-08-06 05:00:00,0.000490,0.000021,0.000021,0.000021,0.000136,0.000083,0.000073,0.000240,0.000000,0.000000,0.000677,0.142014,-0.000203,1.000000,0.000014 +126,2022-08-06 06:00:00,0.000490,0.000021,0.000021,0.000021,0.000137,0.000082,0.000073,0.000240,0.000000,0.000000,0.000669,0.141814,-0.000200,1.000000,0.000014 +127,2022-08-06 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000139,0.000080,0.000072,0.000229,0.000000,0.000000,0.000660,0.141155,-0.000659,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000140,0.000079,0.000071,0.000224,0.000000,0.000000,0.000651,0.140506,-0.000649,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000078,0.000070,0.000220,0.000000,0.000000,0.000643,0.139866,-0.000640,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000077,0.000069,0.000220,0.000000,0.000000,0.000634,0.139236,-0.000630,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000076,0.000068,0.000220,0.000000,0.000000,0.000626,0.138615,-0.000621,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000075,0.000067,0.000221,0.000000,0.000000,0.000617,0.138003,-0.000612,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000074,0.000066,0.000221,0.000000,0.000000,0.000609,0.137401,-0.000603,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000073,0.000065,0.000221,0.000126,0.000126,0.000600,0.136683,-0.000718,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000072,0.000063,0.000221,0.000374,0.000374,0.000591,0.135731,-0.000952,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000071,0.000061,0.000221,0.000525,0.000525,0.000582,0.134644,-0.001087,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000070,0.000059,0.000221,0.000626,0.000626,0.000572,0.133474,-0.001170,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000068,0.000057,0.000221,0.000695,0.000695,0.000561,0.132253,-0.001221,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000067,0.000055,0.000221,0.000644,0.000644,0.000549,0.131100,-0.001152,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000065,0.000054,0.000221,0.000566,0.000566,0.000538,0.130041,-0.001059,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000064,0.000052,0.000221,0.000521,0.000521,0.000526,0.129042,-0.000999,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000063,0.000051,0.000221,0.000448,0.000448,0.000514,0.128129,-0.000912,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000061,0.000049,0.000221,0.000334,0.000334,0.000502,0.127342,-0.000787,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000060,0.000048,0.000220,0.000193,0.000193,0.000491,0.126707,-0.000636,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000058,0.000048,0.000220,0.000053,0.000053,0.000480,0.126218,-0.000488,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000047,0.000220,0.000000,0.000000,0.000470,0.125789,-0.000429,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000056,0.000046,0.000220,0.000000,0.000000,0.000460,0.125365,-0.000423,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000055,0.000045,0.000220,0.000000,0.000000,0.000451,0.124949,-0.000417,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000054,0.000045,0.000221,0.000000,0.000000,0.000442,0.124538,-0.000411,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000053,0.000044,0.000221,0.000000,0.000000,0.000433,0.124133,-0.000405,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000052,0.000044,0.000221,0.000000,0.000000,0.000425,0.123734,-0.000399,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000051,0.000043,0.000221,0.000000,0.000000,0.000417,0.123341,-0.000393,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000050,0.000042,0.000222,0.000000,0.000000,0.000410,0.122954,-0.000387,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000049,0.000042,0.000222,0.000000,0.000000,0.000402,0.122573,-0.000381,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000048,0.000041,0.000222,0.000000,0.000000,0.000395,0.122197,-0.000376,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000047,0.000040,0.000222,0.000000,0.000000,0.000389,0.121826,-0.000370,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000046,0.000040,0.000223,0.000000,0.000000,0.000382,0.121461,-0.000365,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000046,0.000039,0.000223,0.000120,0.000120,0.000375,0.120983,-0.000478,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000045,0.000038,0.000224,0.000370,0.000370,0.000369,0.120266,-0.000717,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000044,0.000036,0.000224,0.000524,0.000524,0.000361,0.119407,-0.000859,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000043,0.000035,0.000224,0.000628,0.000628,0.000353,0.118459,-0.000948,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000042,0.000033,0.000224,0.000680,0.000680,0.000345,0.117474,-0.000986,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000041,0.000032,0.000224,0.000627,0.000627,0.000336,0.116555,-0.000918,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000030,0.000224,0.000549,0.000549,0.000327,0.115727,-0.000828,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000029,0.000224,0.000525,0.000525,0.000317,0.114934,-0.000792,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000028,0.000224,0.000452,0.000452,0.000308,0.114225,-0.000709,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000027,0.000224,0.000333,0.000333,0.000299,0.113645,-0.000581,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000026,0.000224,0.000168,0.000168,0.000290,0.113234,-0.000410,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000026,0.000224,0.000023,0.000023,0.000282,0.112973,-0.000261,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000026,0.000225,0.000000,0.000000,0.000274,0.112739,-0.000235,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000025,0.000225,0.000000,0.000000,0.000267,0.112507,-0.000231,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000025,0.000225,0.000000,0.000000,0.000260,0.112279,-0.000228,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000024,0.000225,0.000000,0.000000,0.000254,0.112055,-0.000224,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000024,0.000226,0.000000,0.000000,0.000248,0.111834,-0.000221,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000024,0.000226,0.000000,0.000000,0.000242,0.111616,-0.000218,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000023,0.000226,0.000000,0.000000,0.000237,0.111401,-0.000215,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000227,0.000000,0.000000,0.000232,0.111190,-0.000212,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000023,0.000227,0.000000,0.000000,0.000227,0.110981,-0.000208,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000228,0.000000,0.000000,0.000223,0.110776,-0.000205,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000218,0.110573,-0.000202,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000022,0.000229,0.000000,0.000000,0.000214,0.110374,-0.000199,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000105,0.000105,0.000210,0.110074,-0.000300,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000020,0.000230,0.000358,0.000358,0.000205,0.109530,-0.000544,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000019,0.000230,0.000515,0.000515,0.000200,0.108838,-0.000692,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000018,0.000231,0.000618,0.000618,0.000195,0.108056,-0.000783,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000017,0.000231,0.000689,0.000689,0.000188,0.107214,-0.000841,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000015,0.000231,0.000631,0.000631,0.000182,0.106443,-0.000771,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000014,0.000231,0.000555,0.000555,0.000175,0.105757,-0.000686,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000013,0.000231,0.000524,0.000524,0.000168,0.105113,-0.000644,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000012,0.000231,0.000451,0.000451,0.000161,0.104549,-0.000564,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000012,0.000231,0.000332,0.000332,0.000154,0.104111,-0.000438,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000018,0.000011,0.000232,0.000190,0.000190,0.000147,0.103819,-0.000291,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000011,0.000232,0.000038,0.000038,0.000141,0.103682,-0.000137,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000011,0.000232,0.000000,0.000000,0.000135,0.103584,-0.000098,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000016,0.000011,0.000232,0.000000,0.000000,0.000130,0.103487,-0.000097,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000010,0.000233,0.000000,0.000000,0.000125,0.103392,-0.000095,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000010,0.000233,0.000000,0.000000,0.000121,0.103298,-0.000094,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000014,0.000010,0.000234,0.000000,0.000000,0.000117,0.103206,-0.000092,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000014,0.000010,0.000234,0.000000,0.000000,0.000113,0.103115,-0.000091,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000013,0.000010,0.000235,0.000000,0.000000,0.000109,0.103025,-0.000090,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000013,0.000010,0.000235,0.000000,0.000000,0.000106,0.102937,-0.000088,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000009,0.000236,0.000000,0.000000,0.000103,0.102850,-0.000087,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000012,0.000009,0.000236,0.000000,0.000000,0.000100,0.102764,-0.000086,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000012,0.000009,0.000237,0.000000,0.000000,0.000098,0.102680,-0.000085,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000012,0.000009,0.000237,0.000000,0.000000,0.000095,0.102596,-0.000083,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000011,0.000009,0.000238,0.000114,0.000114,0.000093,0.102402,-0.000194,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620800.csv b/test/channel_loss/channel_forcing/et/cat-2620800.csv new file mode 100644 index 000000000..9665049f1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620800.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001512,0.000656,0.001512,0.000184,0.000184,0.010726,0.418894,-0.005069,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001391,0.000646,0.001391,0.000057,0.000057,0.009981,0.413841,-0.005053,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001288,0.000636,0.001288,0.000000,0.000000,0.009330,0.408920,-0.004921,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001199,0.000627,0.001199,0.000000,0.000000,0.008757,0.404074,-0.004846,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001121,0.000617,0.001122,0.000000,0.000000,0.008253,0.399301,-0.004773,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001054,0.000608,0.001054,0.000000,0.000000,0.007807,0.394600,-0.004701,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000995,0.000599,0.000995,0.000000,0.000000,0.007411,0.389970,-0.004630,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000943,0.000590,0.000943,0.000000,0.000000,0.007058,0.385411,-0.004560,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000896,0.000581,0.000897,0.000000,0.000000,0.006742,0.380920,-0.004491,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000855,0.000572,0.000856,0.000000,0.000000,0.006459,0.376497,-0.004423,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000818,0.000563,0.000820,0.000000,0.000000,0.006204,0.372141,-0.004356,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000785,0.000555,0.000787,0.000000,0.000000,0.005973,0.367851,-0.004290,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000756,0.000546,0.000758,0.000000,0.000000,0.005764,0.363626,-0.004225,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000729,0.000538,0.000731,0.000000,0.000000,0.005574,0.359464,-0.004161,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000704,0.000530,0.000707,0.000144,0.000144,0.005399,0.355224,-0.004241,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000682,0.000521,0.000685,0.000393,0.000393,0.005238,0.350802,-0.004422,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000661,0.000512,0.000665,0.000551,0.000551,0.005090,0.346293,-0.004510,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000642,0.000503,0.000646,0.000651,0.000651,0.004951,0.341752,-0.004541,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000624,0.000494,0.000629,0.000576,0.000576,0.004821,0.337354,-0.004397,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000607,0.000486,0.000613,0.000521,0.000521,0.004701,0.333388,-0.003966,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000007,0.000591,0.000479,0.000598,0.000459,0.000459,0.004588,0.329543,-0.003845,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000436,0.000000,0.000000,0.000000,0.000007,0.000577,0.000472,0.000584,0.000381,0.000381,0.004483,0.325950,-0.003592,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000378,0.000000,0.000000,0.000000,0.000008,0.000563,0.000464,0.000572,0.000339,0.000339,0.004384,0.322398,-0.003553,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000441,0.000002,0.000003,0.000002,0.000009,0.000551,0.000458,0.000561,0.000259,0.000259,0.004291,0.319036,-0.003361,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000468,0.000005,0.000008,0.000005,0.000009,0.000539,0.000451,0.000554,0.000164,0.000164,0.004203,0.315841,-0.003195,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000985,0.000041,0.000070,0.000041,0.000010,0.000528,0.000446,0.000579,0.000075,0.000075,0.004122,0.313230,-0.002611,1.000000,0.000033 +26,2022-08-02 02:00:00,0.000998,0.000065,0.000084,0.000065,0.000011,0.000518,0.000441,0.000594,0.000000,0.000000,0.004045,0.310731,-0.002499,1.000000,0.000052 +27,2022-08-02 03:00:00,0.000932,0.000075,0.000073,0.000075,0.000012,0.000508,0.000436,0.000595,0.000000,0.000000,0.003974,0.308215,-0.002516,1.000000,0.000050 +28,2022-08-02 04:00:00,0.000945,0.000076,0.000075,0.000076,0.000013,0.000499,0.000431,0.000587,0.000000,0.000000,0.003906,0.305749,-0.002466,1.000000,0.000048 +29,2022-08-02 05:00:00,0.000951,0.000075,0.000075,0.000075,0.000013,0.000490,0.000427,0.000578,0.000000,0.000000,0.003843,0.303326,-0.002423,1.000000,0.000049 +30,2022-08-02 06:00:00,0.000972,0.000077,0.000078,0.000077,0.000014,0.000482,0.000422,0.000573,0.000000,0.000000,0.003783,0.300957,-0.002369,1.000000,0.000050 +31,2022-08-02 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000015,0.000474,0.000416,0.000524,0.000000,0.000000,0.003724,0.297743,-0.003214,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000467,0.000409,0.000498,0.000000,0.000000,0.003666,0.294578,-0.003165,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000459,0.000403,0.000476,0.000000,0.000000,0.003610,0.291461,-0.003117,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000452,0.000397,0.000470,0.000000,0.000000,0.003556,0.288391,-0.003070,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000445,0.000391,0.000463,0.000000,0.000000,0.003502,0.285367,-0.003024,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000438,0.000385,0.000457,0.000000,0.000000,0.003449,0.282389,-0.002978,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000021,0.000431,0.000379,0.000452,0.000000,0.000000,0.003398,0.279554,-0.002835,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000095,0.000000,0.000000,0.000000,0.000022,0.000424,0.000374,0.000446,0.000124,0.000124,0.003348,0.276635,-0.002919,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000417,0.000367,0.000440,0.000337,0.000337,0.003298,0.273520,-0.003115,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000411,0.000361,0.000435,0.000471,0.000471,0.003248,0.270319,-0.003201,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000404,0.000355,0.000429,0.000566,0.000566,0.003198,0.267074,-0.003245,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000026,0.000398,0.000349,0.000424,0.000636,0.000636,0.003149,0.263995,-0.003079,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000391,0.000342,0.000418,0.000577,0.000577,0.003100,0.260772,-0.003223,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000385,0.000336,0.000413,0.000517,0.000517,0.003051,0.257658,-0.003115,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000378,0.000330,0.000408,0.000505,0.000505,0.003002,0.254601,-0.003057,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000372,0.000324,0.000403,0.000437,0.000437,0.002954,0.251658,-0.002943,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000366,0.000318,0.000397,0.000329,0.000329,0.002906,0.248866,-0.002792,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000360,0.000313,0.000393,0.000196,0.000196,0.002860,0.246247,-0.002619,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000354,0.000308,0.000388,0.000045,0.000045,0.002814,0.243816,-0.002431,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000348,0.000304,0.000383,0.000000,0.000000,0.002770,0.241467,-0.002350,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000342,0.000299,0.000379,0.000000,0.000000,0.002727,0.239153,-0.002314,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000337,0.000295,0.000374,0.000000,0.000000,0.002684,0.236874,-0.002279,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000332,0.000290,0.000370,0.000000,0.000000,0.002643,0.234629,-0.002245,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000326,0.000286,0.000366,0.000000,0.000000,0.002603,0.232419,-0.002211,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000321,0.000282,0.000362,0.000000,0.000000,0.002563,0.230241,-0.002177,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000316,0.000277,0.000358,0.000000,0.000000,0.002524,0.228097,-0.002144,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000311,0.000273,0.000355,0.000000,0.000000,0.002486,0.225985,-0.002112,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000306,0.000269,0.000351,0.000000,0.000000,0.002449,0.223905,-0.002080,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000302,0.000265,0.000348,0.000000,0.000000,0.002412,0.221857,-0.002048,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000297,0.000261,0.000344,0.000000,0.000000,0.002376,0.219840,-0.002017,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000292,0.000257,0.000341,0.000000,0.000000,0.002340,0.217853,-0.001987,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000288,0.000253,0.000338,0.000138,0.000138,0.002305,0.215760,-0.002093,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000283,0.000248,0.000335,0.000393,0.000393,0.002270,0.213448,-0.002312,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000279,0.000243,0.000331,0.000546,0.000546,0.002235,0.211020,-0.002428,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000274,0.000238,0.000328,0.000655,0.000655,0.002199,0.208521,-0.002499,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000270,0.000233,0.000325,0.000661,0.000661,0.002163,0.206055,-0.002466,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000265,0.000229,0.000321,0.000613,0.000613,0.002127,0.203672,-0.002382,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000666,0.000001,0.000001,0.000001,0.000058,0.000260,0.000226,0.000319,0.000533,0.000533,0.002092,0.202060,-0.001613,1.000000,0.000001 +69,2022-08-03 21:00:00,0.000219,0.000000,0.000000,0.000000,0.000059,0.000256,0.000222,0.000315,0.000494,0.000494,0.002057,0.200071,-0.001988,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000252,0.000217,0.000312,0.000432,0.000432,0.002023,0.197958,-0.002114,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000247,0.000213,0.000309,0.000324,0.000324,0.001989,0.195983,-0.001975,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000243,0.000210,0.000306,0.000201,0.000201,0.001956,0.194159,-0.001824,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000239,0.000207,0.000303,0.000058,0.000058,0.001924,0.192502,-0.001656,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000235,0.000203,0.000301,0.000000,0.000000,0.001892,0.190929,-0.001574,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000231,0.000200,0.000298,0.000000,0.000000,0.001862,0.189379,-0.001550,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000227,0.000197,0.000296,0.000000,0.000000,0.001832,0.187853,-0.001526,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000224,0.000194,0.000294,0.000000,0.000000,0.001803,0.186350,-0.001503,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000220,0.000191,0.000291,0.000000,0.000000,0.001774,0.184869,-0.001480,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000216,0.000189,0.000289,0.000000,0.000000,0.001746,0.183411,-0.001458,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000213,0.000186,0.000287,0.000000,0.000000,0.001719,0.181975,-0.001436,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000210,0.000183,0.000285,0.000000,0.000000,0.001692,0.180561,-0.001414,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000206,0.000180,0.000283,0.000000,0.000000,0.001666,0.179168,-0.001393,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000203,0.000177,0.000281,0.000000,0.000000,0.001641,0.177796,-0.001372,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000200,0.000175,0.000279,0.000000,0.000000,0.001616,0.176445,-0.001351,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000197,0.000172,0.000278,0.000000,0.000000,0.001591,0.175114,-0.001331,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000194,0.000169,0.000276,0.000134,0.000134,0.001566,0.173672,-0.001442,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000191,0.000166,0.000274,0.000389,0.000389,0.001542,0.171999,-0.001672,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000187,0.000162,0.000273,0.000543,0.000543,0.001517,0.170201,-0.001798,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000184,0.000159,0.000271,0.000652,0.000652,0.001491,0.168322,-0.001879,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000181,0.000155,0.000269,0.000740,0.000740,0.001465,0.166385,-0.001937,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000178,0.000151,0.000267,0.000689,0.000689,0.001439,0.164528,-0.001858,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000174,0.000148,0.000265,0.000597,0.000597,0.001412,0.162789,-0.001739,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000171,0.000144,0.000263,0.000523,0.000523,0.001386,0.161150,-0.001639,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000168,0.000141,0.000261,0.000456,0.000456,0.001359,0.159601,-0.001549,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000164,0.000138,0.000259,0.000344,0.000344,0.001333,0.158186,-0.001415,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000161,0.000136,0.000257,0.000209,0.000209,0.001308,0.156926,-0.001260,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000158,0.000134,0.000256,0.000070,0.000070,0.001284,0.155821,-0.001105,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000155,0.000132,0.000254,0.000000,0.000000,0.001261,0.154802,-0.001019,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000152,0.000130,0.000253,0.000000,0.000000,0.001238,0.153799,-0.001003,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000150,0.000128,0.000252,0.000000,0.000000,0.001216,0.152810,-0.000988,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000147,0.000126,0.000250,0.000000,0.000000,0.001195,0.151837,-0.000973,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000144,0.000124,0.000249,0.000000,0.000000,0.001175,0.150878,-0.000959,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000142,0.000122,0.000248,0.000000,0.000000,0.001155,0.149934,-0.000944,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000140,0.000120,0.000247,0.000000,0.000000,0.001135,0.149005,-0.000930,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000137,0.000118,0.000246,0.000000,0.000000,0.001117,0.148089,-0.000916,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000135,0.000117,0.000245,0.000000,0.000000,0.001098,0.147187,-0.000902,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000133,0.000115,0.000244,0.000000,0.000000,0.001081,0.146299,-0.000888,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000131,0.000113,0.000243,0.000000,0.000000,0.001063,0.145424,-0.000875,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000128,0.000111,0.000243,0.000000,0.000000,0.001046,0.144562,-0.000862,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000126,0.000109,0.000242,0.000146,0.000146,0.001029,0.143570,-0.000992,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000124,0.000107,0.000241,0.000389,0.000389,0.001012,0.142353,-0.001217,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000122,0.000104,0.000240,0.000544,0.000544,0.000995,0.141002,-0.001351,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000120,0.000101,0.000240,0.000657,0.000657,0.000976,0.139561,-0.001441,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000117,0.000099,0.000239,0.000640,0.000640,0.000958,0.138157,-0.001404,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000115,0.000096,0.000238,0.000597,0.000597,0.000939,0.136879,-0.001277,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000113,0.000094,0.000237,0.000521,0.000521,0.000920,0.135696,-0.001184,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000110,0.000092,0.000236,0.000472,0.000472,0.000901,0.134578,-0.001118,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000108,0.000090,0.000235,0.000387,0.000387,0.000883,0.133562,-0.001016,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000129,0.000000,0.000000,0.000000,0.000128,0.000106,0.000088,0.000234,0.000305,0.000305,0.000865,0.132707,-0.000855,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000104,0.000086,0.000233,0.000187,0.000187,0.000847,0.131915,-0.000792,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000379,0.000003,0.000006,0.000003,0.000131,0.000102,0.000086,0.000236,0.000071,0.000071,0.000831,0.131554,-0.000361,1.000000,0.000003 +122,2022-08-06 02:00:00,0.000625,0.000016,0.000026,0.000016,0.000132,0.000100,0.000085,0.000248,0.000000,0.000000,0.000817,0.131493,-0.000061,1.000000,0.000013 +123,2022-08-06 03:00:00,0.000585,0.000020,0.000022,0.000020,0.000133,0.000098,0.000085,0.000252,0.000000,0.000000,0.000804,0.131396,-0.000097,1.000000,0.000015 +124,2022-08-06 04:00:00,0.000496,0.000020,0.000016,0.000020,0.000135,0.000097,0.000085,0.000251,0.000000,0.000000,0.000792,0.131219,-0.000177,1.000000,0.000012 +125,2022-08-06 05:00:00,0.000484,0.000017,0.000015,0.000017,0.000136,0.000095,0.000085,0.000248,0.000000,0.000000,0.000781,0.131033,-0.000186,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000484,0.000016,0.000015,0.000016,0.000137,0.000094,0.000084,0.000247,0.000000,0.000000,0.000771,0.130850,-0.000183,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000139,0.000093,0.000083,0.000238,0.000000,0.000000,0.000761,0.130209,-0.000641,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000140,0.000092,0.000082,0.000235,0.000000,0.000000,0.000751,0.129578,-0.000632,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000090,0.000080,0.000232,0.000000,0.000000,0.000741,0.128956,-0.000622,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000089,0.000079,0.000232,0.000000,0.000000,0.000730,0.128343,-0.000613,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000088,0.000078,0.000232,0.000000,0.000000,0.000720,0.127740,-0.000603,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000087,0.000077,0.000232,0.000000,0.000000,0.000710,0.127146,-0.000594,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000086,0.000076,0.000232,0.000000,0.000000,0.000701,0.126560,-0.000585,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000084,0.000074,0.000232,0.000129,0.000129,0.000691,0.125857,-0.000703,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000083,0.000072,0.000232,0.000373,0.000373,0.000680,0.124924,-0.000933,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000082,0.000070,0.000232,0.000528,0.000528,0.000669,0.123852,-0.001071,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000080,0.000068,0.000232,0.000636,0.000636,0.000656,0.122690,-0.001162,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000079,0.000066,0.000231,0.000718,0.000718,0.000643,0.121465,-0.001225,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000077,0.000063,0.000231,0.000672,0.000672,0.000630,0.120304,-0.001161,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000075,0.000061,0.000230,0.000589,0.000589,0.000616,0.119242,-0.001062,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000073,0.000059,0.000230,0.000528,0.000528,0.000602,0.118256,-0.000986,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000072,0.000057,0.000229,0.000453,0.000453,0.000587,0.117359,-0.000897,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000070,0.000056,0.000229,0.000341,0.000341,0.000573,0.116587,-0.000773,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000068,0.000055,0.000228,0.000199,0.000199,0.000560,0.115965,-0.000621,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000067,0.000054,0.000228,0.000057,0.000057,0.000547,0.115493,-0.000473,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000065,0.000053,0.000228,0.000000,0.000000,0.000535,0.115084,-0.000409,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000064,0.000052,0.000228,0.000000,0.000000,0.000523,0.114681,-0.000403,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000062,0.000051,0.000227,0.000000,0.000000,0.000512,0.114284,-0.000397,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000061,0.000051,0.000227,0.000000,0.000000,0.000501,0.113894,-0.000391,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000060,0.000050,0.000227,0.000000,0.000000,0.000491,0.113509,-0.000385,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000059,0.000049,0.000227,0.000000,0.000000,0.000482,0.113130,-0.000379,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000058,0.000048,0.000227,0.000000,0.000000,0.000472,0.112757,-0.000373,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000056,0.000048,0.000227,0.000000,0.000000,0.000463,0.112389,-0.000368,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000055,0.000047,0.000228,0.000000,0.000000,0.000455,0.112027,-0.000362,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000054,0.000046,0.000228,0.000000,0.000000,0.000447,0.111670,-0.000357,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000053,0.000045,0.000228,0.000000,0.000000,0.000439,0.111319,-0.000351,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000052,0.000045,0.000228,0.000000,0.000000,0.000431,0.110973,-0.000346,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000051,0.000044,0.000228,0.000125,0.000125,0.000423,0.110510,-0.000463,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000051,0.000042,0.000228,0.000372,0.000372,0.000415,0.109810,-0.000700,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000049,0.000041,0.000229,0.000530,0.000530,0.000406,0.108965,-0.000845,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000048,0.000039,0.000229,0.000642,0.000642,0.000397,0.108023,-0.000942,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000047,0.000037,0.000228,0.000705,0.000705,0.000387,0.107033,-0.000990,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000046,0.000035,0.000228,0.000654,0.000654,0.000376,0.106108,-0.000925,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000033,0.000228,0.000573,0.000573,0.000365,0.105277,-0.000831,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000043,0.000032,0.000228,0.000535,0.000535,0.000354,0.104496,-0.000781,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000042,0.000030,0.000227,0.000459,0.000459,0.000343,0.103801,-0.000695,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000029,0.000227,0.000342,0.000342,0.000332,0.103232,-0.000569,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000029,0.000227,0.000175,0.000175,0.000321,0.102836,-0.000396,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000028,0.000227,0.000026,0.000026,0.000312,0.102593,-0.000243,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000028,0.000227,0.000000,0.000000,0.000302,0.102379,-0.000214,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000027,0.000227,0.000000,0.000000,0.000294,0.102169,-0.000211,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000027,0.000227,0.000000,0.000000,0.000286,0.101961,-0.000207,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000034,0.000026,0.000227,0.000000,0.000000,0.000279,0.101757,-0.000204,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000026,0.000227,0.000000,0.000000,0.000272,0.101556,-0.000201,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000026,0.000228,0.000000,0.000000,0.000265,0.101357,-0.000198,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000025,0.000228,0.000000,0.000000,0.000259,0.101162,-0.000195,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000025,0.000228,0.000000,0.000000,0.000253,0.100970,-0.000192,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000229,0.000000,0.000000,0.000248,0.100781,-0.000189,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000024,0.000229,0.000000,0.000000,0.000242,0.100594,-0.000186,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000024,0.000229,0.000000,0.000000,0.000237,0.100410,-0.000184,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000230,0.000000,0.000000,0.000232,0.100229,-0.000181,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000230,0.000108,0.000108,0.000228,0.099945,-0.000285,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000231,0.000360,0.000360,0.000222,0.099416,-0.000529,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000020,0.000231,0.000520,0.000520,0.000217,0.098738,-0.000678,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000019,0.000231,0.000630,0.000630,0.000210,0.097962,-0.000776,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000017,0.000231,0.000710,0.000710,0.000203,0.097119,-0.000843,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000016,0.000231,0.000664,0.000664,0.000195,0.096334,-0.000785,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000014,0.000231,0.000577,0.000577,0.000186,0.095646,-0.000688,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000013,0.000231,0.000529,0.000529,0.000178,0.095016,-0.000630,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000012,0.000231,0.000457,0.000457,0.000169,0.094467,-0.000549,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000011,0.000231,0.000341,0.000341,0.000161,0.094040,-0.000427,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000011,0.000231,0.000196,0.000196,0.000153,0.093762,-0.000278,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000018,0.000010,0.000231,0.000043,0.000000,0.000146,0.093682,-0.000080,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000010,0.000231,0.000000,0.000000,0.000139,0.093603,-0.000079,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000010,0.000231,0.000000,0.000000,0.000133,0.093525,-0.000078,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000015,0.000010,0.000231,0.000000,0.000000,0.000127,0.093448,-0.000077,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000015,0.000010,0.000232,0.000000,0.000000,0.000122,0.093372,-0.000076,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000014,0.000010,0.000232,0.000000,0.000000,0.000118,0.093298,-0.000074,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000014,0.000009,0.000232,0.000000,0.000000,0.000113,0.093224,-0.000073,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000013,0.000009,0.000233,0.000000,0.000000,0.000110,0.093152,-0.000072,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000013,0.000009,0.000233,0.000000,0.000000,0.000106,0.093081,-0.000071,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000012,0.000009,0.000234,0.000000,0.000000,0.000103,0.093011,-0.000070,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000012,0.000009,0.000234,0.000000,0.000000,0.000099,0.092942,-0.000069,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000009,0.000235,0.000000,0.000000,0.000097,0.092874,-0.000068,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000011,0.000009,0.000235,0.000000,0.000000,0.000094,0.092807,-0.000067,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000011,0.000009,0.000236,0.000118,0.000000,0.000091,0.092741,-0.000066,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620801.csv b/test/channel_loss/channel_forcing/et/cat-2620801.csv new file mode 100644 index 000000000..947a2fc25 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620801.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000198,0.000000,0.000000,0.000000,0.000000,0.001439,0.000138,0.001439,0.000189,0.000189,0.010295,0.425911,-0.004814,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001261,0.000136,0.001261,0.000056,0.000056,0.009170,0.421095,-0.004817,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001111,0.000134,0.001111,0.000000,0.000000,0.008194,0.416395,-0.004700,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000983,0.000133,0.000983,0.000000,0.000000,0.007344,0.411754,-0.004640,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000131,0.000874,0.000000,0.000000,0.006600,0.407173,-0.004582,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000781,0.000129,0.000781,0.000000,0.000000,0.005949,0.402649,-0.004523,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000700,0.000128,0.000700,0.000000,0.000000,0.005377,0.398183,-0.004466,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000630,0.000126,0.000631,0.000000,0.000000,0.004873,0.393774,-0.004409,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000569,0.000124,0.000570,0.000000,0.000000,0.004429,0.389421,-0.004353,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000515,0.000123,0.000517,0.000000,0.000000,0.004036,0.385123,-0.004298,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000469,0.000121,0.000471,0.000000,0.000000,0.003688,0.380880,-0.004243,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000428,0.000120,0.000430,0.000000,0.000000,0.003380,0.376691,-0.004189,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000392,0.000118,0.000394,0.000000,0.000000,0.003107,0.372555,-0.004136,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000360,0.000117,0.000363,0.000000,0.000000,0.002864,0.368471,-0.004084,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000332,0.000115,0.000335,0.000141,0.000141,0.002647,0.364300,-0.004171,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000307,0.000114,0.000311,0.000392,0.000392,0.002454,0.359934,-0.004366,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000284,0.000112,0.000289,0.000550,0.000550,0.002282,0.355468,-0.004466,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000265,0.000110,0.000270,0.000650,0.000650,0.002128,0.350959,-0.004509,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000247,0.000109,0.000253,0.000579,0.000579,0.001989,0.346578,-0.004381,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000318,0.000000,0.000000,0.000000,0.000006,0.000231,0.000107,0.000238,0.000525,0.000525,0.001865,0.342620,-0.003958,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000301,0.000000,0.000000,0.000000,0.000007,0.000217,0.000106,0.000224,0.000465,0.000465,0.001754,0.338756,-0.003865,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000325,0.000000,0.000000,0.000000,0.000008,0.000204,0.000104,0.000212,0.000388,0.000388,0.001654,0.335039,-0.003716,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000257,0.000000,0.000000,0.000000,0.000009,0.000193,0.000103,0.000202,0.000339,0.000339,0.001564,0.331352,-0.003687,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000301,0.000000,0.000001,0.000000,0.000009,0.000183,0.000102,0.000193,0.000261,0.000261,0.001483,0.327831,-0.003521,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000341,0.000009,0.000015,0.000009,0.000010,0.000174,0.000101,0.000192,0.000160,0.000160,0.001410,0.324479,-0.003352,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000972,0.000159,0.000283,0.000159,0.000011,0.000165,0.000099,0.000336,0.000071,0.000071,0.001344,0.321616,-0.002862,1.000000,0.000130 +26,2022-08-02 02:00:00,0.001020,0.000264,0.000347,0.000264,0.000012,0.000158,0.000098,0.000434,0.000000,0.000000,0.001285,0.318845,-0.002771,1.000000,0.000213 +27,2022-08-02 03:00:00,0.000900,0.000297,0.000280,0.000297,0.000013,0.000151,0.000097,0.000461,0.000000,0.000000,0.001231,0.316056,-0.002789,1.000000,0.000195 +28,2022-08-02 04:00:00,0.000974,0.000315,0.000319,0.000315,0.000014,0.000145,0.000096,0.000473,0.000000,0.000000,0.001182,0.313337,-0.002719,1.000000,0.000199 +29,2022-08-02 05:00:00,0.000883,0.000284,0.000269,0.000284,0.000014,0.000140,0.000095,0.000438,0.000000,0.000000,0.001138,0.310612,-0.002725,1.000000,0.000185 +30,2022-08-02 06:00:00,0.000969,0.000304,0.000314,0.000304,0.000015,0.000135,0.000094,0.000454,0.000000,0.000000,0.001098,0.307963,-0.002650,1.000000,0.000195 +31,2022-08-02 07:00:00,0.000000,0.000132,0.000000,0.000132,0.000016,0.000130,0.000093,0.000279,0.000000,0.000000,0.001061,0.304700,-0.003263,1.000000,0.000063 +32,2022-08-02 08:00:00,0.000000,0.000063,0.000000,0.000063,0.000017,0.000126,0.000092,0.000206,0.000000,0.000000,0.001027,0.301478,-0.003222,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000122,0.000091,0.000140,0.000000,0.000000,0.000996,0.298297,-0.003181,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000118,0.000090,0.000138,0.000000,0.000000,0.000967,0.295157,-0.003140,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000115,0.000089,0.000136,0.000000,0.000000,0.000941,0.292057,-0.003100,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000112,0.000087,0.000134,0.000000,0.000000,0.000916,0.288996,-0.003061,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000002,0.000005,0.000002,0.000023,0.000109,0.000086,0.000134,0.000000,0.000000,0.000894,0.286068,-0.002928,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000100,0.000001,0.000000,0.000001,0.000024,0.000107,0.000085,0.000131,0.000119,0.000119,0.000872,0.283064,-0.003004,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000100,0.000001,0.000000,0.000001,0.000025,0.000104,0.000084,0.000130,0.000341,0.000341,0.000852,0.279880,-0.003185,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000102,0.000083,0.000128,0.000477,0.000477,0.000833,0.276601,-0.003279,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000100,0.000082,0.000127,0.000570,0.000570,0.000815,0.273236,-0.003365,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000028,0.000098,0.000081,0.000126,0.000643,0.000643,0.000798,0.270029,-0.003207,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000096,0.000079,0.000125,0.000591,0.000591,0.000782,0.266665,-0.003364,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000094,0.000078,0.000124,0.000521,0.000521,0.000767,0.263413,-0.003252,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000092,0.000077,0.000124,0.000510,0.000510,0.000752,0.260212,-0.003201,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000090,0.000076,0.000123,0.000440,0.000440,0.000738,0.257121,-0.003091,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000088,0.000075,0.000123,0.000332,0.000332,0.000724,0.254176,-0.002945,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000087,0.000074,0.000123,0.000195,0.000195,0.000711,0.251404,-0.002772,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000085,0.000073,0.000122,0.000042,0.000042,0.000698,0.248818,-0.002586,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000084,0.000072,0.000122,0.000000,0.000000,0.000686,0.246306,-0.002512,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000082,0.000071,0.000122,0.000000,0.000000,0.000675,0.243826,-0.002480,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000081,0.000070,0.000122,0.000000,0.000000,0.000664,0.241378,-0.002448,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000080,0.000069,0.000122,0.000000,0.000000,0.000654,0.238961,-0.002417,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000078,0.000068,0.000122,0.000000,0.000000,0.000643,0.236574,-0.002386,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000077,0.000067,0.000122,0.000000,0.000000,0.000633,0.234218,-0.002356,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000076,0.000066,0.000123,0.000000,0.000000,0.000624,0.231892,-0.002326,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000075,0.000066,0.000123,0.000000,0.000000,0.000615,0.229595,-0.002297,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000074,0.000065,0.000123,0.000000,0.000000,0.000606,0.227328,-0.002267,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000073,0.000064,0.000124,0.000000,0.000000,0.000597,0.225089,-0.002239,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000072,0.000063,0.000124,0.000000,0.000000,0.000589,0.222879,-0.002210,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000071,0.000062,0.000124,0.000000,0.000000,0.000580,0.220697,-0.002182,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000070,0.000062,0.000125,0.000136,0.000136,0.000572,0.218408,-0.002288,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000069,0.000061,0.000125,0.000395,0.000395,0.000564,0.215893,-0.002515,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000068,0.000060,0.000126,0.000548,0.000548,0.000556,0.213259,-0.002635,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000067,0.000059,0.000126,0.000651,0.000651,0.000548,0.210556,-0.002702,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000066,0.000058,0.000127,0.000660,0.000660,0.000540,0.207879,-0.002678,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000065,0.000057,0.000127,0.000616,0.000616,0.000532,0.205279,-0.002600,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000576,0.000000,0.000001,0.000000,0.000064,0.000064,0.000056,0.000128,0.000531,0.000531,0.000524,0.203364,-0.001915,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000189,0.000000,0.000000,0.000000,0.000066,0.000063,0.000055,0.000129,0.000502,0.000502,0.000516,0.201120,-0.002243,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000062,0.000054,0.000129,0.000433,0.000433,0.000509,0.198787,-0.002334,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000061,0.000054,0.000130,0.000328,0.000328,0.000501,0.196587,-0.002200,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000060,0.000053,0.000130,0.000196,0.000196,0.000494,0.194545,-0.002042,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000059,0.000052,0.000131,0.000056,0.000056,0.000487,0.192668,-0.001877,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000058,0.000051,0.000132,0.000000,0.000000,0.000480,0.190870,-0.001798,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000058,0.000051,0.000132,0.000000,0.000000,0.000473,0.189094,-0.001776,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000057,0.000050,0.000133,0.000000,0.000000,0.000467,0.187341,-0.001753,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000056,0.000049,0.000134,0.000000,0.000000,0.000460,0.185610,-0.001731,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000055,0.000049,0.000135,0.000000,0.000000,0.000454,0.183902,-0.001709,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000054,0.000048,0.000136,0.000000,0.000000,0.000448,0.182215,-0.001687,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000054,0.000048,0.000136,0.000000,0.000000,0.000442,0.180549,-0.001666,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000053,0.000047,0.000137,0.000000,0.000000,0.000436,0.178905,-0.001644,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000052,0.000046,0.000138,0.000000,0.000000,0.000430,0.177281,-0.001624,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000052,0.000046,0.000139,0.000000,0.000000,0.000424,0.175678,-0.001603,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000051,0.000045,0.000140,0.000000,0.000000,0.000418,0.174096,-0.001583,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000050,0.000045,0.000141,0.000000,0.000000,0.000413,0.172533,-0.001562,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000050,0.000044,0.000142,0.000130,0.000130,0.000407,0.170862,-0.001671,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000049,0.000043,0.000143,0.000390,0.000390,0.000402,0.168956,-0.001906,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000048,0.000043,0.000144,0.000546,0.000546,0.000396,0.166920,-0.002036,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000047,0.000042,0.000145,0.000653,0.000653,0.000391,0.164804,-0.002116,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000047,0.000041,0.000146,0.000735,0.000735,0.000385,0.162634,-0.002170,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000046,0.000040,0.000147,0.000687,0.000687,0.000379,0.160539,-0.002095,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000045,0.000040,0.000147,0.000593,0.000593,0.000373,0.158563,-0.001976,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000045,0.000039,0.000148,0.000520,0.000520,0.000368,0.156685,-0.001878,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000044,0.000038,0.000149,0.000451,0.000451,0.000362,0.154899,-0.001786,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000043,0.000038,0.000150,0.000343,0.000343,0.000356,0.153241,-0.001658,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000043,0.000037,0.000151,0.000206,0.000206,0.000351,0.151740,-0.001501,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000042,0.000037,0.000152,0.000068,0.000068,0.000345,0.150394,-0.001346,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000041,0.000036,0.000153,0.000000,0.000000,0.000340,0.149133,-0.001261,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000041,0.000036,0.000154,0.000000,0.000000,0.000335,0.147888,-0.001245,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000040,0.000035,0.000155,0.000000,0.000000,0.000330,0.146658,-0.001230,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000039,0.000035,0.000156,0.000000,0.000000,0.000325,0.145444,-0.001214,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000039,0.000034,0.000157,0.000000,0.000000,0.000321,0.144246,-0.001198,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000038,0.000034,0.000158,0.000000,0.000000,0.000316,0.143063,-0.001183,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000038,0.000033,0.000160,0.000000,0.000000,0.000312,0.141894,-0.001168,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000037,0.000033,0.000161,0.000000,0.000000,0.000307,0.140741,-0.001153,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000037,0.000033,0.000162,0.000000,0.000000,0.000303,0.139602,-0.001139,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000036,0.000032,0.000163,0.000000,0.000000,0.000299,0.138478,-0.001124,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000036,0.000032,0.000164,0.000000,0.000000,0.000295,0.137368,-0.001110,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000035,0.000031,0.000165,0.000000,0.000000,0.000291,0.136272,-0.001096,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000035,0.000031,0.000166,0.000143,0.000143,0.000287,0.135049,-0.001223,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000034,0.000030,0.000167,0.000392,0.000392,0.000283,0.133596,-0.001453,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000034,0.000030,0.000169,0.000548,0.000548,0.000279,0.132007,-0.001589,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000033,0.000029,0.000170,0.000655,0.000655,0.000275,0.130333,-0.001674,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000033,0.000029,0.000171,0.000639,0.000639,0.000271,0.128696,-0.001637,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000140,0.000032,0.000028,0.000172,0.000592,0.000592,0.000266,0.127188,-0.001508,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000032,0.000027,0.000173,0.000507,0.000507,0.000262,0.125783,-0.001405,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000031,0.000027,0.000174,0.000460,0.000460,0.000258,0.124442,-0.001341,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000144,0.000031,0.000027,0.000175,0.000381,0.000381,0.000253,0.123197,-0.001246,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000146,0.000030,0.000026,0.000176,0.000303,0.000303,0.000249,0.122169,-0.001028,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000148,0.000030,0.000026,0.000177,0.000185,0.000185,0.000245,0.121145,-0.001023,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000444,0.000025,0.000045,0.000025,0.000149,0.000029,0.000026,0.000203,0.000069,0.000069,0.000242,0.120580,-0.000565,1.000000,0.000020 +122,2022-08-06 02:00:00,0.000747,0.000100,0.000161,0.000100,0.000151,0.000029,0.000025,0.000280,0.000000,0.000000,0.000238,0.120276,-0.000304,1.000000,0.000081 +123,2022-08-06 03:00:00,0.000694,0.000127,0.000141,0.000127,0.000152,0.000028,0.000025,0.000308,0.000000,0.000000,0.000235,0.119944,-0.000333,1.000000,0.000096 +124,2022-08-06 04:00:00,0.000578,0.000123,0.000101,0.000123,0.000154,0.000028,0.000025,0.000305,0.000000,0.000000,0.000232,0.119540,-0.000404,1.000000,0.000074 +125,2022-08-06 05:00:00,0.000593,0.000112,0.000106,0.000112,0.000156,0.000028,0.000025,0.000295,0.000000,0.000000,0.000229,0.119152,-0.000389,1.000000,0.000068 +126,2022-08-06 06:00:00,0.000595,0.000105,0.000107,0.000105,0.000157,0.000027,0.000025,0.000290,0.000000,0.000000,0.000227,0.118770,-0.000382,1.000000,0.000069 +127,2022-08-06 07:00:00,0.000000,0.000048,0.000000,0.000048,0.000159,0.000027,0.000025,0.000234,0.000000,0.000000,0.000224,0.117910,-0.000860,1.000000,0.000021 +128,2022-08-06 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000160,0.000027,0.000024,0.000209,0.000000,0.000000,0.000222,0.117061,-0.000849,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000027,0.000024,0.000188,0.000000,0.000000,0.000219,0.116223,-0.000838,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000026,0.000024,0.000190,0.000000,0.000000,0.000216,0.115396,-0.000827,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000026,0.000023,0.000191,0.000000,0.000000,0.000214,0.114579,-0.000817,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000026,0.000023,0.000192,0.000000,0.000000,0.000211,0.113773,-0.000806,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000025,0.000023,0.000194,0.000000,0.000000,0.000209,0.112977,-0.000796,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000025,0.000022,0.000195,0.000125,0.000125,0.000206,0.112067,-0.000910,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000025,0.000022,0.000196,0.000375,0.000375,0.000204,0.110923,-0.001144,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000024,0.000022,0.000197,0.000531,0.000531,0.000201,0.109639,-0.001284,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000024,0.000021,0.000198,0.000636,0.000636,0.000198,0.108267,-0.001371,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000024,0.000020,0.000200,0.000715,0.000715,0.000195,0.106835,-0.001432,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000023,0.000020,0.000201,0.000667,0.000667,0.000192,0.105469,-0.001367,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000023,0.000020,0.000202,0.000583,0.000583,0.000188,0.104203,-0.001266,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000022,0.000019,0.000203,0.000524,0.000524,0.000185,0.103011,-0.001192,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000022,0.000019,0.000204,0.000449,0.000449,0.000182,0.101908,-0.001103,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000022,0.000018,0.000205,0.000340,0.000340,0.000178,0.100927,-0.000981,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000021,0.000018,0.000206,0.000199,0.000199,0.000175,0.100098,-0.000829,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000021,0.000018,0.000207,0.000055,0.000055,0.000172,0.099421,-0.000677,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000020,0.000018,0.000209,0.000000,0.000000,0.000169,0.098807,-0.000614,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000020,0.000017,0.000210,0.000000,0.000000,0.000166,0.098201,-0.000606,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000020,0.000017,0.000211,0.000000,0.000000,0.000164,0.097603,-0.000598,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000019,0.000017,0.000212,0.000000,0.000000,0.000161,0.097012,-0.000591,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000019,0.000017,0.000213,0.000000,0.000000,0.000158,0.096429,-0.000583,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000019,0.000016,0.000214,0.000000,0.000000,0.000156,0.095853,-0.000576,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000019,0.000016,0.000216,0.000000,0.000000,0.000154,0.095285,-0.000568,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000018,0.000016,0.000217,0.000000,0.000000,0.000151,0.094724,-0.000561,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000018,0.000016,0.000218,0.000000,0.000000,0.000149,0.094169,-0.000554,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000016,0.000219,0.000000,0.000000,0.000147,0.093622,-0.000547,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000015,0.000220,0.000000,0.000000,0.000145,0.093082,-0.000540,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000017,0.000015,0.000222,0.000000,0.000000,0.000143,0.092549,-0.000533,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000015,0.000223,0.000121,0.000000,0.000141,0.092022,-0.000527,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000015,0.000224,0.000372,0.000000,0.000139,0.091503,-0.000520,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000015,0.000225,0.000533,0.000000,0.000137,0.090989,-0.000513,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000014,0.000226,0.000638,0.000000,0.000135,0.090483,-0.000507,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000016,0.000014,0.000228,0.000703,0.000000,0.000133,0.089982,-0.000500,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000014,0.000229,0.000649,0.000000,0.000131,0.089489,-0.000494,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000016,0.000014,0.000230,0.000566,0.000000,0.000130,0.089001,-0.000488,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000015,0.000014,0.000231,0.000532,0.000000,0.000128,0.088519,-0.000481,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000015,0.000014,0.000232,0.000456,0.000000,0.000126,0.088044,-0.000475,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000013,0.000234,0.000344,0.000000,0.000125,0.087575,-0.000469,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000013,0.000235,0.000174,0.000000,0.000123,0.087112,-0.000463,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000013,0.000236,0.000022,0.000000,0.000121,0.086654,-0.000457,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000013,0.000237,0.000000,0.000000,0.000120,0.086202,-0.000452,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000013,0.000238,0.000000,0.000000,0.000118,0.085757,-0.000446,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000013,0.000239,0.000000,0.000000,0.000117,0.085316,-0.000440,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000012,0.000241,0.000000,0.000000,0.000115,0.084882,-0.000435,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000114,0.084453,-0.000429,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000000,0.000000,0.000112,0.084029,-0.000424,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000012,0.000244,0.000000,0.000000,0.000111,0.083611,-0.000418,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000012,0.000245,0.000000,0.000000,0.000109,0.083198,-0.000413,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000012,0.000246,0.000000,0.000000,0.000108,0.082790,-0.000408,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000012,0.000247,0.000000,0.000000,0.000107,0.082387,-0.000403,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000105,0.081990,-0.000397,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000104,0.081598,-0.000392,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000251,0.000105,0.000000,0.000103,0.081210,-0.000387,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000252,0.000361,0.000000,0.000101,0.080828,-0.000382,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000011,0.000253,0.000523,0.000000,0.000100,0.080450,-0.000378,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000011,0.000254,0.000627,0.000000,0.000099,0.080077,-0.000373,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000012,0.000011,0.000255,0.000708,0.000000,0.000097,0.079709,-0.000368,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000012,0.000010,0.000256,0.000660,0.000000,0.000096,0.079346,-0.000363,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000011,0.000010,0.000258,0.000568,0.000000,0.000095,0.078987,-0.000359,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000259,0.000527,0.000000,0.000094,0.078633,-0.000354,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000010,0.000260,0.000454,0.000000,0.000093,0.078283,-0.000350,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000011,0.000010,0.000261,0.000343,0.000000,0.000091,0.077938,-0.000345,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000011,0.000010,0.000262,0.000196,0.000000,0.000090,0.077597,-0.000341,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000011,0.000010,0.000263,0.000042,0.000000,0.000089,0.077260,-0.000337,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000011,0.000009,0.000264,0.000000,0.000000,0.000088,0.076928,-0.000332,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000010,0.000009,0.000265,0.000000,0.000000,0.000087,0.076600,-0.000328,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000010,0.000009,0.000266,0.000000,0.000000,0.000086,0.076276,-0.000324,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000010,0.000009,0.000267,0.000000,0.000000,0.000085,0.075956,-0.000320,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000010,0.000009,0.000268,0.000000,0.000000,0.000084,0.075641,-0.000316,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000010,0.000009,0.000269,0.000000,0.000000,0.000082,0.075329,-0.000312,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000010,0.000009,0.000270,0.000000,0.000000,0.000081,0.075021,-0.000308,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000010,0.000009,0.000271,0.000000,0.000000,0.000080,0.074717,-0.000304,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000010,0.000009,0.000272,0.000000,0.000000,0.000079,0.074417,-0.000300,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000009,0.000008,0.000274,0.000000,0.000000,0.000078,0.074121,-0.000296,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000009,0.000008,0.000275,0.000000,0.000000,0.000077,0.073829,-0.000292,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000009,0.000008,0.000276,0.000000,0.000000,0.000076,0.073540,-0.000289,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000009,0.000008,0.000277,0.000115,0.000000,0.000075,0.073255,-0.000285,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620802.csv b/test/channel_loss/channel_forcing/et/cat-2620802.csv new file mode 100644 index 000000000..6f062c0d9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620802.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000234,0.000000,0.000001,0.000000,0.000000,0.001467,0.000339,0.001468,0.000186,0.000186,0.010468,0.425878,-0.004778,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001311,0.000334,0.001311,0.000054,0.000054,0.009492,0.421066,-0.004812,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001179,0.000330,0.001179,0.000000,0.000000,0.008642,0.416374,-0.004692,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001066,0.000325,0.001066,0.000000,0.000000,0.007901,0.411747,-0.004627,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000970,0.000321,0.000970,0.000000,0.000000,0.007252,0.407183,-0.004564,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000886,0.000316,0.000887,0.000000,0.000000,0.006682,0.402682,-0.004501,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000814,0.000312,0.000814,0.000000,0.000000,0.006181,0.398243,-0.004439,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000751,0.000308,0.000751,0.000000,0.000000,0.005738,0.393865,-0.004378,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000303,0.000697,0.000000,0.000000,0.005346,0.389548,-0.004317,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000647,0.000299,0.000648,0.000000,0.000000,0.004998,0.385290,-0.004258,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000604,0.000295,0.000606,0.000000,0.000000,0.004689,0.381091,-0.004199,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000567,0.000291,0.000569,0.000000,0.000000,0.004413,0.376949,-0.004141,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000533,0.000287,0.000536,0.000000,0.000000,0.004167,0.372865,-0.004084,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000283,0.000506,0.000000,0.000000,0.003947,0.368837,-0.004028,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000477,0.000279,0.000480,0.000139,0.000139,0.003749,0.364727,-0.004109,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000453,0.000275,0.000457,0.000393,0.000393,0.003570,0.360424,-0.004304,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000432,0.000271,0.000436,0.000551,0.000551,0.003409,0.356024,-0.004400,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000412,0.000266,0.000417,0.000647,0.000647,0.003263,0.351590,-0.004434,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000395,0.000262,0.000400,0.000570,0.000570,0.003130,0.347292,-0.004298,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000006,0.000379,0.000258,0.000385,0.000514,0.000514,0.003010,0.343420,-0.003872,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000365,0.000254,0.000371,0.000455,0.000455,0.002899,0.339598,-0.003822,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000317,0.000000,0.000000,0.000000,0.000007,0.000351,0.000251,0.000359,0.000387,0.000387,0.002799,0.335959,-0.003639,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000339,0.000247,0.000348,0.000338,0.000338,0.002707,0.332355,-0.003604,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000328,0.000244,0.000337,0.000260,0.000260,0.002622,0.328878,-0.003477,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000253,0.000001,0.000002,0.000001,0.000010,0.000318,0.000241,0.000329,0.000158,0.000158,0.002545,0.325549,-0.003330,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000635,0.000032,0.000057,0.000032,0.000010,0.000309,0.000238,0.000351,0.000069,0.000069,0.002473,0.322674,-0.002875,1.000000,0.000026 +26,2022-08-02 02:00:00,0.000926,0.000093,0.000143,0.000093,0.000011,0.000301,0.000235,0.000405,0.000000,0.000000,0.002408,0.320109,-0.002565,1.000000,0.000076 +27,2022-08-02 03:00:00,0.000926,0.000125,0.000142,0.000125,0.000012,0.000293,0.000233,0.000430,0.000000,0.000000,0.002348,0.317580,-0.002529,1.000000,0.000093 +28,2022-08-02 04:00:00,0.000953,0.000147,0.000150,0.000147,0.000013,0.000286,0.000230,0.000445,0.000000,0.000000,0.002292,0.315105,-0.002474,1.000000,0.000096 +29,2022-08-02 05:00:00,0.000869,0.000135,0.000126,0.000135,0.000014,0.000279,0.000228,0.000428,0.000000,0.000000,0.002241,0.312606,-0.002499,1.000000,0.000087 +30,2022-08-02 06:00:00,0.000898,0.000135,0.000133,0.000135,0.000015,0.000273,0.000226,0.000422,0.000000,0.000000,0.002194,0.310162,-0.002444,1.000000,0.000085 +31,2022-08-02 07:00:00,0.000000,0.000058,0.000000,0.000058,0.000016,0.000267,0.000222,0.000341,0.000000,0.000000,0.002149,0.306998,-0.003165,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000016,0.000262,0.000219,0.000305,0.000000,0.000000,0.002106,0.303877,-0.003121,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000257,0.000216,0.000274,0.000000,0.000000,0.002066,0.300799,-0.003078,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000252,0.000213,0.000270,0.000000,0.000000,0.002027,0.297763,-0.003036,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000247,0.000210,0.000266,0.000000,0.000000,0.001991,0.294770,-0.002994,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000243,0.000207,0.000263,0.000000,0.000000,0.001955,0.291817,-0.002953,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000021,0.000238,0.000205,0.000261,0.000000,0.000000,0.001922,0.289002,-0.002815,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000234,0.000202,0.000257,0.000118,0.000118,0.001889,0.286112,-0.002890,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000230,0.000199,0.000254,0.000344,0.000344,0.001858,0.283038,-0.003074,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000025,0.000226,0.000196,0.000251,0.000480,0.000480,0.001827,0.279872,-0.003166,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000223,0.000193,0.000248,0.000571,0.000571,0.001798,0.276660,-0.003212,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000392,0.000000,0.000000,0.000000,0.000027,0.000219,0.000190,0.000246,0.000639,0.000639,0.001768,0.273714,-0.002947,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000215,0.000187,0.000243,0.000582,0.000582,0.001740,0.270477,-0.003236,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000212,0.000183,0.000241,0.000516,0.000516,0.001712,0.267351,-0.003127,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000208,0.000180,0.000238,0.000514,0.000514,0.001684,0.264269,-0.003082,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000205,0.000178,0.000236,0.000443,0.000443,0.001657,0.261300,-0.002969,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000201,0.000175,0.000234,0.000332,0.000332,0.001630,0.258481,-0.002819,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000198,0.000172,0.000232,0.000192,0.000192,0.001604,0.255838,-0.002642,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000195,0.000170,0.000230,0.000039,0.000039,0.001579,0.253383,-0.002455,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000192,0.000167,0.000228,0.000000,0.000000,0.001555,0.251001,-0.002382,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000189,0.000165,0.000226,0.000000,0.000000,0.001531,0.248651,-0.002350,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000186,0.000163,0.000225,0.000000,0.000000,0.001508,0.246334,-0.002317,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000183,0.000161,0.000223,0.000000,0.000000,0.001485,0.244048,-0.002285,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000180,0.000158,0.000222,0.000000,0.000000,0.001463,0.241794,-0.002254,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000178,0.000156,0.000220,0.000000,0.000000,0.001442,0.239572,-0.002223,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000175,0.000154,0.000219,0.000000,0.000000,0.001421,0.237379,-0.002192,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000172,0.000152,0.000218,0.000000,0.000000,0.001400,0.235217,-0.002162,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000170,0.000150,0.000216,0.000000,0.000000,0.001380,0.233085,-0.002132,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000167,0.000148,0.000215,0.000000,0.000000,0.001361,0.230982,-0.002103,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000165,0.000146,0.000214,0.000000,0.000000,0.001341,0.228908,-0.002074,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000163,0.000144,0.000213,0.000000,0.000000,0.001322,0.226863,-0.002045,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000160,0.000142,0.000212,0.000133,0.000133,0.001304,0.224715,-0.002148,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000158,0.000139,0.000211,0.000395,0.000395,0.001285,0.222338,-0.002377,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000156,0.000137,0.000210,0.000549,0.000549,0.001266,0.219842,-0.002496,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000153,0.000134,0.000209,0.000646,0.000646,0.001247,0.217285,-0.002557,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000151,0.000132,0.000208,0.000649,0.000649,0.001228,0.214759,-0.002525,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000149,0.000129,0.000207,0.000599,0.000599,0.001209,0.212318,-0.002441,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000546,0.000000,0.000000,0.000000,0.000060,0.000146,0.000128,0.000206,0.000521,0.000521,0.001191,0.210525,-0.001792,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000167,0.000000,0.000000,0.000000,0.000062,0.000144,0.000126,0.000206,0.000501,0.000501,0.001172,0.208403,-0.002122,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000142,0.000123,0.000205,0.000431,0.000431,0.001154,0.206215,-0.002188,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000139,0.000121,0.000204,0.000325,0.000325,0.001136,0.204162,-0.002053,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000137,0.000120,0.000203,0.000193,0.000193,0.001119,0.202267,-0.001895,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000135,0.000118,0.000202,0.000053,0.000053,0.001102,0.200536,-0.001731,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000133,0.000116,0.000202,0.000000,0.000000,0.001085,0.198882,-0.001655,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000131,0.000115,0.000201,0.000000,0.000000,0.001068,0.197250,-0.001632,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000129,0.000113,0.000201,0.000000,0.000000,0.001053,0.195641,-0.001609,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000127,0.000112,0.000200,0.000000,0.000000,0.001037,0.194054,-0.001587,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000125,0.000110,0.000200,0.000000,0.000000,0.001022,0.192488,-0.001565,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000123,0.000108,0.000199,0.000000,0.000000,0.001007,0.190945,-0.001544,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000122,0.000107,0.000199,0.000000,0.000000,0.000992,0.189422,-0.001522,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000120,0.000106,0.000199,0.000000,0.000000,0.000978,0.187921,-0.001501,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000118,0.000104,0.000198,0.000000,0.000000,0.000964,0.186440,-0.001481,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000116,0.000103,0.000198,0.000000,0.000000,0.000951,0.184979,-0.001460,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000115,0.000101,0.000198,0.000000,0.000000,0.000937,0.183539,-0.001440,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000113,0.000100,0.000198,0.000000,0.000000,0.000924,0.182119,-0.001420,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000111,0.000098,0.000198,0.000128,0.000128,0.000911,0.180592,-0.001527,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000110,0.000097,0.000198,0.000390,0.000390,0.000898,0.178828,-0.001764,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000108,0.000095,0.000197,0.000547,0.000547,0.000884,0.176933,-0.001895,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000106,0.000093,0.000197,0.000648,0.000648,0.000871,0.174965,-0.001968,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000105,0.000091,0.000197,0.000723,0.000723,0.000857,0.172950,-0.002015,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000103,0.000089,0.000197,0.000669,0.000669,0.000843,0.171015,-0.001935,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000101,0.000087,0.000196,0.000582,0.000582,0.000829,0.169193,-0.001822,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000100,0.000085,0.000196,0.000521,0.000521,0.000815,0.167457,-0.001736,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000098,0.000084,0.000196,0.000452,0.000452,0.000801,0.165812,-0.001644,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000096,0.000082,0.000196,0.000343,0.000343,0.000787,0.164298,-0.001514,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000094,0.000081,0.000196,0.000203,0.000203,0.000773,0.162942,-0.001356,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000093,0.000080,0.000195,0.000064,0.000064,0.000760,0.161742,-0.001200,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000091,0.000079,0.000195,0.000000,0.000000,0.000748,0.160622,-0.001120,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000090,0.000078,0.000195,0.000000,0.000000,0.000736,0.159517,-0.001105,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000088,0.000077,0.000195,0.000000,0.000000,0.000724,0.158427,-0.001090,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000087,0.000076,0.000196,0.000000,0.000000,0.000713,0.157353,-0.001075,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000086,0.000074,0.000196,0.000000,0.000000,0.000701,0.156293,-0.001060,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000084,0.000073,0.000196,0.000000,0.000000,0.000691,0.155248,-0.001045,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000083,0.000072,0.000196,0.000000,0.000000,0.000680,0.154217,-0.001031,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000082,0.000071,0.000196,0.000000,0.000000,0.000670,0.153200,-0.001017,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000080,0.000070,0.000196,0.000000,0.000000,0.000660,0.152198,-0.001003,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000079,0.000069,0.000197,0.000000,0.000000,0.000650,0.151209,-0.000989,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000078,0.000069,0.000197,0.000000,0.000000,0.000641,0.150234,-0.000975,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000077,0.000068,0.000197,0.000000,0.000000,0.000631,0.149272,-0.000962,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000076,0.000067,0.000198,0.000141,0.000141,0.000622,0.148185,-0.001087,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000075,0.000065,0.000198,0.000393,0.000393,0.000613,0.146864,-0.001321,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000073,0.000064,0.000198,0.000548,0.000548,0.000603,0.145408,-0.001456,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000072,0.000062,0.000199,0.000650,0.000650,0.000593,0.143872,-0.001536,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000071,0.000061,0.000199,0.000632,0.000632,0.000583,0.142374,-0.001498,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000070,0.000059,0.000199,0.000581,0.000581,0.000573,0.141010,-0.001365,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000068,0.000058,0.000199,0.000502,0.000502,0.000562,0.139742,-0.001267,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000067,0.000057,0.000199,0.000463,0.000463,0.000552,0.138531,-0.001212,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000068,0.000000,0.000000,0.000000,0.000134,0.000066,0.000056,0.000200,0.000385,0.000385,0.000542,0.137418,-0.001112,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000135,0.000065,0.000055,0.000200,0.000304,0.000304,0.000532,0.136520,-0.000898,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000068,0.000000,0.000000,0.000000,0.000137,0.000064,0.000054,0.000200,0.000185,0.000185,0.000523,0.135633,-0.000887,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000466,0.000012,0.000022,0.000012,0.000138,0.000063,0.000054,0.000213,0.000067,0.000067,0.000514,0.135243,-0.000389,1.000000,0.000010 +122,2022-08-06 02:00:00,0.000712,0.000042,0.000067,0.000042,0.000139,0.000062,0.000054,0.000244,0.000000,0.000000,0.000506,0.135124,-0.000119,1.000000,0.000035 +123,2022-08-06 03:00:00,0.000715,0.000058,0.000068,0.000058,0.000141,0.000061,0.000054,0.000260,0.000000,0.000000,0.000499,0.135009,-0.000115,1.000000,0.000044 +124,2022-08-06 04:00:00,0.000608,0.000058,0.000050,0.000058,0.000142,0.000060,0.000053,0.000260,0.000000,0.000000,0.000493,0.134808,-0.000201,1.000000,0.000036 +125,2022-08-06 05:00:00,0.000608,0.000053,0.000050,0.000053,0.000144,0.000059,0.000053,0.000256,0.000000,0.000000,0.000487,0.134610,-0.000198,1.000000,0.000032 +126,2022-08-06 06:00:00,0.000638,0.000052,0.000054,0.000052,0.000145,0.000059,0.000053,0.000256,0.000000,0.000000,0.000481,0.134438,-0.000171,1.000000,0.000034 +127,2022-08-06 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000147,0.000058,0.000052,0.000228,0.000000,0.000000,0.000476,0.133694,-0.000744,1.000000,0.000011 +128,2022-08-06 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000148,0.000057,0.000052,0.000216,0.000000,0.000000,0.000470,0.132960,-0.000734,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000056,0.000051,0.000206,0.000000,0.000000,0.000464,0.132237,-0.000724,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000056,0.000050,0.000207,0.000000,0.000000,0.000459,0.131523,-0.000714,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000055,0.000049,0.000207,0.000000,0.000000,0.000453,0.130819,-0.000704,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000049,0.000208,0.000000,0.000000,0.000448,0.130125,-0.000694,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000054,0.000048,0.000209,0.000000,0.000000,0.000442,0.129440,-0.000685,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000047,0.000210,0.000123,0.000123,0.000436,0.128643,-0.000796,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000052,0.000046,0.000210,0.000376,0.000376,0.000430,0.127609,-0.001035,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000052,0.000045,0.000211,0.000532,0.000532,0.000424,0.126434,-0.001175,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000044,0.000211,0.000631,0.000631,0.000417,0.125178,-0.001256,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000050,0.000043,0.000212,0.000705,0.000705,0.000410,0.123866,-0.001312,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000041,0.000212,0.000651,0.000651,0.000403,0.122625,-0.001241,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000040,0.000213,0.000572,0.000572,0.000395,0.121479,-0.001146,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000039,0.000213,0.000525,0.000525,0.000387,0.120396,-0.001083,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000038,0.000214,0.000449,0.000449,0.000379,0.119402,-0.000994,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000037,0.000214,0.000339,0.000339,0.000372,0.118531,-0.000871,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000044,0.000037,0.000215,0.000196,0.000196,0.000364,0.117813,-0.000718,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000036,0.000215,0.000052,0.000052,0.000357,0.117247,-0.000566,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000043,0.000036,0.000216,0.000000,0.000000,0.000350,0.116739,-0.000507,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000035,0.000216,0.000000,0.000000,0.000344,0.116239,-0.000500,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000217,0.000000,0.000000,0.000337,0.115745,-0.000493,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000040,0.000034,0.000217,0.000000,0.000000,0.000331,0.115259,-0.000487,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000034,0.000218,0.000000,0.000000,0.000326,0.114779,-0.000480,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000033,0.000218,0.000000,0.000000,0.000320,0.114305,-0.000473,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000033,0.000219,0.000000,0.000000,0.000315,0.113839,-0.000467,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000032,0.000220,0.000000,0.000000,0.000309,0.113378,-0.000460,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000032,0.000221,0.000000,0.000000,0.000304,0.112924,-0.000454,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000031,0.000221,0.000000,0.000000,0.000300,0.112476,-0.000448,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000031,0.000222,0.000000,0.000000,0.000295,0.112035,-0.000442,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000031,0.000223,0.000000,0.000000,0.000290,0.111599,-0.000436,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000030,0.000223,0.000119,0.000119,0.000286,0.111052,-0.000547,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000029,0.000224,0.000372,0.000372,0.000281,0.110263,-0.000789,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000028,0.000225,0.000533,0.000533,0.000276,0.109326,-0.000937,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000027,0.000225,0.000635,0.000635,0.000270,0.108302,-0.001024,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000026,0.000226,0.000692,0.000692,0.000265,0.107236,-0.001067,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000025,0.000226,0.000634,0.000634,0.000259,0.106241,-0.000995,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000024,0.000227,0.000554,0.000554,0.000253,0.105339,-0.000902,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000227,0.000528,0.000528,0.000246,0.104474,-0.000864,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000023,0.000228,0.000454,0.000454,0.000240,0.103695,-0.000780,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000022,0.000228,0.000341,0.000341,0.000234,0.103037,-0.000657,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000022,0.000229,0.000171,0.000171,0.000228,0.102558,-0.000480,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000021,0.000229,0.000019,0.000019,0.000222,0.102233,-0.000324,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000000,0.000000,0.000217,0.101933,-0.000301,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000000,0.000000,0.000212,0.101637,-0.000296,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000021,0.000231,0.000000,0.000000,0.000208,0.101344,-0.000292,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000020,0.000232,0.000000,0.000000,0.000203,0.101056,-0.000288,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000233,0.000000,0.000000,0.000199,0.100772,-0.000284,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000233,0.000000,0.000000,0.000195,0.100491,-0.000280,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000192,0.100215,-0.000277,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000188,0.099942,-0.000273,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000000,0.000000,0.000184,0.099673,-0.000269,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000236,0.000000,0.000000,0.000181,0.099408,-0.000265,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000237,0.000000,0.000000,0.000178,0.099146,-0.000262,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000238,0.000000,0.000000,0.000175,0.098888,-0.000258,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000238,0.000103,0.000103,0.000172,0.098531,-0.000356,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000239,0.000361,0.000361,0.000169,0.097926,-0.000605,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000016,0.000240,0.000522,0.000522,0.000165,0.097170,-0.000756,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000016,0.000240,0.000622,0.000622,0.000161,0.096326,-0.000844,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000015,0.000241,0.000700,0.000700,0.000157,0.095416,-0.000909,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000014,0.000242,0.000640,0.000640,0.000152,0.094578,-0.000838,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000013,0.000242,0.000556,0.000556,0.000148,0.093835,-0.000744,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000013,0.000243,0.000527,0.000000,0.000143,0.093650,-0.000185,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000013,0.000243,0.000453,0.000000,0.000139,0.093468,-0.000182,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000013,0.000244,0.000340,0.000000,0.000136,0.093288,-0.000180,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000012,0.000244,0.000193,0.000000,0.000132,0.093110,-0.000177,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000012,0.000245,0.000039,0.000000,0.000129,0.092936,-0.000175,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000012,0.000246,0.000000,0.000000,0.000126,0.092763,-0.000172,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000012,0.000246,0.000000,0.000000,0.000123,0.092593,-0.000170,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000247,0.000000,0.000000,0.000120,0.092425,-0.000168,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000012,0.000248,0.000000,0.000000,0.000117,0.092260,-0.000165,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000249,0.000000,0.000000,0.000115,0.092097,-0.000163,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000011,0.000249,0.000000,0.000000,0.000113,0.091936,-0.000161,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000110,0.091777,-0.000159,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000251,0.000000,0.000000,0.000108,0.091620,-0.000157,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000252,0.000000,0.000000,0.000106,0.091466,-0.000154,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000013,0.000011,0.000252,0.000000,0.000000,0.000104,0.091314,-0.000152,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000011,0.000253,0.000000,0.000000,0.000103,0.091164,-0.000150,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000254,0.000000,0.000000,0.000101,0.091016,-0.000148,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000010,0.000255,0.000112,0.000000,0.000099,0.090869,-0.000146,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620803.csv b/test/channel_loss/channel_forcing/et/cat-2620803.csv new file mode 100644 index 000000000..6e2d0caf1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620803.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001444,0.000174,0.001444,0.000148,0.000148,0.010326,0.426019,-0.004831,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001270,0.000172,0.001270,0.000036,0.000036,0.009228,0.421300,-0.004719,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001123,0.000170,0.001123,0.000000,0.000000,0.008275,0.416678,-0.004622,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000998,0.000167,0.000998,0.000000,0.000000,0.007444,0.412116,-0.004562,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000891,0.000165,0.000892,0.000000,0.000000,0.006718,0.407613,-0.004502,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000800,0.000163,0.000800,0.000000,0.000000,0.006082,0.403170,-0.004443,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000720,0.000161,0.000721,0.000000,0.000000,0.005523,0.398784,-0.004385,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000651,0.000159,0.000652,0.000000,0.000000,0.005030,0.394456,-0.004328,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000592,0.000157,0.000593,0.000000,0.000000,0.004595,0.390185,-0.004271,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000539,0.000155,0.000541,0.000000,0.000000,0.004211,0.385969,-0.004216,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000493,0.000153,0.000495,0.000000,0.000000,0.003870,0.381809,-0.004160,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000453,0.000151,0.000455,0.000000,0.000000,0.003568,0.377703,-0.004106,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000417,0.000149,0.000420,0.000000,0.000000,0.003300,0.373650,-0.004052,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000386,0.000147,0.000389,0.000000,0.000000,0.003061,0.369651,-0.003999,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000358,0.000145,0.000361,0.000124,0.000124,0.002848,0.365582,-0.004069,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000333,0.000143,0.000337,0.000365,0.000365,0.002658,0.361327,-0.004254,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000311,0.000141,0.000315,0.000524,0.000524,0.002487,0.356972,-0.004355,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000291,0.000139,0.000296,0.000619,0.000619,0.002335,0.352580,-0.004392,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000274,0.000136,0.000279,0.000517,0.000517,0.002198,0.348346,-0.004234,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000477,0.000000,0.000000,0.000000,0.000006,0.000258,0.000135,0.000264,0.000472,0.000472,0.002074,0.344683,-0.003663,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000521,0.000003,0.000005,0.000003,0.000007,0.000244,0.000133,0.000253,0.000410,0.000410,0.001964,0.341168,-0.003516,1.000000,0.000002 +21,2022-08-01 21:00:00,0.000802,0.000043,0.000076,0.000043,0.000008,0.000231,0.000131,0.000282,0.000327,0.000327,0.001864,0.337986,-0.003182,1.000000,0.000035 +22,2022-08-01 22:00:00,0.000608,0.000040,0.000036,0.000040,0.000008,0.000220,0.000130,0.000268,0.000289,0.000289,0.001774,0.334732,-0.003254,1.000000,0.000032 +23,2022-08-01 23:00:00,0.000639,0.000059,0.000063,0.000059,0.000009,0.000209,0.000128,0.000278,0.000208,0.000208,0.001693,0.331604,-0.003128,1.000000,0.000036 +24,2022-08-02 00:00:00,0.000612,0.000065,0.000075,0.000065,0.000010,0.000200,0.000127,0.000275,0.000137,0.000137,0.001620,0.328549,-0.003055,1.000000,0.000047 +25,2022-08-02 01:00:00,0.001313,0.000261,0.000417,0.000261,0.000011,0.000192,0.000126,0.000463,0.000056,0.000056,0.001554,0.325969,-0.002580,1.000000,0.000203 +26,2022-08-02 02:00:00,0.001698,0.000493,0.000679,0.000493,0.000011,0.000184,0.000124,0.000688,0.000000,0.000000,0.001494,0.323598,-0.002370,1.000000,0.000389 +27,2022-08-02 03:00:00,0.001600,0.000592,0.000616,0.000592,0.000012,0.000177,0.000123,0.000781,0.000000,0.000000,0.001440,0.321225,-0.002373,1.000000,0.000413 +28,2022-08-02 04:00:00,0.001730,0.000673,0.000696,0.000673,0.000013,0.000171,0.000122,0.000857,0.000000,0.000000,0.001391,0.318932,-0.002293,1.000000,0.000436 +29,2022-08-02 05:00:00,0.001464,0.000589,0.000530,0.000589,0.000014,0.000166,0.000121,0.000768,0.000000,0.000000,0.001346,0.316570,-0.002362,1.000000,0.000378 +30,2022-08-02 06:00:00,0.001374,0.000534,0.000476,0.000534,0.000015,0.000161,0.000120,0.000709,0.000000,0.000000,0.001305,0.314203,-0.002367,1.000000,0.000320 +31,2022-08-02 07:00:00,0.000000,0.000225,0.000000,0.000225,0.000016,0.000156,0.000118,0.000397,0.000000,0.000000,0.001268,0.310981,-0.003222,1.000000,0.000095 +32,2022-08-02 08:00:00,0.000000,0.000095,0.000000,0.000095,0.000017,0.000151,0.000117,0.000264,0.000000,0.000000,0.001233,0.307801,-0.003180,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000147,0.000115,0.000165,0.000000,0.000000,0.001201,0.304663,-0.003138,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000144,0.000114,0.000163,0.000000,0.000000,0.001171,0.301565,-0.003097,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000140,0.000112,0.000160,0.000000,0.000000,0.001143,0.298509,-0.003057,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000137,0.000111,0.000158,0.000000,0.000000,0.001117,0.295492,-0.003017,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000351,0.000022,0.000041,0.000022,0.000022,0.000134,0.000109,0.000178,0.000000,0.000000,0.001092,0.292821,-0.002671,1.000000,0.000018 +38,2022-08-02 14:00:00,0.000305,0.000017,0.000012,0.000017,0.000023,0.000131,0.000108,0.000171,0.000115,0.000115,0.001069,0.290054,-0.002767,1.000000,0.000014 +39,2022-08-02 15:00:00,0.000236,0.000011,0.000000,0.000011,0.000024,0.000128,0.000107,0.000164,0.000308,0.000308,0.001047,0.287076,-0.002978,1.000000,0.000002 +40,2022-08-02 16:00:00,0.000326,0.000002,0.000000,0.000002,0.000025,0.000126,0.000105,0.000154,0.000441,0.000441,0.001027,0.284096,-0.002980,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000331,0.000000,0.000000,0.000000,0.000026,0.000123,0.000104,0.000150,0.000527,0.000527,0.001007,0.281074,-0.003022,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000568,0.000000,0.000000,0.000000,0.000028,0.000121,0.000102,0.000149,0.000583,0.000583,0.000988,0.278270,-0.002804,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000074,0.000000,0.000000,0.000000,0.000029,0.000119,0.000101,0.000148,0.000531,0.000531,0.000970,0.275067,-0.003203,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000117,0.000099,0.000147,0.000480,0.000480,0.000953,0.271946,-0.003121,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000115,0.000098,0.000146,0.000460,0.000460,0.000936,0.268885,-0.003061,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000113,0.000096,0.000145,0.000404,0.000404,0.000920,0.265919,-0.002966,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000111,0.000095,0.000144,0.000297,0.000297,0.000904,0.263097,-0.002821,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000109,0.000094,0.000144,0.000163,0.000163,0.000889,0.260445,-0.002653,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000001,0.000000,0.000036,0.000107,0.000092,0.000143,0.000022,0.000022,0.000875,0.257966,-0.002479,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000001,0.000001,0.000001,0.000037,0.000105,0.000091,0.000144,0.000000,0.000000,0.000861,0.255540,-0.002426,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000104,0.000090,0.000144,0.000000,0.000000,0.000848,0.253146,-0.002394,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000102,0.000089,0.000143,0.000000,0.000000,0.000835,0.250783,-0.002363,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000041,0.000100,0.000088,0.000143,0.000000,0.000000,0.000822,0.248451,-0.002332,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000043,0.000099,0.000087,0.000143,0.000000,0.000000,0.000810,0.246150,-0.002301,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000044,0.000097,0.000086,0.000142,0.000000,0.000000,0.000798,0.243818,-0.002332,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000096,0.000084,0.000142,0.000000,0.000000,0.000786,0.241516,-0.002302,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000095,0.000083,0.000141,0.000000,0.000000,0.000775,0.239245,-0.002272,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000093,0.000082,0.000141,0.000000,0.000000,0.000764,0.237003,-0.002242,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000092,0.000081,0.000142,0.000000,0.000000,0.000753,0.234790,-0.002213,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000091,0.000080,0.000142,0.000000,0.000000,0.000743,0.232606,-0.002184,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000089,0.000079,0.000142,0.000000,0.000000,0.000733,0.230451,-0.002155,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000088,0.000078,0.000142,0.000118,0.000118,0.000722,0.228208,-0.002243,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000087,0.000077,0.000142,0.000365,0.000365,0.000712,0.225750,-0.002458,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000086,0.000076,0.000142,0.000515,0.000515,0.000702,0.223177,-0.002574,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000084,0.000074,0.000143,0.000621,0.000621,0.000692,0.220532,-0.002645,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000083,0.000073,0.000143,0.000602,0.000602,0.000682,0.217940,-0.002592,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000082,0.000072,0.000143,0.000543,0.000543,0.000672,0.215440,-0.002500,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001391,0.000113,0.000205,0.000113,0.000063,0.000081,0.000071,0.000256,0.000487,0.000487,0.000662,0.214199,-0.001241,1.000000,0.000092 +69,2022-08-03 21:00:00,0.000181,0.000051,0.000000,0.000051,0.000064,0.000080,0.000070,0.000195,0.000441,0.000441,0.000653,0.212028,-0.002171,1.000000,0.000041 +70,2022-08-03 22:00:00,0.000000,0.000041,0.000000,0.000041,0.000066,0.000078,0.000069,0.000185,0.000373,0.000373,0.000644,0.209774,-0.002254,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000077,0.000068,0.000144,0.000279,0.000279,0.000634,0.207642,-0.002132,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000076,0.000067,0.000145,0.000174,0.000174,0.000625,0.205642,-0.002001,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000075,0.000066,0.000145,0.000033,0.000033,0.000616,0.203806,-0.001835,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000074,0.000065,0.000146,0.000000,0.000000,0.000608,0.202028,-0.001779,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000073,0.000064,0.000146,0.000000,0.000000,0.000599,0.200272,-0.001755,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000072,0.000064,0.000147,0.000000,0.000000,0.000591,0.198540,-0.001732,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000071,0.000063,0.000147,0.000000,0.000000,0.000582,0.196830,-0.001710,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000070,0.000062,0.000148,0.000000,0.000000,0.000574,0.195143,-0.001687,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000069,0.000061,0.000148,0.000000,0.000000,0.000567,0.193478,-0.001665,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000068,0.000060,0.000149,0.000000,0.000000,0.000559,0.191834,-0.001643,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000067,0.000060,0.000149,0.000000,0.000000,0.000551,0.190212,-0.001622,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000066,0.000059,0.000150,0.000000,0.000000,0.000544,0.188612,-0.001601,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000065,0.000058,0.000151,0.000000,0.000000,0.000537,0.187032,-0.001580,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000064,0.000057,0.000151,0.000000,0.000000,0.000529,0.185473,-0.001559,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000064,0.000056,0.000152,0.000000,0.000000,0.000522,0.183934,-0.001539,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000063,0.000056,0.000153,0.000115,0.000115,0.000515,0.182302,-0.001632,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000062,0.000055,0.000154,0.000360,0.000360,0.000508,0.180449,-0.001853,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000061,0.000054,0.000154,0.000522,0.000522,0.000501,0.178460,-0.001988,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000060,0.000053,0.000155,0.000625,0.000625,0.000494,0.176397,-0.002064,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000059,0.000052,0.000156,0.000695,0.000695,0.000487,0.174290,-0.002107,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000058,0.000051,0.000156,0.000626,0.000626,0.000479,0.172280,-0.002011,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000057,0.000050,0.000157,0.000559,0.000559,0.000472,0.170362,-0.001918,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000056,0.000049,0.000158,0.000500,0.000500,0.000464,0.168526,-0.001835,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000056,0.000048,0.000158,0.000428,0.000428,0.000457,0.166787,-0.001739,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000055,0.000047,0.000159,0.000316,0.000316,0.000450,0.165181,-0.001607,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000054,0.000047,0.000160,0.000180,0.000180,0.000442,0.163729,-0.001451,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000053,0.000046,0.000161,0.000037,0.000037,0.000435,0.162438,-0.001291,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000052,0.000045,0.000161,0.000000,0.000000,0.000429,0.161200,-0.001238,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000051,0.000045,0.000162,0.000000,0.000000,0.000422,0.159979,-0.001221,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000051,0.000044,0.000163,0.000000,0.000000,0.000416,0.158774,-0.001205,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000050,0.000044,0.000164,0.000000,0.000000,0.000410,0.157584,-0.001190,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000049,0.000043,0.000165,0.000000,0.000000,0.000404,0.156410,-0.001174,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000048,0.000043,0.000166,0.000000,0.000000,0.000398,0.155251,-0.001159,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000048,0.000042,0.000166,0.000000,0.000000,0.000392,0.154107,-0.001144,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000047,0.000041,0.000167,0.000000,0.000000,0.000387,0.152979,-0.001129,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000046,0.000041,0.000168,0.000000,0.000000,0.000381,0.151865,-0.001114,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000046,0.000040,0.000169,0.000000,0.000000,0.000376,0.150765,-0.001099,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000045,0.000040,0.000170,0.000000,0.000000,0.000371,0.149680,-0.001085,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000044,0.000039,0.000171,0.000000,0.000000,0.000366,0.148610,-0.001071,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000044,0.000039,0.000172,0.000126,0.000126,0.000361,0.147428,-0.001181,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000043,0.000038,0.000173,0.000365,0.000365,0.000356,0.146027,-0.001401,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000043,0.000037,0.000174,0.000522,0.000522,0.000350,0.144489,-0.001538,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000042,0.000037,0.000175,0.000633,0.000633,0.000345,0.142861,-0.001628,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000041,0.000036,0.000176,0.000618,0.000618,0.000340,0.141270,-0.001591,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000041,0.000035,0.000177,0.000571,0.000571,0.000334,0.139745,-0.001525,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000040,0.000034,0.000178,0.000507,0.000507,0.000328,0.138304,-0.001441,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000039,0.000034,0.000179,0.000469,0.000469,0.000323,0.136919,-0.001385,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000015,0.000000,0.000000,0.000000,0.000141,0.000039,0.000033,0.000179,0.000394,0.000394,0.000317,0.135641,-0.001278,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000094,0.000000,0.000000,0.000000,0.000143,0.000038,0.000032,0.000180,0.000295,0.000295,0.000312,0.134556,-0.001085,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000015,0.000000,0.000000,0.000000,0.000144,0.000037,0.000032,0.000181,0.000172,0.000172,0.000307,0.133528,-0.001028,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000295,0.000009,0.000016,0.000009,0.000146,0.000037,0.000032,0.000191,0.000049,0.000049,0.000302,0.132895,-0.000632,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000488,0.000037,0.000060,0.000037,0.000147,0.000036,0.000031,0.000221,0.000000,0.000000,0.000297,0.132466,-0.000429,1.000000,0.000030 +123,2022-08-06 03:00:00,0.000243,0.000027,0.000016,0.000027,0.000149,0.000036,0.000031,0.000211,0.000000,0.000000,0.000293,0.131845,-0.000622,1.000000,0.000019 +124,2022-08-06 04:00:00,0.000144,0.000019,0.000006,0.000019,0.000150,0.000035,0.000031,0.000205,0.000000,0.000000,0.000289,0.131144,-0.000701,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000169,0.000009,0.000008,0.000009,0.000152,0.000035,0.000030,0.000195,0.000000,0.000000,0.000285,0.130474,-0.000670,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000242,0.000012,0.000016,0.000012,0.000153,0.000034,0.000030,0.000199,0.000000,0.000000,0.000281,0.129878,-0.000597,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000155,0.000034,0.000030,0.000194,0.000000,0.000000,0.000277,0.129066,-0.000812,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000157,0.000033,0.000029,0.000193,0.000000,0.000000,0.000273,0.128265,-0.000801,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000033,0.000029,0.000191,0.000000,0.000000,0.000270,0.127474,-0.000791,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000032,0.000029,0.000192,0.000000,0.000000,0.000266,0.126693,-0.000780,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000032,0.000028,0.000193,0.000000,0.000000,0.000262,0.125923,-0.000770,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000031,0.000028,0.000194,0.000000,0.000000,0.000259,0.125163,-0.000760,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000031,0.000028,0.000195,0.000000,0.000000,0.000255,0.124413,-0.000750,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000031,0.000027,0.000196,0.000109,0.000109,0.000252,0.123565,-0.000848,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000030,0.000027,0.000197,0.000346,0.000346,0.000249,0.122495,-0.001070,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000030,0.000026,0.000198,0.000503,0.000503,0.000245,0.121283,-0.001212,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000029,0.000025,0.000199,0.000608,0.000608,0.000241,0.119983,-0.001300,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000029,0.000025,0.000200,0.000674,0.000674,0.000237,0.118635,-0.001348,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000028,0.000024,0.000201,0.000625,0.000625,0.000233,0.117353,-0.001282,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000028,0.000024,0.000202,0.000561,0.000561,0.000229,0.116152,-0.001202,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000027,0.000023,0.000203,0.000500,0.000500,0.000224,0.115025,-0.001126,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000027,0.000022,0.000204,0.000426,0.000426,0.000220,0.113988,-0.001038,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000026,0.000022,0.000205,0.000311,0.000311,0.000216,0.113077,-0.000911,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000026,0.000022,0.000206,0.000174,0.000174,0.000212,0.112313,-0.000764,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000025,0.000021,0.000207,0.000032,0.000032,0.000208,0.111700,-0.000613,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000025,0.000021,0.000208,0.000000,0.000000,0.000204,0.111125,-0.000574,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000024,0.000021,0.000209,0.000000,0.000000,0.000201,0.110559,-0.000567,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000024,0.000021,0.000210,0.000000,0.000000,0.000198,0.110000,-0.000559,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000024,0.000020,0.000211,0.000000,0.000000,0.000194,0.109448,-0.000552,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000023,0.000020,0.000212,0.000000,0.000000,0.000191,0.108903,-0.000545,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000023,0.000020,0.000214,0.000000,0.000000,0.000188,0.108365,-0.000538,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000022,0.000019,0.000215,0.000000,0.000000,0.000185,0.107835,-0.000531,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000022,0.000019,0.000216,0.000000,0.000000,0.000182,0.107311,-0.000524,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000022,0.000019,0.000217,0.000000,0.000000,0.000179,0.106794,-0.000517,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000021,0.000019,0.000218,0.000000,0.000000,0.000177,0.106284,-0.000510,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000021,0.000018,0.000219,0.000000,0.000000,0.000174,0.105781,-0.000503,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000021,0.000018,0.000220,0.000000,0.000000,0.000172,0.105284,-0.000497,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000020,0.000018,0.000221,0.000104,0.000104,0.000169,0.104691,-0.000593,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000020,0.000018,0.000222,0.000345,0.000345,0.000166,0.103868,-0.000823,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000020,0.000017,0.000223,0.000501,0.000501,0.000164,0.102902,-0.000967,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000019,0.000017,0.000224,0.000609,0.000609,0.000161,0.101842,-0.001060,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000019,0.000016,0.000225,0.000641,0.000641,0.000158,0.100764,-0.001078,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000226,0.000591,0.000591,0.000155,0.099750,-0.001014,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000018,0.000015,0.000227,0.000535,0.000535,0.000151,0.098804,-0.000946,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000015,0.000228,0.000487,0.000487,0.000148,0.097918,-0.000886,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000018,0.000014,0.000229,0.000409,0.000409,0.000145,0.097120,-0.000798,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000017,0.000014,0.000230,0.000302,0.000302,0.000142,0.096439,-0.000681,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000014,0.000231,0.000140,0.000140,0.000139,0.095926,-0.000513,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000014,0.000232,0.000012,0.000000,0.000136,0.095558,-0.000368,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000016,0.000013,0.000233,0.000000,0.000000,0.000133,0.095195,-0.000363,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000013,0.000234,0.000000,0.000000,0.000130,0.094837,-0.000358,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000013,0.000235,0.000000,0.000000,0.000128,0.094483,-0.000354,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000013,0.000236,0.000000,0.000000,0.000125,0.094134,-0.000349,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000000,0.000000,0.000123,0.093790,-0.000344,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000012,0.000238,0.000000,0.000000,0.000121,0.093450,-0.000340,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000012,0.000239,0.000000,0.000000,0.000119,0.093114,-0.000336,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000012,0.000240,0.000000,0.000000,0.000117,0.092783,-0.000331,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000012,0.000241,0.000000,0.000000,0.000115,0.092456,-0.000327,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000113,0.092134,-0.000323,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000012,0.000243,0.000000,0.000000,0.000111,0.091816,-0.000318,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000012,0.000244,0.000000,0.000000,0.000110,0.091501,-0.000314,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000011,0.000245,0.000089,0.000000,0.000108,0.091191,-0.000310,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000332,0.000000,0.000106,0.090885,-0.000306,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000247,0.000491,0.000000,0.000105,0.090583,-0.000302,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000011,0.000248,0.000598,0.000000,0.000103,0.090285,-0.000298,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000011,0.000249,0.000650,0.000000,0.000102,0.089991,-0.000294,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000595,0.000000,0.000100,0.089701,-0.000290,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000251,0.000525,0.000000,0.000099,0.089414,-0.000286,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000252,0.000482,0.000000,0.000097,0.089132,-0.000283,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000253,0.000414,0.000000,0.000096,0.088853,-0.000279,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000011,0.000010,0.000255,0.000301,0.000000,0.000095,0.088577,-0.000275,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000011,0.000010,0.000256,0.000160,0.000000,0.000093,0.088305,-0.000272,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000011,0.000010,0.000257,0.000014,0.000000,0.000092,0.088037,-0.000268,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000258,0.000000,0.000000,0.000091,0.087772,-0.000265,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000011,0.000010,0.000259,0.000000,0.000000,0.000090,0.087511,-0.000261,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000009,0.000260,0.000000,0.000000,0.000088,0.087253,-0.000258,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000011,0.000009,0.000261,0.000000,0.000000,0.000087,0.086999,-0.000254,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000010,0.000009,0.000261,0.000000,0.000000,0.000086,0.086748,-0.000251,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000010,0.000009,0.000262,0.000000,0.000000,0.000085,0.086500,-0.000248,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000010,0.000009,0.000263,0.000000,0.000000,0.000084,0.086255,-0.000245,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000010,0.000009,0.000264,0.000000,0.000000,0.000083,0.086014,-0.000241,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000010,0.000009,0.000265,0.000000,0.000000,0.000081,0.085775,-0.000238,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000010,0.000009,0.000266,0.000000,0.000000,0.000080,0.085540,-0.000235,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000010,0.000009,0.000267,0.000000,0.000000,0.000079,0.085308,-0.000232,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000009,0.000008,0.000268,0.000000,0.000000,0.000078,0.085079,-0.000229,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000009,0.000008,0.000269,0.000098,0.000000,0.000077,0.084853,-0.000226,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620804.csv b/test/channel_loss/channel_forcing/et/cat-2620804.csv new file mode 100644 index 000000000..ad1aa5239 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620804.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001474,0.000388,0.001474,0.000152,0.000152,0.010511,0.425579,-0.004971,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001324,0.000383,0.001324,0.000037,0.000037,0.009570,0.420728,-0.004851,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001196,0.000377,0.001196,0.000000,0.000000,0.008751,0.415981,-0.004747,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001087,0.000372,0.001087,0.000000,0.000000,0.008037,0.411299,-0.004681,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000993,0.000367,0.000993,0.000000,0.000000,0.007411,0.406683,-0.004616,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000912,0.000362,0.000913,0.000000,0.000000,0.006861,0.402131,-0.004552,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000842,0.000357,0.000842,0.000000,0.000000,0.006376,0.397642,-0.004489,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000780,0.000352,0.000781,0.000000,0.000000,0.005947,0.393215,-0.004427,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000727,0.000347,0.000728,0.000000,0.000000,0.005568,0.388850,-0.004365,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000679,0.000342,0.000681,0.000000,0.000000,0.005231,0.384545,-0.004305,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000638,0.000338,0.000639,0.000000,0.000000,0.004930,0.380300,-0.004245,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000601,0.000333,0.000603,0.000000,0.000000,0.004662,0.376115,-0.004186,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000568,0.000328,0.000570,0.000000,0.000000,0.004423,0.371987,-0.004128,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000539,0.000324,0.000542,0.000000,0.000000,0.004208,0.367916,-0.004070,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000513,0.000319,0.000516,0.000125,0.000125,0.004014,0.363780,-0.004137,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000489,0.000314,0.000493,0.000367,0.000367,0.003839,0.359461,-0.004318,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000468,0.000309,0.000472,0.000526,0.000526,0.003681,0.355046,-0.004415,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000449,0.000304,0.000454,0.000619,0.000619,0.003536,0.350600,-0.004446,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000431,0.000299,0.000437,0.000521,0.000521,0.003405,0.346314,-0.004287,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000455,0.000000,0.000000,0.000000,0.000006,0.000415,0.000295,0.000421,0.000477,0.000477,0.003285,0.342578,-0.003736,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000491,0.000001,0.000001,0.000001,0.000007,0.000401,0.000291,0.000408,0.000411,0.000411,0.003175,0.338993,-0.003584,1.000000,0.000001 +21,2022-08-01 21:00:00,0.000770,0.000018,0.000032,0.000018,0.000007,0.000388,0.000288,0.000413,0.000331,0.000331,0.003076,0.335782,-0.003211,1.000000,0.000015 +22,2022-08-01 22:00:00,0.000564,0.000015,0.000012,0.000015,0.000008,0.000376,0.000284,0.000399,0.000294,0.000294,0.002984,0.332469,-0.003313,1.000000,0.000012 +23,2022-08-01 23:00:00,0.000615,0.000024,0.000027,0.000024,0.000009,0.000365,0.000280,0.000398,0.000212,0.000212,0.002900,0.329319,-0.003150,1.000000,0.000015 +24,2022-08-02 00:00:00,0.000568,0.000026,0.000030,0.000026,0.000010,0.000354,0.000277,0.000390,0.000139,0.000139,0.002822,0.326235,-0.003084,1.000000,0.000019 +25,2022-08-02 01:00:00,0.001333,0.000140,0.000232,0.000140,0.000010,0.000345,0.000274,0.000496,0.000057,0.000057,0.002751,0.323830,-0.002405,1.000000,0.000110 +26,2022-08-02 02:00:00,0.001662,0.000268,0.000372,0.000268,0.000011,0.000337,0.000272,0.000616,0.000000,0.000000,0.002687,0.321701,-0.002129,1.000000,0.000214 +27,2022-08-02 03:00:00,0.001556,0.000320,0.000329,0.000320,0.000012,0.000329,0.000269,0.000661,0.000000,0.000000,0.002627,0.319539,-0.002162,1.000000,0.000223 +28,2022-08-02 04:00:00,0.001706,0.000369,0.000387,0.000369,0.000013,0.000322,0.000267,0.000704,0.000000,0.000000,0.002572,0.317498,-0.002041,1.000000,0.000240 +29,2022-08-02 05:00:00,0.001387,0.000309,0.000266,0.000309,0.000014,0.000315,0.000265,0.000638,0.000000,0.000000,0.002522,0.315289,-0.002209,1.000000,0.000197 +30,2022-08-02 06:00:00,0.001276,0.000269,0.000228,0.000269,0.000015,0.000309,0.000262,0.000593,0.000000,0.000000,0.002475,0.313040,-0.002249,1.000000,0.000156 +31,2022-08-02 07:00:00,0.000000,0.000110,0.000000,0.000110,0.000016,0.000303,0.000259,0.000429,0.000000,0.000000,0.002430,0.309788,-0.003252,1.000000,0.000046 +32,2022-08-02 08:00:00,0.000000,0.000046,0.000000,0.000046,0.000016,0.000298,0.000255,0.000360,0.000000,0.000000,0.002387,0.306581,-0.003206,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000293,0.000251,0.000310,0.000000,0.000000,0.002346,0.303420,-0.003162,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000288,0.000248,0.000306,0.000000,0.000000,0.002306,0.300301,-0.003118,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000283,0.000244,0.000302,0.000000,0.000000,0.002268,0.297227,-0.003075,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000278,0.000241,0.000298,0.000000,0.000000,0.002231,0.294195,-0.003032,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000336,0.000010,0.000018,0.000010,0.000021,0.000273,0.000238,0.000304,0.000000,0.000000,0.002196,0.291519,-0.002676,1.000000,0.000008 +38,2022-08-02 14:00:00,0.000291,0.000007,0.000005,0.000007,0.000022,0.000269,0.000235,0.000299,0.000115,0.000115,0.002162,0.288735,-0.002784,1.000000,0.000006 +39,2022-08-02 15:00:00,0.000231,0.000005,0.000000,0.000005,0.000024,0.000265,0.000232,0.000293,0.000310,0.000310,0.002129,0.285743,-0.002992,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000308,0.000001,0.000000,0.000001,0.000025,0.000261,0.000228,0.000286,0.000443,0.000443,0.002096,0.282738,-0.003006,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000308,0.000000,0.000000,0.000000,0.000026,0.000257,0.000225,0.000282,0.000528,0.000528,0.002064,0.279690,-0.003048,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000535,0.000000,0.000000,0.000000,0.000027,0.000253,0.000222,0.000279,0.000584,0.000584,0.002034,0.276852,-0.002837,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000028,0.000249,0.000218,0.000277,0.000531,0.000531,0.002003,0.273650,-0.003203,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000245,0.000215,0.000274,0.000482,0.000482,0.001973,0.270533,-0.003117,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000241,0.000211,0.000271,0.000464,0.000464,0.001943,0.267476,-0.003057,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000237,0.000208,0.000269,0.000408,0.000408,0.001913,0.264517,-0.002959,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000234,0.000205,0.000266,0.000299,0.000299,0.001884,0.261707,-0.002810,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000230,0.000202,0.000264,0.000164,0.000164,0.001856,0.259069,-0.002638,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000227,0.000199,0.000262,0.000023,0.000023,0.001829,0.256606,-0.002463,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000036,0.000223,0.000196,0.000260,0.000000,0.000000,0.001802,0.254200,-0.002406,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000220,0.000194,0.000258,0.000000,0.000000,0.001776,0.251827,-0.002373,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000217,0.000191,0.000256,0.000000,0.000000,0.001750,0.249487,-0.002340,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000213,0.000188,0.000254,0.000000,0.000000,0.001725,0.247180,-0.002307,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000041,0.000210,0.000186,0.000252,0.000000,0.000000,0.001701,0.244905,-0.002275,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000207,0.000183,0.000250,0.000000,0.000000,0.001677,0.242600,-0.002305,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000204,0.000181,0.000248,0.000000,0.000000,0.001653,0.240326,-0.002273,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000201,0.000178,0.000247,0.000000,0.000000,0.001630,0.238085,-0.002242,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000199,0.000176,0.000245,0.000000,0.000000,0.001607,0.235874,-0.002211,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000196,0.000173,0.000244,0.000000,0.000000,0.001585,0.233694,-0.002180,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000193,0.000171,0.000242,0.000000,0.000000,0.001563,0.231544,-0.002150,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000190,0.000169,0.000241,0.000000,0.000000,0.001541,0.229425,-0.002120,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000187,0.000166,0.000240,0.000119,0.000119,0.001520,0.227217,-0.002207,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000185,0.000163,0.000238,0.000367,0.000367,0.001499,0.224795,-0.002422,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000182,0.000161,0.000237,0.000517,0.000517,0.001477,0.222260,-0.002536,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000179,0.000158,0.000236,0.000622,0.000622,0.001455,0.219655,-0.002604,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000177,0.000155,0.000234,0.000603,0.000603,0.001433,0.217106,-0.002549,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000174,0.000152,0.000233,0.000542,0.000542,0.001412,0.214653,-0.002453,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001610,0.000086,0.000156,0.000086,0.000061,0.000171,0.000151,0.000318,0.000489,0.000489,0.001391,0.213720,-0.000933,1.000000,0.000070 +69,2022-08-03 21:00:00,0.000189,0.000039,0.000000,0.000039,0.000062,0.000169,0.000149,0.000270,0.000446,0.000446,0.001371,0.211595,-0.002125,1.000000,0.000031 +70,2022-08-03 22:00:00,0.000000,0.000031,0.000000,0.000031,0.000063,0.000166,0.000146,0.000261,0.000377,0.000377,0.001351,0.209381,-0.002214,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000164,0.000144,0.000229,0.000282,0.000282,0.001331,0.207291,-0.002090,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000161,0.000142,0.000228,0.000175,0.000175,0.001311,0.205335,-0.001956,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000159,0.000140,0.000227,0.000034,0.000034,0.001292,0.203546,-0.001789,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000156,0.000138,0.000226,0.000000,0.000000,0.001273,0.201815,-0.001731,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000154,0.000136,0.000225,0.000000,0.000000,0.001255,0.200108,-0.001707,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000152,0.000134,0.000224,0.000000,0.000000,0.001237,0.198425,-0.001683,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000150,0.000132,0.000223,0.000000,0.000000,0.001219,0.196765,-0.001660,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000148,0.000130,0.000223,0.000000,0.000000,0.001201,0.195129,-0.001637,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000145,0.000128,0.000222,0.000000,0.000000,0.001184,0.193515,-0.001614,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000143,0.000127,0.000221,0.000000,0.000000,0.001168,0.191923,-0.001592,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000141,0.000125,0.000221,0.000000,0.000000,0.001151,0.190354,-0.001569,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000139,0.000123,0.000220,0.000000,0.000000,0.001135,0.188806,-0.001548,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000137,0.000121,0.000220,0.000000,0.000000,0.001119,0.187280,-0.001526,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000135,0.000120,0.000219,0.000000,0.000000,0.001103,0.185775,-0.001505,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000133,0.000118,0.000219,0.000000,0.000000,0.001088,0.184291,-0.001484,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000131,0.000116,0.000219,0.000115,0.000115,0.001073,0.182714,-0.001577,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000130,0.000114,0.000218,0.000362,0.000362,0.001057,0.180915,-0.001799,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000128,0.000112,0.000218,0.000524,0.000524,0.001042,0.178982,-0.001933,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000126,0.000110,0.000217,0.000624,0.000624,0.001026,0.176976,-0.002005,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000124,0.000108,0.000217,0.000695,0.000695,0.001010,0.174929,-0.002047,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000122,0.000105,0.000216,0.000626,0.000626,0.000993,0.172978,-0.001951,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000120,0.000103,0.000216,0.000556,0.000556,0.000977,0.171123,-0.001855,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000118,0.000101,0.000215,0.000503,0.000503,0.000961,0.169347,-0.001776,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000116,0.000099,0.000215,0.000430,0.000430,0.000944,0.167667,-0.001680,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000114,0.000098,0.000214,0.000317,0.000317,0.000929,0.166122,-0.001545,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000112,0.000096,0.000214,0.000181,0.000181,0.000913,0.164733,-0.001390,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000110,0.000095,0.000214,0.000038,0.000038,0.000898,0.163503,-0.001230,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000108,0.000093,0.000213,0.000000,0.000000,0.000883,0.162328,-0.001175,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000106,0.000092,0.000213,0.000000,0.000000,0.000869,0.161170,-0.001158,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000105,0.000091,0.000213,0.000000,0.000000,0.000855,0.160028,-0.001142,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000103,0.000090,0.000213,0.000000,0.000000,0.000842,0.158901,-0.001126,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000101,0.000088,0.000213,0.000000,0.000000,0.000829,0.157790,-0.001111,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000100,0.000087,0.000213,0.000000,0.000000,0.000816,0.156695,-0.001095,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000098,0.000086,0.000213,0.000000,0.000000,0.000804,0.155615,-0.001080,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000097,0.000085,0.000213,0.000000,0.000000,0.000792,0.154550,-0.001065,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000095,0.000084,0.000213,0.000000,0.000000,0.000780,0.153499,-0.001050,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000094,0.000082,0.000213,0.000000,0.000000,0.000769,0.152464,-0.001036,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000092,0.000081,0.000213,0.000000,0.000000,0.000758,0.151442,-0.001021,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000091,0.000080,0.000213,0.000000,0.000000,0.000747,0.150435,-0.001007,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000090,0.000079,0.000213,0.000127,0.000127,0.000736,0.149316,-0.001119,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000088,0.000077,0.000213,0.000367,0.000367,0.000725,0.147977,-0.001340,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000087,0.000076,0.000213,0.000524,0.000524,0.000713,0.146501,-0.001475,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000086,0.000074,0.000213,0.000634,0.000634,0.000702,0.144938,-0.001564,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000084,0.000072,0.000214,0.000618,0.000618,0.000690,0.143412,-0.001526,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000083,0.000071,0.000214,0.000571,0.000571,0.000678,0.141953,-0.001459,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000081,0.000069,0.000214,0.000509,0.000509,0.000666,0.140576,-0.001377,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000080,0.000068,0.000214,0.000469,0.000469,0.000653,0.139257,-0.001318,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000028,0.000000,0.000000,0.000000,0.000135,0.000078,0.000066,0.000214,0.000397,0.000397,0.000641,0.138056,-0.001202,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000112,0.000000,0.000000,0.000000,0.000137,0.000077,0.000065,0.000214,0.000296,0.000296,0.000630,0.137053,-0.001003,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000028,0.000000,0.000000,0.000000,0.000138,0.000075,0.000064,0.000214,0.000172,0.000172,0.000619,0.136103,-0.000950,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000337,0.000006,0.000010,0.000006,0.000140,0.000074,0.000063,0.000220,0.000050,0.000050,0.000608,0.135582,-0.000521,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000580,0.000025,0.000040,0.000025,0.000141,0.000073,0.000063,0.000239,0.000000,0.000000,0.000598,0.135327,-0.000254,1.000000,0.000020 +123,2022-08-06 03:00:00,0.000271,0.000017,0.000009,0.000017,0.000143,0.000072,0.000063,0.000232,0.000000,0.000000,0.000589,0.134802,-0.000525,1.000000,0.000012 +124,2022-08-06 04:00:00,0.000155,0.000012,0.000003,0.000012,0.000144,0.000071,0.000062,0.000227,0.000000,0.000000,0.000580,0.134176,-0.000626,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000178,0.000005,0.000004,0.000005,0.000146,0.000070,0.000061,0.000220,0.000000,0.000000,0.000572,0.133580,-0.000595,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000271,0.000007,0.000009,0.000007,0.000147,0.000069,0.000061,0.000222,0.000000,0.000000,0.000564,0.133080,-0.000500,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000149,0.000068,0.000060,0.000219,0.000000,0.000000,0.000556,0.132327,-0.000752,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000150,0.000067,0.000059,0.000219,0.000000,0.000000,0.000548,0.131586,-0.000742,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000066,0.000058,0.000217,0.000000,0.000000,0.000541,0.130854,-0.000731,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000057,0.000218,0.000000,0.000000,0.000533,0.130133,-0.000721,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000064,0.000057,0.000218,0.000000,0.000000,0.000526,0.129422,-0.000711,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000063,0.000056,0.000219,0.000000,0.000000,0.000518,0.128721,-0.000701,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000062,0.000055,0.000219,0.000000,0.000000,0.000511,0.128029,-0.000692,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000061,0.000054,0.000220,0.000110,0.000110,0.000504,0.127239,-0.000790,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000060,0.000053,0.000221,0.000347,0.000347,0.000497,0.126225,-0.001013,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000059,0.000052,0.000221,0.000504,0.000504,0.000489,0.125071,-0.001154,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000058,0.000050,0.000221,0.000608,0.000608,0.000481,0.123831,-0.001240,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000057,0.000049,0.000222,0.000674,0.000674,0.000472,0.122543,-0.001288,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000056,0.000047,0.000222,0.000626,0.000626,0.000463,0.121320,-0.001223,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000055,0.000046,0.000222,0.000559,0.000559,0.000454,0.120181,-0.001140,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000054,0.000045,0.000223,0.000503,0.000503,0.000445,0.119111,-0.001069,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000053,0.000044,0.000223,0.000428,0.000428,0.000436,0.118131,-0.000980,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000052,0.000043,0.000223,0.000312,0.000312,0.000427,0.117279,-0.000852,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000051,0.000042,0.000224,0.000175,0.000175,0.000418,0.116574,-0.000705,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000050,0.000042,0.000224,0.000032,0.000032,0.000410,0.116019,-0.000555,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000041,0.000224,0.000000,0.000000,0.000402,0.115504,-0.000515,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000040,0.000225,0.000000,0.000000,0.000395,0.114996,-0.000508,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000047,0.000040,0.000225,0.000000,0.000000,0.000387,0.114495,-0.000501,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000046,0.000039,0.000226,0.000000,0.000000,0.000381,0.114001,-0.000494,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000045,0.000039,0.000226,0.000000,0.000000,0.000374,0.113514,-0.000487,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000045,0.000038,0.000227,0.000000,0.000000,0.000367,0.113033,-0.000480,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000038,0.000227,0.000000,0.000000,0.000361,0.112560,-0.000474,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000043,0.000037,0.000228,0.000000,0.000000,0.000355,0.112093,-0.000467,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000042,0.000037,0.000229,0.000000,0.000000,0.000349,0.111632,-0.000461,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000042,0.000036,0.000229,0.000000,0.000000,0.000344,0.111178,-0.000454,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000041,0.000036,0.000230,0.000000,0.000000,0.000338,0.110730,-0.000448,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000040,0.000035,0.000231,0.000000,0.000000,0.000333,0.110288,-0.000442,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000040,0.000035,0.000231,0.000105,0.000105,0.000328,0.109749,-0.000539,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000039,0.000034,0.000232,0.000347,0.000347,0.000322,0.108979,-0.000770,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000038,0.000033,0.000233,0.000503,0.000503,0.000317,0.108065,-0.000914,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000038,0.000032,0.000233,0.000609,0.000609,0.000310,0.107060,-0.001005,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000037,0.000030,0.000234,0.000642,0.000642,0.000304,0.106037,-0.001024,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000036,0.000029,0.000234,0.000591,0.000591,0.000297,0.105077,-0.000959,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000035,0.000028,0.000234,0.000536,0.000536,0.000290,0.104185,-0.000892,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000034,0.000027,0.000235,0.000490,0.000490,0.000283,0.103351,-0.000834,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000034,0.000027,0.000235,0.000412,0.000412,0.000276,0.102605,-0.000746,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000033,0.000026,0.000236,0.000304,0.000304,0.000269,0.101976,-0.000629,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000032,0.000025,0.000236,0.000141,0.000141,0.000263,0.101517,-0.000459,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000031,0.000025,0.000237,0.000012,0.000012,0.000257,0.101191,-0.000326,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000030,0.000025,0.000237,0.000000,0.000000,0.000251,0.100882,-0.000309,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000030,0.000024,0.000238,0.000000,0.000000,0.000245,0.100577,-0.000305,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000029,0.000024,0.000238,0.000000,0.000000,0.000240,0.100276,-0.000301,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000029,0.000024,0.000239,0.000000,0.000000,0.000235,0.099980,-0.000297,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000028,0.000023,0.000239,0.000000,0.000000,0.000231,0.099687,-0.000292,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000027,0.000023,0.000240,0.000000,0.000000,0.000226,0.099399,-0.000288,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000027,0.000023,0.000241,0.000000,0.000000,0.000222,0.099115,-0.000284,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000026,0.000022,0.000241,0.000000,0.000000,0.000218,0.098834,-0.000280,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000026,0.000022,0.000242,0.000000,0.000000,0.000214,0.098558,-0.000276,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000025,0.000022,0.000243,0.000000,0.000000,0.000210,0.098285,-0.000273,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000025,0.000021,0.000244,0.000000,0.000000,0.000206,0.098016,-0.000269,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000025,0.000021,0.000244,0.000000,0.000000,0.000203,0.097751,-0.000265,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000024,0.000021,0.000245,0.000090,0.000090,0.000199,0.097401,-0.000350,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000024,0.000020,0.000246,0.000334,0.000334,0.000196,0.096816,-0.000585,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000023,0.000019,0.000246,0.000492,0.000492,0.000192,0.096082,-0.000734,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000023,0.000018,0.000247,0.000598,0.000598,0.000187,0.095255,-0.000827,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000022,0.000017,0.000248,0.000648,0.000648,0.000183,0.094388,-0.000866,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000016,0.000248,0.000591,0.000591,0.000177,0.093591,-0.000797,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000016,0.000249,0.000525,0.000000,0.000173,0.093387,-0.000204,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000016,0.000249,0.000485,0.000000,0.000168,0.093186,-0.000201,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000016,0.000250,0.000417,0.000000,0.000164,0.092988,-0.000198,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000016,0.000250,0.000303,0.000000,0.000160,0.092793,-0.000195,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000015,0.000251,0.000161,0.000000,0.000157,0.092601,-0.000193,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000015,0.000252,0.000015,0.000000,0.000153,0.092411,-0.000190,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000015,0.000252,0.000000,0.000000,0.000150,0.092223,-0.000187,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000015,0.000253,0.000000,0.000000,0.000147,0.092039,-0.000185,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000014,0.000254,0.000000,0.000000,0.000144,0.091857,-0.000182,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000014,0.000254,0.000000,0.000000,0.000141,0.091677,-0.000180,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000014,0.000255,0.000000,0.000000,0.000138,0.091500,-0.000177,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000256,0.000000,0.000000,0.000136,0.091325,-0.000175,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000257,0.000000,0.000000,0.000133,0.091153,-0.000172,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000000,0.000000,0.000131,0.090983,-0.000170,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000013,0.000258,0.000000,0.000000,0.000129,0.090816,-0.000167,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000015,0.000013,0.000259,0.000000,0.000000,0.000127,0.090651,-0.000165,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000013,0.000260,0.000000,0.000000,0.000124,0.090488,-0.000163,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000260,0.000000,0.000000,0.000122,0.090327,-0.000161,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000099,0.000000,0.000120,0.090169,-0.000158,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620805.csv b/test/channel_loss/channel_forcing/et/cat-2620805.csv new file mode 100644 index 000000000..b54e176a1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620805.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000021,0.000000,0.000000,0.000000,0.000000,0.001466,0.000328,0.001466,0.000142,0.000142,0.010458,0.426767,-0.004855,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001308,0.000323,0.001308,0.000032,0.000032,0.009473,0.422067,-0.004700,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001175,0.000318,0.001175,0.000000,0.000000,0.008616,0.417464,-0.004603,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001062,0.000314,0.001062,0.000000,0.000000,0.007869,0.412925,-0.004539,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000964,0.000310,0.000964,0.000000,0.000000,0.007214,0.408449,-0.004476,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000880,0.000305,0.000880,0.000000,0.000000,0.006640,0.404035,-0.004414,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000807,0.000301,0.000808,0.000000,0.000000,0.006134,0.399683,-0.004352,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000744,0.000297,0.000744,0.000000,0.000000,0.005687,0.395391,-0.004292,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000688,0.000293,0.000689,0.000000,0.000000,0.005292,0.391159,-0.004232,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000639,0.000289,0.000641,0.000000,0.000000,0.004941,0.386986,-0.004173,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000596,0.000285,0.000598,0.000000,0.000000,0.004630,0.382871,-0.004115,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000558,0.000281,0.000560,0.000000,0.000000,0.004352,0.378813,-0.004058,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000525,0.000277,0.000527,0.000000,0.000000,0.004104,0.374812,-0.004001,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000495,0.000273,0.000498,0.000000,0.000000,0.003882,0.370866,-0.003946,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000468,0.000269,0.000471,0.000119,0.000119,0.003683,0.366858,-0.004008,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000444,0.000265,0.000448,0.000350,0.000350,0.003504,0.362678,-0.004180,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000423,0.000261,0.000427,0.000509,0.000509,0.003342,0.358399,-0.004279,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000403,0.000257,0.000408,0.000603,0.000603,0.003195,0.354087,-0.004312,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000386,0.000252,0.000391,0.000512,0.000512,0.003062,0.349925,-0.004162,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000624,0.000002,0.000004,0.000002,0.000006,0.000370,0.000249,0.000378,0.000476,0.000476,0.002941,0.346467,-0.003458,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000689,0.000009,0.000015,0.000009,0.000007,0.000356,0.000246,0.000372,0.000414,0.000414,0.002831,0.343172,-0.003295,1.000000,0.000008 +21,2022-08-01 21:00:00,0.001053,0.000057,0.000095,0.000057,0.000007,0.000343,0.000243,0.000407,0.000327,0.000327,0.002732,0.340289,-0.002883,1.000000,0.000046 +22,2022-08-01 22:00:00,0.000720,0.000047,0.000036,0.000047,0.000008,0.000331,0.000240,0.000386,0.000284,0.000284,0.002641,0.337219,-0.003070,1.000000,0.000035 +23,2022-08-01 23:00:00,0.000721,0.000056,0.000050,0.000056,0.000009,0.000320,0.000237,0.000385,0.000199,0.000199,0.002558,0.334260,-0.002958,1.000000,0.000030 +24,2022-08-02 00:00:00,0.000668,0.000049,0.000053,0.000049,0.000009,0.000310,0.000234,0.000369,0.000132,0.000132,0.002482,0.331356,-0.002904,1.000000,0.000034 +25,2022-08-02 01:00:00,0.001462,0.000196,0.000314,0.000196,0.000010,0.000301,0.000232,0.000507,0.000053,0.000053,0.002413,0.329095,-0.002261,1.000000,0.000152 +26,2022-08-02 02:00:00,0.002103,0.000434,0.000628,0.000434,0.000011,0.000293,0.000230,0.000739,0.000000,0.000000,0.002350,0.327241,-0.001855,1.000000,0.000345 +27,2022-08-02 03:00:00,0.001990,0.000533,0.000570,0.000533,0.000012,0.000286,0.000229,0.000831,0.000000,0.000000,0.002293,0.325357,-0.001883,1.000000,0.000382 +28,2022-08-02 04:00:00,0.002188,0.000636,0.000668,0.000636,0.000013,0.000279,0.000227,0.000927,0.000000,0.000000,0.002241,0.323599,-0.001759,1.000000,0.000415 +29,2022-08-02 05:00:00,0.001808,0.000545,0.000481,0.000545,0.000013,0.000273,0.000225,0.000832,0.000000,0.000000,0.002193,0.321674,-0.001924,1.000000,0.000350 +30,2022-08-02 06:00:00,0.001701,0.000491,0.000431,0.000491,0.000014,0.000267,0.000223,0.000772,0.000000,0.000000,0.002148,0.319720,-0.001954,1.000000,0.000290 +31,2022-08-02 07:00:00,0.000000,0.000204,0.000000,0.000204,0.000015,0.000262,0.000220,0.000481,0.000000,0.000000,0.002106,0.316541,-0.003179,1.000000,0.000086 +32,2022-08-02 08:00:00,0.000000,0.000086,0.000000,0.000086,0.000016,0.000257,0.000217,0.000359,0.000000,0.000000,0.002066,0.313407,-0.003135,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000252,0.000214,0.000269,0.000000,0.000000,0.002028,0.310316,-0.003091,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000247,0.000211,0.000265,0.000000,0.000000,0.001992,0.307268,-0.003048,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000243,0.000208,0.000262,0.000000,0.000000,0.001957,0.304262,-0.003006,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000239,0.000205,0.000259,0.000000,0.000000,0.001923,0.301298,-0.002964,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000418,0.000017,0.000031,0.000017,0.000021,0.000234,0.000203,0.000273,0.000000,0.000000,0.001891,0.298758,-0.002541,1.000000,0.000014 +38,2022-08-02 14:00:00,0.000383,0.000015,0.000013,0.000015,0.000022,0.000231,0.000200,0.000268,0.000113,0.000113,0.001861,0.296123,-0.002635,1.000000,0.000012 +39,2022-08-02 15:00:00,0.000383,0.000010,0.000001,0.000010,0.000023,0.000227,0.000197,0.000260,0.000300,0.000300,0.001831,0.293352,-0.002771,1.000000,0.000003 +40,2022-08-02 16:00:00,0.000408,0.000003,0.000000,0.000003,0.000024,0.000223,0.000194,0.000250,0.000432,0.000432,0.001803,0.290517,-0.002836,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000408,0.000000,0.000000,0.000000,0.000025,0.000220,0.000192,0.000245,0.000516,0.000516,0.001775,0.287637,-0.002879,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000800,0.000005,0.000010,0.000005,0.000026,0.000216,0.000189,0.000248,0.000570,0.000570,0.001748,0.285122,-0.002515,1.000000,0.000004 +43,2022-08-02 19:00:00,0.000165,0.000002,0.000000,0.000002,0.000027,0.000213,0.000186,0.000243,0.000518,0.000518,0.001721,0.282077,-0.003045,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000064,0.000002,0.000000,0.000002,0.000029,0.000210,0.000183,0.000240,0.000474,0.000474,0.001695,0.279018,-0.003059,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000206,0.000180,0.000236,0.000452,0.000452,0.001669,0.276022,-0.002996,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000203,0.000178,0.000234,0.000402,0.000402,0.001643,0.273117,-0.002905,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000064,0.000000,0.000000,0.000000,0.000032,0.000200,0.000175,0.000232,0.000289,0.000289,0.001618,0.270365,-0.002752,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000197,0.000172,0.000230,0.000154,0.000154,0.001594,0.267783,-0.002582,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000194,0.000170,0.000228,0.000018,0.000018,0.001570,0.265371,-0.002412,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000036,0.000191,0.000168,0.000227,0.000000,0.000000,0.001547,0.263011,-0.002361,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000037,0.000188,0.000165,0.000226,0.000000,0.000000,0.001524,0.260682,-0.002328,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000185,0.000163,0.000224,0.000000,0.000000,0.001502,0.258387,-0.002296,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000182,0.000161,0.000223,0.000000,0.000000,0.001480,0.256123,-0.002264,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000064,0.000001,0.000001,0.000001,0.000041,0.000180,0.000159,0.000221,0.000000,0.000000,0.001459,0.253892,-0.002231,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000177,0.000157,0.000220,0.000000,0.000000,0.001439,0.251629,-0.002263,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000175,0.000154,0.000218,0.000000,0.000000,0.001418,0.249398,-0.002231,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000172,0.000152,0.000217,0.000000,0.000000,0.001398,0.247197,-0.002200,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000170,0.000150,0.000216,0.000000,0.000000,0.001379,0.245028,-0.002170,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000167,0.000148,0.000215,0.000000,0.000000,0.001359,0.242888,-0.002139,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000165,0.000146,0.000214,0.000000,0.000000,0.001340,0.240779,-0.002110,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000163,0.000144,0.000213,0.000000,0.000000,0.001322,0.238698,-0.002080,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000160,0.000142,0.000212,0.000111,0.000111,0.001303,0.236538,-0.002161,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000158,0.000139,0.000211,0.000351,0.000351,0.001285,0.234171,-0.002367,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000156,0.000137,0.000210,0.000497,0.000497,0.001266,0.231692,-0.002479,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000153,0.000135,0.000209,0.000602,0.000602,0.001247,0.229144,-0.002548,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000151,0.000132,0.000208,0.000583,0.000583,0.001229,0.226651,-0.002493,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000149,0.000130,0.000207,0.000524,0.000524,0.001210,0.224251,-0.002400,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001938,0.000160,0.000290,0.000160,0.000060,0.000146,0.000129,0.000366,0.000475,0.000475,0.001193,0.223557,-0.000694,1.000000,0.000131 +69,2022-08-03 21:00:00,0.000196,0.000073,0.000000,0.000073,0.000061,0.000144,0.000127,0.000278,0.000427,0.000427,0.001175,0.221489,-0.002068,1.000000,0.000058 +70,2022-08-03 22:00:00,0.000000,0.000058,0.000000,0.000058,0.000062,0.000142,0.000125,0.000263,0.000361,0.000361,0.001158,0.219320,-0.002168,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000035,0.000000,0.000000,0.000000,0.000064,0.000140,0.000123,0.000204,0.000267,0.000267,0.001141,0.217310,-0.002010,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000138,0.000121,0.000203,0.000165,0.000165,0.001124,0.215394,-0.001917,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000136,0.000119,0.000203,0.000028,0.000028,0.001108,0.213639,-0.001754,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000134,0.000118,0.000202,0.000000,0.000000,0.001092,0.211937,-0.001703,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000132,0.000116,0.000201,0.000000,0.000000,0.001076,0.210258,-0.001679,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000130,0.000115,0.000201,0.000000,0.000000,0.001061,0.208602,-0.001656,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000128,0.000113,0.000201,0.000000,0.000000,0.001045,0.206970,-0.001632,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000126,0.000111,0.000200,0.000000,0.000000,0.001030,0.205360,-0.001610,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000124,0.000110,0.000200,0.000000,0.000000,0.001016,0.203773,-0.001587,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000123,0.000108,0.000200,0.000000,0.000000,0.001001,0.202207,-0.001565,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000121,0.000107,0.000199,0.000000,0.000000,0.000987,0.200664,-0.001543,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000119,0.000105,0.000199,0.000000,0.000000,0.000973,0.199142,-0.001522,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000117,0.000104,0.000199,0.000000,0.000000,0.000960,0.197641,-0.001501,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000116,0.000102,0.000199,0.000000,0.000000,0.000946,0.196161,-0.001480,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000114,0.000101,0.000198,0.000000,0.000000,0.000933,0.194702,-0.001459,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000113,0.000099,0.000198,0.000111,0.000111,0.000920,0.193154,-0.001548,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000111,0.000098,0.000198,0.000350,0.000350,0.000907,0.191391,-0.001763,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000109,0.000096,0.000198,0.000511,0.000511,0.000893,0.189494,-0.001897,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000108,0.000094,0.000198,0.000607,0.000607,0.000880,0.187529,-0.001965,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000106,0.000092,0.000198,0.000678,0.000678,0.000866,0.185521,-0.002008,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000104,0.000090,0.000197,0.000601,0.000601,0.000852,0.183618,-0.001904,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000102,0.000088,0.000197,0.000550,0.000550,0.000838,0.181791,-0.001827,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000101,0.000087,0.000197,0.000498,0.000498,0.000824,0.180041,-0.001750,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000099,0.000085,0.000197,0.000425,0.000425,0.000810,0.178387,-0.001654,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000097,0.000084,0.000196,0.000311,0.000311,0.000796,0.176868,-0.001519,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000096,0.000082,0.000196,0.000171,0.000171,0.000783,0.175508,-0.001360,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000094,0.000081,0.000196,0.000030,0.000030,0.000770,0.174307,-0.001201,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000092,0.000080,0.000196,0.000000,0.000000,0.000757,0.173151,-0.001155,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000091,0.000079,0.000196,0.000000,0.000000,0.000745,0.172012,-0.001139,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000089,0.000078,0.000196,0.000000,0.000000,0.000733,0.170889,-0.001123,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000088,0.000077,0.000196,0.000000,0.000000,0.000722,0.169781,-0.001108,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000087,0.000076,0.000196,0.000000,0.000000,0.000711,0.168689,-0.001092,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000085,0.000075,0.000197,0.000000,0.000000,0.000700,0.167612,-0.001077,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000084,0.000073,0.000197,0.000000,0.000000,0.000689,0.166550,-0.001062,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000083,0.000072,0.000197,0.000000,0.000000,0.000679,0.165503,-0.001047,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000082,0.000071,0.000197,0.000000,0.000000,0.000669,0.164470,-0.001033,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000080,0.000070,0.000198,0.000000,0.000000,0.000659,0.163452,-0.001018,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000079,0.000069,0.000198,0.000000,0.000000,0.000649,0.162448,-0.001004,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000078,0.000068,0.000198,0.000000,0.000000,0.000640,0.161458,-0.000990,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000077,0.000067,0.000198,0.000122,0.000122,0.000630,0.160361,-0.001097,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000076,0.000066,0.000199,0.000358,0.000358,0.000621,0.159047,-0.001314,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000074,0.000065,0.000199,0.000513,0.000513,0.000611,0.157598,-0.001449,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000073,0.000063,0.000199,0.000622,0.000622,0.000601,0.156062,-0.001536,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000072,0.000062,0.000200,0.000612,0.000612,0.000591,0.154557,-0.001505,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000071,0.000060,0.000200,0.000567,0.000567,0.000581,0.153117,-0.001440,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000069,0.000059,0.000200,0.000511,0.000511,0.000570,0.151754,-0.001364,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000002,0.000000,0.000000,0.000000,0.000132,0.000068,0.000058,0.000200,0.000465,0.000465,0.000560,0.150456,-0.001297,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000067,0.000057,0.000200,0.000396,0.000396,0.000550,0.149242,-0.001214,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000125,0.000000,0.000000,0.000000,0.000135,0.000066,0.000056,0.000201,0.000292,0.000292,0.000539,0.148271,-0.000971,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000064,0.000055,0.000201,0.000165,0.000165,0.000530,0.147315,-0.000956,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000299,0.000005,0.000009,0.000005,0.000138,0.000063,0.000054,0.000206,0.000045,0.000045,0.000521,0.146777,-0.000538,1.000000,0.000004 +122,2022-08-06 02:00:00,0.000608,0.000030,0.000051,0.000030,0.000139,0.000062,0.000054,0.000232,0.000000,0.000000,0.000512,0.146554,-0.000223,1.000000,0.000025 +123,2022-08-06 03:00:00,0.000241,0.000019,0.000008,0.000019,0.000141,0.000061,0.000053,0.000221,0.000000,0.000000,0.000504,0.146014,-0.000539,1.000000,0.000014 +124,2022-08-06 04:00:00,0.000089,0.000013,0.000001,0.000013,0.000142,0.000060,0.000053,0.000216,0.000000,0.000000,0.000497,0.145340,-0.000675,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000103,0.000003,0.000002,0.000003,0.000144,0.000059,0.000052,0.000206,0.000000,0.000000,0.000489,0.144687,-0.000652,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000166,0.000003,0.000004,0.000003,0.000145,0.000059,0.000052,0.000207,0.000000,0.000000,0.000482,0.144104,-0.000584,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000147,0.000058,0.000051,0.000206,0.000000,0.000000,0.000475,0.143369,-0.000735,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000148,0.000057,0.000050,0.000206,0.000000,0.000000,0.000468,0.142644,-0.000725,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000056,0.000049,0.000206,0.000000,0.000000,0.000462,0.141930,-0.000715,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000055,0.000049,0.000206,0.000000,0.000000,0.000455,0.141225,-0.000705,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000055,0.000048,0.000207,0.000000,0.000000,0.000449,0.140530,-0.000695,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000047,0.000208,0.000000,0.000000,0.000442,0.139845,-0.000685,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000053,0.000047,0.000208,0.000000,0.000000,0.000436,0.139169,-0.000676,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000052,0.000046,0.000209,0.000104,0.000104,0.000430,0.138401,-0.000769,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000051,0.000045,0.000209,0.000331,0.000331,0.000423,0.137419,-0.000982,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000051,0.000044,0.000210,0.000487,0.000487,0.000417,0.136298,-0.001122,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000050,0.000043,0.000211,0.000591,0.000591,0.000410,0.135089,-0.001209,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000049,0.000042,0.000211,0.000661,0.000661,0.000402,0.133827,-0.001262,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000048,0.000040,0.000212,0.000621,0.000621,0.000395,0.132623,-0.001204,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000047,0.000039,0.000212,0.000563,0.000563,0.000387,0.131493,-0.001130,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000046,0.000038,0.000212,0.000500,0.000500,0.000379,0.130440,-0.001052,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000045,0.000037,0.000213,0.000426,0.000426,0.000371,0.129476,-0.000965,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000044,0.000036,0.000213,0.000306,0.000306,0.000364,0.128642,-0.000833,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000036,0.000214,0.000167,0.000167,0.000356,0.127957,-0.000685,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000042,0.000035,0.000214,0.000026,0.000026,0.000349,0.127421,-0.000536,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000215,0.000000,0.000000,0.000342,0.126919,-0.000503,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000041,0.000034,0.000215,0.000000,0.000000,0.000336,0.126423,-0.000496,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000034,0.000216,0.000000,0.000000,0.000330,0.125934,-0.000489,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000039,0.000033,0.000217,0.000000,0.000000,0.000324,0.125452,-0.000482,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000033,0.000217,0.000000,0.000000,0.000318,0.124977,-0.000475,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000038,0.000032,0.000218,0.000000,0.000000,0.000312,0.124508,-0.000469,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000037,0.000032,0.000218,0.000000,0.000000,0.000307,0.124046,-0.000462,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000219,0.000000,0.000000,0.000302,0.123590,-0.000456,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000036,0.000031,0.000220,0.000000,0.000000,0.000297,0.123141,-0.000449,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000031,0.000221,0.000000,0.000000,0.000292,0.122698,-0.000443,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000035,0.000030,0.000221,0.000000,0.000000,0.000288,0.122261,-0.000437,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000030,0.000222,0.000000,0.000000,0.000283,0.121830,-0.000431,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000029,0.000223,0.000100,0.000100,0.000279,0.121307,-0.000523,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000029,0.000224,0.000337,0.000337,0.000274,0.120557,-0.000750,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000028,0.000224,0.000492,0.000492,0.000269,0.119665,-0.000893,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000027,0.000225,0.000592,0.000592,0.000264,0.118686,-0.000979,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000026,0.000225,0.000628,0.000628,0.000258,0.117686,-0.001000,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000025,0.000226,0.000581,0.000581,0.000252,0.116745,-0.000941,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000227,0.000535,0.000535,0.000247,0.115864,-0.000881,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000023,0.000227,0.000476,0.000476,0.000241,0.115053,-0.000811,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000022,0.000228,0.000401,0.000401,0.000235,0.114327,-0.000726,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000022,0.000228,0.000289,0.000289,0.000229,0.113722,-0.000605,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000021,0.000229,0.000132,0.000132,0.000223,0.113280,-0.000442,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000008,0.000008,0.000218,0.112966,-0.000314,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000000,0.000000,0.000213,0.112664,-0.000302,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000000,0.000000,0.000208,0.112367,-0.000297,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000020,0.000231,0.000000,0.000000,0.000204,0.112074,-0.000293,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000232,0.000000,0.000000,0.000200,0.111785,-0.000289,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000233,0.000000,0.000000,0.000196,0.111500,-0.000285,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000000,0.000000,0.000192,0.111218,-0.000281,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000188,0.110941,-0.000277,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000019,0.000235,0.000000,0.000000,0.000185,0.110668,-0.000273,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000000,0.000000,0.000181,0.110398,-0.000270,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000236,0.000000,0.000000,0.000178,0.110133,-0.000266,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000175,0.109870,-0.000262,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000172,0.109612,-0.000258,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000018,0.000239,0.000084,0.000084,0.000169,0.109274,-0.000338,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000239,0.000323,0.000323,0.000166,0.108706,-0.000569,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000016,0.000240,0.000477,0.000477,0.000163,0.107994,-0.000712,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000016,0.000241,0.000574,0.000574,0.000159,0.107195,-0.000799,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000015,0.000241,0.000624,0.000624,0.000155,0.106358,-0.000837,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000014,0.000242,0.000585,0.000585,0.000151,0.105571,-0.000787,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000013,0.000242,0.000530,0.000530,0.000146,0.104850,-0.000722,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000013,0.000243,0.000475,0.000475,0.000142,0.104193,-0.000657,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000012,0.000244,0.000410,0.000410,0.000137,0.103610,-0.000584,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000012,0.000244,0.000292,0.000292,0.000133,0.103150,-0.000459,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000016,0.000011,0.000245,0.000152,0.000152,0.000128,0.102835,-0.000315,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000011,0.000245,0.000010,0.000010,0.000124,0.102665,-0.000170,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000011,0.000246,0.000000,0.000000,0.000121,0.102507,-0.000158,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000011,0.000246,0.000000,0.000000,0.000117,0.102351,-0.000156,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000011,0.000247,0.000000,0.000000,0.000114,0.102197,-0.000154,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000010,0.000248,0.000000,0.000000,0.000111,0.102045,-0.000152,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000010,0.000248,0.000000,0.000000,0.000108,0.101896,-0.000150,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000010,0.000249,0.000000,0.000000,0.000106,0.101748,-0.000147,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000010,0.000250,0.000000,0.000000,0.000103,0.101603,-0.000145,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000010,0.000251,0.000000,0.000000,0.000101,0.101460,-0.000143,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000010,0.000251,0.000000,0.000000,0.000099,0.101318,-0.000141,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000252,0.000000,0.000000,0.000097,0.101179,-0.000139,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000011,0.000010,0.000253,0.000000,0.000000,0.000095,0.101041,-0.000137,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000011,0.000009,0.000254,0.000000,0.000000,0.000093,0.100906,-0.000136,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000011,0.000009,0.000254,0.000093,0.000000,0.000091,0.100772,-0.000134,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620806.csv b/test/channel_loss/channel_forcing/et/cat-2620806.csv new file mode 100644 index 000000000..31df408bb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620806.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001481,0.000440,0.001481,0.000153,0.000153,0.010555,0.422016,-0.005116,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001337,0.000434,0.001337,0.000038,0.000038,0.009652,0.417023,-0.004993,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001214,0.000428,0.001214,0.000000,0.000000,0.008866,0.412137,-0.004886,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001108,0.000422,0.001109,0.000000,0.000000,0.008180,0.407318,-0.004819,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001018,0.000416,0.001018,0.000000,0.000000,0.007578,0.402567,-0.004752,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000940,0.000410,0.000940,0.000000,0.000000,0.007048,0.397881,-0.004686,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000871,0.000404,0.000872,0.000000,0.000000,0.006581,0.393260,-0.004621,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000812,0.000399,0.000813,0.000000,0.000000,0.006168,0.388704,-0.004556,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000760,0.000393,0.000761,0.000000,0.000000,0.005802,0.384211,-0.004493,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000714,0.000388,0.000715,0.000000,0.000000,0.005476,0.379780,-0.004431,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000673,0.000382,0.000675,0.000000,0.000000,0.005185,0.375411,-0.004369,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000637,0.000377,0.000639,0.000000,0.000000,0.004925,0.371103,-0.004308,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000605,0.000372,0.000607,0.000000,0.000000,0.004692,0.366854,-0.004249,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000576,0.000367,0.000579,0.000000,0.000000,0.004483,0.362664,-0.004190,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000550,0.000361,0.000554,0.000125,0.000125,0.004294,0.358410,-0.004255,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000527,0.000356,0.000531,0.000368,0.000368,0.004123,0.353974,-0.004435,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000506,0.000350,0.000511,0.000526,0.000526,0.003967,0.349445,-0.004529,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000487,0.000345,0.000492,0.000617,0.000617,0.003825,0.344888,-0.004557,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000470,0.000339,0.000475,0.000523,0.000523,0.003695,0.340488,-0.004400,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000430,0.000000,0.000000,0.000000,0.000006,0.000454,0.000335,0.000460,0.000479,0.000479,0.003575,0.336617,-0.003871,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000449,0.000000,0.000000,0.000000,0.000007,0.000439,0.000330,0.000446,0.000413,0.000413,0.003466,0.332883,-0.003734,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000704,0.000011,0.000021,0.000011,0.000008,0.000426,0.000326,0.000445,0.000335,0.000335,0.003366,0.329508,-0.003375,1.000000,0.000009 +22,2022-08-01 22:00:00,0.000477,0.000008,0.000005,0.000008,0.000008,0.000414,0.000322,0.000430,0.000298,0.000298,0.003274,0.326008,-0.003500,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000517,0.000013,0.000014,0.000013,0.000009,0.000403,0.000317,0.000424,0.000216,0.000216,0.003189,0.322669,-0.003339,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000449,0.000012,0.000014,0.000012,0.000010,0.000392,0.000313,0.000414,0.000141,0.000141,0.003110,0.319383,-0.003286,1.000000,0.000009 +25,2022-08-02 01:00:00,0.001111,0.000088,0.000149,0.000088,0.000011,0.000383,0.000310,0.000482,0.000058,0.000058,0.003038,0.316744,-0.002639,1.000000,0.000070 +26,2022-08-02 02:00:00,0.001627,0.000221,0.000329,0.000221,0.000011,0.000374,0.000307,0.000607,0.000000,0.000000,0.002971,0.314530,-0.002214,1.000000,0.000178 +27,2022-08-02 03:00:00,0.001516,0.000271,0.000289,0.000271,0.000012,0.000366,0.000305,0.000649,0.000000,0.000000,0.002910,0.312277,-0.002253,1.000000,0.000196 +28,2022-08-02 04:00:00,0.001678,0.000328,0.000346,0.000328,0.000013,0.000358,0.000302,0.000700,0.000000,0.000000,0.002853,0.310159,-0.002118,1.000000,0.000213 +29,2022-08-02 05:00:00,0.001302,0.000264,0.000218,0.000264,0.000014,0.000352,0.000299,0.000630,0.000000,0.000000,0.002801,0.307826,-0.002333,1.000000,0.000167 +30,2022-08-02 06:00:00,0.001205,0.000227,0.000188,0.000227,0.000015,0.000345,0.000296,0.000587,0.000000,0.000000,0.002752,0.305459,-0.002367,1.000000,0.000128 +31,2022-08-02 07:00:00,0.000000,0.000091,0.000000,0.000091,0.000016,0.000339,0.000292,0.000446,0.000000,0.000000,0.002705,0.302122,-0.003337,1.000000,0.000038 +32,2022-08-02 08:00:00,0.000000,0.000038,0.000000,0.000038,0.000017,0.000333,0.000288,0.000388,0.000000,0.000000,0.002660,0.298832,-0.003291,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000328,0.000284,0.000345,0.000000,0.000000,0.002616,0.295587,-0.003245,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000322,0.000280,0.000341,0.000000,0.000000,0.002574,0.292387,-0.003200,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000317,0.000276,0.000337,0.000000,0.000000,0.002533,0.289232,-0.003155,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000312,0.000272,0.000333,0.000000,0.000000,0.002494,0.286120,-0.003112,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000279,0.000006,0.000011,0.000006,0.000022,0.000307,0.000269,0.000335,0.000000,0.000000,0.002456,0.283316,-0.002804,1.000000,0.000005 +38,2022-08-02 14:00:00,0.000246,0.000004,0.000002,0.000004,0.000023,0.000302,0.000265,0.000329,0.000115,0.000115,0.002419,0.280413,-0.002903,1.000000,0.000003 +39,2022-08-02 15:00:00,0.000203,0.000003,0.000000,0.000003,0.000024,0.000297,0.000262,0.000324,0.000312,0.000312,0.002383,0.277316,-0.003097,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000266,0.000000,0.000000,0.000000,0.000025,0.000293,0.000258,0.000319,0.000444,0.000444,0.002348,0.274194,-0.003122,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000287,0.000000,0.000000,0.000000,0.000026,0.000288,0.000254,0.000315,0.000529,0.000529,0.002313,0.271053,-0.003141,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000655,0.000000,0.000001,0.000000,0.000027,0.000284,0.000250,0.000312,0.000586,0.000586,0.002280,0.268261,-0.002791,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000086,0.000000,0.000000,0.000000,0.000029,0.000280,0.000246,0.000309,0.000532,0.000532,0.002246,0.265002,-0.003260,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000276,0.000242,0.000305,0.000484,0.000484,0.002213,0.261811,-0.003190,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000271,0.000239,0.000302,0.000468,0.000468,0.002180,0.258681,-0.003130,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000267,0.000235,0.000299,0.000412,0.000412,0.002148,0.255650,-0.003031,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000263,0.000231,0.000296,0.000300,0.000300,0.002116,0.252771,-0.002879,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000259,0.000228,0.000294,0.000165,0.000165,0.002085,0.250066,-0.002705,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000255,0.000225,0.000291,0.000023,0.000023,0.002054,0.247537,-0.002529,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000037,0.000251,0.000222,0.000289,0.000000,0.000000,0.002024,0.245067,-0.002471,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000001,0.000000,0.000038,0.000248,0.000219,0.000287,0.000000,0.000000,0.001995,0.242630,-0.002436,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000244,0.000216,0.000284,0.000000,0.000000,0.001967,0.240228,-0.002403,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000041,0.000241,0.000213,0.000282,0.000000,0.000000,0.001939,0.237859,-0.002369,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000042,0.000237,0.000210,0.000280,0.000000,0.000000,0.001912,0.235522,-0.002336,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000234,0.000207,0.000278,0.000000,0.000000,0.001886,0.233157,-0.002366,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000230,0.000204,0.000275,0.000000,0.000000,0.001859,0.230824,-0.002333,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000227,0.000201,0.000273,0.000000,0.000000,0.001834,0.228524,-0.002300,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000224,0.000199,0.000272,0.000000,0.000000,0.001808,0.226255,-0.002268,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000221,0.000196,0.000270,0.000000,0.000000,0.001783,0.224019,-0.002237,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000218,0.000193,0.000268,0.000000,0.000000,0.001759,0.221813,-0.002206,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000215,0.000190,0.000266,0.000000,0.000000,0.001735,0.219638,-0.002175,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000212,0.000188,0.000265,0.000120,0.000120,0.001711,0.217375,-0.002263,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000209,0.000185,0.000263,0.000369,0.000369,0.001687,0.214898,-0.002477,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000205,0.000181,0.000261,0.000517,0.000517,0.001663,0.212308,-0.002589,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000202,0.000178,0.000260,0.000620,0.000620,0.001638,0.209654,-0.002655,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000199,0.000175,0.000258,0.000602,0.000602,0.001614,0.207054,-0.002600,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000196,0.000172,0.000257,0.000540,0.000540,0.001589,0.204551,-0.002503,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002006,0.000136,0.000248,0.000136,0.000062,0.000193,0.000171,0.000392,0.000490,0.000490,0.001567,0.203866,-0.000685,1.000000,0.000112 +69,2022-08-03 21:00:00,0.000205,0.000062,0.000000,0.000062,0.000063,0.000191,0.000168,0.000316,0.000449,0.000449,0.001545,0.201699,-0.002167,1.000000,0.000050 +70,2022-08-03 22:00:00,0.000000,0.000050,0.000000,0.000050,0.000065,0.000188,0.000165,0.000302,0.000381,0.000381,0.001522,0.199428,-0.002271,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000016,0.000000,0.000000,0.000000,0.000066,0.000185,0.000163,0.000251,0.000284,0.000284,0.001500,0.197299,-0.002129,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000182,0.000160,0.000250,0.000176,0.000176,0.001478,0.195291,-0.002008,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000180,0.000158,0.000249,0.000035,0.000035,0.001457,0.193450,-0.001841,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000177,0.000156,0.000247,0.000000,0.000000,0.001436,0.191669,-0.001781,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000174,0.000154,0.000246,0.000000,0.000000,0.001415,0.189912,-0.001756,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000172,0.000152,0.000245,0.000000,0.000000,0.001395,0.188180,-0.001732,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000169,0.000150,0.000244,0.000000,0.000000,0.001375,0.186472,-0.001708,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000167,0.000147,0.000243,0.000000,0.000000,0.001356,0.184788,-0.001684,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000164,0.000145,0.000243,0.000000,0.000000,0.001337,0.183127,-0.001661,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000162,0.000143,0.000242,0.000000,0.000000,0.001318,0.181489,-0.001638,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000160,0.000141,0.000241,0.000000,0.000000,0.001300,0.179874,-0.001615,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000158,0.000139,0.000240,0.000000,0.000000,0.001282,0.178281,-0.001593,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000155,0.000137,0.000239,0.000000,0.000000,0.001264,0.176711,-0.001571,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000153,0.000136,0.000239,0.000000,0.000000,0.001246,0.175162,-0.001549,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000151,0.000134,0.000238,0.000000,0.000000,0.001229,0.173635,-0.001527,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000149,0.000132,0.000238,0.000116,0.000116,0.001212,0.172015,-0.001620,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000147,0.000129,0.000237,0.000363,0.000363,0.001194,0.170173,-0.001842,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000144,0.000127,0.000236,0.000524,0.000524,0.001177,0.168198,-0.001975,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000142,0.000124,0.000236,0.000622,0.000622,0.001159,0.166154,-0.002044,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000140,0.000122,0.000235,0.000691,0.000691,0.001141,0.164070,-0.002083,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000138,0.000119,0.000234,0.000624,0.000624,0.001123,0.162082,-0.001989,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000135,0.000117,0.000233,0.000553,0.000553,0.001104,0.160190,-0.001891,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000133,0.000115,0.000233,0.000504,0.000504,0.001086,0.158374,-0.001816,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000131,0.000113,0.000232,0.000433,0.000433,0.001068,0.156653,-0.001721,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000129,0.000111,0.000231,0.000317,0.000317,0.001050,0.155070,-0.001583,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000127,0.000109,0.000231,0.000181,0.000181,0.001033,0.153643,-0.001427,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000124,0.000107,0.000230,0.000039,0.000039,0.001016,0.152377,-0.001267,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000122,0.000106,0.000230,0.000000,0.000000,0.000999,0.151166,-0.001211,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000120,0.000105,0.000229,0.000000,0.000000,0.000983,0.149972,-0.001194,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000118,0.000103,0.000229,0.000000,0.000000,0.000968,0.148795,-0.001177,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000117,0.000102,0.000229,0.000000,0.000000,0.000953,0.147634,-0.001161,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000115,0.000100,0.000228,0.000000,0.000000,0.000938,0.146489,-0.001145,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000113,0.000099,0.000228,0.000000,0.000000,0.000924,0.145360,-0.001129,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000111,0.000097,0.000228,0.000000,0.000000,0.000910,0.144246,-0.001113,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000110,0.000096,0.000228,0.000000,0.000000,0.000897,0.143149,-0.001098,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000108,0.000095,0.000228,0.000000,0.000000,0.000883,0.142066,-0.001083,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000106,0.000093,0.000228,0.000000,0.000000,0.000870,0.140998,-0.001068,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000105,0.000092,0.000228,0.000000,0.000000,0.000858,0.139946,-0.001053,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000103,0.000091,0.000228,0.000000,0.000000,0.000845,0.138908,-0.001038,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000102,0.000089,0.000228,0.000128,0.000128,0.000833,0.137758,-0.001150,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000100,0.000088,0.000228,0.000368,0.000368,0.000820,0.136387,-0.001371,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000099,0.000086,0.000227,0.000524,0.000524,0.000808,0.134882,-0.001505,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000097,0.000084,0.000227,0.000631,0.000631,0.000795,0.133291,-0.001590,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000095,0.000082,0.000227,0.000616,0.000616,0.000781,0.131738,-0.001553,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000016,0.000000,0.000000,0.000000,0.000133,0.000094,0.000080,0.000227,0.000569,0.000569,0.000768,0.130268,-0.001470,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000016,0.000000,0.000000,0.000000,0.000135,0.000092,0.000079,0.000227,0.000510,0.000510,0.000754,0.128877,-0.001391,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000016,0.000000,0.000000,0.000000,0.000136,0.000090,0.000077,0.000227,0.000468,0.000468,0.000741,0.127546,-0.001331,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000138,0.000089,0.000075,0.000227,0.000398,0.000398,0.000727,0.126331,-0.001215,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000142,0.000000,0.000000,0.000000,0.000139,0.000087,0.000074,0.000227,0.000296,0.000296,0.000714,0.125329,-0.001002,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000141,0.000086,0.000073,0.000227,0.000172,0.000172,0.000702,0.124355,-0.000975,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000393,0.000007,0.000013,0.000007,0.000143,0.000084,0.000072,0.000234,0.000051,0.000051,0.000690,0.123857,-0.000497,1.000000,0.000006 +122,2022-08-06 02:00:00,0.000759,0.000037,0.000061,0.000037,0.000144,0.000083,0.000072,0.000264,0.000000,0.000000,0.000679,0.123731,-0.000126,1.000000,0.000030 +123,2022-08-06 03:00:00,0.000330,0.000024,0.000012,0.000024,0.000146,0.000082,0.000072,0.000252,0.000000,0.000000,0.000669,0.123232,-0.000499,1.000000,0.000018 +124,2022-08-06 04:00:00,0.000193,0.000017,0.000004,0.000017,0.000147,0.000080,0.000071,0.000245,0.000000,0.000000,0.000660,0.122613,-0.000620,1.000000,0.000004 +125,2022-08-06 05:00:00,0.000213,0.000006,0.000005,0.000006,0.000149,0.000079,0.000070,0.000234,0.000000,0.000000,0.000650,0.122020,-0.000593,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000294,0.000007,0.000010,0.000007,0.000150,0.000078,0.000069,0.000236,0.000000,0.000000,0.000642,0.121511,-0.000509,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000151,0.000077,0.000068,0.000232,0.000000,0.000000,0.000633,0.120729,-0.000782,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000153,0.000076,0.000068,0.000231,0.000000,0.000000,0.000624,0.119958,-0.000771,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000075,0.000067,0.000229,0.000000,0.000000,0.000616,0.119197,-0.000760,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000074,0.000066,0.000230,0.000000,0.000000,0.000607,0.118447,-0.000750,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000073,0.000065,0.000230,0.000000,0.000000,0.000599,0.117708,-0.000739,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000072,0.000064,0.000231,0.000000,0.000000,0.000591,0.116979,-0.000729,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000071,0.000063,0.000231,0.000000,0.000000,0.000583,0.116259,-0.000719,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000070,0.000062,0.000232,0.000110,0.000110,0.000575,0.115441,-0.000818,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000069,0.000061,0.000232,0.000348,0.000348,0.000567,0.114400,-0.001041,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000068,0.000059,0.000233,0.000504,0.000504,0.000558,0.113220,-0.001180,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000067,0.000058,0.000233,0.000605,0.000605,0.000549,0.111957,-0.001263,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000066,0.000056,0.000233,0.000671,0.000671,0.000539,0.110646,-0.001311,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000064,0.000054,0.000233,0.000622,0.000622,0.000529,0.109401,-0.001245,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000063,0.000053,0.000234,0.000557,0.000557,0.000519,0.108238,-0.001163,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000062,0.000052,0.000234,0.000505,0.000505,0.000509,0.107142,-0.001096,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000061,0.000050,0.000234,0.000430,0.000430,0.000499,0.106136,-0.001007,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000059,0.000049,0.000234,0.000313,0.000313,0.000489,0.105259,-0.000877,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000058,0.000048,0.000234,0.000175,0.000175,0.000479,0.104530,-0.000729,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000057,0.000048,0.000235,0.000033,0.000033,0.000470,0.103951,-0.000579,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000056,0.000047,0.000235,0.000000,0.000000,0.000461,0.103413,-0.000538,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000055,0.000046,0.000235,0.000000,0.000000,0.000452,0.102882,-0.000531,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000054,0.000046,0.000236,0.000000,0.000000,0.000444,0.102359,-0.000523,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000053,0.000045,0.000236,0.000000,0.000000,0.000436,0.101843,-0.000516,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000052,0.000045,0.000237,0.000000,0.000000,0.000429,0.101334,-0.000509,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000051,0.000044,0.000237,0.000000,0.000000,0.000421,0.100832,-0.000502,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000050,0.000043,0.000238,0.000000,0.000000,0.000414,0.100337,-0.000495,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000050,0.000043,0.000238,0.000000,0.000000,0.000408,0.099849,-0.000488,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000049,0.000042,0.000239,0.000000,0.000000,0.000401,0.099368,-0.000481,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000048,0.000042,0.000239,0.000000,0.000000,0.000395,0.098894,-0.000475,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000047,0.000041,0.000240,0.000000,0.000000,0.000388,0.098426,-0.000468,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000046,0.000040,0.000240,0.000000,0.000000,0.000382,0.097964,-0.000461,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000046,0.000040,0.000241,0.000105,0.000105,0.000376,0.097405,-0.000559,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000045,0.000039,0.000242,0.000348,0.000348,0.000370,0.096615,-0.000790,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000044,0.000038,0.000242,0.000503,0.000503,0.000364,0.095683,-0.000932,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000043,0.000036,0.000242,0.000606,0.000606,0.000357,0.094662,-0.001021,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000042,0.000035,0.000243,0.000641,0.000641,0.000349,0.093621,-0.001041,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000041,0.000034,0.000243,0.000589,0.000589,0.000342,0.092645,-0.000976,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000041,0.000033,0.000244,0.000537,0.000537,0.000334,0.091735,-0.000911,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000040,0.000032,0.000244,0.000494,0.000494,0.000326,0.090879,-0.000855,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000039,0.000031,0.000244,0.000416,0.000416,0.000318,0.090113,-0.000766,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000038,0.000030,0.000245,0.000306,0.000306,0.000310,0.089465,-0.000648,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000037,0.000029,0.000245,0.000142,0.000142,0.000303,0.088988,-0.000477,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000036,0.000029,0.000245,0.000012,0.000012,0.000296,0.088646,-0.000342,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000035,0.000028,0.000246,0.000000,0.000000,0.000289,0.088320,-0.000326,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000034,0.000028,0.000246,0.000000,0.000000,0.000283,0.087999,-0.000321,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000034,0.000028,0.000247,0.000000,0.000000,0.000277,0.087682,-0.000317,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000033,0.000027,0.000247,0.000000,0.000000,0.000272,0.087370,-0.000312,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000032,0.000027,0.000248,0.000000,0.000000,0.000266,0.087062,-0.000308,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000032,0.000027,0.000249,0.000000,0.000000,0.000261,0.086759,-0.000304,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000031,0.000026,0.000249,0.000000,0.000000,0.000256,0.086459,-0.000299,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000031,0.000026,0.000250,0.000000,0.000000,0.000252,0.086164,-0.000295,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000030,0.000025,0.000250,0.000000,0.000000,0.000247,0.085873,-0.000291,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000029,0.000025,0.000251,0.000000,0.000000,0.000243,0.085586,-0.000287,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000029,0.000025,0.000252,0.000000,0.000000,0.000239,0.085303,-0.000283,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000028,0.000024,0.000253,0.000000,0.000000,0.000235,0.085024,-0.000279,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000028,0.000024,0.000253,0.000091,0.000091,0.000231,0.084659,-0.000365,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000027,0.000023,0.000254,0.000334,0.000334,0.000227,0.084060,-0.000599,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000027,0.000022,0.000254,0.000492,0.000492,0.000222,0.083312,-0.000747,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000026,0.000022,0.000255,0.000595,0.000000,0.000218,0.083061,-0.000252,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000026,0.000022,0.000256,0.000647,0.000000,0.000213,0.082813,-0.000248,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000025,0.000021,0.000256,0.000587,0.000000,0.000209,0.082568,-0.000245,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000025,0.000021,0.000257,0.000525,0.000000,0.000206,0.082327,-0.000241,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000024,0.000021,0.000258,0.000488,0.000000,0.000202,0.082089,-0.000238,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000024,0.000021,0.000258,0.000420,0.000000,0.000198,0.081855,-0.000235,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000024,0.000020,0.000259,0.000304,0.000000,0.000195,0.081623,-0.000231,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000023,0.000020,0.000260,0.000163,0.000000,0.000192,0.081395,-0.000228,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000023,0.000020,0.000261,0.000017,0.000000,0.000189,0.081171,-0.000225,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000022,0.000019,0.000261,0.000000,0.000000,0.000186,0.080949,-0.000222,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000022,0.000019,0.000262,0.000000,0.000000,0.000183,0.080730,-0.000219,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000022,0.000019,0.000263,0.000000,0.000000,0.000180,0.080514,-0.000216,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000021,0.000019,0.000263,0.000000,0.000000,0.000177,0.080302,-0.000213,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000021,0.000018,0.000264,0.000000,0.000000,0.000174,0.080092,-0.000210,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000021,0.000018,0.000265,0.000000,0.000000,0.000172,0.079885,-0.000207,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000020,0.000018,0.000266,0.000000,0.000000,0.000169,0.079681,-0.000204,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000020,0.000018,0.000266,0.000000,0.000000,0.000166,0.079480,-0.000201,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000020,0.000017,0.000267,0.000000,0.000000,0.000164,0.079282,-0.000198,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000020,0.000017,0.000268,0.000000,0.000000,0.000161,0.079086,-0.000196,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000019,0.000017,0.000269,0.000000,0.000000,0.000159,0.078894,-0.000193,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000019,0.000017,0.000269,0.000000,0.000000,0.000157,0.078704,-0.000190,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000019,0.000016,0.000270,0.000099,0.000000,0.000154,0.078516,-0.000187,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620807.csv b/test/channel_loss/channel_forcing/et/cat-2620807.csv new file mode 100644 index 000000000..98df99569 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620807.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000029,0.000000,0.000000,0.000000,0.000000,0.001454,0.000242,0.001454,0.000141,0.000141,0.010385,0.426196,-0.004840,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001287,0.000239,0.001287,0.000033,0.000033,0.009337,0.421500,-0.004696,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001146,0.000236,0.001146,0.000000,0.000000,0.008427,0.416899,-0.004601,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001026,0.000233,0.001026,0.000000,0.000000,0.007633,0.412360,-0.004539,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000924,0.000230,0.000924,0.000000,0.000000,0.006939,0.407882,-0.004478,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000835,0.000226,0.000836,0.000000,0.000000,0.006331,0.403465,-0.004417,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000759,0.000223,0.000759,0.000000,0.000000,0.005795,0.399108,-0.004358,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000692,0.000220,0.000693,0.000000,0.000000,0.005323,0.394809,-0.004299,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000634,0.000217,0.000635,0.000000,0.000000,0.004906,0.390568,-0.004241,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000584,0.000214,0.000585,0.000000,0.000000,0.004537,0.386384,-0.004184,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000539,0.000212,0.000541,0.000000,0.000000,0.004210,0.382256,-0.004127,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000500,0.000209,0.000502,0.000000,0.000000,0.003919,0.378185,-0.004072,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000465,0.000206,0.000467,0.000000,0.000000,0.003660,0.374168,-0.004017,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000434,0.000203,0.000437,0.000000,0.000000,0.003429,0.370205,-0.003963,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000407,0.000200,0.000410,0.000119,0.000119,0.003222,0.366178,-0.004027,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000383,0.000197,0.000386,0.000348,0.000348,0.003037,0.361980,-0.004198,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000361,0.000194,0.000365,0.000499,0.000499,0.002871,0.357689,-0.004290,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000341,0.000191,0.000346,0.000593,0.000593,0.002721,0.353364,-0.004325,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000324,0.000188,0.000329,0.000510,0.000510,0.002586,0.349179,-0.004185,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000578,0.000002,0.000003,0.000002,0.000006,0.000308,0.000186,0.000316,0.000471,0.000471,0.002464,0.345656,-0.003524,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000725,0.000014,0.000025,0.000014,0.000007,0.000294,0.000184,0.000315,0.000419,0.000419,0.002354,0.342355,-0.003301,1.000000,0.000012 +21,2022-08-01 21:00:00,0.001085,0.000081,0.000134,0.000081,0.000007,0.000281,0.000182,0.000369,0.000330,0.000330,0.002254,0.339434,-0.002921,1.000000,0.000065 +22,2022-08-01 22:00:00,0.000630,0.000055,0.000030,0.000055,0.000008,0.000269,0.000179,0.000333,0.000288,0.000288,0.002164,0.336247,-0.003187,1.000000,0.000040 +23,2022-08-01 23:00:00,0.000586,0.000054,0.000037,0.000054,0.000009,0.000259,0.000177,0.000322,0.000207,0.000207,0.002083,0.333133,-0.003114,1.000000,0.000023 +24,2022-08-02 00:00:00,0.000562,0.000040,0.000046,0.000040,0.000010,0.000249,0.000175,0.000299,0.000136,0.000136,0.002008,0.330099,-0.003034,1.000000,0.000028 +25,2022-08-02 01:00:00,0.001423,0.000227,0.000378,0.000227,0.000010,0.000241,0.000173,0.000478,0.000055,0.000055,0.001941,0.327707,-0.002392,1.000000,0.000179 +26,2022-08-02 02:00:00,0.002088,0.000525,0.000767,0.000525,0.000011,0.000233,0.000172,0.000770,0.000000,0.000000,0.001880,0.325674,-0.002033,1.000000,0.000421 +27,2022-08-02 03:00:00,0.001952,0.000644,0.000685,0.000644,0.000012,0.000226,0.000171,0.000882,0.000000,0.000000,0.001824,0.323616,-0.002059,1.000000,0.000461 +28,2022-08-02 04:00:00,0.002227,0.000791,0.000847,0.000791,0.000013,0.000220,0.000169,0.001023,0.000000,0.000000,0.001774,0.321696,-0.001920,1.000000,0.000518 +29,2022-08-02 05:00:00,0.001707,0.000648,0.000545,0.000648,0.000014,0.000214,0.000168,0.000876,0.000000,0.000000,0.001728,0.319586,-0.002109,1.000000,0.000415 +30,2022-08-02 06:00:00,0.001569,0.000565,0.000472,0.000565,0.000015,0.000208,0.000166,0.000788,0.000000,0.000000,0.001686,0.317443,-0.002144,1.000000,0.000321 +31,2022-08-02 07:00:00,0.000000,0.000227,0.000000,0.000227,0.000016,0.000203,0.000164,0.000446,0.000000,0.000000,0.001646,0.314245,-0.003198,1.000000,0.000094 +32,2022-08-02 08:00:00,0.000000,0.000094,0.000000,0.000094,0.000017,0.000199,0.000162,0.000310,0.000000,0.000000,0.001609,0.311090,-0.003155,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000194,0.000160,0.000212,0.000000,0.000000,0.001574,0.307977,-0.003112,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000190,0.000157,0.000209,0.000000,0.000000,0.001542,0.304907,-0.003070,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000186,0.000155,0.000206,0.000000,0.000000,0.001511,0.301878,-0.003029,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000183,0.000153,0.000203,0.000000,0.000000,0.001481,0.298890,-0.002988,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000346,0.000016,0.000029,0.000016,0.000021,0.000179,0.000151,0.000216,0.000000,0.000000,0.001453,0.296254,-0.002635,1.000000,0.000013 +38,2022-08-02 14:00:00,0.000330,0.000014,0.000011,0.000014,0.000023,0.000176,0.000149,0.000212,0.000115,0.000115,0.001427,0.293542,-0.002712,1.000000,0.000011 +39,2022-08-02 15:00:00,0.000327,0.000009,0.000000,0.000009,0.000024,0.000173,0.000147,0.000205,0.000304,0.000304,0.001402,0.290689,-0.002853,1.000000,0.000002 +40,2022-08-02 16:00:00,0.000330,0.000002,0.000000,0.000002,0.000025,0.000170,0.000145,0.000197,0.000431,0.000431,0.001378,0.287752,-0.002937,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000330,0.000000,0.000000,0.000000,0.000026,0.000167,0.000143,0.000193,0.000513,0.000513,0.001354,0.284773,-0.002978,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000861,0.000011,0.000020,0.000011,0.000027,0.000164,0.000142,0.000202,0.000571,0.000571,0.001332,0.282282,-0.002491,1.000000,0.000009 +43,2022-08-02 19:00:00,0.000261,0.000005,0.000000,0.000005,0.000028,0.000161,0.000139,0.000194,0.000518,0.000518,0.001310,0.279305,-0.002978,1.000000,0.000004 +44,2022-08-02 20:00:00,0.000063,0.000004,0.000000,0.000004,0.000029,0.000158,0.000137,0.000192,0.000476,0.000476,0.001289,0.276214,-0.003091,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000156,0.000135,0.000186,0.000457,0.000457,0.001268,0.273183,-0.003030,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000153,0.000133,0.000185,0.000405,0.000405,0.001248,0.270245,-0.002938,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000151,0.000131,0.000184,0.000290,0.000290,0.001228,0.267460,-0.002785,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000149,0.000129,0.000183,0.000154,0.000154,0.001209,0.264846,-0.002614,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000146,0.000128,0.000182,0.000018,0.000018,0.001191,0.262401,-0.002445,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000001,0.000001,0.000001,0.000037,0.000144,0.000126,0.000181,0.000000,0.000000,0.001173,0.260006,-0.002395,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000038,0.000142,0.000124,0.000180,0.000000,0.000000,0.001155,0.257644,-0.002362,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000140,0.000123,0.000180,0.000000,0.000000,0.001138,0.255314,-0.002330,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000138,0.000121,0.000179,0.000000,0.000000,0.001122,0.253014,-0.002299,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000042,0.000136,0.000119,0.000178,0.000000,0.000000,0.001105,0.250746,-0.002268,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000134,0.000118,0.000177,0.000000,0.000000,0.001090,0.248448,-0.002299,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000132,0.000116,0.000176,0.000000,0.000000,0.001074,0.246180,-0.002268,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000130,0.000115,0.000176,0.000000,0.000000,0.001059,0.243942,-0.002237,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000128,0.000113,0.000175,0.000000,0.000000,0.001044,0.241735,-0.002207,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000126,0.000112,0.000175,0.000000,0.000000,0.001030,0.239558,-0.002177,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000124,0.000110,0.000174,0.000000,0.000000,0.001016,0.237410,-0.002148,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000123,0.000109,0.000174,0.000000,0.000000,0.001001,0.235291,-0.002119,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000121,0.000107,0.000173,0.000112,0.000112,0.000988,0.233090,-0.002201,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000119,0.000105,0.000173,0.000348,0.000348,0.000974,0.230685,-0.002404,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000118,0.000104,0.000173,0.000495,0.000495,0.000960,0.228168,-0.002517,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000116,0.000102,0.000173,0.000594,0.000594,0.000946,0.225588,-0.002580,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000114,0.000100,0.000172,0.000573,0.000573,0.000932,0.223063,-0.002525,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000112,0.000098,0.000172,0.000519,0.000519,0.000918,0.220626,-0.002438,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002725,0.000424,0.000771,0.000424,0.000061,0.000111,0.000098,0.000596,0.000475,0.000475,0.000905,0.220193,-0.000433,1.000000,0.000347 +69,2022-08-03 21:00:00,0.000255,0.000193,0.000000,0.000193,0.000062,0.000109,0.000097,0.000364,0.000425,0.000425,0.000893,0.218137,-0.002055,1.000000,0.000154 +70,2022-08-03 22:00:00,0.000000,0.000154,0.000000,0.000154,0.000064,0.000108,0.000095,0.000326,0.000365,0.000365,0.000880,0.215918,-0.002219,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000106,0.000094,0.000172,0.000265,0.000265,0.000868,0.213890,-0.002028,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000105,0.000092,0.000171,0.000165,0.000165,0.000856,0.211925,-0.001965,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000103,0.000091,0.000171,0.000028,0.000028,0.000843,0.210122,-0.001803,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000102,0.000090,0.000171,0.000000,0.000000,0.000832,0.208370,-0.001751,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000100,0.000089,0.000171,0.000000,0.000000,0.000820,0.206643,-0.001728,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000099,0.000087,0.000172,0.000000,0.000000,0.000809,0.204939,-0.001704,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000097,0.000086,0.000172,0.000000,0.000000,0.000797,0.203257,-0.001681,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000096,0.000085,0.000172,0.000000,0.000000,0.000786,0.201599,-0.001659,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000095,0.000084,0.000172,0.000000,0.000000,0.000776,0.199962,-0.001636,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000093,0.000083,0.000172,0.000000,0.000000,0.000765,0.198348,-0.001614,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000092,0.000082,0.000172,0.000000,0.000000,0.000754,0.196756,-0.001592,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000091,0.000081,0.000173,0.000000,0.000000,0.000744,0.195185,-0.001571,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000090,0.000079,0.000173,0.000000,0.000000,0.000734,0.193635,-0.001550,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000088,0.000078,0.000173,0.000000,0.000000,0.000724,0.192106,-0.001529,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000087,0.000077,0.000174,0.000000,0.000000,0.000714,0.190598,-0.001508,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000086,0.000076,0.000174,0.000111,0.000111,0.000705,0.189000,-0.001598,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000085,0.000075,0.000174,0.000348,0.000348,0.000695,0.187190,-0.001809,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000084,0.000074,0.000175,0.000506,0.000506,0.000685,0.185250,-0.001941,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000082,0.000072,0.000175,0.000603,0.000603,0.000675,0.183239,-0.002011,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000081,0.000071,0.000175,0.000660,0.000660,0.000664,0.181199,-0.002040,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000080,0.000069,0.000175,0.000594,0.000594,0.000654,0.179251,-0.001947,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000078,0.000068,0.000176,0.000538,0.000538,0.000644,0.177386,-0.001865,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000077,0.000067,0.000176,0.000496,0.000496,0.000633,0.175587,-0.001799,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000076,0.000066,0.000176,0.000425,0.000425,0.000623,0.173881,-0.001705,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000075,0.000065,0.000177,0.000309,0.000309,0.000613,0.172313,-0.001568,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000073,0.000064,0.000177,0.000170,0.000170,0.000603,0.170904,-0.001409,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000072,0.000063,0.000177,0.000030,0.000030,0.000593,0.169652,-0.001252,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000071,0.000062,0.000178,0.000000,0.000000,0.000584,0.168446,-0.001206,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000070,0.000061,0.000178,0.000000,0.000000,0.000575,0.167257,-0.001189,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000069,0.000060,0.000179,0.000000,0.000000,0.000566,0.166084,-0.001173,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000068,0.000059,0.000179,0.000000,0.000000,0.000558,0.164926,-0.001157,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000067,0.000059,0.000180,0.000000,0.000000,0.000549,0.163784,-0.001142,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000066,0.000058,0.000180,0.000000,0.000000,0.000541,0.162658,-0.001126,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000065,0.000057,0.000181,0.000000,0.000000,0.000533,0.161547,-0.001111,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000064,0.000056,0.000181,0.000000,0.000000,0.000526,0.160450,-0.001096,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000063,0.000055,0.000182,0.000000,0.000000,0.000518,0.159369,-0.001082,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000062,0.000055,0.000183,0.000000,0.000000,0.000511,0.158302,-0.001067,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000061,0.000054,0.000183,0.000000,0.000000,0.000503,0.157249,-0.001053,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000060,0.000053,0.000184,0.000000,0.000000,0.000496,0.156211,-0.001038,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000059,0.000052,0.000185,0.000124,0.000124,0.000489,0.155065,-0.001146,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000059,0.000051,0.000185,0.000356,0.000356,0.000482,0.153704,-0.001360,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000058,0.000050,0.000186,0.000509,0.000509,0.000475,0.152211,-0.001493,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000057,0.000049,0.000187,0.000613,0.000613,0.000467,0.150636,-0.001575,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000056,0.000048,0.000187,0.000606,0.000606,0.000460,0.149089,-0.001547,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000025,0.000000,0.000000,0.000000,0.000133,0.000055,0.000047,0.000188,0.000555,0.000555,0.000452,0.147639,-0.001451,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000025,0.000000,0.000000,0.000000,0.000134,0.000054,0.000046,0.000188,0.000511,0.000511,0.000444,0.146250,-0.001388,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000025,0.000000,0.000000,0.000000,0.000136,0.000053,0.000045,0.000189,0.000458,0.000458,0.000436,0.144933,-0.001317,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000052,0.000044,0.000189,0.000395,0.000395,0.000429,0.143670,-0.001262,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000165,0.000000,0.000000,0.000000,0.000139,0.000051,0.000044,0.000190,0.000290,0.000290,0.000421,0.142691,-0.000979,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000050,0.000043,0.000191,0.000164,0.000164,0.000414,0.141687,-0.001004,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000408,0.000014,0.000025,0.000014,0.000142,0.000049,0.000043,0.000205,0.000046,0.000046,0.000407,0.141192,-0.000496,1.000000,0.000011 +122,2022-08-06 02:00:00,0.000927,0.000088,0.000149,0.000088,0.000143,0.000049,0.000043,0.000280,0.000000,0.000000,0.000401,0.141138,-0.000054,1.000000,0.000072 +123,2022-08-06 03:00:00,0.000322,0.000053,0.000020,0.000053,0.000145,0.000048,0.000042,0.000246,0.000000,0.000000,0.000396,0.140614,-0.000524,1.000000,0.000039 +124,2022-08-06 04:00:00,0.000155,0.000037,0.000005,0.000037,0.000146,0.000047,0.000042,0.000231,0.000000,0.000000,0.000390,0.139948,-0.000666,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000167,0.000008,0.000006,0.000008,0.000148,0.000047,0.000041,0.000203,0.000000,0.000000,0.000385,0.139303,-0.000646,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000201,0.000007,0.000008,0.000007,0.000149,0.000046,0.000041,0.000202,0.000000,0.000000,0.000380,0.138697,-0.000606,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000151,0.000045,0.000040,0.000200,0.000000,0.000000,0.000374,0.137908,-0.000788,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000152,0.000045,0.000040,0.000199,0.000000,0.000000,0.000369,0.137131,-0.000778,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000044,0.000039,0.000198,0.000000,0.000000,0.000365,0.136364,-0.000767,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000044,0.000039,0.000199,0.000000,0.000000,0.000360,0.135607,-0.000757,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000043,0.000038,0.000200,0.000000,0.000000,0.000355,0.134860,-0.000747,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000038,0.000201,0.000000,0.000000,0.000350,0.134124,-0.000737,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000042,0.000037,0.000202,0.000000,0.000000,0.000345,0.133397,-0.000727,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000041,0.000037,0.000203,0.000104,0.000104,0.000341,0.132577,-0.000820,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000041,0.000036,0.000204,0.000329,0.000329,0.000336,0.131547,-0.001031,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000040,0.000035,0.000204,0.000477,0.000477,0.000331,0.130384,-0.001163,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000040,0.000034,0.000205,0.000578,0.000578,0.000326,0.129137,-0.001247,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000039,0.000033,0.000206,0.000650,0.000650,0.000320,0.127837,-0.001300,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000038,0.000032,0.000207,0.000608,0.000608,0.000314,0.126595,-0.001242,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000037,0.000032,0.000208,0.000555,0.000555,0.000309,0.125422,-0.001173,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000037,0.000031,0.000208,0.000499,0.000499,0.000303,0.124320,-0.001102,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000036,0.000030,0.000209,0.000425,0.000425,0.000297,0.123307,-0.001014,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000035,0.000030,0.000210,0.000306,0.000306,0.000291,0.122424,-0.000883,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000035,0.000029,0.000210,0.000168,0.000168,0.000286,0.121690,-0.000735,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000034,0.000029,0.000211,0.000027,0.000027,0.000280,0.121104,-0.000585,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000033,0.000028,0.000212,0.000000,0.000000,0.000275,0.120553,-0.000551,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000028,0.000213,0.000000,0.000000,0.000270,0.120010,-0.000544,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000032,0.000027,0.000214,0.000000,0.000000,0.000266,0.119473,-0.000536,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000032,0.000027,0.000215,0.000000,0.000000,0.000261,0.118944,-0.000529,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000031,0.000027,0.000215,0.000000,0.000000,0.000257,0.118422,-0.000522,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000031,0.000026,0.000216,0.000000,0.000000,0.000252,0.117907,-0.000515,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000030,0.000026,0.000217,0.000000,0.000000,0.000248,0.117399,-0.000508,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000030,0.000026,0.000218,0.000000,0.000000,0.000244,0.116898,-0.000501,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000025,0.000219,0.000000,0.000000,0.000241,0.116404,-0.000494,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000025,0.000220,0.000000,0.000000,0.000237,0.115916,-0.000488,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000028,0.000025,0.000221,0.000000,0.000000,0.000233,0.115435,-0.000481,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000024,0.000222,0.000000,0.000000,0.000230,0.114960,-0.000475,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000024,0.000223,0.000101,0.000101,0.000226,0.114393,-0.000567,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000027,0.000023,0.000224,0.000333,0.000333,0.000223,0.113603,-0.000790,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000027,0.000023,0.000224,0.000484,0.000484,0.000219,0.112676,-0.000928,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000026,0.000022,0.000225,0.000579,0.000579,0.000215,0.111667,-0.001009,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000021,0.000226,0.000621,0.000621,0.000211,0.110630,-0.001036,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000021,0.000227,0.000577,0.000577,0.000206,0.109651,-0.000980,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000020,0.000228,0.000531,0.000531,0.000202,0.108730,-0.000921,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000019,0.000228,0.000476,0.000476,0.000197,0.107876,-0.000854,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000023,0.000019,0.000229,0.000403,0.000403,0.000193,0.107105,-0.000771,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000018,0.000230,0.000288,0.000288,0.000188,0.106459,-0.000646,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000022,0.000018,0.000231,0.000132,0.000132,0.000184,0.105975,-0.000484,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000231,0.000008,0.000008,0.000180,0.105620,-0.000355,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000021,0.000018,0.000232,0.000000,0.000000,0.000176,0.105277,-0.000342,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000017,0.000233,0.000000,0.000000,0.000173,0.104939,-0.000338,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000017,0.000234,0.000000,0.000000,0.000169,0.104606,-0.000333,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000017,0.000235,0.000000,0.000000,0.000166,0.104278,-0.000329,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000236,0.000000,0.000000,0.000163,0.103953,-0.000324,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000016,0.000237,0.000000,0.000000,0.000160,0.103633,-0.000320,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000016,0.000237,0.000000,0.000000,0.000157,0.103318,-0.000316,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000016,0.000238,0.000000,0.000000,0.000154,0.103007,-0.000311,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000016,0.000239,0.000000,0.000000,0.000152,0.102699,-0.000307,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000016,0.000240,0.000000,0.000000,0.000149,0.102397,-0.000303,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000015,0.000241,0.000000,0.000000,0.000147,0.102098,-0.000299,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000015,0.000242,0.000000,0.000000,0.000144,0.101803,-0.000295,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000015,0.000243,0.000084,0.000084,0.000142,0.101429,-0.000374,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000014,0.000244,0.000318,0.000318,0.000140,0.100829,-0.000600,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000014,0.000245,0.000472,0.000472,0.000137,0.100086,-0.000743,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000016,0.000013,0.000245,0.000562,0.000562,0.000134,0.099263,-0.000822,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000013,0.000246,0.000618,0.000618,0.000131,0.098397,-0.000866,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000012,0.000247,0.000580,0.000580,0.000128,0.097580,-0.000817,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000248,0.000531,0.000531,0.000124,0.096822,-0.000758,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000011,0.000249,0.000476,0.000000,0.000121,0.096598,-0.000224,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000249,0.000410,0.000000,0.000118,0.096377,-0.000221,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000011,0.000250,0.000291,0.000000,0.000115,0.096160,-0.000218,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000011,0.000251,0.000153,0.000000,0.000113,0.095945,-0.000215,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000252,0.000012,0.000000,0.000110,0.095733,-0.000212,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000013,0.000011,0.000253,0.000000,0.000000,0.000108,0.095524,-0.000209,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000013,0.000011,0.000253,0.000000,0.000000,0.000106,0.095318,-0.000206,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000010,0.000254,0.000000,0.000000,0.000104,0.095114,-0.000203,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000010,0.000255,0.000000,0.000000,0.000102,0.094913,-0.000201,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000012,0.000010,0.000256,0.000000,0.000000,0.000100,0.094715,-0.000198,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000012,0.000010,0.000257,0.000000,0.000000,0.000098,0.094520,-0.000195,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000012,0.000010,0.000258,0.000000,0.000000,0.000096,0.094327,-0.000193,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000259,0.000000,0.000000,0.000094,0.094137,-0.000190,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000011,0.000010,0.000259,0.000000,0.000000,0.000093,0.093950,-0.000188,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000009,0.000260,0.000000,0.000000,0.000091,0.093765,-0.000185,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000011,0.000009,0.000261,0.000000,0.000000,0.000090,0.093582,-0.000183,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000011,0.000009,0.000262,0.000000,0.000000,0.000088,0.093402,-0.000180,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000011,0.000009,0.000263,0.000094,0.000000,0.000087,0.093225,-0.000178,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620808.csv b/test/channel_loss/channel_forcing/et/cat-2620808.csv new file mode 100644 index 000000000..1b3c2ed88 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620808.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000104,0.000000,0.000000,0.000000,0.000000,0.001465,0.000320,0.001465,0.000158,0.000158,0.010452,0.426433,-0.004857,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001306,0.000316,0.001306,0.000040,0.000040,0.009461,0.421656,-0.004777,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001173,0.000311,0.001173,0.000000,0.000000,0.008600,0.416985,-0.004672,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001058,0.000307,0.001059,0.000000,0.000000,0.007849,0.412377,-0.004608,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000961,0.000303,0.000961,0.000000,0.000000,0.007191,0.407833,-0.004544,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000876,0.000299,0.000877,0.000000,0.000000,0.006613,0.403351,-0.004482,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000803,0.000295,0.000804,0.000000,0.000000,0.006105,0.398930,-0.004421,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000739,0.000291,0.000740,0.000000,0.000000,0.005657,0.394570,-0.004360,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000683,0.000287,0.000685,0.000000,0.000000,0.005260,0.390270,-0.004300,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000635,0.000283,0.000636,0.000000,0.000000,0.004908,0.386028,-0.004241,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000592,0.000279,0.000593,0.000000,0.000000,0.004595,0.381845,-0.004183,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000553,0.000275,0.000556,0.000000,0.000000,0.004317,0.377719,-0.004126,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000520,0.000271,0.000522,0.000000,0.000000,0.004068,0.373650,-0.004069,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000490,0.000267,0.000493,0.000000,0.000000,0.003846,0.369636,-0.004014,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000463,0.000264,0.000467,0.000127,0.000127,0.003646,0.365552,-0.004084,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000439,0.000260,0.000443,0.000368,0.000368,0.003467,0.361286,-0.004266,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000418,0.000256,0.000422,0.000517,0.000517,0.003305,0.356932,-0.004354,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000398,0.000252,0.000403,0.000601,0.000601,0.003158,0.352555,-0.004377,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000381,0.000248,0.000386,0.000520,0.000520,0.003025,0.348318,-0.004238,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000318,0.000000,0.000000,0.000000,0.000006,0.000365,0.000244,0.000371,0.000468,0.000468,0.002904,0.344502,-0.003815,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000284,0.000000,0.000000,0.000000,0.000007,0.000351,0.000241,0.000358,0.000412,0.000412,0.002794,0.340762,-0.003740,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000613,0.000008,0.000014,0.000008,0.000007,0.000338,0.000238,0.000353,0.000346,0.000346,0.002694,0.337447,-0.003315,1.000000,0.000006 +22,2022-08-01 22:00:00,0.000278,0.000004,0.000000,0.000004,0.000008,0.000326,0.000234,0.000338,0.000307,0.000307,0.002602,0.333902,-0.003545,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000369,0.000005,0.000004,0.000005,0.000009,0.000315,0.000231,0.000329,0.000227,0.000227,0.002519,0.330570,-0.003332,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000295,0.000004,0.000004,0.000004,0.000010,0.000305,0.000228,0.000318,0.000147,0.000147,0.002442,0.327288,-0.003282,1.000000,0.000003 +25,2022-08-02 01:00:00,0.001097,0.000104,0.000185,0.000104,0.000010,0.000296,0.000226,0.000410,0.000062,0.000062,0.002372,0.324748,-0.002540,1.000000,0.000084 +26,2022-08-02 02:00:00,0.001465,0.000236,0.000344,0.000236,0.000011,0.000288,0.000224,0.000535,0.000000,0.000000,0.002308,0.322511,-0.002237,1.000000,0.000192 +27,2022-08-02 03:00:00,0.001323,0.000280,0.000286,0.000280,0.000012,0.000280,0.000222,0.000572,0.000000,0.000000,0.002249,0.320221,-0.002290,1.000000,0.000197 +28,2022-08-02 04:00:00,0.001550,0.000348,0.000377,0.000348,0.000013,0.000273,0.000220,0.000634,0.000000,0.000000,0.002196,0.318096,-0.002125,1.000000,0.000227 +29,2022-08-02 05:00:00,0.001049,0.000254,0.000187,0.000254,0.000014,0.000267,0.000218,0.000535,0.000000,0.000000,0.002146,0.315694,-0.002402,1.000000,0.000159 +30,2022-08-02 06:00:00,0.000854,0.000192,0.000128,0.000192,0.000015,0.000261,0.000215,0.000468,0.000000,0.000000,0.002100,0.313191,-0.002503,1.000000,0.000095 +31,2022-08-02 07:00:00,0.000000,0.000069,0.000000,0.000069,0.000016,0.000256,0.000212,0.000340,0.000000,0.000000,0.002057,0.310006,-0.003185,1.000000,0.000026 +32,2022-08-02 08:00:00,0.000000,0.000026,0.000000,0.000026,0.000016,0.000250,0.000209,0.000292,0.000000,0.000000,0.002016,0.306865,-0.003141,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000245,0.000206,0.000263,0.000000,0.000000,0.001977,0.303766,-0.003098,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000241,0.000204,0.000259,0.000000,0.000000,0.001940,0.300711,-0.003056,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000236,0.000201,0.000256,0.000000,0.000000,0.001905,0.297696,-0.003014,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000232,0.000198,0.000252,0.000000,0.000000,0.001871,0.294724,-0.002973,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000121,0.000002,0.000003,0.000002,0.000021,0.000228,0.000196,0.000251,0.000000,0.000000,0.001839,0.291908,-0.002816,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000124,0.000001,0.000000,0.000001,0.000022,0.000224,0.000193,0.000247,0.000115,0.000115,0.001808,0.289024,-0.002885,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000124,0.000001,0.000000,0.000001,0.000024,0.000220,0.000190,0.000244,0.000318,0.000318,0.001778,0.285979,-0.003045,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000124,0.000000,0.000000,0.000000,0.000025,0.000216,0.000187,0.000241,0.000446,0.000446,0.001749,0.282849,-0.003130,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000097,0.000000,0.000000,0.000000,0.000026,0.000213,0.000184,0.000238,0.000526,0.000526,0.001720,0.279657,-0.003192,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000507,0.000000,0.000000,0.000000,0.000027,0.000209,0.000182,0.000236,0.000584,0.000584,0.001692,0.276855,-0.002802,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000098,0.000000,0.000000,0.000000,0.000028,0.000206,0.000179,0.000234,0.000527,0.000527,0.001665,0.273745,-0.003110,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000002,0.000000,0.000000,0.000000,0.000029,0.000202,0.000176,0.000232,0.000486,0.000486,0.001639,0.270623,-0.003122,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000002,0.000000,0.000000,0.000000,0.000030,0.000199,0.000173,0.000229,0.000478,0.000478,0.001612,0.267552,-0.003071,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000002,0.000000,0.000000,0.000000,0.000031,0.000196,0.000170,0.000227,0.000417,0.000417,0.001587,0.264583,-0.002969,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000002,0.000000,0.000000,0.000000,0.000033,0.000193,0.000168,0.000225,0.000303,0.000303,0.001562,0.261767,-0.002816,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000002,0.000000,0.000000,0.000000,0.000034,0.000190,0.000165,0.000223,0.000166,0.000166,0.001537,0.259125,-0.002642,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000035,0.000187,0.000163,0.000222,0.000025,0.000025,0.001513,0.256659,-0.002467,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000002,0.000000,0.000000,0.000000,0.000036,0.000184,0.000161,0.000220,0.000000,0.000000,0.001490,0.254251,-0.002408,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000038,0.000181,0.000158,0.000218,0.000000,0.000000,0.001468,0.251876,-0.002375,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000002,0.000000,0.000000,0.000000,0.000039,0.000178,0.000156,0.000217,0.000000,0.000000,0.001446,0.249533,-0.002342,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000040,0.000175,0.000154,0.000216,0.000000,0.000000,0.001425,0.247223,-0.002310,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000041,0.000173,0.000152,0.000214,0.000000,0.000000,0.001404,0.244944,-0.002279,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000170,0.000150,0.000213,0.000000,0.000000,0.001383,0.242694,-0.002250,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000168,0.000148,0.000212,0.000000,0.000000,0.001363,0.240476,-0.002219,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000165,0.000146,0.000211,0.000000,0.000000,0.001344,0.238287,-0.002189,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000163,0.000144,0.000210,0.000000,0.000000,0.001325,0.236128,-0.002159,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000161,0.000142,0.000209,0.000000,0.000000,0.001306,0.233999,-0.002129,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000158,0.000140,0.000208,0.000000,0.000000,0.001288,0.231900,-0.002100,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000156,0.000138,0.000207,0.000000,0.000000,0.001270,0.229828,-0.002071,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000154,0.000136,0.000206,0.000121,0.000121,0.001252,0.227666,-0.002162,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000152,0.000134,0.000205,0.000367,0.000367,0.001234,0.225292,-0.002375,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000149,0.000132,0.000204,0.000512,0.000512,0.001216,0.222806,-0.002485,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000147,0.000129,0.000203,0.000605,0.000605,0.001198,0.220263,-0.002543,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000145,0.000127,0.000202,0.000589,0.000589,0.001180,0.217771,-0.002492,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000143,0.000125,0.000202,0.000526,0.000526,0.001162,0.215374,-0.002396,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002903,0.000394,0.000716,0.000394,0.000060,0.000141,0.000124,0.000595,0.000485,0.000485,0.001146,0.215209,-0.000165,1.000000,0.000322 +69,2022-08-03 21:00:00,0.000371,0.000179,0.000000,0.000179,0.000062,0.000139,0.000123,0.000379,0.000457,0.000457,0.001130,0.213282,-0.001927,1.000000,0.000143 +70,2022-08-03 22:00:00,0.000000,0.000143,0.000000,0.000143,0.000063,0.000137,0.000121,0.000343,0.000392,0.000392,0.001114,0.211079,-0.002203,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000135,0.000119,0.000199,0.000288,0.000288,0.001098,0.209072,-0.002007,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000133,0.000117,0.000199,0.000175,0.000175,0.001083,0.207141,-0.001931,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000131,0.000115,0.000198,0.000037,0.000037,0.001067,0.205373,-0.001768,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000129,0.000114,0.000198,0.000000,0.000000,0.001052,0.203665,-0.001708,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000127,0.000112,0.000198,0.000000,0.000000,0.001037,0.201981,-0.001684,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000125,0.000111,0.000197,0.000000,0.000000,0.001023,0.200320,-0.001661,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000123,0.000109,0.000197,0.000000,0.000000,0.001008,0.198682,-0.001638,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000122,0.000108,0.000197,0.000000,0.000000,0.000994,0.197066,-0.001616,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000120,0.000106,0.000196,0.000000,0.000000,0.000980,0.195472,-0.001594,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000118,0.000105,0.000196,0.000000,0.000000,0.000967,0.193900,-0.001572,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000117,0.000103,0.000196,0.000000,0.000000,0.000953,0.192350,-0.001550,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000102,0.000196,0.000000,0.000000,0.000940,0.190821,-0.001529,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000113,0.000101,0.000196,0.000000,0.000000,0.000927,0.189313,-0.001508,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000099,0.000196,0.000000,0.000000,0.000915,0.187825,-0.001487,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000110,0.000098,0.000196,0.000000,0.000000,0.000902,0.186358,-0.001467,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000109,0.000096,0.000196,0.000118,0.000118,0.000890,0.184795,-0.001564,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000107,0.000095,0.000195,0.000362,0.000362,0.000877,0.183012,-0.001782,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000106,0.000093,0.000195,0.000517,0.000517,0.000864,0.181102,-0.001911,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000104,0.000091,0.000195,0.000608,0.000608,0.000851,0.179127,-0.001974,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000102,0.000089,0.000195,0.000666,0.000666,0.000838,0.177122,-0.002005,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000101,0.000087,0.000195,0.000604,0.000604,0.000825,0.175206,-0.001916,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000099,0.000086,0.000195,0.000530,0.000530,0.000811,0.173389,-0.001817,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000097,0.000084,0.000195,0.000501,0.000501,0.000798,0.171625,-0.001764,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000096,0.000083,0.000195,0.000435,0.000435,0.000785,0.169951,-0.001674,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000094,0.000081,0.000195,0.000313,0.000313,0.000772,0.168420,-0.001531,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000093,0.000080,0.000194,0.000180,0.000180,0.000759,0.167042,-0.001379,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000091,0.000079,0.000194,0.000041,0.000041,0.000747,0.165819,-0.001223,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000090,0.000078,0.000195,0.000000,0.000000,0.000735,0.164653,-0.001165,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000088,0.000077,0.000195,0.000000,0.000000,0.000723,0.163504,-0.001149,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000087,0.000076,0.000195,0.000000,0.000000,0.000712,0.162370,-0.001134,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000085,0.000075,0.000195,0.000000,0.000000,0.000701,0.161252,-0.001118,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000084,0.000074,0.000195,0.000000,0.000000,0.000690,0.160149,-0.001103,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000083,0.000072,0.000195,0.000000,0.000000,0.000680,0.159061,-0.001088,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000082,0.000072,0.000196,0.000000,0.000000,0.000670,0.157988,-0.001073,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000080,0.000071,0.000196,0.000000,0.000000,0.000660,0.156930,-0.001058,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000079,0.000070,0.000196,0.000000,0.000000,0.000650,0.155887,-0.001044,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000078,0.000069,0.000197,0.000000,0.000000,0.000641,0.154857,-0.001029,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000077,0.000068,0.000197,0.000000,0.000000,0.000631,0.153842,-0.001015,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000076,0.000067,0.000197,0.000000,0.000000,0.000622,0.152841,-0.001001,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000075,0.000066,0.000198,0.000130,0.000130,0.000613,0.151725,-0.001116,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000074,0.000064,0.000198,0.000368,0.000368,0.000604,0.150390,-0.001335,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000072,0.000063,0.000198,0.000516,0.000516,0.000595,0.148926,-0.001463,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000071,0.000062,0.000199,0.000614,0.000614,0.000585,0.147387,-0.001540,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000070,0.000060,0.000199,0.000602,0.000602,0.000575,0.145881,-0.001506,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000069,0.000059,0.000199,0.000551,0.000551,0.000566,0.144507,-0.001373,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000068,0.000058,0.000200,0.000499,0.000499,0.000556,0.143204,-0.001303,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000066,0.000057,0.000200,0.000464,0.000464,0.000546,0.141953,-0.001251,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000065,0.000056,0.000200,0.000396,0.000396,0.000536,0.140787,-0.001166,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000136,0.000064,0.000055,0.000201,0.000293,0.000293,0.000527,0.139862,-0.000925,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000060,0.000000,0.000000,0.000000,0.000138,0.000063,0.000054,0.000201,0.000172,0.000172,0.000518,0.138942,-0.000920,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000526,0.000018,0.000032,0.000018,0.000139,0.000062,0.000054,0.000219,0.000055,0.000055,0.000509,0.138578,-0.000364,1.000000,0.000014 +122,2022-08-06 02:00:00,0.001206,0.000113,0.000190,0.000113,0.000141,0.000061,0.000054,0.000315,0.000000,0.000000,0.000502,0.138788,0.000210,1.000000,0.000092 +123,2022-08-06 03:00:00,0.000524,0.000076,0.000039,0.000076,0.000142,0.000060,0.000053,0.000278,0.000000,0.000000,0.000495,0.138470,-0.000317,1.000000,0.000056 +124,2022-08-06 04:00:00,0.000309,0.000056,0.000014,0.000056,0.000144,0.000059,0.000053,0.000259,0.000000,0.000000,0.000489,0.137971,-0.000500,1.000000,0.000014 +125,2022-08-06 05:00:00,0.000327,0.000020,0.000016,0.000020,0.000145,0.000059,0.000053,0.000224,0.000000,0.000000,0.000483,0.137494,-0.000477,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000402,0.000020,0.000024,0.000020,0.000147,0.000058,0.000052,0.000224,0.000000,0.000000,0.000477,0.137090,-0.000404,1.000000,0.000014 +127,2022-08-06 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000148,0.000057,0.000051,0.000214,0.000000,0.000000,0.000471,0.136318,-0.000772,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000150,0.000057,0.000051,0.000211,0.000000,0.000000,0.000465,0.135557,-0.000761,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000056,0.000050,0.000207,0.000000,0.000000,0.000459,0.134806,-0.000751,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000055,0.000049,0.000208,0.000000,0.000000,0.000454,0.134066,-0.000740,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000049,0.000208,0.000000,0.000000,0.000448,0.133336,-0.000730,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000054,0.000048,0.000209,0.000000,0.000000,0.000442,0.132615,-0.000720,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000047,0.000210,0.000000,0.000000,0.000436,0.131905,-0.000710,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000052,0.000047,0.000211,0.000113,0.000113,0.000431,0.131093,-0.000812,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000046,0.000211,0.000348,0.000348,0.000425,0.130060,-0.001033,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000045,0.000212,0.000497,0.000497,0.000418,0.128894,-0.001165,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000043,0.000213,0.000588,0.000588,0.000412,0.127655,-0.001239,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000042,0.000213,0.000651,0.000651,0.000405,0.126371,-0.001284,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000041,0.000214,0.000598,0.000598,0.000398,0.125156,-0.001215,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000047,0.000040,0.000214,0.000542,0.000542,0.000390,0.124013,-0.001143,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000039,0.000215,0.000505,0.000505,0.000383,0.122922,-0.001091,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000046,0.000038,0.000215,0.000432,0.000432,0.000375,0.121918,-0.001004,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000045,0.000037,0.000216,0.000310,0.000310,0.000368,0.121048,-0.000870,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000044,0.000037,0.000216,0.000174,0.000174,0.000361,0.120324,-0.000724,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000043,0.000036,0.000217,0.000035,0.000035,0.000354,0.119747,-0.000577,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000036,0.000217,0.000000,0.000000,0.000347,0.119213,-0.000534,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000218,0.000000,0.000000,0.000341,0.118686,-0.000527,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000035,0.000218,0.000000,0.000000,0.000335,0.118167,-0.000520,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000034,0.000219,0.000000,0.000000,0.000329,0.117654,-0.000512,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000034,0.000220,0.000000,0.000000,0.000324,0.117149,-0.000505,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000039,0.000033,0.000220,0.000000,0.000000,0.000318,0.116651,-0.000498,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000033,0.000221,0.000000,0.000000,0.000313,0.116159,-0.000492,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000032,0.000222,0.000000,0.000000,0.000308,0.115674,-0.000485,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000037,0.000032,0.000223,0.000000,0.000000,0.000303,0.115196,-0.000478,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000036,0.000031,0.000223,0.000000,0.000000,0.000298,0.114724,-0.000472,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000031,0.000224,0.000000,0.000000,0.000294,0.114259,-0.000465,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000031,0.000225,0.000000,0.000000,0.000289,0.113800,-0.000459,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000030,0.000226,0.000108,0.000108,0.000285,0.113241,-0.000559,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000029,0.000226,0.000346,0.000346,0.000280,0.112455,-0.000786,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000028,0.000227,0.000495,0.000495,0.000275,0.111533,-0.000922,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000028,0.000228,0.000588,0.000588,0.000270,0.110531,-0.001002,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000027,0.000228,0.000630,0.000630,0.000265,0.109502,-0.001029,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000026,0.000229,0.000574,0.000574,0.000259,0.108542,-0.000960,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000031,0.000025,0.000230,0.000527,0.000527,0.000253,0.107641,-0.000901,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000024,0.000230,0.000500,0.000500,0.000247,0.106780,-0.000862,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000023,0.000231,0.000425,0.000425,0.000241,0.106004,-0.000775,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000023,0.000231,0.000309,0.000309,0.000236,0.105354,-0.000651,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000022,0.000232,0.000144,0.000144,0.000230,0.104875,-0.000478,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000022,0.000232,0.000012,0.000012,0.000225,0.104533,-0.000342,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000027,0.000022,0.000233,0.000000,0.000000,0.000220,0.104207,-0.000326,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000021,0.000234,0.000000,0.000000,0.000215,0.103886,-0.000321,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000021,0.000234,0.000000,0.000000,0.000211,0.103570,-0.000317,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000025,0.000021,0.000235,0.000000,0.000000,0.000207,0.103257,-0.000312,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000025,0.000021,0.000236,0.000000,0.000000,0.000203,0.102949,-0.000308,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000236,0.000000,0.000000,0.000199,0.102645,-0.000304,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000020,0.000237,0.000000,0.000000,0.000195,0.102346,-0.000300,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000215,0.000023,0.000020,0.000238,0.000000,0.000000,0.000192,0.102051,-0.000295,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000023,0.000019,0.000239,0.000000,0.000000,0.000188,0.101759,-0.000292,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000019,0.000240,0.000000,0.000000,0.000185,0.101472,-0.000288,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000022,0.000019,0.000240,0.000000,0.000000,0.000182,0.101188,-0.000284,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000022,0.000019,0.000241,0.000000,0.000000,0.000179,0.100908,-0.000280,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000018,0.000242,0.000092,0.000000,0.000176,0.100632,-0.000276,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000018,0.000243,0.000333,0.000000,0.000173,0.100360,-0.000272,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000018,0.000244,0.000485,0.000000,0.000170,0.100092,-0.000268,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000018,0.000244,0.000579,0.000000,0.000168,0.099827,-0.000265,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000020,0.000017,0.000245,0.000630,0.000000,0.000165,0.099566,-0.000261,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000017,0.000246,0.000562,0.000000,0.000163,0.099308,-0.000258,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000017,0.000247,0.000511,0.000000,0.000160,0.099054,-0.000254,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000017,0.000248,0.000487,0.000000,0.000158,0.098804,-0.000251,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000016,0.000248,0.000424,0.000000,0.000155,0.098557,-0.000247,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000016,0.000249,0.000306,0.000000,0.000153,0.098313,-0.000244,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000250,0.000166,0.000000,0.000151,0.098073,-0.000240,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000016,0.000251,0.000022,0.000000,0.000149,0.097836,-0.000237,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000016,0.000252,0.000000,0.000000,0.000146,0.097602,-0.000234,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000253,0.000000,0.000000,0.000144,0.097371,-0.000231,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000253,0.000000,0.000000,0.000142,0.097144,-0.000227,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000015,0.000254,0.000000,0.000000,0.000140,0.096920,-0.000224,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000000,0.000000,0.000138,0.096698,-0.000221,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000000,0.000000,0.000136,0.096480,-0.000218,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000257,0.000000,0.000000,0.000134,0.096265,-0.000215,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000000,0.000000,0.000133,0.096053,-0.000212,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000131,0.095843,-0.000209,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000129,0.095637,-0.000207,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000014,0.000260,0.000000,0.000000,0.000127,0.095433,-0.000204,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000261,0.000000,0.000000,0.000125,0.095232,-0.000201,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000102,0.000000,0.000124,0.095034,-0.000198,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620809.csv b/test/channel_loss/channel_forcing/et/cat-2620809.csv new file mode 100644 index 000000000..4e841fc91 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620809.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000082,0.000000,0.000000,0.000000,0.000000,0.001470,0.000356,0.001470,0.000158,0.000158,0.010483,0.418497,-0.005190,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001315,0.000351,0.001315,0.000040,0.000040,0.009518,0.413411,-0.005086,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001185,0.000346,0.001185,0.000000,0.000000,0.008679,0.408432,-0.004979,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001073,0.000342,0.001073,0.000000,0.000000,0.007948,0.403520,-0.004913,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000978,0.000337,0.000978,0.000000,0.000000,0.007307,0.398672,-0.004847,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000895,0.000333,0.000896,0.000000,0.000000,0.006744,0.393890,-0.004783,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000824,0.000328,0.000824,0.000000,0.000000,0.006249,0.389170,-0.004719,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000324,0.000762,0.000000,0.000000,0.005811,0.384514,-0.004657,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000707,0.000319,0.000708,0.000000,0.000000,0.005424,0.379919,-0.004595,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000659,0.000315,0.000660,0.000000,0.000000,0.005081,0.375386,-0.004534,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000616,0.000311,0.000618,0.000000,0.000000,0.004776,0.370912,-0.004473,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000579,0.000307,0.000581,0.000000,0.000000,0.004503,0.366498,-0.004414,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000546,0.000303,0.000549,0.000000,0.000000,0.004260,0.362143,-0.004355,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000516,0.000299,0.000520,0.000000,0.000000,0.004043,0.357846,-0.004297,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000490,0.000295,0.000494,0.000127,0.000127,0.003847,0.353480,-0.004366,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000467,0.000290,0.000471,0.000368,0.000368,0.003671,0.348935,-0.004545,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000445,0.000286,0.000450,0.000520,0.000520,0.003512,0.344300,-0.004635,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000426,0.000282,0.000431,0.000607,0.000607,0.003368,0.339642,-0.004659,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000409,0.000277,0.000415,0.000520,0.000520,0.003236,0.335130,-0.004511,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000341,0.000000,0.000000,0.000000,0.000007,0.000393,0.000274,0.000400,0.000471,0.000471,0.003117,0.331063,-0.004067,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000332,0.000000,0.000000,0.000000,0.000007,0.000379,0.000270,0.000386,0.000410,0.000410,0.003008,0.327102,-0.003961,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000878,0.000029,0.000053,0.000029,0.000008,0.000366,0.000267,0.000403,0.000344,0.000344,0.002909,0.323745,-0.003357,1.000000,0.000024 +22,2022-08-01 22:00:00,0.000501,0.000017,0.000008,0.000017,0.000009,0.000354,0.000263,0.000380,0.000304,0.000304,0.002819,0.320145,-0.003600,1.000000,0.000014 +23,2022-08-01 23:00:00,0.000630,0.000030,0.000031,0.000030,0.000009,0.000343,0.000260,0.000382,0.000223,0.000223,0.002736,0.316777,-0.003368,1.000000,0.000016 +24,2022-08-02 00:00:00,0.000517,0.000024,0.000026,0.000024,0.000010,0.000333,0.000257,0.000367,0.000145,0.000145,0.002660,0.313424,-0.003353,1.000000,0.000018 +25,2022-08-02 01:00:00,0.001292,0.000147,0.000244,0.000147,0.000011,0.000324,0.000255,0.000482,0.000061,0.000061,0.002590,0.310747,-0.002677,1.000000,0.000115 +26,2022-08-02 02:00:00,0.001494,0.000256,0.000344,0.000256,0.000012,0.000316,0.000252,0.000584,0.000000,0.000000,0.002527,0.308268,-0.002480,1.000000,0.000204 +27,2022-08-02 03:00:00,0.001340,0.000290,0.000283,0.000290,0.000013,0.000308,0.000250,0.000612,0.000000,0.000000,0.002468,0.305730,-0.002538,1.000000,0.000196 +28,2022-08-02 04:00:00,0.001553,0.000341,0.000366,0.000341,0.000014,0.000301,0.000248,0.000656,0.000000,0.000000,0.002414,0.303354,-0.002376,1.000000,0.000221 +29,2022-08-02 05:00:00,0.001129,0.000261,0.000206,0.000261,0.000015,0.000295,0.000245,0.000571,0.000000,0.000000,0.002365,0.300749,-0.002605,1.000000,0.000166 +30,2022-08-02 06:00:00,0.000960,0.000209,0.000153,0.000209,0.000016,0.000289,0.000243,0.000513,0.000000,0.000000,0.002318,0.298065,-0.002684,1.000000,0.000110 +31,2022-08-02 07:00:00,0.000000,0.000079,0.000000,0.000079,0.000017,0.000283,0.000240,0.000379,0.000000,0.000000,0.002274,0.294619,-0.003446,1.000000,0.000031 +32,2022-08-02 08:00:00,0.000000,0.000031,0.000000,0.000031,0.000018,0.000278,0.000236,0.000326,0.000000,0.000000,0.002233,0.291219,-0.003400,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000273,0.000233,0.000292,0.000000,0.000000,0.002193,0.287865,-0.003355,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000268,0.000230,0.000288,0.000000,0.000000,0.002155,0.284555,-0.003310,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000263,0.000227,0.000284,0.000000,0.000000,0.002118,0.281289,-0.003266,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000259,0.000224,0.000281,0.000000,0.000000,0.002083,0.278067,-0.003223,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000160,0.000003,0.000005,0.000003,0.000023,0.000255,0.000221,0.000280,0.000000,0.000000,0.002050,0.275041,-0.003026,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000180,0.000002,0.000001,0.000002,0.000024,0.000251,0.000218,0.000276,0.000115,0.000115,0.002018,0.271965,-0.003076,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000121,0.000001,0.000000,0.000001,0.000025,0.000247,0.000215,0.000273,0.000315,0.000315,0.001986,0.268675,-0.003290,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000121,0.000000,0.000000,0.000000,0.000026,0.000243,0.000212,0.000269,0.000443,0.000443,0.001956,0.265302,-0.003373,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000121,0.000000,0.000000,0.000000,0.000027,0.000239,0.000209,0.000266,0.000525,0.000525,0.001926,0.261893,-0.003409,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000458,0.000000,0.000000,0.000000,0.000029,0.000235,0.000206,0.000264,0.000583,0.000583,0.001897,0.258805,-0.003087,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000070,0.000000,0.000000,0.000000,0.000030,0.000232,0.000203,0.000261,0.000526,0.000526,0.001868,0.255432,-0.003373,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000031,0.000228,0.000200,0.000259,0.000485,0.000485,0.001840,0.252091,-0.003341,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000017,0.000000,0.000000,0.000000,0.000032,0.000224,0.000197,0.000257,0.000474,0.000474,0.001812,0.248806,-0.003286,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000017,0.000000,0.000000,0.000000,0.000034,0.000221,0.000194,0.000255,0.000415,0.000415,0.001785,0.245621,-0.003184,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000017,0.000000,0.000000,0.000000,0.000035,0.000218,0.000191,0.000252,0.000302,0.000302,0.001758,0.242591,-0.003030,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000017,0.000000,0.000000,0.000000,0.000036,0.000214,0.000188,0.000250,0.000167,0.000167,0.001732,0.239735,-0.002856,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000017,0.000000,0.000000,0.000000,0.000037,0.000211,0.000186,0.000249,0.000025,0.000025,0.001707,0.237057,-0.002679,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000017,0.000000,0.000000,0.000000,0.000039,0.000208,0.000183,0.000247,0.000000,0.000000,0.001682,0.234438,-0.002618,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000017,0.000000,0.000000,0.000000,0.000040,0.000205,0.000181,0.000245,0.000000,0.000000,0.001658,0.231855,-0.002583,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000017,0.000000,0.000000,0.000000,0.000042,0.000202,0.000178,0.000243,0.000000,0.000000,0.001634,0.229306,-0.002549,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000017,0.000000,0.000000,0.000000,0.000043,0.000199,0.000176,0.000242,0.000000,0.000000,0.001611,0.226791,-0.002515,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000017,0.000000,0.000000,0.000000,0.000044,0.000196,0.000174,0.000240,0.000000,0.000000,0.001589,0.224309,-0.002482,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000193,0.000171,0.000239,0.000000,0.000000,0.001567,0.221844,-0.002465,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000191,0.000169,0.000238,0.000000,0.000000,0.001545,0.219412,-0.002432,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000188,0.000167,0.000236,0.000000,0.000000,0.001524,0.217012,-0.002400,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000185,0.000165,0.000235,0.000000,0.000000,0.001503,0.214643,-0.002368,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000183,0.000162,0.000234,0.000000,0.000000,0.001483,0.212307,-0.002337,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000180,0.000160,0.000233,0.000000,0.000000,0.001463,0.210001,-0.002306,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000178,0.000158,0.000232,0.000000,0.000000,0.001443,0.207726,-0.002275,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000175,0.000156,0.000231,0.000121,0.000121,0.001424,0.205362,-0.002364,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000173,0.000154,0.000230,0.000368,0.000368,0.001404,0.202786,-0.002576,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000171,0.000151,0.000229,0.000515,0.000515,0.001385,0.200099,-0.002687,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000168,0.000148,0.000228,0.000611,0.000611,0.001365,0.197353,-0.002746,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000166,0.000146,0.000227,0.000595,0.000595,0.001346,0.194660,-0.002694,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000163,0.000143,0.000226,0.000531,0.000531,0.001326,0.192064,-0.002595,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002455,0.000264,0.000480,0.000264,0.000065,0.000161,0.000143,0.000490,0.000487,0.000487,0.001308,0.191496,-0.000568,1.000000,0.000216 +69,2022-08-03 21:00:00,0.000417,0.000120,0.000000,0.000120,0.000066,0.000159,0.000141,0.000345,0.000456,0.000456,0.001290,0.189428,-0.002068,1.000000,0.000096 +70,2022-08-03 22:00:00,0.000000,0.000096,0.000000,0.000096,0.000068,0.000156,0.000139,0.000320,0.000390,0.000390,0.001273,0.187041,-0.002387,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000087,0.000000,0.000000,0.000000,0.000069,0.000154,0.000137,0.000224,0.000288,0.000288,0.001255,0.184874,-0.002168,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000152,0.000135,0.000223,0.000177,0.000177,0.001238,0.182758,-0.002115,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000150,0.000133,0.000222,0.000037,0.000037,0.001221,0.180809,-0.001950,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000148,0.000131,0.000222,0.000000,0.000000,0.001204,0.178922,-0.001887,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000146,0.000129,0.000221,0.000000,0.000000,0.001188,0.177060,-0.001862,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000144,0.000128,0.000221,0.000000,0.000000,0.001172,0.175223,-0.001837,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000142,0.000126,0.000221,0.000000,0.000000,0.001156,0.173410,-0.001813,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000140,0.000124,0.000220,0.000000,0.000000,0.001140,0.171622,-0.001789,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000138,0.000123,0.000220,0.000000,0.000000,0.001125,0.169857,-0.001765,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000136,0.000121,0.000220,0.000000,0.000000,0.001110,0.168116,-0.001741,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000134,0.000119,0.000219,0.000000,0.000000,0.001095,0.166398,-0.001718,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000132,0.000118,0.000219,0.000000,0.000000,0.001080,0.164702,-0.001695,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000131,0.000116,0.000219,0.000000,0.000000,0.001066,0.163030,-0.001673,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000129,0.000115,0.000219,0.000000,0.000000,0.001052,0.161379,-0.001651,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000127,0.000113,0.000219,0.000000,0.000000,0.001038,0.159750,-0.001629,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000125,0.000112,0.000219,0.000119,0.000119,0.001024,0.158026,-0.001724,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000124,0.000110,0.000219,0.000363,0.000363,0.001010,0.156084,-0.001942,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000122,0.000108,0.000218,0.000520,0.000520,0.000996,0.154013,-0.002071,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000120,0.000106,0.000218,0.000613,0.000613,0.000982,0.151877,-0.002136,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000118,0.000104,0.000218,0.000676,0.000676,0.000967,0.149708,-0.002169,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000117,0.000102,0.000218,0.000613,0.000613,0.000952,0.147629,-0.002079,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000115,0.000100,0.000218,0.000538,0.000538,0.000938,0.145653,-0.001976,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000113,0.000098,0.000218,0.000503,0.000503,0.000923,0.143737,-0.001916,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000111,0.000097,0.000217,0.000435,0.000435,0.000908,0.141914,-0.001823,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000109,0.000095,0.000217,0.000313,0.000313,0.000894,0.140235,-0.001679,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000108,0.000094,0.000217,0.000181,0.000181,0.000880,0.138709,-0.001526,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000106,0.000092,0.000217,0.000042,0.000042,0.000866,0.137341,-0.001368,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000104,0.000091,0.000217,0.000000,0.000000,0.000853,0.136032,-0.001309,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000103,0.000090,0.000217,0.000000,0.000000,0.000840,0.134740,-0.001292,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000101,0.000089,0.000217,0.000000,0.000000,0.000828,0.133465,-0.001275,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000100,0.000087,0.000217,0.000000,0.000000,0.000815,0.132208,-0.001258,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000098,0.000086,0.000218,0.000000,0.000000,0.000804,0.130967,-0.001241,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000097,0.000085,0.000218,0.000000,0.000000,0.000792,0.129743,-0.001224,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000095,0.000084,0.000218,0.000000,0.000000,0.000781,0.128534,-0.001208,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000094,0.000083,0.000218,0.000000,0.000000,0.000770,0.127342,-0.001192,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000093,0.000082,0.000219,0.000000,0.000000,0.000759,0.126166,-0.001176,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000091,0.000081,0.000219,0.000000,0.000000,0.000748,0.125006,-0.001161,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000090,0.000080,0.000219,0.000000,0.000000,0.000738,0.123861,-0.001145,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000089,0.000079,0.000220,0.000000,0.000000,0.000728,0.122731,-0.001130,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000088,0.000077,0.000220,0.000130,0.000130,0.000717,0.121488,-0.001243,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000086,0.000076,0.000220,0.000368,0.000368,0.000707,0.120026,-0.001462,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000085,0.000075,0.000221,0.000519,0.000519,0.000697,0.118435,-0.001592,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000084,0.000073,0.000221,0.000621,0.000621,0.000686,0.116764,-0.001670,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000082,0.000071,0.000221,0.000605,0.000605,0.000675,0.115132,-0.001633,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000081,0.000070,0.000222,0.000556,0.000556,0.000664,0.113631,-0.001500,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000142,0.000080,0.000069,0.000222,0.000500,0.000500,0.000653,0.112206,-0.001425,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000144,0.000078,0.000067,0.000222,0.000465,0.000465,0.000642,0.110834,-0.001372,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000146,0.000077,0.000066,0.000222,0.000396,0.000396,0.000632,0.109549,-0.001285,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000187,0.000000,0.000000,0.000000,0.000147,0.000076,0.000065,0.000223,0.000294,0.000294,0.000621,0.108504,-0.001045,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000149,0.000074,0.000064,0.000223,0.000173,0.000173,0.000611,0.107470,-0.001034,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000486,0.000014,0.000026,0.000014,0.000150,0.000073,0.000064,0.000238,0.000054,0.000054,0.000602,0.106959,-0.000511,1.000000,0.000011 +122,2022-08-06 02:00:00,0.001100,0.000090,0.000152,0.000090,0.000152,0.000072,0.000064,0.000314,0.000000,0.000000,0.000593,0.106990,0.000031,1.000000,0.000073 +123,2022-08-06 03:00:00,0.000468,0.000059,0.000030,0.000059,0.000154,0.000071,0.000063,0.000284,0.000000,0.000000,0.000585,0.106517,-0.000473,1.000000,0.000044 +124,2022-08-06 04:00:00,0.000262,0.000043,0.000010,0.000043,0.000155,0.000070,0.000063,0.000269,0.000000,0.000000,0.000578,0.105867,-0.000650,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000300,0.000015,0.000013,0.000015,0.000157,0.000069,0.000062,0.000241,0.000000,0.000000,0.000570,0.105260,-0.000607,1.000000,0.000008 +126,2022-08-06 06:00:00,0.000357,0.000015,0.000018,0.000015,0.000158,0.000069,0.000062,0.000242,0.000000,0.000000,0.000563,0.104712,-0.000548,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000160,0.000068,0.000061,0.000235,0.000000,0.000000,0.000557,0.103837,-0.000875,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000162,0.000067,0.000060,0.000232,0.000000,0.000000,0.000550,0.102973,-0.000864,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000066,0.000059,0.000229,0.000000,0.000000,0.000543,0.102121,-0.000852,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000065,0.000058,0.000230,0.000000,0.000000,0.000536,0.101280,-0.000841,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000064,0.000058,0.000231,0.000000,0.000000,0.000529,0.100450,-0.000830,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000064,0.000057,0.000231,0.000000,0.000000,0.000523,0.099631,-0.000819,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000063,0.000056,0.000232,0.000000,0.000000,0.000516,0.098824,-0.000808,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000062,0.000055,0.000233,0.000112,0.000112,0.000509,0.097915,-0.000908,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000061,0.000054,0.000234,0.000348,0.000348,0.000503,0.096787,-0.001129,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000060,0.000053,0.000234,0.000499,0.000499,0.000495,0.095524,-0.001262,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000059,0.000052,0.000235,0.000594,0.000594,0.000488,0.094185,-0.001339,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000058,0.000051,0.000236,0.000658,0.000658,0.000480,0.092801,-0.001384,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000057,0.000049,0.000236,0.000607,0.000607,0.000472,0.091485,-0.001316,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000056,0.000048,0.000237,0.000545,0.000545,0.000464,0.090247,-0.001238,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000055,0.000047,0.000237,0.000505,0.000505,0.000455,0.089066,-0.001181,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000054,0.000046,0.000238,0.000431,0.000431,0.000447,0.087974,-0.001092,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000053,0.000045,0.000238,0.000310,0.000310,0.000439,0.087015,-0.000959,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000052,0.000044,0.000239,0.000176,0.000176,0.000431,0.086201,-0.000814,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000051,0.000044,0.000239,0.000035,0.000035,0.000423,0.085537,-0.000664,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000051,0.000043,0.000240,0.000000,0.000000,0.000416,0.084916,-0.000620,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000050,0.000043,0.000240,0.000000,0.000000,0.000409,0.084304,-0.000612,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000049,0.000042,0.000241,0.000000,0.000000,0.000402,0.083700,-0.000604,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000048,0.000041,0.000242,0.000000,0.000000,0.000395,0.083104,-0.000596,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000047,0.000041,0.000243,0.000000,0.000000,0.000389,0.082516,-0.000588,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000046,0.000040,0.000243,0.000000,0.000000,0.000383,0.081935,-0.000580,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000046,0.000040,0.000244,0.000000,0.000000,0.000377,0.081363,-0.000573,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000045,0.000039,0.000245,0.000000,0.000000,0.000371,0.080798,-0.000565,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000044,0.000039,0.000246,0.000000,0.000000,0.000365,0.080240,-0.000557,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000044,0.000038,0.000246,0.000000,0.000000,0.000360,0.079690,-0.000550,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000043,0.000038,0.000247,0.000000,0.000000,0.000355,0.079147,-0.000543,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000042,0.000037,0.000248,0.000000,0.000000,0.000349,0.078612,-0.000536,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000042,0.000037,0.000249,0.000108,0.000108,0.000344,0.077977,-0.000635,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000041,0.000036,0.000250,0.000347,0.000347,0.000339,0.077115,-0.000862,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000040,0.000035,0.000250,0.000499,0.000499,0.000333,0.076114,-0.001001,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000040,0.000034,0.000251,0.000595,0.000595,0.000328,0.075032,-0.001082,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000039,0.000033,0.000252,0.000634,0.000634,0.000321,0.073926,-0.001107,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000038,0.000032,0.000252,0.000580,0.000580,0.000315,0.072887,-0.001038,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000037,0.000031,0.000253,0.000530,0.000000,0.000309,0.072435,-0.000452,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000037,0.000031,0.000254,0.000499,0.000000,0.000303,0.071989,-0.000446,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000036,0.000031,0.000254,0.000423,0.000000,0.000298,0.071548,-0.000440,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000035,0.000030,0.000255,0.000309,0.000000,0.000292,0.071114,-0.000435,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000035,0.000030,0.000256,0.000144,0.000000,0.000287,0.070685,-0.000429,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000034,0.000029,0.000257,0.000013,0.000000,0.000283,0.070262,-0.000423,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000034,0.000029,0.000257,0.000000,0.000000,0.000278,0.069844,-0.000417,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000033,0.000029,0.000258,0.000000,0.000000,0.000273,0.069432,-0.000412,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000033,0.000028,0.000259,0.000000,0.000000,0.000269,0.069026,-0.000406,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000032,0.000028,0.000260,0.000000,0.000000,0.000265,0.068625,-0.000401,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000032,0.000028,0.000261,0.000000,0.000000,0.000261,0.068229,-0.000396,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000031,0.000027,0.000261,0.000000,0.000000,0.000257,0.067839,-0.000390,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000031,0.000027,0.000262,0.000000,0.000000,0.000253,0.067454,-0.000385,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000005,0.000000,0.000000,0.000000,0.000233,0.000030,0.000026,0.000263,0.000000,0.000000,0.000249,0.067079,-0.000375,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000030,0.000026,0.000264,0.000000,0.000000,0.000245,0.066704,-0.000375,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000236,0.000029,0.000026,0.000265,0.000000,0.000000,0.000242,0.066334,-0.000369,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000029,0.000025,0.000266,0.000000,0.000000,0.000238,0.065969,-0.000365,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000028,0.000025,0.000267,0.000000,0.000000,0.000235,0.065609,-0.000360,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000028,0.000025,0.000268,0.000092,0.000000,0.000232,0.065253,-0.000356,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000028,0.000024,0.000268,0.000333,0.000000,0.000228,0.064902,-0.000351,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000027,0.000024,0.000269,0.000488,0.000000,0.000225,0.064556,-0.000346,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000027,0.000024,0.000270,0.000586,0.000000,0.000222,0.064215,-0.000342,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000027,0.000023,0.000271,0.000638,0.000000,0.000219,0.063878,-0.000337,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000026,0.000023,0.000272,0.000570,0.000000,0.000216,0.063545,-0.000333,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000026,0.000023,0.000273,0.000513,0.000000,0.000213,0.063217,-0.000328,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000025,0.000023,0.000274,0.000487,0.000000,0.000210,0.062893,-0.000324,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000025,0.000022,0.000275,0.000422,0.000000,0.000207,0.062573,-0.000319,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000025,0.000022,0.000275,0.000307,0.000000,0.000204,0.062258,-0.000315,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000024,0.000022,0.000276,0.000166,0.000000,0.000201,0.061947,-0.000311,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000024,0.000021,0.000277,0.000021,0.000000,0.000199,0.061640,-0.000307,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000024,0.000021,0.000278,0.000000,0.000000,0.000196,0.061337,-0.000303,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000023,0.000021,0.000279,0.000000,0.000000,0.000193,0.061039,-0.000299,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000023,0.000020,0.000280,0.000000,0.000000,0.000191,0.060744,-0.000295,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000023,0.000020,0.000281,0.000000,0.000000,0.000188,0.060453,-0.000291,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000022,0.000020,0.000281,0.000000,0.000000,0.000186,0.060166,-0.000287,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000022,0.000020,0.000282,0.000000,0.000000,0.000183,0.059882,-0.000283,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000022,0.000019,0.000283,0.000000,0.000000,0.000181,0.059603,-0.000279,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000022,0.000019,0.000284,0.000000,0.000000,0.000178,0.059327,-0.000276,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000021,0.000019,0.000285,0.000000,0.000000,0.000176,0.059055,-0.000272,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000021,0.000019,0.000286,0.000000,0.000000,0.000174,0.058787,-0.000268,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000021,0.000018,0.000287,0.000000,0.000000,0.000171,0.058522,-0.000265,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000020,0.000018,0.000287,0.000000,0.000000,0.000169,0.058260,-0.000261,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000268,0.000020,0.000018,0.000288,0.000102,0.000000,0.000167,0.058002,-0.000258,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620810.csv b/test/channel_loss/channel_forcing/et/cat-2620810.csv new file mode 100644 index 000000000..f1d244799 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620810.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001484,0.000457,0.001484,0.000147,0.000147,0.010570,0.424649,-0.004703,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001341,0.000450,0.001341,0.000036,0.000036,0.009679,0.420108,-0.004541,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001219,0.000443,0.001219,0.000000,0.000000,0.008903,0.415672,-0.004436,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001115,0.000436,0.001115,0.000000,0.000000,0.008224,0.411303,-0.004368,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001025,0.000430,0.001026,0.000000,0.000000,0.007628,0.407001,-0.004302,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000948,0.000423,0.000948,0.000000,0.000000,0.007104,0.402765,-0.004236,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000880,0.000417,0.000881,0.000000,0.000000,0.006640,0.398593,-0.004172,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000821,0.000410,0.000822,0.000000,0.000000,0.006230,0.394484,-0.004109,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000769,0.000404,0.000770,0.000000,0.000000,0.005865,0.390438,-0.004046,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000723,0.000398,0.000724,0.000000,0.000000,0.005541,0.386454,-0.003984,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000682,0.000392,0.000684,0.000000,0.000000,0.005250,0.382530,-0.003924,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000646,0.000386,0.000648,0.000000,0.000000,0.004990,0.378666,-0.003864,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000614,0.000380,0.000616,0.000000,0.000000,0.004757,0.374861,-0.003805,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000585,0.000374,0.000588,0.000000,0.000000,0.004546,0.371113,-0.003747,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000559,0.000368,0.000562,0.000122,0.000122,0.004356,0.367303,-0.003810,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000535,0.000362,0.000539,0.000349,0.000349,0.004183,0.363327,-0.003976,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000514,0.000356,0.000518,0.000501,0.000501,0.004025,0.359261,-0.004065,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000495,0.000350,0.000499,0.000592,0.000592,0.003880,0.355169,-0.004093,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000477,0.000344,0.000482,0.000525,0.000525,0.003747,0.351204,-0.003965,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000281,0.000000,0.000000,0.000000,0.000006,0.000460,0.000338,0.000466,0.000480,0.000480,0.003625,0.347620,-0.003584,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000275,0.000000,0.000000,0.000000,0.000006,0.000445,0.000333,0.000452,0.000430,0.000430,0.003512,0.344134,-0.003486,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000892,0.000022,0.000040,0.000022,0.000007,0.000432,0.000328,0.000460,0.000342,0.000342,0.003409,0.341357,-0.002777,1.000000,0.000018 +22,2022-08-01 22:00:00,0.000268,0.000010,0.000000,0.000010,0.000007,0.000419,0.000323,0.000436,0.000298,0.000298,0.003313,0.338091,-0.003267,1.000000,0.000008 +23,2022-08-01 23:00:00,0.000352,0.000009,0.000003,0.000009,0.000008,0.000407,0.000319,0.000425,0.000215,0.000215,0.003225,0.335035,-0.003056,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000275,0.000002,0.000002,0.000002,0.000009,0.000396,0.000314,0.000407,0.000143,0.000143,0.003143,0.332021,-0.003014,1.000000,0.000002 +25,2022-08-02 01:00:00,0.001001,0.000061,0.000108,0.000061,0.000009,0.000386,0.000310,0.000456,0.000059,0.000059,0.003067,0.329746,-0.002275,1.000000,0.000049 +26,2022-08-02 02:00:00,0.001776,0.000219,0.000348,0.000219,0.000010,0.000377,0.000308,0.000606,0.000000,0.000000,0.002997,0.328092,-0.001654,1.000000,0.000178 +27,2022-08-02 03:00:00,0.001628,0.000272,0.000296,0.000272,0.000011,0.000369,0.000305,0.000651,0.000000,0.000000,0.002934,0.326367,-0.001725,1.000000,0.000203 +28,2022-08-02 04:00:00,0.001979,0.000375,0.000420,0.000375,0.000012,0.000361,0.000303,0.000748,0.000000,0.000000,0.002875,0.324892,-0.001475,1.000000,0.000248 +29,2022-08-02 05:00:00,0.001095,0.000242,0.000142,0.000242,0.000012,0.000354,0.000300,0.000609,0.000000,0.000000,0.002821,0.322844,-0.002049,1.000000,0.000148 +30,2022-08-02 06:00:00,0.000774,0.000160,0.000073,0.000160,0.000013,0.000348,0.000296,0.000521,0.000000,0.000000,0.002770,0.320578,-0.002266,1.000000,0.000061 +31,2022-08-02 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000014,0.000341,0.000292,0.000402,0.000000,0.000000,0.002720,0.317656,-0.002921,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000015,0.000335,0.000287,0.000365,0.000000,0.000000,0.002673,0.314779,-0.002877,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000329,0.000283,0.000345,0.000000,0.000000,0.002627,0.311946,-0.002833,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000323,0.000279,0.000340,0.000000,0.000000,0.002582,0.309156,-0.002790,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000318,0.000274,0.000335,0.000000,0.000000,0.002539,0.306408,-0.002748,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000312,0.000270,0.000331,0.000000,0.000000,0.002497,0.303703,-0.002706,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000156,0.000002,0.000003,0.000002,0.000019,0.000307,0.000266,0.000328,0.000000,0.000000,0.002457,0.301189,-0.002514,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000165,0.000001,0.000000,0.000001,0.000020,0.000302,0.000262,0.000323,0.000116,0.000116,0.002417,0.298611,-0.002578,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000165,0.000001,0.000000,0.000001,0.000021,0.000297,0.000258,0.000319,0.000308,0.000308,0.002379,0.295883,-0.002728,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000165,0.000000,0.000000,0.000000,0.000022,0.000292,0.000254,0.000314,0.000433,0.000433,0.002341,0.293073,-0.002810,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000165,0.000000,0.000000,0.000000,0.000023,0.000287,0.000249,0.000310,0.000515,0.000515,0.002303,0.290226,-0.002847,1.000000,0.000000 +42,2022-08-02 18:00:00,0.001078,0.000016,0.000030,0.000016,0.000024,0.000282,0.000246,0.000323,0.000578,0.000578,0.002267,0.288229,-0.001997,1.000000,0.000013 +43,2022-08-02 19:00:00,0.000285,0.000007,0.000000,0.000007,0.000025,0.000278,0.000242,0.000311,0.000528,0.000528,0.002231,0.285560,-0.002669,1.000000,0.000006 +44,2022-08-02 20:00:00,0.000025,0.000006,0.000000,0.000006,0.000026,0.000273,0.000238,0.000306,0.000494,0.000494,0.002196,0.282710,-0.002850,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000019,0.000000,0.000000,0.000000,0.000027,0.000269,0.000234,0.000296,0.000473,0.000473,0.002161,0.279918,-0.002792,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000019,0.000000,0.000000,0.000000,0.000028,0.000264,0.000229,0.000293,0.000414,0.000414,0.002126,0.277227,-0.002692,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000019,0.000000,0.000000,0.000000,0.000029,0.000260,0.000226,0.000289,0.000296,0.000296,0.002091,0.274692,-0.002535,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000019,0.000000,0.000000,0.000000,0.000030,0.000256,0.000222,0.000286,0.000159,0.000159,0.002057,0.272331,-0.002361,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000019,0.000000,0.000000,0.000000,0.000032,0.000251,0.000218,0.000283,0.000021,0.000021,0.002024,0.270142,-0.002189,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000019,0.000000,0.000000,0.000000,0.000033,0.000247,0.000215,0.000280,0.000000,0.000000,0.001992,0.268006,-0.002135,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000019,0.000000,0.000000,0.000000,0.000034,0.000243,0.000212,0.000277,0.000000,0.000000,0.001961,0.265904,-0.002103,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000019,0.000000,0.000000,0.000000,0.000035,0.000239,0.000209,0.000274,0.000000,0.000000,0.001930,0.263833,-0.002071,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000019,0.000000,0.000000,0.000000,0.000036,0.000236,0.000206,0.000272,0.000000,0.000000,0.001900,0.261794,-0.002039,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000019,0.000000,0.000000,0.000000,0.000037,0.000232,0.000203,0.000269,0.000000,0.000000,0.001871,0.259785,-0.002008,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000228,0.000199,0.000267,0.000000,0.000000,0.001842,0.257789,-0.001996,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000225,0.000196,0.000264,0.000000,0.000000,0.001814,0.255823,-0.001966,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000221,0.000193,0.000262,0.000000,0.000000,0.001786,0.253887,-0.001936,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000218,0.000190,0.000259,0.000000,0.000000,0.001759,0.251980,-0.001907,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000214,0.000188,0.000257,0.000000,0.000000,0.001732,0.250103,-0.001878,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000211,0.000185,0.000255,0.000000,0.000000,0.001706,0.248253,-0.001849,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000208,0.000182,0.000253,0.000000,0.000000,0.001680,0.246433,-0.001821,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000204,0.000179,0.000251,0.000116,0.000116,0.001655,0.244525,-0.001907,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000201,0.000176,0.000249,0.000354,0.000354,0.001629,0.242412,-0.002113,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000198,0.000172,0.000247,0.000501,0.000501,0.001603,0.240187,-0.002226,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000195,0.000169,0.000245,0.000599,0.000599,0.001577,0.237898,-0.002288,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000191,0.000165,0.000243,0.000584,0.000584,0.001551,0.235660,-0.002239,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000188,0.000162,0.000241,0.000521,0.000521,0.001525,0.233517,-0.002143,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004868,0.000813,0.001478,0.000813,0.000054,0.000185,0.000164,0.001053,0.000483,0.000483,0.001504,0.234782,0.001265,1.000000,0.000665 +69,2022-08-03 21:00:00,0.000521,0.000370,0.000001,0.000370,0.000055,0.000183,0.000162,0.000608,0.000444,0.000444,0.001482,0.233241,-0.001541,1.000000,0.000296 +70,2022-08-03 22:00:00,0.000000,0.000296,0.000000,0.000296,0.000057,0.000180,0.000159,0.000532,0.000374,0.000374,0.001461,0.231280,-0.001961,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000058,0.000177,0.000156,0.000235,0.000273,0.000273,0.001439,0.229521,-0.001759,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000175,0.000153,0.000234,0.000167,0.000167,0.001418,0.227820,-0.001701,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000172,0.000151,0.000232,0.000031,0.000031,0.001397,0.226279,-0.001541,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000169,0.000148,0.000231,0.000000,0.000000,0.001376,0.224793,-0.001487,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000167,0.000146,0.000230,0.000000,0.000000,0.001355,0.223329,-0.001464,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000164,0.000144,0.000228,0.000000,0.000000,0.001335,0.221887,-0.001442,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000162,0.000142,0.000227,0.000000,0.000000,0.001315,0.220468,-0.001420,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000159,0.000140,0.000226,0.000000,0.000000,0.001295,0.219069,-0.001398,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000157,0.000138,0.000225,0.000000,0.000000,0.001276,0.217693,-0.001377,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000154,0.000135,0.000224,0.000000,0.000000,0.001257,0.216337,-0.001356,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000152,0.000133,0.000223,0.000000,0.000000,0.001238,0.215001,-0.001335,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000150,0.000131,0.000222,0.000000,0.000000,0.001220,0.213687,-0.001315,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000148,0.000129,0.000221,0.000000,0.000000,0.001202,0.212392,-0.001295,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000145,0.000127,0.000220,0.000000,0.000000,0.001184,0.211116,-0.001275,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000143,0.000125,0.000219,0.000000,0.000000,0.001166,0.209861,-0.001256,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000141,0.000123,0.000218,0.000114,0.000114,0.001148,0.208512,-0.001349,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000139,0.000121,0.000217,0.000350,0.000350,0.001131,0.206951,-0.001561,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000136,0.000118,0.000216,0.000508,0.000508,0.001113,0.205258,-0.001693,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000134,0.000116,0.000215,0.000605,0.000605,0.001094,0.203496,-0.001763,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000132,0.000113,0.000214,0.000662,0.000662,0.001075,0.201704,-0.001792,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000129,0.000110,0.000213,0.000597,0.000597,0.001056,0.200003,-0.001701,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000127,0.000108,0.000212,0.000536,0.000536,0.001037,0.198388,-0.001615,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000125,0.000105,0.000211,0.000505,0.000505,0.001017,0.196829,-0.001560,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000122,0.000103,0.000210,0.000431,0.000431,0.000998,0.195366,-0.001463,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000120,0.000101,0.000209,0.000311,0.000311,0.000979,0.194044,-0.001323,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000118,0.000099,0.000208,0.000173,0.000173,0.000961,0.192877,-0.001167,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000115,0.000098,0.000207,0.000033,0.000033,0.000943,0.191866,-0.001011,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000113,0.000096,0.000206,0.000000,0.000000,0.000926,0.190903,-0.000963,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000111,0.000095,0.000206,0.000000,0.000000,0.000910,0.189955,-0.000948,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000109,0.000093,0.000205,0.000000,0.000000,0.000894,0.189021,-0.000934,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000107,0.000092,0.000204,0.000000,0.000000,0.000878,0.188101,-0.000920,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000105,0.000090,0.000204,0.000000,0.000000,0.000863,0.187196,-0.000906,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000104,0.000089,0.000203,0.000000,0.000000,0.000848,0.186304,-0.000892,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000102,0.000088,0.000203,0.000000,0.000000,0.000834,0.185426,-0.000878,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000100,0.000086,0.000202,0.000000,0.000000,0.000820,0.184561,-0.000865,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000099,0.000085,0.000202,0.000000,0.000000,0.000807,0.183709,-0.000852,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000097,0.000084,0.000202,0.000000,0.000000,0.000794,0.182870,-0.000839,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000095,0.000083,0.000201,0.000000,0.000000,0.000781,0.182044,-0.000826,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000094,0.000081,0.000201,0.000000,0.000000,0.000768,0.181231,-0.000813,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000092,0.000080,0.000201,0.000125,0.000125,0.000756,0.180307,-0.000924,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000091,0.000078,0.000201,0.000359,0.000359,0.000743,0.179166,-0.001141,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000089,0.000076,0.000200,0.000514,0.000514,0.000730,0.177891,-0.001275,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000087,0.000074,0.000200,0.000618,0.000618,0.000717,0.176532,-0.001358,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000086,0.000072,0.000200,0.000610,0.000610,0.000703,0.175202,-0.001330,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000021,0.000000,0.000000,0.000000,0.000115,0.000084,0.000070,0.000199,0.000560,0.000560,0.000689,0.173962,-0.001241,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000021,0.000000,0.000000,0.000000,0.000116,0.000082,0.000068,0.000199,0.000516,0.000516,0.000675,0.172784,-0.001178,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000025,0.000000,0.000000,0.000000,0.000118,0.000081,0.000067,0.000198,0.000463,0.000463,0.000661,0.171679,-0.001104,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000119,0.000079,0.000065,0.000198,0.000399,0.000399,0.000647,0.170632,-0.001048,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000221,0.000000,0.000000,0.000000,0.000120,0.000077,0.000064,0.000197,0.000291,0.000291,0.000634,0.169924,-0.000708,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000076,0.000063,0.000197,0.000167,0.000167,0.000621,0.169130,-0.000794,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000610,0.000017,0.000031,0.000017,0.000123,0.000074,0.000062,0.000214,0.000050,0.000050,0.000609,0.169033,-0.000097,1.000000,0.000014 +122,2022-08-06 02:00:00,0.001753,0.000158,0.000273,0.000158,0.000124,0.000073,0.000064,0.000355,0.000000,0.000000,0.000600,0.169875,0.000842,1.000000,0.000129 +123,2022-08-06 03:00:00,0.000461,0.000086,0.000021,0.000086,0.000125,0.000072,0.000063,0.000283,0.000000,0.000000,0.000591,0.169680,-0.000196,1.000000,0.000064 +124,2022-08-06 04:00:00,0.000157,0.000061,0.000003,0.000061,0.000127,0.000071,0.000063,0.000259,0.000000,0.000000,0.000583,0.169206,-0.000474,1.000000,0.000005 +125,2022-08-06 05:00:00,0.000168,0.000006,0.000003,0.000006,0.000128,0.000070,0.000062,0.000204,0.000000,0.000000,0.000575,0.168750,-0.000456,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000334,0.000007,0.000011,0.000007,0.000129,0.000069,0.000062,0.000206,0.000000,0.000000,0.000567,0.168457,-0.000293,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000130,0.000068,0.000061,0.000202,0.000000,0.000000,0.000560,0.167850,-0.000607,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000132,0.000067,0.000060,0.000201,0.000000,0.000000,0.000552,0.167253,-0.000597,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000066,0.000059,0.000199,0.000000,0.000000,0.000545,0.166664,-0.000588,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000065,0.000058,0.000199,0.000000,0.000000,0.000537,0.166085,-0.000579,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000064,0.000057,0.000200,0.000000,0.000000,0.000530,0.165514,-0.000571,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000064,0.000056,0.000200,0.000000,0.000000,0.000522,0.164953,-0.000562,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000063,0.000055,0.000200,0.000000,0.000000,0.000515,0.164399,-0.000553,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000062,0.000054,0.000201,0.000106,0.000106,0.000507,0.163750,-0.000649,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000061,0.000053,0.000201,0.000329,0.000329,0.000500,0.162891,-0.000859,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000060,0.000051,0.000201,0.000476,0.000476,0.000491,0.161900,-0.000991,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000059,0.000050,0.000201,0.000577,0.000577,0.000482,0.160825,-0.001075,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000058,0.000048,0.000201,0.000650,0.000650,0.000473,0.159694,-0.001131,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000056,0.000046,0.000201,0.000604,0.000604,0.000463,0.158626,-0.001068,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000055,0.000045,0.000201,0.000557,0.000557,0.000453,0.157621,-0.001006,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000054,0.000043,0.000201,0.000506,0.000506,0.000442,0.156680,-0.000940,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000052,0.000042,0.000201,0.000425,0.000425,0.000432,0.155834,-0.000847,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000051,0.000041,0.000201,0.000308,0.000308,0.000422,0.155116,-0.000718,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000050,0.000040,0.000201,0.000171,0.000171,0.000412,0.154543,-0.000573,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000049,0.000039,0.000201,0.000030,0.000030,0.000402,0.154119,-0.000424,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000048,0.000039,0.000201,0.000000,0.000000,0.000393,0.153730,-0.000389,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000047,0.000038,0.000201,0.000000,0.000000,0.000385,0.153348,-0.000383,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000046,0.000038,0.000201,0.000000,0.000000,0.000377,0.152971,-0.000377,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000045,0.000037,0.000201,0.000000,0.000000,0.000369,0.152600,-0.000371,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000044,0.000037,0.000202,0.000000,0.000000,0.000362,0.152234,-0.000365,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000043,0.000036,0.000202,0.000000,0.000000,0.000354,0.151874,-0.000360,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000042,0.000035,0.000202,0.000000,0.000000,0.000348,0.151520,-0.000354,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000041,0.000035,0.000203,0.000000,0.000000,0.000341,0.151171,-0.000349,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000041,0.000034,0.000203,0.000000,0.000000,0.000335,0.150827,-0.000344,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000040,0.000034,0.000203,0.000000,0.000000,0.000329,0.150489,-0.000338,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000039,0.000033,0.000204,0.000000,0.000000,0.000323,0.150156,-0.000333,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000038,0.000033,0.000204,0.000000,0.000000,0.000317,0.149827,-0.000328,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000038,0.000032,0.000205,0.000103,0.000103,0.000312,0.149403,-0.000425,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000037,0.000031,0.000205,0.000339,0.000339,0.000306,0.148752,-0.000651,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000036,0.000030,0.000205,0.000486,0.000486,0.000299,0.147967,-0.000785,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000035,0.000029,0.000205,0.000583,0.000583,0.000292,0.147097,-0.000869,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000035,0.000027,0.000206,0.000632,0.000632,0.000285,0.146194,-0.000904,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000034,0.000026,0.000206,0.000584,0.000584,0.000277,0.145350,-0.000843,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000033,0.000025,0.000206,0.000539,0.000539,0.000269,0.144565,-0.000786,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000032,0.000024,0.000206,0.000494,0.000494,0.000261,0.143835,-0.000729,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000031,0.000023,0.000206,0.000411,0.000411,0.000253,0.143199,-0.000636,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000030,0.000022,0.000206,0.000298,0.000298,0.000245,0.142683,-0.000516,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000029,0.000021,0.000206,0.000136,0.000136,0.000237,0.142334,-0.000349,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000028,0.000021,0.000206,0.000009,0.000009,0.000230,0.142115,-0.000219,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000027,0.000021,0.000207,0.000000,0.000000,0.000224,0.141910,-0.000206,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000026,0.000020,0.000207,0.000000,0.000000,0.000218,0.141707,-0.000203,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000026,0.000020,0.000207,0.000000,0.000000,0.000212,0.141507,-0.000200,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000025,0.000020,0.000208,0.000000,0.000000,0.000207,0.141311,-0.000197,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000024,0.000019,0.000208,0.000000,0.000000,0.000202,0.141117,-0.000194,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000024,0.000019,0.000208,0.000000,0.000000,0.000197,0.140926,-0.000191,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000023,0.000019,0.000209,0.000000,0.000000,0.000192,0.140738,-0.000188,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000023,0.000018,0.000209,0.000000,0.000000,0.000188,0.140554,-0.000185,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000022,0.000018,0.000210,0.000000,0.000000,0.000184,0.140371,-0.000182,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000022,0.000018,0.000210,0.000000,0.000000,0.000180,0.140192,-0.000179,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000021,0.000018,0.000211,0.000000,0.000000,0.000176,0.140015,-0.000177,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000021,0.000017,0.000211,0.000000,0.000000,0.000173,0.139842,-0.000174,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000020,0.000017,0.000212,0.000087,0.000087,0.000169,0.139585,-0.000257,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000020,0.000016,0.000212,0.000322,0.000322,0.000165,0.139101,-0.000484,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000020,0.000015,0.000213,0.000476,0.000476,0.000161,0.138472,-0.000629,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000019,0.000014,0.000213,0.000568,0.000568,0.000156,0.137763,-0.000710,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000018,0.000013,0.000213,0.000619,0.000619,0.000151,0.137013,-0.000750,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000018,0.000012,0.000214,0.000584,0.000584,0.000145,0.136309,-0.000704,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000017,0.000011,0.000214,0.000523,0.000523,0.000139,0.135677,-0.000632,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000016,0.000010,0.000214,0.000483,0.000483,0.000133,0.135093,-0.000583,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000015,0.000009,0.000214,0.000418,0.000418,0.000127,0.134583,-0.000510,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000015,0.000009,0.000214,0.000297,0.000297,0.000121,0.134199,-0.000384,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000014,0.000008,0.000215,0.000162,0.000162,0.000116,0.133955,-0.000245,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000013,0.000008,0.000215,0.000018,0.000018,0.000110,0.133855,-0.000099,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000013,0.000008,0.000215,0.000000,0.000000,0.000106,0.133775,-0.000080,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000012,0.000008,0.000216,0.000000,0.000000,0.000101,0.133696,-0.000079,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000012,0.000008,0.000216,0.000000,0.000000,0.000097,0.133618,-0.000078,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000011,0.000008,0.000216,0.000000,0.000000,0.000094,0.133542,-0.000077,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000011,0.000008,0.000217,0.000000,0.000000,0.000090,0.133466,-0.000075,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000011,0.000007,0.000217,0.000000,0.000000,0.000087,0.133392,-0.000074,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000010,0.000007,0.000218,0.000000,0.000000,0.000084,0.133319,-0.000073,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000010,0.000007,0.000218,0.000000,0.000000,0.000082,0.133247,-0.000072,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000010,0.000007,0.000219,0.000000,0.000000,0.000079,0.133176,-0.000071,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000009,0.000007,0.000219,0.000000,0.000000,0.000077,0.133106,-0.000070,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000009,0.000007,0.000220,0.000000,0.000000,0.000075,0.133037,-0.000069,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000009,0.000007,0.000220,0.000000,0.000000,0.000073,0.132970,-0.000068,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000009,0.000007,0.000221,0.000097,0.000097,0.000071,0.132808,-0.000162,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620811.csv b/test/channel_loss/channel_forcing/et/cat-2620811.csv new file mode 100644 index 000000000..9baa129e5 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620811.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000112,0.000000,0.000000,0.000000,0.000000,0.001492,0.000514,0.001492,0.000159,0.000159,0.010619,0.422182,-0.005030,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001355,0.000507,0.001355,0.000042,0.000042,0.009770,0.417229,-0.004953,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001239,0.000499,0.001239,0.000000,0.000000,0.009031,0.412389,-0.004840,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001139,0.000492,0.001140,0.000000,0.000000,0.008383,0.407618,-0.004770,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001053,0.000485,0.001054,0.000000,0.000000,0.007815,0.402917,-0.004702,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000979,0.000478,0.000979,0.000000,0.000000,0.007314,0.398283,-0.004634,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000914,0.000471,0.000914,0.000000,0.000000,0.006872,0.393716,-0.004567,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000857,0.000464,0.000858,0.000000,0.000000,0.006479,0.389215,-0.004501,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000807,0.000458,0.000808,0.000000,0.000000,0.006130,0.384779,-0.004436,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000762,0.000451,0.000764,0.000000,0.000000,0.005819,0.380407,-0.004372,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000723,0.000445,0.000725,0.000000,0.000000,0.005541,0.376099,-0.004309,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000688,0.000438,0.000690,0.000000,0.000000,0.005291,0.371852,-0.004247,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000657,0.000432,0.000659,0.000000,0.000000,0.005066,0.367667,-0.004185,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000628,0.000426,0.000631,0.000000,0.000000,0.004863,0.363542,-0.004125,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000603,0.000419,0.000606,0.000128,0.000128,0.004680,0.359351,-0.004191,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000580,0.000413,0.000584,0.000368,0.000368,0.004512,0.354983,-0.004367,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000559,0.000406,0.000564,0.000516,0.000516,0.004359,0.350533,-0.004450,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000540,0.000399,0.000545,0.000600,0.000600,0.004218,0.346064,-0.004469,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000522,0.000393,0.000528,0.000526,0.000526,0.004088,0.341733,-0.004331,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000267,0.000000,0.000000,0.000000,0.000006,0.000506,0.000387,0.000512,0.000471,0.000471,0.003968,0.337781,-0.003951,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000220,0.000000,0.000000,0.000000,0.000007,0.000491,0.000381,0.000498,0.000418,0.000418,0.003857,0.333892,-0.003889,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000567,0.000003,0.000006,0.000003,0.000007,0.000478,0.000376,0.000489,0.000350,0.000350,0.003755,0.330463,-0.003429,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000215,0.000002,0.000000,0.000002,0.000008,0.000465,0.000370,0.000475,0.000309,0.000309,0.003660,0.326782,-0.003681,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000321,0.000002,0.000001,0.000002,0.000009,0.000453,0.000365,0.000464,0.000231,0.000231,0.003572,0.323335,-0.003447,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000220,0.000001,0.000001,0.000001,0.000010,0.000442,0.000360,0.000452,0.000151,0.000151,0.003489,0.319917,-0.003418,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000739,0.000031,0.000055,0.000031,0.000010,0.000432,0.000355,0.000473,0.000064,0.000064,0.003413,0.317093,-0.002824,1.000000,0.000025 +26,2022-08-02 02:00:00,0.001369,0.000128,0.000207,0.000128,0.000011,0.000423,0.000352,0.000562,0.000000,0.000000,0.003342,0.314843,-0.002250,1.000000,0.000104 +27,2022-08-02 03:00:00,0.001253,0.000159,0.000175,0.000159,0.000012,0.000414,0.000349,0.000585,0.000000,0.000000,0.003276,0.312543,-0.002300,1.000000,0.000120 +28,2022-08-02 04:00:00,0.001473,0.000215,0.000235,0.000215,0.000013,0.000406,0.000345,0.000634,0.000000,0.000000,0.003216,0.310433,-0.002110,1.000000,0.000141 +29,2022-08-02 05:00:00,0.000945,0.000150,0.000103,0.000150,0.000014,0.000399,0.000342,0.000562,0.000000,0.000000,0.003159,0.307965,-0.002468,1.000000,0.000093 +30,2022-08-02 06:00:00,0.000779,0.000112,0.000071,0.000112,0.000014,0.000391,0.000338,0.000518,0.000000,0.000000,0.003105,0.305400,-0.002565,1.000000,0.000052 +31,2022-08-02 07:00:00,0.000000,0.000038,0.000000,0.000038,0.000015,0.000385,0.000333,0.000438,0.000000,0.000000,0.003053,0.302173,-0.003226,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000016,0.000378,0.000328,0.000408,0.000000,0.000000,0.003003,0.298994,-0.003180,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000372,0.000323,0.000389,0.000000,0.000000,0.002955,0.295860,-0.003134,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000366,0.000319,0.000384,0.000000,0.000000,0.002908,0.292771,-0.003089,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000360,0.000314,0.000379,0.000000,0.000000,0.002862,0.289727,-0.003044,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000354,0.000310,0.000374,0.000000,0.000000,0.002818,0.286727,-0.003000,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000110,0.000001,0.000001,0.000001,0.000021,0.000348,0.000305,0.000370,0.000000,0.000000,0.002775,0.283877,-0.002850,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000113,0.000000,0.000000,0.000000,0.000022,0.000343,0.000301,0.000365,0.000116,0.000116,0.002733,0.280959,-0.002918,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000113,0.000000,0.000000,0.000000,0.000023,0.000337,0.000296,0.000361,0.000322,0.000322,0.002692,0.277880,-0.003079,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000113,0.000000,0.000000,0.000000,0.000024,0.000332,0.000291,0.000356,0.000450,0.000450,0.002651,0.274719,-0.003161,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000113,0.000000,0.000000,0.000000,0.000025,0.000327,0.000287,0.000352,0.000530,0.000530,0.002610,0.271525,-0.003194,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000659,0.000000,0.000001,0.000000,0.000026,0.000322,0.000283,0.000349,0.000590,0.000590,0.002571,0.268856,-0.002670,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000118,0.000000,0.000000,0.000000,0.000028,0.000317,0.000278,0.000344,0.000533,0.000533,0.002532,0.265747,-0.003108,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000312,0.000273,0.000341,0.000489,0.000489,0.002494,0.262611,-0.003136,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000307,0.000268,0.000337,0.000484,0.000484,0.002455,0.259526,-0.003086,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000302,0.000264,0.000333,0.000419,0.000419,0.002417,0.256549,-0.002977,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000297,0.000260,0.000329,0.000306,0.000306,0.002380,0.253726,-0.002822,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000292,0.000256,0.000326,0.000168,0.000168,0.002343,0.251081,-0.002646,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000288,0.000252,0.000322,0.000026,0.000026,0.002307,0.248612,-0.002468,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000283,0.000248,0.000319,0.000000,0.000000,0.002273,0.246206,-0.002407,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000279,0.000245,0.000316,0.000000,0.000000,0.002238,0.243834,-0.002372,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000275,0.000241,0.000313,0.000000,0.000000,0.002205,0.241496,-0.002338,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000270,0.000238,0.000310,0.000000,0.000000,0.002172,0.239192,-0.002304,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000266,0.000234,0.000307,0.000000,0.000000,0.002140,0.236922,-0.002271,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000262,0.000231,0.000304,0.000000,0.000000,0.002109,0.234684,-0.002238,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000258,0.000228,0.000302,0.000000,0.000000,0.002078,0.232478,-0.002206,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000254,0.000224,0.000299,0.000000,0.000000,0.002048,0.230304,-0.002174,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000251,0.000221,0.000297,0.000000,0.000000,0.002018,0.228162,-0.002142,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000247,0.000218,0.000294,0.000000,0.000000,0.001989,0.226050,-0.002111,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000243,0.000215,0.000292,0.000000,0.000000,0.001961,0.223969,-0.002081,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000240,0.000212,0.000290,0.000000,0.000000,0.001933,0.221919,-0.002051,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000236,0.000208,0.000287,0.000122,0.000122,0.001905,0.219777,-0.002141,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000233,0.000205,0.000285,0.000367,0.000367,0.001877,0.217425,-0.002352,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000229,0.000201,0.000283,0.000512,0.000512,0.001849,0.214964,-0.002461,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000225,0.000197,0.000281,0.000605,0.000605,0.001821,0.212447,-0.002517,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000222,0.000194,0.000278,0.000589,0.000589,0.001792,0.209981,-0.002466,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000218,0.000190,0.000276,0.000527,0.000527,0.001764,0.207613,-0.002369,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003110,0.000320,0.000581,0.000320,0.000059,0.000215,0.000190,0.000594,0.000484,0.000484,0.001739,0.207813,0.000200,1.000000,0.000262 +69,2022-08-03 21:00:00,0.000352,0.000145,0.000000,0.000145,0.000061,0.000212,0.000187,0.000418,0.000459,0.000459,0.001714,0.205890,-0.001923,1.000000,0.000116 +70,2022-08-03 22:00:00,0.000000,0.000116,0.000000,0.000116,0.000062,0.000209,0.000184,0.000387,0.000395,0.000395,0.001690,0.203711,-0.002179,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000206,0.000181,0.000269,0.000290,0.000290,0.001665,0.201729,-0.001982,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000203,0.000178,0.000268,0.000175,0.000175,0.001640,0.199826,-0.001903,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000200,0.000176,0.000266,0.000038,0.000038,0.001616,0.198086,-0.001740,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000197,0.000173,0.000264,0.000000,0.000000,0.001593,0.196408,-0.001677,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000194,0.000171,0.000263,0.000000,0.000000,0.001570,0.194755,-0.001653,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000191,0.000168,0.000261,0.000000,0.000000,0.001547,0.193126,-0.001629,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000188,0.000166,0.000260,0.000000,0.000000,0.001524,0.191520,-0.001606,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000185,0.000163,0.000259,0.000000,0.000000,0.001502,0.189938,-0.001583,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000183,0.000161,0.000257,0.000000,0.000000,0.001481,0.188378,-0.001560,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000180,0.000159,0.000256,0.000000,0.000000,0.001460,0.186841,-0.001537,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000177,0.000156,0.000255,0.000000,0.000000,0.001439,0.185326,-0.001515,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000175,0.000154,0.000254,0.000000,0.000000,0.001418,0.183832,-0.001493,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000172,0.000152,0.000253,0.000000,0.000000,0.001398,0.182361,-0.001472,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000170,0.000150,0.000252,0.000000,0.000000,0.001378,0.180910,-0.001450,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000167,0.000147,0.000251,0.000000,0.000000,0.001358,0.179481,-0.001429,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000165,0.000145,0.000250,0.000119,0.000119,0.001339,0.177955,-0.001526,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000162,0.000143,0.000249,0.000362,0.000362,0.001319,0.176211,-0.001744,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000160,0.000140,0.000248,0.000516,0.000516,0.001299,0.174341,-0.001870,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000157,0.000137,0.000246,0.000608,0.000608,0.001278,0.172407,-0.001934,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000155,0.000134,0.000245,0.000665,0.000665,0.001258,0.170445,-0.001962,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000152,0.000131,0.000244,0.000602,0.000602,0.001237,0.168573,-0.001872,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000149,0.000128,0.000243,0.000527,0.000527,0.001216,0.166802,-0.001771,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000147,0.000126,0.000242,0.000500,0.000500,0.001195,0.165083,-0.001719,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000144,0.000123,0.000241,0.000435,0.000435,0.001174,0.163453,-0.001630,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000142,0.000121,0.000240,0.000315,0.000315,0.001153,0.161965,-0.001488,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000139,0.000119,0.000239,0.000181,0.000181,0.001133,0.160631,-0.001334,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000137,0.000117,0.000238,0.000042,0.000042,0.001114,0.159453,-0.001178,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000134,0.000116,0.000237,0.000000,0.000000,0.001095,0.158333,-0.001120,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000132,0.000114,0.000236,0.000000,0.000000,0.001077,0.157229,-0.001104,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000130,0.000112,0.000235,0.000000,0.000000,0.001059,0.156142,-0.001088,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000128,0.000111,0.000235,0.000000,0.000000,0.001042,0.155070,-0.001072,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000126,0.000109,0.000234,0.000000,0.000000,0.001026,0.154013,-0.001057,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000124,0.000107,0.000233,0.000000,0.000000,0.001009,0.152972,-0.001041,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000122,0.000106,0.000233,0.000000,0.000000,0.000994,0.151946,-0.001026,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000120,0.000104,0.000232,0.000000,0.000000,0.000978,0.150934,-0.001011,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000118,0.000103,0.000232,0.000000,0.000000,0.000963,0.149937,-0.000997,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000116,0.000101,0.000232,0.000000,0.000000,0.000948,0.148955,-0.000982,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000114,0.000100,0.000231,0.000000,0.000000,0.000934,0.147987,-0.000968,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000113,0.000098,0.000231,0.000000,0.000000,0.000920,0.147032,-0.000954,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000111,0.000097,0.000231,0.000130,0.000130,0.000906,0.145963,-0.001069,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000109,0.000095,0.000230,0.000369,0.000369,0.000892,0.144675,-0.001288,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000107,0.000093,0.000230,0.000516,0.000516,0.000877,0.143260,-0.001415,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000105,0.000090,0.000230,0.000614,0.000614,0.000862,0.141769,-0.001491,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000104,0.000088,0.000229,0.000603,0.000603,0.000847,0.140310,-0.001459,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000102,0.000086,0.000229,0.000550,0.000550,0.000832,0.138987,-0.001324,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000100,0.000084,0.000228,0.000499,0.000499,0.000816,0.137733,-0.001254,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000098,0.000083,0.000228,0.000464,0.000464,0.000801,0.136532,-0.001201,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000096,0.000081,0.000227,0.000394,0.000394,0.000786,0.135417,-0.001115,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000133,0.000094,0.000080,0.000227,0.000293,0.000293,0.000771,0.134541,-0.000875,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000061,0.000000,0.000000,0.000000,0.000134,0.000092,0.000078,0.000227,0.000172,0.000172,0.000757,0.133672,-0.000869,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000604,0.000015,0.000028,0.000015,0.000136,0.000091,0.000078,0.000242,0.000057,0.000057,0.000744,0.133436,-0.000236,1.000000,0.000012 +122,2022-08-06 02:00:00,0.001396,0.000099,0.000167,0.000099,0.000137,0.000090,0.000079,0.000325,0.000000,0.000000,0.000733,0.133903,0.000467,1.000000,0.000080 +123,2022-08-06 03:00:00,0.000597,0.000065,0.000033,0.000065,0.000138,0.000088,0.000078,0.000292,0.000000,0.000000,0.000724,0.133708,-0.000195,1.000000,0.000048 +124,2022-08-06 04:00:00,0.000407,0.000050,0.000015,0.000050,0.000140,0.000087,0.000078,0.000277,0.000000,0.000000,0.000714,0.133345,-0.000363,1.000000,0.000013 +125,2022-08-06 05:00:00,0.000405,0.000019,0.000015,0.000019,0.000141,0.000086,0.000077,0.000246,0.000000,0.000000,0.000705,0.132986,-0.000359,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000485,0.000019,0.000022,0.000019,0.000143,0.000085,0.000077,0.000247,0.000000,0.000000,0.000697,0.132705,-0.000281,1.000000,0.000013 +127,2022-08-06 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000144,0.000084,0.000076,0.000237,0.000000,0.000000,0.000689,0.131971,-0.000734,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000145,0.000083,0.000075,0.000233,0.000000,0.000000,0.000680,0.131248,-0.000723,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000082,0.000074,0.000229,0.000000,0.000000,0.000672,0.130535,-0.000713,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000081,0.000072,0.000229,0.000000,0.000000,0.000664,0.129833,-0.000702,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000080,0.000071,0.000229,0.000000,0.000000,0.000655,0.129141,-0.000692,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000079,0.000070,0.000230,0.000000,0.000000,0.000647,0.128458,-0.000682,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000078,0.000069,0.000230,0.000000,0.000000,0.000638,0.127786,-0.000672,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000077,0.000068,0.000230,0.000114,0.000114,0.000630,0.127011,-0.000775,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000076,0.000067,0.000231,0.000349,0.000349,0.000621,0.126016,-0.000996,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000074,0.000065,0.000231,0.000496,0.000496,0.000611,0.124890,-0.001126,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000073,0.000063,0.000231,0.000586,0.000586,0.000601,0.123691,-0.001199,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000072,0.000061,0.000231,0.000651,0.000651,0.000591,0.122446,-0.001245,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000071,0.000060,0.000231,0.000596,0.000596,0.000580,0.121273,-0.001173,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000069,0.000058,0.000231,0.000542,0.000542,0.000568,0.120170,-0.001103,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000068,0.000056,0.000231,0.000507,0.000507,0.000557,0.119118,-0.001052,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000066,0.000055,0.000231,0.000433,0.000433,0.000545,0.118153,-0.000965,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000065,0.000054,0.000231,0.000312,0.000312,0.000534,0.117322,-0.000831,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000064,0.000053,0.000231,0.000175,0.000175,0.000523,0.116638,-0.000684,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000062,0.000052,0.000231,0.000037,0.000037,0.000512,0.116100,-0.000538,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000061,0.000051,0.000231,0.000000,0.000000,0.000502,0.115606,-0.000494,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000060,0.000050,0.000231,0.000000,0.000000,0.000492,0.115119,-0.000487,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000059,0.000050,0.000231,0.000000,0.000000,0.000483,0.114639,-0.000480,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000058,0.000049,0.000231,0.000000,0.000000,0.000474,0.114166,-0.000473,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000057,0.000048,0.000232,0.000000,0.000000,0.000466,0.113700,-0.000466,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000056,0.000047,0.000232,0.000000,0.000000,0.000458,0.113240,-0.000459,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000055,0.000047,0.000232,0.000000,0.000000,0.000450,0.112788,-0.000453,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000054,0.000046,0.000233,0.000000,0.000000,0.000442,0.112341,-0.000446,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000053,0.000045,0.000233,0.000000,0.000000,0.000435,0.111901,-0.000440,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000052,0.000045,0.000233,0.000000,0.000000,0.000427,0.111468,-0.000433,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000051,0.000044,0.000234,0.000000,0.000000,0.000420,0.111041,-0.000427,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000050,0.000043,0.000234,0.000000,0.000000,0.000414,0.110620,-0.000421,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000049,0.000043,0.000234,0.000109,0.000109,0.000407,0.110098,-0.000522,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000049,0.000042,0.000235,0.000346,0.000346,0.000400,0.109349,-0.000748,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000048,0.000040,0.000235,0.000493,0.000493,0.000392,0.108467,-0.000882,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000047,0.000039,0.000235,0.000588,0.000588,0.000384,0.107504,-0.000963,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000046,0.000037,0.000236,0.000633,0.000633,0.000376,0.106510,-0.000994,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000045,0.000036,0.000236,0.000575,0.000575,0.000367,0.105587,-0.000923,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000043,0.000035,0.000236,0.000527,0.000527,0.000358,0.104725,-0.000862,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000042,0.000033,0.000236,0.000503,0.000503,0.000349,0.103899,-0.000825,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000041,0.000032,0.000236,0.000428,0.000428,0.000340,0.103160,-0.000740,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000040,0.000031,0.000236,0.000311,0.000311,0.000331,0.102546,-0.000614,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000039,0.000031,0.000236,0.000145,0.000145,0.000323,0.102104,-0.000442,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000038,0.000030,0.000237,0.000012,0.000012,0.000314,0.101800,-0.000304,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000037,0.000030,0.000237,0.000000,0.000000,0.000307,0.101512,-0.000288,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000036,0.000029,0.000237,0.000000,0.000000,0.000300,0.101229,-0.000284,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000036,0.000029,0.000237,0.000000,0.000000,0.000293,0.100949,-0.000279,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000035,0.000028,0.000238,0.000000,0.000000,0.000287,0.100674,-0.000275,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000034,0.000028,0.000238,0.000000,0.000000,0.000281,0.100402,-0.000271,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000033,0.000028,0.000239,0.000000,0.000000,0.000275,0.100135,-0.000268,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000033,0.000027,0.000239,0.000000,0.000000,0.000269,0.099871,-0.000264,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000032,0.000027,0.000240,0.000000,0.000000,0.000264,0.099611,-0.000260,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000031,0.000026,0.000240,0.000000,0.000000,0.000259,0.099355,-0.000256,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000031,0.000026,0.000241,0.000000,0.000000,0.000254,0.099103,-0.000252,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000030,0.000026,0.000241,0.000000,0.000000,0.000250,0.098854,-0.000249,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000030,0.000025,0.000242,0.000000,0.000000,0.000245,0.098609,-0.000245,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000029,0.000025,0.000242,0.000093,0.000093,0.000241,0.098276,-0.000333,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000029,0.000024,0.000243,0.000333,0.000333,0.000236,0.097710,-0.000565,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000028,0.000023,0.000243,0.000484,0.000484,0.000231,0.097005,-0.000706,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000027,0.000022,0.000244,0.000577,0.000577,0.000225,0.096218,-0.000787,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000027,0.000020,0.000244,0.000628,0.000628,0.000219,0.095391,-0.000826,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000026,0.000019,0.000244,0.000561,0.000561,0.000213,0.094643,-0.000749,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000025,0.000018,0.000244,0.000510,0.000510,0.000206,0.093955,-0.000687,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000024,0.000017,0.000245,0.000490,0.000490,0.000199,0.093298,-0.000657,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000016,0.000245,0.000425,0.000425,0.000192,0.092714,-0.000584,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000016,0.000245,0.000308,0.000308,0.000186,0.092254,-0.000460,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000015,0.000245,0.000169,0.000169,0.000179,0.091937,-0.000316,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000015,0.000246,0.000024,0.000024,0.000173,0.091768,-0.000169,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000015,0.000246,0.000000,0.000000,0.000168,0.091625,-0.000143,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000015,0.000246,0.000000,0.000000,0.000162,0.091484,-0.000141,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000014,0.000247,0.000000,0.000000,0.000158,0.091346,-0.000139,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000014,0.000247,0.000000,0.000000,0.000153,0.091209,-0.000137,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000014,0.000248,0.000000,0.000000,0.000149,0.091074,-0.000135,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000014,0.000248,0.000000,0.000000,0.000145,0.090941,-0.000133,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000014,0.000249,0.000000,0.000000,0.000142,0.090810,-0.000131,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000013,0.000249,0.000000,0.000000,0.000138,0.090681,-0.000129,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000013,0.000250,0.000000,0.000000,0.000135,0.090554,-0.000127,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000013,0.000250,0.000000,0.000000,0.000132,0.090429,-0.000125,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000013,0.000251,0.000000,0.000000,0.000129,0.090305,-0.000124,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000252,0.000000,0.000000,0.000126,0.090183,-0.000122,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000012,0.000252,0.000102,0.000000,0.000124,0.090063,-0.000120,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620812.csv b/test/channel_loss/channel_forcing/et/cat-2620812.csv new file mode 100644 index 000000000..43690fb61 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620812.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000019,0.000000,0.000000,0.000000,0.000000,0.001474,0.000387,0.001474,0.000154,0.000154,0.010490,0.428119,-0.004944,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001323,0.000381,0.001323,0.000037,0.000037,0.009548,0.423341,-0.004778,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001195,0.000376,0.001195,0.000000,0.000000,0.008729,0.418666,-0.004675,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001086,0.000371,0.001086,0.000000,0.000000,0.008014,0.414056,-0.004610,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000992,0.000366,0.000992,0.000000,0.000000,0.007388,0.409511,-0.004545,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000911,0.000360,0.000911,0.000000,0.000000,0.006838,0.405030,-0.004481,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000840,0.000355,0.000841,0.000000,0.000000,0.006353,0.400611,-0.004419,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000779,0.000350,0.000780,0.000000,0.000000,0.005924,0.396254,-0.004357,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000725,0.000346,0.000726,0.000000,0.000000,0.005545,0.391959,-0.004296,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000678,0.000341,0.000679,0.000000,0.000000,0.005208,0.387723,-0.004236,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000636,0.000336,0.000638,0.000000,0.000000,0.004908,0.383547,-0.004176,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000599,0.000331,0.000601,0.000000,0.000000,0.004640,0.379429,-0.004118,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000566,0.000327,0.000569,0.000000,0.000000,0.004401,0.375369,-0.004060,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000537,0.000322,0.000540,0.000000,0.000000,0.004186,0.371366,-0.004003,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000511,0.000317,0.000514,0.000120,0.000120,0.003993,0.367300,-0.004066,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000487,0.000313,0.000491,0.000348,0.000348,0.003818,0.363066,-0.004234,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000466,0.000308,0.000470,0.000517,0.000517,0.003660,0.358725,-0.004341,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000447,0.000303,0.000452,0.000627,0.000627,0.003516,0.354337,-0.004389,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000429,0.000298,0.000435,0.000582,0.000582,0.003384,0.350054,-0.004283,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000178,0.000000,0.000000,0.000000,0.000006,0.000413,0.000293,0.000419,0.000513,0.000513,0.003264,0.346075,-0.003979,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000134,0.000000,0.000000,0.000000,0.000007,0.000399,0.000289,0.000405,0.000462,0.000462,0.003154,0.342158,-0.003917,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000645,0.000007,0.000013,0.000007,0.000007,0.000385,0.000285,0.000400,0.000367,0.000367,0.003053,0.338881,-0.003277,1.000000,0.000006 +22,2022-08-01 22:00:00,0.000150,0.000003,0.000000,0.000003,0.000008,0.000373,0.000281,0.000384,0.000319,0.000319,0.002961,0.335222,-0.003659,1.000000,0.000003 +23,2022-08-01 23:00:00,0.000570,0.000012,0.000018,0.000012,0.000009,0.000362,0.000277,0.000383,0.000233,0.000233,0.002876,0.332095,-0.003128,1.000000,0.000008 +24,2022-08-02 00:00:00,0.000612,0.000022,0.000032,0.000022,0.000009,0.000352,0.000274,0.000383,0.000159,0.000159,0.002798,0.329111,-0.002983,1.000000,0.000018 +25,2022-08-02 01:00:00,0.001496,0.000163,0.000275,0.000163,0.000010,0.000343,0.000271,0.000516,0.000067,0.000067,0.002726,0.326893,-0.002218,1.000000,0.000130 +26,2022-08-02 02:00:00,0.002191,0.000397,0.000585,0.000397,0.000011,0.000334,0.000269,0.000742,0.000000,0.000000,0.002661,0.325152,-0.001742,1.000000,0.000318 +27,2022-08-02 03:00:00,0.002059,0.000490,0.000524,0.000490,0.000012,0.000326,0.000267,0.000828,0.000000,0.000000,0.002602,0.323365,-0.001787,1.000000,0.000353 +28,2022-08-02 04:00:00,0.001906,0.000499,0.000456,0.000499,0.000013,0.000319,0.000265,0.000831,0.000000,0.000000,0.002548,0.321519,-0.001846,1.000000,0.000310 +29,2022-08-02 05:00:00,0.000766,0.000266,0.000086,0.000266,0.000014,0.000313,0.000262,0.000593,0.000000,0.000000,0.002497,0.318941,-0.002578,1.000000,0.000130 +30,2022-08-02 06:00:00,0.000426,0.000128,0.000028,0.000128,0.000014,0.000307,0.000259,0.000449,0.000000,0.000000,0.002450,0.316120,-0.002820,1.000000,0.000030 +31,2022-08-02 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000015,0.000301,0.000255,0.000340,0.000000,0.000000,0.002404,0.312947,-0.003174,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000016,0.000295,0.000252,0.000317,0.000000,0.000000,0.002361,0.309817,-0.003129,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000290,0.000248,0.000307,0.000000,0.000000,0.002319,0.306732,-0.003085,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000285,0.000245,0.000303,0.000000,0.000000,0.002279,0.303690,-0.003042,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000280,0.000241,0.000299,0.000000,0.000000,0.002241,0.300690,-0.003000,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000275,0.000238,0.000295,0.000000,0.000000,0.002204,0.297732,-0.002958,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000270,0.000235,0.000291,0.000000,0.000000,0.002168,0.294816,-0.002916,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000078,0.000000,0.000000,0.000000,0.000022,0.000266,0.000231,0.000288,0.000115,0.000115,0.002133,0.291904,-0.002912,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000078,0.000000,0.000000,0.000000,0.000023,0.000262,0.000228,0.000285,0.000314,0.000314,0.002100,0.288836,-0.003068,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000257,0.000224,0.000281,0.000461,0.000461,0.002066,0.285590,-0.003246,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000253,0.000220,0.000278,0.000567,0.000567,0.002033,0.282285,-0.003305,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000591,0.000000,0.000000,0.000000,0.000026,0.000249,0.000217,0.000275,0.000635,0.000635,0.002002,0.279541,-0.002744,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000129,0.000000,0.000000,0.000000,0.000027,0.000245,0.000214,0.000272,0.000554,0.000554,0.001970,0.276460,-0.003080,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000241,0.000210,0.000270,0.000505,0.000505,0.001939,0.273344,-0.003116,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000237,0.000207,0.000267,0.000492,0.000492,0.001909,0.270285,-0.003060,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000233,0.000203,0.000264,0.000422,0.000422,0.001879,0.267337,-0.002948,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000230,0.000200,0.000262,0.000300,0.000300,0.001849,0.264551,-0.002786,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000226,0.000197,0.000259,0.000161,0.000161,0.001820,0.261940,-0.002611,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000222,0.000194,0.000257,0.000019,0.000019,0.001792,0.259506,-0.002434,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000219,0.000192,0.000255,0.000000,0.000000,0.001765,0.257125,-0.002381,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000215,0.000189,0.000252,0.000000,0.000000,0.001738,0.254777,-0.002348,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000212,0.000186,0.000250,0.000000,0.000000,0.001712,0.252462,-0.002315,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000209,0.000184,0.000248,0.000000,0.000000,0.001687,0.250180,-0.002282,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000206,0.000181,0.000246,0.000000,0.000000,0.001662,0.247930,-0.002250,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000203,0.000178,0.000245,0.000000,0.000000,0.001638,0.245711,-0.002219,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000200,0.000176,0.000243,0.000000,0.000000,0.001614,0.243523,-0.002188,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000197,0.000174,0.000241,0.000000,0.000000,0.001591,0.241366,-0.002157,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000194,0.000171,0.000240,0.000000,0.000000,0.001568,0.239239,-0.002127,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000191,0.000169,0.000238,0.000000,0.000000,0.001546,0.237141,-0.002097,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000188,0.000166,0.000237,0.000000,0.000000,0.001524,0.235073,-0.002068,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000186,0.000164,0.000235,0.000000,0.000000,0.001502,0.233034,-0.002039,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000183,0.000162,0.000234,0.000116,0.000116,0.001481,0.230910,-0.002125,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000180,0.000159,0.000233,0.000355,0.000355,0.001459,0.228579,-0.002331,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000178,0.000156,0.000231,0.000518,0.000518,0.001438,0.226120,-0.002459,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000175,0.000153,0.000230,0.000628,0.000628,0.001416,0.223587,-0.002532,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000172,0.000150,0.000229,0.000624,0.000624,0.001395,0.221094,-0.002493,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000169,0.000148,0.000227,0.000546,0.000546,0.001373,0.218713,-0.002381,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004925,0.000929,0.001689,0.000929,0.000059,0.000167,0.000149,0.001155,0.000490,0.000490,0.001355,0.219611,0.000899,1.000000,0.000760 +69,2022-08-03 21:00:00,0.000615,0.000424,0.000004,0.000424,0.000061,0.000165,0.000147,0.000650,0.000453,0.000453,0.001337,0.217945,-0.001666,1.000000,0.000339 +70,2022-08-03 22:00:00,0.000000,0.000339,0.000000,0.000339,0.000062,0.000162,0.000144,0.000563,0.000381,0.000381,0.001318,0.215771,-0.002175,1.000000,0.000001 +71,2022-08-03 23:00:00,0.000070,0.000001,0.000000,0.000001,0.000063,0.000160,0.000142,0.000224,0.000284,0.000284,0.001300,0.213791,-0.001980,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000158,0.000140,0.000223,0.000173,0.000173,0.001282,0.211880,-0.001912,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000156,0.000138,0.000222,0.000029,0.000029,0.001264,0.210136,-0.001743,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000154,0.000136,0.000221,0.000000,0.000000,0.001247,0.208447,-0.001690,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000151,0.000134,0.000220,0.000000,0.000000,0.001229,0.206781,-0.001666,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000149,0.000132,0.000220,0.000000,0.000000,0.001212,0.205138,-0.001643,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000147,0.000130,0.000219,0.000000,0.000000,0.001196,0.203518,-0.001620,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000145,0.000128,0.000218,0.000000,0.000000,0.001179,0.201921,-0.001597,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000143,0.000127,0.000218,0.000000,0.000000,0.001163,0.200346,-0.001575,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000141,0.000125,0.000217,0.000000,0.000000,0.001147,0.198793,-0.001553,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000139,0.000123,0.000217,0.000000,0.000000,0.001131,0.197263,-0.001531,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000137,0.000121,0.000216,0.000000,0.000000,0.001115,0.195753,-0.001510,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000135,0.000120,0.000216,0.000000,0.000000,0.001100,0.194265,-0.001488,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000133,0.000118,0.000215,0.000000,0.000000,0.001085,0.192797,-0.001468,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000131,0.000116,0.000215,0.000000,0.000000,0.001070,0.191350,-0.001447,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000130,0.000115,0.000215,0.000113,0.000113,0.001055,0.189812,-0.001538,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000128,0.000113,0.000214,0.000351,0.000351,0.001040,0.188061,-0.001751,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000126,0.000110,0.000214,0.000520,0.000520,0.001024,0.186168,-0.001893,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000124,0.000108,0.000213,0.000637,0.000637,0.001009,0.184185,-0.001983,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000122,0.000106,0.000213,0.000679,0.000679,0.000993,0.182189,-0.001996,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000120,0.000104,0.000212,0.000600,0.000600,0.000977,0.180300,-0.001890,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000118,0.000102,0.000212,0.000561,0.000561,0.000961,0.178475,-0.001825,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000116,0.000100,0.000211,0.000521,0.000521,0.000945,0.176715,-0.001760,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000114,0.000098,0.000211,0.000437,0.000437,0.000929,0.175062,-0.001653,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000112,0.000096,0.000210,0.000312,0.000312,0.000913,0.173556,-0.001506,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000110,0.000095,0.000210,0.000175,0.000175,0.000897,0.172206,-0.001350,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000016,0.000000,0.000000,0.000000,0.000101,0.000108,0.000093,0.000209,0.000030,0.000030,0.000882,0.171034,-0.001172,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000106,0.000092,0.000209,0.000000,0.000000,0.000868,0.169892,-0.001142,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000105,0.000091,0.000209,0.000000,0.000000,0.000854,0.168765,-0.001126,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000103,0.000089,0.000209,0.000000,0.000000,0.000840,0.167655,-0.001110,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000101,0.000088,0.000208,0.000000,0.000000,0.000827,0.166560,-0.001095,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000100,0.000087,0.000208,0.000000,0.000000,0.000814,0.165480,-0.001080,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000098,0.000086,0.000208,0.000000,0.000000,0.000802,0.164416,-0.001065,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000097,0.000084,0.000208,0.000000,0.000000,0.000790,0.163366,-0.001050,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000095,0.000083,0.000208,0.000000,0.000000,0.000778,0.162331,-0.001035,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000094,0.000082,0.000208,0.000000,0.000000,0.000766,0.161311,-0.001020,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000092,0.000081,0.000208,0.000000,0.000000,0.000755,0.160305,-0.001006,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000091,0.000080,0.000208,0.000000,0.000000,0.000744,0.159313,-0.000992,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000090,0.000079,0.000209,0.000000,0.000000,0.000733,0.158335,-0.000978,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000088,0.000077,0.000209,0.000127,0.000127,0.000722,0.157246,-0.001089,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000087,0.000076,0.000209,0.000363,0.000363,0.000711,0.155938,-0.001307,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000086,0.000074,0.000209,0.000529,0.000529,0.000700,0.154486,-0.001452,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000084,0.000073,0.000209,0.000639,0.000639,0.000688,0.152945,-0.001541,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000083,0.000071,0.000209,0.000663,0.000663,0.000676,0.151403,-0.001543,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000019,0.000000,0.000000,0.000000,0.000128,0.000081,0.000069,0.000209,0.000605,0.000605,0.000664,0.149957,-0.001446,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000019,0.000000,0.000000,0.000000,0.000129,0.000080,0.000068,0.000209,0.000539,0.000539,0.000652,0.148597,-0.001360,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000028,0.000000,0.000000,0.000000,0.000131,0.000078,0.000066,0.000209,0.000459,0.000459,0.000640,0.147344,-0.001253,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000067,0.000000,0.000000,0.000000,0.000132,0.000077,0.000065,0.000209,0.000392,0.000392,0.000628,0.146214,-0.001130,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000233,0.000000,0.000000,0.000000,0.000134,0.000075,0.000064,0.000209,0.000287,0.000287,0.000617,0.145366,-0.000848,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000074,0.000063,0.000209,0.000167,0.000167,0.000606,0.144418,-0.000947,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000705,0.000027,0.000049,0.000027,0.000136,0.000073,0.000063,0.000236,0.000054,0.000054,0.000596,0.144243,-0.000175,1.000000,0.000022 +122,2022-08-06 02:00:00,0.001834,0.000199,0.000340,0.000199,0.000138,0.000072,0.000063,0.000409,0.000000,0.000000,0.000587,0.144949,0.000705,1.000000,0.000163 +123,2022-08-06 03:00:00,0.000835,0.000138,0.000079,0.000138,0.000139,0.000071,0.000063,0.000348,0.000000,0.000000,0.000580,0.144917,-0.000031,1.000000,0.000103 +124,2022-08-06 04:00:00,0.000126,0.000089,0.000002,0.000089,0.000141,0.000070,0.000063,0.000299,0.000000,0.000000,0.000573,0.144263,-0.000654,1.000000,0.000017 +125,2022-08-06 05:00:00,0.000127,0.000017,0.000002,0.000017,0.000142,0.000069,0.000062,0.000228,0.000000,0.000000,0.000566,0.143619,-0.000644,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000376,0.000010,0.000017,0.000010,0.000144,0.000068,0.000061,0.000222,0.000000,0.000000,0.000559,0.143214,-0.000405,1.000000,0.000008 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000145,0.000067,0.000061,0.000217,0.000000,0.000000,0.000552,0.142462,-0.000753,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000146,0.000066,0.000060,0.000216,0.000000,0.000000,0.000545,0.141720,-0.000742,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000066,0.000059,0.000214,0.000000,0.000000,0.000538,0.140988,-0.000732,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000065,0.000058,0.000214,0.000000,0.000000,0.000532,0.140266,-0.000722,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000064,0.000057,0.000215,0.000000,0.000000,0.000525,0.139555,-0.000711,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000063,0.000056,0.000215,0.000000,0.000000,0.000518,0.138853,-0.000701,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000062,0.000056,0.000216,0.000000,0.000000,0.000511,0.138162,-0.000692,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000062,0.000055,0.000216,0.000105,0.000105,0.000505,0.137376,-0.000785,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000061,0.000054,0.000217,0.000331,0.000331,0.000498,0.136379,-0.000997,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000060,0.000052,0.000217,0.000486,0.000486,0.000490,0.135243,-0.001137,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000059,0.000051,0.000218,0.000607,0.000607,0.000482,0.134003,-0.001240,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000058,0.000049,0.000218,0.000687,0.000687,0.000474,0.132702,-0.001301,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000057,0.000048,0.000218,0.000612,0.000612,0.000465,0.131493,-0.001209,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000056,0.000047,0.000219,0.000567,0.000567,0.000456,0.130345,-0.001147,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000045,0.000219,0.000521,0.000521,0.000447,0.129259,-0.001086,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000053,0.000044,0.000219,0.000441,0.000441,0.000438,0.128267,-0.000992,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000043,0.000219,0.000317,0.000317,0.000429,0.127411,-0.000856,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000051,0.000043,0.000220,0.000173,0.000173,0.000421,0.126709,-0.000702,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000050,0.000042,0.000220,0.000028,0.000028,0.000412,0.126160,-0.000549,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000041,0.000220,0.000000,0.000000,0.000405,0.125646,-0.000514,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000041,0.000221,0.000000,0.000000,0.000397,0.125139,-0.000507,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000040,0.000221,0.000000,0.000000,0.000390,0.124639,-0.000500,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000047,0.000040,0.000222,0.000000,0.000000,0.000383,0.124147,-0.000493,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000046,0.000039,0.000222,0.000000,0.000000,0.000376,0.123661,-0.000486,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000045,0.000039,0.000223,0.000000,0.000000,0.000370,0.123182,-0.000479,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000044,0.000038,0.000223,0.000000,0.000000,0.000363,0.122710,-0.000472,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000037,0.000224,0.000000,0.000000,0.000357,0.122244,-0.000466,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000043,0.000037,0.000225,0.000000,0.000000,0.000352,0.121785,-0.000459,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000036,0.000225,0.000000,0.000000,0.000346,0.121332,-0.000453,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000041,0.000036,0.000226,0.000000,0.000000,0.000340,0.120886,-0.000446,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000041,0.000035,0.000226,0.000000,0.000000,0.000335,0.120446,-0.000440,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000035,0.000227,0.000104,0.000104,0.000330,0.119909,-0.000536,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000034,0.000228,0.000337,0.000337,0.000324,0.119151,-0.000759,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000033,0.000228,0.000503,0.000503,0.000318,0.118239,-0.000912,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000038,0.000032,0.000229,0.000610,0.000610,0.000312,0.117234,-0.001005,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000031,0.000229,0.000681,0.000681,0.000306,0.116174,-0.001061,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000029,0.000229,0.000611,0.000611,0.000299,0.115197,-0.000977,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000028,0.000230,0.000558,0.000558,0.000292,0.114287,-0.000910,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000027,0.000230,0.000505,0.000505,0.000284,0.113441,-0.000845,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000027,0.000231,0.000426,0.000426,0.000277,0.112685,-0.000756,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000026,0.000231,0.000305,0.000305,0.000270,0.112059,-0.000626,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000011,0.000000,0.000000,0.000000,0.000199,0.000032,0.000025,0.000231,0.000138,0.000138,0.000264,0.111617,-0.000442,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000025,0.000232,0.000005,0.000005,0.000257,0.111302,-0.000316,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000232,0.000000,0.000000,0.000251,0.110996,-0.000306,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000000,0.000000,0.000246,0.110694,-0.000302,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000000,0.000000,0.000240,0.110397,-0.000297,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000024,0.000234,0.000000,0.000000,0.000235,0.110103,-0.000293,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000000,0.000000,0.000231,0.109814,-0.000289,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000023,0.000235,0.000000,0.000000,0.000226,0.109529,-0.000285,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000023,0.000236,0.000000,0.000000,0.000222,0.109248,-0.000281,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000022,0.000236,0.000000,0.000000,0.000218,0.108971,-0.000277,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000214,0.108698,-0.000273,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000022,0.000238,0.000000,0.000000,0.000210,0.108428,-0.000269,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000206,0.108163,-0.000266,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000203,0.107902,-0.000261,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000216,0.000024,0.000021,0.000240,0.000087,0.000087,0.000199,0.107559,-0.000343,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000004,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000240,0.000318,0.000318,0.000196,0.106995,-0.000563,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000006,0.000000,0.000000,0.000000,0.000218,0.000023,0.000019,0.000241,0.000487,0.000487,0.000192,0.106275,-0.000720,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000005,0.000000,0.000000,0.000000,0.000219,0.000023,0.000018,0.000242,0.000597,0.000597,0.000187,0.105456,-0.000819,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000004,0.000000,0.000000,0.000000,0.000220,0.000022,0.000017,0.000242,0.000676,0.000676,0.000182,0.104569,-0.000887,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000221,0.000021,0.000016,0.000243,0.000599,0.000599,0.000177,0.103768,-0.000800,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000222,0.000021,0.000016,0.000243,0.000545,0.000545,0.000172,0.103032,-0.000737,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000015,0.000243,0.000515,0.000515,0.000166,0.102334,-0.000698,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000014,0.000244,0.000433,0.000433,0.000161,0.101728,-0.000607,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000013,0.000244,0.000301,0.000301,0.000155,0.101259,-0.000469,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000013,0.000245,0.000169,0.000169,0.000150,0.100926,-0.000332,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000013,0.000245,0.000022,0.000022,0.000146,0.100744,-0.000183,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000013,0.000246,0.000000,0.000000,0.000141,0.100586,-0.000158,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000013,0.000246,0.000000,0.000000,0.000137,0.100430,-0.000156,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000012,0.000247,0.000000,0.000000,0.000133,0.100276,-0.000154,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000012,0.000247,0.000000,0.000000,0.000130,0.100125,-0.000152,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000248,0.000000,0.000000,0.000126,0.099975,-0.000149,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000012,0.000249,0.000000,0.000000,0.000123,0.099828,-0.000147,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000012,0.000249,0.000000,0.000000,0.000120,0.099683,-0.000145,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000012,0.000250,0.000000,0.000000,0.000118,0.099540,-0.000143,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000011,0.000251,0.000000,0.000000,0.000115,0.099398,-0.000141,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000011,0.000251,0.000000,0.000000,0.000113,0.099259,-0.000139,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000252,0.000000,0.000000,0.000110,0.099122,-0.000137,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000253,0.000000,0.000000,0.000108,0.098987,-0.000135,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000013,0.000011,0.000253,0.000095,0.000095,0.000106,0.098760,-0.000227,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620813.csv b/test/channel_loss/channel_forcing/et/cat-2620813.csv new file mode 100644 index 000000000..376f33247 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620813.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000081,0.000000,0.000000,0.000000,0.000000,0.001481,0.000437,0.001481,0.000169,0.000169,0.010552,0.425643,-0.004927,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001336,0.000430,0.001336,0.000044,0.000044,0.009647,0.420830,-0.004813,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001212,0.000424,0.001212,0.000000,0.000000,0.008858,0.416129,-0.004701,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001107,0.000418,0.001107,0.000000,0.000000,0.008170,0.411495,-0.004634,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001016,0.000412,0.001016,0.000000,0.000000,0.007565,0.406927,-0.004568,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000938,0.000406,0.000938,0.000000,0.000000,0.007034,0.402425,-0.004502,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000869,0.000400,0.000870,0.000000,0.000000,0.006565,0.397987,-0.004438,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000809,0.000395,0.000810,0.000000,0.000000,0.006151,0.393612,-0.004375,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000757,0.000389,0.000758,0.000000,0.000000,0.005783,0.389300,-0.004312,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000711,0.000383,0.000712,0.000000,0.000000,0.005455,0.385050,-0.004251,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000670,0.000378,0.000672,0.000000,0.000000,0.005163,0.380860,-0.004190,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000634,0.000373,0.000636,0.000000,0.000000,0.004902,0.376730,-0.004130,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000601,0.000367,0.000604,0.000000,0.000000,0.004668,0.372659,-0.004071,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000573,0.000362,0.000576,0.000000,0.000000,0.004457,0.368646,-0.004013,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000547,0.000357,0.000550,0.000123,0.000123,0.004267,0.364569,-0.004077,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000523,0.000351,0.000527,0.000354,0.000354,0.004095,0.360323,-0.004246,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000502,0.000345,0.000507,0.000525,0.000525,0.003938,0.355969,-0.004354,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000483,0.000340,0.000488,0.000645,0.000645,0.003794,0.351559,-0.004410,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000465,0.000334,0.000471,0.000600,0.000600,0.003663,0.347257,-0.004302,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000078,0.000000,0.000000,0.000000,0.000006,0.000449,0.000329,0.000455,0.000516,0.000516,0.003542,0.343175,-0.004081,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000435,0.000323,0.000441,0.000465,0.000465,0.003431,0.339187,-0.003988,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000580,0.000003,0.000006,0.000003,0.000007,0.000421,0.000319,0.000432,0.000376,0.000376,0.003329,0.335848,-0.003339,1.000000,0.000003 +22,2022-08-01 22:00:00,0.000063,0.000002,0.000000,0.000002,0.000008,0.000409,0.000314,0.000418,0.000328,0.000328,0.003235,0.332100,-0.003748,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000296,0.000001,0.000000,0.000001,0.000009,0.000397,0.000310,0.000407,0.000243,0.000243,0.003148,0.328718,-0.003382,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000209,0.000000,0.000000,0.000000,0.000009,0.000386,0.000305,0.000396,0.000166,0.000166,0.003067,0.325375,-0.003343,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000672,0.000028,0.000050,0.000028,0.000010,0.000377,0.000302,0.000415,0.000070,0.000070,0.002992,0.322582,-0.002793,1.000000,0.000023 +26,2022-08-02 02:00:00,0.001591,0.000182,0.000308,0.000182,0.000011,0.000368,0.000299,0.000560,0.000000,0.000000,0.002923,0.320549,-0.002032,1.000000,0.000148 +27,2022-08-02 03:00:00,0.001500,0.000239,0.000276,0.000239,0.000012,0.000359,0.000296,0.000610,0.000000,0.000000,0.002860,0.318488,-0.002061,1.000000,0.000186 +28,2022-08-02 04:00:00,0.001574,0.000295,0.000300,0.000295,0.000013,0.000352,0.000294,0.000660,0.000000,0.000000,0.002802,0.316505,-0.001983,1.000000,0.000190 +29,2022-08-02 05:00:00,0.000602,0.000157,0.000050,0.000157,0.000013,0.000345,0.000290,0.000516,0.000000,0.000000,0.002748,0.313840,-0.002666,1.000000,0.000082 +30,2022-08-02 06:00:00,0.000264,0.000078,0.000010,0.000078,0.000014,0.000338,0.000287,0.000430,0.000000,0.000000,0.002696,0.310918,-0.002922,1.000000,0.000014 +31,2022-08-02 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000015,0.000332,0.000282,0.000359,0.000000,0.000000,0.002647,0.307787,-0.003131,1.000000,0.000002 +32,2022-08-02 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000016,0.000326,0.000278,0.000344,0.000000,0.000000,0.002600,0.304701,-0.003086,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000320,0.000274,0.000337,0.000000,0.000000,0.002555,0.301659,-0.003042,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000314,0.000270,0.000332,0.000000,0.000000,0.002511,0.298661,-0.002998,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000309,0.000267,0.000327,0.000000,0.000000,0.002469,0.295705,-0.002956,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000303,0.000263,0.000323,0.000000,0.000000,0.002429,0.292792,-0.002913,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000298,0.000259,0.000319,0.000000,0.000000,0.002390,0.289920,-0.002872,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000293,0.000255,0.000315,0.000115,0.000115,0.002351,0.286976,-0.002944,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000289,0.000251,0.000311,0.000320,0.000320,0.002314,0.283872,-0.003104,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000284,0.000247,0.000308,0.000464,0.000464,0.002277,0.280670,-0.003202,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000279,0.000243,0.000304,0.000575,0.000575,0.002241,0.277405,-0.003265,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000942,0.000006,0.000011,0.000006,0.000026,0.000275,0.000240,0.000307,0.000655,0.000655,0.002206,0.275024,-0.002380,1.000000,0.000005 +43,2022-08-02 19:00:00,0.000112,0.000003,0.000000,0.000003,0.000027,0.000270,0.000236,0.000300,0.000584,0.000584,0.002171,0.271941,-0.003083,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000000,0.000002,0.000000,0.000002,0.000028,0.000266,0.000232,0.000296,0.000528,0.000528,0.002137,0.268847,-0.003094,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000261,0.000228,0.000291,0.000505,0.000505,0.002103,0.265820,-0.003027,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000257,0.000224,0.000288,0.000433,0.000433,0.002069,0.262907,-0.002913,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000253,0.000220,0.000285,0.000315,0.000315,0.002037,0.260152,-0.002755,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000249,0.000217,0.000282,0.000171,0.000171,0.002004,0.257578,-0.002574,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000245,0.000214,0.000279,0.000025,0.000025,0.001973,0.255185,-0.002393,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000241,0.000211,0.000276,0.000000,0.000000,0.001943,0.252850,-0.002334,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000237,0.000208,0.000274,0.000000,0.000000,0.001913,0.250549,-0.002301,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000234,0.000205,0.000271,0.000000,0.000000,0.001884,0.248281,-0.002268,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000230,0.000202,0.000269,0.000000,0.000000,0.001856,0.246045,-0.002236,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000226,0.000199,0.000267,0.000000,0.000000,0.001828,0.243842,-0.002204,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000223,0.000196,0.000264,0.000000,0.000000,0.001801,0.241669,-0.002172,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000220,0.000193,0.000262,0.000000,0.000000,0.001775,0.239528,-0.002141,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000216,0.000190,0.000260,0.000000,0.000000,0.001749,0.237417,-0.002111,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000213,0.000188,0.000258,0.000000,0.000000,0.001723,0.235337,-0.002081,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000210,0.000185,0.000257,0.000000,0.000000,0.001698,0.233286,-0.002051,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000207,0.000182,0.000255,0.000000,0.000000,0.001674,0.231264,-0.002022,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000204,0.000180,0.000253,0.000000,0.000000,0.001650,0.229271,-0.001993,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000201,0.000177,0.000251,0.000121,0.000121,0.001626,0.227188,-0.002083,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000198,0.000174,0.000250,0.000362,0.000362,0.001602,0.224897,-0.002291,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000195,0.000171,0.000248,0.000533,0.000533,0.001578,0.222470,-0.002427,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000192,0.000168,0.000246,0.000643,0.000643,0.001554,0.219969,-0.002501,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000189,0.000164,0.000244,0.000637,0.000637,0.001530,0.217510,-0.002460,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000186,0.000161,0.000243,0.000552,0.000552,0.001505,0.215169,-0.002341,1.000000,0.000000 +68,2022-08-03 20:00:00,0.005101,0.000927,0.001685,0.000927,0.000058,0.000183,0.000163,0.001168,0.000501,0.000501,0.001485,0.216280,0.001111,1.000000,0.000758 +69,2022-08-03 21:00:00,0.000512,0.000421,0.000000,0.000421,0.000060,0.000181,0.000161,0.000662,0.000462,0.000462,0.001465,0.214550,-0.001730,1.000000,0.000337 +70,2022-08-03 22:00:00,0.000000,0.000337,0.000000,0.000337,0.000061,0.000178,0.000158,0.000576,0.000393,0.000393,0.001445,0.212409,-0.002141,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000082,0.000000,0.000000,0.000000,0.000063,0.000175,0.000155,0.000238,0.000298,0.000298,0.001424,0.210474,-0.001935,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000173,0.000153,0.000237,0.000180,0.000180,0.001404,0.208601,-0.001873,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000170,0.000151,0.000236,0.000035,0.000035,0.001384,0.206897,-0.001704,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000168,0.000148,0.000235,0.000000,0.000000,0.001365,0.205253,-0.001645,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000166,0.000146,0.000234,0.000000,0.000000,0.001345,0.203631,-0.001621,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000163,0.000144,0.000233,0.000000,0.000000,0.001326,0.202034,-0.001598,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000161,0.000142,0.000232,0.000000,0.000000,0.001308,0.200458,-0.001575,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000159,0.000140,0.000231,0.000000,0.000000,0.001289,0.198906,-0.001553,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000156,0.000138,0.000230,0.000000,0.000000,0.001271,0.197376,-0.001530,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000154,0.000136,0.000229,0.000000,0.000000,0.001253,0.195867,-0.001509,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000152,0.000134,0.000228,0.000000,0.000000,0.001235,0.194380,-0.001487,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000150,0.000132,0.000228,0.000000,0.000000,0.001218,0.192914,-0.001466,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000147,0.000130,0.000227,0.000000,0.000000,0.001201,0.191470,-0.001445,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000145,0.000128,0.000226,0.000000,0.000000,0.001184,0.190045,-0.001424,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000143,0.000127,0.000226,0.000000,0.000000,0.001167,0.188642,-0.001404,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000141,0.000125,0.000225,0.000118,0.000118,0.001151,0.187141,-0.001500,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000139,0.000122,0.000224,0.000361,0.000361,0.001134,0.185423,-0.001718,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000137,0.000120,0.000224,0.000530,0.000530,0.001117,0.183563,-0.001860,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000135,0.000117,0.000223,0.000650,0.000650,0.001100,0.181610,-0.001952,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000133,0.000115,0.000222,0.000697,0.000697,0.001082,0.179640,-0.001971,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000130,0.000112,0.000221,0.000617,0.000617,0.001064,0.177776,-0.001863,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000128,0.000110,0.000221,0.000572,0.000572,0.001046,0.175984,-0.001793,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000126,0.000108,0.000220,0.000526,0.000526,0.001028,0.174262,-0.001721,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000124,0.000106,0.000219,0.000441,0.000441,0.001010,0.172649,-0.001613,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000121,0.000104,0.000218,0.000322,0.000322,0.000992,0.171177,-0.001473,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000119,0.000102,0.000217,0.000184,0.000184,0.000975,0.169861,-0.001315,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000117,0.000101,0.000217,0.000037,0.000037,0.000958,0.168709,-0.001152,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000115,0.000099,0.000216,0.000000,0.000000,0.000942,0.167610,-0.001099,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000113,0.000098,0.000216,0.000000,0.000000,0.000926,0.166527,-0.001083,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000111,0.000096,0.000215,0.000000,0.000000,0.000911,0.165459,-0.001068,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000110,0.000095,0.000215,0.000000,0.000000,0.000897,0.164406,-0.001053,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000108,0.000094,0.000215,0.000000,0.000000,0.000882,0.163369,-0.001037,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000106,0.000092,0.000214,0.000000,0.000000,0.000868,0.162346,-0.001023,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000104,0.000091,0.000214,0.000000,0.000000,0.000855,0.161338,-0.001008,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000103,0.000090,0.000214,0.000000,0.000000,0.000842,0.160344,-0.000994,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000101,0.000088,0.000214,0.000000,0.000000,0.000829,0.159365,-0.000979,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000100,0.000087,0.000214,0.000000,0.000000,0.000816,0.158399,-0.000965,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000098,0.000086,0.000214,0.000000,0.000000,0.000804,0.157448,-0.000952,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000097,0.000085,0.000214,0.000000,0.000000,0.000792,0.156510,-0.000938,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000095,0.000083,0.000213,0.000132,0.000132,0.000780,0.155455,-0.001054,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000094,0.000082,0.000213,0.000376,0.000376,0.000768,0.154175,-0.001281,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000092,0.000080,0.000213,0.000542,0.000542,0.000755,0.152749,-0.001425,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000091,0.000078,0.000213,0.000654,0.000654,0.000742,0.151234,-0.001516,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000089,0.000076,0.000213,0.000670,0.000670,0.000729,0.149724,-0.001510,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000087,0.000074,0.000213,0.000607,0.000607,0.000716,0.148360,-0.001364,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000086,0.000072,0.000212,0.000552,0.000552,0.000702,0.147071,-0.001290,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000084,0.000071,0.000212,0.000468,0.000468,0.000689,0.145882,-0.001189,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000082,0.000069,0.000212,0.000404,0.000404,0.000676,0.144773,-0.001109,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000131,0.000081,0.000068,0.000212,0.000296,0.000296,0.000663,0.143973,-0.000800,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000132,0.000079,0.000067,0.000212,0.000176,0.000176,0.000651,0.143085,-0.000888,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000687,0.000023,0.000042,0.000023,0.000134,0.000078,0.000067,0.000235,0.000059,0.000059,0.000640,0.142930,-0.000155,1.000000,0.000019 +122,2022-08-06 02:00:00,0.001914,0.000198,0.000340,0.000198,0.000135,0.000077,0.000068,0.000410,0.000000,0.000000,0.000631,0.143751,0.000820,1.000000,0.000161 +123,2022-08-06 03:00:00,0.000761,0.000127,0.000060,0.000127,0.000137,0.000076,0.000068,0.000339,0.000000,0.000000,0.000623,0.143699,-0.000052,1.000000,0.000095 +124,2022-08-06 04:00:00,0.000198,0.000086,0.000004,0.000086,0.000138,0.000075,0.000067,0.000298,0.000000,0.000000,0.000615,0.143148,-0.000551,1.000000,0.000014 +125,2022-08-06 05:00:00,0.000211,0.000016,0.000005,0.000016,0.000139,0.000074,0.000066,0.000229,0.000000,0.000000,0.000608,0.142617,-0.000530,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000401,0.000012,0.000017,0.000012,0.000141,0.000073,0.000066,0.000226,0.000000,0.000000,0.000600,0.142270,-0.000348,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000142,0.000072,0.000065,0.000220,0.000000,0.000000,0.000593,0.141549,-0.000721,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000144,0.000071,0.000064,0.000218,0.000000,0.000000,0.000586,0.140838,-0.000711,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000070,0.000063,0.000215,0.000000,0.000000,0.000579,0.140137,-0.000701,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000070,0.000062,0.000216,0.000000,0.000000,0.000572,0.139446,-0.000691,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000069,0.000061,0.000216,0.000000,0.000000,0.000564,0.138765,-0.000681,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000068,0.000061,0.000217,0.000000,0.000000,0.000557,0.138094,-0.000671,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000067,0.000060,0.000217,0.000000,0.000000,0.000550,0.137432,-0.000662,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000066,0.000059,0.000218,0.000109,0.000109,0.000542,0.136673,-0.000760,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000057,0.000218,0.000343,0.000343,0.000535,0.135693,-0.000980,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000064,0.000056,0.000218,0.000497,0.000497,0.000527,0.134576,-0.001117,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000063,0.000054,0.000219,0.000623,0.000623,0.000518,0.133351,-0.001225,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000062,0.000053,0.000219,0.000702,0.000702,0.000509,0.132065,-0.001286,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000061,0.000051,0.000219,0.000636,0.000636,0.000499,0.130863,-0.001202,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000060,0.000050,0.000219,0.000575,0.000575,0.000489,0.129739,-0.001125,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000058,0.000048,0.000219,0.000532,0.000532,0.000479,0.128671,-0.001067,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000057,0.000047,0.000219,0.000444,0.000444,0.000469,0.127706,-0.000965,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000056,0.000046,0.000219,0.000328,0.000328,0.000459,0.126870,-0.000836,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000055,0.000045,0.000220,0.000180,0.000180,0.000450,0.126191,-0.000679,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000044,0.000220,0.000034,0.000034,0.000440,0.125666,-0.000525,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000052,0.000044,0.000220,0.000000,0.000000,0.000432,0.125182,-0.000484,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000051,0.000043,0.000220,0.000000,0.000000,0.000423,0.124705,-0.000477,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000050,0.000042,0.000221,0.000000,0.000000,0.000415,0.124234,-0.000470,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000042,0.000221,0.000000,0.000000,0.000407,0.123771,-0.000464,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000049,0.000041,0.000221,0.000000,0.000000,0.000400,0.123314,-0.000457,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000048,0.000041,0.000222,0.000000,0.000000,0.000393,0.122864,-0.000450,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000047,0.000040,0.000222,0.000000,0.000000,0.000386,0.122420,-0.000444,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000046,0.000039,0.000223,0.000000,0.000000,0.000380,0.121982,-0.000438,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000045,0.000039,0.000223,0.000000,0.000000,0.000373,0.121551,-0.000431,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000045,0.000038,0.000224,0.000000,0.000000,0.000367,0.121125,-0.000425,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000044,0.000038,0.000224,0.000000,0.000000,0.000361,0.120706,-0.000419,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000043,0.000037,0.000225,0.000000,0.000000,0.000355,0.120293,-0.000413,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000037,0.000225,0.000110,0.000110,0.000349,0.119777,-0.000516,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000042,0.000036,0.000226,0.000350,0.000350,0.000343,0.119032,-0.000745,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000041,0.000034,0.000226,0.000513,0.000513,0.000337,0.118137,-0.000895,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000040,0.000033,0.000226,0.000623,0.000623,0.000330,0.117147,-0.000990,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000032,0.000227,0.000696,0.000696,0.000323,0.116099,-0.001048,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000031,0.000227,0.000630,0.000630,0.000315,0.115130,-0.000968,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000029,0.000227,0.000567,0.000567,0.000307,0.114238,-0.000893,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000028,0.000227,0.000516,0.000516,0.000299,0.113408,-0.000830,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000027,0.000228,0.000433,0.000433,0.000291,0.112672,-0.000736,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000027,0.000228,0.000319,0.000319,0.000283,0.112060,-0.000612,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000026,0.000228,0.000146,0.000146,0.000276,0.111626,-0.000434,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000033,0.000026,0.000228,0.000010,0.000010,0.000269,0.111333,-0.000293,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000032,0.000025,0.000229,0.000000,0.000000,0.000262,0.111054,-0.000279,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000025,0.000229,0.000000,0.000000,0.000256,0.110779,-0.000275,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000230,0.000000,0.000000,0.000250,0.110507,-0.000271,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000024,0.000230,0.000000,0.000000,0.000245,0.110240,-0.000267,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000024,0.000231,0.000000,0.000000,0.000239,0.109976,-0.000264,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000000,0.000000,0.000234,0.109716,-0.000260,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000023,0.000232,0.000000,0.000000,0.000230,0.109460,-0.000256,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000023,0.000232,0.000000,0.000000,0.000225,0.109208,-0.000252,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000027,0.000022,0.000233,0.000000,0.000000,0.000221,0.108959,-0.000249,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000022,0.000233,0.000000,0.000000,0.000217,0.108714,-0.000245,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000022,0.000234,0.000000,0.000000,0.000213,0.108472,-0.000242,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000022,0.000235,0.000000,0.000000,0.000209,0.108233,-0.000238,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000210,0.000025,0.000021,0.000235,0.000092,0.000092,0.000205,0.107908,-0.000325,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000236,0.000332,0.000332,0.000201,0.107351,-0.000557,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000019,0.000236,0.000504,0.000504,0.000197,0.106632,-0.000719,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000018,0.000237,0.000611,0.000611,0.000192,0.105818,-0.000814,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000023,0.000017,0.000237,0.000695,0.000695,0.000186,0.104932,-0.000886,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000016,0.000238,0.000612,0.000612,0.000181,0.104141,-0.000791,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000015,0.000238,0.000552,0.000552,0.000175,0.103420,-0.000720,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000014,0.000238,0.000523,0.000523,0.000169,0.102739,-0.000682,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000014,0.000239,0.000439,0.000439,0.000163,0.102149,-0.000590,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000013,0.000239,0.000317,0.000317,0.000157,0.101689,-0.000460,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000013,0.000239,0.000179,0.000179,0.000151,0.101370,-0.000318,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000012,0.000240,0.000029,0.000029,0.000145,0.101205,-0.000165,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000012,0.000240,0.000000,0.000000,0.000141,0.101071,-0.000135,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000016,0.000012,0.000240,0.000000,0.000000,0.000136,0.100938,-0.000133,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000012,0.000241,0.000000,0.000000,0.000132,0.100807,-0.000131,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000012,0.000241,0.000000,0.000000,0.000128,0.100678,-0.000129,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000011,0.000242,0.000000,0.000000,0.000124,0.100551,-0.000127,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000011,0.000242,0.000000,0.000000,0.000121,0.100426,-0.000125,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000011,0.000243,0.000000,0.000000,0.000118,0.100303,-0.000123,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000244,0.000000,0.000000,0.000115,0.100181,-0.000122,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000011,0.000244,0.000000,0.000000,0.000112,0.100061,-0.000120,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000011,0.000245,0.000000,0.000000,0.000110,0.099943,-0.000118,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000000,0.000000,0.000107,0.099826,-0.000117,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000010,0.000246,0.000000,0.000000,0.000105,0.099712,-0.000115,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000012,0.000010,0.000247,0.000099,0.000099,0.000103,0.099501,-0.000211,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620814.csv b/test/channel_loss/channel_forcing/et/cat-2620814.csv new file mode 100644 index 000000000..d704c5fa7 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620814.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000073,0.000000,0.000000,0.000000,0.000000,0.001470,0.000356,0.001470,0.000160,0.000160,0.010483,0.426598,-0.004846,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001315,0.000351,0.001315,0.000043,0.000043,0.009518,0.421863,-0.004734,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001185,0.000346,0.001185,0.000000,0.000000,0.008679,0.417238,-0.004625,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001073,0.000341,0.001073,0.000000,0.000000,0.007947,0.412678,-0.004560,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000978,0.000336,0.000978,0.000000,0.000000,0.007306,0.408181,-0.004496,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000895,0.000332,0.000895,0.000000,0.000000,0.006742,0.403748,-0.004433,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000823,0.000327,0.000824,0.000000,0.000000,0.006246,0.399377,-0.004371,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000322,0.000761,0.000000,0.000000,0.005808,0.395067,-0.004310,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000706,0.000318,0.000707,0.000000,0.000000,0.005420,0.390817,-0.004250,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000658,0.000313,0.000659,0.000000,0.000000,0.005075,0.386627,-0.004190,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000615,0.000309,0.000617,0.000000,0.000000,0.004769,0.382496,-0.004131,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000578,0.000305,0.000580,0.000000,0.000000,0.004496,0.378423,-0.004073,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000545,0.000300,0.000547,0.000000,0.000000,0.004251,0.374406,-0.004016,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000515,0.000296,0.000518,0.000000,0.000000,0.004032,0.370446,-0.003960,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000489,0.000292,0.000492,0.000123,0.000123,0.003836,0.366421,-0.004025,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000465,0.000287,0.000469,0.000342,0.000342,0.003658,0.362236,-0.004185,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000443,0.000283,0.000448,0.000501,0.000501,0.003498,0.357953,-0.004283,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000424,0.000278,0.000429,0.000608,0.000608,0.003352,0.353624,-0.004329,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000407,0.000274,0.000412,0.000559,0.000559,0.003219,0.349405,-0.004219,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000132,0.000000,0.000000,0.000000,0.000006,0.000391,0.000270,0.000397,0.000499,0.000499,0.003098,0.345433,-0.003971,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000083,0.000000,0.000000,0.000000,0.000007,0.000376,0.000265,0.000383,0.000448,0.000448,0.002988,0.341520,-0.003913,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000606,0.000006,0.000012,0.000006,0.000007,0.000363,0.000262,0.000377,0.000353,0.000353,0.002887,0.338259,-0.003261,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000083,0.000003,0.000000,0.000003,0.000008,0.000351,0.000258,0.000362,0.000311,0.000311,0.002794,0.334582,-0.003678,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000200,0.000002,0.000000,0.000002,0.000009,0.000340,0.000254,0.000351,0.000226,0.000226,0.002709,0.331155,-0.003426,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000092,0.000000,0.000000,0.000000,0.000009,0.000329,0.000251,0.000339,0.000154,0.000154,0.002630,0.327741,-0.003414,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000682,0.000035,0.000064,0.000035,0.000010,0.000320,0.000248,0.000365,0.000064,0.000064,0.002558,0.324982,-0.002759,1.000000,0.000029 +26,2022-08-02 02:00:00,0.001334,0.000161,0.000264,0.000161,0.000011,0.000311,0.000245,0.000484,0.000000,0.000000,0.002492,0.322770,-0.002212,1.000000,0.000132 +27,2022-08-02 03:00:00,0.001222,0.000202,0.000225,0.000202,0.000012,0.000304,0.000243,0.000518,0.000000,0.000000,0.002431,0.320518,-0.002252,1.000000,0.000154 +28,2022-08-02 04:00:00,0.001505,0.000288,0.000325,0.000288,0.000013,0.000296,0.000241,0.000597,0.000000,0.000000,0.002376,0.318477,-0.002041,1.000000,0.000191 +29,2022-08-02 05:00:00,0.000646,0.000164,0.000068,0.000164,0.000013,0.000290,0.000238,0.000467,0.000000,0.000000,0.002324,0.315871,-0.002606,1.000000,0.000096 +30,2022-08-02 06:00:00,0.000268,0.000089,0.000012,0.000089,0.000014,0.000284,0.000235,0.000387,0.000000,0.000000,0.002275,0.312983,-0.002887,1.000000,0.000019 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000015,0.000278,0.000232,0.000310,0.000000,0.000000,0.002229,0.309885,-0.003099,1.000000,0.000002 +32,2022-08-02 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000016,0.000272,0.000228,0.000291,0.000000,0.000000,0.002186,0.306829,-0.003055,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000267,0.000225,0.000284,0.000000,0.000000,0.002144,0.303817,-0.003012,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000262,0.000222,0.000280,0.000000,0.000000,0.002105,0.300847,-0.002970,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000257,0.000219,0.000276,0.000000,0.000000,0.002067,0.297918,-0.002929,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000252,0.000216,0.000272,0.000000,0.000000,0.002031,0.295031,-0.002888,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000005,0.000000,0.000000,0.000000,0.000021,0.000248,0.000213,0.000269,0.000000,0.000000,0.001996,0.292188,-0.002842,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000017,0.000000,0.000000,0.000000,0.000022,0.000243,0.000210,0.000265,0.000114,0.000114,0.001962,0.289285,-0.002903,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000017,0.000000,0.000000,0.000000,0.000023,0.000239,0.000207,0.000262,0.000307,0.000307,0.001929,0.286233,-0.003052,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000017,0.000000,0.000000,0.000000,0.000024,0.000235,0.000203,0.000259,0.000430,0.000430,0.001897,0.283103,-0.003131,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000017,0.000000,0.000000,0.000000,0.000025,0.000231,0.000200,0.000256,0.000526,0.000526,0.001866,0.279921,-0.003182,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000882,0.000007,0.000013,0.000007,0.000026,0.000227,0.000197,0.000261,0.000602,0.000602,0.001836,0.277549,-0.002371,1.000000,0.000006 +43,2022-08-02 19:00:00,0.000110,0.000003,0.000000,0.000003,0.000027,0.000224,0.000194,0.000254,0.000539,0.000539,0.001806,0.274524,-0.003026,1.000000,0.000003 +44,2022-08-02 20:00:00,0.000000,0.000003,0.000000,0.000003,0.000028,0.000220,0.000191,0.000251,0.000509,0.000509,0.001777,0.271462,-0.003061,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000216,0.000188,0.000246,0.000494,0.000494,0.001749,0.268459,-0.003004,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000213,0.000185,0.000243,0.000424,0.000424,0.001720,0.265566,-0.002892,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000209,0.000182,0.000241,0.000308,0.000308,0.001693,0.262829,-0.002738,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000206,0.000179,0.000239,0.000168,0.000168,0.001666,0.260268,-0.002561,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000203,0.000176,0.000237,0.000027,0.000027,0.001640,0.257882,-0.002386,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000199,0.000174,0.000235,0.000000,0.000000,0.001614,0.255556,-0.002326,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000196,0.000172,0.000233,0.000000,0.000000,0.001590,0.253262,-0.002294,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000193,0.000169,0.000231,0.000000,0.000000,0.001566,0.251001,-0.002261,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000190,0.000167,0.000229,0.000000,0.000000,0.001542,0.248771,-0.002230,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000187,0.000164,0.000228,0.000000,0.000000,0.001519,0.246573,-0.002199,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000185,0.000162,0.000226,0.000000,0.000000,0.001497,0.244405,-0.002168,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000182,0.000160,0.000225,0.000000,0.000000,0.001475,0.242268,-0.002137,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000179,0.000158,0.000223,0.000000,0.000000,0.001453,0.240160,-0.002107,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000176,0.000155,0.000222,0.000000,0.000000,0.001432,0.238082,-0.002078,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000174,0.000153,0.000221,0.000000,0.000000,0.001412,0.236034,-0.002049,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000171,0.000151,0.000219,0.000000,0.000000,0.001391,0.234014,-0.002020,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000169,0.000149,0.000218,0.000000,0.000000,0.001371,0.232022,-0.001992,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000166,0.000147,0.000217,0.000119,0.000119,0.001352,0.229941,-0.002082,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000164,0.000144,0.000216,0.000354,0.000354,0.001332,0.227657,-0.002284,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000161,0.000142,0.000215,0.000513,0.000513,0.001313,0.225249,-0.002408,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000159,0.000139,0.000214,0.000620,0.000620,0.001293,0.222769,-0.002480,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000156,0.000137,0.000212,0.000605,0.000605,0.001273,0.220338,-0.002431,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000154,0.000134,0.000211,0.000539,0.000539,0.001253,0.218006,-0.002331,1.000000,0.000000 +68,2022-08-03 20:00:00,0.005158,0.001073,0.001952,0.001073,0.000059,0.000152,0.000135,0.001284,0.000493,0.000493,0.001236,0.218914,0.000908,1.000000,0.000878 +69,2022-08-03 21:00:00,0.000669,0.000492,0.000007,0.000492,0.000060,0.000150,0.000133,0.000702,0.000457,0.000457,0.001219,0.217336,-0.001578,1.000000,0.000393 +70,2022-08-03 22:00:00,0.000000,0.000392,0.000000,0.000392,0.000062,0.000148,0.000131,0.000601,0.000384,0.000384,0.001203,0.215200,-0.002136,1.000000,0.000001 +71,2022-08-03 23:00:00,0.000097,0.000001,0.000000,0.000001,0.000063,0.000146,0.000129,0.000210,0.000286,0.000286,0.001186,0.213286,-0.001914,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000144,0.000127,0.000208,0.000174,0.000174,0.001170,0.211414,-0.001872,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000142,0.000125,0.000207,0.000037,0.000037,0.001153,0.209702,-0.001712,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000140,0.000123,0.000207,0.000000,0.000000,0.001137,0.208051,-0.001651,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000138,0.000122,0.000206,0.000000,0.000000,0.001121,0.206424,-0.001628,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000136,0.000120,0.000206,0.000000,0.000000,0.001106,0.204819,-0.001605,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000134,0.000118,0.000205,0.000000,0.000000,0.001090,0.203237,-0.001582,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000132,0.000117,0.000205,0.000000,0.000000,0.001075,0.201676,-0.001560,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000130,0.000115,0.000204,0.000000,0.000000,0.001060,0.200138,-0.001538,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000128,0.000113,0.000204,0.000000,0.000000,0.001046,0.198621,-0.001517,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000126,0.000112,0.000203,0.000000,0.000000,0.001031,0.197126,-0.001495,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000125,0.000110,0.000203,0.000000,0.000000,0.001017,0.195652,-0.001474,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000123,0.000109,0.000203,0.000000,0.000000,0.001003,0.194198,-0.001454,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000121,0.000107,0.000202,0.000000,0.000000,0.000989,0.192764,-0.001433,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000119,0.000106,0.000202,0.000000,0.000000,0.000975,0.191351,-0.001413,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000118,0.000104,0.000202,0.000117,0.000117,0.000962,0.189842,-0.001509,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000116,0.000102,0.000202,0.000353,0.000353,0.000948,0.188122,-0.001720,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000114,0.000100,0.000201,0.000512,0.000512,0.000934,0.186269,-0.001853,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000112,0.000098,0.000201,0.000623,0.000623,0.000920,0.184332,-0.001937,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000111,0.000096,0.000201,0.000678,0.000678,0.000905,0.182369,-0.001963,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000109,0.000094,0.000200,0.000600,0.000600,0.000890,0.180510,-0.001859,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000107,0.000092,0.000200,0.000554,0.000554,0.000876,0.178722,-0.001787,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000105,0.000090,0.000200,0.000515,0.000515,0.000861,0.176998,-0.001724,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000103,0.000089,0.000199,0.000435,0.000435,0.000846,0.175377,-0.001621,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000102,0.000087,0.000199,0.000324,0.000324,0.000832,0.173888,-0.001489,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000100,0.000086,0.000199,0.000181,0.000181,0.000817,0.172561,-0.001327,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000098,0.000084,0.000198,0.000039,0.000039,0.000804,0.171393,-0.001169,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000097,0.000083,0.000198,0.000000,0.000000,0.000790,0.170279,-0.001114,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000095,0.000082,0.000198,0.000000,0.000000,0.000778,0.169181,-0.001098,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000093,0.000081,0.000198,0.000000,0.000000,0.000765,0.168098,-0.001083,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000092,0.000080,0.000198,0.000000,0.000000,0.000753,0.167031,-0.001067,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000090,0.000079,0.000198,0.000000,0.000000,0.000741,0.165978,-0.001053,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000089,0.000078,0.000198,0.000000,0.000000,0.000730,0.164941,-0.001038,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000088,0.000077,0.000198,0.000000,0.000000,0.000719,0.163917,-0.001023,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000086,0.000075,0.000198,0.000000,0.000000,0.000708,0.162908,-0.001009,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000085,0.000074,0.000198,0.000000,0.000000,0.000697,0.161914,-0.000995,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000084,0.000073,0.000199,0.000000,0.000000,0.000687,0.160933,-0.000981,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000082,0.000072,0.000199,0.000000,0.000000,0.000677,0.159966,-0.000967,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000081,0.000071,0.000199,0.000000,0.000000,0.000667,0.159012,-0.000953,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000080,0.000070,0.000199,0.000128,0.000128,0.000657,0.157946,-0.001066,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000079,0.000069,0.000199,0.000365,0.000365,0.000647,0.156662,-0.001285,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000078,0.000067,0.000200,0.000524,0.000524,0.000636,0.155238,-0.001423,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000076,0.000066,0.000200,0.000637,0.000637,0.000626,0.153723,-0.001515,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000075,0.000064,0.000200,0.000625,0.000625,0.000615,0.152241,-0.001482,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000074,0.000063,0.000200,0.000574,0.000574,0.000604,0.150892,-0.001349,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000072,0.000061,0.000200,0.000521,0.000521,0.000593,0.149614,-0.001278,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000071,0.000060,0.000200,0.000462,0.000462,0.000582,0.148412,-0.001202,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000070,0.000059,0.000200,0.000401,0.000401,0.000572,0.147288,-0.001124,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000132,0.000068,0.000058,0.000200,0.000295,0.000295,0.000561,0.146471,-0.000817,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000067,0.000057,0.000201,0.000174,0.000174,0.000551,0.145597,-0.000874,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000729,0.000032,0.000057,0.000032,0.000135,0.000066,0.000057,0.000232,0.000056,0.000056,0.000542,0.145451,-0.000145,1.000000,0.000026 +122,2022-08-06 02:00:00,0.001943,0.000241,0.000412,0.000241,0.000136,0.000065,0.000058,0.000443,0.000000,0.000000,0.000535,0.146211,0.000760,1.000000,0.000197 +123,2022-08-06 03:00:00,0.000613,0.000141,0.000048,0.000141,0.000138,0.000064,0.000057,0.000343,0.000000,0.000000,0.000528,0.146007,-0.000204,1.000000,0.000104 +124,2022-08-06 04:00:00,0.000216,0.000098,0.000006,0.000098,0.000139,0.000063,0.000057,0.000301,0.000000,0.000000,0.000521,0.145456,-0.000551,1.000000,0.000012 +125,2022-08-06 05:00:00,0.000238,0.000015,0.000008,0.000015,0.000141,0.000063,0.000056,0.000219,0.000000,0.000000,0.000515,0.144933,-0.000523,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000446,0.000017,0.000026,0.000017,0.000142,0.000062,0.000056,0.000221,0.000000,0.000000,0.000509,0.144605,-0.000329,1.000000,0.000013 +127,2022-08-06 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000143,0.000061,0.000055,0.000213,0.000000,0.000000,0.000503,0.143867,-0.000738,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000145,0.000060,0.000054,0.000210,0.000000,0.000000,0.000497,0.143139,-0.000728,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000060,0.000054,0.000206,0.000000,0.000000,0.000491,0.142421,-0.000718,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000059,0.000053,0.000207,0.000000,0.000000,0.000485,0.141714,-0.000708,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000058,0.000052,0.000207,0.000000,0.000000,0.000479,0.141016,-0.000698,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000057,0.000051,0.000208,0.000000,0.000000,0.000473,0.140328,-0.000688,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000057,0.000051,0.000208,0.000000,0.000000,0.000467,0.139650,-0.000678,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000056,0.000050,0.000209,0.000107,0.000107,0.000461,0.138876,-0.000774,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000055,0.000049,0.000210,0.000326,0.000326,0.000454,0.137897,-0.000979,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000054,0.000048,0.000210,0.000465,0.000465,0.000448,0.136794,-0.001103,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000054,0.000046,0.000211,0.000587,0.000587,0.000440,0.135587,-0.001207,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000053,0.000045,0.000211,0.000666,0.000666,0.000433,0.134319,-0.001268,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000044,0.000212,0.000617,0.000617,0.000425,0.133117,-0.001202,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000043,0.000212,0.000561,0.000561,0.000417,0.131986,-0.001131,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000041,0.000212,0.000520,0.000520,0.000409,0.130913,-0.001073,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000040,0.000213,0.000433,0.000433,0.000400,0.129940,-0.000973,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000039,0.000213,0.000317,0.000317,0.000392,0.129094,-0.000845,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000047,0.000039,0.000213,0.000179,0.000179,0.000384,0.128397,-0.000697,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000038,0.000214,0.000036,0.000036,0.000377,0.127851,-0.000546,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000038,0.000214,0.000000,0.000000,0.000370,0.127347,-0.000503,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000044,0.000037,0.000215,0.000000,0.000000,0.000363,0.126851,-0.000496,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000037,0.000215,0.000000,0.000000,0.000356,0.126362,-0.000489,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000036,0.000216,0.000000,0.000000,0.000350,0.125880,-0.000482,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000036,0.000216,0.000000,0.000000,0.000343,0.125404,-0.000476,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000217,0.000000,0.000000,0.000338,0.124935,-0.000469,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000040,0.000035,0.000217,0.000000,0.000000,0.000332,0.124473,-0.000462,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000034,0.000218,0.000000,0.000000,0.000326,0.124017,-0.000456,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000034,0.000219,0.000000,0.000000,0.000321,0.123567,-0.000449,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000033,0.000219,0.000000,0.000000,0.000316,0.123124,-0.000443,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000033,0.000220,0.000000,0.000000,0.000311,0.122687,-0.000437,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000220,0.000000,0.000000,0.000306,0.122256,-0.000431,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000032,0.000221,0.000107,0.000107,0.000301,0.121726,-0.000530,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000031,0.000222,0.000343,0.000343,0.000296,0.120970,-0.000756,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000030,0.000222,0.000495,0.000495,0.000291,0.120075,-0.000895,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000035,0.000029,0.000223,0.000598,0.000598,0.000285,0.119091,-0.000984,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000028,0.000223,0.000660,0.000660,0.000279,0.118060,-0.001031,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000027,0.000224,0.000604,0.000604,0.000273,0.117099,-0.000962,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000026,0.000224,0.000551,0.000551,0.000266,0.116203,-0.000895,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000025,0.000225,0.000512,0.000512,0.000260,0.115359,-0.000845,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000024,0.000225,0.000423,0.000423,0.000253,0.114613,-0.000745,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000023,0.000226,0.000314,0.000314,0.000246,0.113986,-0.000627,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000023,0.000226,0.000146,0.000146,0.000240,0.113534,-0.000453,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000012,0.000012,0.000234,0.113220,-0.000314,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000022,0.000227,0.000000,0.000000,0.000229,0.112922,-0.000298,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000228,0.000000,0.000000,0.000224,0.112628,-0.000294,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000022,0.000228,0.000000,0.000000,0.000219,0.112338,-0.000290,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000000,0.000000,0.000214,0.112052,-0.000286,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000000,0.000000,0.000210,0.111770,-0.000282,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000000,0.000000,0.000206,0.111493,-0.000278,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000231,0.000000,0.000000,0.000202,0.111219,-0.000274,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000000,0.000000,0.000198,0.110949,-0.000270,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000232,0.000000,0.000000,0.000194,0.110682,-0.000266,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000020,0.000233,0.000000,0.000000,0.000191,0.110420,-0.000262,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000233,0.000000,0.000000,0.000188,0.110162,-0.000258,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000019,0.000234,0.000000,0.000000,0.000184,0.109907,-0.000255,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000090,0.000090,0.000181,0.109567,-0.000340,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000018,0.000236,0.000325,0.000325,0.000178,0.108999,-0.000568,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000021,0.000017,0.000236,0.000486,0.000486,0.000174,0.108281,-0.000718,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000017,0.000237,0.000579,0.000579,0.000170,0.107481,-0.000800,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000016,0.000237,0.000645,0.000645,0.000166,0.106628,-0.000853,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000015,0.000238,0.000601,0.000601,0.000161,0.105830,-0.000798,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000014,0.000238,0.000539,0.000539,0.000156,0.105103,-0.000726,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000013,0.000239,0.000508,0.000508,0.000151,0.104418,-0.000685,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000013,0.000239,0.000428,0.000428,0.000146,0.103821,-0.000597,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000012,0.000240,0.000313,0.000313,0.000141,0.103346,-0.000475,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000016,0.000012,0.000240,0.000175,0.000175,0.000136,0.103014,-0.000332,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000012,0.000241,0.000027,0.000027,0.000132,0.102832,-0.000182,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000011,0.000241,0.000000,0.000000,0.000128,0.102680,-0.000152,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000011,0.000242,0.000000,0.000000,0.000124,0.102529,-0.000150,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000011,0.000242,0.000000,0.000000,0.000120,0.102381,-0.000148,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000011,0.000243,0.000000,0.000000,0.000117,0.102235,-0.000146,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000244,0.000000,0.000000,0.000114,0.102091,-0.000144,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000011,0.000244,0.000000,0.000000,0.000111,0.101949,-0.000142,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000010,0.000245,0.000000,0.000000,0.000109,0.101809,-0.000140,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000010,0.000246,0.000000,0.000000,0.000106,0.101670,-0.000138,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000010,0.000246,0.000000,0.000000,0.000104,0.101534,-0.000136,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000012,0.000010,0.000247,0.000000,0.000000,0.000102,0.101400,-0.000134,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000010,0.000248,0.000000,0.000000,0.000099,0.101268,-0.000132,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000010,0.000248,0.000000,0.000000,0.000097,0.101137,-0.000131,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000010,0.000249,0.000100,0.000100,0.000095,0.100910,-0.000227,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620815.csv b/test/channel_loss/channel_forcing/et/cat-2620815.csv new file mode 100644 index 000000000..d01b4cbb1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620815.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001475,0.000394,0.001475,0.000153,0.000153,0.010516,0.420249,-0.005246,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001325,0.000389,0.001325,0.000034,0.000034,0.009579,0.415191,-0.005058,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001198,0.000383,0.001198,0.000000,0.000000,0.008765,0.410235,-0.004956,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001089,0.000378,0.001089,0.000000,0.000000,0.008054,0.405346,-0.004889,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000996,0.000373,0.000996,0.000000,0.000000,0.007431,0.400522,-0.004823,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000915,0.000368,0.000916,0.000000,0.000000,0.006883,0.395764,-0.004758,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000845,0.000363,0.000846,0.000000,0.000000,0.006401,0.391070,-0.004694,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000784,0.000358,0.000785,0.000000,0.000000,0.005975,0.386440,-0.004631,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000731,0.000353,0.000732,0.000000,0.000000,0.005597,0.381872,-0.004568,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000684,0.000349,0.000685,0.000000,0.000000,0.005262,0.377365,-0.004506,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000642,0.000344,0.000644,0.000000,0.000000,0.004964,0.372920,-0.004446,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000606,0.000339,0.000608,0.000000,0.000000,0.004697,0.368534,-0.004386,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000573,0.000335,0.000576,0.000000,0.000000,0.004459,0.364208,-0.004326,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000544,0.000330,0.000547,0.000000,0.000000,0.004245,0.359940,-0.004268,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000518,0.000326,0.000521,0.000119,0.000119,0.004053,0.355612,-0.004328,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000494,0.000321,0.000499,0.000350,0.000350,0.003880,0.351115,-0.004497,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000473,0.000316,0.000478,0.000511,0.000511,0.003722,0.346519,-0.004595,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000454,0.000311,0.000459,0.000624,0.000624,0.003579,0.341875,-0.004645,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000437,0.000306,0.000443,0.000562,0.000562,0.003448,0.337354,-0.004520,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000280,0.000000,0.000000,0.000000,0.000006,0.000421,0.000302,0.000428,0.000504,0.000504,0.003329,0.333227,-0.004127,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000392,0.000000,0.000000,0.000000,0.000007,0.000407,0.000298,0.000414,0.000464,0.000464,0.003220,0.329306,-0.003921,1.000000,0.000000 +21,2022-08-01 21:00:00,0.001294,0.000077,0.000139,0.000077,0.000008,0.000394,0.000295,0.000478,0.000351,0.000351,0.003121,0.326302,-0.003004,1.000000,0.000063 +22,2022-08-01 22:00:00,0.000423,0.000036,0.000002,0.000036,0.000009,0.000382,0.000291,0.000426,0.000312,0.000312,0.003030,0.322653,-0.003649,1.000000,0.000029 +23,2022-08-01 23:00:00,0.000694,0.000048,0.000036,0.000048,0.000009,0.000371,0.000287,0.000428,0.000228,0.000228,0.002947,0.319370,-0.003283,1.000000,0.000017 +24,2022-08-02 00:00:00,0.000561,0.000025,0.000029,0.000025,0.000010,0.000361,0.000284,0.000396,0.000148,0.000148,0.002870,0.316086,-0.003284,1.000000,0.000020 +25,2022-08-02 01:00:00,0.001754,0.000231,0.000394,0.000231,0.000011,0.000351,0.000281,0.000594,0.000060,0.000060,0.002800,0.313749,-0.002337,1.000000,0.000183 +26,2022-08-02 02:00:00,0.002191,0.000443,0.000616,0.000443,0.000012,0.000343,0.000279,0.000798,0.000000,0.000000,0.002736,0.311716,-0.002033,1.000000,0.000356 +27,2022-08-02 03:00:00,0.002061,0.000537,0.000553,0.000537,0.000013,0.000336,0.000277,0.000885,0.000000,0.000000,0.002677,0.309645,-0.002072,1.000000,0.000372 +28,2022-08-02 04:00:00,0.002200,0.000601,0.000617,0.000601,0.000014,0.000329,0.000275,0.000943,0.000000,0.000000,0.002623,0.307675,-0.001970,1.000000,0.000388 +29,2022-08-02 05:00:00,0.001275,0.000393,0.000234,0.000393,0.000014,0.000322,0.000272,0.000730,0.000000,0.000000,0.002574,0.305197,-0.002478,1.000000,0.000229 +30,2022-08-02 06:00:00,0.000938,0.000255,0.000133,0.000255,0.000015,0.000316,0.000269,0.000586,0.000000,0.000000,0.002527,0.302520,-0.002677,1.000000,0.000107 +31,2022-08-02 07:00:00,0.000000,0.000080,0.000000,0.000080,0.000016,0.000310,0.000266,0.000407,0.000000,0.000000,0.002482,0.299084,-0.003435,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000017,0.000305,0.000262,0.000349,0.000000,0.000000,0.002440,0.295695,-0.003389,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000299,0.000259,0.000318,0.000000,0.000000,0.002399,0.292352,-0.003343,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000294,0.000255,0.000314,0.000000,0.000000,0.002360,0.289054,-0.003298,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000290,0.000252,0.000310,0.000000,0.000000,0.002322,0.285800,-0.003254,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000285,0.000248,0.000306,0.000000,0.000000,0.002285,0.282591,-0.003210,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000156,0.000002,0.000004,0.000002,0.000023,0.000280,0.000245,0.000305,0.000000,0.000000,0.002250,0.279574,-0.003016,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000159,0.000001,0.000000,0.000001,0.000024,0.000276,0.000242,0.000301,0.000115,0.000115,0.002216,0.276492,-0.003082,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000139,0.000001,0.000000,0.000001,0.000025,0.000272,0.000238,0.000297,0.000308,0.000308,0.002183,0.273241,-0.003251,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000026,0.000267,0.000235,0.000293,0.000445,0.000445,0.002150,0.269861,-0.003380,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000027,0.000263,0.000231,0.000290,0.000540,0.000540,0.002118,0.266433,-0.003428,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000883,0.000007,0.000012,0.000007,0.000028,0.000259,0.000228,0.000294,0.000608,0.000608,0.002087,0.263745,-0.002688,1.000000,0.000005 +43,2022-08-02 19:00:00,0.000166,0.000003,0.000000,0.000003,0.000029,0.000255,0.000225,0.000288,0.000534,0.000534,0.002056,0.260470,-0.003275,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000002,0.000002,0.000000,0.000002,0.000031,0.000252,0.000221,0.000285,0.000502,0.000502,0.002026,0.257109,-0.003361,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000003,0.000000,0.000000,0.000000,0.000032,0.000248,0.000218,0.000280,0.000486,0.000486,0.001996,0.253810,-0.003300,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000003,0.000000,0.000000,0.000000,0.000033,0.000244,0.000214,0.000277,0.000425,0.000425,0.001966,0.250615,-0.003194,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000034,0.000240,0.000211,0.000275,0.000299,0.000299,0.001937,0.247589,-0.003026,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000036,0.000237,0.000208,0.000272,0.000160,0.000160,0.001909,0.244741,-0.002848,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000004,0.000000,0.000000,0.000000,0.000037,0.000233,0.000205,0.000270,0.000018,0.000018,0.001881,0.242071,-0.002670,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000004,0.000000,0.000000,0.000000,0.000038,0.000230,0.000203,0.000268,0.000000,0.000000,0.001854,0.239455,-0.002616,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000004,0.000000,0.000000,0.000000,0.000040,0.000226,0.000200,0.000266,0.000000,0.000000,0.001827,0.236875,-0.002580,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000004,0.000000,0.000000,0.000000,0.000041,0.000223,0.000197,0.000264,0.000000,0.000000,0.001802,0.234329,-0.002545,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000004,0.000000,0.000000,0.000000,0.000042,0.000220,0.000195,0.000262,0.000000,0.000000,0.001776,0.231818,-0.002511,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000004,0.000000,0.000000,0.000000,0.000044,0.000217,0.000192,0.000260,0.000000,0.000000,0.001751,0.229341,-0.002477,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000214,0.000189,0.000259,0.000000,0.000000,0.001727,0.226893,-0.002448,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000211,0.000187,0.000257,0.000000,0.000000,0.001703,0.224479,-0.002415,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000208,0.000184,0.000255,0.000000,0.000000,0.001680,0.222097,-0.002382,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000205,0.000182,0.000254,0.000000,0.000000,0.001657,0.219747,-0.002350,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000202,0.000179,0.000253,0.000000,0.000000,0.001634,0.217429,-0.002318,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000199,0.000177,0.000251,0.000000,0.000000,0.001612,0.215142,-0.002287,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000196,0.000175,0.000250,0.000000,0.000000,0.001590,0.212886,-0.002256,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000194,0.000172,0.000249,0.000118,0.000118,0.001569,0.210544,-0.002342,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000191,0.000169,0.000247,0.000363,0.000363,0.001547,0.207993,-0.002552,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000188,0.000167,0.000246,0.000524,0.000524,0.001526,0.205317,-0.002676,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000185,0.000164,0.000245,0.000623,0.000623,0.001504,0.202579,-0.002738,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000183,0.000161,0.000244,0.000611,0.000611,0.001482,0.199890,-0.002689,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000180,0.000158,0.000242,0.000539,0.000539,0.001460,0.197308,-0.002582,1.000000,0.000000 +68,2022-08-03 20:00:00,0.005216,0.001064,0.001935,0.001064,0.000064,0.000178,0.000159,0.001305,0.000490,0.000490,0.001441,0.198046,0.000738,1.000000,0.000871 +69,2022-08-03 21:00:00,0.000789,0.000493,0.000016,0.000493,0.000065,0.000175,0.000157,0.000733,0.000446,0.000446,0.001423,0.196343,-0.001703,1.000000,0.000394 +70,2022-08-03 22:00:00,0.000000,0.000391,0.000000,0.000391,0.000067,0.000173,0.000154,0.000631,0.000381,0.000381,0.001404,0.193964,-0.002379,1.000000,0.000003 +71,2022-08-03 23:00:00,0.000109,0.000003,0.000000,0.000003,0.000068,0.000171,0.000152,0.000242,0.000281,0.000281,0.001386,0.191825,-0.002140,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000168,0.000150,0.000238,0.000173,0.000173,0.001368,0.189713,-0.002112,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000166,0.000148,0.000238,0.000029,0.000029,0.001350,0.187772,-0.001941,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000164,0.000146,0.000237,0.000000,0.000000,0.001332,0.185885,-0.001887,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000162,0.000144,0.000236,0.000000,0.000000,0.001314,0.184024,-0.001861,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000159,0.000142,0.000236,0.000000,0.000000,0.001297,0.182188,-0.001836,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000157,0.000140,0.000235,0.000000,0.000000,0.001279,0.180377,-0.001811,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000155,0.000138,0.000234,0.000000,0.000000,0.001262,0.178590,-0.001787,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000153,0.000136,0.000234,0.000000,0.000000,0.001246,0.176828,-0.001763,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000151,0.000135,0.000233,0.000000,0.000000,0.001229,0.175089,-0.001739,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000149,0.000133,0.000233,0.000000,0.000000,0.001213,0.173374,-0.001715,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000147,0.000131,0.000233,0.000000,0.000000,0.001197,0.171681,-0.001692,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000145,0.000129,0.000232,0.000000,0.000000,0.001181,0.170012,-0.001669,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000143,0.000127,0.000232,0.000000,0.000000,0.001165,0.168365,-0.001647,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000141,0.000126,0.000231,0.000000,0.000000,0.001150,0.166741,-0.001625,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000139,0.000124,0.000231,0.000113,0.000113,0.001135,0.165026,-0.001715,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000137,0.000122,0.000231,0.000354,0.000354,0.001119,0.163097,-0.001929,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000135,0.000120,0.000230,0.000521,0.000521,0.001103,0.161030,-0.002068,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000133,0.000117,0.000230,0.000635,0.000635,0.001087,0.158878,-0.002152,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000131,0.000115,0.000230,0.000677,0.000677,0.001071,0.156713,-0.002164,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000129,0.000113,0.000229,0.000605,0.000605,0.001055,0.154650,-0.002064,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000127,0.000111,0.000229,0.000571,0.000571,0.001038,0.152647,-0.002002,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000125,0.000109,0.000228,0.000525,0.000525,0.001022,0.150717,-0.001930,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000123,0.000107,0.000228,0.000439,0.000439,0.001005,0.148898,-0.001820,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000121,0.000105,0.000228,0.000315,0.000315,0.000989,0.147225,-0.001673,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000119,0.000103,0.000227,0.000175,0.000175,0.000974,0.145714,-0.001511,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000117,0.000102,0.000227,0.000029,0.000029,0.000958,0.144366,-0.001347,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000115,0.000101,0.000227,0.000000,0.000000,0.000943,0.143066,-0.001301,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000114,0.000099,0.000227,0.000000,0.000000,0.000929,0.141783,-0.001283,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000112,0.000098,0.000226,0.000000,0.000000,0.000915,0.140517,-0.001266,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000110,0.000097,0.000226,0.000000,0.000000,0.000901,0.139268,-0.001249,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000109,0.000095,0.000226,0.000000,0.000000,0.000888,0.138036,-0.001232,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000107,0.000094,0.000226,0.000000,0.000000,0.000875,0.136821,-0.001215,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000105,0.000093,0.000226,0.000000,0.000000,0.000862,0.135622,-0.001199,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000104,0.000091,0.000226,0.000000,0.000000,0.000850,0.134440,-0.001183,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000102,0.000090,0.000227,0.000000,0.000000,0.000838,0.133273,-0.001167,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000101,0.000089,0.000227,0.000000,0.000000,0.000826,0.132122,-0.001151,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000099,0.000088,0.000227,0.000000,0.000000,0.000814,0.130987,-0.001135,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000098,0.000087,0.000227,0.000000,0.000000,0.000803,0.129867,-0.001120,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000097,0.000085,0.000227,0.000127,0.000127,0.000792,0.128637,-0.001230,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000095,0.000084,0.000228,0.000370,0.000370,0.000780,0.127184,-0.001453,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000094,0.000082,0.000228,0.000533,0.000533,0.000768,0.125589,-0.001595,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000092,0.000080,0.000228,0.000639,0.000639,0.000756,0.123911,-0.001678,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000091,0.000079,0.000228,0.000644,0.000644,0.000744,0.122251,-0.001660,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000025,0.000000,0.000000,0.000000,0.000139,0.000089,0.000077,0.000228,0.000595,0.000595,0.000732,0.120687,-0.001564,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000025,0.000000,0.000000,0.000000,0.000140,0.000088,0.000075,0.000228,0.000546,0.000546,0.000719,0.119192,-0.001494,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000025,0.000000,0.000000,0.000000,0.000142,0.000086,0.000074,0.000228,0.000467,0.000467,0.000707,0.117796,-0.001396,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000085,0.000073,0.000228,0.000407,0.000407,0.000695,0.116515,-0.001281,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000289,0.000000,0.000000,0.000000,0.000145,0.000083,0.000072,0.000228,0.000292,0.000292,0.000683,0.115587,-0.000927,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000038,0.000000,0.000000,0.000000,0.000147,0.000082,0.000070,0.000229,0.000169,0.000169,0.000672,0.114546,-0.001041,1.000000,0.000000 +121,2022-08-06 01:00:00,0.001078,0.000067,0.000121,0.000067,0.000148,0.000081,0.000070,0.000296,0.000049,0.000049,0.000661,0.114542,-0.000003,1.000000,0.000055 +122,2022-08-06 02:00:00,0.001908,0.000239,0.000380,0.000239,0.000150,0.000080,0.000071,0.000469,0.000000,0.000000,0.000653,0.115152,0.000610,1.000000,0.000195 +123,2022-08-06 03:00:00,0.000622,0.000145,0.000047,0.000145,0.000151,0.000079,0.000071,0.000375,0.000000,0.000000,0.000645,0.114814,-0.000339,1.000000,0.000097 +124,2022-08-06 04:00:00,0.000192,0.000090,0.000005,0.000090,0.000153,0.000078,0.000070,0.000321,0.000000,0.000000,0.000637,0.114097,-0.000717,1.000000,0.000011 +125,2022-08-06 05:00:00,0.000205,0.000013,0.000005,0.000013,0.000155,0.000077,0.000069,0.000245,0.000000,0.000000,0.000630,0.113402,-0.000695,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000391,0.000013,0.000019,0.000013,0.000156,0.000076,0.000069,0.000245,0.000000,0.000000,0.000623,0.112886,-0.000516,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000158,0.000075,0.000068,0.000238,0.000000,0.000000,0.000615,0.112010,-0.000876,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000159,0.000074,0.000067,0.000237,0.000000,0.000000,0.000608,0.111146,-0.000864,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000073,0.000066,0.000234,0.000000,0.000000,0.000601,0.110294,-0.000852,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000072,0.000065,0.000235,0.000000,0.000000,0.000594,0.109453,-0.000841,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000071,0.000064,0.000235,0.000000,0.000000,0.000586,0.108624,-0.000829,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000071,0.000063,0.000236,0.000000,0.000000,0.000579,0.107806,-0.000818,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000070,0.000062,0.000237,0.000000,0.000000,0.000572,0.106999,-0.000807,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000069,0.000061,0.000237,0.000103,0.000103,0.000565,0.106100,-0.000898,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000068,0.000060,0.000238,0.000332,0.000332,0.000557,0.104988,-0.001112,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000067,0.000059,0.000238,0.000480,0.000480,0.000549,0.103746,-0.001242,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000066,0.000058,0.000239,0.000602,0.000602,0.000541,0.102400,-0.001346,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000065,0.000056,0.000239,0.000674,0.000674,0.000532,0.101001,-0.001399,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000064,0.000055,0.000240,0.000624,0.000624,0.000523,0.099670,-0.001331,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000063,0.000053,0.000240,0.000576,0.000576,0.000514,0.098405,-0.001266,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000061,0.000052,0.000241,0.000528,0.000528,0.000505,0.097204,-0.001201,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000060,0.000051,0.000241,0.000435,0.000435,0.000495,0.096111,-0.001093,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000059,0.000050,0.000241,0.000319,0.000319,0.000486,0.095147,-0.000964,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000058,0.000049,0.000242,0.000176,0.000176,0.000477,0.094337,-0.000810,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000057,0.000048,0.000242,0.000027,0.000027,0.000469,0.093686,-0.000652,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000056,0.000048,0.000243,0.000000,0.000000,0.000460,0.093069,-0.000617,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000055,0.000047,0.000243,0.000000,0.000000,0.000452,0.092461,-0.000608,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000054,0.000046,0.000244,0.000000,0.000000,0.000445,0.091861,-0.000600,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000053,0.000046,0.000244,0.000000,0.000000,0.000437,0.091269,-0.000592,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000052,0.000045,0.000245,0.000000,0.000000,0.000430,0.090685,-0.000584,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000051,0.000045,0.000245,0.000000,0.000000,0.000423,0.090109,-0.000576,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000051,0.000044,0.000246,0.000000,0.000000,0.000417,0.089541,-0.000568,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000050,0.000043,0.000247,0.000000,0.000000,0.000410,0.088980,-0.000560,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000198,0.000049,0.000043,0.000247,0.000000,0.000000,0.000404,0.088428,-0.000552,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000048,0.000042,0.000248,0.000000,0.000000,0.000398,0.087883,-0.000545,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000201,0.000048,0.000042,0.000249,0.000000,0.000000,0.000392,0.087345,-0.000538,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000047,0.000041,0.000250,0.000000,0.000000,0.000386,0.086814,-0.000531,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000046,0.000040,0.000250,0.000105,0.000105,0.000380,0.086187,-0.000627,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000045,0.000040,0.000251,0.000346,0.000346,0.000374,0.085331,-0.000856,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000045,0.000038,0.000252,0.000505,0.000505,0.000368,0.084329,-0.001002,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000044,0.000037,0.000252,0.000602,0.000602,0.000362,0.083245,-0.001084,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000043,0.000036,0.000253,0.000663,0.000663,0.000355,0.082115,-0.001130,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000042,0.000035,0.000253,0.000617,0.000617,0.000347,0.081045,-0.001069,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000041,0.000034,0.000254,0.000563,0.000563,0.000340,0.080045,-0.001001,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000040,0.000033,0.000254,0.000503,0.000503,0.000333,0.079116,-0.000929,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000039,0.000032,0.000255,0.000424,0.000424,0.000325,0.078278,-0.000838,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000039,0.000032,0.000255,0.000303,0.000000,0.000318,0.077869,-0.000409,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000038,0.000031,0.000256,0.000138,0.000000,0.000312,0.077466,-0.000403,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000037,0.000031,0.000256,0.000006,0.000000,0.000305,0.077068,-0.000398,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000036,0.000030,0.000257,0.000000,0.000000,0.000299,0.076676,-0.000392,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000036,0.000030,0.000258,0.000000,0.000000,0.000294,0.076289,-0.000387,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000035,0.000030,0.000258,0.000000,0.000000,0.000288,0.075907,-0.000382,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000225,0.000034,0.000029,0.000259,0.000000,0.000000,0.000283,0.075532,-0.000375,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000004,0.000000,0.000000,0.000000,0.000226,0.000034,0.000029,0.000260,0.000000,0.000000,0.000278,0.075165,-0.000367,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000004,0.000000,0.000000,0.000000,0.000227,0.000033,0.000028,0.000260,0.000000,0.000000,0.000273,0.074802,-0.000363,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000005,0.000000,0.000000,0.000000,0.000228,0.000033,0.000028,0.000261,0.000000,0.000000,0.000269,0.074445,-0.000357,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000005,0.000000,0.000000,0.000000,0.000230,0.000032,0.000028,0.000262,0.000000,0.000000,0.000264,0.074093,-0.000352,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000006,0.000000,0.000000,0.000000,0.000231,0.000032,0.000027,0.000263,0.000000,0.000000,0.000260,0.073747,-0.000346,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000005,0.000000,0.000000,0.000000,0.000232,0.000031,0.000027,0.000263,0.000000,0.000000,0.000256,0.073404,-0.000343,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000003,0.000000,0.000000,0.000000,0.000234,0.000031,0.000027,0.000264,0.000000,0.000000,0.000252,0.073065,-0.000340,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000030,0.000026,0.000265,0.000000,0.000000,0.000248,0.072726,-0.000338,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000030,0.000026,0.000266,0.000087,0.000000,0.000244,0.072393,-0.000334,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000029,0.000025,0.000267,0.000324,0.000000,0.000240,0.072064,-0.000329,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000029,0.000025,0.000267,0.000495,0.000000,0.000237,0.071739,-0.000325,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000028,0.000025,0.000268,0.000593,0.000000,0.000233,0.071418,-0.000320,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000028,0.000024,0.000269,0.000670,0.000000,0.000230,0.071102,-0.000316,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000027,0.000024,0.000270,0.000605,0.000000,0.000227,0.070791,-0.000312,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000027,0.000024,0.000271,0.000553,0.000000,0.000223,0.070483,-0.000308,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000027,0.000023,0.000271,0.000517,0.000000,0.000220,0.070180,-0.000303,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000026,0.000023,0.000272,0.000435,0.000000,0.000217,0.069880,-0.000299,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000026,0.000023,0.000273,0.000305,0.000000,0.000214,0.069585,-0.000295,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000026,0.000023,0.000274,0.000166,0.000000,0.000211,0.069294,-0.000291,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000025,0.000022,0.000275,0.000017,0.000000,0.000208,0.069007,-0.000287,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000025,0.000022,0.000276,0.000000,0.000000,0.000205,0.068723,-0.000283,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000024,0.000022,0.000276,0.000000,0.000000,0.000202,0.068443,-0.000280,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000024,0.000021,0.000277,0.000000,0.000000,0.000199,0.068168,-0.000276,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000024,0.000021,0.000278,0.000000,0.000000,0.000197,0.067895,-0.000272,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000255,0.000023,0.000021,0.000279,0.000000,0.000000,0.000194,0.067630,-0.000265,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000256,0.000023,0.000020,0.000280,0.000000,0.000000,0.000191,0.067368,-0.000262,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000258,0.000023,0.000020,0.000280,0.000000,0.000000,0.000189,0.067111,-0.000258,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000259,0.000023,0.000020,0.000281,0.000000,0.000000,0.000186,0.066855,-0.000256,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000260,0.000022,0.000020,0.000282,0.000000,0.000000,0.000183,0.066601,-0.000253,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000022,0.000019,0.000283,0.000000,0.000000,0.000181,0.066350,-0.000251,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000022,0.000019,0.000284,0.000000,0.000000,0.000179,0.066103,-0.000248,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000021,0.000019,0.000285,0.000000,0.000000,0.000176,0.065858,-0.000244,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000021,0.000019,0.000285,0.000096,0.000000,0.000174,0.065617,-0.000241,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620816.csv b/test/channel_loss/channel_forcing/et/cat-2620816.csv new file mode 100644 index 000000000..8f31795eb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620816.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000008,0.000000,0.000000,0.000000,0.000000,0.001604,0.001309,0.001604,0.000157,0.000157,0.011301,0.420463,-0.005767,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001559,0.001286,0.001559,0.000039,0.000039,0.011029,0.414905,-0.005558,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001517,0.001264,0.001517,0.000000,0.000000,0.010775,0.409482,-0.005423,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001479,0.001242,0.001479,0.000000,0.000000,0.010538,0.404153,-0.005329,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001443,0.001220,0.001443,0.000000,0.000000,0.010315,0.398917,-0.005236,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001409,0.001199,0.001409,0.000000,0.000000,0.010105,0.393772,-0.005145,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001377,0.001178,0.001377,0.000000,0.000000,0.009906,0.388717,-0.005055,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001347,0.001157,0.001348,0.000000,0.000000,0.009717,0.383750,-0.004967,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001318,0.001137,0.001319,0.000000,0.000000,0.009536,0.378869,-0.004881,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001291,0.001117,0.001292,0.000000,0.000000,0.009362,0.374073,-0.004796,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001265,0.001098,0.001266,0.000000,0.000000,0.009195,0.369360,-0.004712,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001240,0.001079,0.001242,0.000000,0.000000,0.009035,0.364730,-0.004630,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001216,0.001060,0.001218,0.000000,0.000000,0.008879,0.360180,-0.004550,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001192,0.001042,0.001195,0.000000,0.000000,0.008728,0.355709,-0.004471,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001170,0.001023,0.001173,0.000121,0.000121,0.008582,0.351198,-0.004512,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.001148,0.001004,0.001151,0.000347,0.000347,0.008438,0.346543,-0.004655,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.001126,0.000984,0.001130,0.000508,0.000508,0.008296,0.341810,-0.004732,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.001105,0.000965,0.001110,0.000620,0.000620,0.008156,0.337049,-0.004761,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.001084,0.000946,0.001089,0.000565,0.000565,0.008017,0.332427,-0.004623,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000111,0.000000,0.000000,0.000000,0.000006,0.001063,0.000927,0.001069,0.000508,0.000508,0.007881,0.328049,-0.004378,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000104,0.000000,0.000000,0.000000,0.000006,0.001043,0.000910,0.001050,0.000460,0.000460,0.007748,0.323787,-0.004262,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000840,0.000006,0.000012,0.000006,0.000007,0.001024,0.000896,0.001038,0.000353,0.000353,0.007620,0.320416,-0.003371,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000143,0.000003,0.000000,0.000003,0.000008,0.001005,0.000880,0.001016,0.000313,0.000313,0.007494,0.316471,-0.003946,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000357,0.000003,0.000001,0.000003,0.000008,0.000987,0.000865,0.000998,0.000224,0.000224,0.007372,0.312891,-0.003580,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000178,0.000000,0.000000,0.000000,0.000009,0.000970,0.000850,0.000979,0.000151,0.000151,0.007252,0.309270,-0.003621,1.000000,0.000000 +25,2022-08-02 01:00:00,0.001175,0.000032,0.000058,0.000032,0.000010,0.000953,0.000839,0.000995,0.000062,0.000062,0.007139,0.306721,-0.002548,1.000000,0.000026 +26,2022-08-02 02:00:00,0.001650,0.000083,0.000124,0.000083,0.000010,0.000937,0.000831,0.001030,0.000000,0.000000,0.007032,0.304680,-0.002041,1.000000,0.000067 +27,2022-08-02 03:00:00,0.001472,0.000097,0.000099,0.000097,0.000011,0.000923,0.000822,0.001031,0.000000,0.000000,0.006932,0.302524,-0.002156,1.000000,0.000069 +28,2022-08-02 04:00:00,0.001834,0.000132,0.000151,0.000132,0.000012,0.000909,0.000815,0.001053,0.000000,0.000000,0.006838,0.300711,-0.001813,1.000000,0.000088 +29,2022-08-02 05:00:00,0.000735,0.000071,0.000025,0.000071,0.000013,0.000895,0.000803,0.000980,0.000000,0.000000,0.006746,0.297973,-0.002738,1.000000,0.000042 +30,2022-08-02 06:00:00,0.000302,0.000039,0.000004,0.000039,0.000014,0.000882,0.000791,0.000935,0.000000,0.000000,0.006654,0.294877,-0.003095,1.000000,0.000007 +31,2022-08-02 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000014,0.000869,0.000777,0.000889,0.000000,0.000000,0.006562,0.291543,-0.003334,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000015,0.000855,0.000763,0.000872,0.000000,0.000000,0.006470,0.288267,-0.003276,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000842,0.000750,0.000858,0.000000,0.000000,0.006378,0.285047,-0.003219,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000829,0.000737,0.000846,0.000000,0.000000,0.006286,0.281884,-0.003163,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000816,0.000724,0.000834,0.000000,0.000000,0.006195,0.278776,-0.003108,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000803,0.000712,0.000822,0.000000,0.000000,0.006104,0.275722,-0.003054,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000038,0.000000,0.000000,0.000000,0.000020,0.000790,0.000699,0.000810,0.000000,0.000000,0.006013,0.272759,-0.002963,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000060,0.000000,0.000000,0.000000,0.000021,0.000777,0.000687,0.000798,0.000114,0.000114,0.005923,0.269756,-0.003002,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000051,0.000000,0.000000,0.000000,0.000022,0.000764,0.000674,0.000786,0.000306,0.000306,0.005833,0.266609,-0.003148,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000035,0.000000,0.000000,0.000000,0.000023,0.000751,0.000661,0.000774,0.000435,0.000435,0.005742,0.263373,-0.003236,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000035,0.000000,0.000000,0.000000,0.000024,0.000738,0.000647,0.000762,0.000535,0.000535,0.005651,0.260096,-0.003278,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000892,0.000002,0.000004,0.000002,0.000025,0.000726,0.000637,0.000752,0.000606,0.000606,0.005562,0.257643,-0.002452,1.000000,0.000002 +43,2022-08-02 19:00:00,0.000168,0.000001,0.000000,0.000001,0.000026,0.000713,0.000624,0.000740,0.000542,0.000542,0.005473,0.254590,-0.003054,1.000000,0.000001 +44,2022-08-02 20:00:00,0.000000,0.000001,0.000000,0.000001,0.000027,0.000701,0.000611,0.000728,0.000510,0.000510,0.005384,0.251455,-0.003135,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000688,0.000599,0.000716,0.000493,0.000493,0.005294,0.248392,-0.003063,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000676,0.000587,0.000705,0.000429,0.000429,0.005205,0.245445,-0.002947,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000664,0.000575,0.000693,0.000306,0.000306,0.005117,0.242671,-0.002774,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000651,0.000565,0.000682,0.000165,0.000165,0.005030,0.240083,-0.002588,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000640,0.000555,0.000672,0.000022,0.000022,0.004945,0.237681,-0.002403,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000628,0.000545,0.000661,0.000000,0.000000,0.004861,0.235342,-0.002339,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000617,0.000535,0.000651,0.000000,0.000000,0.004780,0.233043,-0.002298,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000606,0.000526,0.000641,0.000000,0.000000,0.004700,0.230785,-0.002258,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000595,0.000517,0.000632,0.000000,0.000000,0.004622,0.228566,-0.002219,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000585,0.000508,0.000622,0.000000,0.000000,0.004545,0.226386,-0.002180,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000574,0.000499,0.000613,0.000000,0.000000,0.004470,0.224244,-0.002142,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000564,0.000490,0.000604,0.000000,0.000000,0.004396,0.222139,-0.002105,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000554,0.000482,0.000595,0.000000,0.000000,0.004324,0.220070,-0.002068,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000545,0.000474,0.000587,0.000000,0.000000,0.004252,0.218038,-0.002032,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000535,0.000465,0.000579,0.000000,0.000000,0.004182,0.216041,-0.001997,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000526,0.000457,0.000570,0.000000,0.000000,0.004114,0.214078,-0.001962,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000517,0.000449,0.000562,0.000000,0.000000,0.004046,0.212150,-0.001928,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000508,0.000441,0.000555,0.000119,0.000119,0.003979,0.210139,-0.002011,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000499,0.000432,0.000547,0.000359,0.000359,0.003912,0.207926,-0.002212,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000490,0.000422,0.000539,0.000521,0.000521,0.003845,0.205593,-0.002333,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000481,0.000412,0.000531,0.000628,0.000628,0.003776,0.203195,-0.002398,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000471,0.000403,0.000523,0.000612,0.000612,0.003708,0.200854,-0.002340,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000462,0.000393,0.000515,0.000544,0.000544,0.003639,0.198622,-0.002233,1.000000,0.000000 +68,2022-08-03 20:00:00,0.006448,0.000643,0.001169,0.000643,0.000054,0.000456,0.000406,0.001152,0.000494,0.000494,0.003589,0.201664,0.003042,1.000000,0.000526 +69,2022-08-03 21:00:00,0.001013,0.000299,0.000013,0.000299,0.000055,0.000449,0.000401,0.000804,0.000454,0.000454,0.003541,0.200489,-0.001175,1.000000,0.000239 +70,2022-08-03 22:00:00,0.000000,0.000237,0.000000,0.000237,0.000057,0.000443,0.000393,0.000736,0.000385,0.000385,0.003491,0.198419,-0.002070,1.000000,0.000003 +71,2022-08-03 23:00:00,0.000190,0.000003,0.000000,0.000003,0.000058,0.000436,0.000385,0.000496,0.000284,0.000284,0.003441,0.196670,-0.001749,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000429,0.000378,0.000488,0.000175,0.000175,0.003390,0.194873,-0.001797,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000422,0.000371,0.000483,0.000033,0.000033,0.003339,0.193246,-0.001626,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000416,0.000365,0.000477,0.000000,0.000000,0.003288,0.191681,-0.001566,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000409,0.000358,0.000472,0.000000,0.000000,0.003237,0.190142,-0.001538,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000402,0.000352,0.000466,0.000000,0.000000,0.003187,0.188631,-0.001512,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000396,0.000346,0.000461,0.000000,0.000000,0.003138,0.187145,-0.001485,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000389,0.000340,0.000456,0.000000,0.000000,0.003088,0.185686,-0.001459,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000383,0.000334,0.000451,0.000000,0.000000,0.003040,0.184252,-0.001434,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000377,0.000328,0.000446,0.000000,0.000000,0.002991,0.182843,-0.001409,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000370,0.000323,0.000441,0.000000,0.000000,0.002944,0.181458,-0.001385,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000364,0.000317,0.000436,0.000000,0.000000,0.002897,0.180098,-0.001361,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000358,0.000311,0.000431,0.000000,0.000000,0.002850,0.178761,-0.001337,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000352,0.000306,0.000426,0.000000,0.000000,0.002804,0.177447,-0.001314,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000346,0.000301,0.000421,0.000000,0.000000,0.002759,0.176156,-0.001291,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000340,0.000295,0.000417,0.000115,0.000115,0.002713,0.174775,-0.001382,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000334,0.000288,0.000412,0.000355,0.000355,0.002668,0.173182,-0.001593,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000328,0.000281,0.000407,0.000520,0.000520,0.002621,0.171455,-0.001727,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000322,0.000274,0.000402,0.000635,0.000635,0.002573,0.169645,-0.001810,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000316,0.000266,0.000397,0.000684,0.000684,0.002523,0.167817,-0.001827,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000309,0.000259,0.000392,0.000606,0.000606,0.002473,0.166099,-0.001718,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000303,0.000252,0.000387,0.000568,0.000568,0.002423,0.164447,-0.001652,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000296,0.000246,0.000382,0.000526,0.000526,0.002373,0.162866,-0.001581,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000290,0.000240,0.000376,0.000442,0.000442,0.002323,0.161395,-0.001471,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000283,0.000234,0.000371,0.000322,0.000322,0.002274,0.160067,-0.001328,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000277,0.000230,0.000366,0.000178,0.000178,0.002226,0.158904,-0.001163,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000271,0.000225,0.000362,0.000033,0.000033,0.002180,0.157903,-0.001001,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000266,0.000221,0.000357,0.000000,0.000000,0.002136,0.156952,-0.000951,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000260,0.000218,0.000353,0.000000,0.000000,0.002093,0.156018,-0.000934,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000255,0.000214,0.000349,0.000000,0.000000,0.002052,0.155100,-0.000918,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000250,0.000210,0.000345,0.000000,0.000000,0.002012,0.154199,-0.000902,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000245,0.000206,0.000342,0.000000,0.000000,0.001974,0.153313,-0.000886,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000240,0.000203,0.000338,0.000000,0.000000,0.001937,0.152442,-0.000871,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000236,0.000199,0.000335,0.000000,0.000000,0.001900,0.151586,-0.000856,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000231,0.000196,0.000332,0.000000,0.000000,0.001865,0.150746,-0.000841,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000227,0.000192,0.000328,0.000000,0.000000,0.001831,0.149920,-0.000826,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000223,0.000189,0.000325,0.000000,0.000000,0.001797,0.149108,-0.000812,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000218,0.000186,0.000323,0.000000,0.000000,0.001765,0.148310,-0.000798,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000214,0.000183,0.000320,0.000000,0.000000,0.001733,0.147527,-0.000784,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000210,0.000179,0.000317,0.000127,0.000127,0.001701,0.146632,-0.000895,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000206,0.000174,0.000314,0.000370,0.000370,0.001669,0.145514,-0.001118,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000202,0.000169,0.000311,0.000533,0.000533,0.001636,0.144255,-0.001259,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000198,0.000164,0.000308,0.000647,0.000647,0.001602,0.142907,-0.001349,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000193,0.000158,0.000305,0.000640,0.000640,0.001567,0.141588,-0.001319,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000008,0.000000,0.000000,0.000000,0.000113,0.000189,0.000153,0.000302,0.000591,0.000591,0.001531,0.140348,-0.001240,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000008,0.000000,0.000000,0.000000,0.000114,0.000184,0.000148,0.000298,0.000539,0.000539,0.001495,0.139180,-0.001168,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000008,0.000000,0.000000,0.000000,0.000115,0.000180,0.000144,0.000295,0.000466,0.000466,0.001459,0.138105,-0.001075,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000027,0.000000,0.000000,0.000000,0.000116,0.000175,0.000140,0.000292,0.000408,0.000408,0.001423,0.137125,-0.000980,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000271,0.000000,0.000000,0.000000,0.000117,0.000171,0.000137,0.000289,0.000296,0.000296,0.001389,0.136512,-0.000614,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000007,0.000000,0.000000,0.000000,0.000119,0.000167,0.000134,0.000286,0.000173,0.000173,0.001356,0.135770,-0.000741,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000867,0.000013,0.000024,0.000013,0.000120,0.000163,0.000135,0.000296,0.000053,0.000053,0.001328,0.135981,0.000211,1.000000,0.000011 +122,2022-08-06 02:00:00,0.002209,0.000099,0.000169,0.000099,0.000121,0.000161,0.000141,0.000381,0.000000,0.000000,0.001308,0.137417,0.001436,1.000000,0.000081 +123,2022-08-06 03:00:00,0.000534,0.000053,0.000011,0.000053,0.000122,0.000159,0.000141,0.000334,0.000000,0.000000,0.001290,0.137338,-0.000079,1.000000,0.000038 +124,2022-08-06 04:00:00,0.000076,0.000036,0.000000,0.000036,0.000123,0.000156,0.000138,0.000316,0.000000,0.000000,0.001272,0.136819,-0.000518,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000090,0.000002,0.000000,0.000002,0.000125,0.000154,0.000136,0.000281,0.000000,0.000000,0.001254,0.136324,-0.000496,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000309,0.000002,0.000004,0.000002,0.000126,0.000152,0.000135,0.000280,0.000000,0.000000,0.001237,0.136049,-0.000275,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000127,0.000150,0.000133,0.000278,0.000000,0.000000,0.001220,0.135478,-0.000570,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000128,0.000148,0.000131,0.000277,0.000000,0.000000,0.001203,0.134918,-0.000560,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000146,0.000128,0.000275,0.000000,0.000000,0.001186,0.134367,-0.000551,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000143,0.000126,0.000274,0.000000,0.000000,0.001168,0.133826,-0.000541,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000141,0.000124,0.000273,0.000000,0.000000,0.001151,0.133295,-0.000532,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000139,0.000122,0.000272,0.000000,0.000000,0.001134,0.132772,-0.000522,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000137,0.000120,0.000271,0.000000,0.000000,0.001116,0.132259,-0.000513,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000135,0.000117,0.000270,0.000105,0.000105,0.001099,0.131652,-0.000607,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000132,0.000114,0.000269,0.000328,0.000328,0.001080,0.130836,-0.000816,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000130,0.000110,0.000267,0.000472,0.000472,0.001060,0.129893,-0.000943,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000127,0.000105,0.000266,0.000599,0.000599,0.001038,0.128841,-0.001052,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000124,0.000101,0.000264,0.000678,0.000678,0.001015,0.127730,-0.001111,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000121,0.000097,0.000262,0.000622,0.000622,0.000990,0.126694,-0.001036,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000118,0.000093,0.000260,0.000575,0.000575,0.000965,0.125722,-0.000972,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000115,0.000089,0.000258,0.000525,0.000525,0.000939,0.124816,-0.000906,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000112,0.000086,0.000256,0.000437,0.000437,0.000913,0.124012,-0.000804,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000108,0.000083,0.000253,0.000320,0.000320,0.000887,0.123337,-0.000675,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000105,0.000081,0.000251,0.000179,0.000179,0.000862,0.122812,-0.000525,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000102,0.000079,0.000250,0.000031,0.000031,0.000839,0.122441,-0.000371,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000100,0.000078,0.000248,0.000000,0.000000,0.000817,0.122108,-0.000333,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000097,0.000076,0.000246,0.000000,0.000000,0.000796,0.121780,-0.000328,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000095,0.000075,0.000245,0.000000,0.000000,0.000776,0.121458,-0.000322,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000092,0.000074,0.000244,0.000000,0.000000,0.000757,0.121142,-0.000316,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000090,0.000072,0.000243,0.000000,0.000000,0.000739,0.120831,-0.000311,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000088,0.000071,0.000242,0.000000,0.000000,0.000723,0.120525,-0.000305,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000086,0.000070,0.000241,0.000000,0.000000,0.000706,0.120225,-0.000300,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000084,0.000069,0.000240,0.000000,0.000000,0.000691,0.119930,-0.000295,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000082,0.000068,0.000239,0.000000,0.000000,0.000676,0.119640,-0.000290,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000081,0.000066,0.000238,0.000000,0.000000,0.000662,0.119356,-0.000285,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000079,0.000065,0.000238,0.000000,0.000000,0.000648,0.119076,-0.000280,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000077,0.000064,0.000237,0.000000,0.000000,0.000635,0.118801,-0.000275,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000076,0.000063,0.000236,0.000106,0.000106,0.000621,0.118427,-0.000374,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000074,0.000060,0.000236,0.000346,0.000346,0.000607,0.117824,-0.000603,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000072,0.000057,0.000235,0.000503,0.000503,0.000592,0.117076,-0.000747,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000070,0.000053,0.000234,0.000606,0.000606,0.000576,0.116241,-0.000835,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000068,0.000050,0.000233,0.000667,0.000667,0.000558,0.115360,-0.000881,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000066,0.000046,0.000231,0.000616,0.000616,0.000538,0.114544,-0.000816,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000063,0.000043,0.000230,0.000560,0.000560,0.000519,0.113798,-0.000746,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000061,0.000041,0.000228,0.000511,0.000511,0.000499,0.113112,-0.000685,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000058,0.000038,0.000227,0.000425,0.000425,0.000479,0.112524,-0.000588,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000056,0.000036,0.000225,0.000310,0.000310,0.000459,0.112058,-0.000466,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000035,0.000224,0.000143,0.000143,0.000441,0.111765,-0.000293,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000051,0.000034,0.000223,0.000009,0.000009,0.000423,0.111608,-0.000157,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000050,0.000034,0.000222,0.000000,0.000000,0.000408,0.111464,-0.000145,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000033,0.000221,0.000000,0.000000,0.000393,0.111321,-0.000142,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000033,0.000220,0.000000,0.000000,0.000380,0.111181,-0.000140,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000032,0.000220,0.000000,0.000000,0.000367,0.111044,-0.000138,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000031,0.000219,0.000000,0.000000,0.000355,0.110908,-0.000135,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000031,0.000219,0.000000,0.000000,0.000345,0.110776,-0.000133,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000030,0.000218,0.000000,0.000000,0.000334,0.110645,-0.000130,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000179,0.000039,0.000030,0.000218,0.000000,0.000000,0.000325,0.110518,-0.000127,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000180,0.000038,0.000029,0.000218,0.000000,0.000000,0.000316,0.110394,-0.000124,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000181,0.000037,0.000029,0.000218,0.000000,0.000000,0.000307,0.110272,-0.000122,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000181,0.000036,0.000028,0.000218,0.000000,0.000000,0.000299,0.110151,-0.000120,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000028,0.000218,0.000000,0.000000,0.000292,0.110032,-0.000120,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000034,0.000027,0.000218,0.000089,0.000089,0.000284,0.109827,-0.000205,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000025,0.000217,0.000327,0.000327,0.000276,0.109392,-0.000435,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000023,0.000217,0.000494,0.000494,0.000267,0.108800,-0.000592,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000031,0.000020,0.000217,0.000591,0.000591,0.000256,0.108124,-0.000676,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000029,0.000017,0.000216,0.000665,0.000665,0.000243,0.107386,-0.000738,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000014,0.000215,0.000611,0.000611,0.000229,0.106714,-0.000672,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000026,0.000012,0.000214,0.000554,0.000554,0.000215,0.106110,-0.000604,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000024,0.000009,0.000213,0.000515,0.000515,0.000200,0.105555,-0.000555,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000022,0.000007,0.000212,0.000435,0.000435,0.000185,0.105089,-0.000467,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000021,0.000006,0.000211,0.000310,0.000310,0.000171,0.104752,-0.000336,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000019,0.000005,0.000210,0.000172,0.000172,0.000157,0.104558,-0.000194,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000017,0.000005,0.000210,0.000022,0.000022,0.000145,0.104514,-0.000044,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000016,0.000005,0.000209,0.000000,0.000000,0.000133,0.104492,-0.000021,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000015,0.000005,0.000209,0.000000,0.000000,0.000123,0.104471,-0.000021,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000014,0.000005,0.000208,0.000000,0.000000,0.000114,0.104450,-0.000021,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000013,0.000005,0.000208,0.000000,0.000000,0.000106,0.104430,-0.000020,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000012,0.000005,0.000208,0.000000,0.000000,0.000099,0.104410,-0.000020,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000011,0.000005,0.000208,0.000000,0.000000,0.000092,0.104390,-0.000020,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000010,0.000005,0.000208,0.000000,0.000000,0.000086,0.104371,-0.000019,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000010,0.000004,0.000208,0.000000,0.000000,0.000081,0.104352,-0.000019,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000009,0.000004,0.000208,0.000000,0.000000,0.000076,0.104333,-0.000019,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000009,0.000004,0.000209,0.000000,0.000000,0.000072,0.104315,-0.000018,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000008,0.000004,0.000209,0.000000,0.000000,0.000068,0.104297,-0.000018,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000008,0.000004,0.000209,0.000000,0.000000,0.000064,0.104279,-0.000018,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000007,0.000004,0.000209,0.000098,0.000098,0.000061,0.104166,-0.000113,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620817.csv b/test/channel_loss/channel_forcing/et/cat-2620817.csv new file mode 100644 index 000000000..665caf7ac --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620817.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001504,0.000600,0.001504,0.000153,0.000153,0.010686,0.422013,-0.005391,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001377,0.000591,0.001377,0.000034,0.000034,0.009901,0.416815,-0.005198,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001269,0.000583,0.001269,0.000000,0.000000,0.009215,0.411725,-0.005090,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001176,0.000575,0.001176,0.000000,0.000000,0.008614,0.406707,-0.005018,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001095,0.000567,0.001095,0.000000,0.000000,0.008086,0.401760,-0.004947,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001025,0.000559,0.001025,0.000000,0.000000,0.007619,0.396883,-0.004877,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000964,0.000551,0.000964,0.000000,0.000000,0.007207,0.392075,-0.004808,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000910,0.000543,0.000911,0.000000,0.000000,0.006840,0.387335,-0.004740,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000862,0.000535,0.000863,0.000000,0.000000,0.006513,0.382662,-0.004673,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000820,0.000528,0.000821,0.000000,0.000000,0.006220,0.378055,-0.004607,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000782,0.000520,0.000784,0.000000,0.000000,0.005958,0.373514,-0.004541,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000749,0.000513,0.000751,0.000000,0.000000,0.005722,0.369037,-0.004477,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000719,0.000505,0.000721,0.000000,0.000000,0.005508,0.364623,-0.004414,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000692,0.000498,0.000695,0.000000,0.000000,0.005315,0.360272,-0.004351,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000667,0.000491,0.000671,0.000119,0.000119,0.005139,0.355865,-0.004407,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000645,0.000484,0.000649,0.000350,0.000350,0.004978,0.351292,-0.004572,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000624,0.000476,0.000629,0.000514,0.000514,0.004830,0.346624,-0.004669,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000605,0.000468,0.000610,0.000624,0.000624,0.004692,0.341912,-0.004712,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000588,0.000461,0.000594,0.000565,0.000565,0.004565,0.337326,-0.004586,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000254,0.000000,0.000000,0.000000,0.000006,0.000572,0.000454,0.000578,0.000504,0.000504,0.004447,0.333115,-0.004211,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000247,0.000000,0.000000,0.000000,0.000007,0.000557,0.000447,0.000564,0.000461,0.000461,0.004337,0.328999,-0.004116,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000798,0.000012,0.000022,0.000012,0.000008,0.000543,0.000441,0.000563,0.000353,0.000353,0.004236,0.325568,-0.003430,1.000000,0.000010 +22,2022-08-01 22:00:00,0.000246,0.000005,0.000000,0.000005,0.000008,0.000530,0.000435,0.000544,0.000313,0.000313,0.004141,0.321704,-0.003864,1.000000,0.000004 +23,2022-08-01 23:00:00,0.000447,0.000007,0.000005,0.000007,0.000009,0.000518,0.000429,0.000534,0.000230,0.000230,0.004052,0.318170,-0.003534,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000421,0.000006,0.000008,0.000006,0.000010,0.000507,0.000423,0.000522,0.000152,0.000152,0.003968,0.314734,-0.003436,1.000000,0.000005 +25,2022-08-02 01:00:00,0.001512,0.000116,0.000205,0.000116,0.000011,0.000496,0.000419,0.000623,0.000062,0.000062,0.003891,0.312317,-0.002417,1.000000,0.000094 +26,2022-08-02 02:00:00,0.002262,0.000307,0.000461,0.000307,0.000012,0.000487,0.000416,0.000805,0.000000,0.000000,0.003821,0.310482,-0.001835,1.000000,0.000249 +27,2022-08-02 03:00:00,0.002153,0.000388,0.000421,0.000388,0.000012,0.000478,0.000413,0.000878,0.000000,0.000000,0.003756,0.308605,-0.001877,1.000000,0.000282 +28,2022-08-02 04:00:00,0.002201,0.000438,0.000437,0.000438,0.000013,0.000470,0.000410,0.000921,0.000000,0.000000,0.003696,0.306786,-0.001818,1.000000,0.000281 +29,2022-08-02 05:00:00,0.001176,0.000269,0.000137,0.000269,0.000014,0.000463,0.000406,0.000745,0.000000,0.000000,0.003640,0.304279,-0.002508,1.000000,0.000149 +30,2022-08-02 06:00:00,0.000832,0.000160,0.000071,0.000160,0.000015,0.000455,0.000402,0.000631,0.000000,0.000000,0.003586,0.301533,-0.002746,1.000000,0.000059 +31,2022-08-02 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000016,0.000448,0.000396,0.000509,0.000000,0.000000,0.003534,0.298075,-0.003458,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000017,0.000442,0.000390,0.000473,0.000000,0.000000,0.003482,0.294667,-0.003409,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000435,0.000385,0.000453,0.000000,0.000000,0.003432,0.291306,-0.003360,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000428,0.000379,0.000447,0.000000,0.000000,0.003383,0.287993,-0.003313,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000422,0.000374,0.000442,0.000000,0.000000,0.003335,0.284728,-0.003266,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000416,0.000369,0.000437,0.000000,0.000000,0.003288,0.281508,-0.003220,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000098,0.000001,0.000001,0.000001,0.000022,0.000410,0.000364,0.000432,0.000000,0.000000,0.003242,0.278430,-0.003078,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000108,0.000000,0.000000,0.000000,0.000023,0.000404,0.000358,0.000427,0.000115,0.000115,0.003197,0.275293,-0.003137,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000108,0.000000,0.000000,0.000000,0.000024,0.000398,0.000353,0.000422,0.000310,0.000310,0.003152,0.272008,-0.003285,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000106,0.000000,0.000000,0.000000,0.000025,0.000392,0.000348,0.000417,0.000452,0.000452,0.003107,0.268628,-0.003380,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000106,0.000000,0.000000,0.000000,0.000026,0.000386,0.000342,0.000413,0.000550,0.000550,0.003063,0.265198,-0.003430,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000998,0.000008,0.000015,0.000008,0.000028,0.000381,0.000338,0.000416,0.000614,0.000614,0.003020,0.262619,-0.002579,1.000000,0.000007 +43,2022-08-02 19:00:00,0.000141,0.000004,0.000000,0.000004,0.000029,0.000375,0.000332,0.000407,0.000539,0.000539,0.002977,0.259320,-0.003299,1.000000,0.000003 +44,2022-08-02 20:00:00,0.000000,0.000003,0.000000,0.000003,0.000030,0.000369,0.000327,0.000402,0.000497,0.000497,0.002935,0.255970,-0.003350,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000364,0.000321,0.000395,0.000487,0.000487,0.002892,0.252677,-0.003293,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000358,0.000316,0.000391,0.000423,0.000423,0.002850,0.249494,-0.003183,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000353,0.000311,0.000386,0.000298,0.000298,0.002808,0.246480,-0.003014,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000347,0.000306,0.000382,0.000159,0.000159,0.002767,0.243644,-0.002835,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000342,0.000302,0.000378,0.000018,0.000018,0.002727,0.240989,-0.002656,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000337,0.000298,0.000374,0.000000,0.000000,0.002688,0.238389,-0.002600,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000332,0.000294,0.000371,0.000000,0.000000,0.002649,0.235825,-0.002563,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000327,0.000289,0.000367,0.000000,0.000000,0.002611,0.233298,-0.002527,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000322,0.000285,0.000364,0.000000,0.000000,0.002574,0.230807,-0.002491,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000318,0.000281,0.000360,0.000000,0.000000,0.002538,0.228351,-0.002456,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000313,0.000277,0.000357,0.000000,0.000000,0.002502,0.225930,-0.002421,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000308,0.000273,0.000354,0.000000,0.000000,0.002467,0.223543,-0.002387,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000304,0.000269,0.000351,0.000000,0.000000,0.002433,0.221190,-0.002353,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000300,0.000266,0.000348,0.000000,0.000000,0.002399,0.218870,-0.002320,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000295,0.000262,0.000345,0.000000,0.000000,0.002365,0.216583,-0.002287,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000291,0.000258,0.000342,0.000000,0.000000,0.002332,0.214329,-0.002255,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000287,0.000255,0.000339,0.000000,0.000000,0.002300,0.212106,-0.002223,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000283,0.000251,0.000336,0.000117,0.000117,0.002268,0.209800,-0.002307,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000279,0.000247,0.000334,0.000361,0.000361,0.002236,0.207286,-0.002514,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000275,0.000242,0.000331,0.000521,0.000521,0.002204,0.204649,-0.002637,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000270,0.000238,0.000328,0.000623,0.000623,0.002171,0.201950,-0.002699,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000266,0.000233,0.000325,0.000612,0.000612,0.002138,0.199299,-0.002651,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000262,0.000229,0.000323,0.000536,0.000536,0.002106,0.196761,-0.002539,1.000000,0.000000 +68,2022-08-03 20:00:00,0.005041,0.000747,0.001359,0.000747,0.000062,0.000258,0.000231,0.001068,0.000487,0.000487,0.002078,0.197938,0.001177,1.000000,0.000611 +69,2022-08-03 21:00:00,0.000573,0.000340,0.000001,0.000340,0.000064,0.000255,0.000228,0.000659,0.000448,0.000448,0.002051,0.196069,-0.001868,1.000000,0.000272 +70,2022-08-03 22:00:00,0.000000,0.000272,0.000000,0.000272,0.000065,0.000252,0.000224,0.000589,0.000381,0.000381,0.002024,0.193730,-0.002339,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000067,0.000248,0.000221,0.000315,0.000282,0.000282,0.001997,0.191594,-0.002136,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000245,0.000217,0.000313,0.000172,0.000172,0.001970,0.189523,-0.002071,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000241,0.000214,0.000311,0.000028,0.000028,0.001943,0.187624,-0.001899,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000238,0.000211,0.000309,0.000000,0.000000,0.001916,0.185780,-0.001844,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000234,0.000208,0.000307,0.000000,0.000000,0.001890,0.183961,-0.001818,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000231,0.000205,0.000305,0.000000,0.000000,0.001864,0.182169,-0.001793,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000228,0.000202,0.000303,0.000000,0.000000,0.001839,0.180402,-0.001767,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000225,0.000200,0.000302,0.000000,0.000000,0.001813,0.178660,-0.001742,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000222,0.000197,0.000300,0.000000,0.000000,0.001789,0.176942,-0.001717,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000218,0.000194,0.000298,0.000000,0.000000,0.001764,0.175249,-0.001693,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000215,0.000191,0.000297,0.000000,0.000000,0.001740,0.173580,-0.001669,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000212,0.000188,0.000295,0.000000,0.000000,0.001716,0.171934,-0.001645,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000209,0.000186,0.000294,0.000000,0.000000,0.001692,0.170312,-0.001622,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000206,0.000183,0.000293,0.000000,0.000000,0.001669,0.168713,-0.001599,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000204,0.000181,0.000291,0.000000,0.000000,0.001646,0.167136,-0.001577,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000201,0.000178,0.000290,0.000113,0.000113,0.001623,0.165471,-0.001666,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000091,0.000198,0.000175,0.000288,0.000353,0.000353,0.001600,0.163593,-0.001877,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000195,0.000171,0.000287,0.000521,0.000521,0.001577,0.161576,-0.002018,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000192,0.000168,0.000286,0.000634,0.000634,0.001553,0.159475,-0.002100,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000189,0.000164,0.000284,0.000674,0.000674,0.001529,0.157365,-0.002110,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000186,0.000161,0.000283,0.000597,0.000597,0.001504,0.155361,-0.002004,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000183,0.000158,0.000281,0.000564,0.000564,0.001480,0.153418,-0.001943,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000179,0.000155,0.000279,0.000522,0.000522,0.001455,0.151544,-0.001874,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000176,0.000152,0.000278,0.000438,0.000438,0.001431,0.149779,-0.001765,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000173,0.000149,0.000276,0.000310,0.000310,0.001407,0.148164,-0.001614,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000170,0.000147,0.000275,0.000174,0.000174,0.001383,0.146707,-0.001457,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000168,0.000145,0.000274,0.000029,0.000029,0.001361,0.145414,-0.001293,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000165,0.000143,0.000273,0.000000,0.000000,0.001339,0.144168,-0.001247,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000162,0.000141,0.000271,0.000000,0.000000,0.001317,0.142939,-0.001229,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000160,0.000139,0.000270,0.000000,0.000000,0.001296,0.141727,-0.001212,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000157,0.000137,0.000269,0.000000,0.000000,0.001276,0.140533,-0.001194,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000155,0.000135,0.000268,0.000000,0.000000,0.001257,0.139355,-0.001177,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000152,0.000133,0.000268,0.000000,0.000000,0.001237,0.138195,-0.001161,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000150,0.000131,0.000267,0.000000,0.000000,0.001219,0.137050,-0.001144,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000147,0.000129,0.000266,0.000000,0.000000,0.001200,0.135922,-0.001128,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000145,0.000127,0.000265,0.000000,0.000000,0.001182,0.134810,-0.001112,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000143,0.000126,0.000265,0.000000,0.000000,0.001165,0.133714,-0.001096,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000141,0.000124,0.000264,0.000000,0.000000,0.001148,0.132633,-0.001081,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000139,0.000122,0.000264,0.000000,0.000000,0.001131,0.131567,-0.001066,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000137,0.000120,0.000263,0.000127,0.000127,0.001114,0.130392,-0.001176,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000135,0.000118,0.000263,0.000368,0.000368,0.001097,0.128995,-0.001397,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000133,0.000115,0.000262,0.000531,0.000531,0.001080,0.127457,-0.001538,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000130,0.000113,0.000261,0.000636,0.000636,0.001063,0.125838,-0.001619,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000128,0.000110,0.000261,0.000648,0.000648,0.001044,0.124230,-0.001609,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000017,0.000000,0.000000,0.000000,0.000134,0.000126,0.000107,0.000260,0.000598,0.000598,0.001026,0.122710,-0.001520,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000136,0.000123,0.000105,0.000259,0.000539,0.000539,0.001008,0.121270,-0.001440,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000017,0.000000,0.000000,0.000000,0.000137,0.000121,0.000103,0.000258,0.000463,0.000463,0.000989,0.119925,-0.001345,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000065,0.000000,0.000000,0.000000,0.000139,0.000119,0.000101,0.000258,0.000402,0.000402,0.000971,0.118708,-0.001217,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000251,0.000000,0.000000,0.000000,0.000140,0.000117,0.000099,0.000257,0.000289,0.000289,0.000954,0.117802,-0.000906,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000017,0.000000,0.000000,0.000000,0.000142,0.000115,0.000098,0.000256,0.000167,0.000167,0.000937,0.116799,-0.001004,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000689,0.000018,0.000032,0.000018,0.000143,0.000113,0.000097,0.000274,0.000050,0.000050,0.000921,0.116555,-0.000243,1.000000,0.000015 +122,2022-08-06 02:00:00,0.001888,0.000149,0.000256,0.000149,0.000145,0.000111,0.000099,0.000405,0.000000,0.000000,0.000909,0.117326,0.000771,1.000000,0.000122 +123,2022-08-06 03:00:00,0.000722,0.000093,0.000041,0.000093,0.000146,0.000110,0.000098,0.000349,0.000000,0.000000,0.000897,0.117149,-0.000177,1.000000,0.000070 +124,2022-08-06 04:00:00,0.000198,0.000063,0.000003,0.000063,0.000148,0.000108,0.000097,0.000319,0.000000,0.000000,0.000886,0.116495,-0.000654,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000212,0.000011,0.000004,0.000011,0.000149,0.000107,0.000096,0.000267,0.000000,0.000000,0.000875,0.115863,-0.000632,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000386,0.000008,0.000012,0.000008,0.000151,0.000106,0.000095,0.000265,0.000000,0.000000,0.000865,0.115404,-0.000459,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000152,0.000105,0.000094,0.000260,0.000000,0.000000,0.000854,0.114582,-0.000822,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000154,0.000103,0.000093,0.000259,0.000000,0.000000,0.000844,0.113772,-0.000810,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000102,0.000091,0.000257,0.000000,0.000000,0.000834,0.112974,-0.000798,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000101,0.000090,0.000257,0.000000,0.000000,0.000823,0.112187,-0.000787,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000099,0.000089,0.000257,0.000000,0.000000,0.000813,0.111411,-0.000776,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000098,0.000088,0.000258,0.000000,0.000000,0.000802,0.110646,-0.000765,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000097,0.000086,0.000258,0.000000,0.000000,0.000792,0.109892,-0.000754,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000095,0.000085,0.000258,0.000104,0.000104,0.000781,0.109046,-0.000846,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000164,0.000094,0.000083,0.000258,0.000334,0.000334,0.000770,0.107987,-0.001059,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000093,0.000081,0.000258,0.000483,0.000483,0.000759,0.106794,-0.001192,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000091,0.000079,0.000258,0.000603,0.000603,0.000747,0.105500,-0.001294,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000090,0.000077,0.000258,0.000674,0.000674,0.000734,0.104154,-0.001346,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000088,0.000075,0.000258,0.000620,0.000620,0.000721,0.102880,-0.001274,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000086,0.000073,0.000257,0.000572,0.000572,0.000708,0.101672,-0.001208,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000085,0.000071,0.000257,0.000525,0.000525,0.000694,0.100527,-0.001145,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000083,0.000069,0.000257,0.000435,0.000435,0.000680,0.099488,-0.001040,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000081,0.000068,0.000257,0.000317,0.000317,0.000667,0.098579,-0.000909,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000080,0.000067,0.000256,0.000174,0.000174,0.000653,0.097824,-0.000755,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000078,0.000066,0.000256,0.000026,0.000026,0.000641,0.097226,-0.000599,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000077,0.000065,0.000256,0.000000,0.000000,0.000629,0.096662,-0.000564,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000075,0.000064,0.000256,0.000000,0.000000,0.000617,0.096105,-0.000556,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000074,0.000063,0.000256,0.000000,0.000000,0.000606,0.095557,-0.000548,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000073,0.000062,0.000256,0.000000,0.000000,0.000595,0.095017,-0.000540,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000071,0.000061,0.000256,0.000000,0.000000,0.000585,0.094484,-0.000533,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000070,0.000060,0.000257,0.000000,0.000000,0.000575,0.093959,-0.000525,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000069,0.000059,0.000257,0.000000,0.000000,0.000566,0.093441,-0.000518,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000068,0.000058,0.000257,0.000000,0.000000,0.000556,0.092930,-0.000511,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000067,0.000058,0.000257,0.000000,0.000000,0.000547,0.092427,-0.000503,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000066,0.000057,0.000258,0.000000,0.000000,0.000539,0.091931,-0.000496,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000065,0.000056,0.000258,0.000000,0.000000,0.000530,0.091442,-0.000489,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000064,0.000055,0.000258,0.000000,0.000000,0.000522,0.090959,-0.000482,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000063,0.000054,0.000258,0.000105,0.000105,0.000514,0.090381,-0.000578,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000061,0.000053,0.000259,0.000343,0.000343,0.000505,0.089576,-0.000805,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000060,0.000051,0.000259,0.000505,0.000505,0.000496,0.088622,-0.000954,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000059,0.000050,0.000259,0.000602,0.000602,0.000486,0.087586,-0.001036,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000058,0.000048,0.000259,0.000667,0.000667,0.000476,0.086501,-0.001085,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000057,0.000046,0.000259,0.000613,0.000613,0.000466,0.085485,-0.001016,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000055,0.000045,0.000259,0.000562,0.000562,0.000455,0.084533,-0.000952,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000054,0.000043,0.000259,0.000501,0.000501,0.000444,0.083654,-0.000878,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000053,0.000042,0.000259,0.000423,0.000423,0.000434,0.082865,-0.000789,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000051,0.000041,0.000259,0.000302,0.000302,0.000423,0.082207,-0.000659,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000050,0.000040,0.000259,0.000137,0.000137,0.000413,0.081720,-0.000487,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000049,0.000039,0.000259,0.000005,0.000005,0.000403,0.081371,-0.000349,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000048,0.000039,0.000259,0.000000,0.000000,0.000394,0.081031,-0.000340,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000047,0.000038,0.000260,0.000000,0.000000,0.000386,0.080696,-0.000335,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000046,0.000038,0.000260,0.000000,0.000000,0.000378,0.080366,-0.000330,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000045,0.000037,0.000260,0.000000,0.000000,0.000370,0.080041,-0.000325,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000044,0.000037,0.000261,0.000000,0.000000,0.000363,0.079720,-0.000321,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000043,0.000036,0.000261,0.000000,0.000000,0.000356,0.079404,-0.000316,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000042,0.000036,0.000261,0.000000,0.000000,0.000349,0.079092,-0.000312,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000042,0.000035,0.000262,0.000000,0.000000,0.000343,0.078785,-0.000307,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000041,0.000035,0.000262,0.000000,0.000000,0.000336,0.078482,-0.000303,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000040,0.000034,0.000263,0.000000,0.000000,0.000330,0.078183,-0.000299,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000039,0.000034,0.000263,0.000000,0.000000,0.000325,0.077889,-0.000294,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000039,0.000033,0.000264,0.000000,0.000000,0.000319,0.077599,-0.000290,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000226,0.000038,0.000033,0.000264,0.000087,0.000002,0.000314,0.077313,-0.000286,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000227,0.000037,0.000032,0.000265,0.000321,0.000002,0.000309,0.077031,-0.000282,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000037,0.000032,0.000265,0.000490,0.000000,0.000304,0.076752,-0.000278,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000036,0.000031,0.000266,0.000592,0.000000,0.000299,0.076478,-0.000274,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000036,0.000031,0.000266,0.000667,0.000000,0.000294,0.076208,-0.000270,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000035,0.000031,0.000267,0.000599,0.000000,0.000289,0.075941,-0.000266,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000035,0.000030,0.000268,0.000547,0.000000,0.000285,0.075679,-0.000263,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000034,0.000030,0.000268,0.000518,0.000000,0.000281,0.075420,-0.000259,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000034,0.000029,0.000269,0.000435,0.000000,0.000276,0.075165,-0.000255,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000033,0.000029,0.000269,0.000303,0.000000,0.000272,0.074913,-0.000252,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000033,0.000028,0.000270,0.000166,0.000000,0.000268,0.074665,-0.000248,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000032,0.000028,0.000271,0.000018,0.000000,0.000264,0.074420,-0.000245,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000032,0.000028,0.000271,0.000000,0.000000,0.000260,0.074179,-0.000241,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000031,0.000027,0.000272,0.000000,0.000000,0.000256,0.073941,-0.000238,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000031,0.000027,0.000273,0.000000,0.000000,0.000252,0.073707,-0.000234,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000030,0.000026,0.000273,0.000000,0.000000,0.000249,0.073476,-0.000231,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000030,0.000026,0.000274,0.000000,0.000000,0.000245,0.073248,-0.000228,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000029,0.000026,0.000274,0.000000,0.000000,0.000241,0.073024,-0.000225,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000029,0.000025,0.000275,0.000000,0.000000,0.000238,0.072802,-0.000221,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000028,0.000025,0.000276,0.000000,0.000000,0.000235,0.072584,-0.000218,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000028,0.000025,0.000276,0.000000,0.000000,0.000231,0.072369,-0.000215,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000028,0.000024,0.000277,0.000000,0.000000,0.000228,0.072157,-0.000212,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000027,0.000024,0.000278,0.000000,0.000000,0.000225,0.071948,-0.000209,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000027,0.000024,0.000278,0.000000,0.000000,0.000221,0.071742,-0.000206,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000026,0.000023,0.000279,0.000096,0.000000,0.000218,0.071538,-0.000203,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620818.csv b/test/channel_loss/channel_forcing/et/cat-2620818.csv new file mode 100644 index 000000000..21614816e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620818.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000096,0.000000,0.000000,0.000000,0.000000,0.001476,0.000403,0.001476,0.000174,0.000174,0.010524,0.425660,-0.004910,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001327,0.000398,0.001327,0.000047,0.000047,0.009594,0.420850,-0.004810,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001201,0.000392,0.001201,0.000000,0.000000,0.008785,0.416154,-0.004696,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001093,0.000386,0.001093,0.000000,0.000000,0.008078,0.411524,-0.004630,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001000,0.000381,0.001000,0.000000,0.000000,0.007459,0.406960,-0.004564,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000920,0.000376,0.000920,0.000000,0.000000,0.006914,0.402460,-0.004500,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000850,0.000370,0.000851,0.000000,0.000000,0.006435,0.398024,-0.004436,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000789,0.000365,0.000790,0.000000,0.000000,0.006010,0.393650,-0.004374,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000736,0.000360,0.000737,0.000000,0.000000,0.005634,0.389338,-0.004312,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000689,0.000355,0.000690,0.000000,0.000000,0.005300,0.385087,-0.004251,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000648,0.000350,0.000649,0.000000,0.000000,0.005002,0.380896,-0.004191,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000611,0.000345,0.000613,0.000000,0.000000,0.004736,0.376764,-0.004132,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000578,0.000340,0.000581,0.000000,0.000000,0.004498,0.372691,-0.004074,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000549,0.000335,0.000552,0.000000,0.000000,0.004284,0.368675,-0.004016,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000523,0.000330,0.000526,0.000124,0.000124,0.004091,0.364593,-0.004082,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000499,0.000325,0.000503,0.000355,0.000355,0.003917,0.360341,-0.004252,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000478,0.000320,0.000483,0.000524,0.000524,0.003759,0.355982,-0.004359,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000459,0.000315,0.000464,0.000642,0.000642,0.003615,0.351569,-0.004413,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000441,0.000310,0.000447,0.000598,0.000598,0.003483,0.347261,-0.004308,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000104,0.000000,0.000000,0.000000,0.000006,0.000425,0.000305,0.000432,0.000519,0.000519,0.003362,0.343195,-0.004066,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000411,0.000300,0.000417,0.000464,0.000464,0.003252,0.339200,-0.003995,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000506,0.000002,0.000003,0.000002,0.000007,0.000397,0.000296,0.000406,0.000377,0.000377,0.003150,0.335782,-0.003418,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000063,0.000001,0.000000,0.000001,0.000008,0.000385,0.000291,0.000394,0.000328,0.000328,0.003056,0.332025,-0.003756,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000255,0.000001,0.000000,0.000001,0.000009,0.000374,0.000287,0.000383,0.000247,0.000247,0.002970,0.328590,-0.003435,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000185,0.000000,0.000000,0.000000,0.000009,0.000363,0.000283,0.000373,0.000167,0.000167,0.002890,0.325215,-0.003376,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000604,0.000024,0.000043,0.000024,0.000010,0.000354,0.000280,0.000388,0.000070,0.000070,0.002816,0.322352,-0.002863,1.000000,0.000019 +26,2022-08-02 02:00:00,0.001366,0.000148,0.000250,0.000148,0.000011,0.000345,0.000277,0.000504,0.000000,0.000000,0.002749,0.320147,-0.002205,1.000000,0.000121 +27,2022-08-02 03:00:00,0.001332,0.000202,0.000238,0.000202,0.000012,0.000337,0.000275,0.000550,0.000000,0.000000,0.002687,0.317951,-0.002196,1.000000,0.000157 +28,2022-08-02 04:00:00,0.001438,0.000259,0.000273,0.000259,0.000013,0.000329,0.000272,0.000601,0.000000,0.000000,0.002629,0.315857,-0.002094,1.000000,0.000170 +29,2022-08-02 05:00:00,0.000560,0.000141,0.000047,0.000141,0.000014,0.000322,0.000269,0.000477,0.000000,0.000000,0.002576,0.313149,-0.002708,1.000000,0.000075 +30,2022-08-02 06:00:00,0.000275,0.000073,0.000012,0.000073,0.000014,0.000316,0.000265,0.000403,0.000000,0.000000,0.002525,0.310233,-0.002916,1.000000,0.000015 +31,2022-08-02 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000015,0.000310,0.000262,0.000337,0.000000,0.000000,0.002477,0.307099,-0.003135,1.000000,0.000002 +32,2022-08-02 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000016,0.000304,0.000258,0.000322,0.000000,0.000000,0.002432,0.304009,-0.003090,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000298,0.000254,0.000315,0.000000,0.000000,0.002388,0.300962,-0.003047,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000293,0.000251,0.000311,0.000000,0.000000,0.002346,0.297958,-0.003004,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000287,0.000247,0.000306,0.000000,0.000000,0.002306,0.294997,-0.002961,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000282,0.000244,0.000302,0.000000,0.000000,0.002267,0.292078,-0.002919,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000278,0.000240,0.000299,0.000000,0.000000,0.002229,0.289199,-0.002878,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000273,0.000237,0.000295,0.000115,0.000115,0.002193,0.286248,-0.002951,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000268,0.000233,0.000292,0.000322,0.000322,0.002158,0.283135,-0.003113,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000264,0.000229,0.000288,0.000465,0.000465,0.002123,0.279925,-0.003211,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000260,0.000225,0.000285,0.000575,0.000575,0.002088,0.276651,-0.003274,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000619,0.000000,0.000000,0.000000,0.000026,0.000255,0.000222,0.000282,0.000658,0.000658,0.002055,0.273951,-0.002699,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000066,0.000000,0.000000,0.000000,0.000027,0.000251,0.000218,0.000279,0.000591,0.000591,0.002022,0.270812,-0.003140,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000247,0.000215,0.000276,0.000534,0.000534,0.001990,0.267707,-0.003105,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000243,0.000211,0.000273,0.000508,0.000508,0.001958,0.264672,-0.003035,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000239,0.000207,0.000270,0.000434,0.000434,0.001926,0.261753,-0.002919,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000235,0.000204,0.000267,0.000320,0.000320,0.001895,0.258988,-0.002765,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000231,0.000201,0.000264,0.000174,0.000174,0.001865,0.256404,-0.002583,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000227,0.000198,0.000262,0.000028,0.000028,0.001836,0.254003,-0.002402,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000224,0.000195,0.000259,0.000000,0.000000,0.001808,0.251662,-0.002341,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000220,0.000193,0.000257,0.000000,0.000000,0.001780,0.249354,-0.002308,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000217,0.000190,0.000255,0.000000,0.000000,0.001753,0.247079,-0.002275,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000214,0.000187,0.000253,0.000000,0.000000,0.001727,0.244836,-0.002243,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000210,0.000185,0.000251,0.000000,0.000000,0.001701,0.242624,-0.002211,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000207,0.000182,0.000249,0.000000,0.000000,0.001676,0.240444,-0.002180,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000204,0.000179,0.000247,0.000000,0.000000,0.001651,0.238295,-0.002149,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000201,0.000177,0.000245,0.000000,0.000000,0.001627,0.236176,-0.002119,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000198,0.000174,0.000244,0.000000,0.000000,0.001603,0.234087,-0.002089,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000195,0.000172,0.000242,0.000000,0.000000,0.001580,0.232027,-0.002060,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000192,0.000169,0.000240,0.000000,0.000000,0.001557,0.229996,-0.002031,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000189,0.000167,0.000239,0.000000,0.000000,0.001535,0.227994,-0.002002,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000187,0.000165,0.000237,0.000121,0.000121,0.001513,0.225901,-0.002093,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000184,0.000162,0.000236,0.000362,0.000362,0.001491,0.223600,-0.002301,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000181,0.000159,0.000235,0.000531,0.000531,0.001469,0.221165,-0.002435,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000178,0.000156,0.000233,0.000642,0.000642,0.001447,0.218655,-0.002510,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000175,0.000153,0.000232,0.000635,0.000635,0.001424,0.216186,-0.002468,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000173,0.000150,0.000230,0.000555,0.000555,0.001402,0.213833,-0.002354,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004372,0.000735,0.001337,0.000735,0.000059,0.000170,0.000151,0.000964,0.000503,0.000503,0.001383,0.214555,0.000723,1.000000,0.000601 +69,2022-08-03 21:00:00,0.000439,0.000334,0.000000,0.000334,0.000060,0.000168,0.000149,0.000562,0.000467,0.000467,0.001364,0.212744,-0.001811,1.000000,0.000267 +70,2022-08-03 22:00:00,0.000000,0.000267,0.000000,0.000267,0.000062,0.000165,0.000146,0.000494,0.000394,0.000394,0.001345,0.210598,-0.002146,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000066,0.000000,0.000000,0.000000,0.000063,0.000163,0.000144,0.000226,0.000301,0.000301,0.001325,0.208638,-0.001960,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000161,0.000142,0.000225,0.000181,0.000181,0.001307,0.206760,-0.001879,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000158,0.000140,0.000224,0.000038,0.000038,0.001288,0.205048,-0.001712,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000156,0.000138,0.000223,0.000000,0.000000,0.001269,0.203398,-0.001650,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000154,0.000136,0.000223,0.000000,0.000000,0.001251,0.201772,-0.001626,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000152,0.000134,0.000222,0.000000,0.000000,0.001234,0.200168,-0.001604,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000149,0.000132,0.000221,0.000000,0.000000,0.001216,0.198587,-0.001581,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000147,0.000130,0.000220,0.000000,0.000000,0.001199,0.197029,-0.001559,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000145,0.000128,0.000220,0.000000,0.000000,0.001182,0.195492,-0.001537,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000143,0.000126,0.000219,0.000000,0.000000,0.001166,0.193977,-0.001515,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000141,0.000125,0.000218,0.000000,0.000000,0.001149,0.192484,-0.001494,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000139,0.000123,0.000218,0.000000,0.000000,0.001133,0.191011,-0.001472,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000137,0.000121,0.000217,0.000000,0.000000,0.001117,0.189560,-0.001452,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000135,0.000119,0.000217,0.000000,0.000000,0.001102,0.188129,-0.001431,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000133,0.000118,0.000216,0.000000,0.000000,0.001086,0.186718,-0.001411,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000131,0.000116,0.000216,0.000119,0.000119,0.001071,0.185209,-0.001508,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000129,0.000114,0.000215,0.000361,0.000361,0.001055,0.183483,-0.001726,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000127,0.000112,0.000215,0.000529,0.000529,0.001040,0.181616,-0.001867,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000125,0.000109,0.000214,0.000648,0.000648,0.001024,0.179658,-0.001958,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000123,0.000107,0.000214,0.000700,0.000700,0.001007,0.177677,-0.001981,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000121,0.000105,0.000213,0.000620,0.000620,0.000991,0.175802,-0.001875,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000119,0.000103,0.000212,0.000571,0.000571,0.000974,0.174002,-0.001800,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000117,0.000101,0.000212,0.000522,0.000522,0.000957,0.172275,-0.001727,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000115,0.000099,0.000211,0.000440,0.000440,0.000941,0.170654,-0.001621,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000113,0.000097,0.000211,0.000326,0.000326,0.000924,0.169169,-0.001485,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000111,0.000095,0.000210,0.000187,0.000187,0.000909,0.167841,-0.001328,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000109,0.000094,0.000210,0.000042,0.000042,0.000893,0.166676,-0.001166,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000107,0.000092,0.000209,0.000000,0.000000,0.000878,0.165567,-0.001108,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000106,0.000091,0.000209,0.000000,0.000000,0.000864,0.164475,-0.001092,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000104,0.000090,0.000209,0.000000,0.000000,0.000850,0.163398,-0.001077,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000102,0.000089,0.000208,0.000000,0.000000,0.000836,0.162336,-0.001062,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000101,0.000087,0.000208,0.000000,0.000000,0.000823,0.161289,-0.001047,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000099,0.000086,0.000208,0.000000,0.000000,0.000810,0.160257,-0.001032,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000097,0.000085,0.000208,0.000000,0.000000,0.000798,0.159239,-0.001018,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000096,0.000084,0.000208,0.000000,0.000000,0.000786,0.158236,-0.001003,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000094,0.000083,0.000208,0.000000,0.000000,0.000774,0.157247,-0.000989,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000093,0.000081,0.000208,0.000000,0.000000,0.000762,0.156272,-0.000975,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000092,0.000080,0.000208,0.000000,0.000000,0.000751,0.155311,-0.000961,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000090,0.000079,0.000208,0.000000,0.000000,0.000740,0.154363,-0.000948,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000089,0.000078,0.000208,0.000132,0.000132,0.000728,0.153299,-0.001065,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000088,0.000076,0.000208,0.000376,0.000376,0.000717,0.152009,-0.001290,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000086,0.000075,0.000208,0.000539,0.000539,0.000706,0.150576,-0.001433,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000085,0.000073,0.000208,0.000653,0.000653,0.000694,0.149052,-0.001524,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000083,0.000071,0.000208,0.000664,0.000664,0.000682,0.147537,-0.001514,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000082,0.000069,0.000208,0.000600,0.000600,0.000669,0.146170,-0.001367,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000080,0.000068,0.000208,0.000543,0.000543,0.000657,0.144878,-0.001292,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000079,0.000066,0.000208,0.000470,0.000470,0.000645,0.143677,-0.001201,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000077,0.000065,0.000208,0.000401,0.000401,0.000633,0.142561,-0.001117,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000132,0.000076,0.000064,0.000208,0.000299,0.000299,0.000621,0.141747,-0.000813,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000074,0.000063,0.000208,0.000179,0.000179,0.000610,0.140877,-0.000870,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000659,0.000022,0.000041,0.000022,0.000135,0.000073,0.000063,0.000231,0.000061,0.000061,0.000600,0.140682,-0.000195,1.000000,0.000018 +122,2022-08-06 02:00:00,0.001747,0.000180,0.000308,0.000180,0.000136,0.000072,0.000064,0.000388,0.000000,0.000000,0.000591,0.141360,0.000678,1.000000,0.000147 +123,2022-08-06 03:00:00,0.000751,0.000120,0.000063,0.000120,0.000138,0.000071,0.000063,0.000329,0.000000,0.000000,0.000584,0.141287,-0.000073,1.000000,0.000090 +124,2022-08-06 04:00:00,0.000308,0.000084,0.000011,0.000084,0.000139,0.000070,0.000063,0.000293,0.000000,0.000000,0.000576,0.140830,-0.000457,1.000000,0.000018 +125,2022-08-06 05:00:00,0.000309,0.000022,0.000011,0.000022,0.000141,0.000069,0.000062,0.000232,0.000000,0.000000,0.000569,0.140380,-0.000450,1.000000,0.000007 +126,2022-08-06 06:00:00,0.000491,0.000020,0.000028,0.000020,0.000142,0.000069,0.000062,0.000231,0.000000,0.000000,0.000563,0.140099,-0.000280,1.000000,0.000015 +127,2022-08-06 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000143,0.000068,0.000061,0.000220,0.000000,0.000000,0.000556,0.139366,-0.000733,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000145,0.000067,0.000060,0.000217,0.000000,0.000000,0.000550,0.138644,-0.000723,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000066,0.000059,0.000212,0.000000,0.000000,0.000543,0.137931,-0.000712,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000065,0.000059,0.000213,0.000000,0.000000,0.000536,0.137229,-0.000702,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000064,0.000058,0.000213,0.000000,0.000000,0.000530,0.136536,-0.000692,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000064,0.000057,0.000214,0.000000,0.000000,0.000523,0.135854,-0.000683,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000063,0.000056,0.000215,0.000000,0.000000,0.000516,0.135181,-0.000673,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000062,0.000055,0.000215,0.000110,0.000110,0.000510,0.134408,-0.000772,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000061,0.000054,0.000216,0.000343,0.000343,0.000503,0.133417,-0.000991,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000060,0.000053,0.000216,0.000497,0.000497,0.000495,0.132289,-0.001128,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000059,0.000051,0.000216,0.000622,0.000622,0.000487,0.131053,-0.001236,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000050,0.000217,0.000701,0.000701,0.000479,0.129756,-0.001297,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000048,0.000217,0.000641,0.000641,0.000470,0.128537,-0.001219,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000056,0.000047,0.000217,0.000576,0.000576,0.000461,0.127400,-0.001137,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000046,0.000217,0.000532,0.000532,0.000451,0.126322,-0.001078,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000044,0.000218,0.000443,0.000443,0.000442,0.125347,-0.000975,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000043,0.000218,0.000329,0.000329,0.000433,0.124498,-0.000849,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000052,0.000043,0.000218,0.000181,0.000181,0.000424,0.123806,-0.000691,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000042,0.000218,0.000038,0.000038,0.000415,0.123266,-0.000540,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000049,0.000041,0.000219,0.000000,0.000000,0.000407,0.122771,-0.000495,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000041,0.000219,0.000000,0.000000,0.000400,0.122283,-0.000488,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000040,0.000219,0.000000,0.000000,0.000392,0.121801,-0.000482,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000040,0.000220,0.000000,0.000000,0.000385,0.121326,-0.000475,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000039,0.000220,0.000000,0.000000,0.000378,0.120858,-0.000468,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000039,0.000221,0.000000,0.000000,0.000372,0.120397,-0.000461,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000038,0.000221,0.000000,0.000000,0.000365,0.119942,-0.000455,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000037,0.000222,0.000000,0.000000,0.000359,0.119494,-0.000448,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000000,0.000000,0.000353,0.119051,-0.000442,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000036,0.000223,0.000000,0.000000,0.000347,0.118616,-0.000436,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000036,0.000223,0.000000,0.000000,0.000342,0.118186,-0.000430,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000041,0.000035,0.000224,0.000000,0.000000,0.000336,0.117762,-0.000424,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000035,0.000225,0.000110,0.000110,0.000331,0.117235,-0.000527,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000039,0.000034,0.000225,0.000350,0.000350,0.000325,0.116480,-0.000756,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000033,0.000226,0.000512,0.000512,0.000319,0.115575,-0.000905,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000032,0.000226,0.000623,0.000623,0.000313,0.114574,-0.001001,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000037,0.000030,0.000227,0.000694,0.000694,0.000306,0.113517,-0.001057,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000029,0.000227,0.000632,0.000632,0.000299,0.112536,-0.000981,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000028,0.000227,0.000566,0.000566,0.000292,0.111634,-0.000902,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000034,0.000027,0.000228,0.000519,0.000519,0.000284,0.110791,-0.000843,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000026,0.000228,0.000433,0.000433,0.000277,0.110045,-0.000746,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000025,0.000228,0.000322,0.000322,0.000269,0.109419,-0.000626,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000032,0.000025,0.000228,0.000149,0.000149,0.000262,0.108972,-0.000447,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000024,0.000229,0.000012,0.000012,0.000256,0.108667,-0.000305,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000229,0.000000,0.000000,0.000250,0.108377,-0.000289,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000024,0.000230,0.000000,0.000000,0.000244,0.108092,-0.000285,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000023,0.000230,0.000000,0.000000,0.000239,0.107811,-0.000281,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000000,0.000000,0.000233,0.107533,-0.000277,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000023,0.000231,0.000000,0.000000,0.000229,0.107260,-0.000273,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000022,0.000232,0.000000,0.000000,0.000224,0.106991,-0.000269,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000027,0.000022,0.000233,0.000000,0.000000,0.000219,0.106725,-0.000266,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000022,0.000233,0.000000,0.000000,0.000215,0.106463,-0.000262,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000022,0.000234,0.000000,0.000000,0.000211,0.106205,-0.000258,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000021,0.000234,0.000000,0.000000,0.000207,0.105950,-0.000255,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000025,0.000021,0.000235,0.000000,0.000000,0.000204,0.105699,-0.000251,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000021,0.000236,0.000000,0.000000,0.000200,0.105452,-0.000247,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000020,0.000236,0.000094,0.000094,0.000197,0.105115,-0.000336,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000020,0.000237,0.000334,0.000334,0.000193,0.104547,-0.000569,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000023,0.000019,0.000238,0.000503,0.000503,0.000189,0.103819,-0.000728,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000018,0.000238,0.000609,0.000609,0.000184,0.102997,-0.000822,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000017,0.000239,0.000691,0.000691,0.000179,0.102107,-0.000891,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000016,0.000239,0.000614,0.000614,0.000174,0.101304,-0.000802,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000015,0.000239,0.000551,0.000551,0.000168,0.100575,-0.000729,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000014,0.000240,0.000523,0.000523,0.000162,0.099885,-0.000691,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000013,0.000240,0.000437,0.000437,0.000157,0.099288,-0.000596,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000013,0.000241,0.000321,0.000321,0.000151,0.098815,-0.000473,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000012,0.000241,0.000182,0.000182,0.000146,0.098486,-0.000330,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000012,0.000241,0.000031,0.000031,0.000141,0.098309,-0.000176,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000012,0.000242,0.000000,0.000000,0.000136,0.098166,-0.000143,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000012,0.000242,0.000000,0.000000,0.000132,0.098025,-0.000141,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000012,0.000243,0.000000,0.000000,0.000128,0.097886,-0.000139,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000011,0.000243,0.000000,0.000000,0.000125,0.097749,-0.000137,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000011,0.000244,0.000000,0.000000,0.000121,0.097614,-0.000135,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000245,0.000000,0.000000,0.000118,0.097480,-0.000133,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000011,0.000245,0.000000,0.000000,0.000115,0.097349,-0.000131,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000011,0.000246,0.000000,0.000000,0.000112,0.097219,-0.000130,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000000,0.000000,0.000110,0.097092,-0.000128,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000247,0.000000,0.000000,0.000107,0.096966,-0.000126,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000010,0.000248,0.000000,0.000000,0.000105,0.096841,-0.000124,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000010,0.000248,0.000000,0.000000,0.000103,0.096719,-0.000122,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000010,0.000249,0.000100,0.000100,0.000101,0.096500,-0.000219,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620819.csv b/test/channel_loss/channel_forcing/et/cat-2620819.csv new file mode 100644 index 000000000..420d7e800 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620819.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000133,0.000000,0.000000,0.000000,0.000000,0.001464,0.000317,0.001464,0.000180,0.000180,0.010449,0.425705,-0.004864,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001306,0.000312,0.001306,0.000050,0.000050,0.009456,0.420904,-0.004801,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001171,0.000308,0.001171,0.000000,0.000000,0.008592,0.416218,-0.004686,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001057,0.000304,0.001057,0.000000,0.000000,0.007839,0.411596,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000959,0.000300,0.000959,0.000000,0.000000,0.007180,0.407037,-0.004559,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000295,0.000875,0.000000,0.000000,0.006601,0.402540,-0.004497,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000801,0.000291,0.000802,0.000000,0.000000,0.006091,0.398105,-0.004435,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000287,0.000738,0.000000,0.000000,0.005642,0.393730,-0.004375,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000681,0.000284,0.000682,0.000000,0.000000,0.005244,0.389415,-0.004315,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000632,0.000280,0.000634,0.000000,0.000000,0.004891,0.385159,-0.004256,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000589,0.000276,0.000591,0.000000,0.000000,0.004578,0.380961,-0.004198,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000551,0.000272,0.000553,0.000000,0.000000,0.004299,0.376821,-0.004140,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000517,0.000268,0.000520,0.000000,0.000000,0.004050,0.372737,-0.004084,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000487,0.000265,0.000490,0.000000,0.000000,0.003827,0.368709,-0.004028,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000261,0.000464,0.000126,0.000126,0.003627,0.364612,-0.004097,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000257,0.000441,0.000362,0.000362,0.003448,0.360338,-0.004274,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000415,0.000253,0.000420,0.000530,0.000530,0.003286,0.355957,-0.004381,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000396,0.000249,0.000401,0.000646,0.000646,0.003139,0.351521,-0.004436,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000378,0.000245,0.000384,0.000602,0.000602,0.003005,0.347189,-0.004332,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000118,0.000000,0.000000,0.000000,0.000006,0.000363,0.000241,0.000369,0.000527,0.000527,0.002884,0.343107,-0.004082,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000071,0.000000,0.000000,0.000000,0.000007,0.000348,0.000238,0.000355,0.000463,0.000463,0.002774,0.339098,-0.004009,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000446,0.000000,0.000001,0.000000,0.000008,0.000335,0.000235,0.000343,0.000384,0.000384,0.002673,0.335590,-0.003508,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000074,0.000000,0.000000,0.000000,0.000008,0.000323,0.000231,0.000332,0.000333,0.000333,0.002581,0.331814,-0.003776,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000230,0.000000,0.000000,0.000000,0.000009,0.000312,0.000228,0.000321,0.000258,0.000258,0.002497,0.328318,-0.003496,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000158,0.000000,0.000000,0.000000,0.000010,0.000302,0.000225,0.000312,0.000172,0.000172,0.002420,0.324884,-0.003434,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000578,0.000027,0.000049,0.000027,0.000010,0.000293,0.000222,0.000330,0.000073,0.000073,0.002349,0.321959,-0.002924,1.000000,0.000022 +26,2022-08-02 02:00:00,0.001191,0.000144,0.000240,0.000144,0.000011,0.000285,0.000220,0.000440,0.000000,0.000000,0.002284,0.319563,-0.002396,1.000000,0.000118 +27,2022-08-02 03:00:00,0.001181,0.000199,0.000236,0.000199,0.000012,0.000277,0.000218,0.000489,0.000000,0.000000,0.002225,0.317195,-0.002368,1.000000,0.000154 +28,2022-08-02 04:00:00,0.001325,0.000265,0.000288,0.000265,0.000013,0.000270,0.000216,0.000548,0.000000,0.000000,0.002170,0.314949,-0.002247,1.000000,0.000177 +29,2022-08-02 05:00:00,0.000538,0.000149,0.000054,0.000149,0.000014,0.000264,0.000213,0.000427,0.000000,0.000000,0.002120,0.312187,-0.002761,1.000000,0.000082 +30,2022-08-02 06:00:00,0.000330,0.000083,0.000021,0.000083,0.000015,0.000258,0.000211,0.000355,0.000000,0.000000,0.002073,0.309292,-0.002896,1.000000,0.000020 +31,2022-08-02 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000252,0.000208,0.000284,0.000000,0.000000,0.002029,0.306131,-0.003161,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000017,0.000247,0.000205,0.000267,0.000000,0.000000,0.001987,0.303013,-0.003118,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000242,0.000202,0.000259,0.000000,0.000000,0.001947,0.299938,-0.003075,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000237,0.000199,0.000255,0.000000,0.000000,0.001910,0.296905,-0.003033,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000232,0.000197,0.000252,0.000000,0.000000,0.001874,0.293914,-0.002992,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000228,0.000194,0.000248,0.000000,0.000000,0.001840,0.290963,-0.002951,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000224,0.000191,0.000245,0.000000,0.000000,0.001807,0.288053,-0.002910,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000220,0.000189,0.000242,0.000116,0.000116,0.001776,0.285068,-0.002985,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000216,0.000186,0.000240,0.000330,0.000330,0.001746,0.281913,-0.003155,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000212,0.000183,0.000237,0.000478,0.000478,0.001716,0.278655,-0.003258,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000209,0.000180,0.000234,0.000587,0.000587,0.001687,0.275333,-0.003322,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000706,0.000000,0.000000,0.000000,0.000027,0.000205,0.000177,0.000232,0.000671,0.000671,0.001659,0.272671,-0.002662,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000202,0.000174,0.000230,0.000604,0.000604,0.001632,0.269478,-0.003193,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000198,0.000171,0.000227,0.000543,0.000543,0.001605,0.266326,-0.003152,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000195,0.000169,0.000225,0.000514,0.000514,0.001579,0.263245,-0.003081,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000192,0.000166,0.000223,0.000437,0.000437,0.001553,0.260282,-0.002963,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000189,0.000163,0.000221,0.000327,0.000327,0.001528,0.257469,-0.002813,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000185,0.000161,0.000219,0.000179,0.000179,0.001504,0.254840,-0.002629,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000182,0.000159,0.000218,0.000030,0.000030,0.001480,0.252394,-0.002446,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000180,0.000157,0.000216,0.000000,0.000000,0.001457,0.250011,-0.002383,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000177,0.000154,0.000214,0.000000,0.000000,0.001435,0.247660,-0.002351,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000174,0.000152,0.000213,0.000000,0.000000,0.001413,0.245342,-0.002318,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000171,0.000150,0.000212,0.000000,0.000000,0.001392,0.243055,-0.002287,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000169,0.000148,0.000210,0.000000,0.000000,0.001371,0.240800,-0.002255,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000166,0.000146,0.000209,0.000000,0.000000,0.001351,0.238575,-0.002225,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000164,0.000144,0.000208,0.000000,0.000000,0.001332,0.236381,-0.002194,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000161,0.000142,0.000207,0.000000,0.000000,0.001312,0.234216,-0.002164,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000159,0.000140,0.000206,0.000000,0.000000,0.001294,0.232082,-0.002135,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000157,0.000138,0.000205,0.000000,0.000000,0.001275,0.229976,-0.002106,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000155,0.000136,0.000204,0.000000,0.000000,0.001257,0.227899,-0.002077,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000152,0.000135,0.000203,0.000000,0.000000,0.001239,0.225851,-0.002048,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000150,0.000133,0.000202,0.000123,0.000123,0.001222,0.223710,-0.002141,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000148,0.000131,0.000201,0.000365,0.000365,0.001205,0.221359,-0.002351,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000146,0.000128,0.000201,0.000535,0.000535,0.001187,0.218872,-0.002486,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000144,0.000126,0.000200,0.000644,0.000644,0.001169,0.216313,-0.002560,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000141,0.000124,0.000199,0.000637,0.000637,0.001152,0.213794,-0.002518,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000139,0.000121,0.000198,0.000561,0.000561,0.001134,0.211386,-0.002409,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003696,0.000630,0.001146,0.000630,0.000060,0.000137,0.000122,0.000828,0.000506,0.000506,0.001118,0.211579,0.000194,1.000000,0.000516 +69,2022-08-03 21:00:00,0.000350,0.000287,0.000000,0.000287,0.000062,0.000135,0.000120,0.000484,0.000475,0.000475,0.001103,0.209632,-0.001948,1.000000,0.000229 +70,2022-08-03 22:00:00,0.000000,0.000229,0.000000,0.000229,0.000063,0.000133,0.000118,0.000426,0.000398,0.000398,0.001087,0.207440,-0.002192,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000131,0.000116,0.000196,0.000307,0.000307,0.001072,0.205431,-0.002009,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000130,0.000114,0.000196,0.000184,0.000184,0.001057,0.203509,-0.001922,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000128,0.000113,0.000195,0.000041,0.000041,0.001042,0.201753,-0.001755,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000126,0.000111,0.000195,0.000000,0.000000,0.001027,0.200062,-0.001691,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000124,0.000110,0.000194,0.000000,0.000000,0.001013,0.198394,-0.001668,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000122,0.000108,0.000194,0.000000,0.000000,0.000998,0.196749,-0.001645,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000121,0.000107,0.000194,0.000000,0.000000,0.000985,0.195127,-0.001623,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000119,0.000105,0.000194,0.000000,0.000000,0.000971,0.193526,-0.001600,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000117,0.000104,0.000193,0.000000,0.000000,0.000957,0.191948,-0.001579,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000116,0.000102,0.000193,0.000000,0.000000,0.000944,0.190391,-0.001557,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000114,0.000101,0.000193,0.000000,0.000000,0.000931,0.188855,-0.001536,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000112,0.000100,0.000193,0.000000,0.000000,0.000918,0.187340,-0.001515,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000111,0.000098,0.000193,0.000000,0.000000,0.000906,0.185846,-0.001494,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000109,0.000097,0.000193,0.000000,0.000000,0.000893,0.184373,-0.001474,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000108,0.000096,0.000193,0.000000,0.000000,0.000881,0.182919,-0.001453,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000106,0.000094,0.000193,0.000120,0.000120,0.000869,0.181367,-0.001552,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000105,0.000092,0.000193,0.000364,0.000364,0.000857,0.179596,-0.001771,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000103,0.000091,0.000193,0.000533,0.000533,0.000844,0.177682,-0.001914,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000102,0.000089,0.000193,0.000651,0.000651,0.000832,0.175678,-0.002004,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000100,0.000087,0.000193,0.000704,0.000704,0.000819,0.173650,-0.002029,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000098,0.000085,0.000193,0.000626,0.000626,0.000806,0.171725,-0.001924,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000097,0.000084,0.000192,0.000571,0.000571,0.000792,0.169881,-0.001844,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000095,0.000082,0.000192,0.000523,0.000523,0.000779,0.168110,-0.001771,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000094,0.000081,0.000192,0.000442,0.000442,0.000766,0.166443,-0.001667,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000092,0.000079,0.000192,0.000332,0.000332,0.000753,0.164908,-0.001535,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000090,0.000078,0.000192,0.000191,0.000191,0.000741,0.163532,-0.001376,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000089,0.000077,0.000192,0.000046,0.000046,0.000729,0.162318,-0.001214,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000087,0.000076,0.000192,0.000000,0.000000,0.000717,0.161166,-0.001152,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000086,0.000075,0.000192,0.000000,0.000000,0.000706,0.160030,-0.001136,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000085,0.000074,0.000192,0.000000,0.000000,0.000694,0.158909,-0.001121,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000083,0.000073,0.000193,0.000000,0.000000,0.000684,0.157803,-0.001105,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000082,0.000072,0.000193,0.000000,0.000000,0.000673,0.156713,-0.001090,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000081,0.000071,0.000193,0.000000,0.000000,0.000663,0.155638,-0.001075,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000080,0.000070,0.000193,0.000000,0.000000,0.000653,0.154577,-0.001061,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000078,0.000069,0.000194,0.000000,0.000000,0.000644,0.153531,-0.001046,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000077,0.000068,0.000194,0.000000,0.000000,0.000634,0.152499,-0.001032,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000076,0.000067,0.000194,0.000000,0.000000,0.000625,0.151481,-0.001018,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000075,0.000066,0.000195,0.000000,0.000000,0.000616,0.150477,-0.001004,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000074,0.000065,0.000195,0.000000,0.000000,0.000607,0.149487,-0.000990,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000073,0.000064,0.000196,0.000134,0.000134,0.000598,0.148379,-0.001109,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000072,0.000063,0.000196,0.000379,0.000379,0.000589,0.147044,-0.001335,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000071,0.000061,0.000196,0.000540,0.000540,0.000580,0.145567,-0.001476,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000069,0.000060,0.000197,0.000652,0.000652,0.000571,0.144001,-0.001566,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000068,0.000059,0.000197,0.000666,0.000666,0.000561,0.142442,-0.001559,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000067,0.000057,0.000197,0.000597,0.000597,0.000551,0.141035,-0.001407,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000066,0.000056,0.000198,0.000539,0.000539,0.000542,0.139704,-0.001331,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000065,0.000055,0.000198,0.000474,0.000474,0.000532,0.138456,-0.001248,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000064,0.000054,0.000198,0.000400,0.000400,0.000522,0.137299,-0.001158,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000136,0.000062,0.000053,0.000199,0.000303,0.000303,0.000513,0.136439,-0.000859,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000061,0.000052,0.000199,0.000182,0.000182,0.000504,0.135523,-0.000916,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000653,0.000027,0.000050,0.000027,0.000139,0.000060,0.000052,0.000227,0.000065,0.000065,0.000496,0.135268,-0.000255,1.000000,0.000022 +122,2022-08-06 02:00:00,0.001658,0.000201,0.000343,0.000201,0.000141,0.000059,0.000053,0.000401,0.000000,0.000000,0.000489,0.135783,0.000515,1.000000,0.000164 +123,2022-08-06 03:00:00,0.000799,0.000145,0.000089,0.000145,0.000142,0.000059,0.000053,0.000345,0.000000,0.000000,0.000483,0.135693,-0.000089,1.000000,0.000109 +124,2022-08-06 04:00:00,0.000432,0.000106,0.000028,0.000106,0.000143,0.000058,0.000052,0.000307,0.000000,0.000000,0.000477,0.135304,-0.000389,1.000000,0.000030 +125,2022-08-06 05:00:00,0.000418,0.000039,0.000026,0.000039,0.000145,0.000057,0.000052,0.000241,0.000000,0.000000,0.000471,0.134908,-0.000396,1.000000,0.000017 +126,2022-08-06 06:00:00,0.000550,0.000036,0.000044,0.000036,0.000146,0.000057,0.000052,0.000239,0.000000,0.000000,0.000466,0.134630,-0.000278,1.000000,0.000025 +127,2022-08-06 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000148,0.000056,0.000051,0.000220,0.000000,0.000000,0.000461,0.133857,-0.000774,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000149,0.000055,0.000050,0.000213,0.000000,0.000000,0.000456,0.133094,-0.000763,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000055,0.000049,0.000205,0.000000,0.000000,0.000450,0.132341,-0.000753,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000054,0.000049,0.000206,0.000000,0.000000,0.000445,0.131599,-0.000742,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000053,0.000048,0.000207,0.000000,0.000000,0.000440,0.130867,-0.000732,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000053,0.000047,0.000208,0.000000,0.000000,0.000434,0.130145,-0.000722,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000047,0.000209,0.000000,0.000000,0.000429,0.129433,-0.000712,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000051,0.000046,0.000209,0.000113,0.000113,0.000424,0.128619,-0.000814,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000051,0.000045,0.000210,0.000349,0.000349,0.000418,0.127583,-0.001036,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000050,0.000044,0.000211,0.000506,0.000506,0.000412,0.126406,-0.001177,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000049,0.000043,0.000211,0.000628,0.000628,0.000406,0.125126,-0.001280,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000048,0.000042,0.000212,0.000706,0.000706,0.000399,0.123786,-0.001340,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000041,0.000212,0.000644,0.000644,0.000392,0.122525,-0.001260,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000039,0.000213,0.000578,0.000578,0.000385,0.121347,-0.001178,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000038,0.000213,0.000534,0.000534,0.000377,0.120229,-0.001118,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000037,0.000214,0.000446,0.000446,0.000370,0.119213,-0.001016,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000044,0.000037,0.000214,0.000333,0.000333,0.000362,0.118321,-0.000892,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000036,0.000215,0.000183,0.000183,0.000355,0.117590,-0.000731,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000215,0.000041,0.000041,0.000348,0.117009,-0.000581,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000035,0.000216,0.000000,0.000000,0.000342,0.116476,-0.000533,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000217,0.000000,0.000000,0.000336,0.115951,-0.000525,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000040,0.000034,0.000217,0.000000,0.000000,0.000330,0.115432,-0.000518,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000034,0.000218,0.000000,0.000000,0.000324,0.114921,-0.000511,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000033,0.000219,0.000000,0.000000,0.000319,0.114417,-0.000504,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000033,0.000219,0.000000,0.000000,0.000313,0.113920,-0.000497,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000220,0.000000,0.000000,0.000308,0.113429,-0.000490,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000032,0.000221,0.000000,0.000000,0.000303,0.112946,-0.000484,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000031,0.000221,0.000000,0.000000,0.000298,0.112468,-0.000477,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000036,0.000031,0.000222,0.000000,0.000000,0.000294,0.111998,-0.000471,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000035,0.000031,0.000223,0.000000,0.000000,0.000289,0.111533,-0.000464,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000030,0.000224,0.000000,0.000000,0.000285,0.111076,-0.000458,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000030,0.000225,0.000112,0.000112,0.000280,0.110514,-0.000562,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000029,0.000225,0.000353,0.000353,0.000276,0.109722,-0.000792,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000028,0.000226,0.000516,0.000516,0.000271,0.108780,-0.000942,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000027,0.000227,0.000627,0.000627,0.000266,0.107741,-0.001039,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000026,0.000227,0.000698,0.000698,0.000260,0.106647,-0.001094,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000025,0.000228,0.000635,0.000635,0.000254,0.105629,-0.001018,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000228,0.000565,0.000565,0.000249,0.104694,-0.000935,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000023,0.000229,0.000523,0.000523,0.000243,0.103814,-0.000881,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000023,0.000229,0.000437,0.000437,0.000237,0.103030,-0.000783,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000022,0.000230,0.000327,0.000327,0.000231,0.102366,-0.000664,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000022,0.000231,0.000153,0.000153,0.000225,0.101882,-0.000483,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000021,0.000231,0.000013,0.000013,0.000220,0.101543,-0.000339,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000000,0.000000,0.000215,0.101222,-0.000321,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000232,0.000000,0.000000,0.000210,0.100905,-0.000317,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000021,0.000233,0.000000,0.000000,0.000206,0.100592,-0.000313,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000234,0.000000,0.000000,0.000202,0.100284,-0.000308,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000234,0.000000,0.000000,0.000198,0.099980,-0.000304,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000235,0.000000,0.000000,0.000194,0.099680,-0.000300,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000000,0.000000,0.000190,0.099384,-0.000296,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000000,0.000000,0.000187,0.099092,-0.000292,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000238,0.000000,0.000000,0.000184,0.098804,-0.000288,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000019,0.000238,0.000000,0.000000,0.000180,0.098520,-0.000284,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000177,0.098240,-0.000280,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000000,0.000000,0.000174,0.097964,-0.000276,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000220,0.000021,0.000018,0.000241,0.000096,0.000096,0.000171,0.097598,-0.000366,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000338,0.000338,0.000168,0.096997,-0.000601,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000242,0.000506,0.000506,0.000165,0.096239,-0.000758,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000016,0.000243,0.000612,0.000612,0.000161,0.095387,-0.000853,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000015,0.000243,0.000695,0.000695,0.000157,0.094464,-0.000923,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000014,0.000244,0.000614,0.000614,0.000153,0.093634,-0.000830,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000014,0.000245,0.000554,0.000000,0.000149,0.093421,-0.000213,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000014,0.000245,0.000525,0.000000,0.000145,0.093210,-0.000210,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000014,0.000246,0.000439,0.000000,0.000142,0.093003,-0.000207,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000013,0.000247,0.000326,0.000000,0.000138,0.092798,-0.000205,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000013,0.000247,0.000185,0.000000,0.000135,0.092597,-0.000202,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000013,0.000248,0.000034,0.000000,0.000132,0.092397,-0.000199,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000004,0.000000,0.000000,0.000000,0.000233,0.000016,0.000013,0.000249,0.000000,0.000000,0.000130,0.092205,-0.000192,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000013,0.000250,0.000000,0.000000,0.000127,0.092012,-0.000194,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000250,0.000000,0.000000,0.000124,0.091820,-0.000191,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000012,0.000251,0.000000,0.000000,0.000122,0.091632,-0.000188,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000012,0.000252,0.000000,0.000000,0.000120,0.091446,-0.000186,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000253,0.000000,0.000000,0.000118,0.091263,-0.000183,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000000,0.000000,0.000115,0.091082,-0.000181,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000254,0.000000,0.000000,0.000113,0.090904,-0.000178,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000012,0.000255,0.000000,0.000000,0.000112,0.090728,-0.000176,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000011,0.000256,0.000000,0.000000,0.000110,0.090554,-0.000174,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000011,0.000257,0.000000,0.000000,0.000108,0.090383,-0.000171,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000011,0.000257,0.000000,0.000000,0.000106,0.090214,-0.000169,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000246,0.000013,0.000011,0.000258,0.000101,0.000001,0.000104,0.090048,-0.000166,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620820.csv b/test/channel_loss/channel_forcing/et/cat-2620820.csv new file mode 100644 index 000000000..2c601fdbe --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620820.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000125,0.000000,0.000000,0.000000,0.000000,0.001458,0.000276,0.001458,0.000174,0.000174,0.010414,0.425708,-0.004862,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001295,0.000273,0.001295,0.000049,0.000049,0.009391,0.420911,-0.004797,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001158,0.000269,0.001158,0.000000,0.000000,0.008503,0.416227,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001040,0.000265,0.001040,0.000000,0.000000,0.007728,0.411606,-0.004621,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000940,0.000262,0.000940,0.000000,0.000000,0.007049,0.407048,-0.004559,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000853,0.000258,0.000854,0.000000,0.000000,0.006455,0.402550,-0.004497,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000778,0.000255,0.000779,0.000000,0.000000,0.005931,0.398114,-0.004437,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000713,0.000251,0.000714,0.000000,0.000000,0.005470,0.393736,-0.004377,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000656,0.000248,0.000657,0.000000,0.000000,0.005062,0.389418,-0.004318,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000606,0.000245,0.000607,0.000000,0.000000,0.004700,0.385158,-0.004260,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000562,0.000241,0.000564,0.000000,0.000000,0.004379,0.380955,-0.004203,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000523,0.000238,0.000525,0.000000,0.000000,0.004094,0.376809,-0.004146,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000489,0.000235,0.000492,0.000000,0.000000,0.003840,0.372719,-0.004090,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000459,0.000232,0.000462,0.000000,0.000000,0.003613,0.368684,-0.004035,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000432,0.000228,0.000435,0.000125,0.000125,0.003409,0.364579,-0.004105,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000408,0.000225,0.000411,0.000350,0.000350,0.003227,0.360308,-0.004271,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000386,0.000222,0.000390,0.000516,0.000516,0.003063,0.355931,-0.004377,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000366,0.000218,0.000372,0.000628,0.000628,0.002915,0.351502,-0.004429,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000349,0.000215,0.000355,0.000580,0.000580,0.002780,0.347180,-0.004322,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000333,0.000212,0.000339,0.000514,0.000514,0.002659,0.343106,-0.004074,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000094,0.000000,0.000000,0.000000,0.000007,0.000319,0.000208,0.000326,0.000459,0.000459,0.002549,0.339109,-0.003997,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000471,0.000001,0.000003,0.000001,0.000008,0.000306,0.000206,0.000315,0.000368,0.000368,0.002448,0.335625,-0.003484,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000119,0.000001,0.000000,0.000001,0.000008,0.000294,0.000203,0.000303,0.000324,0.000324,0.002357,0.331886,-0.003738,1.000000,0.000001 +23,2022-08-01 23:00:00,0.000253,0.000001,0.000000,0.000001,0.000009,0.000283,0.000200,0.000293,0.000243,0.000243,0.002274,0.328410,-0.003476,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000151,0.000000,0.000000,0.000000,0.000010,0.000274,0.000197,0.000283,0.000164,0.000164,0.002198,0.324959,-0.003451,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000821,0.000064,0.000117,0.000064,0.000011,0.000265,0.000195,0.000340,0.000069,0.000069,0.002128,0.322192,-0.002767,1.000000,0.000053 +26,2022-08-02 02:00:00,0.001203,0.000180,0.000274,0.000180,0.000011,0.000257,0.000193,0.000448,0.000000,0.000000,0.002065,0.319754,-0.002438,1.000000,0.000147 +27,2022-08-02 03:00:00,0.001111,0.000222,0.000236,0.000222,0.000012,0.000249,0.000191,0.000483,0.000000,0.000000,0.002007,0.317294,-0.002460,1.000000,0.000161 +28,2022-08-02 04:00:00,0.001301,0.000285,0.000312,0.000285,0.000013,0.000242,0.000190,0.000541,0.000000,0.000000,0.001954,0.314981,-0.002313,1.000000,0.000188 +29,2022-08-02 05:00:00,0.000604,0.000168,0.000077,0.000168,0.000014,0.000236,0.000187,0.000418,0.000000,0.000000,0.001905,0.312243,-0.002738,1.000000,0.000097 +30,2022-08-02 06:00:00,0.000361,0.000097,0.000029,0.000097,0.000015,0.000230,0.000185,0.000343,0.000000,0.000000,0.001860,0.309349,-0.002894,1.000000,0.000028 +31,2022-08-02 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000016,0.000225,0.000183,0.000263,0.000000,0.000000,0.001818,0.306167,-0.003182,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000017,0.000220,0.000180,0.000242,0.000000,0.000000,0.001778,0.303027,-0.003140,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000215,0.000178,0.000233,0.000000,0.000000,0.001740,0.299930,-0.003097,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000211,0.000175,0.000229,0.000000,0.000000,0.001705,0.296874,-0.003056,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000207,0.000173,0.000226,0.000000,0.000000,0.001671,0.293860,-0.003015,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000203,0.000171,0.000223,0.000000,0.000000,0.001640,0.290886,-0.002974,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000199,0.000168,0.000220,0.000000,0.000000,0.001609,0.287952,-0.002934,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000195,0.000166,0.000218,0.000115,0.000115,0.001580,0.284944,-0.003008,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000192,0.000164,0.000215,0.000317,0.000317,0.001552,0.281777,-0.003167,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000188,0.000161,0.000213,0.000451,0.000451,0.001525,0.278521,-0.003256,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000185,0.000158,0.000211,0.000553,0.000553,0.001499,0.275208,-0.003313,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000468,0.000000,0.000000,0.000000,0.000027,0.000182,0.000156,0.000209,0.000634,0.000634,0.001473,0.272321,-0.002887,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000178,0.000154,0.000207,0.000569,0.000569,0.001449,0.269138,-0.003183,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000175,0.000151,0.000205,0.000527,0.000527,0.001424,0.265977,-0.003161,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000172,0.000149,0.000203,0.000507,0.000507,0.001401,0.262878,-0.003099,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000170,0.000146,0.000201,0.000434,0.000434,0.001378,0.259893,-0.002985,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000167,0.000144,0.000200,0.000321,0.000321,0.001355,0.257059,-0.002834,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000164,0.000142,0.000198,0.000176,0.000176,0.001333,0.254407,-0.002652,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000161,0.000140,0.000197,0.000030,0.000030,0.001312,0.251934,-0.002473,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000159,0.000138,0.000196,0.000000,0.000000,0.001292,0.249525,-0.002410,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000156,0.000136,0.000194,0.000000,0.000000,0.001272,0.247147,-0.002377,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000154,0.000135,0.000193,0.000000,0.000000,0.001252,0.244802,-0.002345,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000152,0.000133,0.000192,0.000000,0.000000,0.001234,0.242488,-0.002314,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000149,0.000131,0.000191,0.000000,0.000000,0.001215,0.240206,-0.002283,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000147,0.000129,0.000190,0.000000,0.000000,0.001198,0.237954,-0.002252,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000145,0.000128,0.000189,0.000000,0.000000,0.001180,0.235733,-0.002221,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000143,0.000126,0.000189,0.000000,0.000000,0.001163,0.233541,-0.002192,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000141,0.000124,0.000188,0.000000,0.000000,0.001147,0.231379,-0.002162,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000139,0.000122,0.000187,0.000000,0.000000,0.001130,0.229246,-0.002133,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000137,0.000121,0.000187,0.000000,0.000000,0.001115,0.227142,-0.002104,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000135,0.000119,0.000186,0.000000,0.000000,0.001099,0.225066,-0.002076,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000133,0.000117,0.000186,0.000122,0.000122,0.001084,0.222897,-0.002169,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000131,0.000116,0.000185,0.000361,0.000361,0.001068,0.220522,-0.002375,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000129,0.000114,0.000185,0.000525,0.000525,0.001053,0.218017,-0.002505,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000127,0.000112,0.000184,0.000632,0.000632,0.001037,0.215440,-0.002577,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000125,0.000110,0.000184,0.000622,0.000622,0.001022,0.212908,-0.002533,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000123,0.000108,0.000183,0.000552,0.000552,0.001006,0.210479,-0.002429,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003859,0.000749,0.001361,0.000749,0.000061,0.000122,0.000108,0.000931,0.000498,0.000498,0.000993,0.210600,0.000121,1.000000,0.000613 +69,2022-08-03 21:00:00,0.000585,0.000342,0.000003,0.000342,0.000063,0.000120,0.000106,0.000524,0.000469,0.000469,0.000979,0.208858,-0.001742,1.000000,0.000273 +70,2022-08-03 22:00:00,0.000000,0.000273,0.000000,0.000273,0.000064,0.000118,0.000105,0.000455,0.000393,0.000393,0.000966,0.206641,-0.002218,1.000000,0.000001 +71,2022-08-03 23:00:00,0.000092,0.000001,0.000000,0.000001,0.000066,0.000117,0.000103,0.000183,0.000300,0.000300,0.000952,0.204634,-0.002006,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000115,0.000102,0.000182,0.000181,0.000181,0.000939,0.202683,-0.001952,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000113,0.000100,0.000182,0.000041,0.000041,0.000926,0.200895,-0.001788,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000112,0.000099,0.000182,0.000000,0.000000,0.000913,0.199173,-0.001723,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000110,0.000098,0.000182,0.000000,0.000000,0.000901,0.197473,-0.001700,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000109,0.000096,0.000181,0.000000,0.000000,0.000888,0.195796,-0.001677,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000107,0.000095,0.000181,0.000000,0.000000,0.000876,0.194142,-0.001654,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000106,0.000094,0.000181,0.000000,0.000000,0.000864,0.192510,-0.001632,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000104,0.000092,0.000181,0.000000,0.000000,0.000852,0.190901,-0.001610,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000103,0.000091,0.000182,0.000000,0.000000,0.000841,0.189312,-0.001588,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000101,0.000090,0.000182,0.000000,0.000000,0.000829,0.187746,-0.001567,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000100,0.000089,0.000182,0.000000,0.000000,0.000818,0.186200,-0.001546,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000099,0.000088,0.000182,0.000000,0.000000,0.000807,0.184675,-0.001525,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000097,0.000086,0.000182,0.000000,0.000000,0.000796,0.183171,-0.001504,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000096,0.000085,0.000182,0.000000,0.000000,0.000786,0.181686,-0.001484,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000095,0.000084,0.000182,0.000120,0.000120,0.000775,0.180103,-0.001583,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000093,0.000083,0.000183,0.000362,0.000362,0.000764,0.178304,-0.001800,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000092,0.000081,0.000183,0.000524,0.000524,0.000753,0.176368,-0.001935,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000091,0.000079,0.000183,0.000638,0.000638,0.000742,0.174347,-0.002022,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000089,0.000078,0.000183,0.000691,0.000691,0.000731,0.172300,-0.002047,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000088,0.000076,0.000183,0.000614,0.000614,0.000719,0.170357,-0.001943,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000086,0.000075,0.000183,0.000565,0.000565,0.000708,0.168487,-0.001869,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000085,0.000073,0.000183,0.000521,0.000521,0.000696,0.166687,-0.001800,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000084,0.000072,0.000184,0.000440,0.000440,0.000685,0.164991,-0.001696,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000082,0.000071,0.000184,0.000331,0.000331,0.000674,0.163425,-0.001566,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000081,0.000070,0.000184,0.000189,0.000189,0.000663,0.162020,-0.001405,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000079,0.000069,0.000184,0.000045,0.000045,0.000652,0.160776,-0.001244,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000078,0.000068,0.000184,0.000000,0.000000,0.000642,0.159594,-0.001183,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000077,0.000067,0.000185,0.000000,0.000000,0.000632,0.158427,-0.001167,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000076,0.000066,0.000185,0.000000,0.000000,0.000622,0.157276,-0.001151,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000075,0.000065,0.000185,0.000000,0.000000,0.000613,0.156140,-0.001136,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000074,0.000064,0.000186,0.000000,0.000000,0.000603,0.155020,-0.001120,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000072,0.000063,0.000186,0.000000,0.000000,0.000594,0.153914,-0.001105,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000071,0.000063,0.000187,0.000000,0.000000,0.000586,0.152824,-0.001090,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000070,0.000062,0.000187,0.000000,0.000000,0.000577,0.151748,-0.001076,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000069,0.000061,0.000188,0.000000,0.000000,0.000569,0.150687,-0.001061,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000068,0.000060,0.000188,0.000000,0.000000,0.000561,0.149640,-0.001047,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000067,0.000059,0.000189,0.000000,0.000000,0.000553,0.148607,-0.001033,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000066,0.000058,0.000189,0.000000,0.000000,0.000545,0.147588,-0.001019,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000065,0.000058,0.000190,0.000132,0.000132,0.000537,0.146453,-0.001136,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000064,0.000057,0.000191,0.000374,0.000374,0.000529,0.145093,-0.001359,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000063,0.000055,0.000191,0.000534,0.000534,0.000521,0.143595,-0.001499,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000062,0.000054,0.000192,0.000645,0.000645,0.000513,0.142007,-0.001588,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000061,0.000053,0.000192,0.000642,0.000642,0.000504,0.140443,-0.001563,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000060,0.000052,0.000193,0.000582,0.000582,0.000496,0.139023,-0.001421,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000059,0.000051,0.000193,0.000526,0.000526,0.000487,0.137676,-0.001347,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000058,0.000050,0.000193,0.000471,0.000471,0.000479,0.136401,-0.001274,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000057,0.000049,0.000194,0.000401,0.000401,0.000470,0.135213,-0.001188,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000138,0.000056,0.000048,0.000194,0.000301,0.000301,0.000462,0.134326,-0.000887,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000140,0.000055,0.000047,0.000195,0.000181,0.000181,0.000455,0.133383,-0.000943,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000798,0.000048,0.000087,0.000048,0.000141,0.000054,0.000047,0.000243,0.000062,0.000062,0.000447,0.133210,-0.000173,1.000000,0.000039 +122,2022-08-06 02:00:00,0.001710,0.000244,0.000404,0.000244,0.000143,0.000054,0.000048,0.000440,0.000000,0.000000,0.000441,0.133687,0.000476,1.000000,0.000199 +123,2022-08-06 03:00:00,0.000738,0.000166,0.000087,0.000166,0.000144,0.000053,0.000047,0.000364,0.000000,0.000000,0.000436,0.133511,-0.000176,1.000000,0.000120 +124,2022-08-06 04:00:00,0.000380,0.000116,0.000025,0.000116,0.000146,0.000052,0.000047,0.000314,0.000000,0.000000,0.000431,0.133047,-0.000465,1.000000,0.000028 +125,2022-08-06 05:00:00,0.000380,0.000037,0.000024,0.000037,0.000147,0.000052,0.000047,0.000236,0.000000,0.000000,0.000426,0.132588,-0.000459,1.000000,0.000016 +126,2022-08-06 06:00:00,0.000562,0.000040,0.000052,0.000040,0.000149,0.000051,0.000047,0.000239,0.000000,0.000000,0.000421,0.132287,-0.000300,1.000000,0.000028 +127,2022-08-06 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000150,0.000051,0.000046,0.000219,0.000000,0.000000,0.000416,0.131488,-0.000799,1.000000,0.000010 +128,2022-08-06 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000152,0.000050,0.000045,0.000212,0.000000,0.000000,0.000412,0.130700,-0.000789,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000049,0.000045,0.000203,0.000000,0.000000,0.000407,0.129922,-0.000778,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000049,0.000044,0.000203,0.000000,0.000000,0.000402,0.129154,-0.000767,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000048,0.000043,0.000204,0.000000,0.000000,0.000397,0.128397,-0.000757,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000048,0.000043,0.000205,0.000000,0.000000,0.000392,0.127650,-0.000747,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000047,0.000042,0.000206,0.000000,0.000000,0.000388,0.126913,-0.000737,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000046,0.000042,0.000207,0.000111,0.000111,0.000383,0.126077,-0.000836,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000046,0.000041,0.000208,0.000338,0.000338,0.000378,0.125028,-0.001049,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000045,0.000040,0.000209,0.000484,0.000484,0.000372,0.123849,-0.001179,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000045,0.000039,0.000209,0.000607,0.000607,0.000367,0.122565,-0.001284,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000038,0.000210,0.000684,0.000684,0.000361,0.121221,-0.001343,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000037,0.000211,0.000631,0.000631,0.000355,0.119949,-0.001273,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000036,0.000211,0.000570,0.000570,0.000348,0.118753,-0.001195,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000041,0.000035,0.000212,0.000528,0.000528,0.000342,0.117615,-0.001138,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000034,0.000213,0.000440,0.000440,0.000335,0.116579,-0.001036,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000040,0.000033,0.000213,0.000328,0.000328,0.000329,0.115668,-0.000911,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000039,0.000033,0.000214,0.000183,0.000183,0.000323,0.114911,-0.000757,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000215,0.000041,0.000041,0.000317,0.114306,-0.000606,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000038,0.000032,0.000215,0.000000,0.000000,0.000311,0.113748,-0.000557,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000037,0.000032,0.000216,0.000000,0.000000,0.000305,0.113199,-0.000550,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000031,0.000217,0.000000,0.000000,0.000300,0.112656,-0.000542,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000031,0.000217,0.000000,0.000000,0.000295,0.112121,-0.000535,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000035,0.000030,0.000218,0.000000,0.000000,0.000290,0.111593,-0.000528,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000030,0.000219,0.000000,0.000000,0.000285,0.111072,-0.000521,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000034,0.000029,0.000220,0.000000,0.000000,0.000281,0.110559,-0.000514,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000029,0.000221,0.000000,0.000000,0.000276,0.110052,-0.000507,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000029,0.000222,0.000000,0.000000,0.000272,0.109552,-0.000500,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000028,0.000222,0.000000,0.000000,0.000268,0.109058,-0.000493,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000032,0.000028,0.000223,0.000000,0.000000,0.000264,0.108572,-0.000487,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000028,0.000224,0.000000,0.000000,0.000260,0.108092,-0.000480,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000027,0.000225,0.000111,0.000111,0.000256,0.107509,-0.000583,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000026,0.000226,0.000351,0.000351,0.000252,0.106697,-0.000812,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000026,0.000227,0.000508,0.000508,0.000248,0.105741,-0.000956,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000025,0.000227,0.000613,0.000613,0.000243,0.104695,-0.001046,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000024,0.000228,0.000678,0.000678,0.000238,0.103598,-0.001096,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000023,0.000229,0.000620,0.000620,0.000233,0.102574,-0.001025,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000022,0.000229,0.000559,0.000559,0.000228,0.101623,-0.000951,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000022,0.000230,0.000522,0.000522,0.000223,0.100722,-0.000901,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000231,0.000433,0.000433,0.000218,0.099920,-0.000802,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000231,0.000324,0.000324,0.000213,0.099236,-0.000684,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000020,0.000232,0.000152,0.000152,0.000208,0.098732,-0.000505,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000020,0.000233,0.000014,0.000014,0.000203,0.098370,-0.000362,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000234,0.000000,0.000000,0.000199,0.098027,-0.000343,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000019,0.000234,0.000000,0.000000,0.000194,0.097689,-0.000338,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000191,0.097355,-0.000334,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000000,0.000000,0.000187,0.097026,-0.000329,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000237,0.000000,0.000000,0.000183,0.096702,-0.000325,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000018,0.000237,0.000000,0.000000,0.000180,0.096381,-0.000320,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000177,0.096065,-0.000316,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000173,0.095753,-0.000312,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000000,0.000000,0.000171,0.095446,-0.000308,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000000,0.000000,0.000168,0.095143,-0.000303,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000242,0.000000,0.000000,0.000165,0.094844,-0.000299,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000017,0.000243,0.000000,0.000000,0.000162,0.094549,-0.000295,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000017,0.000243,0.000095,0.000095,0.000160,0.094164,-0.000385,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000016,0.000244,0.000335,0.000335,0.000157,0.093547,-0.000617,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000016,0.000245,0.000499,0.000000,0.000154,0.093270,-0.000278,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000016,0.000246,0.000595,0.000000,0.000151,0.092995,-0.000274,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000016,0.000247,0.000669,0.000000,0.000149,0.092725,-0.000270,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000015,0.000248,0.000608,0.000000,0.000147,0.092458,-0.000267,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000015,0.000249,0.000545,0.000000,0.000144,0.092195,-0.000263,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000249,0.000522,0.000000,0.000142,0.091935,-0.000260,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000015,0.000250,0.000436,0.000000,0.000140,0.091679,-0.000256,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000015,0.000251,0.000324,0.000000,0.000138,0.091426,-0.000253,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000014,0.000252,0.000183,0.000000,0.000135,0.091177,-0.000249,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000014,0.000253,0.000033,0.000000,0.000133,0.090931,-0.000246,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000014,0.000254,0.000000,0.000000,0.000131,0.090688,-0.000243,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000000,0.000000,0.000130,0.090449,-0.000239,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000014,0.000255,0.000000,0.000000,0.000128,0.090212,-0.000236,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000013,0.000256,0.000000,0.000000,0.000126,0.089979,-0.000233,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000013,0.000257,0.000000,0.000000,0.000124,0.089750,-0.000230,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000015,0.000013,0.000258,0.000000,0.000000,0.000122,0.089523,-0.000227,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000013,0.000259,0.000000,0.000000,0.000120,0.089299,-0.000223,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000014,0.000013,0.000260,0.000000,0.000000,0.000119,0.089079,-0.000221,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000013,0.000261,0.000000,0.000000,0.000117,0.088861,-0.000218,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000012,0.000261,0.000000,0.000000,0.000115,0.088646,-0.000215,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000014,0.000012,0.000262,0.000000,0.000000,0.000114,0.088434,-0.000212,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000012,0.000263,0.000000,0.000000,0.000112,0.088225,-0.000209,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000013,0.000012,0.000264,0.000102,0.000000,0.000111,0.088019,-0.000206,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620821.csv b/test/channel_loss/channel_forcing/et/cat-2620821.csv new file mode 100644 index 000000000..90ad5bcdf --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620821.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000045,0.000000,0.000000,0.000000,0.000000,0.001522,0.000731,0.001522,0.000164,0.000164,0.010805,0.424003,-0.005147,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001410,0.000719,0.001410,0.000042,0.000042,0.010114,0.419012,-0.004991,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001314,0.000708,0.001314,0.000000,0.000000,0.009508,0.414140,-0.004872,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001230,0.000697,0.001231,0.000000,0.000000,0.008975,0.409344,-0.004796,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001158,0.000686,0.001158,0.000000,0.000000,0.008503,0.404623,-0.004722,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001094,0.000676,0.001094,0.000000,0.000000,0.008085,0.399974,-0.004648,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001038,0.000665,0.001039,0.000000,0.000000,0.007712,0.395399,-0.004576,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000988,0.000655,0.000989,0.000000,0.000000,0.007378,0.390894,-0.004505,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000944,0.000645,0.000945,0.000000,0.000000,0.007079,0.386459,-0.004435,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000905,0.000635,0.000906,0.000000,0.000000,0.006809,0.382093,-0.004366,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000869,0.000625,0.000871,0.000000,0.000000,0.006564,0.377795,-0.004298,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000837,0.000615,0.000839,0.000000,0.000000,0.006342,0.373564,-0.004231,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000808,0.000605,0.000810,0.000000,0.000000,0.006140,0.369399,-0.004165,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000781,0.000596,0.000784,0.000000,0.000000,0.005954,0.365298,-0.004101,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000757,0.000586,0.000760,0.000122,0.000122,0.005784,0.361141,-0.004157,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000735,0.000577,0.000738,0.000349,0.000349,0.005625,0.356825,-0.004316,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000714,0.000566,0.000718,0.000516,0.000516,0.005478,0.352412,-0.004413,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000695,0.000556,0.000699,0.000633,0.000633,0.005339,0.347952,-0.004460,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000676,0.000546,0.000682,0.000584,0.000584,0.005209,0.343611,-0.004342,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000060,0.000000,0.000000,0.000000,0.000006,0.000659,0.000537,0.000665,0.000516,0.000516,0.005086,0.339462,-0.004148,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000060,0.000000,0.000000,0.000000,0.000006,0.000643,0.000527,0.000650,0.000466,0.000466,0.004971,0.335428,-0.004034,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000711,0.000006,0.000010,0.000006,0.000007,0.000628,0.000520,0.000641,0.000367,0.000367,0.004862,0.332184,-0.003244,1.000000,0.000005 +22,2022-08-01 22:00:00,0.000079,0.000003,0.000000,0.000003,0.000008,0.000614,0.000511,0.000624,0.000323,0.000323,0.004759,0.328422,-0.003762,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000329,0.000003,0.000001,0.000003,0.000008,0.000601,0.000504,0.000612,0.000232,0.000232,0.004662,0.325053,-0.003369,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000182,0.000000,0.000000,0.000000,0.000009,0.000588,0.000496,0.000597,0.000160,0.000160,0.004570,0.321664,-0.003389,1.000000,0.000000 +25,2022-08-02 01:00:00,0.001023,0.000041,0.000075,0.000041,0.000010,0.000576,0.000490,0.000627,0.000067,0.000067,0.004484,0.319173,-0.002491,1.000000,0.000034 +26,2022-08-02 02:00:00,0.001580,0.000125,0.000193,0.000125,0.000011,0.000565,0.000486,0.000701,0.000000,0.000000,0.004404,0.317218,-0.001955,1.000000,0.000102 +27,2022-08-02 03:00:00,0.001427,0.000151,0.000159,0.000151,0.000011,0.000555,0.000481,0.000717,0.000000,0.000000,0.004330,0.315177,-0.002041,1.000000,0.000110 +28,2022-08-02 04:00:00,0.001651,0.000193,0.000208,0.000193,0.000012,0.000546,0.000477,0.000751,0.000000,0.000000,0.004261,0.313339,-0.001838,1.000000,0.000126 +29,2022-08-02 05:00:00,0.000588,0.000100,0.000029,0.000100,0.000013,0.000537,0.000471,0.000649,0.000000,0.000000,0.004194,0.310660,-0.002679,1.000000,0.000055 +30,2022-08-02 06:00:00,0.000171,0.000050,0.000003,0.000050,0.000014,0.000528,0.000464,0.000592,0.000000,0.000000,0.004130,0.307639,-0.003022,1.000000,0.000007 +31,2022-08-02 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000015,0.000520,0.000456,0.000541,0.000000,0.000000,0.004067,0.304498,-0.003141,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000015,0.000511,0.000449,0.000527,0.000000,0.000000,0.004005,0.301406,-0.003092,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000503,0.000442,0.000519,0.000000,0.000000,0.003944,0.298363,-0.003044,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000495,0.000435,0.000512,0.000000,0.000000,0.003884,0.295366,-0.002996,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000487,0.000429,0.000505,0.000000,0.000000,0.003826,0.292416,-0.002950,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000480,0.000422,0.000499,0.000000,0.000000,0.003768,0.289512,-0.002904,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000472,0.000415,0.000492,0.000000,0.000000,0.003712,0.286654,-0.002859,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000021,0.000465,0.000409,0.000486,0.000115,0.000115,0.003656,0.283730,-0.002924,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000022,0.000457,0.000402,0.000479,0.000310,0.000310,0.003601,0.280657,-0.003072,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000450,0.000394,0.000473,0.000447,0.000447,0.003546,0.277496,-0.003161,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000442,0.000387,0.000466,0.000555,0.000555,0.003490,0.274278,-0.003218,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000781,0.000001,0.000002,0.000001,0.000025,0.000435,0.000381,0.000461,0.000631,0.000631,0.003436,0.271802,-0.002476,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000152,0.000000,0.000000,0.000000,0.000026,0.000428,0.000375,0.000455,0.000565,0.000565,0.003383,0.268813,-0.002990,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000421,0.000368,0.000449,0.000523,0.000523,0.003329,0.265761,-0.003052,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000414,0.000361,0.000442,0.000503,0.000503,0.003276,0.262776,-0.002985,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000407,0.000354,0.000436,0.000433,0.000433,0.003223,0.259906,-0.002870,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000400,0.000348,0.000431,0.000312,0.000312,0.003171,0.257201,-0.002706,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000393,0.000342,0.000425,0.000169,0.000169,0.003120,0.254678,-0.002523,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000387,0.000337,0.000419,0.000024,0.000024,0.003070,0.252337,-0.002341,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000380,0.000331,0.000414,0.000000,0.000000,0.003021,0.250056,-0.002281,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000374,0.000326,0.000409,0.000000,0.000000,0.002973,0.247810,-0.002245,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000368,0.000321,0.000404,0.000000,0.000000,0.002926,0.245600,-0.002211,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000362,0.000316,0.000399,0.000000,0.000000,0.002880,0.243424,-0.002176,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000356,0.000311,0.000395,0.000000,0.000000,0.002836,0.241281,-0.002142,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000350,0.000307,0.000390,0.000000,0.000000,0.002792,0.239172,-0.002109,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000345,0.000302,0.000386,0.000000,0.000000,0.002749,0.237096,-0.002076,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000339,0.000297,0.000381,0.000000,0.000000,0.002706,0.235052,-0.002044,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000334,0.000292,0.000377,0.000000,0.000000,0.002665,0.233040,-0.002012,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000329,0.000288,0.000373,0.000000,0.000000,0.002624,0.231059,-0.001981,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000323,0.000283,0.000369,0.000000,0.000000,0.002584,0.229109,-0.001950,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000318,0.000279,0.000365,0.000000,0.000000,0.002545,0.227189,-0.001920,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000313,0.000274,0.000361,0.000119,0.000119,0.002506,0.225181,-0.002008,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000308,0.000269,0.000358,0.000359,0.000359,0.002467,0.222969,-0.002212,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000303,0.000264,0.000354,0.000527,0.000527,0.002428,0.220626,-0.002343,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000298,0.000258,0.000350,0.000636,0.000636,0.002388,0.218212,-0.002414,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000293,0.000253,0.000346,0.000625,0.000625,0.002348,0.215846,-0.002366,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000288,0.000248,0.000342,0.000548,0.000548,0.002308,0.213593,-0.002253,1.000000,0.000000 +68,2022-08-03 20:00:00,0.006132,0.000910,0.001654,0.000910,0.000056,0.000284,0.000253,0.001249,0.000496,0.000496,0.002277,0.215834,0.002241,1.000000,0.000744 +69,2022-08-03 21:00:00,0.000940,0.000423,0.000016,0.000423,0.000057,0.000280,0.000250,0.000760,0.000460,0.000460,0.002247,0.214577,-0.001257,1.000000,0.000338 +70,2022-08-03 22:00:00,0.000000,0.000335,0.000000,0.000335,0.000058,0.000276,0.000245,0.000669,0.000390,0.000390,0.002217,0.212499,-0.002078,1.000000,0.000003 +71,2022-08-03 23:00:00,0.000181,0.000003,0.000000,0.000003,0.000060,0.000272,0.000241,0.000335,0.000292,0.000292,0.002186,0.210728,-0.001771,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000268,0.000237,0.000329,0.000178,0.000178,0.002155,0.208919,-0.001809,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000264,0.000233,0.000326,0.000035,0.000035,0.002124,0.207279,-0.001640,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000260,0.000230,0.000324,0.000000,0.000000,0.002093,0.205698,-0.001581,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000256,0.000226,0.000321,0.000000,0.000000,0.002063,0.204142,-0.001556,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000253,0.000223,0.000319,0.000000,0.000000,0.002033,0.202611,-0.001532,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000249,0.000219,0.000316,0.000000,0.000000,0.002004,0.201103,-0.001508,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000245,0.000216,0.000314,0.000000,0.000000,0.001974,0.199618,-0.001484,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000241,0.000212,0.000311,0.000000,0.000000,0.001945,0.198157,-0.001461,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000238,0.000209,0.000309,0.000000,0.000000,0.001917,0.196718,-0.001439,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000234,0.000206,0.000307,0.000000,0.000000,0.001888,0.195302,-0.001416,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000231,0.000203,0.000305,0.000000,0.000000,0.001861,0.193907,-0.001394,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000227,0.000199,0.000302,0.000000,0.000000,0.001833,0.192535,-0.001373,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000224,0.000196,0.000300,0.000000,0.000000,0.001806,0.191183,-0.001351,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000220,0.000193,0.000298,0.000000,0.000000,0.001779,0.189853,-0.001330,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000217,0.000190,0.000296,0.000117,0.000117,0.001752,0.188428,-0.001425,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000213,0.000186,0.000294,0.000358,0.000358,0.001725,0.186788,-0.001640,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000210,0.000182,0.000292,0.000525,0.000525,0.001697,0.185009,-0.001779,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000206,0.000178,0.000290,0.000643,0.000643,0.001669,0.183142,-0.001867,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000203,0.000174,0.000287,0.000692,0.000692,0.001640,0.181256,-0.001886,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000199,0.000170,0.000285,0.000610,0.000610,0.001611,0.179480,-0.001776,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000195,0.000166,0.000283,0.000571,0.000571,0.001581,0.177769,-0.001711,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000191,0.000162,0.000280,0.000527,0.000527,0.001552,0.176129,-0.001640,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000188,0.000158,0.000278,0.000443,0.000443,0.001522,0.174596,-0.001533,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000184,0.000155,0.000276,0.000324,0.000324,0.001493,0.173204,-0.001392,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000181,0.000152,0.000273,0.000182,0.000182,0.001465,0.171974,-0.001230,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000177,0.000150,0.000271,0.000036,0.000036,0.001438,0.170907,-0.001067,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000174,0.000148,0.000269,0.000000,0.000000,0.001411,0.169892,-0.001015,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000171,0.000145,0.000268,0.000000,0.000000,0.001386,0.168893,-0.000999,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000168,0.000143,0.000266,0.000000,0.000000,0.001361,0.167909,-0.000984,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000165,0.000141,0.000264,0.000000,0.000000,0.001338,0.166940,-0.000969,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000162,0.000139,0.000263,0.000000,0.000000,0.001314,0.165987,-0.000953,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000159,0.000136,0.000261,0.000000,0.000000,0.001292,0.165048,-0.000939,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000156,0.000134,0.000260,0.000000,0.000000,0.001270,0.164124,-0.000924,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000153,0.000132,0.000258,0.000000,0.000000,0.001249,0.163215,-0.000910,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000151,0.000130,0.000257,0.000000,0.000000,0.001228,0.162319,-0.000896,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000148,0.000128,0.000256,0.000000,0.000000,0.001208,0.161437,-0.000882,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000146,0.000126,0.000255,0.000000,0.000000,0.001188,0.160570,-0.000868,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000143,0.000124,0.000254,0.000000,0.000000,0.001169,0.159715,-0.000854,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000141,0.000122,0.000253,0.000130,0.000130,0.001150,0.158746,-0.000969,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000139,0.000119,0.000252,0.000373,0.000373,0.001130,0.157554,-0.001193,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000136,0.000116,0.000250,0.000537,0.000537,0.001110,0.156217,-0.001337,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000134,0.000113,0.000249,0.000652,0.000652,0.001090,0.154789,-0.001428,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000131,0.000110,0.000248,0.000655,0.000655,0.001068,0.153379,-0.001410,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000045,0.000000,0.000000,0.000000,0.000118,0.000128,0.000107,0.000246,0.000598,0.000598,0.001047,0.152092,-0.001287,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000045,0.000000,0.000000,0.000000,0.000119,0.000126,0.000104,0.000245,0.000547,0.000547,0.001025,0.150875,-0.001217,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000053,0.000000,0.000000,0.000000,0.000121,0.000123,0.000101,0.000244,0.000467,0.000467,0.001003,0.149764,-0.001111,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000058,0.000000,0.000000,0.000000,0.000122,0.000120,0.000099,0.000242,0.000408,0.000408,0.000982,0.148733,-0.001031,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000258,0.000000,0.000000,0.000000,0.000123,0.000118,0.000097,0.000241,0.000298,0.000298,0.000962,0.148023,-0.000710,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000011,0.000000,0.000000,0.000000,0.000125,0.000115,0.000095,0.000240,0.000175,0.000175,0.000942,0.147202,-0.000821,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000883,0.000024,0.000043,0.000024,0.000126,0.000113,0.000096,0.000263,0.000057,0.000057,0.000925,0.147326,0.000124,1.000000,0.000019 +122,2022-08-06 02:00:00,0.002140,0.000158,0.000268,0.000158,0.000127,0.000112,0.000098,0.000397,0.000000,0.000000,0.000912,0.148521,0.001195,1.000000,0.000129 +123,2022-08-06 03:00:00,0.000635,0.000090,0.000026,0.000090,0.000128,0.000110,0.000098,0.000328,0.000000,0.000000,0.000900,0.148453,-0.000068,1.000000,0.000065 +124,2022-08-06 04:00:00,0.000106,0.000060,0.000001,0.000060,0.000130,0.000109,0.000097,0.000299,0.000000,0.000000,0.000888,0.147891,-0.000563,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000122,0.000006,0.000001,0.000006,0.000131,0.000107,0.000096,0.000244,0.000000,0.000000,0.000877,0.147352,-0.000538,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000330,0.000004,0.000007,0.000004,0.000132,0.000106,0.000095,0.000242,0.000000,0.000000,0.000866,0.147021,-0.000331,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000134,0.000105,0.000094,0.000240,0.000000,0.000000,0.000855,0.146377,-0.000644,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000135,0.000103,0.000092,0.000239,0.000000,0.000000,0.000844,0.145744,-0.000634,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000102,0.000091,0.000238,0.000000,0.000000,0.000833,0.145120,-0.000624,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000100,0.000089,0.000238,0.000000,0.000000,0.000822,0.144505,-0.000614,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000099,0.000088,0.000238,0.000000,0.000000,0.000811,0.143901,-0.000605,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000098,0.000087,0.000238,0.000000,0.000000,0.000800,0.143305,-0.000595,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000096,0.000085,0.000237,0.000000,0.000000,0.000788,0.142719,-0.000586,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000095,0.000084,0.000237,0.000107,0.000107,0.000777,0.142037,-0.000682,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000093,0.000082,0.000237,0.000334,0.000334,0.000765,0.141141,-0.000896,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000092,0.000079,0.000237,0.000482,0.000482,0.000753,0.140115,-0.001027,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000090,0.000077,0.000236,0.000610,0.000610,0.000739,0.138977,-0.001137,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000088,0.000074,0.000236,0.000690,0.000690,0.000724,0.137779,-0.001198,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000087,0.000071,0.000235,0.000628,0.000628,0.000709,0.136661,-0.001119,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000085,0.000069,0.000234,0.000576,0.000576,0.000694,0.135611,-0.001049,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000083,0.000067,0.000233,0.000531,0.000531,0.000677,0.134622,-0.000989,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000081,0.000065,0.000233,0.000443,0.000443,0.000661,0.133735,-0.000887,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000079,0.000063,0.000232,0.000324,0.000324,0.000646,0.132978,-0.000757,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000077,0.000061,0.000231,0.000180,0.000180,0.000630,0.132376,-0.000603,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000075,0.000060,0.000231,0.000033,0.000033,0.000616,0.131926,-0.000449,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000073,0.000059,0.000230,0.000000,0.000000,0.000602,0.131517,-0.000409,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000072,0.000059,0.000230,0.000000,0.000000,0.000589,0.131115,-0.000403,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000070,0.000058,0.000229,0.000000,0.000000,0.000576,0.130718,-0.000397,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000069,0.000057,0.000229,0.000000,0.000000,0.000564,0.130328,-0.000390,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000067,0.000056,0.000229,0.000000,0.000000,0.000553,0.129943,-0.000384,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000066,0.000055,0.000229,0.000000,0.000000,0.000542,0.129565,-0.000378,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000065,0.000054,0.000228,0.000000,0.000000,0.000531,0.129192,-0.000372,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000063,0.000053,0.000228,0.000000,0.000000,0.000521,0.128826,-0.000367,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000062,0.000052,0.000228,0.000000,0.000000,0.000511,0.128465,-0.000361,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000061,0.000052,0.000228,0.000000,0.000000,0.000502,0.128110,-0.000355,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000060,0.000051,0.000228,0.000000,0.000000,0.000493,0.127760,-0.000350,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000059,0.000050,0.000228,0.000000,0.000000,0.000484,0.127415,-0.000344,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000058,0.000049,0.000228,0.000108,0.000108,0.000475,0.126970,-0.000445,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000057,0.000047,0.000228,0.000347,0.000347,0.000466,0.126296,-0.000674,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000055,0.000046,0.000228,0.000508,0.000508,0.000456,0.125474,-0.000822,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000054,0.000043,0.000228,0.000615,0.000615,0.000446,0.124560,-0.000914,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000053,0.000041,0.000228,0.000682,0.000682,0.000434,0.123594,-0.000966,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000051,0.000039,0.000227,0.000624,0.000624,0.000422,0.122700,-0.000894,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000050,0.000037,0.000227,0.000567,0.000567,0.000410,0.121876,-0.000824,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000048,0.000036,0.000226,0.000518,0.000518,0.000397,0.121113,-0.000763,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000047,0.000034,0.000226,0.000430,0.000430,0.000384,0.120448,-0.000665,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000045,0.000033,0.000226,0.000316,0.000316,0.000372,0.119906,-0.000542,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000044,0.000032,0.000225,0.000146,0.000146,0.000360,0.119541,-0.000366,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000031,0.000225,0.000010,0.000010,0.000349,0.119314,-0.000227,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000041,0.000031,0.000225,0.000000,0.000000,0.000339,0.119101,-0.000213,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000030,0.000225,0.000000,0.000000,0.000330,0.118891,-0.000210,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000039,0.000030,0.000225,0.000000,0.000000,0.000321,0.118685,-0.000207,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000038,0.000030,0.000225,0.000000,0.000000,0.000312,0.118481,-0.000203,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000037,0.000029,0.000225,0.000000,0.000000,0.000305,0.118281,-0.000200,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000036,0.000029,0.000225,0.000000,0.000000,0.000297,0.118084,-0.000197,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000028,0.000225,0.000000,0.000000,0.000290,0.117890,-0.000194,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000028,0.000225,0.000000,0.000000,0.000283,0.117699,-0.000191,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000192,0.000034,0.000027,0.000225,0.000000,0.000000,0.000277,0.117512,-0.000187,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000193,0.000033,0.000027,0.000226,0.000000,0.000000,0.000271,0.117330,-0.000183,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000194,0.000032,0.000026,0.000226,0.000000,0.000000,0.000266,0.117149,-0.000181,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000026,0.000226,0.000000,0.000000,0.000260,0.116969,-0.000179,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000025,0.000226,0.000091,0.000091,0.000255,0.116703,-0.000266,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000227,0.000331,0.000331,0.000249,0.116205,-0.000498,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000023,0.000227,0.000500,0.000500,0.000242,0.115548,-0.000657,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000021,0.000227,0.000601,0.000601,0.000235,0.114801,-0.000747,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000019,0.000227,0.000681,0.000681,0.000227,0.113988,-0.000813,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000026,0.000018,0.000227,0.000613,0.000613,0.000218,0.113254,-0.000734,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000025,0.000016,0.000227,0.000554,0.000554,0.000209,0.112590,-0.000664,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000015,0.000226,0.000521,0.000521,0.000199,0.111969,-0.000621,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000023,0.000013,0.000226,0.000439,0.000439,0.000190,0.111438,-0.000531,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000022,0.000012,0.000226,0.000315,0.000315,0.000180,0.111037,-0.000401,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000021,0.000012,0.000226,0.000177,0.000177,0.000171,0.110778,-0.000259,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000012,0.000226,0.000027,0.000027,0.000163,0.110672,-0.000107,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000011,0.000226,0.000000,0.000000,0.000156,0.110593,-0.000079,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000018,0.000011,0.000226,0.000000,0.000000,0.000149,0.110515,-0.000078,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000011,0.000226,0.000000,0.000000,0.000143,0.110439,-0.000076,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000011,0.000226,0.000000,0.000000,0.000137,0.110364,-0.000075,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000210,0.000016,0.000011,0.000226,0.000000,0.000000,0.000132,0.110290,-0.000073,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000015,0.000011,0.000227,0.000000,0.000000,0.000127,0.110218,-0.000073,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000212,0.000015,0.000010,0.000227,0.000000,0.000000,0.000123,0.110146,-0.000071,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000014,0.000010,0.000227,0.000000,0.000000,0.000119,0.110076,-0.000071,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000014,0.000010,0.000228,0.000000,0.000000,0.000115,0.110006,-0.000070,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000010,0.000228,0.000000,0.000000,0.000111,0.109938,-0.000068,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000010,0.000228,0.000000,0.000000,0.000108,0.109871,-0.000067,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000013,0.000010,0.000229,0.000000,0.000000,0.000105,0.109804,-0.000066,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000009,0.000229,0.000098,0.000098,0.000102,0.109642,-0.000162,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620822.csv b/test/channel_loss/channel_forcing/et/cat-2620822.csv new file mode 100644 index 000000000..e1900cf99 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620822.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000077,0.000000,0.000000,0.000000,0.000000,0.001444,0.000175,0.001444,0.000164,0.000164,0.010327,0.425671,-0.004898,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001270,0.000173,0.001270,0.000040,0.000040,0.009230,0.420882,-0.004789,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001123,0.000170,0.001123,0.000000,0.000000,0.008277,0.416194,-0.004688,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000998,0.000168,0.000999,0.000000,0.000000,0.007447,0.411567,-0.004627,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000892,0.000166,0.000892,0.000000,0.000000,0.006721,0.407000,-0.004567,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000800,0.000164,0.000800,0.000000,0.000000,0.006085,0.402491,-0.004508,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000721,0.000162,0.000721,0.000000,0.000000,0.005526,0.398041,-0.004450,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000652,0.000160,0.000653,0.000000,0.000000,0.005034,0.393649,-0.004393,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000592,0.000158,0.000593,0.000000,0.000000,0.004599,0.389313,-0.004336,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000540,0.000156,0.000541,0.000000,0.000000,0.004215,0.385033,-0.004280,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000494,0.000154,0.000496,0.000000,0.000000,0.003875,0.380808,-0.004225,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000453,0.000152,0.000456,0.000000,0.000000,0.003573,0.376638,-0.004170,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000418,0.000150,0.000420,0.000000,0.000000,0.003305,0.372522,-0.004116,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000386,0.000148,0.000389,0.000000,0.000000,0.003066,0.368459,-0.004063,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000359,0.000146,0.000362,0.000121,0.000121,0.002854,0.364330,-0.004130,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000334,0.000144,0.000338,0.000350,0.000350,0.002664,0.360028,-0.004302,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000312,0.000142,0.000316,0.000523,0.000523,0.002494,0.355610,-0.004418,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000292,0.000139,0.000297,0.000648,0.000648,0.002341,0.351125,-0.004484,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000274,0.000137,0.000280,0.000612,0.000612,0.002204,0.346735,-0.004390,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000125,0.000000,0.000000,0.000000,0.000006,0.000259,0.000135,0.000265,0.000525,0.000525,0.002081,0.342610,-0.004125,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000244,0.000133,0.000252,0.000470,0.000470,0.001970,0.338532,-0.004078,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000531,0.000005,0.000010,0.000005,0.000008,0.000232,0.000132,0.000245,0.000374,0.000374,0.001870,0.335055,-0.003477,1.000000,0.000004 +22,2022-08-01 22:00:00,0.000082,0.000002,0.000000,0.000002,0.000008,0.000220,0.000130,0.000231,0.000323,0.000323,0.001780,0.331238,-0.003817,1.000000,0.000002 +23,2022-08-01 23:00:00,0.000401,0.000007,0.000010,0.000007,0.000009,0.000210,0.000128,0.000226,0.000240,0.000240,0.001698,0.327858,-0.003380,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000341,0.000009,0.000012,0.000009,0.000010,0.000201,0.000127,0.000220,0.000163,0.000163,0.001624,0.324536,-0.003322,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000783,0.000092,0.000158,0.000092,0.000011,0.000192,0.000125,0.000295,0.000068,0.000068,0.001558,0.321643,-0.002892,1.000000,0.000073 +26,2022-08-02 02:00:00,0.001830,0.000463,0.000766,0.000463,0.000012,0.000185,0.000124,0.000659,0.000000,0.000000,0.001497,0.319288,-0.002355,1.000000,0.000376 +27,2022-08-02 03:00:00,0.001702,0.000598,0.000681,0.000598,0.000013,0.000178,0.000123,0.000788,0.000000,0.000000,0.001443,0.316921,-0.002367,1.000000,0.000460 +28,2022-08-02 04:00:00,0.001582,0.000656,0.000604,0.000656,0.000013,0.000172,0.000122,0.000841,0.000000,0.000000,0.001393,0.314542,-0.002379,1.000000,0.000408 +29,2022-08-02 05:00:00,0.000587,0.000347,0.000109,0.000347,0.000014,0.000166,0.000121,0.000527,0.000000,0.000000,0.001348,0.311701,-0.002842,1.000000,0.000170 +30,2022-08-02 06:00:00,0.000297,0.000165,0.000031,0.000165,0.000015,0.000161,0.000119,0.000341,0.000000,0.000000,0.001307,0.308687,-0.003014,1.000000,0.000036 +31,2022-08-02 07:00:00,0.000000,0.000029,0.000000,0.000029,0.000016,0.000156,0.000118,0.000202,0.000000,0.000000,0.001269,0.305449,-0.003238,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000017,0.000152,0.000116,0.000175,0.000000,0.000000,0.001233,0.302253,-0.003196,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000147,0.000115,0.000166,0.000000,0.000000,0.001201,0.299098,-0.003155,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000144,0.000113,0.000163,0.000000,0.000000,0.001170,0.295984,-0.003114,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000140,0.000112,0.000160,0.000000,0.000000,0.001142,0.292910,-0.003074,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000137,0.000110,0.000158,0.000000,0.000000,0.001115,0.289876,-0.003034,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000134,0.000109,0.000156,0.000000,0.000000,0.001091,0.286881,-0.002995,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000131,0.000107,0.000154,0.000113,0.000113,0.001067,0.283814,-0.003068,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000128,0.000106,0.000153,0.000316,0.000316,0.001045,0.280585,-0.003229,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000125,0.000104,0.000151,0.000464,0.000464,0.001024,0.277252,-0.003333,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000123,0.000103,0.000150,0.000579,0.000579,0.001004,0.273849,-0.003403,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000840,0.000006,0.000010,0.000006,0.000028,0.000121,0.000101,0.000154,0.000665,0.000665,0.000985,0.271224,-0.002625,1.000000,0.000005 +43,2022-08-02 19:00:00,0.000129,0.000003,0.000000,0.000003,0.000029,0.000118,0.000100,0.000150,0.000580,0.000580,0.000966,0.268025,-0.003198,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000000,0.000002,0.000000,0.000002,0.000030,0.000116,0.000098,0.000149,0.000521,0.000521,0.000949,0.264798,-0.003227,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000114,0.000097,0.000146,0.000497,0.000497,0.000931,0.261636,-0.003162,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000112,0.000095,0.000145,0.000423,0.000423,0.000915,0.258589,-0.003047,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000110,0.000094,0.000144,0.000306,0.000306,0.000899,0.255697,-0.002893,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000108,0.000093,0.000143,0.000166,0.000166,0.000884,0.252980,-0.002717,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000106,0.000092,0.000143,0.000021,0.000021,0.000869,0.250441,-0.002539,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000104,0.000090,0.000142,0.000000,0.000000,0.000855,0.247956,-0.002485,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000103,0.000089,0.000142,0.000000,0.000000,0.000841,0.245503,-0.002453,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000101,0.000088,0.000142,0.000000,0.000000,0.000828,0.243082,-0.002421,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000100,0.000087,0.000142,0.000000,0.000000,0.000816,0.240692,-0.002390,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000098,0.000086,0.000141,0.000000,0.000000,0.000803,0.238332,-0.002359,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000097,0.000085,0.000141,0.000000,0.000000,0.000791,0.236004,-0.002329,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000095,0.000084,0.000141,0.000000,0.000000,0.000780,0.233705,-0.002299,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000094,0.000083,0.000141,0.000000,0.000000,0.000768,0.231436,-0.002269,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000092,0.000081,0.000141,0.000000,0.000000,0.000757,0.229197,-0.002240,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000091,0.000080,0.000141,0.000000,0.000000,0.000747,0.226986,-0.002211,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000090,0.000079,0.000141,0.000000,0.000000,0.000736,0.224804,-0.002182,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000089,0.000078,0.000142,0.000000,0.000000,0.000726,0.222650,-0.002154,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000087,0.000077,0.000142,0.000119,0.000119,0.000716,0.220407,-0.002243,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000086,0.000076,0.000142,0.000360,0.000360,0.000706,0.217955,-0.002453,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000085,0.000075,0.000142,0.000530,0.000530,0.000696,0.215366,-0.002588,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000084,0.000074,0.000142,0.000646,0.000646,0.000686,0.212697,-0.002669,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000082,0.000072,0.000143,0.000647,0.000647,0.000676,0.210061,-0.002636,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000081,0.000071,0.000143,0.000562,0.000562,0.000666,0.207543,-0.002518,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004510,0.001247,0.002268,0.001247,0.000063,0.000080,0.000071,0.001390,0.000502,0.000502,0.000657,0.207330,-0.000212,1.000000,0.001020 +69,2022-08-03 21:00:00,0.000441,0.000567,0.000000,0.000567,0.000065,0.000079,0.000070,0.000711,0.000453,0.000453,0.000648,0.205391,-0.001939,1.000000,0.000454 +70,2022-08-03 22:00:00,0.000000,0.000454,0.000000,0.000454,0.000066,0.000078,0.000069,0.000598,0.000385,0.000385,0.000639,0.203108,-0.002283,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000077,0.000068,0.000145,0.000291,0.000291,0.000630,0.201010,-0.002098,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000076,0.000067,0.000145,0.000177,0.000177,0.000622,0.198989,-0.002021,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000075,0.000066,0.000145,0.000032,0.000032,0.000613,0.197138,-0.001852,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000074,0.000065,0.000146,0.000000,0.000000,0.000605,0.195342,-0.001796,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000073,0.000064,0.000147,0.000000,0.000000,0.000597,0.193569,-0.001773,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000072,0.000064,0.000147,0.000000,0.000000,0.000589,0.191818,-0.001750,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000071,0.000063,0.000148,0.000000,0.000000,0.000581,0.190091,-0.001728,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000070,0.000062,0.000148,0.000000,0.000000,0.000573,0.188386,-0.001705,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000069,0.000061,0.000149,0.000000,0.000000,0.000565,0.186702,-0.001683,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000068,0.000060,0.000150,0.000000,0.000000,0.000558,0.185041,-0.001661,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000067,0.000060,0.000150,0.000000,0.000000,0.000550,0.183401,-0.001640,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000066,0.000059,0.000151,0.000000,0.000000,0.000543,0.181782,-0.001619,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000065,0.000058,0.000152,0.000000,0.000000,0.000536,0.180184,-0.001598,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000064,0.000057,0.000152,0.000000,0.000000,0.000529,0.178607,-0.001577,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000064,0.000057,0.000153,0.000000,0.000000,0.000522,0.177050,-0.001557,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000063,0.000056,0.000154,0.000115,0.000115,0.000515,0.175400,-0.001650,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000093,0.000062,0.000055,0.000155,0.000356,0.000356,0.000508,0.173534,-0.001866,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000061,0.000054,0.000155,0.000529,0.000529,0.000501,0.171521,-0.002013,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000060,0.000053,0.000156,0.000654,0.000654,0.000494,0.169410,-0.002111,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000059,0.000052,0.000157,0.000699,0.000699,0.000487,0.167281,-0.002128,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000058,0.000051,0.000157,0.000619,0.000619,0.000480,0.165260,-0.002021,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000057,0.000050,0.000158,0.000572,0.000572,0.000472,0.163312,-0.001949,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000057,0.000049,0.000159,0.000523,0.000523,0.000465,0.161437,-0.001875,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000056,0.000048,0.000159,0.000432,0.000432,0.000458,0.159675,-0.001761,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000055,0.000048,0.000160,0.000315,0.000315,0.000450,0.158053,-0.001623,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000054,0.000047,0.000161,0.000178,0.000178,0.000443,0.156585,-0.001467,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000019,0.000000,0.000000,0.000000,0.000109,0.000053,0.000046,0.000162,0.000033,0.000033,0.000437,0.155299,-0.001286,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000052,0.000046,0.000163,0.000000,0.000000,0.000430,0.154044,-0.001256,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000051,0.000045,0.000163,0.000000,0.000000,0.000424,0.152804,-0.001239,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000051,0.000044,0.000164,0.000000,0.000000,0.000417,0.151581,-0.001223,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000050,0.000044,0.000165,0.000000,0.000000,0.000411,0.150373,-0.001208,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000049,0.000043,0.000166,0.000000,0.000000,0.000405,0.149181,-0.001192,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000049,0.000043,0.000167,0.000000,0.000000,0.000400,0.148005,-0.001177,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000048,0.000042,0.000168,0.000000,0.000000,0.000394,0.146843,-0.001161,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000047,0.000042,0.000169,0.000000,0.000000,0.000389,0.145697,-0.001146,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000047,0.000041,0.000170,0.000000,0.000000,0.000383,0.144566,-0.001132,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000046,0.000041,0.000171,0.000000,0.000000,0.000378,0.143449,-0.001117,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000045,0.000040,0.000172,0.000000,0.000000,0.000373,0.142346,-0.001102,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000045,0.000040,0.000173,0.000000,0.000000,0.000368,0.141258,-0.001088,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000044,0.000039,0.000174,0.000129,0.000129,0.000363,0.140057,-0.001201,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000043,0.000038,0.000175,0.000371,0.000371,0.000358,0.138632,-0.001425,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000043,0.000038,0.000176,0.000539,0.000539,0.000352,0.137059,-0.001573,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000042,0.000037,0.000176,0.000657,0.000657,0.000347,0.135391,-0.001668,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000041,0.000036,0.000177,0.000681,0.000681,0.000342,0.133720,-0.001671,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000041,0.000035,0.000178,0.000618,0.000618,0.000336,0.132196,-0.001524,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000040,0.000035,0.000179,0.000554,0.000554,0.000330,0.130755,-0.001441,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000039,0.000034,0.000180,0.000460,0.000460,0.000325,0.129424,-0.001330,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000142,0.000039,0.000033,0.000181,0.000393,0.000393,0.000320,0.128178,-0.001246,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000235,0.000000,0.000000,0.000000,0.000144,0.000038,0.000033,0.000182,0.000288,0.000288,0.000314,0.127220,-0.000958,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000044,0.000000,0.000000,0.000000,0.000145,0.000038,0.000032,0.000183,0.000170,0.000170,0.000309,0.126203,-0.001017,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000658,0.000049,0.000089,0.000049,0.000147,0.000037,0.000032,0.000233,0.000056,0.000056,0.000304,0.125830,-0.000373,1.000000,0.000040 +122,2022-08-06 02:00:00,0.001736,0.000341,0.000580,0.000341,0.000149,0.000036,0.000032,0.000526,0.000000,0.000000,0.000300,0.126096,0.000266,1.000000,0.000279 +123,2022-08-06 03:00:00,0.000800,0.000245,0.000150,0.000245,0.000150,0.000036,0.000032,0.000432,0.000000,0.000000,0.000297,0.125859,-0.000237,1.000000,0.000184 +124,2022-08-06 04:00:00,0.000200,0.000159,0.000011,0.000159,0.000152,0.000036,0.000032,0.000347,0.000000,0.000000,0.000293,0.125171,-0.000689,1.000000,0.000035 +125,2022-08-06 05:00:00,0.000216,0.000040,0.000013,0.000040,0.000153,0.000035,0.000032,0.000228,0.000000,0.000000,0.000290,0.124505,-0.000666,1.000000,0.000008 +126,2022-08-06 06:00:00,0.000428,0.000031,0.000047,0.000031,0.000155,0.000035,0.000031,0.000221,0.000000,0.000000,0.000286,0.124024,-0.000482,1.000000,0.000024 +127,2022-08-06 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000156,0.000034,0.000031,0.000205,0.000000,0.000000,0.000283,0.123172,-0.000851,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000158,0.000034,0.000031,0.000201,0.000000,0.000000,0.000280,0.122332,-0.000840,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000033,0.000030,0.000193,0.000000,0.000000,0.000276,0.121502,-0.000830,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000033,0.000030,0.000194,0.000000,0.000000,0.000273,0.120683,-0.000819,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000033,0.000029,0.000195,0.000000,0.000000,0.000270,0.119875,-0.000808,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000032,0.000029,0.000197,0.000000,0.000000,0.000266,0.119077,-0.000798,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000032,0.000029,0.000198,0.000000,0.000000,0.000263,0.118290,-0.000787,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000031,0.000028,0.000199,0.000106,0.000106,0.000260,0.117408,-0.000882,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000031,0.000028,0.000200,0.000338,0.000338,0.000256,0.116308,-0.001100,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000031,0.000027,0.000201,0.000494,0.000494,0.000253,0.115069,-0.001239,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000030,0.000026,0.000202,0.000623,0.000623,0.000249,0.113718,-0.001351,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000030,0.000026,0.000203,0.000708,0.000708,0.000245,0.112301,-0.001417,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000029,0.000025,0.000204,0.000632,0.000632,0.000241,0.110978,-0.001324,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000029,0.000025,0.000205,0.000570,0.000570,0.000237,0.109732,-0.001246,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000028,0.000024,0.000206,0.000525,0.000525,0.000233,0.108547,-0.001185,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000028,0.000023,0.000207,0.000438,0.000438,0.000229,0.107464,-0.001083,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000027,0.000023,0.000208,0.000323,0.000323,0.000224,0.106508,-0.000956,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000027,0.000023,0.000209,0.000177,0.000177,0.000220,0.105708,-0.000799,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000026,0.000022,0.000210,0.000030,0.000030,0.000216,0.105064,-0.000645,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000026,0.000022,0.000211,0.000000,0.000000,0.000213,0.104458,-0.000606,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000025,0.000022,0.000212,0.000000,0.000000,0.000209,0.103859,-0.000599,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000025,0.000021,0.000213,0.000000,0.000000,0.000206,0.103268,-0.000591,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000025,0.000021,0.000214,0.000000,0.000000,0.000202,0.102685,-0.000583,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000024,0.000021,0.000215,0.000000,0.000000,0.000199,0.102109,-0.000576,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000024,0.000021,0.000216,0.000000,0.000000,0.000196,0.101541,-0.000568,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000023,0.000020,0.000218,0.000000,0.000000,0.000193,0.100980,-0.000561,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000023,0.000020,0.000219,0.000000,0.000000,0.000190,0.100427,-0.000554,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000023,0.000020,0.000220,0.000000,0.000000,0.000187,0.099880,-0.000546,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000022,0.000020,0.000221,0.000000,0.000000,0.000185,0.099341,-0.000539,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000019,0.000222,0.000000,0.000000,0.000182,0.098808,-0.000532,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000022,0.000019,0.000223,0.000000,0.000000,0.000179,0.098283,-0.000526,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000021,0.000019,0.000224,0.000107,0.000107,0.000177,0.097658,-0.000625,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000018,0.000225,0.000345,0.000345,0.000174,0.096807,-0.000851,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000021,0.000018,0.000226,0.000511,0.000511,0.000171,0.095802,-0.001004,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000017,0.000227,0.000624,0.000624,0.000168,0.094700,-0.001102,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000020,0.000017,0.000228,0.000706,0.000706,0.000165,0.093531,-0.001169,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000020,0.000017,0.000229,0.000630,0.000000,0.000162,0.093074,-0.000457,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000019,0.000016,0.000230,0.000562,0.000000,0.000159,0.092622,-0.000451,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000016,0.000231,0.000508,0.000000,0.000157,0.092176,-0.000446,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000016,0.000232,0.000426,0.000000,0.000154,0.091737,-0.000440,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000016,0.000234,0.000312,0.000000,0.000151,0.091302,-0.000434,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000001,0.000000,0.000000,0.000000,0.000217,0.000018,0.000016,0.000235,0.000141,0.000001,0.000149,0.090874,-0.000429,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000015,0.000236,0.000006,0.000000,0.000147,0.090451,-0.000423,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000015,0.000237,0.000000,0.000000,0.000144,0.090033,-0.000418,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000015,0.000238,0.000000,0.000000,0.000142,0.089621,-0.000412,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000015,0.000239,0.000000,0.000000,0.000140,0.089214,-0.000407,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000015,0.000240,0.000000,0.000000,0.000138,0.088813,-0.000402,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000014,0.000241,0.000000,0.000000,0.000136,0.088416,-0.000396,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000014,0.000242,0.000000,0.000000,0.000134,0.088025,-0.000391,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000014,0.000243,0.000000,0.000000,0.000132,0.087639,-0.000386,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000014,0.000244,0.000000,0.000000,0.000130,0.087258,-0.000381,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000245,0.000000,0.000000,0.000128,0.086881,-0.000376,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000014,0.000246,0.000000,0.000000,0.000126,0.086510,-0.000371,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000013,0.000247,0.000000,0.000000,0.000125,0.086143,-0.000367,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000013,0.000248,0.000000,0.000000,0.000123,0.085782,-0.000362,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000250,0.000089,0.000001,0.000121,0.085424,-0.000357,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000003,0.000000,0.000000,0.000000,0.000236,0.000014,0.000013,0.000251,0.000325,0.000003,0.000120,0.085072,-0.000353,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000252,0.000498,0.000000,0.000118,0.084724,-0.000348,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000611,0.000000,0.000116,0.084380,-0.000344,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000700,0.000000,0.000115,0.084041,-0.000339,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000255,0.000611,0.000000,0.000113,0.083706,-0.000335,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000549,0.000000,0.000112,0.083376,-0.000330,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000012,0.000257,0.000519,0.000000,0.000110,0.083050,-0.000326,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000012,0.000258,0.000433,0.000000,0.000109,0.082728,-0.000322,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000013,0.000012,0.000259,0.000309,0.000000,0.000107,0.082410,-0.000318,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000013,0.000011,0.000260,0.000176,0.000000,0.000106,0.082097,-0.000314,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000011,0.000261,0.000026,0.000000,0.000105,0.081787,-0.000310,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000012,0.000011,0.000262,0.000000,0.000000,0.000103,0.081481,-0.000306,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000012,0.000011,0.000263,0.000000,0.000000,0.000102,0.081180,-0.000302,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000012,0.000011,0.000264,0.000000,0.000000,0.000101,0.080882,-0.000298,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000099,0.080588,-0.000294,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000098,0.080298,-0.000290,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000010,0.000267,0.000000,0.000000,0.000097,0.080012,-0.000286,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000012,0.000010,0.000268,0.000000,0.000000,0.000095,0.079729,-0.000283,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000011,0.000010,0.000269,0.000000,0.000000,0.000094,0.079450,-0.000279,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000011,0.000010,0.000270,0.000000,0.000000,0.000093,0.079175,-0.000275,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000011,0.000010,0.000271,0.000000,0.000000,0.000092,0.078903,-0.000272,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000011,0.000010,0.000272,0.000000,0.000000,0.000091,0.078635,-0.000268,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000011,0.000010,0.000273,0.000000,0.000000,0.000089,0.078370,-0.000265,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000011,0.000010,0.000274,0.000097,0.000000,0.000088,0.078108,-0.000261,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620823.csv b/test/channel_loss/channel_forcing/et/cat-2620823.csv new file mode 100644 index 000000000..0178b4080 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620823.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001497,0.000550,0.001497,0.000156,0.000156,0.010648,0.422549,-0.005242,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001364,0.000542,0.001364,0.000038,0.000038,0.009825,0.417481,-0.005068,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001251,0.000534,0.001251,0.000000,0.000000,0.009108,0.412523,-0.004958,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001155,0.000527,0.001155,0.000000,0.000000,0.008480,0.407635,-0.004888,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001071,0.000519,0.001071,0.000000,0.000000,0.007929,0.402817,-0.004818,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000998,0.000512,0.000998,0.000000,0.000000,0.007443,0.398068,-0.004749,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000935,0.000504,0.000935,0.000000,0.000000,0.007012,0.393387,-0.004681,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000879,0.000497,0.000880,0.000000,0.000000,0.006631,0.388772,-0.004615,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000830,0.000490,0.000831,0.000000,0.000000,0.006291,0.384223,-0.004549,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000786,0.000483,0.000788,0.000000,0.000000,0.005988,0.379740,-0.004484,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000748,0.000476,0.000750,0.000000,0.000000,0.005716,0.375320,-0.004420,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000713,0.000469,0.000716,0.000000,0.000000,0.005473,0.370963,-0.004357,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000683,0.000463,0.000685,0.000000,0.000000,0.005253,0.366668,-0.004295,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000655,0.000456,0.000658,0.000000,0.000000,0.005054,0.362434,-0.004233,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000630,0.000450,0.000633,0.000122,0.000122,0.004873,0.358142,-0.004293,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000607,0.000443,0.000611,0.000351,0.000351,0.004709,0.353683,-0.004458,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000587,0.000435,0.000591,0.000519,0.000519,0.004558,0.349124,-0.004560,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000567,0.000428,0.000573,0.000632,0.000632,0.004418,0.344517,-0.004606,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000550,0.000421,0.000556,0.000582,0.000582,0.004290,0.340027,-0.004491,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000161,0.000000,0.000000,0.000000,0.000006,0.000534,0.000415,0.000540,0.000514,0.000514,0.004171,0.335826,-0.004201,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000132,0.000000,0.000000,0.000000,0.000007,0.000519,0.000408,0.000526,0.000465,0.000465,0.004060,0.331704,-0.004121,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000846,0.000015,0.000028,0.000015,0.000008,0.000505,0.000403,0.000528,0.000361,0.000361,0.003958,0.328420,-0.003284,1.000000,0.000012 +22,2022-08-01 22:00:00,0.000176,0.000007,0.000000,0.000007,0.000008,0.000492,0.000397,0.000507,0.000321,0.000321,0.003863,0.324590,-0.003830,1.000000,0.000006 +23,2022-08-01 23:00:00,0.000527,0.000011,0.000010,0.000011,0.000009,0.000480,0.000392,0.000501,0.000234,0.000234,0.003775,0.321235,-0.003355,1.000000,0.000005 +24,2022-08-02 00:00:00,0.000426,0.000007,0.000008,0.000007,0.000010,0.000469,0.000387,0.000486,0.000159,0.000159,0.003692,0.317904,-0.003331,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001386,0.000105,0.000183,0.000105,0.000011,0.000459,0.000383,0.000574,0.000066,0.000066,0.003616,0.315487,-0.002417,1.000000,0.000084 +26,2022-08-02 02:00:00,0.002035,0.000269,0.000403,0.000269,0.000011,0.000450,0.000380,0.000730,0.000000,0.000000,0.003546,0.313592,-0.001895,1.000000,0.000218 +27,2022-08-02 03:00:00,0.001878,0.000328,0.000347,0.000328,0.000012,0.000441,0.000377,0.000782,0.000000,0.000000,0.003481,0.311624,-0.001968,1.000000,0.000237 +28,2022-08-02 04:00:00,0.001939,0.000369,0.000367,0.000369,0.000013,0.000433,0.000374,0.000816,0.000000,0.000000,0.003422,0.309725,-0.001899,1.000000,0.000235 +29,2022-08-02 05:00:00,0.000802,0.000200,0.000070,0.000200,0.000014,0.000426,0.000370,0.000640,0.000000,0.000000,0.003366,0.307026,-0.002700,1.000000,0.000105 +30,2022-08-02 06:00:00,0.000417,0.000102,0.000020,0.000102,0.000015,0.000419,0.000365,0.000536,0.000000,0.000000,0.003312,0.304035,-0.002991,1.000000,0.000023 +31,2022-08-02 07:00:00,0.000000,0.000019,0.000000,0.000019,0.000016,0.000412,0.000360,0.000447,0.000000,0.000000,0.003260,0.300695,-0.003340,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000017,0.000405,0.000355,0.000426,0.000000,0.000000,0.003210,0.297402,-0.003292,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000399,0.000350,0.000416,0.000000,0.000000,0.003160,0.294157,-0.003245,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000393,0.000345,0.000411,0.000000,0.000000,0.003113,0.290958,-0.003199,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000386,0.000340,0.000406,0.000000,0.000000,0.003066,0.287804,-0.003153,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000380,0.000335,0.000401,0.000000,0.000000,0.003021,0.284696,-0.003109,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000018,0.000000,0.000000,0.000000,0.000022,0.000375,0.000330,0.000396,0.000000,0.000000,0.002976,0.281649,-0.003046,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000076,0.000000,0.000000,0.000000,0.000023,0.000369,0.000325,0.000392,0.000116,0.000116,0.002933,0.278590,-0.003060,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000050,0.000000,0.000000,0.000000,0.000024,0.000363,0.000320,0.000387,0.000314,0.000314,0.002890,0.275352,-0.003238,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000011,0.000000,0.000000,0.000000,0.000025,0.000358,0.000315,0.000383,0.000457,0.000457,0.002847,0.271982,-0.003370,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000011,0.000000,0.000000,0.000000,0.000026,0.000352,0.000310,0.000378,0.000561,0.000561,0.002805,0.268557,-0.003425,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000698,0.000000,0.000000,0.000000,0.000027,0.000347,0.000305,0.000374,0.000631,0.000631,0.002763,0.265789,-0.002769,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000137,0.000000,0.000000,0.000000,0.000028,0.000341,0.000300,0.000370,0.000553,0.000553,0.002722,0.262585,-0.003204,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000336,0.000295,0.000366,0.000505,0.000505,0.002682,0.259338,-0.003247,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000331,0.000290,0.000361,0.000493,0.000493,0.002641,0.256150,-0.003188,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000326,0.000286,0.000357,0.000427,0.000427,0.002601,0.253072,-0.003078,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000321,0.000281,0.000354,0.000303,0.000303,0.002562,0.250160,-0.002912,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000316,0.000277,0.000350,0.000163,0.000163,0.002523,0.247427,-0.002733,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000311,0.000273,0.000346,0.000020,0.000020,0.002485,0.244874,-0.002553,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000306,0.000269,0.000343,0.000000,0.000000,0.002448,0.242378,-0.002496,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000301,0.000265,0.000339,0.000000,0.000000,0.002412,0.239918,-0.002461,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000297,0.000261,0.000336,0.000000,0.000000,0.002377,0.237492,-0.002425,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000292,0.000258,0.000333,0.000000,0.000000,0.002342,0.235101,-0.002391,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000288,0.000254,0.000330,0.000000,0.000000,0.002308,0.232745,-0.002357,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000284,0.000250,0.000327,0.000000,0.000000,0.002275,0.230422,-0.002323,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000279,0.000247,0.000324,0.000000,0.000000,0.002242,0.228132,-0.002290,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000275,0.000243,0.000321,0.000000,0.000000,0.002210,0.225874,-0.002257,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000271,0.000240,0.000318,0.000000,0.000000,0.002179,0.223649,-0.002225,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000267,0.000236,0.000316,0.000000,0.000000,0.002148,0.221456,-0.002193,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000263,0.000233,0.000313,0.000000,0.000000,0.002118,0.219294,-0.002162,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000260,0.000230,0.000311,0.000000,0.000000,0.002088,0.217163,-0.002131,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000256,0.000226,0.000308,0.000119,0.000119,0.002058,0.214945,-0.002218,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000252,0.000222,0.000306,0.000361,0.000361,0.002028,0.212520,-0.002425,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000248,0.000218,0.000303,0.000525,0.000525,0.001999,0.209967,-0.002552,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000244,0.000214,0.000301,0.000631,0.000631,0.001969,0.207348,-0.002620,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000241,0.000210,0.000298,0.000624,0.000624,0.001938,0.204772,-0.002576,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000237,0.000206,0.000296,0.000547,0.000547,0.001908,0.202309,-0.002463,1.000000,0.000000 +68,2022-08-03 20:00:00,0.005642,0.000966,0.001756,0.000966,0.000061,0.000234,0.000209,0.001260,0.000488,0.000488,0.001884,0.203769,0.001460,1.000000,0.000790 +69,2022-08-03 21:00:00,0.000858,0.000448,0.000016,0.000448,0.000062,0.000230,0.000206,0.000740,0.000454,0.000454,0.001859,0.202242,-0.001527,1.000000,0.000358 +70,2022-08-03 22:00:00,0.000000,0.000355,0.000000,0.000355,0.000064,0.000227,0.000203,0.000646,0.000384,0.000384,0.001835,0.199975,-0.002267,1.000000,0.000003 +71,2022-08-03 23:00:00,0.000141,0.000003,0.000000,0.000003,0.000065,0.000224,0.000200,0.000292,0.000287,0.000287,0.001810,0.197976,-0.001999,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000221,0.000197,0.000288,0.000176,0.000176,0.001786,0.195976,-0.002001,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000218,0.000194,0.000286,0.000031,0.000031,0.001762,0.194147,-0.001829,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000215,0.000191,0.000284,0.000000,0.000000,0.001738,0.192374,-0.001773,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000212,0.000188,0.000283,0.000000,0.000000,0.001714,0.190627,-0.001747,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000209,0.000186,0.000281,0.000000,0.000000,0.001690,0.188904,-0.001722,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000206,0.000183,0.000280,0.000000,0.000000,0.001667,0.187207,-0.001698,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000203,0.000180,0.000278,0.000000,0.000000,0.001644,0.185533,-0.001674,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000200,0.000178,0.000277,0.000000,0.000000,0.001622,0.183884,-0.001650,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000198,0.000175,0.000276,0.000000,0.000000,0.001600,0.182257,-0.001626,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000195,0.000173,0.000274,0.000000,0.000000,0.001577,0.180655,-0.001603,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000192,0.000170,0.000273,0.000000,0.000000,0.001556,0.179075,-0.001580,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000189,0.000168,0.000272,0.000000,0.000000,0.001534,0.177517,-0.001558,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000187,0.000165,0.000271,0.000000,0.000000,0.001513,0.175982,-0.001535,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000184,0.000163,0.000270,0.000000,0.000000,0.001492,0.174468,-0.001513,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000181,0.000161,0.000268,0.000115,0.000115,0.001471,0.172863,-0.001605,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000179,0.000158,0.000267,0.000356,0.000356,0.001450,0.171043,-0.001820,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000176,0.000155,0.000266,0.000524,0.000524,0.001429,0.169083,-0.001960,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000173,0.000151,0.000265,0.000642,0.000642,0.001407,0.167035,-0.002048,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000171,0.000148,0.000264,0.000681,0.000681,0.001385,0.164978,-0.002057,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000168,0.000145,0.000262,0.000602,0.000602,0.001362,0.163028,-0.001950,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000165,0.000142,0.000261,0.000565,0.000565,0.001340,0.161143,-0.001885,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000162,0.000139,0.000260,0.000525,0.000525,0.001317,0.159324,-0.001819,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000159,0.000137,0.000258,0.000441,0.000441,0.001295,0.157614,-0.001711,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000156,0.000134,0.000257,0.000316,0.000316,0.001273,0.156051,-0.001563,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000154,0.000132,0.000256,0.000177,0.000177,0.001251,0.154647,-0.001404,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000151,0.000130,0.000255,0.000031,0.000031,0.001230,0.153408,-0.001240,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000149,0.000128,0.000254,0.000000,0.000000,0.001210,0.152216,-0.001191,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000146,0.000127,0.000253,0.000000,0.000000,0.001190,0.151042,-0.001174,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000144,0.000125,0.000252,0.000000,0.000000,0.001171,0.149884,-0.001158,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000141,0.000123,0.000251,0.000000,0.000000,0.001153,0.148743,-0.001141,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000139,0.000121,0.000250,0.000000,0.000000,0.001135,0.147618,-0.001125,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000137,0.000119,0.000250,0.000000,0.000000,0.001117,0.146509,-0.001109,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000135,0.000118,0.000249,0.000000,0.000000,0.001100,0.145416,-0.001093,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000133,0.000116,0.000249,0.000000,0.000000,0.001083,0.144339,-0.001077,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000131,0.000114,0.000248,0.000000,0.000000,0.001067,0.143277,-0.001062,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000129,0.000113,0.000248,0.000000,0.000000,0.001051,0.142230,-0.001047,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000127,0.000111,0.000247,0.000000,0.000000,0.001035,0.141198,-0.001032,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000125,0.000110,0.000247,0.000000,0.000000,0.001020,0.140181,-0.001017,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000123,0.000108,0.000246,0.000129,0.000129,0.001005,0.139051,-0.001130,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000121,0.000106,0.000246,0.000371,0.000371,0.000989,0.137699,-0.001352,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000119,0.000103,0.000245,0.000535,0.000535,0.000973,0.136204,-0.001495,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000117,0.000101,0.000245,0.000645,0.000645,0.000957,0.134623,-0.001581,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000115,0.000098,0.000244,0.000660,0.000660,0.000941,0.133048,-0.001574,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000018,0.000000,0.000000,0.000000,0.000131,0.000113,0.000096,0.000244,0.000604,0.000604,0.000924,0.131569,-0.001479,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000018,0.000000,0.000000,0.000000,0.000132,0.000111,0.000094,0.000243,0.000543,0.000543,0.000907,0.130172,-0.001398,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000023,0.000000,0.000000,0.000000,0.000134,0.000109,0.000092,0.000242,0.000462,0.000462,0.000890,0.128879,-0.001292,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000064,0.000000,0.000000,0.000000,0.000135,0.000107,0.000090,0.000242,0.000401,0.000401,0.000873,0.127705,-0.001174,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000137,0.000105,0.000089,0.000241,0.000291,0.000291,0.000857,0.126842,-0.000863,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000103,0.000087,0.000241,0.000170,0.000170,0.000842,0.125862,-0.000980,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000799,0.000026,0.000047,0.000026,0.000140,0.000101,0.000087,0.000266,0.000054,0.000054,0.000828,0.125753,-0.000110,1.000000,0.000021 +122,2022-08-06 02:00:00,0.002021,0.000182,0.000310,0.000182,0.000141,0.000100,0.000089,0.000423,0.000000,0.000000,0.000816,0.126642,0.000889,1.000000,0.000149 +123,2022-08-06 03:00:00,0.000747,0.000113,0.000047,0.000113,0.000142,0.000098,0.000088,0.000354,0.000000,0.000000,0.000806,0.126523,-0.000119,1.000000,0.000083 +124,2022-08-06 04:00:00,0.000108,0.000074,0.000001,0.000074,0.000144,0.000097,0.000087,0.000316,0.000000,0.000000,0.000796,0.125820,-0.000702,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000115,0.000010,0.000001,0.000010,0.000145,0.000096,0.000086,0.000252,0.000000,0.000000,0.000786,0.125134,-0.000686,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000350,0.000006,0.000011,0.000006,0.000147,0.000095,0.000085,0.000248,0.000000,0.000000,0.000777,0.124681,-0.000453,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000148,0.000094,0.000084,0.000245,0.000000,0.000000,0.000767,0.123900,-0.000782,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000150,0.000093,0.000083,0.000244,0.000000,0.000000,0.000758,0.123129,-0.000770,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000091,0.000082,0.000242,0.000000,0.000000,0.000748,0.122370,-0.000759,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000090,0.000081,0.000243,0.000000,0.000000,0.000739,0.121621,-0.000749,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000089,0.000080,0.000243,0.000000,0.000000,0.000729,0.120883,-0.000738,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000088,0.000078,0.000243,0.000000,0.000000,0.000720,0.120156,-0.000727,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000087,0.000077,0.000244,0.000000,0.000000,0.000710,0.119439,-0.000717,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000086,0.000076,0.000244,0.000106,0.000106,0.000701,0.118627,-0.000811,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000084,0.000074,0.000244,0.000336,0.000336,0.000691,0.117600,-0.001027,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000083,0.000073,0.000244,0.000488,0.000488,0.000681,0.116439,-0.001162,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000082,0.000071,0.000244,0.000611,0.000611,0.000670,0.115173,-0.001266,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000080,0.000069,0.000244,0.000686,0.000686,0.000658,0.113850,-0.001322,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000079,0.000067,0.000244,0.000616,0.000616,0.000646,0.112616,-0.001234,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000077,0.000065,0.000244,0.000572,0.000572,0.000633,0.111443,-0.001173,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000076,0.000063,0.000244,0.000525,0.000525,0.000621,0.110332,-0.001110,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000074,0.000061,0.000244,0.000441,0.000441,0.000608,0.109321,-0.001011,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000073,0.000060,0.000243,0.000321,0.000321,0.000596,0.108442,-0.000879,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000071,0.000059,0.000243,0.000177,0.000177,0.000584,0.107718,-0.000724,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000070,0.000058,0.000243,0.000029,0.000029,0.000572,0.107150,-0.000568,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000068,0.000057,0.000243,0.000000,0.000000,0.000561,0.106618,-0.000532,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000067,0.000056,0.000243,0.000000,0.000000,0.000551,0.106095,-0.000524,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000066,0.000056,0.000243,0.000000,0.000000,0.000540,0.105578,-0.000516,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000065,0.000055,0.000244,0.000000,0.000000,0.000531,0.105069,-0.000509,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000063,0.000054,0.000244,0.000000,0.000000,0.000521,0.104567,-0.000502,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000062,0.000053,0.000244,0.000000,0.000000,0.000512,0.104072,-0.000495,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000061,0.000053,0.000244,0.000000,0.000000,0.000504,0.103585,-0.000488,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000060,0.000052,0.000245,0.000000,0.000000,0.000495,0.103104,-0.000481,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000059,0.000051,0.000245,0.000000,0.000000,0.000487,0.102630,-0.000474,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000058,0.000050,0.000245,0.000000,0.000000,0.000479,0.102163,-0.000467,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000057,0.000050,0.000246,0.000000,0.000000,0.000471,0.101703,-0.000460,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000056,0.000049,0.000246,0.000000,0.000000,0.000464,0.101249,-0.000454,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000055,0.000048,0.000246,0.000107,0.000107,0.000456,0.100697,-0.000553,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000055,0.000047,0.000247,0.000345,0.000345,0.000449,0.099917,-0.000779,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000054,0.000045,0.000247,0.000508,0.000508,0.000440,0.098988,-0.000929,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000052,0.000044,0.000247,0.000611,0.000611,0.000432,0.097971,-0.001018,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000051,0.000042,0.000247,0.000680,0.000680,0.000423,0.096900,-0.001071,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000050,0.000041,0.000247,0.000615,0.000615,0.000413,0.095908,-0.000991,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000049,0.000039,0.000247,0.000562,0.000562,0.000403,0.094983,-0.000925,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000048,0.000038,0.000247,0.000507,0.000507,0.000393,0.094126,-0.000858,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000047,0.000037,0.000247,0.000428,0.000428,0.000383,0.093358,-0.000768,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000045,0.000036,0.000248,0.000309,0.000309,0.000373,0.092719,-0.000639,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000044,0.000035,0.000248,0.000140,0.000140,0.000364,0.092255,-0.000464,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000043,0.000034,0.000248,0.000007,0.000007,0.000355,0.091929,-0.000326,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000042,0.000034,0.000248,0.000000,0.000000,0.000347,0.091614,-0.000314,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000041,0.000033,0.000248,0.000000,0.000000,0.000339,0.091304,-0.000310,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000040,0.000033,0.000249,0.000000,0.000000,0.000332,0.090999,-0.000305,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000039,0.000032,0.000249,0.000000,0.000000,0.000325,0.090698,-0.000301,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000039,0.000032,0.000249,0.000000,0.000000,0.000318,0.090401,-0.000297,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000038,0.000032,0.000250,0.000000,0.000000,0.000312,0.090108,-0.000293,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000037,0.000031,0.000250,0.000000,0.000000,0.000306,0.089820,-0.000288,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000214,0.000036,0.000031,0.000251,0.000000,0.000000,0.000300,0.089538,-0.000282,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000215,0.000036,0.000030,0.000251,0.000000,0.000000,0.000295,0.089259,-0.000279,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000217,0.000035,0.000030,0.000252,0.000000,0.000000,0.000289,0.088984,-0.000275,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000034,0.000029,0.000252,0.000000,0.000000,0.000284,0.088712,-0.000272,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000034,0.000029,0.000253,0.000000,0.000000,0.000279,0.088443,-0.000269,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000033,0.000028,0.000253,0.000089,0.000089,0.000274,0.088091,-0.000352,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000033,0.000027,0.000254,0.000324,0.000324,0.000269,0.087512,-0.000579,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000032,0.000026,0.000254,0.000495,0.000495,0.000264,0.086773,-0.000739,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000031,0.000025,0.000255,0.000599,0.000599,0.000257,0.085941,-0.000831,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000030,0.000024,0.000255,0.000678,0.000678,0.000251,0.085044,-0.000898,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000030,0.000022,0.000255,0.000600,0.000600,0.000243,0.084236,-0.000808,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000029,0.000021,0.000255,0.000547,0.000547,0.000236,0.083492,-0.000744,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000028,0.000020,0.000255,0.000519,0.000519,0.000228,0.082786,-0.000705,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000027,0.000019,0.000256,0.000439,0.000439,0.000221,0.082170,-0.000616,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000026,0.000018,0.000256,0.000307,0.000307,0.000213,0.081692,-0.000478,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000025,0.000018,0.000256,0.000171,0.000171,0.000206,0.081355,-0.000337,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000024,0.000018,0.000256,0.000023,0.000023,0.000200,0.081169,-0.000186,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000023,0.000017,0.000257,0.000000,0.000000,0.000194,0.081008,-0.000161,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000023,0.000017,0.000257,0.000000,0.000000,0.000188,0.080850,-0.000159,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000022,0.000017,0.000257,0.000000,0.000000,0.000183,0.080693,-0.000156,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000022,0.000017,0.000258,0.000000,0.000000,0.000178,0.080539,-0.000154,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000021,0.000016,0.000258,0.000000,0.000000,0.000173,0.080387,-0.000152,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000020,0.000016,0.000259,0.000000,0.000000,0.000169,0.080237,-0.000150,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000020,0.000016,0.000259,0.000000,0.000000,0.000165,0.080090,-0.000148,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000019,0.000016,0.000260,0.000000,0.000000,0.000161,0.079944,-0.000146,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000019,0.000015,0.000260,0.000000,0.000000,0.000157,0.079801,-0.000143,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000019,0.000015,0.000261,0.000000,0.000000,0.000154,0.079659,-0.000141,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000018,0.000015,0.000262,0.000000,0.000000,0.000151,0.079520,-0.000139,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000018,0.000015,0.000262,0.000000,0.000000,0.000148,0.079383,-0.000137,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000018,0.000015,0.000263,0.000098,0.000000,0.000145,0.079247,-0.000135,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620824.csv b/test/channel_loss/channel_forcing/et/cat-2620824.csv new file mode 100644 index 000000000..005f6d6df --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620824.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000021,0.000000,0.000000,0.000000,0.000000,0.001462,0.000304,0.001462,0.000148,0.000148,0.010429,0.427133,-0.004877,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001302,0.000300,0.001302,0.000034,0.000034,0.009426,0.422414,-0.004719,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001167,0.000296,0.001167,0.000000,0.000000,0.008555,0.417794,-0.004621,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001052,0.000292,0.001052,0.000000,0.000000,0.007795,0.413236,-0.004557,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000953,0.000288,0.000953,0.000000,0.000000,0.007130,0.408742,-0.004495,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000867,0.000284,0.000868,0.000000,0.000000,0.006547,0.404309,-0.004433,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000793,0.000280,0.000794,0.000000,0.000000,0.006033,0.399937,-0.004372,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000729,0.000276,0.000730,0.000000,0.000000,0.005580,0.395625,-0.004312,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000673,0.000272,0.000674,0.000000,0.000000,0.005179,0.391372,-0.004253,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000624,0.000268,0.000625,0.000000,0.000000,0.004824,0.387177,-0.004194,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000580,0.000265,0.000582,0.000000,0.000000,0.004509,0.383040,-0.004137,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000542,0.000261,0.000544,0.000000,0.000000,0.004228,0.378960,-0.004080,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000508,0.000258,0.000511,0.000000,0.000000,0.003977,0.374936,-0.004024,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000478,0.000254,0.000481,0.000000,0.000000,0.003753,0.370967,-0.003969,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000451,0.000250,0.000455,0.000116,0.000116,0.003553,0.366939,-0.004029,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000427,0.000247,0.000431,0.000337,0.000337,0.003372,0.362748,-0.004191,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000406,0.000243,0.000410,0.000505,0.000505,0.003210,0.358448,-0.004300,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000386,0.000239,0.000391,0.000613,0.000613,0.003062,0.354101,-0.004347,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000369,0.000235,0.000374,0.000573,0.000573,0.002929,0.349853,-0.004248,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000129,0.000000,0.000000,0.000000,0.000006,0.000353,0.000232,0.000359,0.000508,0.000508,0.002808,0.345855,-0.003998,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000082,0.000000,0.000000,0.000000,0.000007,0.000338,0.000228,0.000345,0.000455,0.000455,0.002697,0.341917,-0.003938,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000437,0.000001,0.000001,0.000001,0.000007,0.000325,0.000225,0.000333,0.000367,0.000367,0.002597,0.338470,-0.003447,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000153,0.000000,0.000000,0.000000,0.000008,0.000314,0.000222,0.000322,0.000311,0.000311,0.002505,0.334846,-0.003624,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000632,0.000018,0.000033,0.000018,0.000009,0.000303,0.000219,0.000330,0.000228,0.000228,0.002422,0.331794,-0.003052,1.000000,0.000015 +24,2022-08-02 00:00:00,0.000670,0.000037,0.000052,0.000037,0.000010,0.000293,0.000217,0.000339,0.000156,0.000156,0.002345,0.328873,-0.002921,1.000000,0.000030 +25,2022-08-02 01:00:00,0.001121,0.000128,0.000198,0.000128,0.000010,0.000284,0.000214,0.000423,0.000065,0.000065,0.002276,0.326384,-0.002489,1.000000,0.000099 +26,2022-08-02 02:00:00,0.002149,0.000436,0.000683,0.000436,0.000011,0.000276,0.000213,0.000722,0.000000,0.000000,0.002213,0.324527,-0.001857,1.000000,0.000347 +27,2022-08-02 03:00:00,0.002076,0.000564,0.000643,0.000564,0.000012,0.000268,0.000211,0.000844,0.000000,0.000000,0.002155,0.322663,-0.001864,1.000000,0.000426 +28,2022-08-02 04:00:00,0.001638,0.000532,0.000427,0.000532,0.000013,0.000262,0.000209,0.000807,0.000000,0.000000,0.002103,0.320606,-0.002057,1.000000,0.000321 +29,2022-08-02 05:00:00,0.000587,0.000272,0.000066,0.000272,0.000014,0.000255,0.000207,0.000541,0.000000,0.000000,0.002054,0.317898,-0.002708,1.000000,0.000115 +30,2022-08-02 06:00:00,0.000324,0.000113,0.000021,0.000113,0.000014,0.000250,0.000204,0.000378,0.000000,0.000000,0.002009,0.315011,-0.002887,1.000000,0.000023 +31,2022-08-02 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000015,0.000244,0.000201,0.000278,0.000000,0.000000,0.001966,0.311865,-0.003146,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000016,0.000239,0.000199,0.000260,0.000000,0.000000,0.001925,0.308762,-0.003103,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000234,0.000196,0.000251,0.000000,0.000000,0.001887,0.305702,-0.003060,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000230,0.000193,0.000248,0.000000,0.000000,0.001851,0.302684,-0.003018,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000225,0.000191,0.000244,0.000000,0.000000,0.001816,0.299707,-0.002977,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000221,0.000188,0.000241,0.000000,0.000000,0.001783,0.296771,-0.002936,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000217,0.000185,0.000238,0.000000,0.000000,0.001752,0.293875,-0.002896,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000042,0.000000,0.000000,0.000000,0.000022,0.000213,0.000183,0.000235,0.000112,0.000112,0.001721,0.290951,-0.002924,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000055,0.000000,0.000000,0.000000,0.000023,0.000209,0.000180,0.000233,0.000307,0.000307,0.001692,0.287886,-0.003065,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000206,0.000177,0.000230,0.000456,0.000456,0.001663,0.284663,-0.003223,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000202,0.000174,0.000228,0.000566,0.000566,0.001635,0.281376,-0.003287,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000586,0.000000,0.000000,0.000000,0.000027,0.000199,0.000172,0.000225,0.000632,0.000632,0.001608,0.278647,-0.002729,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000211,0.000000,0.000000,0.000000,0.000028,0.000195,0.000169,0.000223,0.000554,0.000554,0.001582,0.275663,-0.002984,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000192,0.000166,0.000221,0.000504,0.000504,0.001556,0.272560,-0.003103,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000189,0.000164,0.000219,0.000482,0.000482,0.001531,0.269521,-0.003039,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000186,0.000161,0.000217,0.000408,0.000408,0.001506,0.266597,-0.002924,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000183,0.000159,0.000215,0.000291,0.000291,0.001482,0.263829,-0.002768,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000180,0.000156,0.000213,0.000156,0.000156,0.001458,0.261232,-0.002597,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000177,0.000154,0.000212,0.000017,0.000017,0.001435,0.258808,-0.002424,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000174,0.000152,0.000210,0.000000,0.000000,0.001413,0.256434,-0.002374,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000171,0.000150,0.000209,0.000000,0.000000,0.001391,0.254092,-0.002342,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000169,0.000148,0.000207,0.000000,0.000000,0.001370,0.251782,-0.002310,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000166,0.000146,0.000206,0.000000,0.000000,0.001350,0.249504,-0.002278,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000164,0.000144,0.000205,0.000000,0.000000,0.001330,0.247258,-0.002247,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000161,0.000142,0.000204,0.000000,0.000000,0.001310,0.245042,-0.002216,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000159,0.000140,0.000203,0.000000,0.000000,0.001291,0.242856,-0.002185,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000157,0.000138,0.000201,0.000000,0.000000,0.001273,0.240701,-0.002155,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000154,0.000136,0.000201,0.000000,0.000000,0.001255,0.238575,-0.002126,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000152,0.000134,0.000200,0.000000,0.000000,0.001237,0.236479,-0.002097,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000150,0.000132,0.000199,0.000000,0.000000,0.001219,0.234411,-0.002068,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000148,0.000131,0.000198,0.000000,0.000000,0.001202,0.232371,-0.002039,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000146,0.000129,0.000197,0.000110,0.000110,0.001185,0.230251,-0.002120,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000144,0.000127,0.000196,0.000339,0.000339,0.001168,0.227935,-0.002317,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000141,0.000124,0.000196,0.000501,0.000501,0.001151,0.225490,-0.002444,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000139,0.000122,0.000195,0.000615,0.000615,0.001134,0.222967,-0.002524,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000137,0.000120,0.000194,0.000616,0.000616,0.001117,0.220477,-0.002490,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000135,0.000118,0.000193,0.000540,0.000540,0.001100,0.218096,-0.002381,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002970,0.000423,0.000770,0.000423,0.000060,0.000133,0.000118,0.000616,0.000485,0.000485,0.001084,0.217972,-0.000124,1.000000,0.000346 +69,2022-08-03 21:00:00,0.000290,0.000192,0.000000,0.000192,0.000061,0.000131,0.000116,0.000385,0.000443,0.000443,0.001069,0.216008,-0.001964,1.000000,0.000154 +70,2022-08-03 22:00:00,0.000000,0.000154,0.000000,0.000154,0.000063,0.000129,0.000114,0.000346,0.000369,0.000369,0.001054,0.213858,-0.002151,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000060,0.000000,0.000000,0.000000,0.000064,0.000127,0.000112,0.000191,0.000273,0.000273,0.001039,0.211890,-0.001968,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000126,0.000111,0.000191,0.000166,0.000166,0.001024,0.209996,-0.001894,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000124,0.000109,0.000191,0.000027,0.000027,0.001009,0.208266,-0.001730,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000122,0.000108,0.000190,0.000000,0.000000,0.000995,0.206585,-0.001680,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000120,0.000106,0.000190,0.000000,0.000000,0.000981,0.204928,-0.001657,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000118,0.000105,0.000190,0.000000,0.000000,0.000967,0.203293,-0.001635,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000117,0.000103,0.000189,0.000000,0.000000,0.000953,0.201681,-0.001612,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000115,0.000102,0.000189,0.000000,0.000000,0.000940,0.200091,-0.001590,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000113,0.000100,0.000189,0.000000,0.000000,0.000927,0.198523,-0.001568,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000112,0.000099,0.000189,0.000000,0.000000,0.000914,0.196976,-0.001547,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000110,0.000098,0.000189,0.000000,0.000000,0.000901,0.195451,-0.001525,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000109,0.000096,0.000189,0.000000,0.000000,0.000889,0.193946,-0.001505,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000107,0.000095,0.000189,0.000000,0.000000,0.000876,0.192462,-0.001484,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000106,0.000094,0.000189,0.000000,0.000000,0.000864,0.190999,-0.001463,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000104,0.000092,0.000189,0.000000,0.000000,0.000853,0.189555,-0.001443,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000103,0.000091,0.000189,0.000108,0.000108,0.000841,0.188025,-0.001530,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000101,0.000089,0.000189,0.000339,0.000339,0.000829,0.186289,-0.001737,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000100,0.000088,0.000189,0.000507,0.000507,0.000817,0.184409,-0.001879,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000098,0.000086,0.000189,0.000624,0.000624,0.000804,0.182441,-0.001968,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000097,0.000084,0.000189,0.000669,0.000669,0.000792,0.180456,-0.001985,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000095,0.000083,0.000189,0.000593,0.000593,0.000779,0.178573,-0.001883,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000094,0.000081,0.000189,0.000552,0.000552,0.000767,0.176756,-0.001817,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000092,0.000079,0.000188,0.000507,0.000507,0.000754,0.175008,-0.001748,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000091,0.000078,0.000188,0.000423,0.000423,0.000741,0.173367,-0.001641,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000089,0.000077,0.000188,0.000303,0.000303,0.000729,0.171866,-0.001501,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000088,0.000075,0.000188,0.000169,0.000169,0.000717,0.170518,-0.001348,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000141,0.000001,0.000002,0.000001,0.000102,0.000086,0.000074,0.000190,0.000028,0.000028,0.000705,0.169466,-0.001052,1.000000,0.000001 +98,2022-08-05 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000104,0.000085,0.000073,0.000189,0.000000,0.000000,0.000694,0.168318,-0.001148,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000083,0.000072,0.000189,0.000000,0.000000,0.000683,0.167186,-0.001132,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000082,0.000071,0.000189,0.000000,0.000000,0.000672,0.166070,-0.001116,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000081,0.000070,0.000189,0.000000,0.000000,0.000662,0.164969,-0.001101,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000080,0.000070,0.000189,0.000000,0.000000,0.000652,0.163883,-0.001086,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000078,0.000069,0.000190,0.000000,0.000000,0.000642,0.162812,-0.001071,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000077,0.000068,0.000190,0.000000,0.000000,0.000633,0.161755,-0.001056,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000076,0.000067,0.000190,0.000000,0.000000,0.000623,0.160713,-0.001042,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000075,0.000066,0.000191,0.000000,0.000000,0.000614,0.159686,-0.001028,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000074,0.000065,0.000191,0.000000,0.000000,0.000605,0.158672,-0.001013,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000073,0.000064,0.000192,0.000000,0.000000,0.000597,0.157673,-0.001000,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000072,0.000063,0.000192,0.000000,0.000000,0.000588,0.156687,-0.000986,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000071,0.000062,0.000192,0.000121,0.000121,0.000580,0.155595,-0.001092,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000070,0.000061,0.000193,0.000347,0.000347,0.000571,0.154295,-0.001300,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000068,0.000060,0.000193,0.000511,0.000511,0.000562,0.152851,-0.001444,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000067,0.000058,0.000194,0.000625,0.000625,0.000553,0.151315,-0.001536,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000066,0.000057,0.000194,0.000659,0.000659,0.000544,0.149766,-0.001549,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000014,0.000000,0.000000,0.000000,0.000129,0.000065,0.000056,0.000194,0.000601,0.000601,0.000534,0.148310,-0.001456,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000014,0.000000,0.000000,0.000000,0.000131,0.000064,0.000054,0.000195,0.000529,0.000529,0.000525,0.146945,-0.001366,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000025,0.000000,0.000000,0.000000,0.000132,0.000063,0.000053,0.000195,0.000446,0.000446,0.000515,0.145691,-0.001254,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000060,0.000000,0.000000,0.000000,0.000134,0.000062,0.000052,0.000195,0.000372,0.000372,0.000506,0.144562,-0.001129,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000177,0.000000,0.000000,0.000000,0.000135,0.000061,0.000051,0.000196,0.000277,0.000277,0.000497,0.143658,-0.000905,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000001,0.000000,0.000000,0.000000,0.000137,0.000059,0.000051,0.000196,0.000160,0.000160,0.000488,0.142707,-0.000951,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000585,0.000023,0.000042,0.000023,0.000138,0.000058,0.000050,0.000220,0.000051,0.000051,0.000480,0.142411,-0.000296,1.000000,0.000019 +122,2022-08-06 02:00:00,0.001113,0.000104,0.000170,0.000104,0.000139,0.000058,0.000051,0.000301,0.000000,0.000000,0.000473,0.142564,0.000154,1.000000,0.000085 +123,2022-08-06 03:00:00,0.000752,0.000096,0.000082,0.000096,0.000141,0.000057,0.000050,0.000293,0.000000,0.000000,0.000467,0.142448,-0.000117,1.000000,0.000071 +124,2022-08-06 04:00:00,0.000199,0.000058,0.000006,0.000058,0.000142,0.000056,0.000050,0.000256,0.000000,0.000000,0.000461,0.141861,-0.000587,1.000000,0.000019 +125,2022-08-06 05:00:00,0.000112,0.000019,0.000002,0.000019,0.000144,0.000055,0.000049,0.000218,0.000000,0.000000,0.000455,0.141201,-0.000660,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000246,0.000007,0.000009,0.000007,0.000145,0.000055,0.000049,0.000207,0.000000,0.000000,0.000449,0.140675,-0.000526,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000147,0.000054,0.000048,0.000203,0.000000,0.000000,0.000443,0.139922,-0.000752,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000148,0.000053,0.000048,0.000203,0.000000,0.000000,0.000437,0.139180,-0.000742,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000053,0.000047,0.000202,0.000000,0.000000,0.000432,0.138448,-0.000732,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000052,0.000046,0.000203,0.000000,0.000000,0.000426,0.137726,-0.000722,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000051,0.000046,0.000204,0.000000,0.000000,0.000421,0.137014,-0.000712,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000050,0.000045,0.000204,0.000000,0.000000,0.000415,0.136312,-0.000702,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000050,0.000044,0.000205,0.000000,0.000000,0.000410,0.135620,-0.000693,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000049,0.000044,0.000206,0.000101,0.000101,0.000404,0.134837,-0.000782,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000048,0.000043,0.000206,0.000316,0.000316,0.000398,0.133853,-0.000984,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000048,0.000042,0.000207,0.000473,0.000473,0.000392,0.132728,-0.001126,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000041,0.000208,0.000593,0.000593,0.000386,0.131499,-0.001228,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000046,0.000040,0.000208,0.000681,0.000681,0.000380,0.130201,-0.001299,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000038,0.000209,0.000604,0.000604,0.000373,0.128997,-0.001204,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000044,0.000037,0.000209,0.000558,0.000558,0.000366,0.127854,-0.001143,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000036,0.000210,0.000506,0.000506,0.000359,0.126779,-0.001075,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000036,0.000210,0.000433,0.000433,0.000351,0.125790,-0.000989,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000035,0.000211,0.000308,0.000308,0.000344,0.124938,-0.000852,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000034,0.000212,0.000167,0.000167,0.000338,0.124237,-0.000701,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000034,0.000212,0.000025,0.000025,0.000331,0.123686,-0.000551,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000039,0.000033,0.000213,0.000000,0.000000,0.000325,0.123167,-0.000519,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000039,0.000033,0.000213,0.000000,0.000000,0.000319,0.122655,-0.000512,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000214,0.000000,0.000000,0.000313,0.122150,-0.000505,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000037,0.000032,0.000215,0.000000,0.000000,0.000308,0.121652,-0.000498,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000037,0.000031,0.000215,0.000000,0.000000,0.000302,0.121160,-0.000491,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000031,0.000216,0.000000,0.000000,0.000297,0.120676,-0.000485,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000031,0.000217,0.000000,0.000000,0.000292,0.120198,-0.000478,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000035,0.000030,0.000218,0.000000,0.000000,0.000288,0.119727,-0.000471,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000030,0.000218,0.000000,0.000000,0.000283,0.119262,-0.000465,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000029,0.000219,0.000000,0.000000,0.000279,0.118803,-0.000458,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000029,0.000220,0.000000,0.000000,0.000274,0.118351,-0.000452,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000033,0.000029,0.000221,0.000000,0.000000,0.000270,0.117905,-0.000446,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000032,0.000028,0.000221,0.000098,0.000098,0.000266,0.117369,-0.000536,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000027,0.000222,0.000320,0.000320,0.000261,0.116621,-0.000748,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000027,0.000223,0.000487,0.000487,0.000257,0.115718,-0.000903,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000026,0.000224,0.000601,0.000601,0.000252,0.114716,-0.001002,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000025,0.000224,0.000676,0.000676,0.000247,0.113653,-0.001063,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000029,0.000024,0.000225,0.000604,0.000604,0.000241,0.112675,-0.000977,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000023,0.000225,0.000551,0.000551,0.000236,0.111764,-0.000911,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000022,0.000226,0.000495,0.000495,0.000230,0.110921,-0.000843,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000022,0.000226,0.000416,0.000416,0.000225,0.110167,-0.000754,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000008,0.000000,0.000000,0.000000,0.000200,0.000027,0.000021,0.000227,0.000296,0.000296,0.000219,0.109550,-0.000617,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000103,0.000000,0.000000,0.000000,0.000202,0.000026,0.000021,0.000228,0.000132,0.000132,0.000214,0.109195,-0.000354,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000020,0.000228,0.000003,0.000003,0.000209,0.108872,-0.000323,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000020,0.000229,0.000000,0.000000,0.000205,0.108556,-0.000316,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000020,0.000230,0.000000,0.000000,0.000200,0.108245,-0.000311,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000230,0.000000,0.000000,0.000196,0.107938,-0.000307,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000019,0.000231,0.000000,0.000000,0.000192,0.107635,-0.000303,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000019,0.000232,0.000000,0.000000,0.000188,0.107336,-0.000299,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000019,0.000233,0.000000,0.000000,0.000185,0.107041,-0.000295,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000019,0.000233,0.000000,0.000000,0.000182,0.106751,-0.000291,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000234,0.000000,0.000000,0.000178,0.106464,-0.000287,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000018,0.000235,0.000000,0.000000,0.000175,0.106181,-0.000283,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000021,0.000018,0.000236,0.000000,0.000000,0.000172,0.105902,-0.000279,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000236,0.000000,0.000000,0.000169,0.105629,-0.000274,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000217,0.000020,0.000017,0.000237,0.000000,0.000000,0.000166,0.105358,-0.000271,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000218,0.000020,0.000017,0.000238,0.000083,0.000083,0.000164,0.105010,-0.000349,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000219,0.000019,0.000017,0.000239,0.000305,0.000305,0.000161,0.104447,-0.000563,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000221,0.000019,0.000016,0.000240,0.000471,0.000471,0.000158,0.103729,-0.000718,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000003,0.000000,0.000000,0.000000,0.000222,0.000019,0.000015,0.000240,0.000586,0.000586,0.000154,0.102909,-0.000820,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000005,0.000000,0.000000,0.000000,0.000223,0.000018,0.000014,0.000241,0.000668,0.000668,0.000150,0.102020,-0.000888,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000224,0.000018,0.000014,0.000242,0.000596,0.000596,0.000146,0.101216,-0.000804,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000007,0.000000,0.000000,0.000000,0.000225,0.000017,0.000013,0.000242,0.000538,0.000538,0.000142,0.100482,-0.000734,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000004,0.000000,0.000000,0.000000,0.000226,0.000017,0.000012,0.000243,0.000501,0.000501,0.000138,0.099792,-0.000690,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000002,0.000000,0.000000,0.000000,0.000227,0.000016,0.000012,0.000243,0.000416,0.000002,0.000134,0.099600,-0.000191,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000001,0.000000,0.000000,0.000000,0.000228,0.000016,0.000012,0.000244,0.000290,0.000001,0.000130,0.099412,-0.000189,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000012,0.000245,0.000163,0.000000,0.000127,0.099226,-0.000186,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000012,0.000245,0.000020,0.000000,0.000123,0.099043,-0.000183,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000012,0.000246,0.000000,0.000000,0.000120,0.098862,-0.000181,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000011,0.000247,0.000000,0.000000,0.000118,0.098683,-0.000178,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000011,0.000247,0.000000,0.000000,0.000115,0.098508,-0.000176,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000248,0.000000,0.000000,0.000112,0.098334,-0.000174,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000110,0.098163,-0.000171,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000108,0.097994,-0.000169,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000250,0.000000,0.000000,0.000106,0.097828,-0.000166,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000251,0.000000,0.000000,0.000104,0.097664,-0.000164,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000252,0.000000,0.000000,0.000102,0.097502,-0.000162,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000253,0.000000,0.000000,0.000100,0.097342,-0.000160,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000254,0.000000,0.000000,0.000098,0.097184,-0.000157,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000010,0.000254,0.000000,0.000000,0.000096,0.097029,-0.000155,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000011,0.000010,0.000255,0.000091,0.000000,0.000095,0.096876,-0.000153,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620825.csv b/test/channel_loss/channel_forcing/et/cat-2620825.csv new file mode 100644 index 000000000..9fd75887f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620825.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000185,0.000000,0.000000,0.000000,0.000000,0.001499,0.000565,0.001499,0.000160,0.000160,0.010663,0.419256,-0.005189,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001368,0.000557,0.001368,0.000046,0.000046,0.009852,0.414071,-0.005185,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001257,0.000549,0.001257,0.000000,0.000000,0.009145,0.409005,-0.005066,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001161,0.000542,0.001161,0.000000,0.000000,0.008525,0.404010,-0.004995,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001078,0.000534,0.001079,0.000000,0.000000,0.007981,0.399086,-0.004924,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001006,0.000526,0.001007,0.000000,0.000000,0.007501,0.394232,-0.004854,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000944,0.000519,0.000944,0.000000,0.000000,0.007076,0.389446,-0.004786,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000889,0.000512,0.000889,0.000000,0.000000,0.006699,0.384729,-0.004718,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000840,0.000504,0.000841,0.000000,0.000000,0.006363,0.380077,-0.004651,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000797,0.000497,0.000798,0.000000,0.000000,0.006064,0.375492,-0.004585,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000759,0.000490,0.000761,0.000000,0.000000,0.005795,0.370971,-0.004521,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000725,0.000483,0.000727,0.000000,0.000000,0.005554,0.366515,-0.004457,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000694,0.000476,0.000697,0.000000,0.000000,0.005336,0.362121,-0.004394,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000667,0.000470,0.000670,0.000000,0.000000,0.005139,0.357790,-0.004331,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000642,0.000463,0.000645,0.000129,0.000129,0.004960,0.353393,-0.004397,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000619,0.000456,0.000623,0.000358,0.000358,0.004797,0.348832,-0.004561,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000599,0.000449,0.000603,0.000503,0.000503,0.004647,0.344192,-0.004639,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000580,0.000441,0.000585,0.000586,0.000586,0.004508,0.339537,-0.004656,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000562,0.000434,0.000568,0.000522,0.000522,0.004380,0.335010,-0.004526,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000225,0.000000,0.000000,0.000000,0.000006,0.000546,0.000428,0.000552,0.000467,0.000467,0.004262,0.330824,-0.004187,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000183,0.000000,0.000000,0.000000,0.000007,0.000531,0.000421,0.000538,0.000419,0.000419,0.004152,0.326703,-0.004121,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000400,0.000000,0.000000,0.000000,0.000008,0.000517,0.000415,0.000525,0.000353,0.000353,0.004050,0.322918,-0.003785,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000228,0.000000,0.000000,0.000000,0.000008,0.000505,0.000409,0.000513,0.000311,0.000311,0.003955,0.319058,-0.003859,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000302,0.000000,0.000001,0.000000,0.000009,0.000493,0.000404,0.000502,0.000236,0.000236,0.003866,0.315401,-0.003658,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000263,0.000001,0.000001,0.000001,0.000010,0.000481,0.000398,0.000492,0.000154,0.000154,0.003783,0.311836,-0.003565,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000957,0.000049,0.000088,0.000049,0.000011,0.000471,0.000394,0.000531,0.000065,0.000065,0.003706,0.309008,-0.002828,1.000000,0.000040 +26,2022-08-02 02:00:00,0.001101,0.000094,0.000131,0.000094,0.000012,0.000462,0.000390,0.000568,0.000000,0.000000,0.003634,0.306384,-0.002624,1.000000,0.000077 +27,2022-08-02 03:00:00,0.000994,0.000110,0.000108,0.000110,0.000012,0.000453,0.000386,0.000575,0.000000,0.000000,0.003567,0.303714,-0.002669,1.000000,0.000075 +28,2022-08-02 04:00:00,0.001091,0.000123,0.000128,0.000123,0.000013,0.000444,0.000382,0.000581,0.000000,0.000000,0.003504,0.301158,-0.002556,1.000000,0.000079 +29,2022-08-02 05:00:00,0.000837,0.000096,0.000077,0.000096,0.000014,0.000436,0.000377,0.000546,0.000000,0.000000,0.003445,0.298439,-0.002720,1.000000,0.000060 +30,2022-08-02 06:00:00,0.000747,0.000079,0.000062,0.000079,0.000015,0.000429,0.000373,0.000523,0.000000,0.000000,0.003389,0.295684,-0.002755,1.000000,0.000043 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000016,0.000422,0.000368,0.000469,0.000000,0.000000,0.003335,0.292292,-0.003392,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000017,0.000415,0.000363,0.000444,0.000000,0.000000,0.003283,0.288949,-0.003344,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000408,0.000357,0.000426,0.000000,0.000000,0.003232,0.285652,-0.003296,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000402,0.000352,0.000421,0.000000,0.000000,0.003183,0.282402,-0.003250,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000395,0.000347,0.000415,0.000000,0.000000,0.003135,0.279198,-0.003204,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000389,0.000343,0.000410,0.000000,0.000000,0.003088,0.276040,-0.003159,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000022,0.000383,0.000338,0.000406,0.000000,0.000000,0.003043,0.273023,-0.003016,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000093,0.000000,0.000000,0.000000,0.000023,0.000377,0.000333,0.000401,0.000117,0.000117,0.002998,0.269929,-0.003095,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000372,0.000328,0.000396,0.000319,0.000319,0.002955,0.266649,-0.003279,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000366,0.000323,0.000391,0.000442,0.000442,0.002911,0.263295,-0.003355,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000360,0.000317,0.000387,0.000522,0.000522,0.002868,0.259909,-0.003386,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000316,0.000000,0.000000,0.000000,0.000028,0.000355,0.000313,0.000383,0.000587,0.000587,0.002826,0.256755,-0.003153,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000068,0.000000,0.000000,0.000000,0.000029,0.000349,0.000307,0.000378,0.000531,0.000531,0.002784,0.253458,-0.003297,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000344,0.000302,0.000374,0.000484,0.000484,0.002742,0.250186,-0.003272,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000339,0.000297,0.000370,0.000484,0.000484,0.002701,0.246960,-0.003225,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000333,0.000292,0.000366,0.000414,0.000414,0.002660,0.243850,-0.003111,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000328,0.000288,0.000362,0.000306,0.000306,0.002620,0.240889,-0.002961,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000323,0.000284,0.000358,0.000170,0.000170,0.002580,0.238105,-0.002784,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000318,0.000279,0.000354,0.000030,0.000030,0.002542,0.235498,-0.002607,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000313,0.000275,0.000350,0.000000,0.000000,0.002504,0.232958,-0.002540,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000308,0.000272,0.000347,0.000000,0.000000,0.002467,0.230453,-0.002505,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000304,0.000268,0.000344,0.000000,0.000000,0.002432,0.227984,-0.002469,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000299,0.000264,0.000340,0.000000,0.000000,0.002396,0.225550,-0.002434,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000295,0.000260,0.000337,0.000000,0.000000,0.002362,0.223150,-0.002400,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000290,0.000257,0.000334,0.000000,0.000000,0.002328,0.220784,-0.002366,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000286,0.000253,0.000331,0.000000,0.000000,0.002295,0.218452,-0.002332,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000282,0.000249,0.000328,0.000000,0.000000,0.002262,0.216152,-0.002299,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000278,0.000246,0.000326,0.000000,0.000000,0.002230,0.213886,-0.002267,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000274,0.000242,0.000323,0.000000,0.000000,0.002199,0.211651,-0.002235,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000270,0.000239,0.000320,0.000000,0.000000,0.002168,0.209448,-0.002203,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000266,0.000236,0.000318,0.000000,0.000000,0.002138,0.207276,-0.002172,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000262,0.000232,0.000316,0.000123,0.000123,0.002108,0.205013,-0.002262,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000258,0.000228,0.000313,0.000359,0.000359,0.002078,0.202550,-0.002463,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000254,0.000224,0.000311,0.000503,0.000503,0.002047,0.199980,-0.002570,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000250,0.000220,0.000308,0.000593,0.000593,0.002017,0.197357,-0.002623,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000247,0.000216,0.000306,0.000582,0.000582,0.001987,0.194782,-0.002575,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000243,0.000212,0.000303,0.000523,0.000523,0.001956,0.192302,-0.002480,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002036,0.000117,0.000212,0.000117,0.000062,0.000239,0.000211,0.000418,0.000475,0.000475,0.001928,0.191702,-0.000600,1.000000,0.000096 +69,2022-08-03 21:00:00,0.000357,0.000053,0.000000,0.000053,0.000063,0.000236,0.000208,0.000352,0.000459,0.000459,0.001901,0.189680,-0.002022,1.000000,0.000042 +70,2022-08-03 22:00:00,0.000000,0.000042,0.000000,0.000042,0.000065,0.000232,0.000205,0.000340,0.000395,0.000395,0.001873,0.187398,-0.002282,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000082,0.000000,0.000000,0.000000,0.000066,0.000229,0.000201,0.000295,0.000289,0.000289,0.001846,0.185333,-0.002065,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000225,0.000198,0.000293,0.000174,0.000174,0.001819,0.183330,-0.002003,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000222,0.000195,0.000291,0.000043,0.000043,0.001792,0.181486,-0.001845,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000219,0.000193,0.000289,0.000000,0.000000,0.001766,0.179709,-0.001777,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000215,0.000190,0.000288,0.000000,0.000000,0.001741,0.177958,-0.001751,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000212,0.000187,0.000286,0.000000,0.000000,0.001716,0.176231,-0.001727,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000209,0.000185,0.000284,0.000000,0.000000,0.001691,0.174529,-0.001702,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000206,0.000182,0.000283,0.000000,0.000000,0.001667,0.172851,-0.001678,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000203,0.000179,0.000281,0.000000,0.000000,0.001644,0.171197,-0.001654,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000200,0.000177,0.000280,0.000000,0.000000,0.001620,0.169566,-0.001631,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000197,0.000174,0.000278,0.000000,0.000000,0.001598,0.167958,-0.001608,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000194,0.000172,0.000277,0.000000,0.000000,0.001575,0.166373,-0.001585,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000192,0.000169,0.000276,0.000000,0.000000,0.001553,0.164810,-0.001563,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000189,0.000167,0.000275,0.000000,0.000000,0.001531,0.163269,-0.001541,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000186,0.000165,0.000273,0.000000,0.000000,0.001510,0.161750,-0.001519,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000183,0.000162,0.000272,0.000121,0.000121,0.001488,0.160134,-0.001616,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000181,0.000159,0.000271,0.000358,0.000358,0.001467,0.158307,-0.001827,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000178,0.000156,0.000270,0.000505,0.000505,0.001445,0.156360,-0.001947,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000175,0.000153,0.000269,0.000598,0.000598,0.001423,0.154350,-0.002010,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000172,0.000150,0.000267,0.000657,0.000657,0.001401,0.152309,-0.002040,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000170,0.000147,0.000266,0.000591,0.000591,0.001378,0.150363,-0.001947,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000167,0.000144,0.000265,0.000523,0.000523,0.001355,0.148511,-0.001852,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000164,0.000141,0.000263,0.000493,0.000493,0.001333,0.146715,-0.001796,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000161,0.000139,0.000262,0.000427,0.000427,0.001310,0.145009,-0.001705,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000158,0.000136,0.000261,0.000316,0.000316,0.001288,0.143437,-0.001572,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000156,0.000134,0.000260,0.000182,0.000182,0.001266,0.142020,-0.001417,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000153,0.000132,0.000259,0.000047,0.000047,0.001245,0.140755,-0.001265,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000150,0.000130,0.000258,0.000000,0.000000,0.001225,0.139555,-0.001200,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000148,0.000128,0.000257,0.000000,0.000000,0.001205,0.138371,-0.001183,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000146,0.000127,0.000256,0.000000,0.000000,0.001186,0.137204,-0.001167,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000143,0.000125,0.000255,0.000000,0.000000,0.001168,0.136054,-0.001150,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000141,0.000123,0.000254,0.000000,0.000000,0.001150,0.134920,-0.001134,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000139,0.000121,0.000254,0.000000,0.000000,0.001132,0.133802,-0.001118,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000137,0.000120,0.000253,0.000000,0.000000,0.001115,0.132700,-0.001102,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000135,0.000118,0.000252,0.000000,0.000000,0.001098,0.131614,-0.001086,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000133,0.000116,0.000252,0.000000,0.000000,0.001081,0.130543,-0.001071,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000131,0.000115,0.000251,0.000000,0.000000,0.001065,0.129487,-0.001056,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000129,0.000113,0.000251,0.000000,0.000000,0.001050,0.128446,-0.001041,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000127,0.000111,0.000251,0.000000,0.000000,0.001034,0.127419,-0.001026,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000125,0.000110,0.000250,0.000131,0.000131,0.001019,0.126278,-0.001141,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000123,0.000107,0.000250,0.000362,0.000362,0.001003,0.124926,-0.001352,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000121,0.000105,0.000249,0.000507,0.000507,0.000988,0.123450,-0.001476,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000119,0.000103,0.000249,0.000606,0.000606,0.000971,0.121897,-0.001553,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000117,0.000100,0.000248,0.000591,0.000591,0.000955,0.120380,-0.001517,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000115,0.000098,0.000248,0.000538,0.000538,0.000938,0.119000,-0.001380,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000113,0.000096,0.000247,0.000482,0.000482,0.000922,0.117694,-0.001306,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000111,0.000094,0.000247,0.000452,0.000452,0.000905,0.116437,-0.001257,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000083,0.000000,0.000000,0.000000,0.000138,0.000109,0.000092,0.000246,0.000380,0.000380,0.000889,0.115287,-0.001150,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000139,0.000107,0.000091,0.000246,0.000289,0.000289,0.000873,0.114349,-0.000938,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000081,0.000000,0.000000,0.000000,0.000141,0.000105,0.000090,0.000245,0.000173,0.000173,0.000858,0.113431,-0.000918,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000699,0.000019,0.000035,0.000019,0.000142,0.000103,0.000089,0.000264,0.000060,0.000060,0.000844,0.113213,-0.000219,1.000000,0.000016 +122,2022-08-06 02:00:00,0.001271,0.000081,0.000131,0.000081,0.000143,0.000102,0.000090,0.000326,0.000000,0.000000,0.000832,0.113526,0.000314,1.000000,0.000066 +123,2022-08-06 03:00:00,0.000750,0.000066,0.000048,0.000066,0.000145,0.000100,0.000089,0.000311,0.000000,0.000000,0.000821,0.113404,-0.000122,1.000000,0.000048 +124,2022-08-06 04:00:00,0.000622,0.000056,0.000033,0.000056,0.000146,0.000099,0.000089,0.000302,0.000000,0.000000,0.000811,0.113172,-0.000233,1.000000,0.000024 +125,2022-08-06 05:00:00,0.000628,0.000036,0.000034,0.000036,0.000148,0.000098,0.000089,0.000282,0.000000,0.000000,0.000802,0.112947,-0.000225,1.000000,0.000022 +126,2022-08-06 06:00:00,0.000657,0.000035,0.000037,0.000035,0.000149,0.000097,0.000088,0.000281,0.000000,0.000000,0.000794,0.112752,-0.000195,1.000000,0.000023 +127,2022-08-06 07:00:00,0.000000,0.000016,0.000000,0.000016,0.000151,0.000096,0.000087,0.000263,0.000000,0.000000,0.000785,0.111947,-0.000804,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000152,0.000095,0.000086,0.000254,0.000000,0.000000,0.000776,0.111154,-0.000793,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000094,0.000085,0.000247,0.000000,0.000000,0.000767,0.110373,-0.000782,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000093,0.000084,0.000248,0.000000,0.000000,0.000758,0.109602,-0.000771,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000091,0.000082,0.000248,0.000000,0.000000,0.000749,0.108842,-0.000760,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000090,0.000081,0.000248,0.000000,0.000000,0.000740,0.108093,-0.000749,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000089,0.000080,0.000249,0.000000,0.000000,0.000731,0.107355,-0.000738,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000088,0.000079,0.000249,0.000115,0.000115,0.000722,0.106513,-0.000841,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000087,0.000077,0.000249,0.000341,0.000341,0.000712,0.105461,-0.001053,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000086,0.000075,0.000249,0.000480,0.000480,0.000702,0.104286,-0.001175,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000084,0.000073,0.000250,0.000572,0.000572,0.000691,0.103037,-0.001249,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000083,0.000071,0.000250,0.000641,0.000641,0.000679,0.101738,-0.001299,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000081,0.000069,0.000250,0.000585,0.000585,0.000667,0.100513,-0.001225,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000080,0.000068,0.000249,0.000529,0.000529,0.000655,0.099361,-0.001152,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000078,0.000066,0.000249,0.000500,0.000500,0.000643,0.098252,-0.001108,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000077,0.000064,0.000249,0.000424,0.000424,0.000630,0.097235,-0.001018,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000075,0.000063,0.000249,0.000312,0.000312,0.000618,0.096342,-0.000893,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000074,0.000062,0.000249,0.000177,0.000177,0.000606,0.095596,-0.000747,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000072,0.000061,0.000249,0.000041,0.000041,0.000594,0.094993,-0.000602,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000071,0.000060,0.000249,0.000000,0.000000,0.000583,0.094440,-0.000553,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000070,0.000059,0.000249,0.000000,0.000000,0.000573,0.093895,-0.000545,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000068,0.000058,0.000249,0.000000,0.000000,0.000563,0.093357,-0.000538,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000067,0.000057,0.000249,0.000000,0.000000,0.000553,0.092827,-0.000530,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000066,0.000057,0.000250,0.000000,0.000000,0.000543,0.092305,-0.000523,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000065,0.000056,0.000250,0.000000,0.000000,0.000534,0.091790,-0.000515,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000064,0.000055,0.000250,0.000000,0.000000,0.000525,0.091282,-0.000508,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000063,0.000054,0.000250,0.000000,0.000000,0.000517,0.090781,-0.000501,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000062,0.000054,0.000251,0.000000,0.000000,0.000508,0.090287,-0.000494,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000061,0.000053,0.000251,0.000000,0.000000,0.000500,0.089801,-0.000487,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000060,0.000052,0.000251,0.000000,0.000000,0.000492,0.089321,-0.000480,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000059,0.000051,0.000252,0.000000,0.000000,0.000485,0.088848,-0.000473,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000058,0.000050,0.000252,0.000110,0.000110,0.000477,0.088273,-0.000575,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000057,0.000049,0.000252,0.000339,0.000339,0.000469,0.087481,-0.000792,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000056,0.000048,0.000253,0.000482,0.000482,0.000461,0.086560,-0.000922,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000055,0.000046,0.000253,0.000578,0.000578,0.000452,0.085556,-0.001004,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000054,0.000045,0.000253,0.000629,0.000629,0.000443,0.084516,-0.001040,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000053,0.000044,0.000253,0.000572,0.000000,0.000434,0.084111,-0.000405,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000052,0.000043,0.000254,0.000517,0.000000,0.000426,0.083712,-0.000399,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000051,0.000043,0.000254,0.000502,0.000000,0.000418,0.083318,-0.000394,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000050,0.000042,0.000254,0.000425,0.000000,0.000410,0.082930,-0.000388,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000049,0.000041,0.000255,0.000313,0.000000,0.000402,0.082548,-0.000383,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000048,0.000041,0.000255,0.000149,0.000000,0.000395,0.082171,-0.000377,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000047,0.000040,0.000255,0.000015,0.000000,0.000388,0.081799,-0.000372,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000046,0.000040,0.000256,0.000000,0.000000,0.000382,0.081432,-0.000367,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000046,0.000039,0.000256,0.000000,0.000000,0.000375,0.081071,-0.000361,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000045,0.000039,0.000257,0.000000,0.000000,0.000369,0.080715,-0.000356,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000044,0.000038,0.000257,0.000000,0.000000,0.000363,0.080364,-0.000351,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000043,0.000038,0.000258,0.000000,0.000000,0.000357,0.080017,-0.000346,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000043,0.000037,0.000258,0.000000,0.000000,0.000352,0.079676,-0.000341,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000042,0.000036,0.000259,0.000000,0.000000,0.000346,0.079339,-0.000337,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000218,0.000041,0.000036,0.000259,0.000000,0.000000,0.000341,0.079011,-0.000328,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000041,0.000035,0.000260,0.000000,0.000000,0.000336,0.078684,-0.000327,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000040,0.000035,0.000260,0.000000,0.000000,0.000330,0.078362,-0.000322,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000039,0.000034,0.000261,0.000000,0.000000,0.000325,0.078044,-0.000318,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000039,0.000034,0.000262,0.000000,0.000000,0.000321,0.077730,-0.000313,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000038,0.000034,0.000262,0.000094,0.000000,0.000316,0.077421,-0.000309,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000038,0.000033,0.000263,0.000327,0.000000,0.000311,0.077117,-0.000305,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000037,0.000033,0.000263,0.000474,0.000000,0.000306,0.076816,-0.000300,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000037,0.000032,0.000264,0.000564,0.000000,0.000302,0.076520,-0.000296,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000036,0.000032,0.000264,0.000623,0.000000,0.000297,0.076228,-0.000292,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000036,0.000031,0.000265,0.000560,0.000000,0.000293,0.075940,-0.000288,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000035,0.000031,0.000266,0.000505,0.000000,0.000289,0.075657,-0.000284,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000035,0.000030,0.000266,0.000488,0.000000,0.000285,0.075377,-0.000280,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000034,0.000030,0.000267,0.000420,0.000000,0.000281,0.075101,-0.000276,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000034,0.000029,0.000268,0.000310,0.000000,0.000276,0.074830,-0.000272,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000033,0.000029,0.000268,0.000173,0.000000,0.000272,0.074562,-0.000268,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000033,0.000029,0.000269,0.000030,0.000000,0.000269,0.074297,-0.000264,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000032,0.000028,0.000269,0.000000,0.000000,0.000265,0.074037,-0.000260,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000032,0.000028,0.000270,0.000000,0.000000,0.000261,0.073780,-0.000257,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000031,0.000027,0.000271,0.000000,0.000000,0.000257,0.073527,-0.000253,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000031,0.000027,0.000271,0.000000,0.000000,0.000254,0.073278,-0.000250,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000030,0.000027,0.000272,0.000000,0.000000,0.000250,0.073032,-0.000246,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000030,0.000026,0.000272,0.000000,0.000000,0.000246,0.072789,-0.000243,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000029,0.000026,0.000273,0.000000,0.000000,0.000243,0.072550,-0.000239,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000029,0.000026,0.000274,0.000000,0.000000,0.000239,0.072314,-0.000236,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000029,0.000025,0.000274,0.000000,0.000000,0.000236,0.072082,-0.000232,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000028,0.000025,0.000275,0.000000,0.000000,0.000233,0.071853,-0.000229,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000028,0.000024,0.000276,0.000000,0.000000,0.000229,0.071627,-0.000226,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000027,0.000024,0.000276,0.000000,0.000000,0.000226,0.071404,-0.000223,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000027,0.000024,0.000277,0.000105,0.000000,0.000223,0.071185,-0.000220,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620826.csv b/test/channel_loss/channel_forcing/et/cat-2620826.csv new file mode 100644 index 000000000..43f19b9da --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620826.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000312,0.000002,0.000003,0.000002,0.000000,0.001480,0.000434,0.001482,0.000180,0.000180,0.010550,0.430103,-0.004678,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000061,0.000001,0.000000,0.000001,0.000000,0.001335,0.000427,0.001336,0.000052,0.000052,0.009642,0.425374,-0.004729,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000058,0.000001,0.000001,0.000001,0.000000,0.001211,0.000421,0.001212,0.000000,0.000000,0.008852,0.420760,-0.004614,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000026,0.000000,0.000000,0.000000,0.000000,0.001106,0.000415,0.001106,0.000000,0.000000,0.008162,0.416180,-0.004580,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000026,0.000000,0.000000,0.000000,0.000000,0.001015,0.000410,0.001015,0.000000,0.000000,0.007557,0.411665,-0.004515,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.000936,0.000404,0.000937,0.000000,0.000000,0.007024,0.407220,-0.004446,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000026,0.000000,0.000000,0.000000,0.000001,0.000868,0.000398,0.000868,0.000000,0.000000,0.006555,0.402832,-0.004387,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000808,0.000392,0.000809,0.000000,0.000000,0.006139,0.398482,-0.004350,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000755,0.000387,0.000756,0.000000,0.000000,0.005771,0.394194,-0.004288,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000709,0.000381,0.000710,0.000000,0.000000,0.005443,0.389967,-0.004227,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000668,0.000376,0.000670,0.000000,0.000000,0.005151,0.385801,-0.004167,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000632,0.000371,0.000634,0.000000,0.000000,0.004889,0.381693,-0.004108,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000600,0.000365,0.000602,0.000000,0.000000,0.004655,0.377644,-0.004049,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000571,0.000360,0.000574,0.000000,0.000000,0.004444,0.373652,-0.003991,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000545,0.000355,0.000548,0.000127,0.000127,0.004254,0.369592,-0.004060,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000522,0.000349,0.000525,0.000361,0.000361,0.004081,0.365359,-0.004233,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000500,0.000344,0.000505,0.000527,0.000527,0.003925,0.361023,-0.004336,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000481,0.000338,0.000486,0.000654,0.000654,0.003781,0.356624,-0.004399,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000464,0.000332,0.000469,0.000618,0.000618,0.003650,0.352323,-0.004301,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000141,0.000000,0.000000,0.000000,0.000006,0.000448,0.000327,0.000454,0.000557,0.000557,0.003529,0.348281,-0.004042,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000433,0.000322,0.000439,0.000486,0.000486,0.003418,0.344414,-0.003866,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000419,0.000317,0.000427,0.000380,0.000380,0.003316,0.340770,-0.003645,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000407,0.000313,0.000415,0.000312,0.000312,0.003222,0.337182,-0.003587,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000395,0.000308,0.000404,0.000249,0.000249,0.003135,0.333708,-0.003475,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000191,0.000000,0.000000,0.000000,0.000009,0.000385,0.000304,0.000394,0.000154,0.000154,0.003054,0.330378,-0.003330,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000565,0.000019,0.000034,0.000019,0.000010,0.000375,0.000300,0.000404,0.000061,0.000061,0.002979,0.327523,-0.002855,1.000000,0.000016 +26,2022-08-02 02:00:00,0.000844,0.000059,0.000092,0.000059,0.000011,0.000366,0.000297,0.000436,0.000000,0.000000,0.002910,0.324986,-0.002537,1.000000,0.000048 +27,2022-08-02 03:00:00,0.000889,0.000085,0.000101,0.000085,0.000012,0.000357,0.000293,0.000454,0.000000,0.000000,0.002846,0.322520,-0.002465,1.000000,0.000064 +28,2022-08-02 04:00:00,0.000898,0.000100,0.000102,0.000100,0.000012,0.000350,0.000290,0.000462,0.000000,0.000000,0.002786,0.320098,-0.002422,1.000000,0.000066 +29,2022-08-02 05:00:00,0.000742,0.000085,0.000071,0.000085,0.000013,0.000343,0.000287,0.000441,0.000000,0.000000,0.002731,0.317587,-0.002511,1.000000,0.000052 +30,2022-08-02 06:00:00,0.000627,0.000066,0.000051,0.000066,0.000014,0.000336,0.000284,0.000416,0.000000,0.000000,0.002679,0.315018,-0.002569,1.000000,0.000037 +31,2022-08-02 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000015,0.000329,0.000280,0.000371,0.000000,0.000000,0.002629,0.311918,-0.003100,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000016,0.000323,0.000276,0.000349,0.000000,0.000000,0.002582,0.308861,-0.003056,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000317,0.000272,0.000334,0.000000,0.000000,0.002536,0.305849,-0.003013,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000312,0.000268,0.000329,0.000000,0.000000,0.002493,0.302879,-0.002970,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000306,0.000264,0.000325,0.000000,0.000000,0.002451,0.299951,-0.002928,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000301,0.000260,0.000321,0.000000,0.000000,0.002410,0.297065,-0.002886,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000296,0.000257,0.000317,0.000000,0.000000,0.002371,0.294221,-0.002845,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000291,0.000253,0.000313,0.000107,0.000107,0.002333,0.291311,-0.002910,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000286,0.000249,0.000309,0.000337,0.000337,0.002295,0.288216,-0.003095,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000281,0.000245,0.000305,0.000491,0.000491,0.002259,0.285013,-0.003203,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000277,0.000240,0.000302,0.000611,0.000611,0.002222,0.281737,-0.003276,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000026,0.000272,0.000236,0.000298,0.000706,0.000706,0.002186,0.278710,-0.003027,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000268,0.000232,0.000295,0.000645,0.000645,0.002151,0.275490,-0.003220,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000263,0.000228,0.000291,0.000555,0.000555,0.002116,0.272405,-0.003085,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000259,0.000224,0.000288,0.000499,0.000499,0.002082,0.269419,-0.002985,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000254,0.000221,0.000285,0.000415,0.000415,0.002048,0.266559,-0.002861,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000250,0.000217,0.000282,0.000319,0.000319,0.002015,0.263834,-0.002725,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000246,0.000214,0.000279,0.000178,0.000178,0.001982,0.261287,-0.002547,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000242,0.000211,0.000276,0.000030,0.000030,0.001951,0.258921,-0.002365,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000238,0.000208,0.000273,0.000000,0.000000,0.001921,0.256619,-0.002302,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000234,0.000205,0.000271,0.000000,0.000000,0.001891,0.254350,-0.002269,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000231,0.000202,0.000268,0.000000,0.000000,0.001862,0.252113,-0.002237,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000227,0.000199,0.000266,0.000000,0.000000,0.001834,0.249908,-0.002205,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000224,0.000196,0.000264,0.000000,0.000000,0.001806,0.247734,-0.002174,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000220,0.000193,0.000261,0.000000,0.000000,0.001779,0.245591,-0.002143,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000217,0.000191,0.000259,0.000000,0.000000,0.001753,0.243479,-0.002112,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000214,0.000188,0.000257,0.000000,0.000000,0.001727,0.241397,-0.002082,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000210,0.000185,0.000255,0.000000,0.000000,0.001702,0.239344,-0.002053,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000207,0.000183,0.000253,0.000000,0.000000,0.001677,0.237321,-0.002023,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000204,0.000180,0.000252,0.000000,0.000000,0.001653,0.235326,-0.001995,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000201,0.000177,0.000250,0.000000,0.000000,0.001629,0.233360,-0.001966,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000198,0.000175,0.000248,0.000124,0.000124,0.001605,0.231299,-0.002061,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000195,0.000172,0.000247,0.000370,0.000370,0.001582,0.229026,-0.002273,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000192,0.000169,0.000245,0.000533,0.000533,0.001558,0.226623,-0.002403,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000189,0.000165,0.000243,0.000659,0.000659,0.001534,0.224131,-0.002492,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000186,0.000162,0.000242,0.000662,0.000662,0.001510,0.221672,-0.002460,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000183,0.000159,0.000240,0.000596,0.000596,0.001486,0.219312,-0.002360,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000608,0.000001,0.000001,0.000001,0.000058,0.000180,0.000157,0.000239,0.000515,0.000515,0.001463,0.217664,-0.001648,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000166,0.000000,0.000000,0.000000,0.000059,0.000177,0.000154,0.000237,0.000467,0.000467,0.001440,0.215652,-0.002012,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000035,0.000000,0.000000,0.000000,0.000061,0.000175,0.000152,0.000235,0.000383,0.000383,0.001417,0.213623,-0.002029,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000172,0.000149,0.000234,0.000284,0.000284,0.001394,0.211686,-0.001938,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000169,0.000147,0.000232,0.000166,0.000166,0.001372,0.209892,-0.001793,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000166,0.000145,0.000231,0.000040,0.000040,0.001351,0.208248,-0.001644,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000164,0.000143,0.000230,0.000000,0.000000,0.001330,0.206667,-0.001581,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000161,0.000141,0.000229,0.000000,0.000000,0.001309,0.205109,-0.001558,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000159,0.000139,0.000228,0.000000,0.000000,0.001289,0.203573,-0.001536,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000156,0.000137,0.000227,0.000000,0.000000,0.001270,0.202120,-0.001453,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000154,0.000135,0.000226,0.000000,0.000000,0.001251,0.200626,-0.001494,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000151,0.000133,0.000225,0.000000,0.000000,0.001232,0.199154,-0.001472,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000149,0.000131,0.000224,0.000000,0.000000,0.001214,0.197702,-0.001452,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000147,0.000129,0.000223,0.000000,0.000000,0.001196,0.196271,-0.001431,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000145,0.000127,0.000222,0.000000,0.000000,0.001179,0.194861,-0.001411,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000143,0.000125,0.000221,0.000000,0.000000,0.001162,0.193470,-0.001390,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000140,0.000124,0.000221,0.000000,0.000000,0.001145,0.192100,-0.001371,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000138,0.000122,0.000220,0.000000,0.000000,0.001128,0.190749,-0.001351,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000136,0.000120,0.000219,0.000121,0.000121,0.001112,0.189298,-0.001451,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000134,0.000118,0.000219,0.000366,0.000366,0.001095,0.187626,-0.001672,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000132,0.000115,0.000218,0.000532,0.000532,0.001079,0.185814,-0.001812,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000130,0.000113,0.000217,0.000661,0.000661,0.001062,0.183900,-0.001914,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000128,0.000110,0.000217,0.000722,0.000722,0.001044,0.181954,-0.001946,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000090,0.000126,0.000108,0.000216,0.000667,0.000667,0.001026,0.180148,-0.001807,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000026,0.000000,0.000000,0.000000,0.000092,0.000124,0.000106,0.000215,0.000579,0.000579,0.001009,0.178421,-0.001727,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000121,0.000104,0.000214,0.000487,0.000487,0.000991,0.176784,-0.001637,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000119,0.000102,0.000214,0.000401,0.000401,0.000974,0.175256,-0.001528,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000117,0.000100,0.000213,0.000313,0.000313,0.000956,0.173836,-0.001420,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000001,0.000000,0.000000,0.000000,0.000097,0.000115,0.000098,0.000212,0.000186,0.000186,0.000940,0.172562,-0.001274,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000048,0.000000,0.000000,0.000000,0.000099,0.000113,0.000097,0.000212,0.000052,0.000052,0.000923,0.171484,-0.001077,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000011,0.000000,0.000000,0.000000,0.000100,0.000111,0.000095,0.000211,0.000000,0.000000,0.000908,0.170438,-0.001046,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000101,0.000109,0.000094,0.000211,0.000000,0.000000,0.000893,0.169406,-0.001032,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000103,0.000107,0.000093,0.000210,0.000000,0.000000,0.000878,0.168389,-0.001017,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000104,0.000106,0.000091,0.000210,0.000000,0.000000,0.000864,0.167387,-0.001002,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000106,0.000104,0.000090,0.000210,0.000000,0.000000,0.000850,0.166399,-0.000988,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000102,0.000089,0.000209,0.000000,0.000000,0.000837,0.165413,-0.000985,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000101,0.000088,0.000209,0.000000,0.000000,0.000824,0.164442,-0.000971,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000099,0.000086,0.000209,0.000000,0.000000,0.000811,0.163484,-0.000958,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000098,0.000085,0.000209,0.000000,0.000000,0.000799,0.162540,-0.000944,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000096,0.000084,0.000209,0.000000,0.000000,0.000787,0.161610,-0.000931,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000095,0.000083,0.000209,0.000000,0.000000,0.000775,0.160692,-0.000917,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000093,0.000082,0.000209,0.000000,0.000000,0.000763,0.159788,-0.000904,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000092,0.000080,0.000209,0.000133,0.000133,0.000752,0.158766,-0.001022,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000090,0.000079,0.000209,0.000371,0.000371,0.000740,0.157523,-0.001243,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000089,0.000077,0.000209,0.000535,0.000535,0.000728,0.156136,-0.001387,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000087,0.000075,0.000209,0.000665,0.000665,0.000716,0.154641,-0.001495,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000086,0.000073,0.000208,0.000657,0.000657,0.000703,0.153175,-0.001466,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000084,0.000071,0.000208,0.000595,0.000595,0.000690,0.151854,-0.001321,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000134,0.000000,0.000000,0.000000,0.000125,0.000083,0.000070,0.000208,0.000507,0.000507,0.000677,0.150708,-0.001146,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000064,0.000000,0.000000,0.000000,0.000127,0.000081,0.000068,0.000208,0.000435,0.000435,0.000664,0.149580,-0.001128,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000128,0.000079,0.000067,0.000208,0.000361,0.000361,0.000652,0.148603,-0.000977,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000188,0.000000,0.000000,0.000000,0.000130,0.000078,0.000066,0.000208,0.000282,0.000282,0.000640,0.147779,-0.000824,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000070,0.000000,0.000000,0.000000,0.000131,0.000077,0.000065,0.000207,0.000177,0.000177,0.000628,0.146953,-0.000825,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000513,0.000012,0.000021,0.000012,0.000132,0.000075,0.000064,0.000219,0.000062,0.000062,0.000617,0.146669,-0.000284,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000792,0.000040,0.000063,0.000040,0.000134,0.000074,0.000065,0.000247,0.000000,0.000000,0.000608,0.146683,0.000014,1.000000,0.000032 +123,2022-08-06 03:00:00,0.000670,0.000045,0.000045,0.000045,0.000135,0.000073,0.000064,0.000253,0.000000,0.000000,0.000599,0.146594,-0.000089,1.000000,0.000033 +124,2022-08-06 04:00:00,0.000565,0.000042,0.000033,0.000042,0.000136,0.000072,0.000064,0.000250,0.000000,0.000000,0.000591,0.146416,-0.000179,1.000000,0.000024 +125,2022-08-06 05:00:00,0.000575,0.000036,0.000034,0.000036,0.000138,0.000071,0.000064,0.000245,0.000000,0.000000,0.000584,0.146249,-0.000167,1.000000,0.000022 +126,2022-08-06 06:00:00,0.000627,0.000037,0.000040,0.000037,0.000139,0.000070,0.000064,0.000246,0.000000,0.000000,0.000578,0.146129,-0.000120,1.000000,0.000025 +127,2022-08-06 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000140,0.000070,0.000063,0.000227,0.000000,0.000000,0.000571,0.145432,-0.000697,1.000000,0.000008 +128,2022-08-06 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000142,0.000069,0.000062,0.000218,0.000000,0.000000,0.000564,0.144745,-0.000687,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000068,0.000061,0.000211,0.000000,0.000000,0.000558,0.144068,-0.000677,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000067,0.000060,0.000212,0.000000,0.000000,0.000551,0.143400,-0.000668,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000066,0.000059,0.000212,0.000000,0.000000,0.000544,0.142742,-0.000658,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000065,0.000059,0.000213,0.000000,0.000000,0.000537,0.142093,-0.000649,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000065,0.000058,0.000213,0.000000,0.000000,0.000530,0.141454,-0.000640,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000064,0.000057,0.000214,0.000116,0.000116,0.000523,0.140709,-0.000745,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000063,0.000055,0.000214,0.000352,0.000352,0.000516,0.139742,-0.000967,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000062,0.000054,0.000214,0.000514,0.000514,0.000508,0.138629,-0.001113,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000061,0.000052,0.000215,0.000642,0.000642,0.000500,0.137406,-0.001223,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000060,0.000051,0.000215,0.000716,0.000716,0.000491,0.136128,-0.001278,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000059,0.000049,0.000215,0.000664,0.000664,0.000481,0.134919,-0.001209,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000057,0.000048,0.000215,0.000574,0.000574,0.000472,0.133816,-0.001103,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000056,0.000046,0.000215,0.000492,0.000492,0.000462,0.132809,-0.001007,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000055,0.000045,0.000215,0.000402,0.000402,0.000452,0.131905,-0.000904,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000054,0.000044,0.000215,0.000311,0.000311,0.000443,0.131104,-0.000801,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000053,0.000043,0.000216,0.000169,0.000169,0.000433,0.130454,-0.000650,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000052,0.000043,0.000216,0.000041,0.000041,0.000425,0.129940,-0.000514,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000051,0.000042,0.000216,0.000000,0.000000,0.000416,0.129473,-0.000467,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000050,0.000041,0.000216,0.000000,0.000000,0.000408,0.129014,-0.000460,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000049,0.000041,0.000217,0.000000,0.000000,0.000400,0.128560,-0.000453,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000040,0.000217,0.000000,0.000000,0.000393,0.128113,-0.000447,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000040,0.000217,0.000000,0.000000,0.000386,0.127673,-0.000441,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000218,0.000000,0.000000,0.000379,0.127238,-0.000434,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000039,0.000218,0.000000,0.000000,0.000372,0.126810,-0.000428,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000038,0.000219,0.000000,0.000000,0.000366,0.126388,-0.000422,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000038,0.000219,0.000000,0.000000,0.000360,0.125972,-0.000416,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000037,0.000220,0.000000,0.000000,0.000354,0.125562,-0.000410,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000036,0.000220,0.000000,0.000000,0.000348,0.125157,-0.000404,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000036,0.000221,0.000000,0.000000,0.000342,0.124759,-0.000399,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000035,0.000221,0.000112,0.000112,0.000337,0.124256,-0.000503,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000034,0.000222,0.000347,0.000347,0.000331,0.123528,-0.000728,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000033,0.000222,0.000513,0.000513,0.000325,0.122647,-0.000881,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000032,0.000222,0.000643,0.000643,0.000318,0.121650,-0.000997,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000038,0.000031,0.000223,0.000715,0.000715,0.000311,0.120597,-0.001053,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000037,0.000029,0.000223,0.000658,0.000658,0.000303,0.119615,-0.000982,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000036,0.000028,0.000223,0.000566,0.000566,0.000296,0.118737,-0.000878,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000027,0.000223,0.000491,0.000491,0.000288,0.117946,-0.000791,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000026,0.000224,0.000408,0.000408,0.000280,0.117248,-0.000699,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000025,0.000224,0.000310,0.000310,0.000272,0.116656,-0.000592,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000025,0.000224,0.000151,0.000151,0.000265,0.116229,-0.000426,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000004,0.000000,0.000000,0.000000,0.000193,0.000031,0.000024,0.000224,0.000009,0.000009,0.000258,0.115952,-0.000277,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000004,0.000000,0.000000,0.000000,0.000194,0.000031,0.000024,0.000225,0.000000,0.000000,0.000252,0.115689,-0.000263,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000004,0.000000,0.000000,0.000000,0.000195,0.000030,0.000024,0.000225,0.000000,0.000000,0.000246,0.115429,-0.000260,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000004,0.000000,0.000000,0.000000,0.000196,0.000029,0.000023,0.000226,0.000000,0.000000,0.000240,0.115172,-0.000256,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000004,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000235,0.114919,-0.000253,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000004,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000227,0.000000,0.000000,0.000230,0.114670,-0.000249,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000000,0.000000,0.000225,0.114421,-0.000249,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000228,0.000000,0.000000,0.000221,0.114175,-0.000246,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000216,0.113933,-0.000242,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000022,0.000229,0.000000,0.000000,0.000212,0.113694,-0.000239,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000000,0.000000,0.000208,0.113459,-0.000235,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000000,0.000000,0.000204,0.113227,-0.000232,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000021,0.000231,0.000000,0.000000,0.000201,0.112998,-0.000229,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000097,0.000097,0.000197,0.112677,-0.000321,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000020,0.000232,0.000333,0.000333,0.000193,0.112127,-0.000550,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000019,0.000232,0.000502,0.000502,0.000189,0.111419,-0.000708,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000233,0.000625,0.000625,0.000184,0.110600,-0.000819,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000016,0.000233,0.000711,0.000711,0.000179,0.109708,-0.000893,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000015,0.000234,0.000652,0.000652,0.000173,0.108886,-0.000821,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000020,0.000014,0.000234,0.000560,0.000560,0.000167,0.108168,-0.000719,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000014,0.000234,0.000499,0.000499,0.000161,0.107518,-0.000649,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000019,0.000013,0.000234,0.000409,0.000409,0.000155,0.106967,-0.000551,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000018,0.000012,0.000235,0.000315,0.000315,0.000149,0.106517,-0.000450,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000012,0.000235,0.000180,0.000180,0.000144,0.106207,-0.000310,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000235,0.000035,0.000035,0.000138,0.106044,-0.000163,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000599,0.000019,0.000035,0.000019,0.000220,0.000016,0.000012,0.000255,0.000000,0.000000,0.000134,0.106473,0.000430,1.000000,0.000016 +195,2022-08-09 03:00:00,0.000248,0.000012,0.000006,0.000012,0.000221,0.000016,0.000012,0.000248,0.000000,0.000000,0.000131,0.106579,0.000106,1.000000,0.000010 +196,2022-08-09 04:00:00,0.000000,0.000008,0.000000,0.000008,0.000221,0.000015,0.000012,0.000245,0.000000,0.000000,0.000127,0.106445,-0.000134,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000222,0.000015,0.000012,0.000239,0.000000,0.000000,0.000124,0.106313,-0.000132,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000012,0.000238,0.000000,0.000000,0.000121,0.106182,-0.000130,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000012,0.000239,0.000000,0.000000,0.000119,0.106054,-0.000129,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000011,0.000239,0.000000,0.000000,0.000116,0.105927,-0.000127,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000011,0.000240,0.000000,0.000000,0.000114,0.105802,-0.000125,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000042,0.000000,0.000000,0.000000,0.000227,0.000013,0.000011,0.000241,0.000000,0.000000,0.000111,0.105720,-0.000082,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000011,0.000241,0.000000,0.000000,0.000109,0.105598,-0.000122,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000011,0.000242,0.000000,0.000000,0.000107,0.105478,-0.000120,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000011,0.000243,0.000000,0.000000,0.000105,0.105360,-0.000119,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000010,0.000243,0.000107,0.000107,0.000103,0.105138,-0.000222,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620827.csv b/test/channel_loss/channel_forcing/et/cat-2620827.csv new file mode 100644 index 000000000..7d6fbf702 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620827.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000006,0.000003,0.000000,0.001453,0.000240,0.001457,0.000184,0.000184,0.010383,0.428820,-0.004711,1.000000,0.000003 +1,2022-08-01 01:00:00,0.000006,0.000001,0.000000,0.000001,0.000000,0.001286,0.000237,0.001288,0.000055,0.000055,0.009333,0.423998,-0.004822,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000006,0.000001,0.000000,0.000001,0.000000,0.001145,0.000233,0.001146,0.000000,0.000000,0.008421,0.419294,-0.004704,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001025,0.000230,0.001025,0.000000,0.000000,0.007627,0.414645,-0.004649,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000922,0.000227,0.000923,0.000000,0.000000,0.006932,0.410057,-0.004588,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000834,0.000224,0.000834,0.000000,0.000000,0.006322,0.405530,-0.004528,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000757,0.000221,0.000758,0.000000,0.000000,0.005786,0.401062,-0.004468,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000691,0.000219,0.000692,0.000000,0.000000,0.005313,0.396652,-0.004410,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000633,0.000216,0.000634,0.000000,0.000000,0.004896,0.392301,-0.004352,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000582,0.000213,0.000584,0.000000,0.000000,0.004527,0.388006,-0.004295,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000538,0.000210,0.000539,0.000000,0.000000,0.004199,0.383768,-0.004238,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000498,0.000207,0.000500,0.000000,0.000000,0.003908,0.379585,-0.004183,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000464,0.000205,0.000466,0.000000,0.000000,0.003649,0.375457,-0.004128,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000433,0.000202,0.000436,0.000000,0.000000,0.003419,0.371384,-0.004074,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000406,0.000199,0.000409,0.000131,0.000131,0.003212,0.367234,-0.004150,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000381,0.000196,0.000385,0.000368,0.000368,0.003027,0.362904,-0.004329,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000359,0.000193,0.000364,0.000526,0.000526,0.002861,0.358477,-0.004428,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000340,0.000190,0.000345,0.000635,0.000635,0.002712,0.353999,-0.004477,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000322,0.000188,0.000328,0.000589,0.000589,0.002577,0.349626,-0.004373,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000214,0.000000,0.000000,0.000000,0.000006,0.000307,0.000185,0.000313,0.000534,0.000534,0.002455,0.345574,-0.004051,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000190,0.000000,0.000000,0.000000,0.000007,0.000293,0.000182,0.000300,0.000474,0.000474,0.002345,0.341613,-0.003962,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000251,0.000000,0.000000,0.000000,0.000008,0.000280,0.000180,0.000287,0.000384,0.000384,0.002245,0.337852,-0.003760,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000268,0.000177,0.000276,0.000326,0.000326,0.002154,0.334137,-0.003715,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000190,0.000000,0.000000,0.000000,0.000009,0.000257,0.000175,0.000267,0.000257,0.000257,0.002072,0.330539,-0.003598,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000190,0.000000,0.000000,0.000000,0.000010,0.000248,0.000173,0.000258,0.000159,0.000159,0.001997,0.327085,-0.003454,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000517,0.000028,0.000051,0.000028,0.000011,0.000239,0.000171,0.000278,0.000068,0.000068,0.001928,0.324038,-0.003047,1.000000,0.000023 +26,2022-08-02 02:00:00,0.000764,0.000087,0.000136,0.000087,0.000012,0.000231,0.000169,0.000330,0.000000,0.000000,0.001866,0.321258,-0.002780,1.000000,0.000071 +27,2022-08-02 03:00:00,0.000842,0.000133,0.000161,0.000133,0.000012,0.000224,0.000167,0.000369,0.000000,0.000000,0.001809,0.318567,-0.002692,1.000000,0.000100 +28,2022-08-02 04:00:00,0.000892,0.000166,0.000179,0.000166,0.000013,0.000217,0.000165,0.000396,0.000000,0.000000,0.001757,0.315944,-0.002623,1.000000,0.000113 +29,2022-08-02 05:00:00,0.000796,0.000156,0.000145,0.000156,0.000014,0.000211,0.000164,0.000382,0.000000,0.000000,0.001709,0.313293,-0.002651,1.000000,0.000101 +30,2022-08-02 06:00:00,0.000777,0.000148,0.000138,0.000148,0.000015,0.000206,0.000162,0.000369,0.000000,0.000000,0.001665,0.310666,-0.002627,1.000000,0.000091 +31,2022-08-02 07:00:00,0.000000,0.000063,0.000000,0.000063,0.000016,0.000201,0.000160,0.000280,0.000000,0.000000,0.001625,0.307442,-0.003224,1.000000,0.000028 +32,2022-08-02 08:00:00,0.000000,0.000028,0.000000,0.000028,0.000017,0.000196,0.000158,0.000240,0.000000,0.000000,0.001586,0.304260,-0.003182,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000191,0.000156,0.000209,0.000000,0.000000,0.001551,0.301120,-0.003140,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000187,0.000154,0.000206,0.000000,0.000000,0.001517,0.298022,-0.003099,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000183,0.000152,0.000203,0.000000,0.000000,0.001486,0.294964,-0.003058,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000179,0.000150,0.000200,0.000000,0.000000,0.001456,0.291946,-0.003018,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000176,0.000148,0.000198,0.000000,0.000000,0.001428,0.288967,-0.002978,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000053,0.000000,0.000000,0.000000,0.000023,0.000172,0.000146,0.000196,0.000112,0.000112,0.001401,0.285970,-0.002998,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000169,0.000144,0.000194,0.000337,0.000337,0.001375,0.282737,-0.003233,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000166,0.000141,0.000192,0.000480,0.000480,0.001350,0.279406,-0.003331,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000163,0.000139,0.000190,0.000581,0.000581,0.001326,0.276018,-0.003388,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000297,0.000000,0.000000,0.000000,0.000028,0.000160,0.000137,0.000188,0.000668,0.000668,0.001303,0.272883,-0.003135,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000157,0.000135,0.000186,0.000615,0.000615,0.001280,0.269548,-0.003335,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000155,0.000133,0.000185,0.000538,0.000538,0.001258,0.266332,-0.003216,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000152,0.000131,0.000183,0.000504,0.000504,0.001237,0.263192,-0.003140,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000149,0.000129,0.000182,0.000425,0.000425,0.001216,0.260172,-0.003021,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000147,0.000127,0.000181,0.000327,0.000327,0.001196,0.257288,-0.002884,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000144,0.000125,0.000179,0.000184,0.000184,0.001177,0.254583,-0.002705,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000142,0.000123,0.000178,0.000036,0.000036,0.001158,0.252059,-0.002524,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000140,0.000122,0.000177,0.000000,0.000000,0.001140,0.249604,-0.002455,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000138,0.000120,0.000176,0.000000,0.000000,0.001122,0.247181,-0.002423,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000136,0.000119,0.000176,0.000000,0.000000,0.001105,0.244790,-0.002391,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000133,0.000117,0.000175,0.000000,0.000000,0.001089,0.242430,-0.002360,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000131,0.000115,0.000174,0.000000,0.000000,0.001073,0.240101,-0.002329,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000130,0.000114,0.000174,0.000000,0.000000,0.001057,0.237802,-0.002298,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000128,0.000112,0.000173,0.000000,0.000000,0.001042,0.235534,-0.002268,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000126,0.000111,0.000173,0.000000,0.000000,0.001027,0.233296,-0.002238,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000124,0.000110,0.000172,0.000000,0.000000,0.001012,0.231087,-0.002209,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000122,0.000108,0.000172,0.000000,0.000000,0.000998,0.228907,-0.002180,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000121,0.000107,0.000171,0.000000,0.000000,0.000984,0.226755,-0.002152,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000119,0.000105,0.000171,0.000000,0.000000,0.000971,0.224632,-0.002123,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000117,0.000104,0.000171,0.000127,0.000127,0.000957,0.222411,-0.002221,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000116,0.000102,0.000171,0.000374,0.000374,0.000944,0.219975,-0.002435,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000114,0.000100,0.000170,0.000530,0.000530,0.000931,0.217418,-0.002557,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000112,0.000099,0.000170,0.000637,0.000637,0.000917,0.214789,-0.002629,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000111,0.000097,0.000170,0.000641,0.000641,0.000904,0.212190,-0.002599,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000109,0.000095,0.000170,0.000580,0.000580,0.000890,0.209685,-0.002505,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000534,0.000000,0.000000,0.000000,0.000062,0.000107,0.000094,0.000170,0.000506,0.000506,0.000877,0.207813,-0.001872,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000064,0.000106,0.000093,0.000170,0.000477,0.000477,0.000864,0.205592,-0.002221,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000104,0.000091,0.000169,0.000396,0.000396,0.000851,0.203355,-0.002237,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000102,0.000090,0.000169,0.000301,0.000301,0.000839,0.201242,-0.002113,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000101,0.000089,0.000169,0.000177,0.000177,0.000826,0.199279,-0.001963,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000099,0.000087,0.000169,0.000047,0.000047,0.000814,0.197469,-0.001809,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000098,0.000086,0.000169,0.000000,0.000000,0.000802,0.195730,-0.001739,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000097,0.000085,0.000169,0.000000,0.000000,0.000791,0.194014,-0.001716,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000095,0.000084,0.000169,0.000000,0.000000,0.000780,0.192320,-0.001694,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000013,0.000000,0.000000,0.000000,0.000076,0.000094,0.000083,0.000170,0.000000,0.000000,0.000769,0.190661,-0.001658,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000093,0.000082,0.000170,0.000000,0.000000,0.000758,0.189012,-0.001650,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000091,0.000081,0.000170,0.000000,0.000000,0.000747,0.187383,-0.001628,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000090,0.000080,0.000170,0.000000,0.000000,0.000737,0.185776,-0.001607,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000089,0.000079,0.000171,0.000000,0.000000,0.000727,0.184191,-0.001586,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000087,0.000078,0.000171,0.000000,0.000000,0.000717,0.182625,-0.001565,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000086,0.000077,0.000171,0.000000,0.000000,0.000707,0.181081,-0.001545,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000085,0.000076,0.000172,0.000000,0.000000,0.000698,0.179557,-0.001524,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000084,0.000075,0.000172,0.000000,0.000000,0.000688,0.178052,-0.001504,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000083,0.000074,0.000172,0.000124,0.000124,0.000679,0.176446,-0.001607,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000082,0.000072,0.000173,0.000367,0.000367,0.000670,0.174620,-0.001826,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000080,0.000071,0.000173,0.000530,0.000530,0.000660,0.172658,-0.001962,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000079,0.000070,0.000174,0.000642,0.000642,0.000651,0.170610,-0.002048,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000078,0.000068,0.000174,0.000708,0.000708,0.000641,0.168525,-0.002085,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000077,0.000067,0.000174,0.000651,0.000651,0.000631,0.166523,-0.002002,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000076,0.000066,0.000175,0.000572,0.000572,0.000621,0.164625,-0.001897,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000074,0.000065,0.000175,0.000501,0.000501,0.000611,0.162823,-0.001802,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000073,0.000063,0.000175,0.000418,0.000418,0.000601,0.161126,-0.001697,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000072,0.000062,0.000176,0.000327,0.000327,0.000592,0.159540,-0.001585,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000071,0.000061,0.000176,0.000194,0.000194,0.000582,0.158107,-0.001434,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000070,0.000061,0.000177,0.000058,0.000058,0.000573,0.156827,-0.001280,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000069,0.000060,0.000177,0.000000,0.000000,0.000564,0.155621,-0.001206,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000068,0.000059,0.000178,0.000000,0.000000,0.000555,0.154431,-0.001190,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000067,0.000058,0.000178,0.000000,0.000000,0.000547,0.153256,-0.001175,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000066,0.000057,0.000179,0.000000,0.000000,0.000539,0.152097,-0.001159,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000065,0.000057,0.000179,0.000000,0.000000,0.000531,0.150952,-0.001144,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000064,0.000056,0.000180,0.000000,0.000000,0.000523,0.149823,-0.001129,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000063,0.000055,0.000181,0.000000,0.000000,0.000516,0.148709,-0.001114,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000062,0.000055,0.000181,0.000000,0.000000,0.000508,0.147609,-0.001100,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000061,0.000054,0.000182,0.000000,0.000000,0.000501,0.146524,-0.001085,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000060,0.000053,0.000183,0.000000,0.000000,0.000494,0.145453,-0.001071,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000059,0.000052,0.000183,0.000000,0.000000,0.000487,0.144396,-0.001057,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000058,0.000052,0.000184,0.000000,0.000000,0.000481,0.143353,-0.001043,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000058,0.000051,0.000185,0.000137,0.000137,0.000474,0.142189,-0.001164,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000057,0.000050,0.000186,0.000377,0.000377,0.000467,0.140802,-0.001387,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000056,0.000049,0.000186,0.000534,0.000534,0.000460,0.139279,-0.001523,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000055,0.000048,0.000187,0.000647,0.000647,0.000453,0.137665,-0.001614,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000054,0.000047,0.000188,0.000636,0.000636,0.000446,0.136083,-0.001582,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000065,0.000000,0.000000,0.000000,0.000135,0.000053,0.000046,0.000188,0.000579,0.000579,0.000439,0.134642,-0.001441,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000065,0.000000,0.000000,0.000000,0.000136,0.000052,0.000045,0.000189,0.000497,0.000497,0.000431,0.133300,-0.001341,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000065,0.000000,0.000000,0.000000,0.000138,0.000052,0.000044,0.000190,0.000448,0.000448,0.000424,0.132025,-0.001276,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000051,0.000043,0.000190,0.000376,0.000376,0.000417,0.130897,-0.001127,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000141,0.000050,0.000043,0.000191,0.000294,0.000294,0.000410,0.129928,-0.000969,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000143,0.000049,0.000042,0.000192,0.000183,0.000183,0.000403,0.129018,-0.000910,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000581,0.000027,0.000050,0.000027,0.000144,0.000048,0.000042,0.000220,0.000067,0.000067,0.000397,0.128634,-0.000384,1.000000,0.000022 +122,2022-08-06 02:00:00,0.000875,0.000087,0.000135,0.000087,0.000146,0.000048,0.000042,0.000280,0.000000,0.000000,0.000391,0.128529,-0.000106,1.000000,0.000071 +123,2022-08-06 03:00:00,0.000810,0.000108,0.000117,0.000108,0.000147,0.000047,0.000042,0.000302,0.000000,0.000000,0.000386,0.128378,-0.000151,1.000000,0.000080 +124,2022-08-06 04:00:00,0.000721,0.000108,0.000094,0.000108,0.000149,0.000046,0.000042,0.000303,0.000000,0.000000,0.000382,0.128163,-0.000214,1.000000,0.000066 +125,2022-08-06 05:00:00,0.000738,0.000101,0.000098,0.000101,0.000150,0.000046,0.000042,0.000297,0.000000,0.000000,0.000377,0.127965,-0.000199,1.000000,0.000063 +126,2022-08-06 06:00:00,0.000787,0.000104,0.000111,0.000104,0.000152,0.000045,0.000041,0.000302,0.000000,0.000000,0.000373,0.127805,-0.000160,1.000000,0.000070 +127,2022-08-06 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000153,0.000045,0.000041,0.000246,0.000000,0.000000,0.000370,0.126979,-0.000825,1.000000,0.000022 +128,2022-08-06 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000155,0.000044,0.000040,0.000221,0.000000,0.000000,0.000366,0.126164,-0.000815,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000044,0.000040,0.000200,0.000000,0.000000,0.000361,0.125360,-0.000804,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000039,0.000201,0.000000,0.000000,0.000357,0.124567,-0.000793,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000043,0.000039,0.000202,0.000000,0.000000,0.000353,0.123784,-0.000783,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000042,0.000038,0.000203,0.000000,0.000000,0.000349,0.123011,-0.000773,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000042,0.000038,0.000204,0.000000,0.000000,0.000345,0.122249,-0.000763,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000041,0.000037,0.000205,0.000118,0.000118,0.000341,0.121379,-0.000869,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000041,0.000037,0.000206,0.000353,0.000353,0.000337,0.120289,-0.001090,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000040,0.000036,0.000207,0.000508,0.000508,0.000332,0.119061,-0.001228,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000040,0.000035,0.000208,0.000618,0.000618,0.000327,0.117740,-0.001321,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000034,0.000209,0.000693,0.000693,0.000322,0.116363,-0.001377,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000033,0.000210,0.000645,0.000645,0.000317,0.115051,-0.001312,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000038,0.000032,0.000210,0.000565,0.000565,0.000311,0.113835,-0.001216,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000037,0.000032,0.000211,0.000507,0.000507,0.000306,0.112693,-0.001143,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000036,0.000031,0.000212,0.000419,0.000419,0.000300,0.111652,-0.001041,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000036,0.000030,0.000213,0.000325,0.000325,0.000295,0.110718,-0.000934,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000035,0.000030,0.000214,0.000181,0.000181,0.000289,0.109938,-0.000780,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000029,0.000214,0.000047,0.000047,0.000284,0.109300,-0.000638,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000034,0.000029,0.000215,0.000000,0.000000,0.000279,0.108717,-0.000583,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000033,0.000029,0.000216,0.000000,0.000000,0.000274,0.108142,-0.000575,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000028,0.000217,0.000000,0.000000,0.000270,0.107574,-0.000568,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000032,0.000028,0.000218,0.000000,0.000000,0.000265,0.107014,-0.000560,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000027,0.000219,0.000000,0.000000,0.000261,0.106461,-0.000553,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000031,0.000027,0.000220,0.000000,0.000000,0.000257,0.105916,-0.000546,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000031,0.000027,0.000221,0.000000,0.000000,0.000253,0.105377,-0.000538,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000026,0.000221,0.000000,0.000000,0.000249,0.104846,-0.000531,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000030,0.000026,0.000222,0.000000,0.000000,0.000245,0.104322,-0.000524,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000029,0.000026,0.000223,0.000000,0.000000,0.000242,0.103804,-0.000517,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000029,0.000025,0.000224,0.000000,0.000000,0.000238,0.103293,-0.000511,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000025,0.000225,0.000000,0.000000,0.000235,0.102789,-0.000504,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000025,0.000226,0.000115,0.000115,0.000231,0.102179,-0.000610,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000024,0.000227,0.000352,0.000352,0.000228,0.101342,-0.000837,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000023,0.000228,0.000510,0.000510,0.000224,0.100360,-0.000982,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000023,0.000229,0.000622,0.000622,0.000220,0.099281,-0.001079,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000022,0.000230,0.000691,0.000691,0.000216,0.098148,-0.001133,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000639,0.000639,0.000211,0.097081,-0.001067,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000021,0.000231,0.000557,0.000557,0.000207,0.096109,-0.000972,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000020,0.000232,0.000504,0.000504,0.000202,0.095202,-0.000907,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000019,0.000233,0.000422,0.000422,0.000198,0.094388,-0.000815,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000234,0.000319,0.000319,0.000193,0.093686,-0.000702,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000234,0.000157,0.000000,0.000189,0.093308,-0.000378,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000018,0.000235,0.000015,0.000000,0.000185,0.092935,-0.000373,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000018,0.000236,0.000000,0.000000,0.000182,0.092566,-0.000368,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000237,0.000000,0.000000,0.000178,0.092203,-0.000363,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000175,0.091845,-0.000359,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000171,0.091491,-0.000354,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000240,0.000000,0.000000,0.000168,0.091142,-0.000349,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000000,0.000000,0.000165,0.090797,-0.000345,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000241,0.000000,0.000000,0.000163,0.090457,-0.000340,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000017,0.000242,0.000000,0.000000,0.000160,0.090121,-0.000336,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000016,0.000243,0.000000,0.000000,0.000157,0.089790,-0.000331,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000016,0.000244,0.000000,0.000000,0.000155,0.089463,-0.000327,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000016,0.000245,0.000000,0.000000,0.000152,0.089140,-0.000323,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000016,0.000246,0.000000,0.000000,0.000150,0.088822,-0.000318,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000016,0.000247,0.000099,0.000000,0.000148,0.088508,-0.000314,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000015,0.000248,0.000337,0.000000,0.000145,0.088198,-0.000310,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000249,0.000497,0.000000,0.000143,0.087892,-0.000306,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000015,0.000250,0.000604,0.000000,0.000141,0.087590,-0.000302,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000015,0.000251,0.000685,0.000000,0.000139,0.087292,-0.000298,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000252,0.000624,0.000000,0.000137,0.086998,-0.000294,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000014,0.000253,0.000546,0.000000,0.000135,0.086707,-0.000290,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000014,0.000254,0.000509,0.000000,0.000133,0.086421,-0.000286,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000423,0.000000,0.000131,0.086138,-0.000283,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000325,0.000000,0.000129,0.085859,-0.000279,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000014,0.000256,0.000187,0.000000,0.000128,0.085584,-0.000275,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000013,0.000257,0.000039,0.000000,0.000126,0.085312,-0.000272,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000380,0.000015,0.000026,0.000015,0.000243,0.000015,0.000014,0.000273,0.000000,0.000000,0.000124,0.085393,0.000081,1.000000,0.000012 +195,2022-08-09 03:00:00,0.000152,0.000009,0.000004,0.000009,0.000244,0.000015,0.000013,0.000268,0.000000,0.000000,0.000123,0.085270,-0.000124,1.000000,0.000007 +196,2022-08-09 04:00:00,0.000000,0.000006,0.000000,0.000006,0.000246,0.000015,0.000013,0.000267,0.000000,0.000000,0.000121,0.085002,-0.000268,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000120,0.084738,-0.000264,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000014,0.000013,0.000262,0.000000,0.000000,0.000119,0.084477,-0.000261,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000013,0.000263,0.000000,0.000000,0.000117,0.084220,-0.000257,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000013,0.000264,0.000000,0.000000,0.000116,0.083966,-0.000254,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000012,0.000265,0.000000,0.000000,0.000114,0.083716,-0.000251,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000009,0.000000,0.000000,0.000000,0.000252,0.000014,0.000012,0.000266,0.000000,0.000000,0.000113,0.083478,-0.000238,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000013,0.000012,0.000267,0.000000,0.000000,0.000112,0.083234,-0.000244,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000013,0.000012,0.000268,0.000000,0.000000,0.000110,0.082993,-0.000241,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000013,0.000012,0.000269,0.000000,0.000000,0.000109,0.082755,-0.000238,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000013,0.000012,0.000269,0.000109,0.000000,0.000107,0.082520,-0.000235,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620828.csv b/test/channel_loss/channel_forcing/et/cat-2620828.csv new file mode 100644 index 000000000..344139e0c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620828.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001462,0.000302,0.001465,0.000178,0.000178,0.010436,0.429957,-0.004657,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000047,0.000001,0.000000,0.000001,0.000000,0.001302,0.000298,0.001303,0.000053,0.000053,0.009432,0.425226,-0.004731,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000047,0.000001,0.000001,0.000001,0.000000,0.001166,0.000294,0.001168,0.000000,0.000000,0.008559,0.420612,-0.004615,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000032,0.000000,0.000000,0.000000,0.000000,0.001051,0.000290,0.001051,0.000000,0.000000,0.007798,0.416045,-0.004567,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000032,0.000000,0.000000,0.000000,0.000000,0.000952,0.000286,0.000952,0.000000,0.000000,0.007132,0.411541,-0.004505,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000032,0.000000,0.000000,0.000000,0.000000,0.000867,0.000282,0.000867,0.000000,0.000000,0.006547,0.407097,-0.004444,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000032,0.000000,0.000000,0.000000,0.000001,0.000793,0.000278,0.000793,0.000000,0.000000,0.006033,0.402713,-0.004384,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000728,0.000274,0.000729,0.000000,0.000000,0.005579,0.398358,-0.004355,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000672,0.000271,0.000673,0.000000,0.000000,0.005178,0.394062,-0.004296,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000623,0.000267,0.000624,0.000000,0.000000,0.004822,0.389823,-0.004238,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000579,0.000263,0.000581,0.000000,0.000000,0.004506,0.385642,-0.004181,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000541,0.000260,0.000543,0.000000,0.000000,0.004225,0.381518,-0.004124,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000507,0.000256,0.000510,0.000000,0.000000,0.003974,0.377450,-0.004068,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000477,0.000253,0.000480,0.000000,0.000000,0.003750,0.373436,-0.004013,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000450,0.000249,0.000454,0.000128,0.000128,0.003549,0.369351,-0.004086,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000426,0.000246,0.000430,0.000362,0.000362,0.003368,0.365090,-0.004261,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000405,0.000242,0.000409,0.000520,0.000520,0.003205,0.360731,-0.004359,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000385,0.000238,0.000390,0.000632,0.000632,0.003058,0.356321,-0.004410,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000368,0.000234,0.000373,0.000588,0.000588,0.002925,0.352014,-0.004307,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000177,0.000000,0.000000,0.000000,0.000006,0.000352,0.000231,0.000358,0.000539,0.000539,0.002803,0.347988,-0.004026,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000194,0.000000,0.000000,0.000000,0.000007,0.000338,0.000227,0.000344,0.000475,0.000475,0.002693,0.344096,-0.003892,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000325,0.000224,0.000332,0.000376,0.000376,0.002593,0.340413,-0.003683,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000192,0.000000,0.000000,0.000000,0.000008,0.000313,0.000221,0.000321,0.000316,0.000316,0.002501,0.336779,-0.003634,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000209,0.000000,0.000000,0.000000,0.000009,0.000302,0.000218,0.000311,0.000245,0.000245,0.002417,0.333280,-0.003499,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000194,0.000000,0.000000,0.000000,0.000010,0.000292,0.000215,0.000302,0.000150,0.000150,0.002341,0.329907,-0.003373,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000561,0.000027,0.000050,0.000027,0.000010,0.000283,0.000213,0.000321,0.000061,0.000061,0.002270,0.326983,-0.002924,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000791,0.000076,0.000116,0.000076,0.000011,0.000275,0.000210,0.000362,0.000000,0.000000,0.002206,0.324319,-0.002664,1.000000,0.000062 +27,2022-08-02 03:00:00,0.000853,0.000112,0.000133,0.000112,0.000012,0.000267,0.000208,0.000391,0.000000,0.000000,0.002147,0.321734,-0.002584,1.000000,0.000083 +28,2022-08-02 04:00:00,0.000898,0.000137,0.000146,0.000137,0.000013,0.000260,0.000206,0.000410,0.000000,0.000000,0.002093,0.319218,-0.002517,1.000000,0.000092 +29,2022-08-02 05:00:00,0.000806,0.000129,0.000119,0.000129,0.000014,0.000254,0.000204,0.000396,0.000000,0.000000,0.002043,0.316671,-0.002547,1.000000,0.000083 +30,2022-08-02 06:00:00,0.000763,0.000118,0.000107,0.000118,0.000015,0.000248,0.000202,0.000380,0.000000,0.000000,0.001996,0.314128,-0.002543,1.000000,0.000072 +31,2022-08-02 07:00:00,0.000000,0.000051,0.000000,0.000051,0.000016,0.000242,0.000199,0.000308,0.000000,0.000000,0.001953,0.310972,-0.003156,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000237,0.000196,0.000275,0.000000,0.000000,0.001912,0.307859,-0.003113,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000232,0.000193,0.000250,0.000000,0.000000,0.001873,0.304788,-0.003071,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000228,0.000191,0.000246,0.000000,0.000000,0.001837,0.301758,-0.003029,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000223,0.000188,0.000242,0.000000,0.000000,0.001802,0.298770,-0.002988,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000219,0.000186,0.000239,0.000000,0.000000,0.001769,0.295822,-0.002948,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000215,0.000183,0.000236,0.000000,0.000000,0.001737,0.292914,-0.002908,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000038,0.000000,0.000000,0.000000,0.000022,0.000211,0.000181,0.000234,0.000106,0.000106,0.001706,0.289978,-0.002936,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000207,0.000178,0.000231,0.000335,0.000335,0.001677,0.286819,-0.003159,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000204,0.000175,0.000228,0.000476,0.000476,0.001648,0.283563,-0.003256,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000200,0.000172,0.000226,0.000582,0.000582,0.001621,0.280247,-0.003316,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000296,0.000000,0.000000,0.000000,0.000027,0.000197,0.000170,0.000224,0.000672,0.000672,0.001593,0.277178,-0.003069,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000193,0.000167,0.000221,0.000623,0.000623,0.001567,0.273908,-0.003270,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000190,0.000164,0.000219,0.000542,0.000542,0.001541,0.270762,-0.003146,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000187,0.000161,0.000217,0.000500,0.000500,0.001515,0.267701,-0.003061,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000184,0.000159,0.000215,0.000417,0.000417,0.001490,0.264762,-0.002938,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000181,0.000156,0.000213,0.000317,0.000317,0.001466,0.261962,-0.002801,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000178,0.000154,0.000212,0.000180,0.000180,0.001442,0.259335,-0.002627,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000175,0.000152,0.000210,0.000033,0.000033,0.001420,0.256888,-0.002446,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000172,0.000150,0.000208,0.000000,0.000000,0.001398,0.254508,-0.002381,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000169,0.000148,0.000207,0.000000,0.000000,0.001376,0.252159,-0.002349,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000167,0.000146,0.000206,0.000000,0.000000,0.001355,0.249842,-0.002317,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000164,0.000144,0.000204,0.000000,0.000000,0.001335,0.247557,-0.002285,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000162,0.000142,0.000203,0.000000,0.000000,0.001315,0.245302,-0.002254,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000159,0.000140,0.000202,0.000000,0.000000,0.001296,0.243078,-0.002224,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000157,0.000138,0.000201,0.000000,0.000000,0.001277,0.240884,-0.002194,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000155,0.000136,0.000200,0.000000,0.000000,0.001259,0.238720,-0.002164,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000152,0.000134,0.000199,0.000000,0.000000,0.001241,0.236585,-0.002135,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000150,0.000133,0.000198,0.000000,0.000000,0.001223,0.234480,-0.002106,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000148,0.000131,0.000197,0.000000,0.000000,0.001206,0.232402,-0.002077,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000146,0.000129,0.000197,0.000000,0.000000,0.001189,0.230353,-0.002049,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000144,0.000127,0.000196,0.000124,0.000124,0.001172,0.228209,-0.002144,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000142,0.000125,0.000195,0.000369,0.000369,0.001156,0.225852,-0.002357,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000140,0.000123,0.000195,0.000526,0.000526,0.001139,0.223373,-0.002479,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000138,0.000121,0.000194,0.000642,0.000642,0.001122,0.220813,-0.002560,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000136,0.000119,0.000193,0.000645,0.000645,0.001105,0.218284,-0.002529,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000133,0.000117,0.000192,0.000581,0.000581,0.001088,0.215853,-0.002431,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000432,0.000000,0.000000,0.000000,0.000060,0.000131,0.000115,0.000192,0.000511,0.000511,0.001072,0.213950,-0.001903,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000141,0.000000,0.000000,0.000000,0.000062,0.000129,0.000113,0.000191,0.000473,0.000473,0.001056,0.211823,-0.002127,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000127,0.000111,0.000191,0.000389,0.000389,0.001039,0.209668,-0.002155,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000125,0.000109,0.000190,0.000289,0.000289,0.001023,0.207642,-0.002027,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000123,0.000108,0.000190,0.000168,0.000168,0.001008,0.205762,-0.001879,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000122,0.000106,0.000189,0.000044,0.000044,0.000993,0.204031,-0.001732,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000120,0.000105,0.000189,0.000000,0.000000,0.000978,0.202366,-0.001665,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000118,0.000103,0.000188,0.000000,0.000000,0.000963,0.200723,-0.001643,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000116,0.000102,0.000188,0.000000,0.000000,0.000949,0.199103,-0.001620,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000041,0.000000,0.000000,0.000000,0.000073,0.000114,0.000101,0.000188,0.000000,0.000000,0.000936,0.197545,-0.001558,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000113,0.000099,0.000188,0.000000,0.000000,0.000922,0.195968,-0.001577,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000111,0.000098,0.000188,0.000000,0.000000,0.000909,0.194412,-0.001556,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000110,0.000097,0.000187,0.000000,0.000000,0.000896,0.192877,-0.001535,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000108,0.000095,0.000187,0.000000,0.000000,0.000883,0.191363,-0.001514,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000106,0.000094,0.000187,0.000000,0.000000,0.000871,0.189869,-0.001494,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000105,0.000093,0.000187,0.000000,0.000000,0.000859,0.188396,-0.001473,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000103,0.000092,0.000187,0.000000,0.000000,0.000847,0.186942,-0.001453,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000102,0.000090,0.000187,0.000000,0.000000,0.000835,0.185509,-0.001434,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000101,0.000089,0.000187,0.000122,0.000122,0.000824,0.183973,-0.001535,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000099,0.000087,0.000187,0.000367,0.000367,0.000812,0.182218,-0.001756,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000098,0.000086,0.000187,0.000528,0.000528,0.000800,0.180327,-0.001891,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000096,0.000084,0.000187,0.000644,0.000644,0.000788,0.178347,-0.001980,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000095,0.000082,0.000187,0.000711,0.000711,0.000776,0.176328,-0.002019,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000094,0.000093,0.000081,0.000187,0.000664,0.000664,0.000763,0.174385,-0.001943,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000092,0.000079,0.000187,0.000576,0.000576,0.000751,0.172554,-0.001832,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000090,0.000078,0.000187,0.000488,0.000488,0.000738,0.170833,-0.001720,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000089,0.000076,0.000187,0.000405,0.000405,0.000726,0.169218,-0.001615,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000087,0.000075,0.000187,0.000315,0.000315,0.000714,0.167713,-0.001505,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000086,0.000074,0.000187,0.000189,0.000189,0.000702,0.166354,-0.001360,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000003,0.000000,0.000000,0.000000,0.000103,0.000084,0.000073,0.000187,0.000055,0.000055,0.000690,0.165147,-0.001207,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000003,0.000000,0.000000,0.000000,0.000105,0.000083,0.000072,0.000187,0.000000,0.000000,0.000679,0.164011,-0.001136,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000106,0.000082,0.000071,0.000188,0.000000,0.000000,0.000669,0.162889,-0.001122,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000108,0.000080,0.000070,0.000188,0.000000,0.000000,0.000658,0.161782,-0.001107,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000109,0.000079,0.000069,0.000188,0.000000,0.000000,0.000648,0.160690,-0.001092,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000111,0.000078,0.000068,0.000188,0.000000,0.000000,0.000638,0.159613,-0.001077,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000077,0.000067,0.000189,0.000000,0.000000,0.000629,0.158549,-0.001064,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000075,0.000066,0.000189,0.000000,0.000000,0.000619,0.157500,-0.001049,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000074,0.000065,0.000189,0.000000,0.000000,0.000610,0.156465,-0.001035,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000073,0.000064,0.000190,0.000000,0.000000,0.000601,0.155444,-0.001021,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000072,0.000063,0.000190,0.000000,0.000000,0.000592,0.154437,-0.001007,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000071,0.000063,0.000191,0.000000,0.000000,0.000584,0.153443,-0.000994,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000070,0.000062,0.000191,0.000000,0.000000,0.000576,0.152463,-0.000980,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000069,0.000061,0.000192,0.000133,0.000133,0.000567,0.151365,-0.001098,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000068,0.000060,0.000192,0.000371,0.000371,0.000559,0.150046,-0.001318,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000067,0.000058,0.000193,0.000530,0.000530,0.000550,0.148589,-0.001457,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000066,0.000057,0.000193,0.000651,0.000651,0.000541,0.147033,-0.001556,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000065,0.000056,0.000193,0.000629,0.000629,0.000532,0.145519,-0.001514,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000074,0.000000,0.000000,0.000000,0.000130,0.000064,0.000055,0.000194,0.000579,0.000579,0.000523,0.144148,-0.001371,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000075,0.000000,0.000000,0.000000,0.000132,0.000063,0.000053,0.000194,0.000491,0.000491,0.000514,0.142883,-0.001264,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000082,0.000000,0.000000,0.000000,0.000133,0.000061,0.000052,0.000194,0.000434,0.000434,0.000505,0.141699,-0.001185,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000135,0.000060,0.000052,0.000195,0.000362,0.000362,0.000496,0.140645,-0.001054,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000136,0.000059,0.000051,0.000195,0.000283,0.000283,0.000488,0.139746,-0.000899,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000108,0.000000,0.000000,0.000000,0.000137,0.000058,0.000050,0.000196,0.000178,0.000178,0.000479,0.138882,-0.000864,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000568,0.000021,0.000038,0.000021,0.000139,0.000057,0.000050,0.000217,0.000062,0.000062,0.000472,0.138561,-0.000322,1.000000,0.000017 +122,2022-08-06 02:00:00,0.000893,0.000072,0.000113,0.000072,0.000140,0.000057,0.000050,0.000268,0.000000,0.000000,0.000465,0.138552,-0.000009,1.000000,0.000058 +123,2022-08-06 03:00:00,0.000795,0.000086,0.000091,0.000086,0.000142,0.000056,0.000050,0.000283,0.000000,0.000000,0.000459,0.138468,-0.000084,1.000000,0.000063 +124,2022-08-06 04:00:00,0.000678,0.000082,0.000067,0.000082,0.000143,0.000055,0.000049,0.000280,0.000000,0.000000,0.000453,0.138293,-0.000175,1.000000,0.000048 +125,2022-08-06 05:00:00,0.000698,0.000074,0.000071,0.000074,0.000145,0.000054,0.000049,0.000273,0.000000,0.000000,0.000448,0.138137,-0.000156,1.000000,0.000045 +126,2022-08-06 06:00:00,0.000790,0.000080,0.000089,0.000080,0.000146,0.000054,0.000049,0.000280,0.000000,0.000000,0.000444,0.138056,-0.000082,1.000000,0.000054 +127,2022-08-06 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000148,0.000053,0.000049,0.000238,0.000000,0.000000,0.000439,0.137284,-0.000772,1.000000,0.000018 +128,2022-08-06 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000149,0.000053,0.000048,0.000220,0.000000,0.000000,0.000434,0.136523,-0.000761,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000052,0.000047,0.000203,0.000000,0.000000,0.000429,0.135772,-0.000751,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000052,0.000047,0.000203,0.000000,0.000000,0.000424,0.135031,-0.000741,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000051,0.000046,0.000204,0.000000,0.000000,0.000419,0.134300,-0.000731,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000050,0.000045,0.000205,0.000000,0.000000,0.000414,0.133579,-0.000721,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000050,0.000045,0.000206,0.000000,0.000000,0.000409,0.132868,-0.000711,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000049,0.000044,0.000207,0.000117,0.000117,0.000404,0.132051,-0.000817,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000048,0.000043,0.000208,0.000352,0.000352,0.000399,0.131013,-0.001037,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000048,0.000042,0.000208,0.000505,0.000505,0.000394,0.129839,-0.001175,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000047,0.000041,0.000209,0.000621,0.000621,0.000388,0.128565,-0.001273,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000040,0.000210,0.000695,0.000695,0.000381,0.127236,-0.001329,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000045,0.000039,0.000210,0.000650,0.000650,0.000375,0.125970,-0.001266,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000045,0.000038,0.000211,0.000567,0.000567,0.000368,0.124802,-0.001168,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000044,0.000037,0.000211,0.000491,0.000491,0.000361,0.123726,-0.001076,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000043,0.000036,0.000212,0.000404,0.000404,0.000354,0.122750,-0.000976,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000042,0.000035,0.000212,0.000310,0.000310,0.000347,0.121880,-0.000870,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000035,0.000213,0.000172,0.000172,0.000340,0.121157,-0.000723,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000041,0.000034,0.000213,0.000043,0.000043,0.000334,0.120571,-0.000586,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000040,0.000034,0.000214,0.000000,0.000000,0.000328,0.120036,-0.000535,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000039,0.000033,0.000215,0.000000,0.000000,0.000322,0.119508,-0.000528,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000038,0.000033,0.000215,0.000000,0.000000,0.000316,0.118988,-0.000521,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000038,0.000032,0.000216,0.000000,0.000000,0.000311,0.118474,-0.000514,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000032,0.000217,0.000000,0.000000,0.000306,0.117968,-0.000507,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000037,0.000031,0.000218,0.000000,0.000000,0.000301,0.117468,-0.000500,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000031,0.000218,0.000000,0.000000,0.000296,0.116975,-0.000493,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000031,0.000219,0.000000,0.000000,0.000291,0.116489,-0.000486,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000030,0.000220,0.000000,0.000000,0.000287,0.116009,-0.000480,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000034,0.000030,0.000221,0.000000,0.000000,0.000282,0.115536,-0.000473,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000029,0.000221,0.000000,0.000000,0.000278,0.115069,-0.000467,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000029,0.000222,0.000000,0.000000,0.000274,0.114608,-0.000461,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000029,0.000223,0.000112,0.000112,0.000270,0.114043,-0.000565,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000028,0.000224,0.000347,0.000347,0.000265,0.113254,-0.000789,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000027,0.000224,0.000507,0.000507,0.000261,0.112318,-0.000936,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000026,0.000225,0.000626,0.000626,0.000256,0.111278,-0.001040,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000025,0.000226,0.000693,0.000693,0.000251,0.110185,-0.001093,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000226,0.000642,0.000642,0.000245,0.109157,-0.001028,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000023,0.000227,0.000557,0.000557,0.000240,0.108226,-0.000930,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000228,0.000496,0.000496,0.000234,0.107369,-0.000857,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000022,0.000228,0.000412,0.000412,0.000228,0.106607,-0.000762,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000022,0.000229,0.000313,0.000313,0.000223,0.105953,-0.000654,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000154,0.000154,0.000218,0.105464,-0.000489,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000012,0.000012,0.000213,0.105122,-0.000342,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000231,0.000000,0.000000,0.000208,0.104796,-0.000326,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000020,0.000231,0.000000,0.000000,0.000204,0.104475,-0.000321,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000232,0.000000,0.000000,0.000199,0.104158,-0.000317,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000233,0.000000,0.000000,0.000195,0.103845,-0.000313,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000000,0.000000,0.000192,0.103536,-0.000309,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000188,0.103232,-0.000304,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000000,0.000000,0.000185,0.102932,-0.000300,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000236,0.000000,0.000000,0.000181,0.102636,-0.000296,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000237,0.000000,0.000000,0.000178,0.102343,-0.000292,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000175,0.102055,-0.000288,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000172,0.101771,-0.000284,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000169,0.101490,-0.000280,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000017,0.000240,0.000097,0.000097,0.000167,0.101118,-0.000372,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000334,0.000334,0.000164,0.100517,-0.000601,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000016,0.000241,0.000494,0.000494,0.000160,0.099767,-0.000751,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000015,0.000242,0.000606,0.000606,0.000157,0.098916,-0.000851,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000015,0.000243,0.000687,0.000687,0.000153,0.097996,-0.000920,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000014,0.000243,0.000642,0.000642,0.000149,0.097133,-0.000863,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000014,0.000244,0.000554,0.000000,0.000145,0.096916,-0.000218,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000014,0.000245,0.000499,0.000000,0.000141,0.096701,-0.000215,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000013,0.000245,0.000413,0.000000,0.000138,0.096489,-0.000212,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000013,0.000246,0.000317,0.000000,0.000135,0.096280,-0.000209,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000013,0.000247,0.000181,0.000000,0.000132,0.096074,-0.000206,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000013,0.000247,0.000036,0.000000,0.000129,0.095871,-0.000203,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000553,0.000024,0.000043,0.000024,0.000233,0.000015,0.000013,0.000272,0.000000,0.000000,0.000127,0.096173,0.000302,1.000000,0.000019 +195,2022-08-09 03:00:00,0.000233,0.000015,0.000008,0.000015,0.000234,0.000015,0.000013,0.000264,0.000000,0.000000,0.000125,0.096190,0.000017,1.000000,0.000012 +196,2022-08-09 04:00:00,0.000000,0.000011,0.000000,0.000011,0.000235,0.000015,0.000013,0.000261,0.000000,0.000000,0.000123,0.095986,-0.000205,1.000000,0.000002 +197,2022-08-09 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000236,0.000015,0.000013,0.000252,0.000000,0.000000,0.000121,0.095783,-0.000202,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000252,0.000000,0.000000,0.000119,0.095584,-0.000199,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000000,0.000000,0.000117,0.095387,-0.000197,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000000,0.000000,0.000116,0.095193,-0.000194,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000000,0.000000,0.000114,0.095002,-0.000191,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000065,0.000000,0.000001,0.000000,0.000241,0.000014,0.000012,0.000255,0.000000,0.000000,0.000112,0.094877,-0.000125,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000012,0.000256,0.000000,0.000000,0.000111,0.094690,-0.000187,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000012,0.000257,0.000000,0.000000,0.000109,0.094505,-0.000185,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000011,0.000257,0.000000,0.000000,0.000107,0.094323,-0.000182,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000011,0.000258,0.000108,0.000000,0.000106,0.094144,-0.000180,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620829.csv b/test/channel_loss/channel_forcing/et/cat-2620829.csv new file mode 100644 index 000000000..4e420b152 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620829.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001478,0.000419,0.001480,0.000178,0.000178,0.010537,0.429491,-0.004676,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000062,0.000001,0.000000,0.000001,0.000000,0.001331,0.000413,0.001332,0.000052,0.000052,0.009619,0.424758,-0.004733,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000062,0.000001,0.000001,0.000001,0.000000,0.001207,0.000408,0.001208,0.000000,0.000000,0.008820,0.420143,-0.004615,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000022,0.000000,0.000000,0.000000,0.000000,0.001100,0.000402,0.001100,0.000000,0.000000,0.008123,0.415555,-0.004588,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000022,0.000000,0.000000,0.000000,0.000000,0.001008,0.000396,0.001008,0.000000,0.000000,0.007511,0.411031,-0.004524,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000022,0.000000,0.000000,0.000000,0.000000,0.000929,0.000391,0.000929,0.000000,0.000000,0.006973,0.406572,-0.004459,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000022,0.000000,0.000000,0.000000,0.000001,0.000859,0.000385,0.000860,0.000000,0.000000,0.006498,0.402176,-0.004396,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000799,0.000380,0.000800,0.000000,0.000000,0.006079,0.397820,-0.004356,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000746,0.000374,0.000747,0.000000,0.000000,0.005707,0.393526,-0.004294,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000700,0.000369,0.000701,0.000000,0.000000,0.005376,0.389292,-0.004233,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000659,0.000364,0.000660,0.000000,0.000000,0.005081,0.385119,-0.004173,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000622,0.000359,0.000624,0.000000,0.000000,0.004818,0.381004,-0.004114,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000590,0.000354,0.000592,0.000000,0.000000,0.004582,0.376948,-0.004056,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000561,0.000349,0.000564,0.000000,0.000000,0.004369,0.372950,-0.003999,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000535,0.000343,0.000538,0.000127,0.000127,0.004178,0.368882,-0.004067,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000511,0.000338,0.000515,0.000359,0.000359,0.004005,0.364643,-0.004239,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000490,0.000333,0.000494,0.000519,0.000519,0.003848,0.360307,-0.004337,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000471,0.000327,0.000476,0.000636,0.000636,0.003704,0.355916,-0.004390,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000453,0.000322,0.000459,0.000597,0.000597,0.003572,0.351626,-0.004290,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000153,0.000000,0.000000,0.000000,0.000006,0.000437,0.000317,0.000443,0.000544,0.000544,0.003452,0.347600,-0.004026,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000423,0.000312,0.000429,0.000479,0.000479,0.003341,0.343731,-0.003869,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000409,0.000307,0.000416,0.000376,0.000376,0.003239,0.340081,-0.003650,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000397,0.000303,0.000405,0.000315,0.000315,0.003146,0.336480,-0.003600,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000385,0.000299,0.000394,0.000245,0.000245,0.003059,0.333000,-0.003481,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000375,0.000294,0.000384,0.000151,0.000151,0.002978,0.329661,-0.003339,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000567,0.000021,0.000037,0.000021,0.000010,0.000365,0.000291,0.000396,0.000060,0.000060,0.002904,0.326795,-0.002866,1.000000,0.000017 +26,2022-08-02 02:00:00,0.000796,0.000058,0.000088,0.000058,0.000011,0.000356,0.000288,0.000425,0.000000,0.000000,0.002835,0.324205,-0.002590,1.000000,0.000047 +27,2022-08-02 03:00:00,0.000854,0.000084,0.000100,0.000084,0.000012,0.000348,0.000284,0.000444,0.000000,0.000000,0.002772,0.321696,-0.002509,1.000000,0.000062 +28,2022-08-02 04:00:00,0.000900,0.000103,0.000110,0.000103,0.000013,0.000340,0.000281,0.000455,0.000000,0.000000,0.002713,0.319259,-0.002437,1.000000,0.000069 +29,2022-08-02 05:00:00,0.000799,0.000095,0.000087,0.000095,0.000013,0.000333,0.000278,0.000442,0.000000,0.000000,0.002658,0.316778,-0.002480,1.000000,0.000061 +30,2022-08-02 06:00:00,0.000696,0.000081,0.000067,0.000081,0.000014,0.000326,0.000275,0.000421,0.000000,0.000000,0.002607,0.314252,-0.002527,1.000000,0.000048 +31,2022-08-02 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000015,0.000320,0.000271,0.000369,0.000000,0.000000,0.002558,0.311140,-0.003111,1.000000,0.000013 +32,2022-08-02 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000016,0.000314,0.000267,0.000343,0.000000,0.000000,0.002511,0.308073,-0.003067,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000308,0.000264,0.000325,0.000000,0.000000,0.002467,0.305050,-0.003024,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000303,0.000260,0.000321,0.000000,0.000000,0.002424,0.302069,-0.002981,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000297,0.000256,0.000316,0.000000,0.000000,0.002383,0.299130,-0.002939,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000292,0.000253,0.000312,0.000000,0.000000,0.002343,0.296233,-0.002897,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000287,0.000249,0.000308,0.000000,0.000000,0.002304,0.293377,-0.002856,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000022,0.000283,0.000245,0.000304,0.000106,0.000106,0.002267,0.290457,-0.002919,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000278,0.000241,0.000301,0.000335,0.000335,0.002231,0.287353,-0.003104,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000273,0.000237,0.000297,0.000479,0.000479,0.002195,0.284151,-0.003202,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000269,0.000233,0.000294,0.000591,0.000591,0.002159,0.280884,-0.003267,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000026,0.000264,0.000230,0.000290,0.000682,0.000682,0.002125,0.277868,-0.003016,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000260,0.000226,0.000287,0.000629,0.000629,0.002090,0.274651,-0.003217,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000256,0.000222,0.000284,0.000547,0.000547,0.002056,0.271561,-0.003090,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000251,0.000218,0.000281,0.000498,0.000498,0.002023,0.268564,-0.002998,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000247,0.000214,0.000278,0.000415,0.000415,0.001990,0.265690,-0.002873,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000243,0.000211,0.000275,0.000317,0.000317,0.001958,0.262954,-0.002736,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000239,0.000208,0.000272,0.000178,0.000178,0.001927,0.260393,-0.002561,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000235,0.000205,0.000269,0.000031,0.000031,0.001896,0.258014,-0.002380,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000231,0.000202,0.000267,0.000000,0.000000,0.001867,0.255699,-0.002315,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000228,0.000199,0.000264,0.000000,0.000000,0.001838,0.253416,-0.002282,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000224,0.000196,0.000262,0.000000,0.000000,0.001810,0.251166,-0.002250,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000221,0.000193,0.000260,0.000000,0.000000,0.001783,0.248948,-0.002218,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000217,0.000191,0.000257,0.000000,0.000000,0.001756,0.246762,-0.002187,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000214,0.000188,0.000255,0.000000,0.000000,0.001730,0.244606,-0.002156,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000211,0.000185,0.000253,0.000000,0.000000,0.001704,0.242480,-0.002125,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000208,0.000183,0.000251,0.000000,0.000000,0.001679,0.240385,-0.002095,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000205,0.000180,0.000250,0.000000,0.000000,0.001655,0.238320,-0.002066,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000201,0.000177,0.000248,0.000000,0.000000,0.001631,0.236283,-0.002036,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000199,0.000175,0.000246,0.000000,0.000000,0.001607,0.234276,-0.002007,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000196,0.000172,0.000245,0.000000,0.000000,0.001584,0.232297,-0.001979,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000193,0.000170,0.000243,0.000123,0.000123,0.001562,0.230225,-0.002072,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000190,0.000167,0.000242,0.000367,0.000367,0.001539,0.227941,-0.002284,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000187,0.000164,0.000240,0.000525,0.000525,0.001516,0.225534,-0.002407,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000184,0.000161,0.000238,0.000648,0.000648,0.001493,0.223039,-0.002494,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000181,0.000158,0.000237,0.000651,0.000651,0.001469,0.220578,-0.002462,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000178,0.000155,0.000235,0.000586,0.000586,0.001446,0.218215,-0.002362,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000504,0.000000,0.000000,0.000000,0.000058,0.000175,0.000153,0.000234,0.000514,0.000514,0.001423,0.216453,-0.001762,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000157,0.000000,0.000000,0.000000,0.000060,0.000173,0.000150,0.000232,0.000471,0.000471,0.001401,0.214417,-0.002036,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000170,0.000148,0.000231,0.000386,0.000386,0.001379,0.212338,-0.002079,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000167,0.000145,0.000229,0.000284,0.000284,0.001357,0.210389,-0.001949,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000164,0.000143,0.000228,0.000166,0.000166,0.001335,0.208585,-0.001804,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000162,0.000141,0.000227,0.000042,0.000042,0.001314,0.206928,-0.001657,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000159,0.000139,0.000226,0.000000,0.000000,0.001294,0.205336,-0.001592,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000157,0.000137,0.000225,0.000000,0.000000,0.001274,0.203767,-0.001569,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000154,0.000135,0.000224,0.000000,0.000000,0.001255,0.202220,-0.001547,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000001,0.000000,0.000071,0.000152,0.000133,0.000223,0.000000,0.000000,0.001236,0.200756,-0.001463,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000150,0.000131,0.000222,0.000000,0.000000,0.001218,0.199252,-0.001505,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000147,0.000129,0.000221,0.000000,0.000000,0.001200,0.197768,-0.001483,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000145,0.000127,0.000220,0.000000,0.000000,0.001182,0.196306,-0.001462,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000143,0.000126,0.000219,0.000000,0.000000,0.001165,0.194865,-0.001442,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000141,0.000124,0.000219,0.000000,0.000000,0.001148,0.193443,-0.001421,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000139,0.000122,0.000218,0.000000,0.000000,0.001131,0.192042,-0.001401,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000137,0.000120,0.000217,0.000000,0.000000,0.001115,0.190661,-0.001381,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000135,0.000119,0.000217,0.000000,0.000000,0.001099,0.189300,-0.001362,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000133,0.000117,0.000216,0.000121,0.000121,0.001083,0.187838,-0.001462,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000131,0.000115,0.000216,0.000366,0.000366,0.001067,0.186155,-0.001682,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000129,0.000112,0.000215,0.000528,0.000528,0.001050,0.184337,-0.001818,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000127,0.000110,0.000214,0.000649,0.000649,0.001034,0.182425,-0.001912,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000125,0.000108,0.000214,0.000717,0.000717,0.001017,0.180473,-0.001952,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000015,0.000000,0.000000,0.000000,0.000091,0.000122,0.000105,0.000213,0.000668,0.000668,0.001000,0.178612,-0.001861,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000120,0.000103,0.000212,0.000576,0.000576,0.000983,0.176853,-0.001759,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000118,0.000101,0.000212,0.000487,0.000487,0.000965,0.175207,-0.001646,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000116,0.000099,0.000211,0.000402,0.000402,0.000948,0.173667,-0.001540,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000114,0.000097,0.000210,0.000314,0.000314,0.000932,0.172237,-0.001431,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000112,0.000096,0.000210,0.000187,0.000187,0.000916,0.170951,-0.001285,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000015,0.000000,0.000000,0.000000,0.000099,0.000110,0.000094,0.000209,0.000054,0.000054,0.000900,0.169831,-0.001121,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000007,0.000000,0.000000,0.000000,0.000101,0.000108,0.000093,0.000209,0.000000,0.000000,0.000885,0.168771,-0.001060,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000102,0.000106,0.000092,0.000208,0.000000,0.000000,0.000870,0.167722,-0.001049,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000002,0.000000,0.000000,0.000000,0.000104,0.000105,0.000090,0.000208,0.000000,0.000000,0.000856,0.166687,-0.001035,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000105,0.000103,0.000089,0.000208,0.000000,0.000000,0.000842,0.165667,-0.001020,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000106,0.000101,0.000088,0.000208,0.000000,0.000000,0.000829,0.164662,-0.001005,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000100,0.000087,0.000207,0.000000,0.000000,0.000816,0.163668,-0.000994,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000098,0.000085,0.000207,0.000000,0.000000,0.000803,0.162689,-0.000980,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000097,0.000084,0.000207,0.000000,0.000000,0.000790,0.161723,-0.000966,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000095,0.000083,0.000207,0.000000,0.000000,0.000778,0.160771,-0.000952,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000094,0.000082,0.000207,0.000000,0.000000,0.000767,0.159833,-0.000939,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000092,0.000081,0.000207,0.000000,0.000000,0.000755,0.158907,-0.000925,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000091,0.000080,0.000207,0.000000,0.000000,0.000744,0.157995,-0.000912,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000089,0.000078,0.000207,0.000132,0.000132,0.000733,0.156966,-0.001030,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000088,0.000077,0.000207,0.000369,0.000369,0.000721,0.155717,-0.001249,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000087,0.000075,0.000207,0.000530,0.000530,0.000710,0.154328,-0.001389,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000085,0.000073,0.000207,0.000657,0.000657,0.000698,0.152833,-0.001495,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000084,0.000071,0.000207,0.000638,0.000638,0.000685,0.151378,-0.001455,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000082,0.000070,0.000207,0.000583,0.000583,0.000673,0.150060,-0.001318,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000078,0.000000,0.000000,0.000000,0.000126,0.000080,0.000068,0.000207,0.000496,0.000496,0.000660,0.148862,-0.001198,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000079,0.000067,0.000207,0.000433,0.000433,0.000648,0.147727,-0.001135,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000129,0.000077,0.000065,0.000207,0.000360,0.000360,0.000636,0.146742,-0.000984,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000130,0.000076,0.000064,0.000206,0.000282,0.000282,0.000624,0.145911,-0.000831,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000082,0.000000,0.000000,0.000000,0.000132,0.000075,0.000063,0.000206,0.000177,0.000177,0.000613,0.145090,-0.000821,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000553,0.000015,0.000027,0.000015,0.000133,0.000073,0.000063,0.000221,0.000061,0.000061,0.000603,0.144832,-0.000258,1.000000,0.000012 +122,2022-08-06 02:00:00,0.000852,0.000049,0.000077,0.000049,0.000135,0.000072,0.000063,0.000256,0.000000,0.000000,0.000593,0.144883,0.000051,1.000000,0.000040 +123,2022-08-06 03:00:00,0.000734,0.000056,0.000058,0.000056,0.000136,0.000071,0.000063,0.000264,0.000000,0.000000,0.000585,0.144836,-0.000047,1.000000,0.000041 +124,2022-08-06 04:00:00,0.000630,0.000054,0.000043,0.000054,0.000137,0.000070,0.000063,0.000261,0.000000,0.000000,0.000578,0.144702,-0.000134,1.000000,0.000031 +125,2022-08-06 05:00:00,0.000632,0.000046,0.000043,0.000046,0.000139,0.000070,0.000063,0.000254,0.000000,0.000000,0.000571,0.144572,-0.000130,1.000000,0.000028 +126,2022-08-06 06:00:00,0.000720,0.000050,0.000056,0.000050,0.000140,0.000069,0.000063,0.000259,0.000000,0.000000,0.000565,0.144518,-0.000054,1.000000,0.000034 +127,2022-08-06 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000141,0.000068,0.000062,0.000232,0.000000,0.000000,0.000559,0.143809,-0.000708,1.000000,0.000011 +128,2022-08-06 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000143,0.000067,0.000061,0.000221,0.000000,0.000000,0.000552,0.143111,-0.000698,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000066,0.000060,0.000211,0.000000,0.000000,0.000546,0.142422,-0.000689,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000066,0.000059,0.000211,0.000000,0.000000,0.000539,0.141744,-0.000679,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000065,0.000058,0.000212,0.000000,0.000000,0.000533,0.141074,-0.000669,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000064,0.000057,0.000212,0.000000,0.000000,0.000526,0.140415,-0.000660,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000063,0.000057,0.000213,0.000000,0.000000,0.000520,0.139764,-0.000650,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000062,0.000056,0.000213,0.000117,0.000117,0.000513,0.139008,-0.000756,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000062,0.000055,0.000214,0.000350,0.000350,0.000506,0.138033,-0.000975,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000061,0.000053,0.000214,0.000504,0.000504,0.000498,0.136920,-0.001114,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000060,0.000052,0.000215,0.000626,0.000626,0.000490,0.135701,-0.001218,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000059,0.000050,0.000215,0.000703,0.000703,0.000482,0.134425,-0.001276,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000057,0.000048,0.000215,0.000654,0.000654,0.000473,0.133215,-0.001210,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000056,0.000047,0.000215,0.000569,0.000569,0.000464,0.132106,-0.001109,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000055,0.000046,0.000215,0.000489,0.000489,0.000454,0.131091,-0.001015,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000054,0.000045,0.000216,0.000401,0.000401,0.000445,0.130177,-0.000914,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000053,0.000044,0.000216,0.000308,0.000308,0.000436,0.129368,-0.000809,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000052,0.000043,0.000216,0.000170,0.000170,0.000427,0.128706,-0.000662,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000051,0.000042,0.000216,0.000042,0.000042,0.000418,0.128180,-0.000526,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000050,0.000042,0.000216,0.000000,0.000000,0.000410,0.127703,-0.000477,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000049,0.000041,0.000217,0.000000,0.000000,0.000402,0.127233,-0.000470,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000040,0.000217,0.000000,0.000000,0.000394,0.126769,-0.000464,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000040,0.000217,0.000000,0.000000,0.000387,0.126312,-0.000457,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000218,0.000000,0.000000,0.000380,0.125861,-0.000451,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000039,0.000218,0.000000,0.000000,0.000374,0.125417,-0.000444,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000045,0.000038,0.000219,0.000000,0.000000,0.000367,0.124979,-0.000438,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000038,0.000219,0.000000,0.000000,0.000361,0.124547,-0.000432,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000037,0.000220,0.000000,0.000000,0.000355,0.124121,-0.000426,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000037,0.000220,0.000000,0.000000,0.000349,0.123701,-0.000420,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000036,0.000221,0.000000,0.000000,0.000344,0.123288,-0.000414,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000036,0.000221,0.000000,0.000000,0.000338,0.122880,-0.000408,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000035,0.000222,0.000111,0.000111,0.000333,0.122368,-0.000512,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000034,0.000222,0.000345,0.000345,0.000327,0.121633,-0.000735,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000033,0.000223,0.000506,0.000506,0.000321,0.120750,-0.000883,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000038,0.000032,0.000223,0.000632,0.000632,0.000314,0.119754,-0.000995,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000037,0.000030,0.000224,0.000701,0.000701,0.000307,0.118705,-0.001049,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000029,0.000224,0.000646,0.000646,0.000300,0.117725,-0.000980,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000028,0.000224,0.000560,0.000560,0.000293,0.116844,-0.000881,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000027,0.000225,0.000495,0.000495,0.000285,0.116039,-0.000804,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000026,0.000225,0.000408,0.000408,0.000278,0.115332,-0.000708,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000025,0.000225,0.000312,0.000312,0.000270,0.114729,-0.000602,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000025,0.000225,0.000153,0.000153,0.000263,0.114292,-0.000437,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000024,0.000226,0.000010,0.000010,0.000256,0.114001,-0.000291,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000024,0.000226,0.000000,0.000000,0.000250,0.113725,-0.000276,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000226,0.000000,0.000000,0.000244,0.113452,-0.000273,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000023,0.000227,0.000000,0.000000,0.000239,0.113184,-0.000269,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000227,0.000000,0.000000,0.000234,0.112919,-0.000265,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000023,0.000228,0.000000,0.000000,0.000229,0.112658,-0.000261,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000229,0.000000,0.000000,0.000224,0.112400,-0.000257,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000022,0.000229,0.000000,0.000000,0.000219,0.112146,-0.000254,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000022,0.000230,0.000000,0.000000,0.000215,0.111896,-0.000250,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000230,0.000000,0.000000,0.000211,0.111650,-0.000247,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000021,0.000231,0.000000,0.000000,0.000207,0.111407,-0.000243,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000232,0.000000,0.000000,0.000203,0.111167,-0.000240,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000021,0.000232,0.000000,0.000000,0.000200,0.110931,-0.000236,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000233,0.000096,0.000096,0.000196,0.110603,-0.000328,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000332,0.000332,0.000192,0.110047,-0.000556,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000493,0.000493,0.000188,0.109341,-0.000706,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000234,0.000609,0.000609,0.000184,0.108530,-0.000811,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000016,0.000235,0.000693,0.000693,0.000178,0.107648,-0.000882,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000015,0.000235,0.000649,0.000649,0.000173,0.106822,-0.000826,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000015,0.000236,0.000558,0.000558,0.000167,0.106097,-0.000725,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000014,0.000236,0.000497,0.000497,0.000161,0.105442,-0.000655,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000013,0.000236,0.000410,0.000410,0.000156,0.104883,-0.000559,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000012,0.000236,0.000315,0.000315,0.000150,0.104425,-0.000458,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000237,0.000180,0.000180,0.000144,0.104107,-0.000319,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000012,0.000237,0.000035,0.000035,0.000139,0.103936,-0.000171,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000633,0.000023,0.000041,0.000023,0.000221,0.000016,0.000012,0.000260,0.000000,0.000000,0.000135,0.104385,0.000450,1.000000,0.000019 +195,2022-08-09 03:00:00,0.000285,0.000015,0.000009,0.000015,0.000222,0.000016,0.000013,0.000253,0.000000,0.000000,0.000132,0.104517,0.000132,1.000000,0.000012 +196,2022-08-09 04:00:00,0.000000,0.000010,0.000000,0.000010,0.000223,0.000016,0.000012,0.000249,0.000000,0.000000,0.000129,0.104375,-0.000142,1.000000,0.000002 +197,2022-08-09 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000224,0.000015,0.000012,0.000241,0.000000,0.000000,0.000126,0.104235,-0.000140,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000012,0.000240,0.000000,0.000000,0.000123,0.104097,-0.000138,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000012,0.000241,0.000000,0.000000,0.000120,0.103961,-0.000136,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000012,0.000241,0.000000,0.000000,0.000118,0.103826,-0.000134,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000115,0.103694,-0.000132,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000098,0.000001,0.000001,0.000001,0.000229,0.000014,0.000011,0.000243,0.000000,0.000000,0.000113,0.103659,-0.000035,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000011,0.000244,0.000000,0.000000,0.000111,0.103529,-0.000130,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000011,0.000244,0.000000,0.000000,0.000109,0.103401,-0.000128,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000011,0.000245,0.000000,0.000000,0.000107,0.103275,-0.000126,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000245,0.000107,0.000107,0.000105,0.103045,-0.000230,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620830.csv b/test/channel_loss/channel_forcing/et/cat-2620830.csv new file mode 100644 index 000000000..18a319183 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620830.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001459,0.000283,0.001462,0.000180,0.000180,0.010420,0.429123,-0.004684,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000063,0.000001,0.000000,0.000001,0.000000,0.001297,0.000279,0.001298,0.000052,0.000052,0.009402,0.424385,-0.004738,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000063,0.000002,0.000001,0.000002,0.000000,0.001160,0.000275,0.001162,0.000000,0.000000,0.008517,0.419760,-0.004625,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000034,0.000000,0.000000,0.000000,0.000000,0.001043,0.000271,0.001044,0.000000,0.000000,0.007745,0.415169,-0.004591,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000034,0.000000,0.000000,0.000000,0.000000,0.000943,0.000268,0.000944,0.000000,0.000000,0.007070,0.410639,-0.004530,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000037,0.000000,0.000000,0.000000,0.000000,0.000857,0.000264,0.000857,0.000000,0.000000,0.006478,0.406173,-0.004466,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000034,0.000000,0.000000,0.000000,0.000001,0.000782,0.000261,0.000783,0.000000,0.000000,0.005957,0.401764,-0.004409,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000717,0.000257,0.000718,0.000000,0.000000,0.005498,0.397381,-0.004383,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000660,0.000254,0.000661,0.000000,0.000000,0.005091,0.393056,-0.004324,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000610,0.000250,0.000612,0.000000,0.000000,0.004732,0.388790,-0.004267,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000567,0.000247,0.000568,0.000000,0.000000,0.004412,0.384580,-0.004209,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000528,0.000244,0.000530,0.000000,0.000000,0.004128,0.380427,-0.004153,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000494,0.000241,0.000496,0.000000,0.000000,0.003875,0.376330,-0.004097,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000463,0.000237,0.000466,0.000000,0.000000,0.003649,0.372288,-0.004042,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000437,0.000234,0.000440,0.000127,0.000127,0.003446,0.368174,-0.004114,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000412,0.000231,0.000416,0.000362,0.000362,0.003264,0.363883,-0.004290,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000391,0.000227,0.000395,0.000527,0.000527,0.003100,0.359487,-0.004396,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000371,0.000224,0.000376,0.000652,0.000652,0.002953,0.355027,-0.004460,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000354,0.000220,0.000360,0.000617,0.000617,0.002819,0.350661,-0.004366,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000154,0.000000,0.000000,0.000000,0.000006,0.000338,0.000217,0.000344,0.000558,0.000558,0.002697,0.346564,-0.004097,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000324,0.000214,0.000331,0.000488,0.000488,0.002587,0.342627,-0.003938,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000311,0.000211,0.000318,0.000380,0.000380,0.002487,0.338909,-0.003717,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000299,0.000208,0.000307,0.000312,0.000312,0.002396,0.335247,-0.003662,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000288,0.000205,0.000297,0.000248,0.000248,0.002312,0.331697,-0.003550,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000010,0.000279,0.000202,0.000288,0.000153,0.000153,0.002236,0.328289,-0.003409,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000030,0.000055,0.000030,0.000011,0.000270,0.000200,0.000310,0.000060,0.000060,0.002166,0.325337,-0.002952,1.000000,0.000025 +26,2022-08-02 02:00:00,0.000819,0.000087,0.000133,0.000087,0.000011,0.000261,0.000198,0.000360,0.000000,0.000000,0.002103,0.322654,-0.002683,1.000000,0.000071 +27,2022-08-02 03:00:00,0.000871,0.000126,0.000149,0.000126,0.000012,0.000254,0.000196,0.000392,0.000000,0.000000,0.002044,0.320043,-0.002611,1.000000,0.000094 +28,2022-08-02 04:00:00,0.000900,0.000150,0.000157,0.000150,0.000013,0.000247,0.000194,0.000410,0.000000,0.000000,0.001991,0.317488,-0.002556,1.000000,0.000100 +29,2022-08-02 05:00:00,0.000765,0.000133,0.000116,0.000133,0.000014,0.000241,0.000192,0.000388,0.000000,0.000000,0.001941,0.314874,-0.002614,1.000000,0.000084 +30,2022-08-02 06:00:00,0.000626,0.000104,0.000080,0.000104,0.000015,0.000235,0.000189,0.000354,0.000000,0.000000,0.001896,0.312193,-0.002680,1.000000,0.000059 +31,2022-08-02 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000016,0.000230,0.000187,0.000288,0.000000,0.000000,0.001853,0.309010,-0.003183,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000017,0.000225,0.000184,0.000257,0.000000,0.000000,0.001813,0.305869,-0.003141,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000220,0.000182,0.000237,0.000000,0.000000,0.001775,0.302771,-0.003099,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000215,0.000179,0.000234,0.000000,0.000000,0.001739,0.299714,-0.003057,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000211,0.000177,0.000231,0.000000,0.000000,0.001705,0.296698,-0.003016,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000207,0.000175,0.000227,0.000000,0.000000,0.001673,0.293722,-0.002976,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000203,0.000172,0.000225,0.000000,0.000000,0.001643,0.290786,-0.002936,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000199,0.000170,0.000222,0.000106,0.000106,0.001613,0.287784,-0.003002,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000196,0.000167,0.000220,0.000338,0.000338,0.001585,0.284595,-0.003190,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000192,0.000165,0.000217,0.000490,0.000490,0.001558,0.281298,-0.003297,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000189,0.000162,0.000215,0.000610,0.000610,0.001531,0.277927,-0.003371,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000027,0.000186,0.000160,0.000213,0.000705,0.000705,0.001505,0.274803,-0.003124,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000182,0.000157,0.000211,0.000646,0.000646,0.001479,0.271484,-0.003319,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000179,0.000154,0.000209,0.000556,0.000556,0.001455,0.268297,-0.003187,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000176,0.000152,0.000207,0.000501,0.000501,0.001430,0.265207,-0.003090,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000173,0.000150,0.000205,0.000416,0.000416,0.001407,0.262243,-0.002964,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000170,0.000147,0.000203,0.000319,0.000319,0.001384,0.259414,-0.002829,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000168,0.000145,0.000202,0.000178,0.000178,0.001361,0.256762,-0.002652,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000165,0.000143,0.000200,0.000030,0.000030,0.001340,0.254292,-0.002470,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000162,0.000141,0.000199,0.000000,0.000000,0.001319,0.251884,-0.002408,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000160,0.000139,0.000198,0.000000,0.000000,0.001299,0.249509,-0.002375,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000157,0.000138,0.000197,0.000000,0.000000,0.001279,0.247165,-0.002344,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000155,0.000136,0.000195,0.000000,0.000000,0.001260,0.244853,-0.002312,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000153,0.000134,0.000194,0.000000,0.000000,0.001241,0.242572,-0.002281,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000150,0.000132,0.000193,0.000000,0.000000,0.001223,0.240321,-0.002251,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000148,0.000130,0.000193,0.000000,0.000000,0.001205,0.238101,-0.002221,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000146,0.000129,0.000192,0.000000,0.000000,0.001188,0.235910,-0.002191,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000144,0.000127,0.000191,0.000000,0.000000,0.001171,0.233748,-0.002161,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000142,0.000125,0.000190,0.000000,0.000000,0.001155,0.231616,-0.002132,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000140,0.000124,0.000190,0.000000,0.000000,0.001139,0.229512,-0.002104,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000138,0.000122,0.000189,0.000000,0.000000,0.001123,0.227436,-0.002076,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000136,0.000120,0.000188,0.000124,0.000124,0.001107,0.225266,-0.002171,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000134,0.000118,0.000188,0.000371,0.000371,0.001091,0.222881,-0.002384,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000132,0.000116,0.000187,0.000534,0.000534,0.001076,0.220368,-0.002514,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000130,0.000114,0.000187,0.000661,0.000661,0.001060,0.217763,-0.002605,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000128,0.000112,0.000186,0.000664,0.000664,0.001044,0.215189,-0.002573,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000126,0.000110,0.000186,0.000598,0.000598,0.001028,0.212715,-0.002474,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000575,0.000000,0.000001,0.000000,0.000061,0.000124,0.000109,0.000186,0.000519,0.000519,0.001013,0.210919,-0.001796,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000173,0.000000,0.000000,0.000000,0.000063,0.000122,0.000107,0.000185,0.000470,0.000470,0.000998,0.208799,-0.002120,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000035,0.000000,0.000000,0.000000,0.000064,0.000120,0.000105,0.000184,0.000385,0.000385,0.000983,0.206657,-0.002143,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000118,0.000104,0.000184,0.000283,0.000283,0.000968,0.204607,-0.002049,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000117,0.000102,0.000184,0.000165,0.000165,0.000953,0.202702,-0.001905,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000115,0.000101,0.000183,0.000041,0.000041,0.000939,0.200946,-0.001757,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000113,0.000099,0.000183,0.000000,0.000000,0.000925,0.199253,-0.001693,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000112,0.000098,0.000183,0.000000,0.000000,0.000912,0.197582,-0.001670,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000110,0.000097,0.000183,0.000000,0.000000,0.000899,0.195934,-0.001648,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000001,0.000000,0.000074,0.000108,0.000095,0.000183,0.000000,0.000000,0.000886,0.194370,-0.001564,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000107,0.000094,0.000183,0.000000,0.000000,0.000873,0.192765,-0.001605,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000105,0.000093,0.000183,0.000000,0.000000,0.000861,0.191181,-0.001583,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000104,0.000092,0.000183,0.000000,0.000000,0.000849,0.189619,-0.001562,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000102,0.000090,0.000183,0.000000,0.000000,0.000837,0.188078,-0.001541,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000101,0.000089,0.000183,0.000000,0.000000,0.000826,0.186557,-0.001521,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000099,0.000088,0.000183,0.000000,0.000000,0.000814,0.185057,-0.001500,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000098,0.000087,0.000183,0.000000,0.000000,0.000803,0.183577,-0.001480,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000097,0.000086,0.000183,0.000000,0.000000,0.000792,0.182116,-0.001460,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000095,0.000084,0.000183,0.000121,0.000121,0.000781,0.180556,-0.001560,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000094,0.000083,0.000183,0.000367,0.000367,0.000770,0.178774,-0.001782,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000093,0.000082,0.000183,0.000533,0.000533,0.000759,0.176851,-0.001922,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000091,0.000080,0.000184,0.000662,0.000662,0.000748,0.174828,-0.002023,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000090,0.000078,0.000184,0.000724,0.000724,0.000736,0.172771,-0.002057,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000069,0.000000,0.000000,0.000000,0.000095,0.000088,0.000077,0.000184,0.000671,0.000671,0.000724,0.170861,-0.001909,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000032,0.000000,0.000000,0.000000,0.000097,0.000087,0.000075,0.000184,0.000581,0.000581,0.000713,0.169030,-0.001832,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000086,0.000074,0.000184,0.000488,0.000488,0.000701,0.167283,-0.001747,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000084,0.000073,0.000184,0.000401,0.000401,0.000690,0.165644,-0.001638,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000083,0.000071,0.000184,0.000314,0.000314,0.000678,0.164115,-0.001530,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000081,0.000070,0.000184,0.000186,0.000186,0.000667,0.162731,-0.001384,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000042,0.000000,0.000000,0.000000,0.000105,0.000080,0.000069,0.000185,0.000052,0.000052,0.000657,0.161540,-0.001191,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000014,0.000000,0.000000,0.000000,0.000106,0.000079,0.000068,0.000185,0.000000,0.000000,0.000646,0.160389,-0.001151,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000005,0.000000,0.000000,0.000000,0.000108,0.000078,0.000067,0.000185,0.000000,0.000000,0.000636,0.159244,-0.001145,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000005,0.000000,0.000000,0.000000,0.000109,0.000076,0.000067,0.000185,0.000000,0.000000,0.000626,0.158114,-0.001130,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000005,0.000000,0.000000,0.000000,0.000111,0.000075,0.000066,0.000186,0.000000,0.000000,0.000617,0.157000,-0.001115,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000005,0.000000,0.000000,0.000000,0.000112,0.000074,0.000065,0.000186,0.000000,0.000000,0.000608,0.155900,-0.001100,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000073,0.000064,0.000187,0.000000,0.000000,0.000599,0.154810,-0.001090,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000072,0.000063,0.000187,0.000000,0.000000,0.000590,0.153735,-0.001075,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000071,0.000062,0.000188,0.000000,0.000000,0.000582,0.152675,-0.001061,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000070,0.000061,0.000188,0.000000,0.000000,0.000573,0.151628,-0.001046,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000069,0.000061,0.000189,0.000000,0.000000,0.000565,0.150596,-0.001032,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000068,0.000060,0.000189,0.000000,0.000000,0.000557,0.149577,-0.001019,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000067,0.000059,0.000190,0.000000,0.000000,0.000549,0.148572,-0.001005,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000066,0.000058,0.000190,0.000133,0.000133,0.000541,0.147450,-0.001123,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000065,0.000057,0.000191,0.000372,0.000372,0.000533,0.146106,-0.001344,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000064,0.000056,0.000191,0.000536,0.000536,0.000525,0.144619,-0.001487,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000063,0.000055,0.000192,0.000668,0.000668,0.000517,0.143021,-0.001597,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000062,0.000053,0.000192,0.000655,0.000655,0.000508,0.141458,-0.001563,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000061,0.000052,0.000193,0.000594,0.000594,0.000500,0.140039,-0.001419,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000132,0.000000,0.000000,0.000000,0.000133,0.000060,0.000051,0.000193,0.000506,0.000506,0.000491,0.138792,-0.001246,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000059,0.000050,0.000194,0.000435,0.000435,0.000483,0.137565,-0.001227,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000136,0.000058,0.000049,0.000194,0.000361,0.000361,0.000474,0.136490,-0.001076,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000138,0.000057,0.000049,0.000195,0.000282,0.000282,0.000466,0.135569,-0.000921,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000064,0.000000,0.000000,0.000000,0.000139,0.000056,0.000048,0.000195,0.000177,0.000177,0.000459,0.134640,-0.000929,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000515,0.000018,0.000033,0.000018,0.000141,0.000055,0.000048,0.000214,0.000061,0.000061,0.000451,0.134250,-0.000390,1.000000,0.000015 +122,2022-08-06 02:00:00,0.000795,0.000062,0.000097,0.000062,0.000142,0.000054,0.000047,0.000258,0.000000,0.000000,0.000445,0.134138,-0.000111,1.000000,0.000051 +123,2022-08-06 03:00:00,0.000685,0.000071,0.000074,0.000071,0.000144,0.000053,0.000047,0.000269,0.000000,0.000000,0.000439,0.133943,-0.000195,1.000000,0.000053 +124,2022-08-06 04:00:00,0.000569,0.000066,0.000052,0.000066,0.000145,0.000053,0.000047,0.000264,0.000000,0.000000,0.000433,0.133659,-0.000285,1.000000,0.000038 +125,2022-08-06 05:00:00,0.000593,0.000058,0.000056,0.000058,0.000147,0.000052,0.000047,0.000257,0.000000,0.000000,0.000428,0.133397,-0.000261,1.000000,0.000036 +126,2022-08-06 06:00:00,0.000644,0.000060,0.000065,0.000060,0.000148,0.000051,0.000047,0.000260,0.000000,0.000000,0.000423,0.133180,-0.000217,1.000000,0.000041 +127,2022-08-06 07:00:00,0.000000,0.000028,0.000000,0.000028,0.000150,0.000051,0.000046,0.000228,0.000000,0.000000,0.000419,0.132395,-0.000785,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000151,0.000050,0.000045,0.000215,0.000000,0.000000,0.000414,0.131620,-0.000775,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000050,0.000045,0.000202,0.000000,0.000000,0.000409,0.130856,-0.000764,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000049,0.000044,0.000203,0.000000,0.000000,0.000404,0.130101,-0.000754,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000049,0.000044,0.000204,0.000000,0.000000,0.000399,0.129357,-0.000744,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000048,0.000043,0.000205,0.000000,0.000000,0.000394,0.128623,-0.000734,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000047,0.000043,0.000206,0.000000,0.000000,0.000390,0.127899,-0.000724,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000047,0.000042,0.000207,0.000117,0.000117,0.000385,0.127069,-0.000830,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000046,0.000041,0.000207,0.000353,0.000353,0.000380,0.126018,-0.001052,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000045,0.000040,0.000208,0.000513,0.000513,0.000374,0.124822,-0.001195,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000039,0.000209,0.000642,0.000642,0.000369,0.123516,-0.001306,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000038,0.000210,0.000716,0.000716,0.000362,0.122153,-0.001362,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000043,0.000037,0.000210,0.000664,0.000664,0.000356,0.120860,-0.001293,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000036,0.000211,0.000575,0.000575,0.000350,0.119673,-0.001188,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000042,0.000035,0.000212,0.000491,0.000491,0.000343,0.118584,-0.001089,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000034,0.000212,0.000402,0.000402,0.000337,0.117598,-0.000986,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000040,0.000034,0.000213,0.000310,0.000310,0.000330,0.116715,-0.000882,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000039,0.000033,0.000213,0.000169,0.000169,0.000324,0.115984,-0.000731,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000039,0.000033,0.000214,0.000041,0.000041,0.000318,0.115389,-0.000595,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000038,0.000032,0.000215,0.000000,0.000000,0.000312,0.114842,-0.000547,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000037,0.000032,0.000216,0.000000,0.000000,0.000307,0.114302,-0.000540,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000031,0.000216,0.000000,0.000000,0.000301,0.113770,-0.000532,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000031,0.000217,0.000000,0.000000,0.000296,0.113244,-0.000525,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000030,0.000218,0.000000,0.000000,0.000291,0.112726,-0.000518,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000030,0.000219,0.000000,0.000000,0.000287,0.112215,-0.000511,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000030,0.000219,0.000000,0.000000,0.000282,0.111710,-0.000504,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000029,0.000220,0.000000,0.000000,0.000277,0.111213,-0.000498,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000033,0.000029,0.000221,0.000000,0.000000,0.000273,0.110722,-0.000491,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000028,0.000222,0.000000,0.000000,0.000269,0.110237,-0.000484,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000032,0.000028,0.000223,0.000000,0.000000,0.000265,0.109759,-0.000478,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000028,0.000223,0.000000,0.000000,0.000261,0.109288,-0.000472,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000027,0.000224,0.000112,0.000112,0.000257,0.108712,-0.000575,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000027,0.000225,0.000348,0.000348,0.000253,0.107911,-0.000801,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000026,0.000226,0.000514,0.000514,0.000249,0.106957,-0.000954,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000025,0.000227,0.000644,0.000644,0.000244,0.105888,-0.001070,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000024,0.000227,0.000715,0.000715,0.000239,0.104762,-0.001126,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000023,0.000228,0.000658,0.000658,0.000234,0.103708,-0.001054,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000022,0.000229,0.000567,0.000567,0.000229,0.102757,-0.000950,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000022,0.000229,0.000493,0.000493,0.000223,0.101893,-0.000865,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000409,0.000409,0.000218,0.101123,-0.000770,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000311,0.000311,0.000213,0.100460,-0.000663,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000020,0.000231,0.000152,0.000152,0.000208,0.099963,-0.000497,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000207,0.000025,0.000020,0.000232,0.000009,0.000009,0.000203,0.099615,-0.000348,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000233,0.000000,0.000000,0.000199,0.099280,-0.000335,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000210,0.000024,0.000019,0.000233,0.000000,0.000000,0.000195,0.098950,-0.000330,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000191,0.098624,-0.000326,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000187,0.098303,-0.000321,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000236,0.000000,0.000000,0.000184,0.097986,-0.000317,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000237,0.000000,0.000000,0.000180,0.097672,-0.000314,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000177,0.097362,-0.000310,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000174,0.097057,-0.000305,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000171,0.096755,-0.000301,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000017,0.000240,0.000000,0.000000,0.000168,0.096458,-0.000297,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000000,0.000000,0.000165,0.096165,-0.000293,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000242,0.000000,0.000000,0.000162,0.095875,-0.000289,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000017,0.000242,0.000097,0.000097,0.000160,0.095494,-0.000381,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000016,0.000243,0.000335,0.000335,0.000157,0.094884,-0.000611,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000016,0.000244,0.000502,0.000000,0.000154,0.094611,-0.000272,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000016,0.000245,0.000624,0.000000,0.000152,0.094343,-0.000269,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000016,0.000246,0.000711,0.000000,0.000149,0.094078,-0.000265,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000015,0.000247,0.000657,0.000000,0.000147,0.093816,-0.000261,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000015,0.000247,0.000563,0.000000,0.000144,0.093558,-0.000258,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000015,0.000248,0.000500,0.000000,0.000142,0.093304,-0.000255,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000249,0.000410,0.000000,0.000140,0.093053,-0.000251,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000015,0.000250,0.000315,0.000000,0.000138,0.092805,-0.000248,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000014,0.000251,0.000180,0.000000,0.000136,0.092560,-0.000244,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000014,0.000252,0.000034,0.000000,0.000134,0.092319,-0.000241,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000621,0.000032,0.000058,0.000032,0.000237,0.000016,0.000014,0.000285,0.000000,0.000000,0.000132,0.092637,0.000318,1.000000,0.000026 +195,2022-08-09 03:00:00,0.000253,0.000020,0.000010,0.000020,0.000238,0.000016,0.000014,0.000274,0.000000,0.000000,0.000131,0.092635,-0.000002,1.000000,0.000016 +196,2022-08-09 04:00:00,0.000000,0.000014,0.000000,0.000014,0.000239,0.000016,0.000014,0.000269,0.000000,0.000000,0.000129,0.092393,-0.000242,1.000000,0.000002 +197,2022-08-09 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000240,0.000015,0.000014,0.000257,0.000000,0.000000,0.000128,0.092154,-0.000239,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000014,0.000256,0.000000,0.000000,0.000126,0.091918,-0.000236,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000014,0.000257,0.000000,0.000000,0.000125,0.091685,-0.000233,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000015,0.000013,0.000258,0.000000,0.000000,0.000123,0.091456,-0.000229,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000013,0.000259,0.000000,0.000000,0.000122,0.091230,-0.000226,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000068,0.000000,0.000001,0.000000,0.000245,0.000015,0.000013,0.000260,0.000000,0.000000,0.000121,0.091073,-0.000157,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000013,0.000261,0.000000,0.000000,0.000119,0.090852,-0.000221,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000013,0.000262,0.000000,0.000000,0.000118,0.090633,-0.000218,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000014,0.000013,0.000262,0.000000,0.000000,0.000116,0.090418,-0.000215,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000012,0.000263,0.000107,0.000000,0.000115,0.090206,-0.000212,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620831.csv b/test/channel_loss/channel_forcing/et/cat-2620831.csv new file mode 100644 index 000000000..4d4eab660 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620831.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001464,0.000319,0.001467,0.000179,0.000179,0.010451,0.431428,-0.004570,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000063,0.000001,0.000000,0.000001,0.000000,0.001306,0.000315,0.001307,0.000052,0.000052,0.009460,0.426802,-0.004626,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001172,0.000310,0.001174,0.000000,0.000000,0.008598,0.422290,-0.004512,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000048,0.000001,0.000001,0.000001,0.000000,0.001058,0.000306,0.001059,0.000000,0.000000,0.007846,0.417825,-0.004465,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000048,0.000001,0.000001,0.000001,0.000000,0.000960,0.000302,0.000961,0.000000,0.000000,0.007188,0.413422,-0.004403,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000048,0.000001,0.000001,0.000001,0.000000,0.000876,0.000298,0.000877,0.000000,0.000000,0.006610,0.409080,-0.004342,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000048,0.000001,0.000001,0.000001,0.000001,0.000802,0.000294,0.000804,0.000000,0.000000,0.006102,0.404798,-0.004282,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000739,0.000290,0.000740,0.000000,0.000000,0.005653,0.400529,-0.004269,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000683,0.000286,0.000684,0.000000,0.000000,0.005256,0.396319,-0.004210,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000634,0.000282,0.000635,0.000000,0.000000,0.004903,0.392167,-0.004152,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000591,0.000278,0.000593,0.000000,0.000000,0.004590,0.388072,-0.004095,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000553,0.000274,0.000555,0.000000,0.000000,0.004312,0.384034,-0.004038,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000519,0.000270,0.000522,0.000000,0.000000,0.004063,0.380052,-0.003982,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000489,0.000267,0.000492,0.000000,0.000000,0.003840,0.376125,-0.003927,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000462,0.000263,0.000466,0.000127,0.000127,0.003641,0.372127,-0.003998,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000438,0.000259,0.000442,0.000363,0.000363,0.003461,0.367952,-0.004175,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000417,0.000255,0.000421,0.000527,0.000527,0.003299,0.363672,-0.004280,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000398,0.000251,0.000402,0.000650,0.000650,0.003152,0.359330,-0.004342,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000380,0.000247,0.000385,0.000615,0.000615,0.003018,0.355083,-0.004247,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000128,0.000000,0.000000,0.000000,0.000006,0.000364,0.000243,0.000370,0.000557,0.000557,0.002897,0.351078,-0.004005,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000350,0.000239,0.000356,0.000487,0.000487,0.002786,0.347259,-0.003820,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000337,0.000236,0.000344,0.000379,0.000379,0.002685,0.343660,-0.003598,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000325,0.000232,0.000333,0.000313,0.000313,0.002593,0.340115,-0.003546,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000314,0.000229,0.000322,0.000246,0.000246,0.002508,0.336684,-0.003431,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000304,0.000226,0.000313,0.000151,0.000151,0.002431,0.333394,-0.003290,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000027,0.000048,0.000027,0.000010,0.000294,0.000223,0.000331,0.000058,0.000058,0.002359,0.330568,-0.002826,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000797,0.000073,0.000111,0.000073,0.000011,0.000286,0.000221,0.000370,0.000000,0.000000,0.002294,0.328001,-0.002567,1.000000,0.000060 +27,2022-08-02 03:00:00,0.000857,0.000107,0.000127,0.000107,0.000012,0.000278,0.000218,0.000397,0.000000,0.000000,0.002234,0.325514,-0.002487,1.000000,0.000079 +28,2022-08-02 04:00:00,0.000900,0.000130,0.000138,0.000130,0.000013,0.000271,0.000216,0.000414,0.000000,0.000000,0.002179,0.323092,-0.002422,1.000000,0.000087 +29,2022-08-02 05:00:00,0.000794,0.000120,0.000109,0.000120,0.000013,0.000265,0.000214,0.000398,0.000000,0.000000,0.002128,0.320628,-0.002464,1.000000,0.000077 +30,2022-08-02 06:00:00,0.000674,0.000099,0.000080,0.000099,0.000014,0.000259,0.000211,0.000372,0.000000,0.000000,0.002081,0.318109,-0.002519,1.000000,0.000058 +31,2022-08-02 07:00:00,0.000000,0.000042,0.000000,0.000042,0.000015,0.000253,0.000208,0.000310,0.000000,0.000000,0.002036,0.315038,-0.003071,1.000000,0.000016 +32,2022-08-02 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000016,0.000248,0.000206,0.000280,0.000000,0.000000,0.001994,0.312010,-0.003028,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000243,0.000203,0.000259,0.000000,0.000000,0.001954,0.309023,-0.002986,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000238,0.000200,0.000256,0.000000,0.000000,0.001917,0.306078,-0.002945,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000233,0.000197,0.000252,0.000000,0.000000,0.001881,0.303174,-0.002904,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000229,0.000194,0.000249,0.000000,0.000000,0.001846,0.300309,-0.002864,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000225,0.000192,0.000245,0.000000,0.000000,0.001813,0.297485,-0.002825,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000221,0.000189,0.000242,0.000105,0.000105,0.001782,0.294595,-0.002889,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000217,0.000186,0.000240,0.000340,0.000340,0.001751,0.291514,-0.003081,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000213,0.000183,0.000237,0.000491,0.000491,0.001721,0.288327,-0.003187,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000209,0.000180,0.000234,0.000611,0.000611,0.001692,0.285066,-0.003261,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000026,0.000206,0.000177,0.000232,0.000705,0.000705,0.001663,0.282053,-0.003013,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000202,0.000174,0.000229,0.000647,0.000647,0.001635,0.278842,-0.003210,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000199,0.000171,0.000227,0.000558,0.000558,0.001608,0.275764,-0.003078,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000195,0.000168,0.000225,0.000502,0.000502,0.001581,0.272784,-0.002980,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000192,0.000166,0.000222,0.000415,0.000415,0.001555,0.269930,-0.002854,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000189,0.000163,0.000220,0.000318,0.000318,0.001529,0.267213,-0.002718,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000185,0.000160,0.000218,0.000178,0.000178,0.001504,0.264670,-0.002543,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000182,0.000158,0.000217,0.000030,0.000030,0.001480,0.262308,-0.002361,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000179,0.000156,0.000215,0.000000,0.000000,0.001456,0.260009,-0.002299,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000177,0.000154,0.000213,0.000000,0.000000,0.001434,0.257742,-0.002268,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000174,0.000152,0.000212,0.000000,0.000000,0.001412,0.255505,-0.002236,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000171,0.000150,0.000210,0.000000,0.000000,0.001390,0.253300,-0.002205,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000169,0.000148,0.000209,0.000000,0.000000,0.001369,0.251125,-0.002175,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000166,0.000146,0.000207,0.000000,0.000000,0.001349,0.248981,-0.002145,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000163,0.000144,0.000206,0.000000,0.000000,0.001329,0.246865,-0.002115,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000161,0.000142,0.000205,0.000000,0.000000,0.001309,0.244780,-0.002086,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000159,0.000140,0.000204,0.000000,0.000000,0.001290,0.242723,-0.002057,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000156,0.000138,0.000203,0.000000,0.000000,0.001272,0.240694,-0.002029,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000154,0.000136,0.000202,0.000000,0.000000,0.001253,0.238693,-0.002001,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000152,0.000134,0.000201,0.000000,0.000000,0.001236,0.236721,-0.001973,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000150,0.000132,0.000200,0.000124,0.000124,0.001218,0.234653,-0.002068,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000147,0.000130,0.000199,0.000371,0.000371,0.001200,0.232370,-0.002283,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000145,0.000127,0.000198,0.000534,0.000534,0.001183,0.229958,-0.002412,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000143,0.000125,0.000198,0.000662,0.000662,0.001165,0.227453,-0.002505,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000141,0.000123,0.000197,0.000665,0.000665,0.001147,0.224979,-0.002473,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000138,0.000120,0.000196,0.000596,0.000596,0.001129,0.222608,-0.002371,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000501,0.000000,0.000000,0.000000,0.000059,0.000136,0.000119,0.000195,0.000521,0.000521,0.001111,0.220837,-0.001771,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000151,0.000000,0.000000,0.000000,0.000060,0.000134,0.000117,0.000194,0.000471,0.000471,0.001094,0.218796,-0.002041,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000015,0.000000,0.000000,0.000000,0.000061,0.000132,0.000115,0.000193,0.000385,0.000385,0.001077,0.216734,-0.002062,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000130,0.000113,0.000193,0.000283,0.000283,0.001060,0.214785,-0.001948,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000128,0.000111,0.000192,0.000164,0.000164,0.001043,0.212982,-0.001804,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000126,0.000110,0.000191,0.000040,0.000040,0.001027,0.211324,-0.001657,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000124,0.000108,0.000191,0.000000,0.000000,0.001012,0.209730,-0.001595,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000122,0.000107,0.000190,0.000000,0.000000,0.000996,0.208157,-0.001572,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000120,0.000105,0.000190,0.000000,0.000000,0.000981,0.206607,-0.001551,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000001,0.000000,0.000071,0.000118,0.000104,0.000190,0.000000,0.000000,0.000967,0.205139,-0.001468,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000117,0.000102,0.000189,0.000000,0.000000,0.000953,0.203630,-0.001509,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000115,0.000101,0.000189,0.000000,0.000000,0.000939,0.202142,-0.001488,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000113,0.000100,0.000189,0.000000,0.000000,0.000925,0.200674,-0.001468,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000112,0.000098,0.000188,0.000000,0.000000,0.000912,0.199227,-0.001447,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000110,0.000097,0.000188,0.000000,0.000000,0.000899,0.197800,-0.001427,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000108,0.000096,0.000188,0.000000,0.000000,0.000886,0.196392,-0.001408,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000107,0.000094,0.000188,0.000000,0.000000,0.000873,0.195004,-0.001388,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000105,0.000093,0.000188,0.000000,0.000000,0.000861,0.193635,-0.001369,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000104,0.000092,0.000188,0.000121,0.000121,0.000849,0.192166,-0.001469,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000102,0.000090,0.000188,0.000370,0.000370,0.000837,0.190471,-0.001695,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000101,0.000088,0.000188,0.000536,0.000536,0.000824,0.188636,-0.001835,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000099,0.000086,0.000187,0.000663,0.000663,0.000811,0.186702,-0.001935,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000097,0.000084,0.000187,0.000725,0.000725,0.000798,0.184733,-0.001969,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000069,0.000000,0.000000,0.000000,0.000091,0.000096,0.000083,0.000187,0.000675,0.000675,0.000785,0.182908,-0.001825,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000015,0.000000,0.000000,0.000000,0.000093,0.000094,0.000081,0.000187,0.000584,0.000584,0.000772,0.181146,-0.001763,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000093,0.000079,0.000187,0.000486,0.000486,0.000759,0.179489,-0.001657,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000091,0.000078,0.000187,0.000399,0.000399,0.000746,0.177941,-0.001548,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000089,0.000077,0.000186,0.000312,0.000312,0.000733,0.176500,-0.001440,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000088,0.000075,0.000186,0.000185,0.000185,0.000720,0.175204,-0.001296,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000100,0.000086,0.000074,0.000186,0.000053,0.000053,0.000708,0.174115,-0.001089,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000026,0.000000,0.000000,0.000000,0.000101,0.000085,0.000073,0.000186,0.000000,0.000000,0.000697,0.173061,-0.001054,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000023,0.000000,0.000000,0.000000,0.000103,0.000084,0.000072,0.000186,0.000000,0.000000,0.000685,0.172018,-0.001043,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000023,0.000000,0.000000,0.000000,0.000104,0.000082,0.000071,0.000187,0.000000,0.000000,0.000675,0.170989,-0.001029,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000023,0.000000,0.000000,0.000000,0.000106,0.000081,0.000070,0.000187,0.000000,0.000000,0.000664,0.169975,-0.001014,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000023,0.000000,0.000000,0.000000,0.000107,0.000080,0.000069,0.000187,0.000000,0.000000,0.000654,0.168974,-0.001000,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000078,0.000068,0.000187,0.000000,0.000000,0.000644,0.167965,-0.001009,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000077,0.000068,0.000187,0.000000,0.000000,0.000634,0.166970,-0.000995,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000076,0.000067,0.000188,0.000000,0.000000,0.000625,0.165989,-0.000981,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000075,0.000066,0.000188,0.000000,0.000000,0.000615,0.165021,-0.000968,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000074,0.000065,0.000188,0.000000,0.000000,0.000606,0.164067,-0.000954,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000073,0.000064,0.000189,0.000000,0.000000,0.000597,0.163126,-0.000941,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000072,0.000063,0.000189,0.000000,0.000000,0.000589,0.162198,-0.000928,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000071,0.000062,0.000189,0.000133,0.000133,0.000580,0.161151,-0.001046,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000070,0.000061,0.000190,0.000373,0.000373,0.000571,0.159883,-0.001269,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000068,0.000059,0.000190,0.000537,0.000537,0.000562,0.158470,-0.001413,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000067,0.000058,0.000190,0.000669,0.000669,0.000553,0.156946,-0.001524,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000066,0.000057,0.000191,0.000652,0.000652,0.000543,0.155460,-0.001486,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000065,0.000055,0.000191,0.000592,0.000592,0.000534,0.154117,-0.001343,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000122,0.000000,0.000000,0.000000,0.000127,0.000064,0.000054,0.000191,0.000503,0.000503,0.000524,0.152937,-0.001180,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000063,0.000053,0.000191,0.000433,0.000433,0.000515,0.151785,-0.001152,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000130,0.000061,0.000052,0.000192,0.000358,0.000358,0.000505,0.150785,-0.001000,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000132,0.000060,0.000051,0.000192,0.000280,0.000280,0.000496,0.149939,-0.000847,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000059,0.000051,0.000192,0.000176,0.000176,0.000488,0.149081,-0.000857,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000513,0.000016,0.000029,0.000016,0.000134,0.000058,0.000050,0.000209,0.000060,0.000060,0.000479,0.148765,-0.000316,1.000000,0.000013 +122,2022-08-06 02:00:00,0.000794,0.000054,0.000086,0.000054,0.000136,0.000057,0.000050,0.000248,0.000000,0.000000,0.000472,0.148734,-0.000031,1.000000,0.000044 +123,2022-08-06 03:00:00,0.000665,0.000061,0.000061,0.000061,0.000137,0.000057,0.000050,0.000255,0.000000,0.000000,0.000466,0.148600,-0.000134,1.000000,0.000045 +124,2022-08-06 04:00:00,0.000577,0.000058,0.000047,0.000058,0.000139,0.000056,0.000050,0.000252,0.000000,0.000000,0.000460,0.148396,-0.000204,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000599,0.000051,0.000050,0.000051,0.000140,0.000055,0.000050,0.000246,0.000000,0.000000,0.000454,0.148213,-0.000183,1.000000,0.000032 +126,2022-08-06 06:00:00,0.000676,0.000057,0.000063,0.000057,0.000141,0.000055,0.000050,0.000252,0.000000,0.000000,0.000449,0.148096,-0.000117,1.000000,0.000038 +127,2022-08-06 07:00:00,0.000000,0.000026,0.000000,0.000026,0.000143,0.000054,0.000049,0.000222,0.000000,0.000000,0.000444,0.147375,-0.000720,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000144,0.000053,0.000048,0.000210,0.000000,0.000000,0.000439,0.146665,-0.000710,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000053,0.000048,0.000198,0.000000,0.000000,0.000434,0.145964,-0.000701,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000052,0.000047,0.000199,0.000000,0.000000,0.000429,0.145273,-0.000691,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000051,0.000046,0.000200,0.000000,0.000000,0.000423,0.144592,-0.000681,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000051,0.000046,0.000200,0.000000,0.000000,0.000418,0.143920,-0.000672,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000050,0.000045,0.000201,0.000000,0.000000,0.000413,0.143257,-0.000663,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000050,0.000044,0.000202,0.000117,0.000117,0.000408,0.142488,-0.000769,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000049,0.000043,0.000203,0.000355,0.000355,0.000402,0.141495,-0.000993,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000048,0.000042,0.000203,0.000515,0.000515,0.000396,0.140358,-0.001137,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000047,0.000041,0.000204,0.000644,0.000644,0.000390,0.139110,-0.001248,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000047,0.000040,0.000204,0.000717,0.000717,0.000383,0.137807,-0.001303,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000046,0.000039,0.000205,0.000664,0.000664,0.000376,0.136574,-0.001233,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000045,0.000038,0.000205,0.000576,0.000576,0.000369,0.135445,-0.001129,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000044,0.000037,0.000206,0.000487,0.000487,0.000362,0.134419,-0.001026,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000043,0.000036,0.000206,0.000399,0.000399,0.000354,0.133494,-0.000925,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000042,0.000035,0.000206,0.000307,0.000307,0.000347,0.132672,-0.000821,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000041,0.000034,0.000207,0.000167,0.000167,0.000340,0.132001,-0.000672,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000040,0.000034,0.000207,0.000040,0.000040,0.000333,0.131463,-0.000538,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000040,0.000033,0.000208,0.000000,0.000000,0.000327,0.130973,-0.000490,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000033,0.000209,0.000000,0.000000,0.000321,0.130489,-0.000484,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000032,0.000209,0.000000,0.000000,0.000315,0.130012,-0.000477,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000038,0.000032,0.000210,0.000000,0.000000,0.000309,0.129542,-0.000470,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000037,0.000031,0.000210,0.000000,0.000000,0.000304,0.129078,-0.000464,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000036,0.000031,0.000211,0.000000,0.000000,0.000299,0.128620,-0.000457,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000036,0.000031,0.000212,0.000000,0.000000,0.000294,0.128169,-0.000451,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000035,0.000030,0.000212,0.000000,0.000000,0.000289,0.127724,-0.000445,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000034,0.000030,0.000213,0.000000,0.000000,0.000284,0.127285,-0.000439,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000029,0.000214,0.000000,0.000000,0.000280,0.126853,-0.000433,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000033,0.000029,0.000214,0.000000,0.000000,0.000275,0.126426,-0.000427,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000033,0.000029,0.000215,0.000000,0.000000,0.000271,0.126005,-0.000421,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000032,0.000028,0.000216,0.000112,0.000112,0.000267,0.125480,-0.000525,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000027,0.000217,0.000349,0.000349,0.000262,0.124728,-0.000752,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000031,0.000026,0.000217,0.000515,0.000515,0.000258,0.123822,-0.000906,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000026,0.000218,0.000646,0.000646,0.000252,0.122801,-0.001022,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000030,0.000024,0.000218,0.000715,0.000715,0.000247,0.121725,-0.001076,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000024,0.000219,0.000658,0.000658,0.000241,0.120720,-0.001004,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000023,0.000219,0.000567,0.000567,0.000235,0.119819,-0.000901,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000028,0.000022,0.000220,0.000495,0.000495,0.000229,0.119002,-0.000817,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000021,0.000220,0.000407,0.000407,0.000224,0.118282,-0.000720,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000021,0.000221,0.000312,0.000312,0.000218,0.117667,-0.000615,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000026,0.000020,0.000221,0.000152,0.000152,0.000212,0.117217,-0.000449,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000197,0.000025,0.000020,0.000222,0.000009,0.000009,0.000207,0.116916,-0.000301,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000198,0.000025,0.000020,0.000222,0.000000,0.000000,0.000202,0.116628,-0.000288,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000199,0.000024,0.000019,0.000223,0.000000,0.000000,0.000198,0.116343,-0.000284,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000200,0.000023,0.000019,0.000224,0.000000,0.000000,0.000193,0.116063,-0.000280,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000201,0.000023,0.000019,0.000224,0.000000,0.000000,0.000189,0.115786,-0.000277,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000203,0.000022,0.000019,0.000225,0.000000,0.000000,0.000185,0.115513,-0.000273,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000022,0.000018,0.000226,0.000000,0.000000,0.000182,0.115243,-0.000270,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000022,0.000018,0.000226,0.000000,0.000000,0.000178,0.114977,-0.000266,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000021,0.000018,0.000227,0.000000,0.000000,0.000175,0.114715,-0.000263,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000021,0.000018,0.000228,0.000000,0.000000,0.000172,0.114456,-0.000259,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000020,0.000017,0.000229,0.000000,0.000000,0.000169,0.114200,-0.000255,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000020,0.000017,0.000229,0.000000,0.000000,0.000166,0.113949,-0.000252,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000020,0.000017,0.000230,0.000000,0.000000,0.000163,0.113700,-0.000248,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000017,0.000231,0.000097,0.000097,0.000160,0.113360,-0.000341,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000016,0.000232,0.000336,0.000336,0.000157,0.112789,-0.000571,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000015,0.000232,0.000502,0.000502,0.000154,0.112062,-0.000727,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000014,0.000233,0.000623,0.000623,0.000150,0.111226,-0.000836,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000018,0.000014,0.000233,0.000709,0.000709,0.000146,0.110316,-0.000910,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000013,0.000234,0.000660,0.000000,0.000142,0.110117,-0.000198,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000013,0.000235,0.000565,0.000000,0.000139,0.109922,-0.000195,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000016,0.000013,0.000235,0.000499,0.000000,0.000135,0.109729,-0.000193,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000016,0.000013,0.000236,0.000409,0.000000,0.000132,0.109540,-0.000190,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000013,0.000237,0.000314,0.000000,0.000129,0.109352,-0.000187,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000179,0.000000,0.000127,0.109167,-0.000185,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000012,0.000238,0.000034,0.000000,0.000124,0.108985,-0.000182,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000642,0.000030,0.000054,0.000030,0.000224,0.000015,0.000013,0.000269,0.000000,0.000000,0.000122,0.109385,0.000400,1.000000,0.000025 +195,2022-08-09 03:00:00,0.000267,0.000019,0.000010,0.000019,0.000225,0.000015,0.000013,0.000259,0.000000,0.000000,0.000120,0.109453,0.000068,1.000000,0.000015 +196,2022-08-09 04:00:00,0.000000,0.000013,0.000000,0.000013,0.000226,0.000014,0.000013,0.000254,0.000000,0.000000,0.000118,0.109267,-0.000186,1.000000,0.000002 +197,2022-08-09 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000227,0.000014,0.000012,0.000243,0.000000,0.000000,0.000117,0.109084,-0.000184,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000242,0.000000,0.000000,0.000115,0.108903,-0.000181,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000000,0.000000,0.000114,0.108724,-0.000179,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000012,0.000244,0.000000,0.000000,0.000112,0.108548,-0.000176,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000012,0.000244,0.000000,0.000000,0.000110,0.108374,-0.000174,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000077,0.000000,0.000001,0.000000,0.000232,0.000013,0.000012,0.000246,0.000000,0.000000,0.000109,0.108279,-0.000096,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000012,0.000246,0.000000,0.000000,0.000107,0.108109,-0.000170,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000247,0.000000,0.000000,0.000106,0.107941,-0.000168,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000105,0.107776,-0.000165,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000011,0.000248,0.000107,0.000000,0.000103,0.107613,-0.000163,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620832.csv b/test/channel_loss/channel_forcing/et/cat-2620832.csv new file mode 100644 index 000000000..16fe668eb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620832.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001461,0.000296,0.001464,0.000176,0.000176,0.010431,0.428543,-0.004711,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001300,0.000292,0.001302,0.000054,0.000054,0.009423,0.423710,-0.004833,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001164,0.000288,0.001166,0.000000,0.000000,0.008547,0.418995,-0.004715,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001049,0.000284,0.001049,0.000000,0.000000,0.007782,0.414343,-0.004652,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000949,0.000280,0.000949,0.000000,0.000000,0.007114,0.409753,-0.004590,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000864,0.000277,0.000864,0.000000,0.000000,0.006527,0.405225,-0.004528,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000789,0.000273,0.000790,0.000000,0.000000,0.006010,0.400758,-0.004467,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000725,0.000269,0.000726,0.000000,0.000000,0.005555,0.396350,-0.004407,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000668,0.000266,0.000670,0.000000,0.000000,0.005152,0.392002,-0.004348,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000619,0.000262,0.000620,0.000000,0.000000,0.004795,0.387712,-0.004290,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000576,0.000259,0.000577,0.000000,0.000000,0.004478,0.383479,-0.004233,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000537,0.000255,0.000539,0.000000,0.000000,0.004196,0.379303,-0.004176,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000252,0.000506,0.000000,0.000000,0.003945,0.375184,-0.004120,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000473,0.000248,0.000476,0.000000,0.000000,0.003720,0.371119,-0.004065,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000446,0.000245,0.000450,0.000132,0.000132,0.003519,0.366979,-0.004140,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000422,0.000241,0.000426,0.000363,0.000363,0.003338,0.362666,-0.004313,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000401,0.000238,0.000405,0.000511,0.000511,0.003175,0.358265,-0.004401,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000381,0.000234,0.000386,0.000605,0.000605,0.003028,0.353831,-0.004434,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000364,0.000230,0.000369,0.000551,0.000551,0.002894,0.349509,-0.004322,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000239,0.000000,0.000000,0.000000,0.000006,0.000348,0.000227,0.000354,0.000509,0.000509,0.002773,0.345522,-0.003987,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000224,0.000000,0.000000,0.000000,0.000007,0.000334,0.000224,0.000341,0.000461,0.000461,0.002663,0.341621,-0.003900,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000208,0.000000,0.000000,0.000000,0.000008,0.000321,0.000221,0.000328,0.000375,0.000375,0.002563,0.337842,-0.003780,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000223,0.000000,0.000000,0.000000,0.000008,0.000309,0.000218,0.000317,0.000323,0.000323,0.002472,0.334180,-0.003662,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000295,0.000000,0.000001,0.000000,0.000009,0.000298,0.000215,0.000308,0.000245,0.000245,0.002389,0.330714,-0.003466,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000321,0.000004,0.000006,0.000004,0.000010,0.000288,0.000212,0.000302,0.000153,0.000153,0.002313,0.327405,-0.003309,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000749,0.000052,0.000092,0.000052,0.000011,0.000279,0.000210,0.000342,0.000067,0.000067,0.002243,0.324563,-0.002842,1.000000,0.000043 +26,2022-08-02 02:00:00,0.000866,0.000103,0.000143,0.000103,0.000011,0.000271,0.000207,0.000385,0.000000,0.000000,0.002179,0.321890,-0.002673,1.000000,0.000083 +27,2022-08-02 03:00:00,0.000859,0.000131,0.000140,0.000131,0.000012,0.000264,0.000205,0.000407,0.000000,0.000000,0.002121,0.319249,-0.002641,1.000000,0.000091 +28,2022-08-02 04:00:00,0.000879,0.000143,0.000145,0.000143,0.000013,0.000257,0.000203,0.000413,0.000000,0.000000,0.002067,0.316658,-0.002591,1.000000,0.000093 +29,2022-08-02 05:00:00,0.000853,0.000140,0.000137,0.000140,0.000014,0.000251,0.000201,0.000404,0.000000,0.000000,0.002017,0.314084,-0.002574,1.000000,0.000091 +30,2022-08-02 06:00:00,0.000855,0.000139,0.000137,0.000139,0.000015,0.000245,0.000199,0.000398,0.000000,0.000000,0.001972,0.311546,-0.002538,1.000000,0.000089 +31,2022-08-02 07:00:00,0.000000,0.000062,0.000000,0.000062,0.000016,0.000239,0.000196,0.000317,0.000000,0.000000,0.001929,0.308335,-0.003212,1.000000,0.000027 +32,2022-08-02 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000017,0.000234,0.000194,0.000278,0.000000,0.000000,0.001888,0.305166,-0.003169,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000229,0.000191,0.000247,0.000000,0.000000,0.001850,0.302040,-0.003126,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000225,0.000188,0.000243,0.000000,0.000000,0.001814,0.298956,-0.003084,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000220,0.000186,0.000240,0.000000,0.000000,0.001779,0.295913,-0.003043,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000216,0.000183,0.000237,0.000000,0.000000,0.001747,0.292911,-0.003002,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000212,0.000181,0.000234,0.000000,0.000000,0.001716,0.289949,-0.002962,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000208,0.000179,0.000231,0.000113,0.000113,0.001686,0.287015,-0.002934,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000205,0.000176,0.000229,0.000328,0.000328,0.001657,0.283808,-0.003206,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000201,0.000173,0.000226,0.000449,0.000449,0.001629,0.280526,-0.003283,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000198,0.000170,0.000224,0.000542,0.000542,0.001601,0.277195,-0.003330,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000109,0.000000,0.000000,0.000000,0.000027,0.000194,0.000168,0.000222,0.000624,0.000624,0.001575,0.273936,-0.003259,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000191,0.000165,0.000220,0.000578,0.000578,0.001549,0.270658,-0.003278,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000188,0.000162,0.000217,0.000519,0.000519,0.001523,0.267483,-0.003176,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000185,0.000160,0.000216,0.000503,0.000503,0.001498,0.264366,-0.003117,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000182,0.000157,0.000214,0.000423,0.000423,0.001474,0.261369,-0.002996,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000179,0.000155,0.000212,0.000321,0.000321,0.001450,0.258514,-0.002856,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000176,0.000153,0.000210,0.000182,0.000182,0.001427,0.255833,-0.002680,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000173,0.000151,0.000209,0.000037,0.000037,0.001404,0.253332,-0.002501,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000170,0.000149,0.000207,0.000000,0.000000,0.001383,0.250901,-0.002431,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000168,0.000147,0.000206,0.000000,0.000000,0.001362,0.248502,-0.002399,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000165,0.000145,0.000205,0.000000,0.000000,0.001341,0.246136,-0.002367,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000163,0.000143,0.000203,0.000000,0.000000,0.001321,0.243801,-0.002335,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000160,0.000141,0.000202,0.000000,0.000000,0.001302,0.241498,-0.002304,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000158,0.000139,0.000201,0.000000,0.000000,0.001283,0.239225,-0.002273,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000155,0.000137,0.000200,0.000000,0.000000,0.001265,0.236983,-0.002242,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000153,0.000135,0.000199,0.000000,0.000000,0.001247,0.234771,-0.002212,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000151,0.000133,0.000198,0.000000,0.000000,0.001229,0.232588,-0.002182,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000149,0.000132,0.000198,0.000000,0.000000,0.001212,0.230435,-0.002153,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000147,0.000130,0.000197,0.000000,0.000000,0.001195,0.228311,-0.002124,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000145,0.000128,0.000196,0.000000,0.000000,0.001178,0.226215,-0.002096,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000143,0.000126,0.000196,0.000126,0.000126,0.001162,0.224023,-0.002192,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000141,0.000124,0.000195,0.000369,0.000369,0.001146,0.221621,-0.002402,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000139,0.000122,0.000194,0.000514,0.000514,0.001129,0.219108,-0.002513,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000136,0.000120,0.000194,0.000621,0.000621,0.001113,0.216522,-0.002585,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000134,0.000118,0.000193,0.000622,0.000622,0.001096,0.213971,-0.002551,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000132,0.000116,0.000192,0.000582,0.000582,0.001080,0.211493,-0.002478,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000150,0.000000,0.000000,0.000000,0.000061,0.000130,0.000114,0.000192,0.000507,0.000507,0.001063,0.209270,-0.002223,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000067,0.000000,0.000000,0.000000,0.000063,0.000128,0.000112,0.000191,0.000482,0.000482,0.001047,0.207020,-0.002250,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000126,0.000110,0.000191,0.000403,0.000403,0.001031,0.204812,-0.002208,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000124,0.000109,0.000190,0.000302,0.000302,0.001015,0.202733,-0.002079,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000122,0.000107,0.000190,0.000176,0.000176,0.001000,0.200806,-0.001927,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000121,0.000105,0.000189,0.000049,0.000049,0.000985,0.199031,-0.001775,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000119,0.000104,0.000189,0.000000,0.000000,0.000970,0.197327,-0.001703,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000117,0.000103,0.000189,0.000000,0.000000,0.000956,0.195647,-0.001681,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000115,0.000101,0.000188,0.000000,0.000000,0.000942,0.193989,-0.001658,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000114,0.000100,0.000188,0.000000,0.000000,0.000928,0.192353,-0.001636,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000112,0.000099,0.000188,0.000000,0.000000,0.000915,0.190739,-0.001614,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000110,0.000097,0.000188,0.000000,0.000000,0.000902,0.189147,-0.001592,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000109,0.000096,0.000188,0.000000,0.000000,0.000889,0.187576,-0.001571,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000107,0.000095,0.000188,0.000000,0.000000,0.000877,0.186026,-0.001550,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000106,0.000093,0.000188,0.000000,0.000000,0.000864,0.184497,-0.001529,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000104,0.000092,0.000188,0.000000,0.000000,0.000852,0.182989,-0.001509,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000103,0.000091,0.000188,0.000000,0.000000,0.000841,0.181500,-0.001488,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000101,0.000090,0.000188,0.000000,0.000000,0.000829,0.180032,-0.001468,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000100,0.000088,0.000188,0.000123,0.000123,0.000818,0.178462,-0.001570,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000098,0.000087,0.000188,0.000364,0.000364,0.000806,0.176676,-0.001786,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000097,0.000085,0.000188,0.000516,0.000516,0.000794,0.174762,-0.001913,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000096,0.000084,0.000188,0.000618,0.000618,0.000783,0.172775,-0.001988,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000094,0.000082,0.000188,0.000697,0.000697,0.000770,0.170735,-0.002039,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000093,0.000080,0.000188,0.000649,0.000649,0.000758,0.168771,-0.001964,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000091,0.000079,0.000188,0.000559,0.000559,0.000746,0.166922,-0.001850,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000090,0.000077,0.000188,0.000502,0.000502,0.000734,0.165154,-0.001768,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000088,0.000076,0.000188,0.000425,0.000425,0.000722,0.163485,-0.001669,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000087,0.000075,0.000189,0.000330,0.000330,0.000710,0.161933,-0.001553,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000085,0.000074,0.000189,0.000192,0.000192,0.000698,0.160537,-0.001396,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000084,0.000073,0.000189,0.000058,0.000058,0.000687,0.159292,-0.001245,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000082,0.000072,0.000189,0.000000,0.000000,0.000676,0.158121,-0.001171,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000081,0.000071,0.000189,0.000000,0.000000,0.000666,0.156967,-0.001155,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000080,0.000070,0.000190,0.000000,0.000000,0.000655,0.155827,-0.001140,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000079,0.000069,0.000190,0.000000,0.000000,0.000645,0.154703,-0.001124,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000077,0.000068,0.000190,0.000000,0.000000,0.000636,0.153594,-0.001109,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000076,0.000067,0.000191,0.000000,0.000000,0.000626,0.152499,-0.001094,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000075,0.000066,0.000191,0.000000,0.000000,0.000617,0.151420,-0.001080,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000074,0.000065,0.000191,0.000000,0.000000,0.000608,0.150355,-0.001065,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000073,0.000064,0.000192,0.000000,0.000000,0.000599,0.149304,-0.001051,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000072,0.000063,0.000192,0.000000,0.000000,0.000591,0.148267,-0.001037,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000071,0.000063,0.000193,0.000000,0.000000,0.000582,0.147244,-0.001023,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000070,0.000062,0.000193,0.000000,0.000000,0.000574,0.146235,-0.001009,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000069,0.000061,0.000194,0.000133,0.000133,0.000566,0.145108,-0.001127,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000068,0.000060,0.000194,0.000369,0.000369,0.000558,0.143763,-0.001345,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000067,0.000058,0.000195,0.000520,0.000520,0.000549,0.142287,-0.001476,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000066,0.000057,0.000195,0.000632,0.000632,0.000540,0.140720,-0.001566,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000065,0.000056,0.000196,0.000606,0.000606,0.000532,0.139201,-0.001519,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000064,0.000055,0.000196,0.000558,0.000558,0.000523,0.137874,-0.001327,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000140,0.000000,0.000000,0.000000,0.000134,0.000063,0.000054,0.000197,0.000484,0.000484,0.000514,0.136651,-0.001223,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000140,0.000000,0.000000,0.000000,0.000136,0.000061,0.000053,0.000197,0.000449,0.000449,0.000505,0.135479,-0.001172,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000137,0.000060,0.000052,0.000197,0.000374,0.000374,0.000497,0.134383,-0.001096,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000139,0.000059,0.000051,0.000198,0.000295,0.000295,0.000488,0.133442,-0.000941,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000058,0.000050,0.000198,0.000182,0.000182,0.000480,0.132562,-0.000879,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000710,0.000035,0.000063,0.000035,0.000142,0.000057,0.000050,0.000234,0.000065,0.000065,0.000473,0.132324,-0.000238,1.000000,0.000028 +122,2022-08-06 02:00:00,0.001004,0.000096,0.000145,0.000096,0.000143,0.000057,0.000050,0.000295,0.000000,0.000000,0.000466,0.132363,0.000039,1.000000,0.000078 +123,2022-08-06 03:00:00,0.000957,0.000122,0.000132,0.000122,0.000145,0.000056,0.000050,0.000322,0.000000,0.000000,0.000460,0.132366,0.000003,1.000000,0.000089 +124,2022-08-06 04:00:00,0.000957,0.000135,0.000133,0.000135,0.000146,0.000055,0.000050,0.000336,0.000000,0.000000,0.000455,0.132370,0.000004,1.000000,0.000086 +125,2022-08-06 05:00:00,0.000950,0.000132,0.000131,0.000132,0.000147,0.000055,0.000050,0.000334,0.000000,0.000000,0.000451,0.132369,-0.000001,1.000000,0.000085 +126,2022-08-06 06:00:00,0.000958,0.000132,0.000133,0.000132,0.000149,0.000054,0.000050,0.000336,0.000000,0.000000,0.000447,0.132373,0.000004,1.000000,0.000086 +127,2022-08-06 07:00:00,0.000000,0.000059,0.000000,0.000059,0.000150,0.000054,0.000049,0.000264,0.000000,0.000000,0.000442,0.131563,-0.000810,1.000000,0.000027 +128,2022-08-06 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000152,0.000053,0.000049,0.000232,0.000000,0.000000,0.000438,0.130764,-0.000799,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000053,0.000048,0.000206,0.000000,0.000000,0.000433,0.129976,-0.000788,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000052,0.000048,0.000207,0.000000,0.000000,0.000429,0.129198,-0.000778,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000047,0.000208,0.000000,0.000000,0.000424,0.128431,-0.000767,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000051,0.000046,0.000209,0.000000,0.000000,0.000419,0.127674,-0.000757,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000050,0.000046,0.000210,0.000000,0.000000,0.000415,0.126927,-0.000747,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000050,0.000045,0.000210,0.000117,0.000117,0.000410,0.126075,-0.000852,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000049,0.000044,0.000211,0.000344,0.000344,0.000405,0.125010,-0.001065,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000048,0.000043,0.000212,0.000482,0.000482,0.000399,0.123824,-0.001186,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000042,0.000213,0.000587,0.000587,0.000393,0.122549,-0.001275,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000041,0.000214,0.000670,0.000670,0.000387,0.121210,-0.001339,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000040,0.000214,0.000625,0.000625,0.000381,0.119934,-0.001277,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000039,0.000215,0.000552,0.000552,0.000374,0.118746,-0.001188,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000045,0.000038,0.000215,0.000504,0.000504,0.000368,0.117621,-0.001124,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000044,0.000037,0.000216,0.000419,0.000419,0.000361,0.116596,-0.001025,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000043,0.000036,0.000217,0.000320,0.000320,0.000354,0.115682,-0.000914,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000036,0.000217,0.000185,0.000185,0.000348,0.114914,-0.000769,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000218,0.000048,0.000048,0.000341,0.114290,-0.000623,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000035,0.000218,0.000000,0.000000,0.000335,0.113723,-0.000567,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000034,0.000219,0.000000,0.000000,0.000330,0.113163,-0.000560,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000034,0.000220,0.000000,0.000000,0.000324,0.112611,-0.000552,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000039,0.000033,0.000221,0.000000,0.000000,0.000319,0.112066,-0.000545,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000033,0.000221,0.000000,0.000000,0.000313,0.111528,-0.000538,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000032,0.000222,0.000000,0.000000,0.000308,0.110998,-0.000530,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000037,0.000032,0.000223,0.000000,0.000000,0.000304,0.110475,-0.000523,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000036,0.000032,0.000224,0.000000,0.000000,0.000299,0.109958,-0.000516,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000036,0.000031,0.000224,0.000000,0.000000,0.000294,0.109449,-0.000509,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000031,0.000225,0.000000,0.000000,0.000290,0.108946,-0.000503,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000030,0.000226,0.000000,0.000000,0.000285,0.108451,-0.000496,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000034,0.000030,0.000227,0.000000,0.000000,0.000281,0.107961,-0.000489,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000029,0.000228,0.000112,0.000112,0.000277,0.107368,-0.000593,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000029,0.000229,0.000347,0.000347,0.000273,0.106551,-0.000817,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000028,0.000229,0.000495,0.000495,0.000268,0.105599,-0.000952,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000027,0.000230,0.000605,0.000605,0.000263,0.104551,-0.001048,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000031,0.000026,0.000231,0.000671,0.000671,0.000258,0.103453,-0.001098,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000025,0.000231,0.000618,0.000618,0.000253,0.102421,-0.001031,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000025,0.000232,0.000543,0.000543,0.000247,0.101478,-0.000944,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000024,0.000233,0.000511,0.000511,0.000242,0.100578,-0.000900,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000023,0.000233,0.000428,0.000428,0.000236,0.099772,-0.000806,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000323,0.000323,0.000231,0.099081,-0.000691,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000027,0.000022,0.000235,0.000159,0.000159,0.000226,0.098560,-0.000521,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000022,0.000235,0.000016,0.000016,0.000221,0.098188,-0.000373,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000021,0.000236,0.000000,0.000000,0.000216,0.097836,-0.000352,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000021,0.000237,0.000000,0.000000,0.000211,0.097489,-0.000347,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000021,0.000237,0.000000,0.000000,0.000207,0.097147,-0.000342,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000203,0.096809,-0.000338,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000020,0.000239,0.000000,0.000000,0.000199,0.096476,-0.000333,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000240,0.000000,0.000000,0.000196,0.096148,-0.000329,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000023,0.000020,0.000240,0.000000,0.000000,0.000192,0.095823,-0.000324,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000020,0.000241,0.000000,0.000000,0.000189,0.095503,-0.000320,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000019,0.000242,0.000000,0.000000,0.000186,0.095188,-0.000316,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000019,0.000243,0.000000,0.000000,0.000183,0.094876,-0.000311,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000244,0.000000,0.000000,0.000180,0.094569,-0.000307,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000019,0.000245,0.000000,0.000000,0.000177,0.094266,-0.000303,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000018,0.000245,0.000096,0.000096,0.000174,0.093872,-0.000394,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000018,0.000246,0.000334,0.000000,0.000171,0.093578,-0.000294,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000018,0.000247,0.000486,0.000000,0.000168,0.093288,-0.000290,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000017,0.000248,0.000581,0.000000,0.000166,0.093003,-0.000286,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000249,0.000660,0.000000,0.000163,0.092720,-0.000282,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000017,0.000250,0.000613,0.000000,0.000161,0.092442,-0.000278,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000251,0.000543,0.000000,0.000158,0.092168,-0.000275,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000017,0.000251,0.000500,0.000000,0.000156,0.091897,-0.000271,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000016,0.000252,0.000422,0.000000,0.000154,0.091629,-0.000267,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000016,0.000253,0.000324,0.000000,0.000152,0.091366,-0.000264,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000254,0.000185,0.000000,0.000149,0.091106,-0.000260,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000255,0.000039,0.000000,0.000147,0.090849,-0.000257,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000078,0.000001,0.000001,0.000001,0.000238,0.000018,0.000016,0.000256,0.000000,0.000000,0.000145,0.090672,-0.000177,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000027,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000257,0.000000,0.000000,0.000143,0.090447,-0.000224,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000258,0.000000,0.000000,0.000141,0.090200,-0.000248,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000258,0.000000,0.000000,0.000139,0.089955,-0.000245,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000000,0.000000,0.000137,0.089714,-0.000241,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000015,0.000260,0.000000,0.000000,0.000136,0.089476,-0.000238,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000261,0.000000,0.000000,0.000134,0.089241,-0.000235,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000132,0.089009,-0.000232,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000262,0.000000,0.000000,0.000130,0.088781,-0.000229,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000263,0.000000,0.000000,0.000128,0.088555,-0.000225,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000014,0.000264,0.000000,0.000000,0.000127,0.088333,-0.000222,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000265,0.000000,0.000000,0.000125,0.088113,-0.000219,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000013,0.000266,0.000108,0.000000,0.000123,0.087897,-0.000217,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620833.csv b/test/channel_loss/channel_forcing/et/cat-2620833.csv new file mode 100644 index 000000000..4ac318bcc --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620833.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001471,0.000369,0.001474,0.000179,0.000179,0.010494,0.429818,-0.004631,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000049,0.000001,0.000000,0.000001,0.000000,0.001319,0.000363,0.001320,0.000054,0.000054,0.009539,0.425116,-0.004702,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000044,0.000001,0.000000,0.000001,0.000000,0.001189,0.000358,0.001190,0.000000,0.000000,0.008708,0.420527,-0.004589,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000044,0.000000,0.000000,0.000000,0.000000,0.001079,0.000353,0.001079,0.000000,0.000000,0.007983,0.416003,-0.004524,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000044,0.000000,0.000000,0.000000,0.000000,0.000984,0.000349,0.000984,0.000000,0.000000,0.007347,0.411542,-0.004461,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000049,0.000000,0.000000,0.000000,0.000000,0.000902,0.000344,0.000903,0.000000,0.000000,0.006789,0.407148,-0.004394,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000044,0.000000,0.000000,0.000000,0.000001,0.000831,0.000339,0.000832,0.000000,0.000000,0.006298,0.402811,-0.004337,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000768,0.000334,0.000769,0.000000,0.000000,0.005863,0.398492,-0.004319,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000714,0.000330,0.000715,0.000000,0.000000,0.005479,0.394233,-0.004259,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000666,0.000325,0.000668,0.000000,0.000000,0.005137,0.390034,-0.004199,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000624,0.000320,0.000626,0.000000,0.000000,0.004833,0.385893,-0.004141,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000587,0.000316,0.000589,0.000000,0.000000,0.004562,0.381810,-0.004083,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000554,0.000311,0.000556,0.000000,0.000000,0.004320,0.377785,-0.004026,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000524,0.000307,0.000527,0.000000,0.000000,0.004102,0.373815,-0.003969,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000498,0.000303,0.000501,0.000130,0.000130,0.003907,0.369773,-0.004042,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000474,0.000298,0.000478,0.000369,0.000369,0.003731,0.365552,-0.004221,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000453,0.000293,0.000457,0.000525,0.000525,0.003571,0.361236,-0.004316,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000434,0.000289,0.000439,0.000626,0.000626,0.003426,0.356881,-0.004355,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000416,0.000284,0.000422,0.000576,0.000576,0.003293,0.352637,-0.004245,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000183,0.000000,0.000000,0.000000,0.000006,0.000400,0.000280,0.000406,0.000534,0.000534,0.003172,0.348673,-0.003964,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000234,0.000000,0.000000,0.000000,0.000007,0.000386,0.000275,0.000392,0.000468,0.000468,0.003062,0.344880,-0.003793,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000373,0.000271,0.000380,0.000376,0.000376,0.002961,0.341250,-0.003630,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000224,0.000000,0.000000,0.000000,0.000008,0.000360,0.000267,0.000368,0.000317,0.000317,0.002868,0.337700,-0.003550,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000349,0.000264,0.000358,0.000245,0.000245,0.002782,0.334299,-0.003401,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000234,0.000001,0.000001,0.000001,0.000009,0.000339,0.000260,0.000349,0.000149,0.000149,0.002704,0.331020,-0.003279,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000546,0.000022,0.000039,0.000022,0.000010,0.000330,0.000257,0.000361,0.000061,0.000061,0.002631,0.328145,-0.002875,1.000000,0.000018 +26,2022-08-02 02:00:00,0.000761,0.000060,0.000090,0.000060,0.000011,0.000321,0.000254,0.000391,0.000000,0.000000,0.002564,0.325531,-0.002614,1.000000,0.000048 +27,2022-08-02 03:00:00,0.000834,0.000089,0.000107,0.000089,0.000012,0.000313,0.000251,0.000414,0.000000,0.000000,0.002503,0.323010,-0.002521,1.000000,0.000066 +28,2022-08-02 04:00:00,0.000877,0.000109,0.000117,0.000109,0.000013,0.000306,0.000249,0.000427,0.000000,0.000000,0.002446,0.320556,-0.002454,1.000000,0.000074 +29,2022-08-02 05:00:00,0.000866,0.000113,0.000114,0.000113,0.000013,0.000299,0.000246,0.000425,0.000000,0.000000,0.002393,0.318129,-0.002427,1.000000,0.000075 +30,2022-08-02 06:00:00,0.000809,0.000107,0.000100,0.000107,0.000014,0.000292,0.000243,0.000413,0.000000,0.000000,0.002344,0.315693,-0.002436,1.000000,0.000068 +31,2022-08-02 07:00:00,0.000000,0.000048,0.000000,0.000048,0.000015,0.000286,0.000240,0.000349,0.000000,0.000000,0.002298,0.312592,-0.003101,1.000000,0.000020 +32,2022-08-02 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000016,0.000281,0.000237,0.000317,0.000000,0.000000,0.002253,0.309535,-0.003057,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000275,0.000233,0.000292,0.000000,0.000000,0.002211,0.306520,-0.003015,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000270,0.000230,0.000288,0.000000,0.000000,0.002171,0.303548,-0.002972,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000265,0.000227,0.000284,0.000000,0.000000,0.002133,0.300617,-0.002931,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000261,0.000224,0.000280,0.000000,0.000000,0.002096,0.297727,-0.002890,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000007,0.000000,0.000000,0.000000,0.000021,0.000256,0.000220,0.000277,0.000000,0.000000,0.002060,0.294885,-0.002842,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000056,0.000000,0.000000,0.000000,0.000022,0.000252,0.000217,0.000274,0.000107,0.000107,0.002026,0.292024,-0.002861,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000023,0.000000,0.000000,0.000000,0.000023,0.000247,0.000214,0.000270,0.000340,0.000340,0.001992,0.288942,-0.003082,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000023,0.000000,0.000000,0.000000,0.000024,0.000243,0.000210,0.000267,0.000478,0.000478,0.001960,0.285767,-0.003175,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000023,0.000000,0.000000,0.000000,0.000025,0.000239,0.000207,0.000264,0.000574,0.000574,0.001928,0.282541,-0.003226,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000246,0.000000,0.000000,0.000000,0.000026,0.000235,0.000204,0.000261,0.000663,0.000663,0.001896,0.279493,-0.003048,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000231,0.000200,0.000258,0.000621,0.000621,0.001865,0.276286,-0.003207,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000227,0.000197,0.000256,0.000538,0.000538,0.001834,0.273206,-0.003080,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000223,0.000193,0.000253,0.000504,0.000504,0.001804,0.270203,-0.003003,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000220,0.000190,0.000250,0.000420,0.000420,0.001775,0.267324,-0.002879,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000216,0.000187,0.000248,0.000318,0.000318,0.001746,0.264587,-0.002738,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000212,0.000184,0.000245,0.000183,0.000183,0.001718,0.262020,-0.002566,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000209,0.000182,0.000243,0.000034,0.000034,0.001691,0.259636,-0.002384,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000206,0.000179,0.000241,0.000000,0.000000,0.001664,0.257320,-0.002317,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000202,0.000177,0.000239,0.000000,0.000000,0.001639,0.255035,-0.002284,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000199,0.000174,0.000237,0.000000,0.000000,0.001614,0.252783,-0.002252,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000196,0.000172,0.000235,0.000000,0.000000,0.001589,0.250562,-0.002221,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000193,0.000169,0.000234,0.000000,0.000000,0.001566,0.248372,-0.002190,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000190,0.000167,0.000232,0.000000,0.000000,0.001542,0.246213,-0.002159,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000187,0.000165,0.000230,0.000000,0.000000,0.001520,0.244084,-0.002129,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000185,0.000162,0.000229,0.000000,0.000000,0.001497,0.241985,-0.002099,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000182,0.000160,0.000227,0.000000,0.000000,0.001476,0.239915,-0.002070,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000179,0.000158,0.000226,0.000000,0.000000,0.001454,0.237875,-0.002041,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000177,0.000156,0.000225,0.000000,0.000000,0.001433,0.235862,-0.002012,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000174,0.000154,0.000223,0.000000,0.000000,0.001413,0.233878,-0.001984,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000171,0.000151,0.000222,0.000126,0.000126,0.001393,0.231798,-0.002081,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000169,0.000149,0.000221,0.000375,0.000375,0.001372,0.229500,-0.002297,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000166,0.000146,0.000220,0.000530,0.000530,0.001352,0.227082,-0.002418,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000164,0.000143,0.000218,0.000636,0.000636,0.001332,0.224594,-0.002489,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000161,0.000141,0.000217,0.000641,0.000641,0.001311,0.222135,-0.002459,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000159,0.000138,0.000216,0.000588,0.000588,0.001290,0.219763,-0.002372,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000400,0.000000,0.000000,0.000000,0.000059,0.000156,0.000136,0.000215,0.000508,0.000508,0.001270,0.217897,-0.001865,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000139,0.000000,0.000000,0.000000,0.000060,0.000154,0.000134,0.000214,0.000476,0.000476,0.001250,0.215833,-0.002065,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000151,0.000131,0.000213,0.000395,0.000395,0.001231,0.213740,-0.002093,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000149,0.000129,0.000212,0.000296,0.000296,0.001211,0.211773,-0.001967,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000146,0.000127,0.000211,0.000169,0.000169,0.001192,0.209959,-0.001814,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000144,0.000125,0.000210,0.000045,0.000045,0.001173,0.208293,-0.001666,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000142,0.000124,0.000209,0.000000,0.000000,0.001155,0.206694,-0.001599,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000140,0.000122,0.000208,0.000000,0.000000,0.001138,0.205118,-0.001576,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000137,0.000120,0.000207,0.000000,0.000000,0.001120,0.203564,-0.001554,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000135,0.000119,0.000207,0.000000,0.000000,0.001104,0.202031,-0.001532,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000133,0.000117,0.000206,0.000000,0.000000,0.001087,0.200521,-0.001511,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000131,0.000115,0.000205,0.000000,0.000000,0.001071,0.199031,-0.001490,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000129,0.000114,0.000205,0.000000,0.000000,0.001056,0.197562,-0.001469,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000127,0.000112,0.000204,0.000000,0.000000,0.001040,0.196113,-0.001448,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000126,0.000111,0.000204,0.000000,0.000000,0.001025,0.194685,-0.001428,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000124,0.000109,0.000203,0.000000,0.000000,0.001010,0.193277,-0.001408,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000122,0.000107,0.000203,0.000000,0.000000,0.000996,0.191888,-0.001389,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000120,0.000106,0.000203,0.000000,0.000000,0.000982,0.190519,-0.001369,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000118,0.000104,0.000202,0.000123,0.000123,0.000967,0.189048,-0.001472,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000117,0.000102,0.000202,0.000373,0.000373,0.000953,0.187350,-0.001698,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000115,0.000100,0.000202,0.000532,0.000532,0.000939,0.185520,-0.001830,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000113,0.000098,0.000201,0.000638,0.000638,0.000924,0.183611,-0.001909,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000111,0.000096,0.000201,0.000704,0.000704,0.000909,0.181663,-0.001948,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000109,0.000094,0.000201,0.000666,0.000666,0.000894,0.179781,-0.001883,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000107,0.000092,0.000200,0.000579,0.000579,0.000879,0.178010,-0.001770,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000106,0.000090,0.000200,0.000488,0.000488,0.000864,0.176354,-0.001656,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000104,0.000089,0.000199,0.000408,0.000408,0.000848,0.174800,-0.001554,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000102,0.000087,0.000199,0.000314,0.000314,0.000834,0.173360,-0.001440,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000100,0.000086,0.000199,0.000190,0.000190,0.000819,0.172063,-0.001298,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000041,0.000000,0.000000,0.000000,0.000100,0.000098,0.000084,0.000198,0.000058,0.000058,0.000805,0.170954,-0.001108,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000029,0.000000,0.000000,0.000000,0.000101,0.000097,0.000083,0.000198,0.000000,0.000000,0.000792,0.169906,-0.001048,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000029,0.000000,0.000000,0.000000,0.000103,0.000095,0.000082,0.000198,0.000000,0.000000,0.000779,0.168873,-0.001033,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000029,0.000000,0.000000,0.000000,0.000104,0.000094,0.000081,0.000198,0.000000,0.000000,0.000767,0.167854,-0.001019,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000029,0.000000,0.000000,0.000000,0.000106,0.000092,0.000080,0.000198,0.000000,0.000000,0.000754,0.166849,-0.001005,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000029,0.000000,0.000000,0.000000,0.000107,0.000091,0.000079,0.000198,0.000000,0.000000,0.000743,0.165858,-0.000991,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000089,0.000078,0.000198,0.000000,0.000000,0.000731,0.164853,-0.001005,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000088,0.000077,0.000198,0.000000,0.000000,0.000720,0.163862,-0.000991,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000086,0.000076,0.000198,0.000000,0.000000,0.000709,0.162885,-0.000977,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000085,0.000075,0.000198,0.000000,0.000000,0.000698,0.161922,-0.000963,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000084,0.000074,0.000198,0.000000,0.000000,0.000688,0.160972,-0.000950,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000083,0.000072,0.000198,0.000000,0.000000,0.000678,0.160035,-0.000937,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000081,0.000071,0.000199,0.000000,0.000000,0.000668,0.159112,-0.000924,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000080,0.000070,0.000199,0.000135,0.000135,0.000658,0.158068,-0.001044,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000079,0.000069,0.000199,0.000377,0.000377,0.000648,0.156800,-0.001268,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000078,0.000067,0.000199,0.000534,0.000534,0.000638,0.155395,-0.001405,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000076,0.000066,0.000199,0.000645,0.000645,0.000627,0.153900,-0.001495,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000075,0.000064,0.000199,0.000618,0.000618,0.000616,0.152453,-0.001447,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000125,0.000000,0.000000,0.000000,0.000126,0.000074,0.000063,0.000199,0.000574,0.000574,0.000605,0.151193,-0.001260,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000144,0.000000,0.000000,0.000000,0.000127,0.000072,0.000062,0.000199,0.000488,0.000488,0.000594,0.150053,-0.001139,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000142,0.000000,0.000000,0.000000,0.000129,0.000071,0.000060,0.000200,0.000434,0.000434,0.000584,0.148982,-0.001072,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000130,0.000070,0.000059,0.000200,0.000364,0.000364,0.000573,0.147979,-0.001003,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000193,0.000000,0.000000,0.000000,0.000131,0.000069,0.000058,0.000200,0.000282,0.000282,0.000563,0.147136,-0.000843,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000067,0.000057,0.000200,0.000179,0.000179,0.000553,0.146341,-0.000795,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000635,0.000022,0.000040,0.000022,0.000134,0.000066,0.000057,0.000223,0.000063,0.000063,0.000544,0.146133,-0.000208,1.000000,0.000018 +122,2022-08-06 02:00:00,0.001094,0.000086,0.000139,0.000086,0.000136,0.000065,0.000057,0.000287,0.000000,0.000000,0.000536,0.146346,0.000213,1.000000,0.000070 +123,2022-08-06 03:00:00,0.000920,0.000098,0.000100,0.000098,0.000137,0.000064,0.000058,0.000299,0.000000,0.000000,0.000529,0.146422,0.000077,1.000000,0.000073 +124,2022-08-06 04:00:00,0.000803,0.000095,0.000077,0.000095,0.000138,0.000064,0.000058,0.000297,0.000000,0.000000,0.000523,0.146405,-0.000018,1.000000,0.000055 +125,2022-08-06 05:00:00,0.000812,0.000083,0.000079,0.000083,0.000140,0.000063,0.000057,0.000285,0.000000,0.000000,0.000518,0.146395,-0.000010,1.000000,0.000051 +126,2022-08-06 06:00:00,0.000911,0.000089,0.000098,0.000089,0.000141,0.000062,0.000058,0.000293,0.000000,0.000000,0.000513,0.146463,0.000068,1.000000,0.000060 +127,2022-08-06 07:00:00,0.000000,0.000040,0.000000,0.000040,0.000142,0.000062,0.000057,0.000245,0.000000,0.000000,0.000508,0.145729,-0.000734,1.000000,0.000020 +128,2022-08-06 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000144,0.000061,0.000056,0.000225,0.000000,0.000000,0.000503,0.145006,-0.000723,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000060,0.000055,0.000206,0.000000,0.000000,0.000497,0.144293,-0.000713,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000060,0.000054,0.000206,0.000000,0.000000,0.000492,0.143589,-0.000703,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000059,0.000054,0.000207,0.000000,0.000000,0.000486,0.142896,-0.000694,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000058,0.000053,0.000208,0.000000,0.000000,0.000481,0.142212,-0.000684,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000058,0.000052,0.000208,0.000000,0.000000,0.000475,0.141538,-0.000674,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000057,0.000051,0.000209,0.000119,0.000119,0.000469,0.140755,-0.000782,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000056,0.000050,0.000210,0.000359,0.000359,0.000463,0.139747,-0.001008,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000056,0.000049,0.000210,0.000513,0.000513,0.000457,0.138602,-0.001146,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000055,0.000048,0.000211,0.000618,0.000618,0.000450,0.137369,-0.001233,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000054,0.000046,0.000211,0.000690,0.000690,0.000442,0.136082,-0.001287,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000053,0.000045,0.000212,0.000650,0.000650,0.000434,0.134852,-0.001229,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000044,0.000212,0.000567,0.000567,0.000426,0.133722,-0.001130,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000042,0.000212,0.000491,0.000491,0.000418,0.132682,-0.001040,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000041,0.000212,0.000407,0.000407,0.000409,0.131740,-0.000942,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000040,0.000213,0.000310,0.000310,0.000401,0.130906,-0.000834,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000040,0.000213,0.000174,0.000174,0.000393,0.130218,-0.000688,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000047,0.000039,0.000213,0.000045,0.000045,0.000385,0.129667,-0.000551,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000039,0.000214,0.000000,0.000000,0.000378,0.129168,-0.000499,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000045,0.000038,0.000214,0.000000,0.000000,0.000371,0.128676,-0.000492,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000044,0.000038,0.000215,0.000000,0.000000,0.000364,0.128192,-0.000485,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000037,0.000215,0.000000,0.000000,0.000358,0.127713,-0.000478,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000043,0.000036,0.000216,0.000000,0.000000,0.000352,0.127242,-0.000471,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000036,0.000216,0.000000,0.000000,0.000346,0.126777,-0.000465,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000217,0.000000,0.000000,0.000340,0.126319,-0.000458,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000035,0.000218,0.000000,0.000000,0.000334,0.125867,-0.000452,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000034,0.000218,0.000000,0.000000,0.000329,0.125421,-0.000446,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000034,0.000219,0.000000,0.000000,0.000324,0.124982,-0.000439,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000034,0.000219,0.000000,0.000000,0.000319,0.124549,-0.000433,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000033,0.000220,0.000000,0.000000,0.000314,0.124121,-0.000427,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000221,0.000114,0.000114,0.000309,0.123588,-0.000534,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000032,0.000221,0.000354,0.000354,0.000303,0.122825,-0.000763,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000031,0.000222,0.000512,0.000512,0.000298,0.121917,-0.000908,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000030,0.000222,0.000621,0.000621,0.000292,0.120915,-0.001003,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000035,0.000028,0.000223,0.000687,0.000687,0.000286,0.119861,-0.001053,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000027,0.000223,0.000641,0.000641,0.000279,0.118868,-0.000994,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000026,0.000224,0.000555,0.000555,0.000272,0.117973,-0.000895,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000025,0.000224,0.000499,0.000499,0.000266,0.117145,-0.000828,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000025,0.000224,0.000417,0.000417,0.000259,0.116411,-0.000735,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000024,0.000225,0.000315,0.000315,0.000252,0.115786,-0.000624,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000023,0.000225,0.000158,0.000158,0.000246,0.115326,-0.000460,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000015,0.000000,0.000000,0.000000,0.000196,0.000029,0.000023,0.000225,0.000013,0.000013,0.000240,0.115030,-0.000296,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000015,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000234,0.114751,-0.000280,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000015,0.000000,0.000000,0.000000,0.000199,0.000028,0.000022,0.000226,0.000000,0.000000,0.000229,0.114475,-0.000276,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000015,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000000,0.000000,0.000224,0.114203,-0.000272,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000015,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000228,0.000000,0.000000,0.000219,0.113935,-0.000268,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000015,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000215,0.113671,-0.000264,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000000,0.000000,0.000211,0.113396,-0.000275,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000000,0.000000,0.000207,0.113125,-0.000271,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000021,0.000230,0.000000,0.000000,0.000203,0.112858,-0.000267,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000000,0.000000,0.000199,0.112594,-0.000264,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000231,0.000000,0.000000,0.000195,0.112334,-0.000260,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000020,0.000232,0.000000,0.000000,0.000192,0.112078,-0.000256,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000020,0.000233,0.000000,0.000000,0.000189,0.111825,-0.000253,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000019,0.000234,0.000099,0.000099,0.000185,0.111478,-0.000347,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000019,0.000234,0.000340,0.000340,0.000182,0.110898,-0.000580,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000018,0.000235,0.000501,0.000501,0.000178,0.110167,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000017,0.000235,0.000604,0.000604,0.000174,0.109346,-0.000822,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000016,0.000236,0.000684,0.000684,0.000169,0.108456,-0.000889,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000015,0.000236,0.000637,0.000637,0.000164,0.107626,-0.000830,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000014,0.000237,0.000553,0.000553,0.000159,0.106891,-0.000735,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000013,0.000237,0.000502,0.000502,0.000154,0.106215,-0.000676,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000013,0.000238,0.000418,0.000418,0.000149,0.105632,-0.000583,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000012,0.000238,0.000319,0.000319,0.000144,0.105155,-0.000477,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000012,0.000238,0.000183,0.000183,0.000139,0.104818,-0.000336,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000012,0.000239,0.000036,0.000036,0.000134,0.104631,-0.000187,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000155,0.000002,0.000003,0.000002,0.000224,0.000016,0.000012,0.000241,0.000000,0.000000,0.000130,0.104632,0.000001,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000061,0.000001,0.000000,0.000001,0.000225,0.000015,0.000012,0.000241,0.000000,0.000000,0.000126,0.104543,-0.000089,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000226,0.000015,0.000011,0.000241,0.000000,0.000000,0.000123,0.104396,-0.000147,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000011,0.000241,0.000000,0.000000,0.000120,0.104251,-0.000145,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000011,0.000242,0.000000,0.000000,0.000117,0.104108,-0.000143,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000011,0.000242,0.000000,0.000000,0.000114,0.103966,-0.000141,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000011,0.000243,0.000000,0.000000,0.000111,0.103827,-0.000139,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000011,0.000244,0.000000,0.000000,0.000109,0.103690,-0.000137,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000010,0.000244,0.000000,0.000000,0.000106,0.103554,-0.000135,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000010,0.000245,0.000000,0.000000,0.000104,0.103421,-0.000134,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000012,0.000010,0.000246,0.000000,0.000000,0.000102,0.103289,-0.000132,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000012,0.000010,0.000246,0.000000,0.000000,0.000100,0.103159,-0.000130,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000012,0.000010,0.000247,0.000109,0.000109,0.000098,0.102923,-0.000236,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620834.csv b/test/channel_loss/channel_forcing/et/cat-2620834.csv new file mode 100644 index 000000000..2292edc62 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620834.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000003,0.000002,0.000000,0.001494,0.000529,0.001495,0.000178,0.000178,0.010631,0.430629,-0.004642,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000056,0.000001,0.000000,0.000001,0.000000,0.001359,0.000521,0.001360,0.000053,0.000053,0.009793,0.425926,-0.004703,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000056,0.000001,0.000000,0.000001,0.000000,0.001244,0.000513,0.001245,0.000000,0.000000,0.009062,0.421345,-0.004581,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000050,0.000000,0.000000,0.000000,0.000000,0.001145,0.000506,0.001146,0.000000,0.000000,0.008423,0.416826,-0.004519,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000050,0.000000,0.000000,0.000000,0.000000,0.001060,0.000498,0.001061,0.000000,0.000000,0.007861,0.412373,-0.004452,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000050,0.000000,0.000000,0.000000,0.000000,0.000986,0.000491,0.000987,0.000000,0.000000,0.007365,0.407987,-0.004386,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000050,0.000000,0.000000,0.000000,0.000001,0.000922,0.000484,0.000923,0.000000,0.000000,0.006927,0.403667,-0.004321,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000865,0.000476,0.000866,0.000000,0.000000,0.006538,0.399362,-0.004305,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000815,0.000469,0.000816,0.000000,0.000000,0.006192,0.395121,-0.004241,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000771,0.000462,0.000773,0.000000,0.000000,0.005883,0.390942,-0.004178,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000732,0.000456,0.000734,0.000000,0.000000,0.005607,0.386827,-0.004116,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000697,0.000449,0.000699,0.000000,0.000000,0.005358,0.382772,-0.004055,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000666,0.000442,0.000668,0.000000,0.000000,0.005134,0.378777,-0.003995,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000638,0.000436,0.000641,0.000000,0.000000,0.004932,0.374842,-0.003935,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000613,0.000429,0.000616,0.000129,0.000129,0.004748,0.370838,-0.004004,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000590,0.000422,0.000593,0.000364,0.000364,0.004580,0.366662,-0.004176,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000568,0.000415,0.000573,0.000522,0.000522,0.004427,0.362393,-0.004269,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000549,0.000408,0.000554,0.000630,0.000630,0.004285,0.358081,-0.004313,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000531,0.000401,0.000537,0.000583,0.000583,0.004154,0.353879,-0.004202,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000173,0.000000,0.000000,0.000000,0.000006,0.000515,0.000394,0.000521,0.000538,0.000538,0.004033,0.349954,-0.003925,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000197,0.000000,0.000000,0.000000,0.000006,0.000500,0.000388,0.000506,0.000471,0.000471,0.003921,0.346177,-0.003777,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000486,0.000382,0.000493,0.000374,0.000374,0.003816,0.342608,-0.003570,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000197,0.000000,0.000000,0.000000,0.000008,0.000473,0.000376,0.000481,0.000314,0.000314,0.003719,0.339095,-0.003513,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000249,0.000000,0.000000,0.000000,0.000008,0.000461,0.000370,0.000469,0.000243,0.000243,0.003629,0.335756,-0.003339,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000197,0.000000,0.000000,0.000000,0.000009,0.000450,0.000365,0.000459,0.000148,0.000148,0.003544,0.332509,-0.003248,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000551,0.000015,0.000027,0.000015,0.000010,0.000439,0.000360,0.000464,0.000059,0.000059,0.003465,0.329718,-0.002790,1.000000,0.000012 +26,2022-08-02 02:00:00,0.000776,0.000043,0.000066,0.000043,0.000011,0.000429,0.000356,0.000483,0.000000,0.000000,0.003392,0.327212,-0.002506,1.000000,0.000035 +27,2022-08-02 03:00:00,0.000843,0.000064,0.000077,0.000064,0.000011,0.000420,0.000352,0.000496,0.000000,0.000000,0.003323,0.324798,-0.002414,1.000000,0.000048 +28,2022-08-02 04:00:00,0.000889,0.000079,0.000085,0.000079,0.000012,0.000412,0.000348,0.000503,0.000000,0.000000,0.003260,0.322457,-0.002341,1.000000,0.000054 +29,2022-08-02 05:00:00,0.000812,0.000076,0.000071,0.000076,0.000013,0.000404,0.000344,0.000493,0.000000,0.000000,0.003200,0.320089,-0.002368,1.000000,0.000049 +30,2022-08-02 06:00:00,0.000806,0.000073,0.000070,0.000073,0.000014,0.000397,0.000340,0.000483,0.000000,0.000000,0.003143,0.317751,-0.002338,1.000000,0.000046 +31,2022-08-02 07:00:00,0.000000,0.000032,0.000000,0.000032,0.000015,0.000389,0.000335,0.000436,0.000000,0.000000,0.003089,0.314723,-0.003028,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000015,0.000382,0.000330,0.000412,0.000000,0.000000,0.003037,0.311740,-0.002983,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000376,0.000325,0.000392,0.000000,0.000000,0.002986,0.308802,-0.002939,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000369,0.000320,0.000387,0.000000,0.000000,0.002937,0.305906,-0.002895,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000363,0.000316,0.000381,0.000000,0.000000,0.002890,0.303054,-0.002852,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000357,0.000311,0.000376,0.000000,0.000000,0.002843,0.300245,-0.002810,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000351,0.000306,0.000371,0.000000,0.000000,0.002798,0.297477,-0.002768,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000041,0.000000,0.000000,0.000000,0.000021,0.000346,0.000302,0.000367,0.000106,0.000106,0.002754,0.294686,-0.002791,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000010,0.000000,0.000000,0.000000,0.000022,0.000340,0.000297,0.000362,0.000337,0.000337,0.002711,0.291679,-0.003007,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000010,0.000000,0.000000,0.000000,0.000023,0.000334,0.000291,0.000357,0.000478,0.000478,0.002668,0.288578,-0.003102,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000010,0.000000,0.000000,0.000000,0.000024,0.000329,0.000286,0.000353,0.000581,0.000581,0.002626,0.285422,-0.003156,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000025,0.000323,0.000281,0.000348,0.000671,0.000671,0.002584,0.282509,-0.002913,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000318,0.000276,0.000344,0.000626,0.000626,0.002542,0.279388,-0.003121,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000313,0.000271,0.000340,0.000542,0.000542,0.002500,0.276396,-0.002992,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000307,0.000266,0.000335,0.000500,0.000500,0.002459,0.273490,-0.002906,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000302,0.000262,0.000331,0.000415,0.000415,0.002419,0.270711,-0.002780,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000297,0.000257,0.000327,0.000316,0.000316,0.002379,0.268071,-0.002640,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000292,0.000253,0.000323,0.000180,0.000180,0.002340,0.265604,-0.002467,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000287,0.000249,0.000320,0.000033,0.000033,0.002303,0.263318,-0.002285,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000282,0.000246,0.000316,0.000000,0.000000,0.002266,0.261099,-0.002219,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000278,0.000242,0.000313,0.000000,0.000000,0.002230,0.258913,-0.002186,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000273,0.000238,0.000309,0.000000,0.000000,0.002195,0.256760,-0.002154,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000269,0.000235,0.000306,0.000000,0.000000,0.002161,0.254638,-0.002122,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000265,0.000231,0.000303,0.000000,0.000000,0.002128,0.252548,-0.002090,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000260,0.000228,0.000300,0.000000,0.000000,0.002095,0.250489,-0.002059,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000256,0.000224,0.000297,0.000000,0.000000,0.002063,0.248461,-0.002028,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000252,0.000221,0.000294,0.000000,0.000000,0.002032,0.246463,-0.001998,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000248,0.000218,0.000292,0.000000,0.000000,0.002001,0.244494,-0.001968,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000245,0.000215,0.000289,0.000000,0.000000,0.001971,0.242555,-0.001939,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000241,0.000211,0.000287,0.000000,0.000000,0.001942,0.240645,-0.001910,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000237,0.000208,0.000284,0.000000,0.000000,0.001913,0.238762,-0.001882,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000234,0.000205,0.000282,0.000124,0.000124,0.001884,0.236786,-0.001976,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000230,0.000201,0.000279,0.000370,0.000370,0.001856,0.234596,-0.002190,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000226,0.000197,0.000277,0.000527,0.000527,0.001827,0.232285,-0.002312,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000223,0.000193,0.000274,0.000639,0.000639,0.001798,0.229897,-0.002388,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000219,0.000190,0.000272,0.000644,0.000644,0.001768,0.227540,-0.002357,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000215,0.000186,0.000270,0.000581,0.000581,0.001739,0.225280,-0.002260,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000411,0.000000,0.000000,0.000000,0.000056,0.000212,0.000183,0.000267,0.000509,0.000509,0.001710,0.223530,-0.001750,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000134,0.000000,0.000000,0.000000,0.000057,0.000208,0.000180,0.000265,0.000472,0.000472,0.001682,0.221570,-0.001960,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000204,0.000176,0.000263,0.000389,0.000389,0.001654,0.219588,-0.001982,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000201,0.000173,0.000260,0.000290,0.000290,0.001626,0.217733,-0.001855,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000197,0.000170,0.000258,0.000166,0.000166,0.001599,0.216028,-0.001705,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000194,0.000168,0.000256,0.000043,0.000043,0.001573,0.214469,-0.001559,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000191,0.000165,0.000254,0.000000,0.000000,0.001547,0.212976,-0.001493,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000188,0.000163,0.000253,0.000000,0.000000,0.001522,0.211505,-0.001471,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000185,0.000160,0.000251,0.000000,0.000000,0.001498,0.210057,-0.001449,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000020,0.000000,0.000000,0.000000,0.000067,0.000182,0.000158,0.000249,0.000000,0.000000,0.001474,0.208649,-0.001408,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000179,0.000156,0.000248,0.000000,0.000000,0.001451,0.207242,-0.001406,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000176,0.000153,0.000246,0.000000,0.000000,0.001428,0.205857,-0.001386,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000173,0.000151,0.000245,0.000000,0.000000,0.001406,0.204492,-0.001365,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000170,0.000149,0.000243,0.000000,0.000000,0.001385,0.203147,-0.001345,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000168,0.000147,0.000242,0.000000,0.000000,0.001363,0.201822,-0.001325,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000165,0.000144,0.000241,0.000000,0.000000,0.001343,0.200517,-0.001305,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000163,0.000142,0.000239,0.000000,0.000000,0.001322,0.199232,-0.001286,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000160,0.000140,0.000238,0.000000,0.000000,0.001302,0.197965,-0.001266,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000158,0.000138,0.000237,0.000123,0.000123,0.001282,0.196597,-0.001369,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000155,0.000135,0.000236,0.000370,0.000370,0.001262,0.195005,-0.001592,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000153,0.000132,0.000235,0.000530,0.000530,0.001242,0.193279,-0.001726,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000150,0.000129,0.000234,0.000643,0.000643,0.001221,0.191468,-0.001811,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000147,0.000126,0.000232,0.000706,0.000706,0.001200,0.189621,-0.001847,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000145,0.000123,0.000231,0.000666,0.000666,0.001179,0.187842,-0.001780,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000142,0.000120,0.000230,0.000579,0.000579,0.001157,0.186174,-0.001667,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000139,0.000118,0.000228,0.000485,0.000485,0.001136,0.184624,-0.001550,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000137,0.000115,0.000227,0.000403,0.000403,0.001115,0.183178,-0.001446,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000134,0.000113,0.000226,0.000312,0.000312,0.001094,0.181843,-0.001335,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000132,0.000111,0.000225,0.000188,0.000188,0.001073,0.180649,-0.001194,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000024,0.000000,0.000000,0.000000,0.000094,0.000129,0.000110,0.000223,0.000056,0.000056,0.001054,0.179627,-0.001022,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000018,0.000000,0.000000,0.000000,0.000096,0.000127,0.000108,0.000222,0.000000,0.000000,0.001035,0.178669,-0.000958,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000015,0.000000,0.000000,0.000000,0.000097,0.000125,0.000106,0.000222,0.000000,0.000000,0.001017,0.177723,-0.000946,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000015,0.000000,0.000000,0.000000,0.000098,0.000122,0.000105,0.000221,0.000000,0.000000,0.000999,0.176792,-0.000932,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000015,0.000000,0.000000,0.000000,0.000100,0.000120,0.000103,0.000220,0.000000,0.000000,0.000982,0.175873,-0.000918,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000015,0.000000,0.000000,0.000000,0.000101,0.000118,0.000102,0.000219,0.000000,0.000000,0.000966,0.174969,-0.000904,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000116,0.000100,0.000219,0.000000,0.000000,0.000950,0.174063,-0.000906,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000114,0.000099,0.000218,0.000000,0.000000,0.000934,0.173171,-0.000892,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000112,0.000097,0.000217,0.000000,0.000000,0.000919,0.172292,-0.000879,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000111,0.000096,0.000217,0.000000,0.000000,0.000904,0.171426,-0.000866,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000109,0.000094,0.000216,0.000000,0.000000,0.000890,0.170572,-0.000853,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000107,0.000093,0.000216,0.000000,0.000000,0.000876,0.169732,-0.000841,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000105,0.000092,0.000216,0.000000,0.000000,0.000862,0.168904,-0.000828,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000104,0.000090,0.000215,0.000134,0.000134,0.000848,0.167956,-0.000948,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000102,0.000088,0.000215,0.000373,0.000373,0.000835,0.166787,-0.001169,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000100,0.000086,0.000215,0.000532,0.000532,0.000820,0.165480,-0.001308,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000098,0.000084,0.000214,0.000648,0.000648,0.000805,0.164076,-0.001403,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000097,0.000081,0.000213,0.000624,0.000624,0.000790,0.162717,-0.001359,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000120,0.000000,0.000000,0.000000,0.000118,0.000095,0.000079,0.000213,0.000575,0.000575,0.000775,0.161545,-0.001172,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000120,0.000000,0.000000,0.000000,0.000120,0.000093,0.000078,0.000212,0.000489,0.000489,0.000760,0.160476,-0.001070,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000120,0.000000,0.000000,0.000000,0.000121,0.000091,0.000076,0.000212,0.000431,0.000431,0.000745,0.159479,-0.000996,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000122,0.000089,0.000074,0.000211,0.000359,0.000359,0.000730,0.158575,-0.000905,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000123,0.000087,0.000073,0.000211,0.000279,0.000279,0.000716,0.157824,-0.000751,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000125,0.000086,0.000072,0.000210,0.000177,0.000177,0.000702,0.157123,-0.000701,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000595,0.000014,0.000025,0.000014,0.000126,0.000084,0.000072,0.000224,0.000062,0.000062,0.000690,0.156983,-0.000140,1.000000,0.000011 +122,2022-08-06 02:00:00,0.000989,0.000051,0.000081,0.000051,0.000127,0.000083,0.000072,0.000261,0.000000,0.000000,0.000679,0.157239,0.000256,1.000000,0.000042 +123,2022-08-06 03:00:00,0.000846,0.000058,0.000060,0.000058,0.000129,0.000082,0.000072,0.000269,0.000000,0.000000,0.000670,0.157370,0.000131,1.000000,0.000043 +124,2022-08-06 04:00:00,0.000731,0.000056,0.000046,0.000056,0.000130,0.000081,0.000072,0.000267,0.000000,0.000000,0.000662,0.157401,0.000031,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000759,0.000050,0.000049,0.000050,0.000131,0.000080,0.000073,0.000261,0.000000,0.000000,0.000654,0.157456,0.000054,1.000000,0.000031 +126,2022-08-06 06:00:00,0.000847,0.000055,0.000060,0.000055,0.000132,0.000079,0.000073,0.000266,0.000000,0.000000,0.000648,0.157585,0.000129,1.000000,0.000037 +127,2022-08-06 07:00:00,0.000000,0.000025,0.000000,0.000025,0.000134,0.000078,0.000072,0.000237,0.000000,0.000000,0.000642,0.156937,-0.000647,1.000000,0.000012 +128,2022-08-06 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000135,0.000077,0.000071,0.000224,0.000000,0.000000,0.000635,0.156300,-0.000638,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000077,0.000070,0.000213,0.000000,0.000000,0.000628,0.155671,-0.000628,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000076,0.000069,0.000213,0.000000,0.000000,0.000621,0.155052,-0.000619,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000075,0.000067,0.000213,0.000000,0.000000,0.000614,0.154442,-0.000610,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000074,0.000066,0.000214,0.000000,0.000000,0.000606,0.153842,-0.000601,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000073,0.000065,0.000214,0.000000,0.000000,0.000599,0.153250,-0.000592,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000072,0.000064,0.000214,0.000118,0.000118,0.000591,0.152551,-0.000699,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000071,0.000063,0.000215,0.000355,0.000355,0.000583,0.151628,-0.000922,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000070,0.000061,0.000215,0.000510,0.000510,0.000574,0.150567,-0.001062,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000069,0.000059,0.000215,0.000622,0.000622,0.000564,0.149411,-0.001156,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000067,0.000057,0.000215,0.000693,0.000693,0.000554,0.148203,-0.001208,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000066,0.000055,0.000215,0.000651,0.000651,0.000543,0.147054,-0.001149,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000065,0.000053,0.000215,0.000568,0.000568,0.000532,0.146003,-0.001050,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000063,0.000052,0.000214,0.000487,0.000487,0.000520,0.145048,-0.000955,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000062,0.000050,0.000214,0.000402,0.000402,0.000509,0.144191,-0.000857,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000060,0.000049,0.000214,0.000307,0.000307,0.000497,0.143440,-0.000751,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000059,0.000048,0.000214,0.000171,0.000171,0.000486,0.142835,-0.000605,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000058,0.000047,0.000214,0.000043,0.000043,0.000476,0.142364,-0.000471,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000057,0.000047,0.000214,0.000000,0.000000,0.000466,0.141943,-0.000421,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000055,0.000046,0.000214,0.000000,0.000000,0.000456,0.141528,-0.000415,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000054,0.000045,0.000214,0.000000,0.000000,0.000447,0.141119,-0.000409,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000053,0.000045,0.000214,0.000000,0.000000,0.000438,0.140716,-0.000403,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000052,0.000044,0.000214,0.000000,0.000000,0.000430,0.140320,-0.000397,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000051,0.000043,0.000214,0.000000,0.000000,0.000422,0.139929,-0.000391,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000050,0.000043,0.000214,0.000000,0.000000,0.000414,0.139544,-0.000385,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000049,0.000042,0.000215,0.000000,0.000000,0.000407,0.139165,-0.000379,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000049,0.000041,0.000215,0.000000,0.000000,0.000400,0.138791,-0.000374,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000048,0.000041,0.000215,0.000000,0.000000,0.000393,0.138423,-0.000368,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000047,0.000040,0.000216,0.000000,0.000000,0.000386,0.138060,-0.000363,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000046,0.000040,0.000216,0.000000,0.000000,0.000379,0.137703,-0.000357,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000045,0.000039,0.000216,0.000113,0.000113,0.000373,0.137240,-0.000463,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000044,0.000038,0.000217,0.000349,0.000349,0.000366,0.136551,-0.000689,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000044,0.000036,0.000217,0.000509,0.000509,0.000359,0.135715,-0.000836,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000043,0.000035,0.000217,0.000624,0.000624,0.000351,0.134778,-0.000937,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000033,0.000217,0.000690,0.000690,0.000342,0.133789,-0.000988,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000031,0.000217,0.000643,0.000643,0.000333,0.132862,-0.000927,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000039,0.000030,0.000217,0.000556,0.000556,0.000324,0.132034,-0.000828,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000029,0.000217,0.000495,0.000495,0.000315,0.131279,-0.000755,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000028,0.000217,0.000411,0.000411,0.000305,0.130618,-0.000661,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000027,0.000217,0.000312,0.000312,0.000296,0.130065,-0.000554,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000026,0.000217,0.000155,0.000155,0.000287,0.129674,-0.000391,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000007,0.000000,0.000000,0.000000,0.000183,0.000034,0.000026,0.000217,0.000011,0.000011,0.000279,0.129437,-0.000237,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000007,0.000000,0.000000,0.000000,0.000184,0.000033,0.000025,0.000217,0.000000,0.000000,0.000272,0.129214,-0.000223,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000007,0.000000,0.000000,0.000000,0.000185,0.000032,0.000025,0.000217,0.000000,0.000000,0.000265,0.128995,-0.000219,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000007,0.000000,0.000000,0.000000,0.000186,0.000031,0.000025,0.000217,0.000000,0.000000,0.000258,0.128779,-0.000216,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000007,0.000000,0.000000,0.000000,0.000187,0.000031,0.000024,0.000218,0.000000,0.000000,0.000252,0.128566,-0.000213,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000007,0.000000,0.000000,0.000000,0.000188,0.000030,0.000024,0.000218,0.000000,0.000000,0.000246,0.128357,-0.000210,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000029,0.000024,0.000218,0.000000,0.000000,0.000240,0.128143,-0.000213,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000028,0.000023,0.000219,0.000000,0.000000,0.000235,0.127934,-0.000210,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000028,0.000023,0.000219,0.000000,0.000000,0.000230,0.127727,-0.000207,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000027,0.000023,0.000220,0.000000,0.000000,0.000225,0.127523,-0.000204,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000022,0.000220,0.000000,0.000000,0.000221,0.127323,-0.000201,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000022,0.000220,0.000000,0.000000,0.000216,0.127125,-0.000198,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000022,0.000221,0.000000,0.000000,0.000212,0.126930,-0.000195,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000025,0.000021,0.000221,0.000098,0.000098,0.000208,0.126642,-0.000288,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000020,0.000222,0.000336,0.000336,0.000204,0.126124,-0.000518,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000024,0.000019,0.000222,0.000497,0.000497,0.000199,0.125454,-0.000669,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000018,0.000223,0.000607,0.000607,0.000193,0.124687,-0.000767,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000023,0.000016,0.000223,0.000687,0.000687,0.000187,0.123852,-0.000835,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000022,0.000015,0.000223,0.000642,0.000642,0.000180,0.123073,-0.000779,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000021,0.000014,0.000223,0.000554,0.000554,0.000173,0.122393,-0.000680,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000020,0.000013,0.000223,0.000500,0.000500,0.000166,0.121776,-0.000617,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000019,0.000012,0.000223,0.000413,0.000413,0.000159,0.121254,-0.000522,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000011,0.000223,0.000316,0.000316,0.000152,0.120835,-0.000419,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000018,0.000011,0.000223,0.000181,0.000181,0.000145,0.120556,-0.000279,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000011,0.000223,0.000035,0.000035,0.000139,0.120424,-0.000132,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000405,0.000008,0.000014,0.000008,0.000208,0.000016,0.000011,0.000231,0.000000,0.000000,0.000134,0.120715,0.000291,1.000000,0.000006 +195,2022-08-09 03:00:00,0.000137,0.000004,0.000002,0.000004,0.000208,0.000016,0.000011,0.000228,0.000000,0.000000,0.000130,0.120749,0.000034,1.000000,0.000003 +196,2022-08-09 04:00:00,0.000000,0.000003,0.000000,0.000003,0.000209,0.000015,0.000011,0.000228,0.000000,0.000000,0.000125,0.120649,-0.000100,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000015,0.000011,0.000225,0.000000,0.000000,0.000122,0.120551,-0.000098,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000014,0.000011,0.000225,0.000000,0.000000,0.000118,0.120454,-0.000097,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000014,0.000011,0.000226,0.000000,0.000000,0.000115,0.120358,-0.000096,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000014,0.000010,0.000226,0.000000,0.000000,0.000112,0.120264,-0.000094,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000013,0.000010,0.000227,0.000000,0.000000,0.000109,0.120171,-0.000093,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000029,0.000000,0.000000,0.000000,0.000215,0.000013,0.000010,0.000227,0.000000,0.000000,0.000106,0.120109,-0.000063,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000010,0.000228,0.000000,0.000000,0.000104,0.120018,-0.000090,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000012,0.000010,0.000228,0.000000,0.000000,0.000101,0.119929,-0.000089,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000010,0.000229,0.000000,0.000000,0.000099,0.119841,-0.000088,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000012,0.000009,0.000230,0.000109,0.000109,0.000097,0.119648,-0.000194,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620835.csv b/test/channel_loss/channel_forcing/et/cat-2620835.csv new file mode 100644 index 000000000..22d58e2d6 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620835.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000004,0.000007,0.000004,0.000000,0.001449,0.000211,0.001453,0.000180,0.000180,0.010358,0.429342,-0.004660,1.000000,0.000003 +1,2022-08-01 01:00:00,0.000059,0.000002,0.000000,0.000002,0.000000,0.001279,0.000208,0.001281,0.000054,0.000054,0.009288,0.424621,-0.004721,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000059,0.000002,0.000001,0.000002,0.000000,0.001136,0.000206,0.001138,0.000000,0.000000,0.008358,0.420014,-0.004608,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.001013,0.000203,0.001015,0.000000,0.000000,0.007548,0.415466,-0.004547,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.000909,0.000200,0.000911,0.000000,0.000000,0.006839,0.410978,-0.004488,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.000819,0.000198,0.000821,0.000000,0.000000,0.006218,0.406549,-0.004429,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000059,0.000001,0.000001,0.000001,0.000001,0.000741,0.000195,0.000743,0.000000,0.000000,0.005672,0.402178,-0.004371,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000001,0.000674,0.000193,0.000675,0.000000,0.000000,0.005191,0.397807,-0.004371,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000615,0.000190,0.000616,0.000000,0.000000,0.004766,0.393494,-0.004314,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000564,0.000188,0.000565,0.000000,0.000000,0.004390,0.389236,-0.004257,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000518,0.000185,0.000520,0.000000,0.000000,0.004057,0.385035,-0.004202,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000479,0.000183,0.000481,0.000000,0.000000,0.003762,0.380888,-0.004147,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000444,0.000181,0.000446,0.000000,0.000000,0.003499,0.376796,-0.004092,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000412,0.000178,0.000415,0.000000,0.000000,0.003264,0.372757,-0.004039,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000385,0.000176,0.000388,0.000130,0.000130,0.003055,0.368642,-0.004115,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000360,0.000173,0.000364,0.000371,0.000371,0.002868,0.364344,-0.004298,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000339,0.000171,0.000343,0.000529,0.000529,0.002700,0.359945,-0.004398,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000319,0.000168,0.000324,0.000633,0.000633,0.002549,0.355502,-0.004444,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000301,0.000166,0.000307,0.000584,0.000584,0.002413,0.351165,-0.004337,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000170,0.000000,0.000000,0.000000,0.000006,0.000286,0.000163,0.000292,0.000540,0.000540,0.002291,0.347096,-0.004069,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000218,0.000000,0.000000,0.000000,0.000007,0.000271,0.000161,0.000278,0.000469,0.000469,0.002181,0.343197,-0.003899,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000259,0.000159,0.000266,0.000377,0.000377,0.002081,0.339474,-0.003723,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000212,0.000000,0.000000,0.000000,0.000008,0.000247,0.000157,0.000255,0.000317,0.000317,0.001990,0.335820,-0.003655,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000237,0.000155,0.000246,0.000246,0.000246,0.001908,0.332323,-0.003497,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000218,0.000001,0.000001,0.000001,0.000010,0.000227,0.000153,0.000238,0.000150,0.000150,0.001833,0.328930,-0.003392,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000550,0.000037,0.000067,0.000037,0.000011,0.000219,0.000151,0.000266,0.000060,0.000060,0.001766,0.325935,-0.002995,1.000000,0.000030 +26,2022-08-02 02:00:00,0.000787,0.000104,0.000158,0.000104,0.000012,0.000211,0.000149,0.000326,0.000000,0.000000,0.001704,0.323181,-0.002754,1.000000,0.000085 +27,2022-08-02 03:00:00,0.000858,0.000154,0.000184,0.000154,0.000012,0.000204,0.000148,0.000370,0.000000,0.000000,0.001648,0.320508,-0.002673,1.000000,0.000115 +28,2022-08-02 04:00:00,0.000899,0.000188,0.000200,0.000188,0.000013,0.000197,0.000146,0.000398,0.000000,0.000000,0.001597,0.317895,-0.002613,1.000000,0.000127 +29,2022-08-02 05:00:00,0.000836,0.000183,0.000175,0.000183,0.000014,0.000191,0.000145,0.000388,0.000000,0.000000,0.001550,0.315279,-0.002616,1.000000,0.000119 +30,2022-08-02 06:00:00,0.000800,0.000172,0.000161,0.000172,0.000015,0.000186,0.000143,0.000373,0.000000,0.000000,0.001507,0.312676,-0.002604,1.000000,0.000107 +31,2022-08-02 07:00:00,0.000000,0.000075,0.000000,0.000075,0.000016,0.000181,0.000141,0.000272,0.000000,0.000000,0.001468,0.309475,-0.003201,1.000000,0.000032 +32,2022-08-02 08:00:00,0.000000,0.000032,0.000000,0.000032,0.000017,0.000176,0.000139,0.000225,0.000000,0.000000,0.001431,0.306317,-0.003159,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000172,0.000138,0.000190,0.000000,0.000000,0.001396,0.303199,-0.003117,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000168,0.000136,0.000187,0.000000,0.000000,0.001364,0.300123,-0.003077,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000164,0.000134,0.000184,0.000000,0.000000,0.001334,0.297086,-0.003036,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000161,0.000132,0.000182,0.000000,0.000000,0.001306,0.294089,-0.002997,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000157,0.000130,0.000179,0.000000,0.000000,0.001279,0.291132,-0.002958,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000020,0.000000,0.000000,0.000000,0.000023,0.000154,0.000129,0.000177,0.000107,0.000107,0.001254,0.288127,-0.003005,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000024,0.000151,0.000127,0.000175,0.000344,0.000344,0.001229,0.284909,-0.003218,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000025,0.000148,0.000125,0.000173,0.000486,0.000486,0.001206,0.281592,-0.003316,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000026,0.000145,0.000123,0.000172,0.000585,0.000585,0.001184,0.278222,-0.003370,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000300,0.000000,0.000000,0.000000,0.000028,0.000143,0.000121,0.000170,0.000674,0.000674,0.001162,0.275103,-0.003119,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000140,0.000119,0.000169,0.000630,0.000630,0.001141,0.271771,-0.003332,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000138,0.000117,0.000167,0.000543,0.000543,0.001121,0.268569,-0.003202,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000135,0.000115,0.000166,0.000505,0.000505,0.001101,0.265447,-0.003122,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000133,0.000114,0.000165,0.000421,0.000421,0.001082,0.262449,-0.002998,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000130,0.000112,0.000164,0.000319,0.000319,0.001064,0.259590,-0.002858,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000128,0.000110,0.000163,0.000183,0.000183,0.001046,0.256903,-0.002687,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000126,0.000109,0.000162,0.000034,0.000034,0.001029,0.254399,-0.002505,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000124,0.000108,0.000161,0.000000,0.000000,0.001013,0.251960,-0.002439,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000122,0.000106,0.000161,0.000000,0.000000,0.000997,0.249553,-0.002407,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000120,0.000105,0.000160,0.000000,0.000000,0.000981,0.247178,-0.002375,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000118,0.000103,0.000160,0.000000,0.000000,0.000966,0.244834,-0.002344,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000117,0.000102,0.000159,0.000000,0.000000,0.000952,0.242521,-0.002314,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000115,0.000101,0.000159,0.000000,0.000000,0.000938,0.240237,-0.002283,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000113,0.000099,0.000158,0.000000,0.000000,0.000924,0.237984,-0.002253,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000111,0.000098,0.000158,0.000000,0.000000,0.000911,0.235760,-0.002224,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000110,0.000097,0.000158,0.000000,0.000000,0.000898,0.233565,-0.002195,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000108,0.000096,0.000158,0.000000,0.000000,0.000885,0.231399,-0.002166,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000107,0.000094,0.000157,0.000000,0.000000,0.000873,0.229261,-0.002138,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000105,0.000093,0.000157,0.000000,0.000000,0.000861,0.227151,-0.002110,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000104,0.000092,0.000157,0.000126,0.000126,0.000849,0.224945,-0.002207,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000102,0.000090,0.000157,0.000377,0.000377,0.000837,0.222519,-0.002425,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000101,0.000089,0.000157,0.000535,0.000535,0.000825,0.219970,-0.002549,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000099,0.000087,0.000157,0.000642,0.000642,0.000813,0.217348,-0.002622,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000098,0.000086,0.000157,0.000647,0.000647,0.000801,0.214756,-0.002592,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000096,0.000084,0.000157,0.000589,0.000589,0.000789,0.212254,-0.002501,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000433,0.000000,0.000000,0.000000,0.000062,0.000095,0.000083,0.000157,0.000508,0.000508,0.000777,0.210292,-0.001962,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000151,0.000000,0.000000,0.000000,0.000064,0.000093,0.000082,0.000157,0.000476,0.000476,0.000766,0.208110,-0.002182,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000092,0.000081,0.000157,0.000393,0.000393,0.000754,0.205888,-0.002221,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000091,0.000079,0.000157,0.000296,0.000296,0.000743,0.203792,-0.002097,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000089,0.000078,0.000157,0.000168,0.000168,0.000732,0.201849,-0.001943,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000088,0.000077,0.000158,0.000044,0.000044,0.000721,0.200053,-0.001795,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000087,0.000076,0.000158,0.000000,0.000000,0.000711,0.198325,-0.001728,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000085,0.000075,0.000158,0.000000,0.000000,0.000701,0.196620,-0.001705,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000084,0.000074,0.000158,0.000000,0.000000,0.000691,0.194937,-0.001683,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000083,0.000073,0.000159,0.000000,0.000000,0.000681,0.193276,-0.001661,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000082,0.000072,0.000159,0.000000,0.000000,0.000671,0.191636,-0.001639,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000081,0.000071,0.000159,0.000000,0.000000,0.000662,0.190019,-0.001618,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000080,0.000070,0.000160,0.000000,0.000000,0.000653,0.188422,-0.001597,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000078,0.000070,0.000160,0.000000,0.000000,0.000644,0.186846,-0.001576,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000077,0.000069,0.000161,0.000000,0.000000,0.000635,0.185290,-0.001555,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000076,0.000068,0.000161,0.000000,0.000000,0.000626,0.183755,-0.001535,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000075,0.000067,0.000162,0.000000,0.000000,0.000618,0.182241,-0.001515,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000074,0.000066,0.000162,0.000000,0.000000,0.000610,0.180745,-0.001495,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000073,0.000065,0.000163,0.000123,0.000123,0.000601,0.179148,-0.001597,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000072,0.000064,0.000163,0.000375,0.000375,0.000593,0.177323,-0.001825,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000071,0.000063,0.000164,0.000536,0.000536,0.000585,0.175363,-0.001960,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000070,0.000062,0.000164,0.000645,0.000645,0.000576,0.173322,-0.002041,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000069,0.000060,0.000165,0.000707,0.000707,0.000567,0.171245,-0.002076,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000068,0.000059,0.000165,0.000668,0.000668,0.000559,0.169234,-0.002011,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000067,0.000058,0.000166,0.000583,0.000583,0.000550,0.167334,-0.001900,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000066,0.000057,0.000166,0.000488,0.000488,0.000541,0.165552,-0.001782,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000065,0.000056,0.000167,0.000407,0.000407,0.000532,0.163874,-0.001678,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000064,0.000055,0.000167,0.000313,0.000313,0.000524,0.162309,-0.001564,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000063,0.000054,0.000168,0.000191,0.000191,0.000515,0.160887,-0.001423,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000018,0.000000,0.000000,0.000000,0.000107,0.000062,0.000054,0.000168,0.000058,0.000058,0.000507,0.159632,-0.001255,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000018,0.000000,0.000000,0.000000,0.000108,0.000061,0.000053,0.000169,0.000000,0.000000,0.000500,0.158450,-0.001182,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000018,0.000000,0.000000,0.000000,0.000110,0.000060,0.000052,0.000170,0.000000,0.000000,0.000492,0.157284,-0.001166,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000018,0.000000,0.000000,0.000000,0.000111,0.000059,0.000052,0.000170,0.000000,0.000000,0.000485,0.156133,-0.001151,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000018,0.000000,0.000000,0.000000,0.000113,0.000058,0.000051,0.000171,0.000000,0.000000,0.000477,0.154997,-0.001136,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000018,0.000000,0.000000,0.000000,0.000114,0.000057,0.000050,0.000172,0.000000,0.000000,0.000470,0.153876,-0.001121,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000056,0.000050,0.000172,0.000000,0.000000,0.000464,0.152751,-0.001124,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000056,0.000049,0.000173,0.000000,0.000000,0.000457,0.151642,-0.001110,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000055,0.000048,0.000174,0.000000,0.000000,0.000451,0.150547,-0.001095,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000054,0.000048,0.000175,0.000000,0.000000,0.000444,0.149466,-0.001081,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000053,0.000047,0.000175,0.000000,0.000000,0.000438,0.148399,-0.001067,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000052,0.000046,0.000176,0.000000,0.000000,0.000432,0.147347,-0.001053,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000052,0.000046,0.000177,0.000000,0.000000,0.000426,0.146308,-0.001039,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000051,0.000045,0.000178,0.000136,0.000136,0.000420,0.145149,-0.001159,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000050,0.000044,0.000179,0.000380,0.000380,0.000414,0.143764,-0.001385,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000050,0.000043,0.000180,0.000538,0.000538,0.000408,0.142241,-0.001523,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000049,0.000043,0.000180,0.000650,0.000650,0.000402,0.140627,-0.001614,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000048,0.000042,0.000181,0.000626,0.000626,0.000395,0.139059,-0.001568,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000135,0.000047,0.000041,0.000182,0.000579,0.000579,0.000389,0.137681,-0.001377,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000126,0.000000,0.000000,0.000000,0.000136,0.000046,0.000040,0.000183,0.000491,0.000491,0.000382,0.136409,-0.001272,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000130,0.000000,0.000000,0.000000,0.000138,0.000046,0.000039,0.000183,0.000434,0.000434,0.000376,0.135214,-0.001195,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000045,0.000039,0.000184,0.000364,0.000364,0.000370,0.134099,-0.001115,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000193,0.000000,0.000000,0.000000,0.000141,0.000044,0.000038,0.000185,0.000282,0.000282,0.000364,0.133146,-0.000953,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000142,0.000043,0.000038,0.000186,0.000179,0.000179,0.000358,0.132241,-0.000905,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000651,0.000039,0.000072,0.000039,0.000144,0.000043,0.000037,0.000226,0.000063,0.000063,0.000353,0.131909,-0.000332,1.000000,0.000032 +122,2022-08-06 02:00:00,0.001131,0.000149,0.000238,0.000149,0.000145,0.000042,0.000037,0.000337,0.000000,0.000000,0.000348,0.131953,0.000044,1.000000,0.000122 +123,2022-08-06 03:00:00,0.000919,0.000164,0.000164,0.000164,0.000147,0.000042,0.000037,0.000353,0.000000,0.000000,0.000344,0.131861,-0.000092,1.000000,0.000121 +124,2022-08-06 04:00:00,0.000800,0.000159,0.000127,0.000159,0.000148,0.000041,0.000037,0.000348,0.000000,0.000000,0.000340,0.131689,-0.000172,1.000000,0.000090 +125,2022-08-06 05:00:00,0.000801,0.000135,0.000127,0.000135,0.000150,0.000041,0.000037,0.000325,0.000000,0.000000,0.000336,0.131519,-0.000170,1.000000,0.000083 +126,2022-08-06 06:00:00,0.000912,0.000146,0.000162,0.000146,0.000152,0.000040,0.000037,0.000338,0.000000,0.000000,0.000333,0.131428,-0.000091,1.000000,0.000098 +127,2022-08-06 07:00:00,0.000000,0.000066,0.000000,0.000066,0.000153,0.000040,0.000037,0.000259,0.000000,0.000000,0.000329,0.130597,-0.000831,1.000000,0.000032 +128,2022-08-06 08:00:00,0.000000,0.000032,0.000000,0.000032,0.000155,0.000040,0.000036,0.000226,0.000000,0.000000,0.000326,0.129777,-0.000820,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000039,0.000036,0.000195,0.000000,0.000000,0.000323,0.128968,-0.000809,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000039,0.000035,0.000196,0.000000,0.000000,0.000319,0.128170,-0.000799,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000038,0.000035,0.000197,0.000000,0.000000,0.000316,0.127382,-0.000788,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000038,0.000034,0.000198,0.000000,0.000000,0.000312,0.126604,-0.000778,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000037,0.000034,0.000199,0.000000,0.000000,0.000308,0.125836,-0.000768,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000033,0.000201,0.000120,0.000120,0.000305,0.124960,-0.000876,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000037,0.000033,0.000202,0.000363,0.000363,0.000301,0.123856,-0.001104,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000032,0.000203,0.000520,0.000520,0.000297,0.122611,-0.001245,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000035,0.000031,0.000203,0.000626,0.000626,0.000293,0.121278,-0.001334,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000030,0.000204,0.000697,0.000697,0.000288,0.119892,-0.001386,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000034,0.000030,0.000205,0.000655,0.000655,0.000283,0.118565,-0.001327,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000034,0.000029,0.000206,0.000571,0.000571,0.000278,0.117340,-0.001226,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000033,0.000028,0.000207,0.000492,0.000492,0.000274,0.116208,-0.001132,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000033,0.000028,0.000208,0.000407,0.000407,0.000269,0.115174,-0.001034,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000032,0.000027,0.000209,0.000311,0.000311,0.000264,0.114249,-0.000925,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000031,0.000027,0.000210,0.000173,0.000173,0.000259,0.113472,-0.000777,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000031,0.000026,0.000210,0.000045,0.000045,0.000254,0.112833,-0.000640,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000026,0.000211,0.000000,0.000000,0.000250,0.112245,-0.000588,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000030,0.000026,0.000212,0.000000,0.000000,0.000246,0.111665,-0.000580,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000029,0.000025,0.000213,0.000000,0.000000,0.000242,0.111093,-0.000572,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000029,0.000025,0.000214,0.000000,0.000000,0.000238,0.110528,-0.000565,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000025,0.000215,0.000000,0.000000,0.000234,0.109970,-0.000557,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000024,0.000216,0.000000,0.000000,0.000230,0.109420,-0.000550,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000024,0.000217,0.000000,0.000000,0.000227,0.108877,-0.000543,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000024,0.000218,0.000000,0.000000,0.000223,0.108341,-0.000536,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000027,0.000023,0.000219,0.000000,0.000000,0.000220,0.107813,-0.000529,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000023,0.000220,0.000000,0.000000,0.000217,0.107291,-0.000522,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000023,0.000221,0.000000,0.000000,0.000214,0.106775,-0.000515,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000026,0.000022,0.000222,0.000000,0.000000,0.000211,0.106267,-0.000508,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000025,0.000022,0.000223,0.000115,0.000115,0.000207,0.105652,-0.000615,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000022,0.000224,0.000355,0.000355,0.000204,0.104808,-0.000845,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000021,0.000225,0.000516,0.000516,0.000201,0.103815,-0.000992,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000020,0.000226,0.000627,0.000627,0.000197,0.102727,-0.001088,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000023,0.000020,0.000227,0.000693,0.000693,0.000194,0.101588,-0.001139,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000019,0.000228,0.000646,0.000646,0.000190,0.100510,-0.001078,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000018,0.000228,0.000557,0.000557,0.000186,0.099533,-0.000977,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000022,0.000018,0.000229,0.000498,0.000498,0.000182,0.098628,-0.000906,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000017,0.000230,0.000416,0.000416,0.000178,0.097816,-0.000812,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000017,0.000231,0.000315,0.000315,0.000174,0.097114,-0.000702,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000021,0.000017,0.000232,0.000157,0.000157,0.000170,0.096577,-0.000537,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000213,0.000020,0.000017,0.000233,0.000012,0.000001,0.000166,0.096201,-0.000375,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000214,0.000020,0.000016,0.000234,0.000000,0.000000,0.000163,0.095832,-0.000370,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000215,0.000019,0.000016,0.000234,0.000000,0.000000,0.000160,0.095467,-0.000365,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000216,0.000019,0.000016,0.000235,0.000000,0.000000,0.000157,0.095107,-0.000360,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000218,0.000019,0.000016,0.000236,0.000000,0.000000,0.000154,0.094752,-0.000355,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000219,0.000018,0.000015,0.000237,0.000000,0.000000,0.000151,0.094401,-0.000351,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000015,0.000238,0.000000,0.000000,0.000148,0.094054,-0.000347,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000015,0.000239,0.000000,0.000000,0.000146,0.093712,-0.000342,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000015,0.000240,0.000000,0.000000,0.000143,0.093375,-0.000338,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000015,0.000241,0.000000,0.000000,0.000141,0.093042,-0.000333,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000015,0.000242,0.000000,0.000000,0.000139,0.092713,-0.000329,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000014,0.000243,0.000000,0.000000,0.000136,0.092388,-0.000325,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000014,0.000244,0.000000,0.000000,0.000134,0.092068,-0.000320,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000016,0.000014,0.000245,0.000100,0.000000,0.000132,0.091752,-0.000316,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000246,0.000341,0.000000,0.000130,0.091440,-0.000312,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000014,0.000247,0.000505,0.000000,0.000128,0.091132,-0.000308,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000013,0.000248,0.000611,0.000000,0.000126,0.090828,-0.000304,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000013,0.000249,0.000692,0.000000,0.000125,0.090528,-0.000300,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000250,0.000643,0.000000,0.000123,0.090232,-0.000296,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000554,0.000000,0.000121,0.089940,-0.000292,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000252,0.000505,0.000000,0.000119,0.089652,-0.000288,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000013,0.000253,0.000418,0.000000,0.000118,0.089367,-0.000285,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000319,0.000000,0.000116,0.089087,-0.000281,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000255,0.000183,0.000000,0.000114,0.088810,-0.000277,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000036,0.000000,0.000113,0.088536,-0.000273,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000212,0.000005,0.000010,0.000005,0.000243,0.000013,0.000012,0.000262,0.000000,0.000000,0.000111,0.088466,-0.000070,1.000000,0.000004 +195,2022-08-09 03:00:00,0.000072,0.000003,0.000001,0.000003,0.000244,0.000013,0.000012,0.000261,0.000000,0.000000,0.000110,0.088267,-0.000199,1.000000,0.000002 +196,2022-08-09 04:00:00,0.000000,0.000002,0.000000,0.000002,0.000245,0.000013,0.000012,0.000261,0.000000,0.000000,0.000109,0.088001,-0.000266,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000013,0.000012,0.000260,0.000000,0.000000,0.000107,0.087738,-0.000263,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000011,0.000260,0.000000,0.000000,0.000106,0.087479,-0.000259,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000011,0.000261,0.000000,0.000000,0.000104,0.087223,-0.000256,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000012,0.000011,0.000262,0.000000,0.000000,0.000103,0.086970,-0.000253,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000012,0.000011,0.000263,0.000000,0.000000,0.000102,0.086720,-0.000249,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000012,0.000011,0.000264,0.000000,0.000000,0.000101,0.086474,-0.000246,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000099,0.086231,-0.000243,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000098,0.085992,-0.000240,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000010,0.000267,0.000000,0.000000,0.000097,0.085755,-0.000237,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000012,0.000010,0.000268,0.000110,0.000000,0.000095,0.085521,-0.000234,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620836.csv b/test/channel_loss/channel_forcing/et/cat-2620836.csv new file mode 100644 index 000000000..aa2b0d9f5 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620836.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001473,0.000383,0.001476,0.000179,0.000179,0.010506,0.430529,-0.004616,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000063,0.000001,0.000000,0.000001,0.000000,0.001322,0.000378,0.001323,0.000052,0.000052,0.009562,0.425857,-0.004671,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001194,0.000373,0.001195,0.000000,0.000000,0.008741,0.421303,-0.004555,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001085,0.000368,0.001086,0.000000,0.000000,0.008023,0.416812,-0.004491,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.000991,0.000362,0.000992,0.000000,0.000000,0.007395,0.412384,-0.004427,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.000910,0.000357,0.000911,0.000000,0.000000,0.006843,0.408019,-0.004365,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000001,0.000839,0.000352,0.000840,0.000000,0.000000,0.006356,0.403716,-0.004303,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000777,0.000347,0.000779,0.000000,0.000000,0.005926,0.399412,-0.004304,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000724,0.000343,0.000725,0.000000,0.000000,0.005545,0.395168,-0.004244,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000676,0.000338,0.000677,0.000000,0.000000,0.005207,0.390984,-0.004184,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000634,0.000333,0.000636,0.000000,0.000000,0.004906,0.386859,-0.004125,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000597,0.000328,0.000599,0.000000,0.000000,0.004637,0.382792,-0.004067,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000564,0.000324,0.000567,0.000000,0.000000,0.004396,0.378783,-0.004010,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000535,0.000319,0.000538,0.000000,0.000000,0.004180,0.374830,-0.003953,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000509,0.000314,0.000512,0.000129,0.000129,0.003986,0.370805,-0.004025,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000485,0.000310,0.000489,0.000371,0.000371,0.003810,0.366599,-0.004206,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000464,0.000305,0.000468,0.000527,0.000527,0.003651,0.362298,-0.004301,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000445,0.000300,0.000449,0.000626,0.000626,0.003506,0.357960,-0.004338,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000427,0.000295,0.000432,0.000577,0.000577,0.003374,0.353731,-0.004229,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000187,0.000000,0.000000,0.000000,0.000006,0.000411,0.000290,0.000417,0.000535,0.000535,0.003253,0.349788,-0.003944,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000236,0.000000,0.000000,0.000000,0.000007,0.000396,0.000286,0.000403,0.000459,0.000459,0.003143,0.346023,-0.003765,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000383,0.000282,0.000390,0.000369,0.000369,0.003041,0.342417,-0.003607,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000217,0.000000,0.000000,0.000000,0.000008,0.000371,0.000278,0.000379,0.000310,0.000310,0.002948,0.338884,-0.003532,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000360,0.000274,0.000368,0.000241,0.000241,0.002862,0.335505,-0.003379,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000236,0.000001,0.000001,0.000001,0.000009,0.000349,0.000270,0.000359,0.000145,0.000145,0.002783,0.332251,-0.003254,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000517,0.000019,0.000033,0.000019,0.000010,0.000340,0.000267,0.000368,0.000057,0.000057,0.002710,0.329374,-0.002877,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000704,0.000050,0.000074,0.000050,0.000011,0.000331,0.000264,0.000391,0.000000,0.000000,0.002643,0.326737,-0.002637,1.000000,0.000040 +27,2022-08-02 03:00:00,0.000788,0.000076,0.000092,0.000076,0.000012,0.000323,0.000261,0.000410,0.000000,0.000000,0.002580,0.324204,-0.002533,1.000000,0.000056 +28,2022-08-02 04:00:00,0.000833,0.000094,0.000101,0.000094,0.000012,0.000315,0.000258,0.000422,0.000000,0.000000,0.002523,0.321741,-0.002463,1.000000,0.000064 +29,2022-08-02 05:00:00,0.000828,0.000099,0.000100,0.000099,0.000013,0.000309,0.000255,0.000421,0.000000,0.000000,0.002469,0.319309,-0.002431,1.000000,0.000065 +30,2022-08-02 06:00:00,0.000800,0.000097,0.000093,0.000097,0.000014,0.000302,0.000252,0.000413,0.000000,0.000000,0.002419,0.316891,-0.002418,1.000000,0.000062 +31,2022-08-02 07:00:00,0.000000,0.000043,0.000000,0.000043,0.000015,0.000296,0.000249,0.000354,0.000000,0.000000,0.002372,0.313810,-0.003081,1.000000,0.000019 +32,2022-08-02 08:00:00,0.000000,0.000019,0.000000,0.000019,0.000016,0.000290,0.000245,0.000325,0.000000,0.000000,0.002327,0.310772,-0.003038,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000285,0.000242,0.000302,0.000000,0.000000,0.002284,0.307778,-0.002995,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000279,0.000238,0.000297,0.000000,0.000000,0.002243,0.304825,-0.002953,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000274,0.000235,0.000293,0.000000,0.000000,0.002204,0.301914,-0.002911,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000270,0.000232,0.000289,0.000000,0.000000,0.002166,0.299044,-0.002870,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000028,0.000000,0.000000,0.000000,0.000021,0.000265,0.000228,0.000286,0.000000,0.000000,0.002129,0.296242,-0.002802,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000047,0.000000,0.000000,0.000000,0.000022,0.000260,0.000225,0.000282,0.000104,0.000104,0.002094,0.293395,-0.002847,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000047,0.000000,0.000000,0.000000,0.000023,0.000256,0.000222,0.000279,0.000342,0.000342,0.002060,0.290353,-0.003042,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000047,0.000000,0.000000,0.000000,0.000024,0.000252,0.000218,0.000276,0.000485,0.000485,0.002026,0.287214,-0.003139,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000047,0.000000,0.000000,0.000000,0.000025,0.000247,0.000214,0.000272,0.000580,0.000580,0.001993,0.284025,-0.003188,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000224,0.000000,0.000000,0.000000,0.000026,0.000243,0.000211,0.000269,0.000668,0.000668,0.001961,0.280970,-0.003056,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000239,0.000207,0.000266,0.000628,0.000628,0.001929,0.277776,-0.003194,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000235,0.000204,0.000263,0.000535,0.000535,0.001897,0.274719,-0.003057,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000231,0.000200,0.000261,0.000498,0.000498,0.001866,0.271741,-0.002977,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000227,0.000197,0.000258,0.000415,0.000415,0.001836,0.268887,-0.002854,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000224,0.000194,0.000255,0.000312,0.000312,0.001806,0.266175,-0.002712,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000220,0.000191,0.000253,0.000181,0.000181,0.001777,0.263630,-0.002545,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000216,0.000188,0.000250,0.000033,0.000033,0.001748,0.261267,-0.002363,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000213,0.000185,0.000248,0.000000,0.000000,0.001721,0.258969,-0.002297,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000209,0.000183,0.000246,0.000000,0.000000,0.001694,0.256704,-0.002265,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000206,0.000180,0.000244,0.000000,0.000000,0.001668,0.254471,-0.002233,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000203,0.000178,0.000242,0.000000,0.000000,0.001643,0.252270,-0.002202,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000200,0.000175,0.000240,0.000000,0.000000,0.001618,0.250099,-0.002171,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000197,0.000173,0.000238,0.000000,0.000000,0.001594,0.247959,-0.002140,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000194,0.000170,0.000236,0.000000,0.000000,0.001571,0.245850,-0.002110,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000191,0.000168,0.000235,0.000000,0.000000,0.001548,0.243769,-0.002080,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000188,0.000166,0.000233,0.000000,0.000000,0.001525,0.241719,-0.002051,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000185,0.000163,0.000232,0.000000,0.000000,0.001503,0.239697,-0.002022,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000183,0.000161,0.000230,0.000000,0.000000,0.001481,0.237703,-0.001993,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000180,0.000159,0.000229,0.000000,0.000000,0.001460,0.235738,-0.001965,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000177,0.000156,0.000227,0.000126,0.000126,0.001439,0.233676,-0.002062,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000175,0.000154,0.000226,0.000376,0.000376,0.001418,0.231397,-0.002279,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000172,0.000151,0.000225,0.000534,0.000534,0.001397,0.228994,-0.002403,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000169,0.000148,0.000223,0.000634,0.000634,0.001376,0.226527,-0.002467,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000167,0.000145,0.000222,0.000638,0.000638,0.001354,0.224090,-0.002437,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000164,0.000142,0.000221,0.000593,0.000593,0.001333,0.221732,-0.002358,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000451,0.000000,0.000000,0.000000,0.000058,0.000161,0.000140,0.000220,0.000503,0.000503,0.001312,0.219940,-0.001792,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000170,0.000000,0.000000,0.000000,0.000060,0.000159,0.000138,0.000218,0.000470,0.000470,0.001291,0.217929,-0.002011,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000156,0.000136,0.000217,0.000387,0.000387,0.001271,0.215861,-0.002068,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000154,0.000133,0.000216,0.000293,0.000293,0.001250,0.213914,-0.001947,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000151,0.000131,0.000215,0.000165,0.000165,0.001231,0.212122,-0.001793,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000149,0.000130,0.000214,0.000044,0.000044,0.001211,0.210474,-0.001648,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000146,0.000128,0.000213,0.000000,0.000000,0.001193,0.208892,-0.001582,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000144,0.000126,0.000212,0.000000,0.000000,0.001174,0.207333,-0.001559,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000142,0.000124,0.000211,0.000000,0.000000,0.001157,0.205795,-0.001537,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000140,0.000122,0.000210,0.000000,0.000000,0.001139,0.204280,-0.001516,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000138,0.000121,0.000210,0.000000,0.000000,0.001122,0.202785,-0.001494,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000136,0.000119,0.000209,0.000000,0.000000,0.001105,0.201312,-0.001473,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000134,0.000117,0.000208,0.000000,0.000000,0.001089,0.199859,-0.001453,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000132,0.000116,0.000208,0.000000,0.000000,0.001073,0.198427,-0.001432,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000130,0.000114,0.000207,0.000000,0.000000,0.001058,0.197015,-0.001412,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000128,0.000112,0.000207,0.000000,0.000000,0.001042,0.195623,-0.001392,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000126,0.000111,0.000206,0.000000,0.000000,0.001027,0.194251,-0.001372,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000124,0.000109,0.000206,0.000000,0.000000,0.001012,0.192898,-0.001353,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000122,0.000108,0.000205,0.000124,0.000124,0.000998,0.191442,-0.001456,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000120,0.000106,0.000205,0.000377,0.000377,0.000983,0.189756,-0.001685,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000118,0.000104,0.000205,0.000536,0.000536,0.000968,0.187938,-0.001818,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000117,0.000101,0.000204,0.000639,0.000639,0.000953,0.186044,-0.001894,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000115,0.000099,0.000204,0.000691,0.000691,0.000937,0.184126,-0.001918,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000113,0.000097,0.000203,0.000665,0.000665,0.000921,0.182260,-0.001866,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000111,0.000095,0.000203,0.000579,0.000579,0.000906,0.180505,-0.001755,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000109,0.000093,0.000202,0.000476,0.000476,0.000890,0.178876,-0.001629,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000107,0.000091,0.000202,0.000399,0.000399,0.000874,0.177347,-0.001530,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000105,0.000090,0.000201,0.000302,0.000302,0.000859,0.175934,-0.001413,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000103,0.000088,0.000201,0.000188,0.000188,0.000844,0.174654,-0.001280,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000099,0.000000,0.000000,0.000000,0.000099,0.000101,0.000087,0.000200,0.000058,0.000058,0.000830,0.173617,-0.001037,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000088,0.000001,0.000001,0.000001,0.000100,0.000100,0.000086,0.000201,0.000000,0.000000,0.000816,0.172640,-0.000977,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000088,0.000001,0.000001,0.000001,0.000102,0.000098,0.000085,0.000201,0.000000,0.000000,0.000803,0.171677,-0.000963,1.000000,0.000001 +100,2022-08-05 04:00:00,0.000088,0.000001,0.000001,0.000001,0.000103,0.000096,0.000084,0.000201,0.000000,0.000000,0.000790,0.170727,-0.000950,1.000000,0.000001 +101,2022-08-05 05:00:00,0.000088,0.000001,0.000001,0.000001,0.000105,0.000095,0.000083,0.000201,0.000000,0.000000,0.000777,0.169791,-0.000936,1.000000,0.000001 +102,2022-08-05 06:00:00,0.000088,0.000001,0.000001,0.000001,0.000106,0.000093,0.000082,0.000201,0.000000,0.000000,0.000765,0.168868,-0.000923,1.000000,0.000001 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000092,0.000080,0.000200,0.000000,0.000000,0.000754,0.167873,-0.000995,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000091,0.000079,0.000200,0.000000,0.000000,0.000742,0.166891,-0.000981,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000089,0.000078,0.000200,0.000000,0.000000,0.000731,0.165924,-0.000968,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000088,0.000077,0.000200,0.000000,0.000000,0.000720,0.164970,-0.000954,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000087,0.000076,0.000200,0.000000,0.000000,0.000710,0.164029,-0.000941,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000085,0.000075,0.000200,0.000000,0.000000,0.000699,0.163102,-0.000927,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000084,0.000074,0.000200,0.000000,0.000000,0.000689,0.162188,-0.000914,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000083,0.000073,0.000200,0.000136,0.000136,0.000679,0.161152,-0.001035,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000082,0.000071,0.000200,0.000380,0.000380,0.000669,0.159891,-0.001261,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000080,0.000070,0.000200,0.000536,0.000536,0.000658,0.158494,-0.001398,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000079,0.000068,0.000201,0.000641,0.000641,0.000647,0.157012,-0.001481,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000077,0.000066,0.000201,0.000612,0.000612,0.000636,0.155581,-0.001431,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000124,0.000076,0.000065,0.000201,0.000569,0.000569,0.000624,0.154336,-0.001245,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000174,0.000000,0.000000,0.000000,0.000126,0.000075,0.000063,0.000201,0.000487,0.000487,0.000613,0.153237,-0.001099,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000163,0.000000,0.000000,0.000000,0.000127,0.000073,0.000062,0.000201,0.000423,0.000423,0.000602,0.152206,-0.001032,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000129,0.000072,0.000061,0.000201,0.000356,0.000356,0.000591,0.151219,-0.000987,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000130,0.000071,0.000060,0.000201,0.000272,0.000272,0.000581,0.150391,-0.000828,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000069,0.000059,0.000201,0.000175,0.000175,0.000570,0.149608,-0.000783,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000642,0.000022,0.000040,0.000022,0.000133,0.000068,0.000059,0.000223,0.000061,0.000061,0.000561,0.149418,-0.000190,1.000000,0.000018 +122,2022-08-06 02:00:00,0.001126,0.000087,0.000140,0.000087,0.000134,0.000067,0.000059,0.000289,0.000000,0.000000,0.000553,0.149669,0.000251,1.000000,0.000071 +123,2022-08-06 03:00:00,0.000894,0.000093,0.000091,0.000093,0.000136,0.000066,0.000059,0.000295,0.000000,0.000000,0.000546,0.149736,0.000067,1.000000,0.000069 +124,2022-08-06 04:00:00,0.000814,0.000092,0.000076,0.000092,0.000137,0.000066,0.000059,0.000295,0.000000,0.000000,0.000540,0.149738,0.000002,1.000000,0.000052 +125,2022-08-06 05:00:00,0.000815,0.000079,0.000076,0.000079,0.000138,0.000065,0.000059,0.000282,0.000000,0.000000,0.000534,0.149741,0.000003,1.000000,0.000049 +126,2022-08-06 06:00:00,0.000882,0.000083,0.000088,0.000083,0.000140,0.000064,0.000060,0.000287,0.000000,0.000000,0.000529,0.149797,0.000056,1.000000,0.000055 +127,2022-08-06 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000141,0.000064,0.000059,0.000242,0.000000,0.000000,0.000524,0.149070,-0.000727,1.000000,0.000018 +128,2022-08-06 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000142,0.000063,0.000058,0.000223,0.000000,0.000000,0.000519,0.148354,-0.000717,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000062,0.000057,0.000206,0.000000,0.000000,0.000514,0.147647,-0.000706,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000062,0.000056,0.000207,0.000000,0.000000,0.000508,0.146951,-0.000696,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000061,0.000055,0.000208,0.000000,0.000000,0.000502,0.146264,-0.000687,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000060,0.000055,0.000208,0.000000,0.000000,0.000497,0.145587,-0.000677,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000060,0.000054,0.000209,0.000000,0.000000,0.000491,0.144920,-0.000667,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000059,0.000053,0.000209,0.000120,0.000120,0.000485,0.144144,-0.000776,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000058,0.000052,0.000210,0.000364,0.000364,0.000478,0.143138,-0.001006,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000057,0.000050,0.000211,0.000524,0.000524,0.000472,0.141988,-0.001149,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000056,0.000049,0.000211,0.000623,0.000623,0.000464,0.140757,-0.001231,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000055,0.000048,0.000211,0.000689,0.000689,0.000456,0.139479,-0.001279,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000054,0.000046,0.000212,0.000652,0.000652,0.000448,0.138255,-0.001224,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000053,0.000045,0.000212,0.000566,0.000566,0.000440,0.137133,-0.001122,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000044,0.000212,0.000482,0.000482,0.000431,0.136110,-0.001023,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000043,0.000212,0.000401,0.000401,0.000422,0.135180,-0.000929,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000050,0.000042,0.000213,0.000304,0.000304,0.000414,0.134360,-0.000820,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000041,0.000213,0.000169,0.000169,0.000405,0.133685,-0.000676,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000048,0.000040,0.000213,0.000043,0.000043,0.000397,0.133142,-0.000543,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000040,0.000214,0.000000,0.000000,0.000390,0.132650,-0.000492,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000046,0.000039,0.000214,0.000000,0.000000,0.000382,0.132165,-0.000485,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000046,0.000039,0.000214,0.000000,0.000000,0.000375,0.131687,-0.000478,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000045,0.000038,0.000215,0.000000,0.000000,0.000369,0.131215,-0.000472,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000044,0.000038,0.000215,0.000000,0.000000,0.000362,0.130750,-0.000465,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000043,0.000037,0.000216,0.000000,0.000000,0.000356,0.130292,-0.000458,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000036,0.000216,0.000000,0.000000,0.000350,0.129840,-0.000452,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000036,0.000217,0.000000,0.000000,0.000344,0.129394,-0.000446,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000041,0.000035,0.000217,0.000000,0.000000,0.000339,0.128955,-0.000439,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000035,0.000218,0.000000,0.000000,0.000333,0.128522,-0.000433,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000034,0.000219,0.000000,0.000000,0.000328,0.128095,-0.000427,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000034,0.000219,0.000000,0.000000,0.000323,0.127674,-0.000421,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000039,0.000033,0.000220,0.000115,0.000115,0.000318,0.127145,-0.000529,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000032,0.000220,0.000356,0.000356,0.000312,0.126387,-0.000759,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000031,0.000221,0.000516,0.000516,0.000306,0.125481,-0.000906,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000030,0.000221,0.000620,0.000620,0.000300,0.124485,-0.000995,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000029,0.000222,0.000684,0.000684,0.000294,0.123441,-0.001044,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000028,0.000222,0.000642,0.000642,0.000287,0.122452,-0.000989,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000027,0.000222,0.000551,0.000551,0.000280,0.121568,-0.000885,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000026,0.000223,0.000491,0.000491,0.000273,0.120755,-0.000813,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000032,0.000025,0.000223,0.000411,0.000411,0.000266,0.120032,-0.000723,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000024,0.000223,0.000311,0.000311,0.000259,0.119418,-0.000614,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000024,0.000224,0.000156,0.000156,0.000252,0.118965,-0.000453,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000029,0.000000,0.000000,0.000000,0.000194,0.000030,0.000024,0.000224,0.000011,0.000011,0.000246,0.118690,-0.000274,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000029,0.000000,0.000000,0.000000,0.000196,0.000029,0.000023,0.000225,0.000000,0.000000,0.000240,0.118431,-0.000260,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000029,0.000000,0.000000,0.000000,0.000197,0.000028,0.000023,0.000225,0.000000,0.000000,0.000235,0.118175,-0.000256,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000029,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000230,0.117923,-0.000252,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000029,0.000000,0.000000,0.000000,0.000199,0.000027,0.000022,0.000226,0.000000,0.000000,0.000225,0.117674,-0.000249,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000029,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000000,0.000000,0.000220,0.117429,-0.000245,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000227,0.000000,0.000000,0.000216,0.117158,-0.000271,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000212,0.116891,-0.000267,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000229,0.000000,0.000000,0.000208,0.116628,-0.000263,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000229,0.000000,0.000000,0.000204,0.116369,-0.000259,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000021,0.000230,0.000000,0.000000,0.000201,0.116113,-0.000256,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000000,0.000000,0.000197,0.115861,-0.000252,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000020,0.000231,0.000000,0.000000,0.000194,0.115612,-0.000249,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000020,0.000232,0.000100,0.000100,0.000190,0.115268,-0.000344,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000344,0.000344,0.000187,0.114689,-0.000579,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000018,0.000233,0.000508,0.000508,0.000183,0.113956,-0.000733,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000017,0.000234,0.000609,0.000609,0.000178,0.113135,-0.000822,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000016,0.000234,0.000688,0.000688,0.000173,0.112246,-0.000888,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000020,0.000015,0.000235,0.000639,0.000639,0.000168,0.111418,-0.000828,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000014,0.000235,0.000547,0.000547,0.000163,0.110693,-0.000725,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000019,0.000014,0.000235,0.000501,0.000501,0.000158,0.110024,-0.000669,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000018,0.000013,0.000236,0.000415,0.000415,0.000152,0.109448,-0.000576,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000012,0.000236,0.000315,0.000315,0.000147,0.108979,-0.000469,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000236,0.000180,0.000180,0.000142,0.108651,-0.000329,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000012,0.000237,0.000035,0.000035,0.000137,0.108469,-0.000181,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000043,0.000000,0.000000,0.000000,0.000221,0.000016,0.000012,0.000237,0.000000,0.000000,0.000133,0.108367,-0.000102,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000222,0.000016,0.000012,0.000238,0.000000,0.000000,0.000129,0.108235,-0.000132,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000011,0.000238,0.000000,0.000000,0.000125,0.108094,-0.000141,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000239,0.000000,0.000000,0.000121,0.107955,-0.000139,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000011,0.000240,0.000000,0.000000,0.000118,0.107818,-0.000137,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000011,0.000240,0.000000,0.000000,0.000115,0.107682,-0.000135,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000011,0.000241,0.000000,0.000000,0.000112,0.107549,-0.000133,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000011,0.000241,0.000000,0.000000,0.000110,0.107417,-0.000131,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000010,0.000242,0.000000,0.000000,0.000107,0.107288,-0.000130,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000010,0.000243,0.000000,0.000000,0.000105,0.107160,-0.000128,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000010,0.000243,0.000000,0.000000,0.000103,0.107034,-0.000126,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000010,0.000244,0.000000,0.000000,0.000100,0.106910,-0.000124,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000012,0.000010,0.000245,0.000109,0.000109,0.000098,0.106679,-0.000230,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620837.csv b/test/channel_loss/channel_forcing/et/cat-2620837.csv new file mode 100644 index 000000000..96e46ad6a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620837.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001464,0.000316,0.001467,0.000177,0.000177,0.010448,0.428945,-0.004717,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000019,0.000001,0.000000,0.000001,0.000000,0.001305,0.000312,0.001307,0.000054,0.000054,0.009455,0.424125,-0.004819,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000018,0.000001,0.000000,0.000001,0.000000,0.001171,0.000307,0.001172,0.000000,0.000000,0.008591,0.419423,-0.004702,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001057,0.000303,0.001057,0.000000,0.000000,0.007837,0.414784,-0.004639,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.000959,0.000299,0.000959,0.000000,0.000000,0.007178,0.410208,-0.004576,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000019,0.000000,0.000000,0.000000,0.000000,0.000874,0.000295,0.000875,0.000000,0.000000,0.006599,0.405694,-0.004514,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000018,0.000000,0.000000,0.000000,0.000001,0.000801,0.000291,0.000801,0.000000,0.000000,0.006089,0.401240,-0.004454,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000287,0.000738,0.000000,0.000000,0.005640,0.396828,-0.004412,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000681,0.000283,0.000682,0.000000,0.000000,0.005242,0.392476,-0.004352,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000632,0.000280,0.000633,0.000000,0.000000,0.004890,0.388183,-0.004293,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000589,0.000276,0.000591,0.000000,0.000000,0.004576,0.383947,-0.004236,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000551,0.000272,0.000553,0.000000,0.000000,0.004298,0.379769,-0.004178,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000517,0.000268,0.000520,0.000000,0.000000,0.004049,0.375647,-0.004122,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000487,0.000265,0.000490,0.000000,0.000000,0.003826,0.371580,-0.004067,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000261,0.000464,0.000130,0.000130,0.003627,0.367440,-0.004140,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000257,0.000441,0.000365,0.000365,0.003447,0.363124,-0.004316,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000415,0.000253,0.000420,0.000515,0.000515,0.003285,0.358719,-0.004405,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000396,0.000249,0.000401,0.000611,0.000611,0.003139,0.354277,-0.004441,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000378,0.000246,0.000384,0.000560,0.000560,0.003006,0.349947,-0.004331,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000175,0.000000,0.000000,0.000000,0.000006,0.000363,0.000242,0.000369,0.000522,0.000522,0.002885,0.345885,-0.004062,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000203,0.000000,0.000000,0.000000,0.000007,0.000348,0.000238,0.000355,0.000465,0.000465,0.002775,0.341961,-0.003924,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000335,0.000235,0.000343,0.000372,0.000372,0.002675,0.338231,-0.003730,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000190,0.000000,0.000000,0.000000,0.000008,0.000323,0.000232,0.000332,0.000317,0.000317,0.002584,0.334544,-0.003688,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000313,0.000229,0.000322,0.000242,0.000242,0.002500,0.331042,-0.003502,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000203,0.000000,0.000001,0.000000,0.000010,0.000303,0.000226,0.000313,0.000149,0.000149,0.002423,0.327629,-0.003413,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000027,0.000049,0.000027,0.000011,0.000294,0.000223,0.000331,0.000062,0.000062,0.002352,0.324661,-0.002968,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000793,0.000075,0.000114,0.000075,0.000011,0.000285,0.000221,0.000372,0.000000,0.000000,0.002288,0.321951,-0.002710,1.000000,0.000061 +27,2022-08-02 03:00:00,0.000865,0.000112,0.000134,0.000112,0.000012,0.000278,0.000218,0.000402,0.000000,0.000000,0.002229,0.319331,-0.002621,1.000000,0.000083 +28,2022-08-02 04:00:00,0.000898,0.000135,0.000143,0.000135,0.000013,0.000271,0.000216,0.000418,0.000000,0.000000,0.002174,0.316769,-0.002562,1.000000,0.000091 +29,2022-08-02 05:00:00,0.000898,0.000141,0.000142,0.000141,0.000014,0.000264,0.000214,0.000419,0.000000,0.000000,0.002124,0.314242,-0.002527,1.000000,0.000093 +30,2022-08-02 06:00:00,0.000800,0.000127,0.000114,0.000127,0.000015,0.000258,0.000211,0.000400,0.000000,0.000000,0.002077,0.311680,-0.002562,1.000000,0.000080 +31,2022-08-02 07:00:00,0.000000,0.000057,0.000000,0.000057,0.000016,0.000253,0.000209,0.000325,0.000000,0.000000,0.002033,0.308476,-0.003204,1.000000,0.000023 +32,2022-08-02 08:00:00,0.000000,0.000023,0.000000,0.000023,0.000017,0.000247,0.000206,0.000287,0.000000,0.000000,0.001992,0.305315,-0.003161,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000242,0.000203,0.000260,0.000000,0.000000,0.001952,0.302197,-0.003118,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000238,0.000200,0.000256,0.000000,0.000000,0.001915,0.299121,-0.003076,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000233,0.000198,0.000253,0.000000,0.000000,0.001880,0.296086,-0.003035,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000229,0.000195,0.000249,0.000000,0.000000,0.001846,0.293092,-0.002994,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000225,0.000192,0.000246,0.000000,0.000000,0.001814,0.290139,-0.002953,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000045,0.000000,0.000000,0.000000,0.000023,0.000221,0.000190,0.000243,0.000109,0.000109,0.001783,0.287163,-0.002976,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000217,0.000187,0.000241,0.000332,0.000332,0.001753,0.283962,-0.003201,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000213,0.000184,0.000238,0.000458,0.000458,0.001723,0.280680,-0.003282,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000210,0.000181,0.000236,0.000551,0.000551,0.001695,0.277351,-0.003329,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000178,0.000000,0.000000,0.000000,0.000027,0.000206,0.000178,0.000233,0.000638,0.000638,0.001667,0.274155,-0.003195,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000203,0.000175,0.000231,0.000600,0.000600,0.001639,0.270865,-0.003290,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000199,0.000172,0.000229,0.000528,0.000528,0.001613,0.267691,-0.003175,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000196,0.000170,0.000226,0.000500,0.000500,0.001586,0.264586,-0.003104,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000193,0.000167,0.000224,0.000418,0.000418,0.001561,0.261604,-0.002982,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000189,0.000164,0.000222,0.000317,0.000317,0.001536,0.258763,-0.002841,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000186,0.000162,0.000221,0.000182,0.000182,0.001511,0.256093,-0.002670,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000183,0.000160,0.000219,0.000036,0.000036,0.001488,0.253603,-0.002490,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000181,0.000158,0.000217,0.000000,0.000000,0.001465,0.251182,-0.002421,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000178,0.000156,0.000216,0.000000,0.000000,0.001442,0.248794,-0.002388,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000175,0.000153,0.000214,0.000000,0.000000,0.001421,0.246438,-0.002356,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000172,0.000151,0.000213,0.000000,0.000000,0.001400,0.244114,-0.002324,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000170,0.000149,0.000212,0.000000,0.000000,0.001379,0.241821,-0.002293,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000167,0.000147,0.000210,0.000000,0.000000,0.001359,0.239559,-0.002262,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000165,0.000145,0.000209,0.000000,0.000000,0.001340,0.237328,-0.002231,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000162,0.000143,0.000208,0.000000,0.000000,0.001321,0.235126,-0.002201,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000160,0.000141,0.000207,0.000000,0.000000,0.001302,0.232954,-0.002172,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000158,0.000140,0.000206,0.000000,0.000000,0.001284,0.230812,-0.002142,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000156,0.000138,0.000205,0.000000,0.000000,0.001266,0.228698,-0.002114,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000153,0.000136,0.000205,0.000000,0.000000,0.001248,0.226613,-0.002085,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000151,0.000134,0.000204,0.000126,0.000126,0.001231,0.224432,-0.002181,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000149,0.000132,0.000203,0.000372,0.000372,0.001213,0.222038,-0.002394,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000147,0.000129,0.000202,0.000520,0.000520,0.001196,0.219529,-0.002509,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000145,0.000127,0.000202,0.000626,0.000626,0.001178,0.216950,-0.002579,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000142,0.000125,0.000201,0.000630,0.000630,0.001161,0.214402,-0.002548,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000140,0.000123,0.000200,0.000588,0.000588,0.001143,0.211930,-0.002472,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000368,0.000000,0.000000,0.000000,0.000061,0.000138,0.000121,0.000199,0.000505,0.000505,0.001126,0.209936,-0.001994,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000146,0.000000,0.000000,0.000000,0.000063,0.000136,0.000119,0.000199,0.000475,0.000475,0.001109,0.207780,-0.002156,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000134,0.000117,0.000198,0.000398,0.000398,0.001092,0.205584,-0.002195,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000132,0.000115,0.000197,0.000297,0.000297,0.001076,0.203518,-0.002067,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000130,0.000114,0.000197,0.000170,0.000170,0.001059,0.201604,-0.001913,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000128,0.000112,0.000196,0.000047,0.000047,0.001043,0.199839,-0.001766,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000126,0.000110,0.000196,0.000000,0.000000,0.001028,0.198143,-0.001696,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000124,0.000109,0.000195,0.000000,0.000000,0.001013,0.196470,-0.001673,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000122,0.000107,0.000195,0.000000,0.000000,0.000998,0.194819,-0.001650,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000120,0.000106,0.000195,0.000000,0.000000,0.000984,0.193191,-0.001628,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000119,0.000105,0.000194,0.000000,0.000000,0.000969,0.191585,-0.001606,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000117,0.000103,0.000194,0.000000,0.000000,0.000956,0.190000,-0.001585,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000115,0.000102,0.000194,0.000000,0.000000,0.000942,0.188437,-0.001563,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000114,0.000100,0.000194,0.000000,0.000000,0.000929,0.186895,-0.001542,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000112,0.000099,0.000194,0.000000,0.000000,0.000916,0.185373,-0.001521,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000110,0.000098,0.000194,0.000000,0.000000,0.000903,0.183872,-0.001501,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000109,0.000096,0.000194,0.000000,0.000000,0.000891,0.182392,-0.001481,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000107,0.000095,0.000194,0.000000,0.000000,0.000878,0.180931,-0.001461,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000106,0.000094,0.000194,0.000124,0.000124,0.000866,0.179368,-0.001563,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000104,0.000092,0.000194,0.000369,0.000369,0.000854,0.177585,-0.001784,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000090,0.000194,0.000523,0.000523,0.000842,0.175672,-0.001912,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000101,0.000089,0.000194,0.000626,0.000626,0.000829,0.173685,-0.001988,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000100,0.000087,0.000193,0.000704,0.000704,0.000816,0.171647,-0.002038,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000098,0.000085,0.000193,0.000659,0.000659,0.000803,0.169681,-0.001966,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000096,0.000083,0.000193,0.000569,0.000569,0.000790,0.167830,-0.001851,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000095,0.000082,0.000193,0.000488,0.000488,0.000777,0.166084,-0.001746,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000093,0.000080,0.000193,0.000413,0.000413,0.000764,0.164436,-0.001648,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000092,0.000079,0.000193,0.000319,0.000319,0.000752,0.162903,-0.001533,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000090,0.000078,0.000193,0.000189,0.000189,0.000739,0.161519,-0.001384,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000089,0.000077,0.000193,0.000058,0.000058,0.000727,0.160282,-0.001236,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000087,0.000076,0.000193,0.000000,0.000000,0.000716,0.159120,-0.001163,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000086,0.000075,0.000193,0.000000,0.000000,0.000704,0.157973,-0.001147,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000085,0.000074,0.000194,0.000000,0.000000,0.000693,0.156842,-0.001131,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000083,0.000073,0.000194,0.000000,0.000000,0.000683,0.155725,-0.001116,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000082,0.000072,0.000194,0.000000,0.000000,0.000673,0.154624,-0.001101,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000081,0.000071,0.000194,0.000000,0.000000,0.000662,0.153538,-0.001086,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000080,0.000070,0.000195,0.000000,0.000000,0.000653,0.152467,-0.001072,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000078,0.000069,0.000195,0.000000,0.000000,0.000643,0.151410,-0.001057,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000068,0.000195,0.000000,0.000000,0.000634,0.150367,-0.001043,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000076,0.000067,0.000196,0.000000,0.000000,0.000625,0.149338,-0.001029,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000075,0.000066,0.000196,0.000000,0.000000,0.000616,0.148323,-0.001015,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000074,0.000065,0.000197,0.000000,0.000000,0.000607,0.147322,-0.001001,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000073,0.000064,0.000197,0.000134,0.000134,0.000598,0.146202,-0.001120,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000072,0.000063,0.000198,0.000372,0.000372,0.000590,0.144863,-0.001339,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000071,0.000062,0.000198,0.000525,0.000525,0.000581,0.143390,-0.001473,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000070,0.000060,0.000198,0.000637,0.000637,0.000571,0.141826,-0.001564,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000068,0.000059,0.000199,0.000606,0.000606,0.000562,0.140315,-0.001511,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000132,0.000067,0.000058,0.000199,0.000564,0.000564,0.000552,0.138990,-0.001325,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000140,0.000000,0.000000,0.000000,0.000133,0.000066,0.000057,0.000199,0.000482,0.000482,0.000543,0.137777,-0.001213,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000147,0.000000,0.000000,0.000000,0.000135,0.000065,0.000056,0.000200,0.000433,0.000433,0.000534,0.136637,-0.001141,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000136,0.000064,0.000055,0.000200,0.000366,0.000366,0.000525,0.135556,-0.001080,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000138,0.000063,0.000054,0.000200,0.000285,0.000285,0.000516,0.134633,-0.000923,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000062,0.000053,0.000201,0.000179,0.000179,0.000507,0.133764,-0.000868,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000666,0.000029,0.000052,0.000029,0.000141,0.000061,0.000053,0.000230,0.000063,0.000063,0.000499,0.133503,-0.000261,1.000000,0.000024 +122,2022-08-06 02:00:00,0.001143,0.000109,0.000174,0.000109,0.000142,0.000060,0.000053,0.000311,0.000000,0.000000,0.000492,0.133657,0.000154,1.000000,0.000089 +123,2022-08-06 03:00:00,0.000985,0.000127,0.000132,0.000127,0.000144,0.000059,0.000053,0.000329,0.000000,0.000000,0.000486,0.133695,0.000038,1.000000,0.000094 +124,2022-08-06 04:00:00,0.000897,0.000129,0.000111,0.000129,0.000145,0.000058,0.000053,0.000332,0.000000,0.000000,0.000481,0.133667,-0.000028,1.000000,0.000076 +125,2022-08-06 05:00:00,0.000898,0.000115,0.000111,0.000115,0.000147,0.000058,0.000053,0.000320,0.000000,0.000000,0.000476,0.133640,-0.000028,1.000000,0.000072 +126,2022-08-06 06:00:00,0.000995,0.000124,0.000135,0.000124,0.000148,0.000057,0.000053,0.000329,0.000000,0.000000,0.000472,0.133685,0.000046,1.000000,0.000083 +127,2022-08-06 07:00:00,0.000000,0.000056,0.000000,0.000056,0.000150,0.000057,0.000052,0.000262,0.000000,0.000000,0.000467,0.132881,-0.000804,1.000000,0.000027 +128,2022-08-06 08:00:00,0.000000,0.000027,0.000000,0.000027,0.000151,0.000056,0.000052,0.000234,0.000000,0.000000,0.000463,0.132088,-0.000793,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000056,0.000051,0.000208,0.000000,0.000000,0.000458,0.131306,-0.000782,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000055,0.000050,0.000209,0.000000,0.000000,0.000453,0.130534,-0.000772,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000054,0.000050,0.000210,0.000000,0.000000,0.000448,0.129773,-0.000761,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000054,0.000049,0.000211,0.000000,0.000000,0.000443,0.129022,-0.000751,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000053,0.000048,0.000212,0.000000,0.000000,0.000438,0.128281,-0.000741,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000053,0.000047,0.000212,0.000119,0.000119,0.000433,0.127433,-0.000848,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000052,0.000047,0.000213,0.000352,0.000352,0.000428,0.126366,-0.001066,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000051,0.000045,0.000214,0.000495,0.000495,0.000422,0.125173,-0.001194,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000051,0.000044,0.000214,0.000600,0.000600,0.000416,0.123891,-0.001281,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000050,0.000043,0.000215,0.000679,0.000679,0.000409,0.122550,-0.001341,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000049,0.000042,0.000216,0.000640,0.000640,0.000402,0.121265,-0.001285,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000048,0.000041,0.000216,0.000559,0.000559,0.000395,0.120077,-0.001188,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000040,0.000217,0.000493,0.000493,0.000388,0.118971,-0.001107,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000046,0.000039,0.000217,0.000408,0.000408,0.000381,0.117963,-0.001008,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000045,0.000038,0.000218,0.000311,0.000311,0.000374,0.117064,-0.000899,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000045,0.000038,0.000218,0.000179,0.000179,0.000367,0.116308,-0.000756,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000037,0.000219,0.000046,0.000046,0.000360,0.115693,-0.000615,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000037,0.000220,0.000000,0.000000,0.000354,0.115132,-0.000561,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000036,0.000220,0.000000,0.000000,0.000348,0.114578,-0.000554,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000041,0.000036,0.000221,0.000000,0.000000,0.000342,0.114032,-0.000546,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000041,0.000035,0.000222,0.000000,0.000000,0.000336,0.113493,-0.000539,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000035,0.000222,0.000000,0.000000,0.000331,0.112961,-0.000532,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000034,0.000223,0.000000,0.000000,0.000325,0.112437,-0.000524,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000039,0.000034,0.000224,0.000000,0.000000,0.000320,0.111919,-0.000517,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000224,0.000000,0.000000,0.000315,0.111409,-0.000510,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000033,0.000225,0.000000,0.000000,0.000310,0.110906,-0.000503,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000037,0.000032,0.000226,0.000000,0.000000,0.000305,0.110409,-0.000497,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000032,0.000227,0.000000,0.000000,0.000301,0.109919,-0.000490,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000036,0.000031,0.000228,0.000000,0.000000,0.000296,0.109436,-0.000483,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000031,0.000228,0.000113,0.000113,0.000292,0.108847,-0.000589,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000030,0.000229,0.000350,0.000350,0.000287,0.108033,-0.000814,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000029,0.000230,0.000500,0.000500,0.000282,0.107081,-0.000952,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000028,0.000230,0.000610,0.000610,0.000277,0.106034,-0.001047,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000027,0.000231,0.000676,0.000676,0.000272,0.104937,-0.001098,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000027,0.000232,0.000630,0.000630,0.000266,0.103899,-0.001038,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000032,0.000026,0.000232,0.000551,0.000551,0.000260,0.102953,-0.000946,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000233,0.000503,0.000503,0.000254,0.102067,-0.000886,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000420,0.000420,0.000248,0.101275,-0.000792,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000024,0.000234,0.000318,0.000318,0.000243,0.100595,-0.000680,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000023,0.000235,0.000158,0.000158,0.000237,0.100081,-0.000514,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000235,0.000014,0.000014,0.000232,0.099717,-0.000365,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000023,0.000236,0.000000,0.000000,0.000227,0.099371,-0.000346,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000022,0.000236,0.000000,0.000000,0.000222,0.099030,-0.000341,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000218,0.098693,-0.000337,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000022,0.000238,0.000000,0.000000,0.000213,0.098361,-0.000332,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000239,0.000000,0.000000,0.000209,0.098033,-0.000328,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000206,0.097710,-0.000323,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000021,0.000240,0.000000,0.000000,0.000202,0.097392,-0.000319,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000241,0.000000,0.000000,0.000198,0.097077,-0.000314,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000242,0.000000,0.000000,0.000195,0.096767,-0.000310,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000242,0.000000,0.000000,0.000192,0.096461,-0.000306,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000188,0.096159,-0.000302,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000244,0.000000,0.000000,0.000185,0.095861,-0.000298,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000098,0.000098,0.000182,0.095471,-0.000390,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000018,0.000246,0.000337,0.000337,0.000179,0.094849,-0.000621,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000018,0.000246,0.000493,0.000493,0.000176,0.094083,-0.000766,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000017,0.000247,0.000590,0.000590,0.000172,0.093232,-0.000852,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000017,0.000248,0.000671,0.000000,0.000168,0.092973,-0.000258,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000249,0.000620,0.000000,0.000165,0.092718,-0.000255,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000016,0.000249,0.000548,0.000000,0.000162,0.092467,-0.000251,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000016,0.000250,0.000497,0.000000,0.000159,0.092219,-0.000248,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000016,0.000251,0.000418,0.000000,0.000156,0.091974,-0.000245,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000016,0.000252,0.000320,0.000000,0.000153,0.091733,-0.000241,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000016,0.000252,0.000184,0.000000,0.000150,0.091494,-0.000238,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000015,0.000253,0.000037,0.000000,0.000148,0.091260,-0.000235,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000067,0.000000,0.000001,0.000000,0.000236,0.000018,0.000015,0.000254,0.000000,0.000000,0.000145,0.091093,-0.000166,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000027,0.000000,0.000000,0.000000,0.000237,0.000017,0.000015,0.000255,0.000000,0.000000,0.000143,0.090890,-0.000203,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000000,0.000000,0.000141,0.090664,-0.000227,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000256,0.000000,0.000000,0.000138,0.090440,-0.000224,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000014,0.000257,0.000000,0.000000,0.000136,0.090219,-0.000221,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000134,0.090001,-0.000218,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000132,0.089787,-0.000215,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000000,0.000000,0.000130,0.089575,-0.000212,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000260,0.000000,0.000000,0.000128,0.089366,-0.000209,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000000,0.000000,0.000126,0.089159,-0.000206,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000125,0.088956,-0.000203,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000123,0.088755,-0.000201,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000264,0.000108,0.000000,0.000121,0.088557,-0.000198,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620838.csv b/test/channel_loss/channel_forcing/et/cat-2620838.csv new file mode 100644 index 000000000..1f67252c4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620838.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000500,0.000010,0.000018,0.000010,0.000000,0.001465,0.000323,0.001475,0.000175,0.000175,0.010455,0.440564,-0.003766,1.000000,0.000008 +1,2022-08-01 01:00:00,0.000100,0.000005,0.000000,0.000005,0.000000,0.001307,0.000318,0.001312,0.000050,0.000050,0.009466,0.436602,-0.003962,1.000000,0.000004 +2,2022-08-01 02:00:00,0.000100,0.000005,0.000002,0.000005,0.000000,0.001173,0.000313,0.001178,0.000000,0.000000,0.008606,0.432748,-0.003853,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000100,0.000001,0.000002,0.000001,0.000000,0.001059,0.000309,0.001061,0.000000,0.000000,0.007855,0.428954,-0.003794,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000100,0.000002,0.000002,0.000002,0.000000,0.000962,0.000304,0.000964,0.000000,0.000000,0.007197,0.425218,-0.003736,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000100,0.000002,0.000002,0.000002,0.000000,0.000877,0.000300,0.000879,0.000000,0.000000,0.006620,0.421538,-0.003679,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000100,0.000002,0.000002,0.000002,0.000000,0.000804,0.000295,0.000806,0.000000,0.000000,0.006111,0.417915,-0.003623,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000001,0.000740,0.000291,0.000741,0.000000,0.000000,0.005662,0.414251,-0.003664,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000684,0.000286,0.000685,0.000000,0.000000,0.005264,0.410642,-0.003608,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000635,0.000282,0.000636,0.000000,0.000000,0.004911,0.407089,-0.003553,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000592,0.000278,0.000593,0.000000,0.000000,0.004597,0.403590,-0.003499,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000553,0.000273,0.000555,0.000000,0.000000,0.004316,0.400145,-0.003445,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000520,0.000269,0.000522,0.000000,0.000000,0.004066,0.396752,-0.003393,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000489,0.000265,0.000492,0.000000,0.000000,0.003842,0.393411,-0.003341,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000462,0.000261,0.000465,0.000127,0.000127,0.003640,0.389996,-0.003415,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000438,0.000256,0.000441,0.000360,0.000360,0.003458,0.386404,-0.003592,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000416,0.000252,0.000420,0.000515,0.000515,0.003294,0.382714,-0.003690,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000397,0.000247,0.000401,0.000618,0.000618,0.003144,0.378980,-0.003735,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000379,0.000243,0.000383,0.000570,0.000570,0.003008,0.375349,-0.003630,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000316,0.000000,0.000000,0.000000,0.000005,0.000363,0.000239,0.000368,0.000529,0.000529,0.002885,0.372126,-0.003223,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000369,0.000000,0.000000,0.000000,0.000006,0.000348,0.000235,0.000353,0.000450,0.000450,0.002772,0.369082,-0.003044,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000370,0.000000,0.000000,0.000000,0.000006,0.000334,0.000231,0.000341,0.000357,0.000357,0.002669,0.366176,-0.002905,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000368,0.000000,0.000001,0.000000,0.000007,0.000322,0.000228,0.000329,0.000295,0.000295,0.002575,0.363374,-0.002802,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000400,0.000003,0.000004,0.000003,0.000007,0.000311,0.000225,0.000321,0.000229,0.000229,0.002488,0.360708,-0.002666,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000459,0.000010,0.000015,0.000010,0.000008,0.000301,0.000222,0.000319,0.000135,0.000135,0.002409,0.358222,-0.002486,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000830,0.000051,0.000083,0.000051,0.000009,0.000291,0.000219,0.000351,0.000051,0.000051,0.002337,0.356155,-0.002066,1.000000,0.000041 +26,2022-08-02 02:00:00,0.000744,0.000066,0.000076,0.000066,0.000009,0.000283,0.000217,0.000358,0.000000,0.000000,0.002270,0.354093,-0.002062,1.000000,0.000051 +27,2022-08-02 03:00:00,0.000724,0.000075,0.000072,0.000075,0.000010,0.000275,0.000214,0.000360,0.000000,0.000000,0.002209,0.352046,-0.002047,1.000000,0.000048 +28,2022-08-02 04:00:00,0.000724,0.000073,0.000072,0.000073,0.000011,0.000268,0.000212,0.000351,0.000000,0.000000,0.002153,0.350031,-0.002015,1.000000,0.000047 +29,2022-08-02 05:00:00,0.000724,0.000071,0.000071,0.000071,0.000011,0.000261,0.000209,0.000344,0.000000,0.000000,0.002101,0.348047,-0.001984,1.000000,0.000046 +30,2022-08-02 06:00:00,0.000722,0.000071,0.000071,0.000071,0.000012,0.000255,0.000207,0.000338,0.000000,0.000000,0.002053,0.346092,-0.001955,1.000000,0.000046 +31,2022-08-02 07:00:00,0.000000,0.000032,0.000000,0.000032,0.000013,0.000249,0.000204,0.000294,0.000000,0.000000,0.002007,0.343526,-0.002566,1.000000,0.000014 +32,2022-08-02 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000014,0.000244,0.000200,0.000271,0.000000,0.000000,0.001964,0.340999,-0.002527,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000238,0.000197,0.000253,0.000000,0.000000,0.001923,0.338510,-0.002488,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000233,0.000194,0.000249,0.000000,0.000000,0.001883,0.336060,-0.002450,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000229,0.000191,0.000245,0.000000,0.000000,0.001846,0.333647,-0.002413,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000224,0.000188,0.000241,0.000000,0.000000,0.001810,0.331271,-0.002376,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000018,0.000220,0.000186,0.000238,0.000000,0.000000,0.001776,0.329028,-0.002243,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000018,0.000216,0.000183,0.000235,0.000099,0.000099,0.001743,0.326724,-0.002304,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000019,0.000212,0.000180,0.000231,0.000335,0.000335,0.001711,0.324223,-0.002501,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000020,0.000208,0.000177,0.000228,0.000476,0.000476,0.001680,0.321620,-0.002603,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000204,0.000173,0.000225,0.000574,0.000574,0.001650,0.318961,-0.002659,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000307,0.000000,0.000000,0.000000,0.000022,0.000200,0.000170,0.000222,0.000663,0.000663,0.001620,0.316459,-0.002502,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000196,0.000167,0.000219,0.000621,0.000621,0.001590,0.313734,-0.002725,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000193,0.000164,0.000217,0.000524,0.000524,0.001561,0.311146,-0.002588,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000189,0.000161,0.000214,0.000484,0.000484,0.001533,0.308637,-0.002509,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000186,0.000158,0.000211,0.000401,0.000401,0.001505,0.306249,-0.002388,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000182,0.000155,0.000209,0.000300,0.000300,0.001478,0.303996,-0.002253,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000179,0.000152,0.000207,0.000175,0.000175,0.001451,0.301900,-0.002095,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000176,0.000150,0.000204,0.000031,0.000031,0.001425,0.299979,-0.001921,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000172,0.000148,0.000202,0.000000,0.000000,0.001401,0.298118,-0.001861,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000169,0.000145,0.000200,0.000000,0.000000,0.001377,0.296285,-0.001833,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000167,0.000143,0.000198,0.000000,0.000000,0.001353,0.294480,-0.001805,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000164,0.000141,0.000196,0.000000,0.000000,0.001330,0.292703,-0.001777,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000161,0.000139,0.000195,0.000000,0.000000,0.001308,0.290953,-0.001750,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000158,0.000137,0.000193,0.000000,0.000000,0.001287,0.289229,-0.001723,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000156,0.000135,0.000191,0.000000,0.000000,0.001266,0.287532,-0.001697,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000153,0.000133,0.000190,0.000000,0.000000,0.001245,0.285861,-0.001671,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000151,0.000131,0.000188,0.000000,0.000000,0.001225,0.284216,-0.001646,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000148,0.000129,0.000187,0.000000,0.000000,0.001206,0.282595,-0.001620,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000146,0.000127,0.000186,0.000000,0.000000,0.001187,0.281000,-0.001596,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000143,0.000125,0.000185,0.000000,0.000000,0.001168,0.279429,-0.001571,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000042,0.000141,0.000123,0.000183,0.000123,0.000123,0.001149,0.277761,-0.001668,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000139,0.000120,0.000182,0.000368,0.000368,0.001131,0.275877,-0.001884,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000136,0.000118,0.000181,0.000525,0.000525,0.001112,0.273867,-0.002010,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000134,0.000115,0.000180,0.000626,0.000626,0.001093,0.271788,-0.002079,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000132,0.000113,0.000178,0.000628,0.000628,0.001074,0.269739,-0.002049,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000129,0.000110,0.000177,0.000581,0.000581,0.001055,0.267769,-0.001971,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000506,0.000000,0.000000,0.000000,0.000049,0.000127,0.000109,0.000176,0.000495,0.000495,0.001037,0.266411,-0.001358,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000196,0.000000,0.000000,0.000000,0.000050,0.000125,0.000107,0.000175,0.000457,0.000457,0.001019,0.264806,-0.001605,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000006,0.000000,0.000000,0.000000,0.000051,0.000123,0.000105,0.000174,0.000373,0.000373,0.001001,0.263121,-0.001685,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000120,0.000103,0.000173,0.000280,0.000280,0.000983,0.261547,-0.001574,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000118,0.000101,0.000172,0.000156,0.000156,0.000966,0.260119,-0.001428,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000116,0.000099,0.000171,0.000041,0.000041,0.000949,0.258828,-0.001292,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000114,0.000098,0.000170,0.000000,0.000000,0.000932,0.257595,-0.001232,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000112,0.000096,0.000169,0.000000,0.000000,0.000916,0.256382,-0.001213,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000110,0.000095,0.000168,0.000000,0.000000,0.000901,0.255187,-0.001195,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000108,0.000093,0.000168,0.000000,0.000000,0.000886,0.254011,-0.001177,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000107,0.000092,0.000167,0.000000,0.000000,0.000871,0.252852,-0.001159,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000105,0.000090,0.000166,0.000000,0.000000,0.000857,0.251711,-0.001141,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000103,0.000089,0.000166,0.000000,0.000000,0.000843,0.250588,-0.001123,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000101,0.000088,0.000165,0.000000,0.000000,0.000830,0.249482,-0.001106,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000100,0.000086,0.000165,0.000000,0.000000,0.000816,0.248392,-0.001089,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000098,0.000085,0.000164,0.000000,0.000000,0.000803,0.247320,-0.001073,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000097,0.000084,0.000164,0.000000,0.000000,0.000790,0.246263,-0.001056,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000095,0.000082,0.000164,0.000000,0.000000,0.000778,0.245223,-0.001040,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000070,0.000093,0.000081,0.000163,0.000122,0.000122,0.000766,0.244080,-0.001143,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000092,0.000079,0.000163,0.000369,0.000369,0.000753,0.242710,-0.001370,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000090,0.000078,0.000162,0.000526,0.000526,0.000740,0.241207,-0.001504,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000089,0.000076,0.000162,0.000629,0.000629,0.000727,0.239624,-0.001582,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000087,0.000074,0.000161,0.000671,0.000671,0.000714,0.238025,-0.001599,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000085,0.000072,0.000161,0.000655,0.000655,0.000700,0.236466,-0.001559,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000084,0.000070,0.000160,0.000570,0.000570,0.000686,0.235015,-0.001451,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000082,0.000068,0.000160,0.000456,0.000456,0.000673,0.233698,-0.001317,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000080,0.000067,0.000159,0.000378,0.000378,0.000659,0.232478,-0.001220,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000079,0.000065,0.000159,0.000283,0.000283,0.000646,0.231369,-0.001108,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000077,0.000064,0.000159,0.000181,0.000181,0.000633,0.230379,-0.000991,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000376,0.000007,0.000012,0.000007,0.000083,0.000076,0.000064,0.000165,0.000056,0.000056,0.000621,0.229885,-0.000494,1.000000,0.000006 +98,2022-08-05 02:00:00,0.000311,0.000009,0.000011,0.000009,0.000084,0.000074,0.000063,0.000167,0.000000,0.000000,0.000610,0.229390,-0.000495,1.000000,0.000008 +99,2022-08-05 03:00:00,0.000326,0.000012,0.000013,0.000012,0.000085,0.000073,0.000062,0.000170,0.000000,0.000000,0.000599,0.228917,-0.000473,1.000000,0.000008 +100,2022-08-05 04:00:00,0.000326,0.000012,0.000013,0.000012,0.000086,0.000072,0.000062,0.000170,0.000000,0.000000,0.000589,0.228451,-0.000466,1.000000,0.000008 +101,2022-08-05 05:00:00,0.000326,0.000013,0.000013,0.000013,0.000087,0.000071,0.000061,0.000170,0.000000,0.000000,0.000580,0.227993,-0.000459,1.000000,0.000008 +102,2022-08-05 06:00:00,0.000326,0.000013,0.000013,0.000013,0.000088,0.000070,0.000061,0.000171,0.000000,0.000000,0.000571,0.227541,-0.000452,1.000000,0.000008 +103,2022-08-05 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000090,0.000068,0.000060,0.000164,0.000000,0.000000,0.000562,0.226787,-0.000754,1.000000,0.000003 +104,2022-08-05 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000091,0.000067,0.000059,0.000161,0.000000,0.000000,0.000554,0.226045,-0.000742,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000066,0.000058,0.000158,0.000000,0.000000,0.000545,0.225314,-0.000731,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000065,0.000057,0.000158,0.000000,0.000000,0.000537,0.224594,-0.000720,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000064,0.000056,0.000159,0.000000,0.000000,0.000529,0.223885,-0.000709,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000063,0.000055,0.000159,0.000000,0.000000,0.000521,0.223187,-0.000698,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000062,0.000055,0.000159,0.000000,0.000000,0.000513,0.222500,-0.000687,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000098,0.000061,0.000054,0.000159,0.000133,0.000133,0.000505,0.221694,-0.000806,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000099,0.000060,0.000052,0.000159,0.000370,0.000370,0.000497,0.220666,-0.001028,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000059,0.000051,0.000159,0.000525,0.000525,0.000488,0.219501,-0.001165,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000058,0.000049,0.000159,0.000630,0.000630,0.000479,0.218249,-0.001252,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000057,0.000048,0.000159,0.000593,0.000593,0.000470,0.217053,-0.001196,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000200,0.000000,0.000000,0.000000,0.000103,0.000056,0.000047,0.000159,0.000558,0.000558,0.000461,0.216107,-0.000946,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000311,0.000000,0.000000,0.000000,0.000105,0.000055,0.000046,0.000159,0.000476,0.000476,0.000451,0.215365,-0.000742,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000216,0.000000,0.000000,0.000000,0.000106,0.000054,0.000045,0.000159,0.000406,0.000406,0.000443,0.214610,-0.000756,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000200,0.000000,0.000000,0.000000,0.000107,0.000053,0.000044,0.000159,0.000341,0.000341,0.000434,0.213914,-0.000695,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000300,0.000000,0.000000,0.000000,0.000108,0.000052,0.000043,0.000160,0.000256,0.000256,0.000425,0.213412,-0.000502,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000200,0.000000,0.000000,0.000000,0.000109,0.000051,0.000043,0.000160,0.000167,0.000167,0.000417,0.212906,-0.000506,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000809,0.000034,0.000063,0.000034,0.000110,0.000050,0.000043,0.000194,0.000056,0.000056,0.000410,0.213056,0.000149,1.000000,0.000028 +122,2022-08-06 02:00:00,0.000939,0.000068,0.000095,0.000068,0.000111,0.000049,0.000043,0.000229,0.000000,0.000000,0.000404,0.213354,0.000298,1.000000,0.000055 +123,2022-08-06 03:00:00,0.000724,0.000068,0.000058,0.000068,0.000112,0.000049,0.000043,0.000229,0.000000,0.000000,0.000399,0.213472,0.000119,1.000000,0.000045 +124,2022-08-06 04:00:00,0.000694,0.000063,0.000054,0.000063,0.000113,0.000048,0.000044,0.000225,0.000000,0.000000,0.000395,0.213565,0.000092,1.000000,0.000036 +125,2022-08-06 05:00:00,0.000713,0.000056,0.000056,0.000056,0.000115,0.000047,0.000044,0.000218,0.000000,0.000000,0.000391,0.213671,0.000106,1.000000,0.000036 +126,2022-08-06 06:00:00,0.000707,0.000055,0.000056,0.000055,0.000116,0.000047,0.000044,0.000218,0.000000,0.000000,0.000388,0.213771,0.000100,1.000000,0.000036 +127,2022-08-06 07:00:00,0.000000,0.000025,0.000000,0.000025,0.000117,0.000047,0.000043,0.000189,0.000000,0.000000,0.000384,0.213227,-0.000543,1.000000,0.000011 +128,2022-08-06 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000118,0.000046,0.000042,0.000175,0.000000,0.000000,0.000380,0.212692,-0.000535,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000046,0.000042,0.000165,0.000000,0.000000,0.000376,0.212166,-0.000527,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000045,0.000041,0.000165,0.000000,0.000000,0.000372,0.211647,-0.000519,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000045,0.000041,0.000166,0.000000,0.000000,0.000368,0.211136,-0.000511,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000044,0.000040,0.000166,0.000000,0.000000,0.000364,0.210633,-0.000503,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000044,0.000039,0.000167,0.000000,0.000000,0.000360,0.210138,-0.000495,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000124,0.000043,0.000039,0.000168,0.000117,0.000117,0.000355,0.209536,-0.000601,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000042,0.000038,0.000168,0.000358,0.000358,0.000350,0.208705,-0.000831,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000042,0.000036,0.000168,0.000515,0.000515,0.000345,0.207732,-0.000973,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000041,0.000035,0.000169,0.000616,0.000616,0.000338,0.206674,-0.001058,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000040,0.000034,0.000169,0.000678,0.000678,0.000332,0.205571,-0.001103,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000039,0.000032,0.000169,0.000642,0.000642,0.000325,0.204521,-0.001050,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000039,0.000031,0.000169,0.000557,0.000557,0.000318,0.203571,-0.000951,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000038,0.000030,0.000169,0.000460,0.000460,0.000310,0.202730,-0.000841,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000037,0.000029,0.000170,0.000382,0.000382,0.000303,0.201980,-0.000750,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000036,0.000028,0.000170,0.000289,0.000289,0.000295,0.201332,-0.000647,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000035,0.000028,0.000170,0.000159,0.000159,0.000288,0.200823,-0.000509,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000034,0.000027,0.000170,0.000040,0.000040,0.000281,0.200438,-0.000385,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000033,0.000027,0.000170,0.000000,0.000000,0.000275,0.200098,-0.000339,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000033,0.000027,0.000171,0.000000,0.000000,0.000269,0.199764,-0.000334,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000032,0.000026,0.000171,0.000000,0.000000,0.000263,0.199435,-0.000329,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000031,0.000026,0.000171,0.000000,0.000000,0.000258,0.199111,-0.000324,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000031,0.000025,0.000172,0.000000,0.000000,0.000252,0.198791,-0.000319,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000030,0.000025,0.000172,0.000000,0.000000,0.000247,0.198477,-0.000314,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000029,0.000025,0.000173,0.000000,0.000000,0.000242,0.198168,-0.000310,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000029,0.000024,0.000173,0.000000,0.000000,0.000238,0.197863,-0.000305,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000028,0.000024,0.000173,0.000000,0.000000,0.000233,0.197563,-0.000300,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000028,0.000023,0.000174,0.000000,0.000000,0.000229,0.197267,-0.000296,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000027,0.000023,0.000174,0.000000,0.000000,0.000225,0.196976,-0.000291,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000027,0.000023,0.000175,0.000000,0.000000,0.000221,0.196690,-0.000287,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000026,0.000022,0.000175,0.000113,0.000113,0.000217,0.196296,-0.000393,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000026,0.000021,0.000176,0.000350,0.000350,0.000213,0.195675,-0.000621,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000025,0.000021,0.000176,0.000508,0.000508,0.000208,0.194909,-0.000767,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000025,0.000019,0.000177,0.000613,0.000613,0.000203,0.194050,-0.000858,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000024,0.000018,0.000177,0.000674,0.000674,0.000197,0.193145,-0.000905,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000023,0.000017,0.000177,0.000635,0.000635,0.000191,0.192291,-0.000854,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000022,0.000016,0.000177,0.000541,0.000541,0.000185,0.191543,-0.000748,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000022,0.000016,0.000177,0.000474,0.000474,0.000179,0.190873,-0.000671,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000021,0.000015,0.000178,0.000395,0.000395,0.000173,0.190291,-0.000582,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000020,0.000014,0.000178,0.000297,0.000297,0.000167,0.189814,-0.000477,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000020,0.000014,0.000178,0.000152,0.000152,0.000161,0.189487,-0.000327,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000100,0.000001,0.000001,0.000001,0.000159,0.000019,0.000014,0.000179,0.000009,0.000009,0.000156,0.189404,-0.000083,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000100,0.000001,0.000001,0.000001,0.000160,0.000018,0.000014,0.000180,0.000000,0.000000,0.000152,0.189331,-0.000073,1.000000,0.000001 +171,2022-08-08 03:00:00,0.000100,0.000001,0.000001,0.000001,0.000161,0.000018,0.000014,0.000180,0.000000,0.000000,0.000147,0.189258,-0.000072,1.000000,0.000001 +172,2022-08-08 04:00:00,0.000100,0.000001,0.000001,0.000001,0.000162,0.000017,0.000013,0.000181,0.000000,0.000000,0.000143,0.189187,-0.000071,1.000000,0.000001 +173,2022-08-08 05:00:00,0.000176,0.000002,0.000004,0.000002,0.000163,0.000017,0.000013,0.000182,0.000000,0.000000,0.000140,0.189190,0.000003,1.000000,0.000002 +174,2022-08-08 06:00:00,0.000100,0.000002,0.000001,0.000002,0.000164,0.000017,0.000013,0.000182,0.000000,0.000000,0.000137,0.189119,-0.000070,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000165,0.000016,0.000013,0.000182,0.000000,0.000000,0.000134,0.188953,-0.000166,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000016,0.000013,0.000182,0.000000,0.000000,0.000131,0.188789,-0.000164,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000016,0.000013,0.000182,0.000000,0.000000,0.000128,0.188628,-0.000161,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000015,0.000013,0.000183,0.000000,0.000000,0.000126,0.188469,-0.000159,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000015,0.000012,0.000183,0.000000,0.000000,0.000123,0.188312,-0.000157,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000015,0.000012,0.000184,0.000000,0.000000,0.000121,0.188158,-0.000154,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000014,0.000012,0.000184,0.000000,0.000000,0.000118,0.188006,-0.000152,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000171,0.000014,0.000012,0.000185,0.000099,0.000099,0.000116,0.187760,-0.000246,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000172,0.000014,0.000011,0.000185,0.000338,0.000338,0.000114,0.187283,-0.000478,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000013,0.000010,0.000186,0.000502,0.000502,0.000111,0.186650,-0.000633,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000013,0.000009,0.000186,0.000603,0.000603,0.000107,0.185928,-0.000722,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000012,0.000009,0.000187,0.000679,0.000679,0.000103,0.185141,-0.000787,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000012,0.000008,0.000187,0.000636,0.000636,0.000099,0.184409,-0.000732,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000011,0.000007,0.000187,0.000540,0.000540,0.000094,0.183782,-0.000627,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000011,0.000006,0.000188,0.000486,0.000486,0.000090,0.183218,-0.000564,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000010,0.000006,0.000188,0.000402,0.000402,0.000085,0.182746,-0.000472,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000010,0.000005,0.000188,0.000303,0.000303,0.000080,0.182378,-0.000368,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000009,0.000005,0.000188,0.000172,0.000172,0.000076,0.182145,-0.000233,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000009,0.000005,0.000189,0.000032,0.000032,0.000072,0.182054,-0.000091,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000137,0.000001,0.000002,0.000001,0.000181,0.000008,0.000005,0.000190,0.000000,0.000000,0.000068,0.182128,0.000074,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000015,0.000001,0.000000,0.000001,0.000181,0.000008,0.000005,0.000190,0.000000,0.000000,0.000065,0.182084,-0.000045,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000008,0.000005,0.000190,0.000000,0.000000,0.000062,0.182025,-0.000059,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000007,0.000005,0.000190,0.000000,0.000000,0.000060,0.181967,-0.000058,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000007,0.000005,0.000191,0.000000,0.000000,0.000057,0.181910,-0.000057,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000007,0.000004,0.000191,0.000000,0.000000,0.000055,0.181853,-0.000056,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000006,0.000004,0.000192,0.000000,0.000000,0.000053,0.181798,-0.000055,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000006,0.000004,0.000192,0.000000,0.000000,0.000051,0.181743,-0.000055,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000006,0.000004,0.000193,0.000000,0.000000,0.000050,0.181690,-0.000054,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000006,0.000004,0.000193,0.000000,0.000000,0.000048,0.181637,-0.000053,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000006,0.000004,0.000194,0.000000,0.000000,0.000046,0.181585,-0.000052,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000005,0.000004,0.000194,0.000000,0.000000,0.000045,0.181534,-0.000051,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000190,0.000005,0.000004,0.000195,0.000109,0.000109,0.000044,0.181378,-0.000156,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620839.csv b/test/channel_loss/channel_forcing/et/cat-2620839.csv new file mode 100644 index 000000000..d535bb350 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620839.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000279,0.000001,0.000002,0.000001,0.000000,0.001474,0.000389,0.001475,0.000180,0.000180,0.010511,0.434380,-0.004294,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000000,0.001324,0.000383,0.001324,0.000053,0.000053,0.009570,0.430064,-0.004315,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001196,0.000377,0.001197,0.000000,0.000000,0.008751,0.425865,-0.004199,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001087,0.000372,0.001087,0.000000,0.000000,0.008036,0.421729,-0.004136,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.000993,0.000366,0.000994,0.000000,0.000000,0.007409,0.417655,-0.004074,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000066,0.000001,0.000001,0.000001,0.000000,0.000912,0.000361,0.000913,0.000000,0.000000,0.006858,0.413645,-0.004011,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000078,0.000001,0.000001,0.000001,0.000001,0.000841,0.000355,0.000843,0.000000,0.000000,0.006372,0.409706,-0.003939,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000780,0.000350,0.000781,0.000000,0.000000,0.005943,0.405751,-0.003955,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000726,0.000345,0.000727,0.000000,0.000000,0.005562,0.401855,-0.003896,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000678,0.000340,0.000680,0.000000,0.000000,0.005223,0.398017,-0.003838,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000636,0.000334,0.000638,0.000000,0.000000,0.004921,0.394237,-0.003780,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000599,0.000329,0.000601,0.000000,0.000000,0.004651,0.390514,-0.003723,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000566,0.000325,0.000568,0.000000,0.000000,0.004410,0.386847,-0.003667,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000537,0.000320,0.000539,0.000000,0.000000,0.004193,0.383234,-0.003612,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000510,0.000315,0.000513,0.000131,0.000131,0.003997,0.379547,-0.003687,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000486,0.000309,0.000490,0.000371,0.000371,0.003820,0.375679,-0.003869,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000465,0.000304,0.000469,0.000526,0.000526,0.003659,0.371716,-0.003963,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000445,0.000299,0.000450,0.000627,0.000627,0.003513,0.367713,-0.004003,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000428,0.000293,0.000433,0.000577,0.000577,0.003379,0.363819,-0.003894,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000192,0.000000,0.000000,0.000000,0.000005,0.000411,0.000289,0.000417,0.000537,0.000537,0.003256,0.360212,-0.003607,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000192,0.000000,0.000000,0.000000,0.000006,0.000396,0.000284,0.000403,0.000459,0.000459,0.003143,0.356736,-0.003476,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000196,0.000000,0.000000,0.000000,0.000007,0.000383,0.000279,0.000390,0.000364,0.000364,0.003040,0.353410,-0.003326,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000192,0.000000,0.000000,0.000000,0.000007,0.000370,0.000275,0.000378,0.000301,0.000301,0.002945,0.350191,-0.003219,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000241,0.000000,0.000000,0.000000,0.000008,0.000359,0.000271,0.000367,0.000235,0.000235,0.002857,0.347135,-0.003056,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000500,0.000010,0.000017,0.000010,0.000009,0.000348,0.000267,0.000366,0.000140,0.000140,0.002776,0.344457,-0.002678,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000861,0.000049,0.000081,0.000049,0.000009,0.000339,0.000264,0.000397,0.000053,0.000053,0.002701,0.342196,-0.002261,1.000000,0.000040 +26,2022-08-02 02:00:00,0.000721,0.000060,0.000065,0.000060,0.000010,0.000330,0.000261,0.000399,0.000000,0.000000,0.002633,0.339898,-0.002297,1.000000,0.000046 +27,2022-08-02 03:00:00,0.000703,0.000067,0.000062,0.000067,0.000011,0.000322,0.000258,0.000399,0.000000,0.000000,0.002570,0.337622,-0.002277,1.000000,0.000041 +28,2022-08-02 04:00:00,0.000710,0.000063,0.000063,0.000063,0.000011,0.000314,0.000255,0.000388,0.000000,0.000000,0.002511,0.335385,-0.002237,1.000000,0.000041 +29,2022-08-02 05:00:00,0.000714,0.000063,0.000063,0.000063,0.000012,0.000307,0.000252,0.000382,0.000000,0.000000,0.002456,0.333186,-0.002200,1.000000,0.000041 +30,2022-08-02 06:00:00,0.000700,0.000062,0.000061,0.000062,0.000013,0.000300,0.000249,0.000375,0.000000,0.000000,0.002405,0.331008,-0.002178,1.000000,0.000040 +31,2022-08-02 07:00:00,0.000000,0.000028,0.000000,0.000028,0.000014,0.000294,0.000246,0.000336,0.000000,0.000000,0.002357,0.328233,-0.002775,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000015,0.000288,0.000242,0.000315,0.000000,0.000000,0.002310,0.325500,-0.002733,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000282,0.000238,0.000298,0.000000,0.000000,0.002266,0.322808,-0.002692,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000277,0.000235,0.000293,0.000000,0.000000,0.002224,0.320156,-0.002652,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000272,0.000231,0.000289,0.000000,0.000000,0.002183,0.317545,-0.002612,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000267,0.000228,0.000285,0.000000,0.000000,0.002144,0.314972,-0.002573,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000001,0.000001,0.000019,0.000262,0.000224,0.000281,0.000000,0.000000,0.002107,0.312535,-0.002437,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000100,0.000000,0.000000,0.000000,0.000020,0.000257,0.000221,0.000277,0.000102,0.000102,0.002070,0.310035,-0.002500,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000100,0.000000,0.000000,0.000000,0.000021,0.000253,0.000217,0.000274,0.000341,0.000341,0.002035,0.307337,-0.002698,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000100,0.000000,0.000000,0.000000,0.000022,0.000248,0.000214,0.000270,0.000483,0.000483,0.002000,0.304540,-0.002797,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000100,0.000000,0.000000,0.000000,0.000023,0.000244,0.000210,0.000267,0.000578,0.000578,0.001966,0.301691,-0.002849,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000227,0.000000,0.000000,0.000000,0.000024,0.000240,0.000206,0.000263,0.000669,0.000669,0.001932,0.298921,-0.002770,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000235,0.000202,0.000260,0.000631,0.000631,0.001899,0.296006,-0.002915,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000231,0.000198,0.000257,0.000531,0.000531,0.001866,0.293233,-0.002773,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000227,0.000195,0.000254,0.000490,0.000490,0.001834,0.290542,-0.002691,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000223,0.000191,0.000251,0.000409,0.000409,0.001802,0.287972,-0.002571,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000219,0.000188,0.000248,0.000305,0.000305,0.001771,0.285542,-0.002430,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000215,0.000185,0.000245,0.000181,0.000181,0.001740,0.283271,-0.002271,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000212,0.000182,0.000242,0.000034,0.000034,0.001711,0.281179,-0.002092,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000208,0.000179,0.000240,0.000000,0.000000,0.001682,0.279152,-0.002027,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000204,0.000177,0.000237,0.000000,0.000000,0.001654,0.277155,-0.001997,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000201,0.000174,0.000235,0.000000,0.000000,0.001628,0.275188,-0.001967,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000198,0.000171,0.000233,0.000000,0.000000,0.001601,0.273251,-0.001937,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000194,0.000169,0.000231,0.000000,0.000000,0.001576,0.271343,-0.001908,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000191,0.000166,0.000229,0.000000,0.000000,0.001551,0.269463,-0.001880,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000188,0.000164,0.000227,0.000000,0.000000,0.001526,0.267612,-0.001851,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000185,0.000161,0.000225,0.000000,0.000000,0.001502,0.265788,-0.001824,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000182,0.000159,0.000223,0.000000,0.000000,0.001479,0.263992,-0.001796,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000179,0.000157,0.000221,0.000000,0.000000,0.001456,0.262223,-0.001769,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000177,0.000154,0.000220,0.000000,0.000000,0.001434,0.260480,-0.001743,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000174,0.000152,0.000218,0.000000,0.000000,0.001412,0.258763,-0.001717,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000171,0.000149,0.000216,0.000127,0.000127,0.001390,0.256947,-0.001816,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000168,0.000147,0.000215,0.000379,0.000379,0.001368,0.254911,-0.002036,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000166,0.000144,0.000213,0.000534,0.000534,0.001346,0.252751,-0.002159,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000163,0.000141,0.000212,0.000630,0.000630,0.001324,0.250530,-0.002222,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000160,0.000138,0.000210,0.000637,0.000637,0.001302,0.248335,-0.002194,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000157,0.000135,0.000209,0.000586,0.000586,0.001280,0.246224,-0.002111,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000299,0.000000,0.000000,0.000000,0.000052,0.000155,0.000133,0.000207,0.000506,0.000506,0.001258,0.244518,-0.001706,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000115,0.000000,0.000000,0.000000,0.000054,0.000152,0.000130,0.000206,0.000465,0.000465,0.001236,0.242696,-0.001822,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000149,0.000128,0.000204,0.000384,0.000384,0.001215,0.240868,-0.001828,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000147,0.000125,0.000203,0.000287,0.000287,0.001194,0.239163,-0.001705,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000144,0.000123,0.000201,0.000162,0.000162,0.001173,0.237607,-0.001556,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000142,0.000121,0.000200,0.000044,0.000044,0.001153,0.236190,-0.001417,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000139,0.000120,0.000199,0.000000,0.000000,0.001134,0.234837,-0.001352,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000137,0.000118,0.000198,0.000000,0.000000,0.001115,0.233506,-0.001332,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000134,0.000116,0.000197,0.000000,0.000000,0.001096,0.232194,-0.001312,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000132,0.000114,0.000196,0.000000,0.000000,0.001079,0.230901,-0.001292,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000130,0.000113,0.000195,0.000000,0.000000,0.001061,0.229628,-0.001273,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000128,0.000111,0.000194,0.000000,0.000000,0.001044,0.228375,-0.001254,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000126,0.000109,0.000193,0.000000,0.000000,0.001028,0.227140,-0.001235,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000124,0.000108,0.000192,0.000000,0.000000,0.001011,0.225923,-0.001216,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000122,0.000106,0.000192,0.000000,0.000000,0.000995,0.224725,-0.001198,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000120,0.000104,0.000191,0.000000,0.000000,0.000980,0.223545,-0.001180,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000118,0.000103,0.000190,0.000000,0.000000,0.000965,0.222382,-0.001163,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000116,0.000101,0.000190,0.000000,0.000000,0.000950,0.221237,-0.001145,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000114,0.000100,0.000189,0.000124,0.000124,0.000935,0.219987,-0.001250,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000113,0.000098,0.000189,0.000375,0.000375,0.000920,0.218509,-0.001478,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000111,0.000095,0.000188,0.000533,0.000533,0.000905,0.216897,-0.001612,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000109,0.000093,0.000187,0.000631,0.000631,0.000889,0.215213,-0.001684,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000107,0.000091,0.000187,0.000685,0.000685,0.000873,0.213500,-0.001713,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000105,0.000089,0.000186,0.000662,0.000662,0.000857,0.211837,-0.001663,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000103,0.000087,0.000185,0.000581,0.000581,0.000841,0.210278,-0.001559,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000101,0.000085,0.000184,0.000461,0.000461,0.000825,0.208860,-0.001418,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000099,0.000083,0.000184,0.000385,0.000385,0.000809,0.207539,-0.001322,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000097,0.000081,0.000183,0.000288,0.000288,0.000793,0.206333,-0.001206,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000095,0.000080,0.000182,0.000186,0.000186,0.000778,0.205246,-0.001087,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000204,0.000001,0.000002,0.000001,0.000089,0.000093,0.000079,0.000183,0.000058,0.000058,0.000764,0.204499,-0.000746,1.000000,0.000001 +98,2022-08-05 02:00:00,0.000223,0.000004,0.000005,0.000004,0.000090,0.000092,0.000078,0.000185,0.000000,0.000000,0.000750,0.203837,-0.000662,1.000000,0.000003 +99,2022-08-05 03:00:00,0.000266,0.000006,0.000008,0.000006,0.000091,0.000090,0.000077,0.000187,0.000000,0.000000,0.000737,0.203225,-0.000612,1.000000,0.000004 +100,2022-08-05 04:00:00,0.000290,0.000008,0.000009,0.000008,0.000092,0.000088,0.000076,0.000189,0.000000,0.000000,0.000725,0.202644,-0.000581,1.000000,0.000006 +101,2022-08-05 05:00:00,0.000290,0.000009,0.000009,0.000009,0.000094,0.000087,0.000075,0.000189,0.000000,0.000000,0.000713,0.202071,-0.000572,1.000000,0.000006 +102,2022-08-05 06:00:00,0.000290,0.000009,0.000009,0.000009,0.000095,0.000086,0.000075,0.000189,0.000000,0.000000,0.000702,0.201508,-0.000564,1.000000,0.000006 +103,2022-08-05 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000096,0.000084,0.000074,0.000184,0.000000,0.000000,0.000692,0.200676,-0.000832,1.000000,0.000002 +104,2022-08-05 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000097,0.000083,0.000073,0.000182,0.000000,0.000000,0.000681,0.199856,-0.000819,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000082,0.000071,0.000180,0.000000,0.000000,0.000671,0.199049,-0.000807,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000081,0.000070,0.000180,0.000000,0.000000,0.000661,0.198254,-0.000795,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000079,0.000069,0.000180,0.000000,0.000000,0.000651,0.197471,-0.000783,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000078,0.000068,0.000180,0.000000,0.000000,0.000641,0.196700,-0.000771,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000077,0.000067,0.000180,0.000000,0.000000,0.000631,0.195940,-0.000760,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000076,0.000066,0.000181,0.000135,0.000135,0.000621,0.195059,-0.000881,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000074,0.000065,0.000181,0.000377,0.000377,0.000612,0.193952,-0.001107,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000073,0.000063,0.000181,0.000531,0.000531,0.000601,0.192710,-0.001242,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000072,0.000061,0.000180,0.000633,0.000633,0.000590,0.191386,-0.001324,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000071,0.000059,0.000180,0.000597,0.000597,0.000579,0.190118,-0.001269,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000120,0.000000,0.000000,0.000000,0.000111,0.000069,0.000058,0.000180,0.000564,0.000564,0.000568,0.189020,-0.001098,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000219,0.000000,0.000000,0.000000,0.000112,0.000068,0.000057,0.000180,0.000481,0.000481,0.000557,0.188118,-0.000902,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000113,0.000066,0.000055,0.000180,0.000414,0.000414,0.000546,0.187203,-0.000915,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000115,0.000065,0.000054,0.000180,0.000349,0.000349,0.000535,0.186366,-0.000837,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000116,0.000064,0.000053,0.000180,0.000260,0.000260,0.000525,0.185691,-0.000675,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000117,0.000063,0.000053,0.000180,0.000171,0.000171,0.000515,0.185052,-0.000639,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000611,0.000017,0.000031,0.000017,0.000118,0.000062,0.000052,0.000197,0.000059,0.000059,0.000506,0.184981,-0.000072,1.000000,0.000014 +122,2022-08-06 02:00:00,0.000935,0.000054,0.000085,0.000054,0.000119,0.000061,0.000053,0.000234,0.000000,0.000000,0.000498,0.185234,0.000253,1.000000,0.000044 +123,2022-08-06 03:00:00,0.000741,0.000057,0.000054,0.000057,0.000121,0.000060,0.000053,0.000238,0.000000,0.000000,0.000491,0.185323,0.000089,1.000000,0.000041 +124,2022-08-06 04:00:00,0.000663,0.000055,0.000044,0.000055,0.000122,0.000059,0.000053,0.000236,0.000000,0.000000,0.000485,0.185343,0.000021,1.000000,0.000031 +125,2022-08-06 05:00:00,0.000667,0.000046,0.000044,0.000046,0.000123,0.000058,0.000053,0.000228,0.000000,0.000000,0.000480,0.185367,0.000024,1.000000,0.000029 +126,2022-08-06 06:00:00,0.000719,0.000048,0.000051,0.000048,0.000124,0.000058,0.000053,0.000230,0.000000,0.000000,0.000475,0.185436,0.000068,1.000000,0.000032 +127,2022-08-06 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000125,0.000057,0.000052,0.000204,0.000000,0.000000,0.000470,0.184845,-0.000591,1.000000,0.000010 +128,2022-08-06 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000127,0.000057,0.000051,0.000193,0.000000,0.000000,0.000465,0.184263,-0.000582,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000056,0.000051,0.000184,0.000000,0.000000,0.000460,0.183690,-0.000573,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000055,0.000050,0.000184,0.000000,0.000000,0.000455,0.183125,-0.000565,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000055,0.000049,0.000185,0.000000,0.000000,0.000449,0.182569,-0.000556,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000054,0.000048,0.000185,0.000000,0.000000,0.000444,0.182021,-0.000548,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000053,0.000048,0.000186,0.000000,0.000000,0.000438,0.181482,-0.000540,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000053,0.000047,0.000186,0.000120,0.000120,0.000433,0.180831,-0.000650,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000052,0.000046,0.000187,0.000365,0.000365,0.000426,0.179951,-0.000881,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000051,0.000044,0.000187,0.000522,0.000522,0.000420,0.178928,-0.001022,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000050,0.000043,0.000187,0.000621,0.000621,0.000412,0.177823,-0.001105,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000049,0.000041,0.000187,0.000686,0.000686,0.000405,0.176671,-0.001152,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000048,0.000040,0.000188,0.000654,0.000654,0.000396,0.175568,-0.001103,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000047,0.000038,0.000188,0.000566,0.000566,0.000388,0.174568,-0.001000,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000046,0.000037,0.000188,0.000468,0.000468,0.000379,0.173680,-0.000889,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000045,0.000036,0.000188,0.000389,0.000389,0.000370,0.172882,-0.000798,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000044,0.000035,0.000188,0.000294,0.000294,0.000361,0.172190,-0.000692,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000043,0.000034,0.000188,0.000165,0.000165,0.000353,0.171636,-0.000554,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000042,0.000034,0.000188,0.000043,0.000043,0.000345,0.171209,-0.000427,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000041,0.000033,0.000188,0.000000,0.000000,0.000337,0.170832,-0.000377,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000040,0.000033,0.000189,0.000000,0.000000,0.000330,0.170460,-0.000372,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000039,0.000032,0.000189,0.000000,0.000000,0.000323,0.170094,-0.000366,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000038,0.000032,0.000189,0.000000,0.000000,0.000317,0.169733,-0.000361,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000038,0.000031,0.000189,0.000000,0.000000,0.000311,0.169378,-0.000355,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000037,0.000031,0.000190,0.000000,0.000000,0.000305,0.169028,-0.000350,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000036,0.000030,0.000190,0.000000,0.000000,0.000299,0.168683,-0.000345,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000036,0.000030,0.000191,0.000000,0.000000,0.000293,0.168344,-0.000339,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000035,0.000030,0.000191,0.000000,0.000000,0.000288,0.168009,-0.000334,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000034,0.000029,0.000191,0.000000,0.000000,0.000283,0.167680,-0.000329,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000034,0.000029,0.000192,0.000000,0.000000,0.000278,0.167356,-0.000324,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000033,0.000028,0.000192,0.000000,0.000000,0.000273,0.167036,-0.000320,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000033,0.000028,0.000193,0.000116,0.000116,0.000268,0.166607,-0.000429,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000032,0.000027,0.000193,0.000359,0.000359,0.000263,0.165945,-0.000662,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000031,0.000026,0.000194,0.000515,0.000515,0.000258,0.165139,-0.000806,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000031,0.000025,0.000194,0.000618,0.000618,0.000252,0.164243,-0.000895,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000030,0.000023,0.000194,0.000682,0.000682,0.000245,0.163299,-0.000944,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000029,0.000022,0.000194,0.000649,0.000649,0.000238,0.162401,-0.000898,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000028,0.000021,0.000195,0.000552,0.000552,0.000231,0.161612,-0.000789,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000027,0.000020,0.000195,0.000485,0.000485,0.000224,0.160901,-0.000711,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000026,0.000019,0.000195,0.000405,0.000405,0.000217,0.160280,-0.000621,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000025,0.000018,0.000195,0.000304,0.000304,0.000210,0.159767,-0.000513,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000025,0.000018,0.000195,0.000158,0.000158,0.000203,0.159405,-0.000361,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000172,0.000024,0.000018,0.000196,0.000011,0.000011,0.000197,0.159256,-0.000149,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000063,0.000000,0.000000,0.000000,0.000173,0.000023,0.000018,0.000196,0.000000,0.000000,0.000192,0.159120,-0.000136,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000063,0.000000,0.000000,0.000000,0.000173,0.000023,0.000017,0.000196,0.000000,0.000000,0.000187,0.158985,-0.000134,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000063,0.000000,0.000000,0.000000,0.000174,0.000022,0.000017,0.000197,0.000000,0.000000,0.000182,0.158853,-0.000132,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000184,0.000002,0.000003,0.000002,0.000175,0.000021,0.000017,0.000199,0.000000,0.000000,0.000177,0.158839,-0.000014,1.000000,0.000002 +174,2022-08-08 06:00:00,0.000097,0.000001,0.000001,0.000001,0.000176,0.000021,0.000017,0.000199,0.000000,0.000000,0.000174,0.158742,-0.000097,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000177,0.000021,0.000017,0.000199,0.000000,0.000000,0.000170,0.158552,-0.000190,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000020,0.000017,0.000199,0.000000,0.000000,0.000166,0.158365,-0.000188,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000020,0.000016,0.000199,0.000000,0.000000,0.000163,0.158180,-0.000185,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000019,0.000016,0.000200,0.000000,0.000000,0.000160,0.157998,-0.000182,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000019,0.000016,0.000200,0.000000,0.000000,0.000157,0.157819,-0.000179,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000019,0.000016,0.000201,0.000000,0.000000,0.000154,0.157642,-0.000177,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000018,0.000015,0.000201,0.000000,0.000000,0.000151,0.157468,-0.000174,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000018,0.000015,0.000202,0.000101,0.000101,0.000148,0.157198,-0.000270,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000018,0.000014,0.000202,0.000347,0.000347,0.000145,0.156689,-0.000509,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000017,0.000013,0.000203,0.000511,0.000511,0.000141,0.156026,-0.000663,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000017,0.000012,0.000203,0.000611,0.000611,0.000137,0.155274,-0.000752,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000016,0.000011,0.000204,0.000687,0.000687,0.000132,0.154459,-0.000815,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000015,0.000010,0.000204,0.000650,0.000650,0.000127,0.153693,-0.000766,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000015,0.000009,0.000204,0.000554,0.000554,0.000122,0.153032,-0.000661,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000014,0.000009,0.000204,0.000496,0.000496,0.000116,0.152439,-0.000593,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000013,0.000008,0.000204,0.000413,0.000413,0.000111,0.151937,-0.000503,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000013,0.000007,0.000205,0.000310,0.000310,0.000105,0.151543,-0.000394,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000012,0.000007,0.000205,0.000178,0.000178,0.000100,0.151285,-0.000258,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000012,0.000007,0.000205,0.000035,0.000035,0.000096,0.151172,-0.000113,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000011,0.000007,0.000206,0.000000,0.000000,0.000091,0.151096,-0.000076,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000011,0.000007,0.000206,0.000000,0.000000,0.000088,0.151020,-0.000076,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000010,0.000007,0.000206,0.000000,0.000000,0.000084,0.150946,-0.000075,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000010,0.000006,0.000207,0.000000,0.000000,0.000081,0.150872,-0.000073,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000009,0.000006,0.000207,0.000000,0.000000,0.000078,0.150800,-0.000072,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000009,0.000006,0.000208,0.000000,0.000000,0.000075,0.150729,-0.000071,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000009,0.000006,0.000208,0.000000,0.000000,0.000072,0.150659,-0.000070,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000008,0.000006,0.000209,0.000000,0.000000,0.000070,0.150590,-0.000069,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000008,0.000006,0.000209,0.000000,0.000000,0.000068,0.150522,-0.000068,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000008,0.000006,0.000210,0.000000,0.000000,0.000066,0.150455,-0.000067,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000008,0.000006,0.000210,0.000000,0.000000,0.000064,0.150389,-0.000066,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000008,0.000006,0.000211,0.000000,0.000000,0.000062,0.150324,-0.000065,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000007,0.000006,0.000211,0.000112,0.000112,0.000060,0.150149,-0.000174,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620840.csv b/test/channel_loss/channel_forcing/et/cat-2620840.csv new file mode 100644 index 000000000..8e63693d3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620840.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000006,0.000003,0.000000,0.001454,0.000247,0.001458,0.000177,0.000177,0.010389,0.429640,-0.004652,1.000000,0.000003 +1,2022-08-01 01:00:00,0.000054,0.000002,0.000000,0.000002,0.000000,0.001288,0.000244,0.001290,0.000051,0.000051,0.009345,0.424922,-0.004718,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000054,0.000002,0.000001,0.000002,0.000000,0.001148,0.000241,0.001150,0.000000,0.000000,0.008438,0.420316,-0.004606,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000054,0.000001,0.000001,0.000001,0.000000,0.001028,0.000237,0.001029,0.000000,0.000000,0.007647,0.415771,-0.004545,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000054,0.000001,0.000001,0.000001,0.000000,0.000926,0.000234,0.000927,0.000000,0.000000,0.006955,0.411286,-0.004485,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000054,0.000001,0.000001,0.000001,0.000000,0.000838,0.000231,0.000839,0.000000,0.000000,0.006348,0.406861,-0.004425,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000054,0.000001,0.000001,0.000001,0.000001,0.000762,0.000228,0.000763,0.000000,0.000000,0.005815,0.402495,-0.004366,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000225,0.000697,0.000000,0.000000,0.005345,0.398134,-0.004361,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000638,0.000222,0.000639,0.000000,0.000000,0.004929,0.393832,-0.004303,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000587,0.000219,0.000588,0.000000,0.000000,0.004562,0.389586,-0.004246,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000542,0.000216,0.000544,0.000000,0.000000,0.004235,0.385397,-0.004189,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000503,0.000213,0.000505,0.000000,0.000000,0.003946,0.381263,-0.004134,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000469,0.000211,0.000471,0.000000,0.000000,0.003687,0.377184,-0.004079,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000438,0.000208,0.000441,0.000000,0.000000,0.003457,0.373159,-0.004025,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000411,0.000205,0.000414,0.000129,0.000129,0.003251,0.369060,-0.004099,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000386,0.000202,0.000390,0.000369,0.000369,0.003067,0.364779,-0.004281,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000365,0.000199,0.000369,0.000523,0.000523,0.002901,0.360403,-0.004376,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000345,0.000196,0.000350,0.000618,0.000618,0.002752,0.355991,-0.004412,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000328,0.000193,0.000333,0.000569,0.000569,0.002617,0.351687,-0.004305,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000185,0.000000,0.000000,0.000000,0.000006,0.000312,0.000190,0.000318,0.000527,0.000527,0.002495,0.347663,-0.004024,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000205,0.000000,0.000000,0.000000,0.000007,0.000298,0.000187,0.000305,0.000454,0.000454,0.002385,0.343784,-0.003879,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000008,0.000285,0.000185,0.000292,0.000363,0.000363,0.002285,0.340094,-0.003690,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000196,0.000000,0.000000,0.000000,0.000008,0.000273,0.000182,0.000281,0.000307,0.000307,0.002194,0.336452,-0.003641,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000263,0.000180,0.000272,0.000238,0.000238,0.002111,0.332982,-0.003470,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000212,0.000001,0.000001,0.000001,0.000010,0.000253,0.000178,0.000263,0.000142,0.000142,0.002036,0.329611,-0.003371,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000523,0.000029,0.000053,0.000029,0.000011,0.000244,0.000175,0.000284,0.000056,0.000056,0.001967,0.326626,-0.002985,1.000000,0.000024 +26,2022-08-02 02:00:00,0.000702,0.000075,0.000112,0.000075,0.000011,0.000236,0.000174,0.000323,0.000000,0.000000,0.001905,0.323853,-0.002773,1.000000,0.000061 +27,2022-08-02 03:00:00,0.000785,0.000114,0.000138,0.000114,0.000012,0.000229,0.000172,0.000355,0.000000,0.000000,0.001848,0.321175,-0.002678,1.000000,0.000084 +28,2022-08-02 04:00:00,0.000816,0.000138,0.000147,0.000138,0.000013,0.000222,0.000170,0.000373,0.000000,0.000000,0.001795,0.318554,-0.002621,1.000000,0.000094 +29,2022-08-02 05:00:00,0.000824,0.000146,0.000149,0.000146,0.000014,0.000216,0.000168,0.000376,0.000000,0.000000,0.001747,0.315973,-0.002581,1.000000,0.000096 +30,2022-08-02 06:00:00,0.000793,0.000143,0.000138,0.000143,0.000015,0.000211,0.000166,0.000368,0.000000,0.000000,0.001703,0.313406,-0.002567,1.000000,0.000092 +31,2022-08-02 07:00:00,0.000000,0.000064,0.000000,0.000064,0.000016,0.000205,0.000164,0.000285,0.000000,0.000000,0.001662,0.310227,-0.003179,1.000000,0.000028 +32,2022-08-02 08:00:00,0.000000,0.000028,0.000000,0.000028,0.000017,0.000200,0.000162,0.000245,0.000000,0.000000,0.001623,0.307091,-0.003136,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000196,0.000160,0.000214,0.000000,0.000000,0.001587,0.303996,-0.003095,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000192,0.000158,0.000210,0.000000,0.000000,0.001553,0.300943,-0.003054,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000188,0.000156,0.000207,0.000000,0.000000,0.001521,0.297929,-0.003013,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000184,0.000154,0.000204,0.000000,0.000000,0.001491,0.294956,-0.002973,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000040,0.000000,0.000000,0.000000,0.000022,0.000180,0.000151,0.000202,0.000000,0.000000,0.001462,0.292062,-0.002894,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000053,0.000000,0.000000,0.000000,0.000023,0.000177,0.000149,0.000200,0.000104,0.000104,0.001435,0.289116,-0.002945,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000052,0.000000,0.000000,0.000000,0.000024,0.000173,0.000147,0.000197,0.000337,0.000337,0.001409,0.285979,-0.003137,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000052,0.000000,0.000000,0.000000,0.000025,0.000170,0.000145,0.000195,0.000476,0.000476,0.001383,0.282747,-0.003232,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000051,0.000000,0.000000,0.000000,0.000026,0.000167,0.000143,0.000193,0.000566,0.000566,0.001359,0.279467,-0.003280,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000233,0.000000,0.000000,0.000000,0.000027,0.000164,0.000141,0.000192,0.000654,0.000654,0.001335,0.276323,-0.003144,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000161,0.000138,0.000190,0.000617,0.000617,0.001312,0.273028,-0.003295,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000159,0.000136,0.000188,0.000524,0.000524,0.001290,0.269868,-0.003160,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000156,0.000134,0.000187,0.000488,0.000488,0.001268,0.266786,-0.003082,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000153,0.000132,0.000185,0.000409,0.000409,0.001246,0.263822,-0.002964,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000151,0.000130,0.000184,0.000307,0.000307,0.001226,0.260998,-0.002824,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000148,0.000128,0.000183,0.000180,0.000180,0.001206,0.258337,-0.002661,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000146,0.000126,0.000181,0.000033,0.000033,0.001186,0.255856,-0.002481,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000143,0.000125,0.000180,0.000000,0.000000,0.001168,0.253441,-0.002415,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000141,0.000123,0.000179,0.000000,0.000000,0.001150,0.251058,-0.002383,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000139,0.000121,0.000178,0.000000,0.000000,0.001132,0.248707,-0.002351,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000137,0.000120,0.000178,0.000000,0.000000,0.001115,0.246387,-0.002320,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000135,0.000118,0.000177,0.000000,0.000000,0.001099,0.244098,-0.002289,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000133,0.000117,0.000176,0.000000,0.000000,0.001083,0.241839,-0.002259,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000131,0.000115,0.000175,0.000000,0.000000,0.001067,0.239610,-0.002229,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000129,0.000114,0.000175,0.000000,0.000000,0.001052,0.237410,-0.002199,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000127,0.000112,0.000174,0.000000,0.000000,0.001037,0.235240,-0.002170,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000125,0.000111,0.000174,0.000000,0.000000,0.001022,0.233098,-0.002141,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000123,0.000109,0.000174,0.000000,0.000000,0.001008,0.230985,-0.002113,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000122,0.000108,0.000173,0.000000,0.000000,0.000994,0.228900,-0.002085,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000120,0.000106,0.000173,0.000126,0.000126,0.000980,0.226718,-0.002182,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000118,0.000104,0.000173,0.000374,0.000374,0.000966,0.224321,-0.002398,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000117,0.000103,0.000172,0.000528,0.000528,0.000952,0.221803,-0.002518,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000115,0.000101,0.000172,0.000623,0.000623,0.000938,0.219225,-0.002578,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000113,0.000099,0.000172,0.000628,0.000628,0.000924,0.216676,-0.002549,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000111,0.000097,0.000171,0.000592,0.000592,0.000910,0.214197,-0.002479,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000482,0.000000,0.000000,0.000000,0.000061,0.000110,0.000096,0.000171,0.000500,0.000500,0.000897,0.212317,-0.001880,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000187,0.000000,0.000000,0.000000,0.000063,0.000108,0.000095,0.000171,0.000465,0.000465,0.000884,0.210205,-0.002112,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000106,0.000093,0.000171,0.000385,0.000385,0.000870,0.208016,-0.002189,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000105,0.000092,0.000171,0.000293,0.000293,0.000857,0.205947,-0.002069,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000103,0.000090,0.000170,0.000165,0.000165,0.000844,0.204032,-0.001915,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000102,0.000089,0.000170,0.000044,0.000044,0.000832,0.202261,-0.001771,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000100,0.000088,0.000170,0.000000,0.000000,0.000820,0.200557,-0.001704,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000099,0.000087,0.000170,0.000000,0.000000,0.000808,0.198875,-0.001681,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000097,0.000086,0.000170,0.000000,0.000000,0.000796,0.197216,-0.001659,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000096,0.000085,0.000170,0.000000,0.000000,0.000785,0.195579,-0.001637,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000094,0.000083,0.000171,0.000000,0.000000,0.000774,0.193964,-0.001615,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000093,0.000082,0.000171,0.000000,0.000000,0.000763,0.192370,-0.001594,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000092,0.000081,0.000171,0.000000,0.000000,0.000752,0.190798,-0.001573,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000091,0.000080,0.000171,0.000000,0.000000,0.000742,0.189246,-0.001552,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000089,0.000079,0.000171,0.000000,0.000000,0.000732,0.187714,-0.001531,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000088,0.000078,0.000172,0.000000,0.000000,0.000722,0.186204,-0.001511,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000087,0.000077,0.000172,0.000000,0.000000,0.000712,0.184713,-0.001491,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000086,0.000076,0.000172,0.000000,0.000000,0.000702,0.183242,-0.001471,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000084,0.000075,0.000173,0.000124,0.000124,0.000693,0.181668,-0.001574,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000083,0.000074,0.000173,0.000376,0.000376,0.000683,0.179866,-0.001801,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000082,0.000072,0.000173,0.000532,0.000532,0.000673,0.177935,-0.001932,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000081,0.000071,0.000174,0.000629,0.000629,0.000663,0.175933,-0.002002,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000080,0.000069,0.000174,0.000683,0.000683,0.000653,0.173904,-0.002029,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000078,0.000068,0.000174,0.000658,0.000658,0.000643,0.171927,-0.001977,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000077,0.000067,0.000175,0.000573,0.000573,0.000633,0.170061,-0.001866,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000076,0.000066,0.000175,0.000467,0.000467,0.000622,0.168324,-0.001737,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000075,0.000064,0.000175,0.000395,0.000395,0.000612,0.166680,-0.001643,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000073,0.000063,0.000175,0.000296,0.000296,0.000602,0.165156,-0.001524,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000072,0.000062,0.000176,0.000186,0.000186,0.000592,0.163761,-0.001395,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000094,0.000000,0.000000,0.000000,0.000105,0.000071,0.000062,0.000176,0.000058,0.000058,0.000583,0.162604,-0.001157,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000094,0.000001,0.000002,0.000001,0.000107,0.000070,0.000061,0.000178,0.000000,0.000000,0.000574,0.161517,-0.001087,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000094,0.000002,0.000002,0.000002,0.000108,0.000069,0.000060,0.000179,0.000000,0.000000,0.000565,0.160445,-0.001072,1.000000,0.000001 +100,2022-08-05 04:00:00,0.000094,0.000002,0.000002,0.000002,0.000110,0.000068,0.000059,0.000179,0.000000,0.000000,0.000557,0.159387,-0.001058,1.000000,0.000001 +101,2022-08-05 05:00:00,0.000094,0.000002,0.000002,0.000002,0.000111,0.000067,0.000059,0.000180,0.000000,0.000000,0.000549,0.158343,-0.001044,1.000000,0.000001 +102,2022-08-05 06:00:00,0.000094,0.000002,0.000002,0.000002,0.000113,0.000066,0.000058,0.000180,0.000000,0.000000,0.000541,0.157313,-0.001030,1.000000,0.000001 +103,2022-08-05 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000114,0.000065,0.000057,0.000180,0.000000,0.000000,0.000533,0.156205,-0.001108,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000064,0.000056,0.000180,0.000000,0.000000,0.000526,0.155112,-0.001093,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000063,0.000056,0.000181,0.000000,0.000000,0.000518,0.154034,-0.001078,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000062,0.000055,0.000181,0.000000,0.000000,0.000511,0.152970,-0.001064,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000061,0.000054,0.000182,0.000000,0.000000,0.000504,0.151920,-0.001050,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000060,0.000053,0.000183,0.000000,0.000000,0.000497,0.150884,-0.001036,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000060,0.000053,0.000183,0.000000,0.000000,0.000490,0.149862,-0.001022,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000059,0.000052,0.000184,0.000135,0.000135,0.000483,0.148720,-0.001142,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000058,0.000051,0.000185,0.000376,0.000376,0.000476,0.147355,-0.001365,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000057,0.000050,0.000185,0.000531,0.000531,0.000469,0.145856,-0.001499,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000056,0.000049,0.000186,0.000631,0.000631,0.000462,0.144277,-0.001578,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000055,0.000048,0.000186,0.000597,0.000597,0.000455,0.142753,-0.001524,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000054,0.000047,0.000187,0.000556,0.000556,0.000447,0.141415,-0.001338,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000140,0.000000,0.000000,0.000000,0.000134,0.000053,0.000046,0.000188,0.000478,0.000478,0.000440,0.140186,-0.001230,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000141,0.000000,0.000000,0.000000,0.000136,0.000053,0.000045,0.000188,0.000415,0.000415,0.000433,0.139036,-0.001150,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000137,0.000052,0.000045,0.000189,0.000351,0.000351,0.000425,0.137949,-0.001087,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000139,0.000051,0.000044,0.000190,0.000267,0.000267,0.000418,0.137021,-0.000927,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000050,0.000043,0.000190,0.000172,0.000172,0.000412,0.136138,-0.000883,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000648,0.000034,0.000062,0.000034,0.000142,0.000049,0.000043,0.000225,0.000060,0.000060,0.000405,0.135830,-0.000308,1.000000,0.000028 +122,2022-08-06 02:00:00,0.001155,0.000135,0.000218,0.000135,0.000143,0.000049,0.000043,0.000327,0.000000,0.000000,0.000400,0.135933,0.000102,1.000000,0.000110 +123,2022-08-06 03:00:00,0.000900,0.000143,0.000138,0.000143,0.000145,0.000048,0.000043,0.000336,0.000000,0.000000,0.000395,0.135861,-0.000072,1.000000,0.000106 +124,2022-08-06 04:00:00,0.000819,0.000142,0.000116,0.000142,0.000146,0.000047,0.000043,0.000336,0.000000,0.000000,0.000391,0.135732,-0.000129,1.000000,0.000080 +125,2022-08-06 05:00:00,0.000827,0.000121,0.000118,0.000121,0.000148,0.000047,0.000043,0.000316,0.000000,0.000000,0.000387,0.135611,-0.000121,1.000000,0.000076 +126,2022-08-06 06:00:00,0.000901,0.000129,0.000138,0.000129,0.000149,0.000046,0.000043,0.000324,0.000000,0.000000,0.000383,0.135543,-0.000067,1.000000,0.000086 +127,2022-08-06 07:00:00,0.000000,0.000058,0.000000,0.000058,0.000151,0.000046,0.000042,0.000255,0.000000,0.000000,0.000379,0.134725,-0.000819,1.000000,0.000028 +128,2022-08-06 08:00:00,0.000000,0.000028,0.000000,0.000028,0.000152,0.000046,0.000042,0.000225,0.000000,0.000000,0.000375,0.133917,-0.000808,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000045,0.000041,0.000199,0.000000,0.000000,0.000371,0.133120,-0.000797,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000045,0.000041,0.000200,0.000000,0.000000,0.000367,0.132333,-0.000787,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000044,0.000040,0.000201,0.000000,0.000000,0.000363,0.131557,-0.000776,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000044,0.000040,0.000202,0.000000,0.000000,0.000359,0.130791,-0.000766,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000043,0.000039,0.000203,0.000000,0.000000,0.000355,0.130035,-0.000756,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000043,0.000038,0.000204,0.000119,0.000119,0.000351,0.129172,-0.000863,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000042,0.000038,0.000205,0.000361,0.000361,0.000347,0.128082,-0.001090,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000041,0.000037,0.000206,0.000517,0.000517,0.000342,0.126853,-0.001229,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000041,0.000036,0.000206,0.000613,0.000613,0.000337,0.125545,-0.001308,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000040,0.000035,0.000207,0.000679,0.000679,0.000332,0.124188,-0.001356,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000040,0.000034,0.000208,0.000645,0.000645,0.000326,0.122883,-0.001305,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000033,0.000209,0.000560,0.000560,0.000320,0.121680,-0.001203,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000032,0.000209,0.000474,0.000474,0.000315,0.120577,-0.001103,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000037,0.000032,0.000210,0.000395,0.000395,0.000309,0.119567,-0.001010,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000037,0.000031,0.000211,0.000300,0.000300,0.000303,0.118664,-0.000903,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000036,0.000031,0.000212,0.000168,0.000168,0.000298,0.117903,-0.000761,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000035,0.000030,0.000212,0.000043,0.000043,0.000292,0.117276,-0.000628,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000035,0.000030,0.000213,0.000000,0.000000,0.000287,0.116699,-0.000576,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000029,0.000214,0.000000,0.000000,0.000282,0.116131,-0.000569,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000034,0.000029,0.000215,0.000000,0.000000,0.000278,0.115570,-0.000561,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000033,0.000029,0.000216,0.000000,0.000000,0.000273,0.115016,-0.000554,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000033,0.000028,0.000217,0.000000,0.000000,0.000269,0.114469,-0.000546,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000028,0.000217,0.000000,0.000000,0.000265,0.113930,-0.000539,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000027,0.000218,0.000000,0.000000,0.000260,0.113398,-0.000532,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000031,0.000027,0.000219,0.000000,0.000000,0.000256,0.112873,-0.000525,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000027,0.000220,0.000000,0.000000,0.000253,0.112355,-0.000518,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000026,0.000221,0.000000,0.000000,0.000249,0.111844,-0.000511,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000030,0.000026,0.000222,0.000000,0.000000,0.000245,0.111340,-0.000504,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000026,0.000223,0.000000,0.000000,0.000242,0.110842,-0.000498,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000029,0.000025,0.000224,0.000115,0.000115,0.000238,0.110238,-0.000604,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000028,0.000025,0.000225,0.000354,0.000354,0.000234,0.109406,-0.000833,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000024,0.000225,0.000510,0.000510,0.000230,0.108431,-0.000975,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000023,0.000226,0.000611,0.000611,0.000226,0.107368,-0.001062,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000023,0.000227,0.000675,0.000675,0.000222,0.106257,-0.001111,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000228,0.000637,0.000637,0.000217,0.105198,-0.001059,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000547,0.000547,0.000213,0.104242,-0.000955,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000020,0.000229,0.000488,0.000488,0.000208,0.103358,-0.000885,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000020,0.000230,0.000409,0.000409,0.000203,0.102562,-0.000795,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000019,0.000231,0.000309,0.000309,0.000199,0.101876,-0.000686,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000019,0.000231,0.000157,0.000157,0.000194,0.101349,-0.000527,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000033,0.000000,0.000000,0.000000,0.000209,0.000023,0.000019,0.000232,0.000011,0.000011,0.000190,0.101005,-0.000344,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000033,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000233,0.000000,0.000000,0.000186,0.100677,-0.000328,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000033,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000234,0.000000,0.000000,0.000182,0.100354,-0.000324,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000033,0.000000,0.000000,0.000000,0.000213,0.000022,0.000018,0.000235,0.000000,0.000000,0.000179,0.100034,-0.000319,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000033,0.000000,0.000000,0.000000,0.000214,0.000021,0.000018,0.000236,0.000000,0.000000,0.000176,0.099719,-0.000315,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000033,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000173,0.099408,-0.000311,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000237,0.000000,0.000000,0.000170,0.099068,-0.000339,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000017,0.000238,0.000000,0.000000,0.000167,0.098734,-0.000335,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000239,0.000000,0.000000,0.000164,0.098403,-0.000330,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000017,0.000240,0.000000,0.000000,0.000161,0.098077,-0.000326,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000017,0.000241,0.000000,0.000000,0.000159,0.097756,-0.000322,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000016,0.000242,0.000000,0.000000,0.000156,0.097438,-0.000317,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000016,0.000243,0.000000,0.000000,0.000154,0.097125,-0.000313,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000016,0.000244,0.000100,0.000000,0.000151,0.096816,-0.000309,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000016,0.000245,0.000344,0.000000,0.000149,0.096511,-0.000305,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000018,0.000016,0.000245,0.000505,0.000000,0.000147,0.096210,-0.000301,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000015,0.000246,0.000602,0.000000,0.000145,0.095913,-0.000297,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000015,0.000247,0.000679,0.000000,0.000142,0.095620,-0.000293,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000015,0.000248,0.000634,0.000000,0.000140,0.095331,-0.000289,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000249,0.000543,0.000000,0.000138,0.095046,-0.000285,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000015,0.000250,0.000494,0.000000,0.000136,0.094765,-0.000281,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000014,0.000251,0.000413,0.000000,0.000134,0.094487,-0.000278,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000014,0.000252,0.000313,0.000000,0.000133,0.094213,-0.000274,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000014,0.000253,0.000179,0.000000,0.000131,0.093942,-0.000270,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000014,0.000254,0.000035,0.000000,0.000129,0.093676,-0.000267,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000002,0.000000,0.000000,0.000000,0.000239,0.000015,0.000014,0.000255,0.000000,0.000000,0.000127,0.093414,-0.000261,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000013,0.000255,0.000000,0.000000,0.000125,0.093155,-0.000260,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000015,0.000013,0.000256,0.000000,0.000000,0.000124,0.092898,-0.000256,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000013,0.000257,0.000000,0.000000,0.000122,0.092645,-0.000253,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000013,0.000258,0.000000,0.000000,0.000120,0.092396,-0.000250,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000014,0.000013,0.000259,0.000000,0.000000,0.000119,0.092149,-0.000246,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000013,0.000260,0.000000,0.000000,0.000117,0.091906,-0.000243,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000012,0.000261,0.000000,0.000000,0.000115,0.091667,-0.000240,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000014,0.000012,0.000262,0.000000,0.000000,0.000114,0.091430,-0.000237,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000012,0.000262,0.000000,0.000000,0.000112,0.091197,-0.000233,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000013,0.000012,0.000263,0.000000,0.000000,0.000111,0.090966,-0.000230,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000012,0.000264,0.000000,0.000000,0.000109,0.090739,-0.000227,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000012,0.000265,0.000110,0.000000,0.000108,0.090515,-0.000224,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620841.csv b/test/channel_loss/channel_forcing/et/cat-2620841.csv new file mode 100644 index 000000000..521bb89a0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620841.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000311,0.000002,0.000004,0.000002,0.000000,0.001464,0.000317,0.001466,0.000180,0.000180,0.010449,0.433248,-0.004649,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000081,0.000001,0.000000,0.000001,0.000000,0.001306,0.000313,0.001307,0.000053,0.000053,0.009456,0.428565,-0.004683,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000074,0.000002,0.000001,0.000002,0.000000,0.001172,0.000308,0.001173,0.000000,0.000000,0.008593,0.423989,-0.004576,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000075,0.000001,0.000001,0.000001,0.000000,0.001057,0.000304,0.001058,0.000000,0.000000,0.007840,0.419476,-0.004513,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000078,0.000001,0.000001,0.000001,0.000000,0.000959,0.000300,0.000961,0.000000,0.000000,0.007181,0.415028,-0.004448,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000086,0.000001,0.000002,0.000001,0.000000,0.000875,0.000296,0.000876,0.000000,0.000000,0.006603,0.410647,-0.004381,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000090,0.000002,0.000002,0.000002,0.000001,0.000801,0.000292,0.000804,0.000000,0.000000,0.006094,0.406330,-0.004318,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000001,0.000738,0.000288,0.000739,0.000000,0.000000,0.005645,0.401983,-0.004346,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000682,0.000284,0.000683,0.000000,0.000000,0.005247,0.397696,-0.004287,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000633,0.000281,0.000634,0.000000,0.000000,0.004895,0.393467,-0.004229,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000590,0.000277,0.000591,0.000000,0.000000,0.004582,0.389295,-0.004172,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000552,0.000273,0.000554,0.000000,0.000000,0.004304,0.385180,-0.004115,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000518,0.000269,0.000521,0.000000,0.000000,0.004055,0.381121,-0.004059,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000488,0.000266,0.000491,0.000000,0.000000,0.003832,0.377116,-0.004004,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000262,0.000465,0.000131,0.000131,0.003633,0.373037,-0.004079,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000438,0.000258,0.000441,0.000372,0.000372,0.003454,0.368776,-0.004261,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000416,0.000254,0.000420,0.000526,0.000526,0.003292,0.364420,-0.004356,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000397,0.000250,0.000402,0.000625,0.000625,0.003145,0.360026,-0.004394,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000379,0.000246,0.000385,0.000575,0.000575,0.003012,0.355740,-0.004286,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000178,0.000000,0.000000,0.000000,0.000006,0.000363,0.000243,0.000370,0.000535,0.000535,0.002891,0.351728,-0.004013,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000191,0.000000,0.000000,0.000000,0.000007,0.000349,0.000239,0.000356,0.000457,0.000457,0.002781,0.347860,-0.003868,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000288,0.000000,0.000000,0.000000,0.000007,0.000336,0.000236,0.000343,0.000363,0.000363,0.002681,0.344232,-0.003628,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000290,0.000000,0.000000,0.000000,0.000008,0.000324,0.000232,0.000332,0.000304,0.000304,0.002589,0.340714,-0.003518,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000329,0.000001,0.000002,0.000001,0.000009,0.000313,0.000229,0.000323,0.000238,0.000238,0.002505,0.337345,-0.003368,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000657,0.000026,0.000046,0.000026,0.000010,0.000303,0.000227,0.000339,0.000141,0.000141,0.002429,0.334398,-0.002947,1.000000,0.000021 +25,2022-08-02 01:00:00,0.001022,0.000094,0.000150,0.000094,0.000010,0.000294,0.000224,0.000399,0.000055,0.000055,0.002359,0.331833,-0.002565,1.000000,0.000077 +26,2022-08-02 02:00:00,0.000790,0.000103,0.000103,0.000103,0.000011,0.000286,0.000222,0.000400,0.000000,0.000000,0.002295,0.329175,-0.002658,1.000000,0.000076 +27,2022-08-02 03:00:00,0.000758,0.000108,0.000095,0.000108,0.000012,0.000278,0.000220,0.000398,0.000000,0.000000,0.002236,0.326530,-0.002645,1.000000,0.000063 +28,2022-08-02 04:00:00,0.000767,0.000097,0.000096,0.000097,0.000013,0.000272,0.000217,0.000381,0.000000,0.000000,0.002181,0.323927,-0.002603,1.000000,0.000062 +29,2022-08-02 05:00:00,0.000768,0.000096,0.000096,0.000096,0.000014,0.000265,0.000215,0.000375,0.000000,0.000000,0.002131,0.321362,-0.002566,1.000000,0.000062 +30,2022-08-02 06:00:00,0.000715,0.000089,0.000084,0.000089,0.000015,0.000259,0.000212,0.000363,0.000000,0.000000,0.002085,0.318790,-0.002571,1.000000,0.000057 +31,2022-08-02 07:00:00,0.000000,0.000040,0.000000,0.000040,0.000015,0.000254,0.000210,0.000309,0.000000,0.000000,0.002041,0.315631,-0.003159,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000248,0.000207,0.000281,0.000000,0.000000,0.001999,0.312515,-0.003117,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000243,0.000204,0.000261,0.000000,0.000000,0.001960,0.309440,-0.003074,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000238,0.000201,0.000257,0.000000,0.000000,0.001923,0.306408,-0.003033,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000234,0.000198,0.000253,0.000000,0.000000,0.001887,0.303416,-0.002991,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000230,0.000196,0.000250,0.000000,0.000000,0.001853,0.300465,-0.002951,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000032,0.000000,0.000000,0.000000,0.000021,0.000226,0.000193,0.000247,0.000000,0.000000,0.001821,0.297586,-0.002880,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000032,0.000000,0.000000,0.000000,0.000022,0.000222,0.000190,0.000244,0.000103,0.000103,0.001790,0.294644,-0.002942,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000020,0.000000,0.000000,0.000000,0.000023,0.000218,0.000188,0.000241,0.000337,0.000337,0.001760,0.291499,-0.003145,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000020,0.000000,0.000000,0.000000,0.000025,0.000214,0.000185,0.000239,0.000477,0.000477,0.001730,0.288259,-0.003240,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000020,0.000000,0.000000,0.000000,0.000026,0.000210,0.000182,0.000236,0.000571,0.000571,0.001702,0.284970,-0.003289,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000199,0.000000,0.000000,0.000000,0.000027,0.000207,0.000179,0.000234,0.000662,0.000662,0.001674,0.281812,-0.003157,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000203,0.000176,0.000231,0.000625,0.000625,0.001646,0.278538,-0.003275,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000200,0.000173,0.000229,0.000525,0.000525,0.001619,0.275406,-0.003132,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000197,0.000170,0.000227,0.000485,0.000485,0.001592,0.272356,-0.003050,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000193,0.000167,0.000225,0.000408,0.000408,0.001567,0.269424,-0.002932,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000190,0.000165,0.000223,0.000306,0.000306,0.001541,0.266632,-0.002792,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000187,0.000163,0.000221,0.000182,0.000182,0.001517,0.264000,-0.002632,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000184,0.000160,0.000219,0.000035,0.000035,0.001493,0.261549,-0.002451,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000181,0.000158,0.000217,0.000000,0.000000,0.001470,0.259166,-0.002383,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000178,0.000156,0.000216,0.000000,0.000000,0.001448,0.256815,-0.002351,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000176,0.000154,0.000214,0.000000,0.000000,0.001426,0.254496,-0.002319,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000173,0.000152,0.000213,0.000000,0.000000,0.001405,0.252208,-0.002288,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000170,0.000150,0.000212,0.000000,0.000000,0.001384,0.249951,-0.002257,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000168,0.000148,0.000210,0.000000,0.000000,0.001364,0.247725,-0.002226,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000165,0.000146,0.000209,0.000000,0.000000,0.001344,0.245529,-0.002196,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000163,0.000144,0.000208,0.000000,0.000000,0.001325,0.243363,-0.002166,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000161,0.000142,0.000207,0.000000,0.000000,0.001306,0.241226,-0.002137,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000158,0.000140,0.000206,0.000000,0.000000,0.001288,0.239118,-0.002108,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000156,0.000138,0.000205,0.000000,0.000000,0.001269,0.237039,-0.002079,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000154,0.000136,0.000204,0.000000,0.000000,0.001252,0.234988,-0.002051,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000152,0.000134,0.000203,0.000128,0.000128,0.001234,0.232839,-0.002149,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000149,0.000132,0.000203,0.000378,0.000378,0.001217,0.230472,-0.002367,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000147,0.000130,0.000202,0.000533,0.000533,0.001199,0.227984,-0.002488,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000145,0.000127,0.000201,0.000626,0.000626,0.001181,0.225438,-0.002546,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000143,0.000125,0.000200,0.000636,0.000636,0.001164,0.222916,-0.002522,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000141,0.000123,0.000199,0.000592,0.000592,0.001146,0.220473,-0.002443,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000568,0.000000,0.000001,0.000000,0.000060,0.000138,0.000121,0.000199,0.000506,0.000506,0.001129,0.218708,-0.001765,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000287,0.000000,0.000000,0.000000,0.000062,0.000136,0.000119,0.000198,0.000464,0.000464,0.001112,0.216730,-0.001977,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000134,0.000117,0.000197,0.000386,0.000386,0.001095,0.214573,-0.002157,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000132,0.000116,0.000197,0.000291,0.000291,0.001078,0.212540,-0.002034,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000130,0.000114,0.000196,0.000166,0.000166,0.001062,0.210658,-0.001882,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000128,0.000112,0.000195,0.000046,0.000046,0.001046,0.208919,-0.001738,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000126,0.000111,0.000195,0.000000,0.000000,0.001031,0.207249,-0.001670,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000124,0.000109,0.000195,0.000000,0.000000,0.001016,0.205602,-0.001647,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000123,0.000108,0.000194,0.000000,0.000000,0.001001,0.203977,-0.001625,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000121,0.000106,0.000194,0.000000,0.000000,0.000986,0.202374,-0.001603,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000119,0.000105,0.000194,0.000000,0.000000,0.000972,0.200793,-0.001581,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000117,0.000103,0.000193,0.000000,0.000000,0.000958,0.199234,-0.001560,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000116,0.000102,0.000193,0.000000,0.000000,0.000945,0.197695,-0.001539,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000114,0.000101,0.000193,0.000000,0.000000,0.000932,0.196177,-0.001518,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000112,0.000099,0.000193,0.000000,0.000000,0.000919,0.194680,-0.001497,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000111,0.000098,0.000193,0.000000,0.000000,0.000906,0.193203,-0.001477,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000109,0.000097,0.000193,0.000000,0.000000,0.000893,0.191747,-0.001457,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000108,0.000095,0.000192,0.000000,0.000000,0.000881,0.190310,-0.001437,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000106,0.000094,0.000192,0.000125,0.000125,0.000869,0.188769,-0.001540,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000105,0.000092,0.000192,0.000376,0.000376,0.000856,0.187002,-0.001767,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000103,0.000091,0.000192,0.000534,0.000534,0.000844,0.185103,-0.001899,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000102,0.000089,0.000192,0.000630,0.000630,0.000831,0.183134,-0.001969,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000100,0.000087,0.000192,0.000688,0.000688,0.000818,0.181135,-0.001999,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000098,0.000085,0.000192,0.000661,0.000661,0.000805,0.179190,-0.001945,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000097,0.000084,0.000192,0.000578,0.000578,0.000792,0.177352,-0.001837,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000095,0.000082,0.000192,0.000461,0.000461,0.000779,0.175656,-0.001697,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000093,0.000081,0.000192,0.000389,0.000389,0.000766,0.174053,-0.001603,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000092,0.000079,0.000192,0.000292,0.000292,0.000753,0.172568,-0.001485,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000090,0.000078,0.000192,0.000187,0.000187,0.000741,0.171206,-0.001362,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000140,0.000001,0.000001,0.000001,0.000103,0.000089,0.000077,0.000192,0.000059,0.000059,0.000729,0.170126,-0.001080,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000122,0.000001,0.000002,0.000001,0.000104,0.000087,0.000076,0.000193,0.000000,0.000000,0.000717,0.169100,-0.001026,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000151,0.000003,0.000003,0.000003,0.000106,0.000086,0.000075,0.000194,0.000000,0.000000,0.000706,0.168116,-0.000984,1.000000,0.000002 +100,2022-08-05 04:00:00,0.000175,0.000004,0.000004,0.000004,0.000107,0.000085,0.000074,0.000196,0.000000,0.000000,0.000696,0.167168,-0.000948,1.000000,0.000003 +101,2022-08-05 05:00:00,0.000176,0.000004,0.000004,0.000004,0.000109,0.000084,0.000073,0.000196,0.000000,0.000000,0.000685,0.166234,-0.000934,1.000000,0.000003 +102,2022-08-05 06:00:00,0.000176,0.000004,0.000004,0.000004,0.000110,0.000082,0.000073,0.000197,0.000000,0.000000,0.000676,0.165312,-0.000922,1.000000,0.000003 +103,2022-08-05 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000112,0.000081,0.000072,0.000195,0.000000,0.000000,0.000666,0.164233,-0.001079,1.000000,0.000001 +104,2022-08-05 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000113,0.000080,0.000071,0.000194,0.000000,0.000000,0.000656,0.163169,-0.001064,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000079,0.000070,0.000194,0.000000,0.000000,0.000647,0.162120,-0.001050,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000078,0.000069,0.000194,0.000000,0.000000,0.000638,0.161084,-0.001035,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000068,0.000194,0.000000,0.000000,0.000629,0.160063,-0.001021,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000076,0.000067,0.000195,0.000000,0.000000,0.000620,0.159055,-0.001008,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000075,0.000066,0.000195,0.000000,0.000000,0.000612,0.158062,-0.000994,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000073,0.000065,0.000196,0.000135,0.000135,0.000603,0.156948,-0.001114,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000072,0.000064,0.000196,0.000377,0.000377,0.000595,0.155611,-0.001337,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000071,0.000062,0.000196,0.000531,0.000531,0.000586,0.154140,-0.001471,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000061,0.000197,0.000631,0.000631,0.000576,0.152590,-0.001550,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000069,0.000060,0.000197,0.000598,0.000598,0.000567,0.151094,-0.001496,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000099,0.000000,0.000000,0.000000,0.000130,0.000068,0.000058,0.000197,0.000560,0.000560,0.000557,0.149753,-0.001340,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000180,0.000000,0.000000,0.000000,0.000131,0.000067,0.000057,0.000198,0.000478,0.000478,0.000548,0.148592,-0.001161,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000117,0.000000,0.000000,0.000000,0.000133,0.000066,0.000056,0.000198,0.000414,0.000414,0.000539,0.147448,-0.001145,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000152,0.000000,0.000000,0.000000,0.000134,0.000064,0.000055,0.000198,0.000349,0.000349,0.000530,0.146416,-0.001031,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000135,0.000063,0.000055,0.000199,0.000263,0.000263,0.000521,0.145585,-0.000832,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000176,0.000000,0.000000,0.000000,0.000137,0.000062,0.000054,0.000199,0.000171,0.000171,0.000512,0.144778,-0.000807,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000918,0.000051,0.000092,0.000051,0.000138,0.000061,0.000054,0.000251,0.000060,0.000060,0.000505,0.144733,-0.000045,1.000000,0.000042 +122,2022-08-06 02:00:00,0.001070,0.000100,0.000140,0.000100,0.000140,0.000061,0.000054,0.000300,0.000000,0.000000,0.000498,0.144851,0.000118,1.000000,0.000081 +123,2022-08-06 03:00:00,0.000814,0.000099,0.000083,0.000099,0.000141,0.000060,0.000054,0.000300,0.000000,0.000000,0.000492,0.144770,-0.000081,1.000000,0.000065 +124,2022-08-06 04:00:00,0.000738,0.000087,0.000069,0.000087,0.000143,0.000059,0.000054,0.000289,0.000000,0.000000,0.000487,0.144629,-0.000141,1.000000,0.000048 +125,2022-08-06 05:00:00,0.000734,0.000072,0.000069,0.000072,0.000144,0.000059,0.000054,0.000274,0.000000,0.000000,0.000482,0.144487,-0.000142,1.000000,0.000045 +126,2022-08-06 06:00:00,0.000810,0.000076,0.000083,0.000076,0.000146,0.000058,0.000053,0.000280,0.000000,0.000000,0.000477,0.144408,-0.000079,1.000000,0.000051 +127,2022-08-06 07:00:00,0.000000,0.000034,0.000000,0.000034,0.000147,0.000057,0.000053,0.000239,0.000000,0.000000,0.000472,0.143613,-0.000795,1.000000,0.000017 +128,2022-08-06 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000149,0.000057,0.000052,0.000222,0.000000,0.000000,0.000468,0.142828,-0.000784,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000056,0.000051,0.000206,0.000000,0.000000,0.000463,0.142055,-0.000774,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000056,0.000051,0.000207,0.000000,0.000000,0.000458,0.141291,-0.000763,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000055,0.000050,0.000208,0.000000,0.000000,0.000453,0.140538,-0.000753,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000049,0.000209,0.000000,0.000000,0.000448,0.139795,-0.000743,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000054,0.000049,0.000209,0.000000,0.000000,0.000442,0.139063,-0.000733,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000048,0.000210,0.000121,0.000121,0.000437,0.138221,-0.000842,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000052,0.000047,0.000211,0.000364,0.000364,0.000432,0.137151,-0.001070,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000046,0.000212,0.000520,0.000520,0.000426,0.135941,-0.001210,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000045,0.000212,0.000618,0.000618,0.000419,0.134651,-0.001290,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000043,0.000213,0.000685,0.000685,0.000412,0.133312,-0.001339,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000049,0.000042,0.000213,0.000653,0.000653,0.000405,0.132022,-0.001289,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000048,0.000041,0.000214,0.000565,0.000565,0.000398,0.130838,-0.001184,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000047,0.000040,0.000214,0.000469,0.000469,0.000391,0.129764,-0.001074,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000047,0.000039,0.000215,0.000392,0.000392,0.000384,0.128781,-0.000983,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000046,0.000038,0.000215,0.000297,0.000297,0.000376,0.127904,-0.000877,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000045,0.000038,0.000216,0.000168,0.000168,0.000369,0.127167,-0.000737,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000044,0.000037,0.000216,0.000045,0.000045,0.000362,0.126561,-0.000606,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000043,0.000037,0.000217,0.000000,0.000000,0.000356,0.126008,-0.000553,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000042,0.000036,0.000218,0.000000,0.000000,0.000350,0.125462,-0.000546,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000036,0.000218,0.000000,0.000000,0.000344,0.124924,-0.000538,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000035,0.000219,0.000000,0.000000,0.000338,0.124393,-0.000531,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000035,0.000220,0.000000,0.000000,0.000332,0.123869,-0.000524,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000034,0.000220,0.000000,0.000000,0.000327,0.123352,-0.000517,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000039,0.000034,0.000221,0.000000,0.000000,0.000322,0.122842,-0.000510,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000038,0.000033,0.000222,0.000000,0.000000,0.000317,0.122339,-0.000503,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000038,0.000033,0.000222,0.000000,0.000000,0.000312,0.121843,-0.000496,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000037,0.000032,0.000223,0.000000,0.000000,0.000307,0.121354,-0.000489,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000032,0.000224,0.000000,0.000000,0.000302,0.120871,-0.000483,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000032,0.000225,0.000000,0.000000,0.000298,0.120395,-0.000476,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000031,0.000225,0.000116,0.000116,0.000293,0.119811,-0.000584,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000030,0.000226,0.000357,0.000357,0.000289,0.118996,-0.000814,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000029,0.000227,0.000513,0.000513,0.000284,0.118039,-0.000957,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000028,0.000227,0.000615,0.000615,0.000278,0.116995,-0.001045,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000027,0.000228,0.000681,0.000681,0.000273,0.115899,-0.001096,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000027,0.000229,0.000648,0.000648,0.000267,0.114851,-0.001048,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000032,0.000026,0.000229,0.000550,0.000000,0.000261,0.114456,-0.000395,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000031,0.000026,0.000230,0.000487,0.000000,0.000256,0.114067,-0.000389,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000025,0.000230,0.000408,0.000000,0.000251,0.113683,-0.000384,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000231,0.000305,0.000000,0.000246,0.113305,-0.000379,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000025,0.000232,0.000159,0.000000,0.000242,0.112931,-0.000374,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000058,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000233,0.000012,0.000012,0.000238,0.112607,-0.000324,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000058,0.000000,0.000000,0.000000,0.000205,0.000028,0.000024,0.000234,0.000000,0.000000,0.000234,0.112300,-0.000307,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000058,0.000000,0.000000,0.000000,0.000206,0.000028,0.000024,0.000234,0.000000,0.000000,0.000230,0.111997,-0.000303,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000065,0.000001,0.000001,0.000001,0.000207,0.000027,0.000024,0.000235,0.000000,0.000000,0.000226,0.111705,-0.000292,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000147,0.000002,0.000003,0.000002,0.000209,0.000027,0.000023,0.000237,0.000000,0.000000,0.000222,0.111495,-0.000210,1.000000,0.000001 +174,2022-08-08 06:00:00,0.000092,0.000001,0.000001,0.000001,0.000210,0.000027,0.000023,0.000238,0.000000,0.000000,0.000219,0.111236,-0.000259,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000211,0.000026,0.000023,0.000238,0.000000,0.000000,0.000216,0.110890,-0.000346,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000023,0.000238,0.000000,0.000000,0.000213,0.110550,-0.000341,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000022,0.000239,0.000000,0.000000,0.000210,0.110213,-0.000336,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000022,0.000240,0.000000,0.000000,0.000207,0.109882,-0.000332,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000022,0.000240,0.000000,0.000000,0.000204,0.109554,-0.000327,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000021,0.000241,0.000000,0.000000,0.000201,0.109232,-0.000323,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000021,0.000242,0.000000,0.000000,0.000198,0.108913,-0.000318,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000219,0.000024,0.000021,0.000243,0.000100,0.000001,0.000195,0.108599,-0.000314,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000005,0.000000,0.000000,0.000000,0.000220,0.000023,0.000021,0.000244,0.000347,0.000005,0.000192,0.108289,-0.000310,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000004,0.000000,0.000000,0.000000,0.000222,0.000023,0.000020,0.000245,0.000510,0.000004,0.000190,0.107984,-0.000306,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000003,0.000000,0.000000,0.000000,0.000223,0.000023,0.000020,0.000245,0.000609,0.000003,0.000187,0.107682,-0.000301,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000001,0.000000,0.000000,0.000000,0.000224,0.000022,0.000020,0.000246,0.000686,0.000001,0.000184,0.107385,-0.000297,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000022,0.000019,0.000247,0.000646,0.000000,0.000182,0.107092,-0.000293,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000022,0.000019,0.000248,0.000553,0.000000,0.000179,0.106802,-0.000289,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000019,0.000249,0.000496,0.000000,0.000177,0.106517,-0.000285,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000019,0.000249,0.000415,0.000000,0.000174,0.106235,-0.000282,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000021,0.000018,0.000250,0.000313,0.000000,0.000172,0.105957,-0.000278,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000021,0.000018,0.000251,0.000180,0.000000,0.000170,0.105683,-0.000274,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000020,0.000018,0.000252,0.000036,0.000000,0.000167,0.105413,-0.000270,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000020,0.000018,0.000253,0.000000,0.000000,0.000165,0.105146,-0.000267,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000020,0.000017,0.000253,0.000000,0.000000,0.000163,0.104883,-0.000263,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000235,0.000019,0.000017,0.000254,0.000000,0.000000,0.000161,0.104625,-0.000258,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000004,0.000000,0.000000,0.000000,0.000236,0.000019,0.000017,0.000255,0.000000,0.000000,0.000158,0.104373,-0.000252,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000237,0.000019,0.000017,0.000256,0.000000,0.000000,0.000156,0.104123,-0.000250,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000019,0.000017,0.000257,0.000000,0.000000,0.000154,0.103874,-0.000249,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000257,0.000000,0.000000,0.000152,0.103628,-0.000246,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000018,0.000016,0.000258,0.000000,0.000000,0.000150,0.103386,-0.000242,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000018,0.000016,0.000259,0.000000,0.000000,0.000148,0.103146,-0.000239,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000018,0.000016,0.000260,0.000000,0.000000,0.000146,0.102911,-0.000236,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000261,0.000000,0.000000,0.000144,0.102678,-0.000233,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000017,0.000015,0.000261,0.000000,0.000000,0.000142,0.102449,-0.000229,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000017,0.000015,0.000262,0.000112,0.000000,0.000140,0.102222,-0.000226,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620842.csv b/test/channel_loss/channel_forcing/et/cat-2620842.csv new file mode 100644 index 000000000..d2b6b9ba5 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620842.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000305,0.000002,0.000004,0.000002,0.000000,0.001462,0.000305,0.001465,0.000180,0.000180,0.010439,0.428460,-0.004744,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001303,0.000301,0.001304,0.000053,0.000053,0.009437,0.423608,-0.004852,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001167,0.000297,0.001168,0.000000,0.000000,0.008566,0.418873,-0.004735,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001052,0.000293,0.001052,0.000000,0.000000,0.007807,0.414202,-0.004671,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000953,0.000289,0.000954,0.000000,0.000000,0.007142,0.409593,-0.004609,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000868,0.000285,0.000869,0.000000,0.000000,0.006559,0.405046,-0.004547,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000794,0.000281,0.000795,0.000000,0.000000,0.006045,0.400560,-0.004486,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000730,0.000277,0.000731,0.000000,0.000000,0.005593,0.396134,-0.004426,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000674,0.000274,0.000675,0.000000,0.000000,0.005192,0.391767,-0.004367,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000625,0.000270,0.000626,0.000000,0.000000,0.004837,0.387459,-0.004308,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000582,0.000266,0.000583,0.000000,0.000000,0.004522,0.383209,-0.004250,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000543,0.000263,0.000545,0.000000,0.000000,0.004241,0.379016,-0.004193,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000509,0.000259,0.000512,0.000000,0.000000,0.003991,0.374878,-0.004137,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000479,0.000256,0.000482,0.000000,0.000000,0.003768,0.370797,-0.004082,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000453,0.000252,0.000456,0.000135,0.000135,0.003567,0.366636,-0.004161,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000429,0.000248,0.000433,0.000381,0.000381,0.003387,0.362289,-0.004347,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000407,0.000245,0.000412,0.000532,0.000532,0.003224,0.357851,-0.004438,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000388,0.000241,0.000393,0.000624,0.000624,0.003078,0.353382,-0.004469,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000370,0.000237,0.000376,0.000557,0.000557,0.002944,0.349038,-0.004344,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000252,0.000000,0.000000,0.000000,0.000006,0.000355,0.000234,0.000361,0.000507,0.000507,0.002824,0.345051,-0.003987,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000252,0.000000,0.000000,0.000000,0.000007,0.000340,0.000231,0.000347,0.000451,0.000451,0.002714,0.341172,-0.003879,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000255,0.000000,0.000000,0.000000,0.000008,0.000327,0.000227,0.000335,0.000379,0.000379,0.002614,0.337420,-0.003752,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000261,0.000000,0.000000,0.000000,0.000008,0.000315,0.000224,0.000324,0.000331,0.000331,0.002523,0.333771,-0.003649,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000326,0.000001,0.000001,0.000001,0.000009,0.000305,0.000221,0.000314,0.000253,0.000253,0.002439,0.330311,-0.003460,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000362,0.000005,0.000009,0.000005,0.000010,0.000295,0.000218,0.000310,0.000155,0.000155,0.002363,0.327022,-0.003289,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000957,0.000084,0.000147,0.000084,0.000011,0.000286,0.000216,0.000380,0.000067,0.000067,0.002293,0.324315,-0.002708,1.000000,0.000068 +26,2022-08-02 02:00:00,0.000980,0.000135,0.000175,0.000135,0.000011,0.000278,0.000214,0.000424,0.000000,0.000000,0.002229,0.321705,-0.002610,1.000000,0.000108 +27,2022-08-02 03:00:00,0.000942,0.000162,0.000162,0.000162,0.000012,0.000270,0.000212,0.000445,0.000000,0.000000,0.002171,0.319105,-0.002600,1.000000,0.000108 +28,2022-08-02 04:00:00,0.000954,0.000166,0.000165,0.000166,0.000013,0.000263,0.000210,0.000443,0.000000,0.000000,0.002117,0.316549,-0.002556,1.000000,0.000107 +29,2022-08-02 05:00:00,0.000927,0.000160,0.000156,0.000160,0.000014,0.000257,0.000207,0.000431,0.000000,0.000000,0.002068,0.314009,-0.002539,1.000000,0.000103 +30,2022-08-02 06:00:00,0.000951,0.000162,0.000163,0.000162,0.000015,0.000251,0.000205,0.000428,0.000000,0.000000,0.002022,0.311521,-0.002489,1.000000,0.000105 +31,2022-08-02 07:00:00,0.000000,0.000072,0.000000,0.000072,0.000016,0.000246,0.000203,0.000333,0.000000,0.000000,0.001979,0.308288,-0.003233,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000240,0.000200,0.000290,0.000000,0.000000,0.001938,0.305099,-0.003189,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000236,0.000197,0.000253,0.000000,0.000000,0.001900,0.301952,-0.003147,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000231,0.000195,0.000250,0.000000,0.000000,0.001863,0.298847,-0.003105,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000227,0.000192,0.000246,0.000000,0.000000,0.001829,0.295784,-0.003063,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000222,0.000189,0.000243,0.000000,0.000000,0.001796,0.292763,-0.003022,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000088,0.000001,0.000002,0.000001,0.000022,0.000218,0.000187,0.000241,0.000000,0.000000,0.001764,0.289866,-0.002896,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000109,0.000000,0.000000,0.000000,0.000023,0.000215,0.000184,0.000238,0.000116,0.000116,0.001734,0.286916,-0.002950,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000072,0.000000,0.000000,0.000000,0.000024,0.000211,0.000182,0.000235,0.000339,0.000339,0.001705,0.283750,-0.003167,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000056,0.000000,0.000000,0.000000,0.000025,0.000207,0.000179,0.000232,0.000466,0.000466,0.001677,0.280484,-0.003266,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000056,0.000000,0.000000,0.000000,0.000026,0.000204,0.000176,0.000230,0.000556,0.000556,0.001649,0.277173,-0.003311,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000166,0.000000,0.000000,0.000000,0.000027,0.000200,0.000173,0.000228,0.000631,0.000631,0.001622,0.273942,-0.003231,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000197,0.000171,0.000225,0.000576,0.000576,0.001595,0.270645,-0.003298,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000194,0.000168,0.000223,0.000513,0.000513,0.001570,0.267454,-0.003191,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000191,0.000165,0.000221,0.000508,0.000508,0.001544,0.264310,-0.003143,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000187,0.000163,0.000219,0.000432,0.000432,0.001519,0.261284,-0.003026,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000184,0.000160,0.000218,0.000325,0.000325,0.001495,0.258403,-0.002881,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000181,0.000158,0.000216,0.000186,0.000186,0.001471,0.255699,-0.002704,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000178,0.000156,0.000214,0.000037,0.000037,0.001449,0.253178,-0.002521,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000176,0.000154,0.000213,0.000000,0.000000,0.001426,0.250727,-0.002451,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000173,0.000152,0.000211,0.000000,0.000000,0.001405,0.248309,-0.002418,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000170,0.000149,0.000210,0.000000,0.000000,0.001384,0.245923,-0.002386,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000168,0.000147,0.000209,0.000000,0.000000,0.001364,0.243569,-0.002354,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000165,0.000145,0.000208,0.000000,0.000000,0.001344,0.241247,-0.002322,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000163,0.000144,0.000206,0.000000,0.000000,0.001324,0.238956,-0.002291,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000161,0.000142,0.000205,0.000000,0.000000,0.001305,0.236696,-0.002260,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000158,0.000140,0.000204,0.000000,0.000000,0.001287,0.234466,-0.002230,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000156,0.000138,0.000204,0.000000,0.000000,0.001269,0.232265,-0.002200,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000154,0.000136,0.000203,0.000000,0.000000,0.001251,0.230095,-0.002171,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000152,0.000134,0.000202,0.000000,0.000000,0.001234,0.227953,-0.002142,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000149,0.000132,0.000201,0.000000,0.000000,0.001217,0.225840,-0.002113,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000147,0.000130,0.000200,0.000129,0.000129,0.001200,0.223628,-0.002212,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000145,0.000128,0.000200,0.000382,0.000382,0.001183,0.221196,-0.002432,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000143,0.000126,0.000199,0.000530,0.000530,0.001166,0.218650,-0.002546,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000141,0.000124,0.000198,0.000631,0.000631,0.001149,0.216039,-0.002611,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000139,0.000122,0.000198,0.000629,0.000629,0.001132,0.213465,-0.002574,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000137,0.000120,0.000197,0.000583,0.000583,0.001115,0.210971,-0.002494,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000379,0.000000,0.000000,0.000000,0.000062,0.000135,0.000118,0.000196,0.000509,0.000509,0.001098,0.208957,-0.002014,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000112,0.000000,0.000000,0.000000,0.000063,0.000133,0.000116,0.000196,0.000491,0.000491,0.001082,0.206725,-0.002232,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000131,0.000114,0.000195,0.000417,0.000417,0.001065,0.204485,-0.002240,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000129,0.000112,0.000195,0.000314,0.000314,0.001049,0.202377,-0.002108,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000127,0.000111,0.000194,0.000184,0.000184,0.001033,0.200425,-0.001952,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000125,0.000109,0.000194,0.000050,0.000050,0.001018,0.198632,-0.001793,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000123,0.000108,0.000193,0.000000,0.000000,0.001003,0.196912,-0.001720,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000121,0.000106,0.000193,0.000000,0.000000,0.000988,0.195215,-0.001697,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000119,0.000105,0.000193,0.000000,0.000000,0.000974,0.193541,-0.001674,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000117,0.000103,0.000192,0.000000,0.000000,0.000960,0.191889,-0.001652,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000116,0.000102,0.000192,0.000000,0.000000,0.000946,0.190259,-0.001630,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000114,0.000101,0.000192,0.000000,0.000000,0.000933,0.188651,-0.001608,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000113,0.000099,0.000192,0.000000,0.000000,0.000920,0.187065,-0.001586,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000111,0.000098,0.000192,0.000000,0.000000,0.000907,0.185500,-0.001565,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000109,0.000097,0.000192,0.000000,0.000000,0.000894,0.183956,-0.001544,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000108,0.000095,0.000192,0.000000,0.000000,0.000882,0.182433,-0.001523,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000106,0.000094,0.000192,0.000000,0.000000,0.000870,0.180930,-0.001503,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000105,0.000093,0.000192,0.000000,0.000000,0.000858,0.179447,-0.001483,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000103,0.000092,0.000192,0.000125,0.000125,0.000846,0.177861,-0.001586,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000102,0.000090,0.000192,0.000378,0.000378,0.000834,0.176047,-0.001814,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000100,0.000088,0.000192,0.000532,0.000532,0.000822,0.174105,-0.001942,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000099,0.000087,0.000192,0.000630,0.000630,0.000810,0.172092,-0.002013,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000097,0.000085,0.000192,0.000703,0.000703,0.000797,0.170034,-0.002058,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000096,0.000083,0.000192,0.000650,0.000650,0.000785,0.168056,-0.001978,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000094,0.000082,0.000192,0.000563,0.000563,0.000772,0.166189,-0.001866,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000093,0.000080,0.000192,0.000506,0.000506,0.000759,0.164405,-0.001785,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000091,0.000079,0.000192,0.000439,0.000439,0.000747,0.162711,-0.001694,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000090,0.000077,0.000192,0.000334,0.000334,0.000735,0.161142,-0.001568,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000088,0.000076,0.000192,0.000196,0.000196,0.000723,0.159732,-0.001411,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000087,0.000075,0.000192,0.000060,0.000060,0.000711,0.158474,-0.001258,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000085,0.000074,0.000192,0.000000,0.000000,0.000700,0.157292,-0.001182,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000084,0.000073,0.000193,0.000000,0.000000,0.000689,0.156126,-0.001166,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000083,0.000072,0.000193,0.000000,0.000000,0.000678,0.154976,-0.001150,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000081,0.000071,0.000193,0.000000,0.000000,0.000668,0.153841,-0.001135,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000080,0.000070,0.000193,0.000000,0.000000,0.000658,0.152721,-0.001120,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000079,0.000069,0.000194,0.000000,0.000000,0.000648,0.151616,-0.001105,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000078,0.000068,0.000194,0.000000,0.000000,0.000638,0.150526,-0.001090,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000067,0.000194,0.000000,0.000000,0.000629,0.149451,-0.001075,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000076,0.000066,0.000195,0.000000,0.000000,0.000620,0.148390,-0.001061,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000074,0.000066,0.000195,0.000000,0.000000,0.000611,0.147343,-0.001047,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000073,0.000065,0.000196,0.000000,0.000000,0.000603,0.146310,-0.001033,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000072,0.000064,0.000196,0.000000,0.000000,0.000594,0.145291,-0.001019,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000071,0.000063,0.000197,0.000138,0.000138,0.000586,0.144150,-0.001141,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000062,0.000197,0.000382,0.000382,0.000577,0.142783,-0.001367,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000069,0.000060,0.000198,0.000533,0.000533,0.000568,0.141286,-0.001498,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000068,0.000059,0.000198,0.000638,0.000638,0.000559,0.139705,-0.001581,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000067,0.000058,0.000199,0.000615,0.000615,0.000550,0.138168,-0.001537,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000078,0.000000,0.000000,0.000000,0.000133,0.000066,0.000057,0.000199,0.000566,0.000566,0.000541,0.136777,-0.001391,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000078,0.000000,0.000000,0.000000,0.000135,0.000065,0.000055,0.000199,0.000497,0.000497,0.000532,0.135472,-0.001304,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000092,0.000000,0.000000,0.000000,0.000136,0.000064,0.000054,0.000200,0.000458,0.000458,0.000522,0.134238,-0.001235,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000138,0.000062,0.000053,0.000200,0.000380,0.000380,0.000514,0.133130,-0.001107,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000139,0.000061,0.000053,0.000201,0.000299,0.000299,0.000505,0.132180,-0.000951,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000141,0.000060,0.000052,0.000201,0.000183,0.000183,0.000496,0.131294,-0.000885,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000619,0.000025,0.000046,0.000025,0.000142,0.000059,0.000052,0.000227,0.000066,0.000066,0.000489,0.130977,-0.000317,1.000000,0.000021 +122,2022-08-06 02:00:00,0.000951,0.000082,0.000128,0.000082,0.000144,0.000059,0.000052,0.000284,0.000000,0.000000,0.000482,0.130976,-0.000001,1.000000,0.000067 +123,2022-08-06 03:00:00,0.000868,0.000100,0.000108,0.000100,0.000145,0.000058,0.000052,0.000303,0.000000,0.000000,0.000475,0.130912,-0.000064,1.000000,0.000074 +124,2022-08-06 04:00:00,0.000850,0.000109,0.000104,0.000109,0.000147,0.000057,0.000052,0.000313,0.000000,0.000000,0.000470,0.130836,-0.000076,1.000000,0.000068 +125,2022-08-06 05:00:00,0.000785,0.000096,0.000089,0.000096,0.000148,0.000057,0.000051,0.000301,0.000000,0.000000,0.000465,0.130711,-0.000125,1.000000,0.000061 +126,2022-08-06 06:00:00,0.000849,0.000100,0.000103,0.000100,0.000150,0.000056,0.000051,0.000305,0.000000,0.000000,0.000460,0.130637,-0.000074,1.000000,0.000064 +127,2022-08-06 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000151,0.000055,0.000051,0.000250,0.000000,0.000000,0.000456,0.129828,-0.000809,1.000000,0.000021 +128,2022-08-06 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000153,0.000055,0.000050,0.000228,0.000000,0.000000,0.000451,0.129030,-0.000798,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000049,0.000208,0.000000,0.000000,0.000446,0.128243,-0.000787,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000054,0.000049,0.000209,0.000000,0.000000,0.000441,0.127466,-0.000777,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000048,0.000210,0.000000,0.000000,0.000436,0.126699,-0.000766,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000052,0.000047,0.000211,0.000000,0.000000,0.000431,0.125943,-0.000756,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000047,0.000212,0.000000,0.000000,0.000426,0.125197,-0.000746,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000051,0.000046,0.000213,0.000121,0.000121,0.000421,0.124342,-0.000855,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000045,0.000213,0.000363,0.000363,0.000415,0.123259,-0.001083,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000050,0.000044,0.000214,0.000508,0.000508,0.000410,0.122048,-0.001212,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000049,0.000043,0.000215,0.000607,0.000607,0.000404,0.120755,-0.001293,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000048,0.000042,0.000215,0.000682,0.000682,0.000397,0.119406,-0.001349,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000047,0.000041,0.000216,0.000629,0.000629,0.000390,0.118127,-0.001279,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000040,0.000217,0.000556,0.000556,0.000384,0.116937,-0.001189,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000217,0.000513,0.000513,0.000377,0.115806,-0.001131,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000038,0.000218,0.000435,0.000435,0.000370,0.114767,-0.001039,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000037,0.000218,0.000329,0.000329,0.000363,0.113846,-0.000920,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000036,0.000219,0.000189,0.000189,0.000356,0.113076,-0.000770,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000036,0.000220,0.000049,0.000049,0.000349,0.112454,-0.000622,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000035,0.000220,0.000000,0.000000,0.000343,0.111889,-0.000565,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000035,0.000221,0.000000,0.000000,0.000337,0.111331,-0.000558,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000034,0.000222,0.000000,0.000000,0.000331,0.110781,-0.000550,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000034,0.000222,0.000000,0.000000,0.000326,0.110238,-0.000543,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000034,0.000223,0.000000,0.000000,0.000321,0.109703,-0.000536,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000224,0.000000,0.000000,0.000315,0.109175,-0.000528,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000038,0.000033,0.000225,0.000000,0.000000,0.000310,0.108653,-0.000521,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000037,0.000032,0.000225,0.000000,0.000000,0.000306,0.108139,-0.000514,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000032,0.000226,0.000000,0.000000,0.000301,0.107632,-0.000507,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000031,0.000227,0.000000,0.000000,0.000296,0.107131,-0.000501,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000031,0.000228,0.000000,0.000000,0.000292,0.106637,-0.000494,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000031,0.000229,0.000000,0.000000,0.000287,0.106150,-0.000487,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000030,0.000229,0.000116,0.000116,0.000283,0.105555,-0.000596,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000029,0.000230,0.000362,0.000362,0.000279,0.104725,-0.000830,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000028,0.000231,0.000513,0.000513,0.000274,0.103757,-0.000968,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000033,0.000028,0.000232,0.000618,0.000618,0.000269,0.102699,-0.001058,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000027,0.000232,0.000676,0.000676,0.000264,0.101597,-0.001102,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000026,0.000233,0.000618,0.000618,0.000258,0.100568,-0.001029,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000031,0.000025,0.000234,0.000542,0.000542,0.000252,0.099627,-0.000941,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000024,0.000234,0.000517,0.000517,0.000247,0.098723,-0.000904,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000024,0.000235,0.000442,0.000442,0.000241,0.097906,-0.000817,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000029,0.000023,0.000235,0.000331,0.000331,0.000235,0.097209,-0.000697,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000022,0.000236,0.000164,0.000164,0.000230,0.096687,-0.000523,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000237,0.000017,0.000017,0.000225,0.096317,-0.000370,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000022,0.000237,0.000000,0.000000,0.000220,0.095968,-0.000349,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000022,0.000238,0.000000,0.000000,0.000216,0.095623,-0.000344,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000021,0.000239,0.000000,0.000000,0.000211,0.095284,-0.000340,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000240,0.000000,0.000000,0.000207,0.094949,-0.000335,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000021,0.000240,0.000000,0.000000,0.000203,0.094618,-0.000331,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000241,0.000000,0.000000,0.000200,0.094292,-0.000326,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000242,0.000000,0.000000,0.000196,0.093970,-0.000322,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000243,0.000000,0.000000,0.000193,0.093652,-0.000318,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000023,0.000020,0.000243,0.000000,0.000000,0.000189,0.093339,-0.000313,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000019,0.000244,0.000000,0.000000,0.000186,0.093030,-0.000309,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000000,0.000000,0.000183,0.092725,-0.000305,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000019,0.000246,0.000000,0.000000,0.000180,0.092424,-0.000301,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000019,0.000247,0.000101,0.000000,0.000177,0.092128,-0.000297,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000018,0.000248,0.000350,0.000000,0.000174,0.091835,-0.000293,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000018,0.000249,0.000505,0.000000,0.000172,0.091546,-0.000289,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000018,0.000249,0.000599,0.000000,0.000169,0.091261,-0.000285,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000018,0.000250,0.000677,0.000000,0.000167,0.090980,-0.000281,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000017,0.000251,0.000614,0.000000,0.000164,0.090702,-0.000277,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000020,0.000017,0.000252,0.000543,0.000000,0.000162,0.090429,-0.000274,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000017,0.000253,0.000505,0.000000,0.000159,0.090159,-0.000270,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000017,0.000254,0.000437,0.000000,0.000157,0.089892,-0.000266,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000019,0.000016,0.000254,0.000332,0.000000,0.000155,0.089629,-0.000263,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000255,0.000187,0.000000,0.000152,0.089370,-0.000259,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000018,0.000016,0.000256,0.000037,0.000000,0.000150,0.089114,-0.000256,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000257,0.000000,0.000000,0.000148,0.088862,-0.000252,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000018,0.000016,0.000258,0.000000,0.000000,0.000146,0.088613,-0.000249,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000259,0.000000,0.000000,0.000144,0.088367,-0.000246,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000260,0.000000,0.000000,0.000142,0.088124,-0.000242,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000260,0.000000,0.000000,0.000140,0.087885,-0.000239,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000017,0.000015,0.000261,0.000000,0.000000,0.000138,0.087649,-0.000236,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000015,0.000262,0.000000,0.000000,0.000136,0.087416,-0.000233,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000263,0.000000,0.000000,0.000134,0.087187,-0.000230,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000264,0.000000,0.000000,0.000133,0.086960,-0.000227,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000016,0.000014,0.000265,0.000000,0.000000,0.000131,0.086737,-0.000224,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000016,0.000014,0.000265,0.000000,0.000000,0.000129,0.086516,-0.000221,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000014,0.000266,0.000000,0.000000,0.000127,0.086298,-0.000218,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000015,0.000013,0.000267,0.000111,0.000000,0.000125,0.086084,-0.000215,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620843.csv b/test/channel_loss/channel_forcing/et/cat-2620843.csv new file mode 100644 index 000000000..9a9386d48 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620843.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000003,0.000002,0.000000,0.001486,0.000471,0.001487,0.000178,0.000178,0.010582,0.428908,-0.004754,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001344,0.000464,0.001345,0.000052,0.000052,0.009702,0.424037,-0.004871,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001224,0.000458,0.001225,0.000000,0.000000,0.008935,0.419287,-0.004750,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001121,0.000451,0.001121,0.000000,0.000000,0.008265,0.414605,-0.004682,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001033,0.000445,0.001033,0.000000,0.000000,0.007676,0.409989,-0.004616,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000956,0.000438,0.000956,0.000000,0.000000,0.007159,0.405440,-0.004550,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000889,0.000432,0.000890,0.000000,0.000000,0.006702,0.400955,-0.004485,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000830,0.000426,0.000831,0.000000,0.000000,0.006297,0.396534,-0.004421,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000779,0.000420,0.000780,0.000000,0.000000,0.005938,0.392176,-0.004358,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000734,0.000414,0.000735,0.000000,0.000000,0.005618,0.387880,-0.004296,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000694,0.000408,0.000695,0.000000,0.000000,0.005332,0.383645,-0.004235,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000658,0.000402,0.000660,0.000000,0.000000,0.005076,0.379470,-0.004174,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000626,0.000396,0.000629,0.000000,0.000000,0.004847,0.375355,-0.004115,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000598,0.000391,0.000601,0.000000,0.000000,0.004640,0.371299,-0.004056,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000572,0.000385,0.000575,0.000133,0.000133,0.004453,0.367170,-0.004129,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000549,0.000379,0.000553,0.000369,0.000369,0.004283,0.362866,-0.004303,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000528,0.000373,0.000532,0.000515,0.000515,0.004128,0.358481,-0.004386,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000509,0.000367,0.000514,0.000609,0.000609,0.003986,0.354064,-0.004416,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000491,0.000361,0.000497,0.000554,0.000554,0.003855,0.349765,-0.004299,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000251,0.000000,0.000000,0.000000,0.000006,0.000475,0.000355,0.000481,0.000505,0.000505,0.003735,0.345823,-0.003942,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000251,0.000000,0.000000,0.000000,0.000007,0.000460,0.000350,0.000467,0.000447,0.000447,0.003625,0.341994,-0.003829,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000263,0.000000,0.000000,0.000000,0.000007,0.000447,0.000345,0.000454,0.000366,0.000366,0.003523,0.338311,-0.003683,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000279,0.000000,0.000000,0.000000,0.000008,0.000434,0.000340,0.000442,0.000317,0.000317,0.003429,0.334745,-0.003566,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000355,0.000001,0.000002,0.000001,0.000009,0.000423,0.000335,0.000432,0.000245,0.000245,0.003341,0.331374,-0.003370,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000362,0.000004,0.000006,0.000004,0.000009,0.000412,0.000331,0.000425,0.000150,0.000150,0.003260,0.328148,-0.003226,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000920,0.000052,0.000092,0.000052,0.000010,0.000402,0.000327,0.000465,0.000064,0.000064,0.003185,0.325518,-0.002630,1.000000,0.000042 +26,2022-08-02 02:00:00,0.000943,0.000084,0.000109,0.000084,0.000011,0.000393,0.000323,0.000488,0.000000,0.000000,0.003116,0.322993,-0.002525,1.000000,0.000068 +27,2022-08-02 03:00:00,0.000907,0.000101,0.000101,0.000101,0.000012,0.000384,0.000320,0.000498,0.000000,0.000000,0.003051,0.320477,-0.002516,1.000000,0.000068 +28,2022-08-02 04:00:00,0.000918,0.000104,0.000103,0.000104,0.000013,0.000377,0.000317,0.000493,0.000000,0.000000,0.002991,0.318006,-0.002471,1.000000,0.000067 +29,2022-08-02 05:00:00,0.000919,0.000103,0.000103,0.000103,0.000013,0.000369,0.000313,0.000485,0.000000,0.000000,0.002935,0.315571,-0.002435,1.000000,0.000067 +30,2022-08-02 06:00:00,0.000922,0.000103,0.000103,0.000103,0.000014,0.000362,0.000310,0.000480,0.000000,0.000000,0.002883,0.313173,-0.002398,1.000000,0.000067 +31,2022-08-02 07:00:00,0.000000,0.000046,0.000000,0.000046,0.000015,0.000356,0.000305,0.000417,0.000000,0.000000,0.002832,0.310003,-0.003170,1.000000,0.000021 +32,2022-08-02 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000349,0.000301,0.000386,0.000000,0.000000,0.002784,0.306878,-0.003125,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000343,0.000297,0.000360,0.000000,0.000000,0.002737,0.303797,-0.003081,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000337,0.000293,0.000355,0.000000,0.000000,0.002692,0.300761,-0.003037,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000332,0.000288,0.000351,0.000000,0.000000,0.002649,0.297767,-0.002993,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000326,0.000284,0.000346,0.000000,0.000000,0.002607,0.294816,-0.002951,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000071,0.000000,0.000001,0.000000,0.000021,0.000321,0.000280,0.000342,0.000000,0.000000,0.002566,0.291977,-0.002839,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000082,0.000000,0.000000,0.000000,0.000022,0.000316,0.000276,0.000338,0.000111,0.000111,0.002526,0.289080,-0.002898,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000045,0.000000,0.000000,0.000000,0.000023,0.000311,0.000272,0.000334,0.000328,0.000328,0.002487,0.285973,-0.003106,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000045,0.000000,0.000000,0.000000,0.000024,0.000306,0.000267,0.000330,0.000454,0.000454,0.002449,0.282788,-0.003186,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000045,0.000000,0.000000,0.000000,0.000025,0.000301,0.000263,0.000326,0.000541,0.000541,0.002411,0.279562,-0.003226,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000185,0.000000,0.000000,0.000000,0.000026,0.000296,0.000259,0.000322,0.000623,0.000623,0.002373,0.276438,-0.003123,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000291,0.000254,0.000319,0.000579,0.000579,0.002336,0.273221,-0.003218,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000287,0.000250,0.000315,0.000501,0.000501,0.002299,0.270126,-0.003095,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000282,0.000246,0.000312,0.000487,0.000487,0.002263,0.267089,-0.003037,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000277,0.000242,0.000308,0.000414,0.000414,0.002227,0.264167,-0.002922,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000273,0.000238,0.000305,0.000313,0.000313,0.002192,0.261386,-0.002781,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000268,0.000234,0.000302,0.000181,0.000181,0.002157,0.258775,-0.002611,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000264,0.000231,0.000298,0.000036,0.000036,0.002124,0.256344,-0.002431,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000260,0.000227,0.000295,0.000000,0.000000,0.002091,0.253983,-0.002361,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000256,0.000224,0.000293,0.000000,0.000000,0.002060,0.251656,-0.002327,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000252,0.000221,0.000290,0.000000,0.000000,0.002029,0.249363,-0.002294,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000248,0.000218,0.000287,0.000000,0.000000,0.001998,0.247101,-0.002261,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000244,0.000215,0.000285,0.000000,0.000000,0.001969,0.244873,-0.002229,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000241,0.000212,0.000282,0.000000,0.000000,0.001940,0.242675,-0.002197,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000237,0.000209,0.000280,0.000000,0.000000,0.001911,0.240509,-0.002166,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000233,0.000206,0.000278,0.000000,0.000000,0.001883,0.238374,-0.002135,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000230,0.000203,0.000275,0.000000,0.000000,0.001856,0.236270,-0.002105,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000227,0.000200,0.000273,0.000000,0.000000,0.001829,0.234195,-0.002075,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000223,0.000197,0.000271,0.000000,0.000000,0.001803,0.232150,-0.002045,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000220,0.000194,0.000269,0.000000,0.000000,0.001777,0.230134,-0.002016,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000217,0.000191,0.000267,0.000128,0.000128,0.001752,0.228021,-0.002113,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000214,0.000188,0.000266,0.000371,0.000371,0.001726,0.225699,-0.002323,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000210,0.000185,0.000264,0.000515,0.000515,0.001701,0.223267,-0.002432,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000207,0.000181,0.000262,0.000614,0.000614,0.001675,0.220773,-0.002494,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000204,0.000178,0.000260,0.000619,0.000619,0.001649,0.218309,-0.002464,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000200,0.000174,0.000258,0.000581,0.000581,0.001623,0.215917,-0.002391,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000059,0.000197,0.000172,0.000256,0.000499,0.000499,0.001597,0.213952,-0.001965,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000135,0.000000,0.000000,0.000000,0.000060,0.000194,0.000169,0.000254,0.000472,0.000472,0.001572,0.211864,-0.002088,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000191,0.000166,0.000252,0.000400,0.000400,0.001547,0.209743,-0.002121,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000188,0.000163,0.000251,0.000305,0.000305,0.001522,0.207745,-0.001998,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000185,0.000160,0.000249,0.000175,0.000175,0.001498,0.205905,-0.001841,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000182,0.000158,0.000247,0.000048,0.000048,0.001474,0.204215,-0.001690,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000179,0.000156,0.000246,0.000000,0.000000,0.001451,0.202597,-0.001618,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000176,0.000154,0.000244,0.000000,0.000000,0.001429,0.201002,-0.001595,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000173,0.000151,0.000243,0.000000,0.000000,0.001407,0.199430,-0.001572,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000171,0.000149,0.000242,0.000000,0.000000,0.001386,0.197880,-0.001550,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000168,0.000147,0.000241,0.000000,0.000000,0.001365,0.196353,-0.001528,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000165,0.000145,0.000240,0.000000,0.000000,0.001344,0.194847,-0.001506,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000163,0.000143,0.000238,0.000000,0.000000,0.001324,0.193362,-0.001484,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000160,0.000141,0.000237,0.000000,0.000000,0.001305,0.191899,-0.001463,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000158,0.000139,0.000236,0.000000,0.000000,0.001286,0.190457,-0.001442,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000156,0.000137,0.000236,0.000000,0.000000,0.001267,0.189035,-0.001422,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000153,0.000135,0.000235,0.000000,0.000000,0.001249,0.187633,-0.001402,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000151,0.000133,0.000234,0.000000,0.000000,0.001231,0.186252,-0.001382,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000149,0.000131,0.000233,0.000126,0.000126,0.001213,0.184765,-0.001487,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000147,0.000129,0.000232,0.000371,0.000371,0.001195,0.183059,-0.001706,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000144,0.000126,0.000231,0.000520,0.000520,0.001176,0.181230,-0.001829,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000142,0.000123,0.000230,0.000618,0.000618,0.001158,0.179331,-0.001899,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000140,0.000121,0.000230,0.000693,0.000693,0.001139,0.177385,-0.001946,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000137,0.000118,0.000229,0.000647,0.000647,0.001119,0.175511,-0.001873,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000135,0.000116,0.000228,0.000559,0.000559,0.001100,0.173751,-0.001760,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000133,0.000113,0.000227,0.000483,0.000483,0.001081,0.172091,-0.001660,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000130,0.000111,0.000226,0.000416,0.000416,0.001062,0.170521,-0.001570,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000128,0.000109,0.000225,0.000321,0.000321,0.001043,0.169067,-0.001454,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000126,0.000107,0.000224,0.000190,0.000190,0.001025,0.167763,-0.001304,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000123,0.000106,0.000223,0.000059,0.000059,0.001007,0.166606,-0.001157,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000121,0.000104,0.000223,0.000000,0.000000,0.000990,0.165524,-0.001082,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000119,0.000103,0.000222,0.000000,0.000000,0.000974,0.164458,-0.001067,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000117,0.000101,0.000221,0.000000,0.000000,0.000958,0.163406,-0.001051,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000115,0.000100,0.000221,0.000000,0.000000,0.000942,0.162370,-0.001036,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000113,0.000098,0.000221,0.000000,0.000000,0.000927,0.161348,-0.001022,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000112,0.000097,0.000220,0.000000,0.000000,0.000913,0.160341,-0.001007,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000110,0.000096,0.000220,0.000000,0.000000,0.000898,0.159348,-0.000993,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000108,0.000094,0.000220,0.000000,0.000000,0.000885,0.158370,-0.000979,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000106,0.000093,0.000219,0.000000,0.000000,0.000871,0.157405,-0.000965,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000105,0.000092,0.000219,0.000000,0.000000,0.000858,0.156454,-0.000951,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000103,0.000090,0.000219,0.000000,0.000000,0.000845,0.155517,-0.000937,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000102,0.000089,0.000219,0.000000,0.000000,0.000832,0.154593,-0.000924,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000100,0.000088,0.000219,0.000136,0.000136,0.000820,0.153548,-0.001045,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000099,0.000086,0.000219,0.000371,0.000371,0.000807,0.152287,-0.001261,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000097,0.000084,0.000218,0.000518,0.000518,0.000794,0.150898,-0.001389,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000095,0.000082,0.000218,0.000621,0.000621,0.000780,0.149428,-0.001470,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000094,0.000080,0.000218,0.000600,0.000600,0.000767,0.147999,-0.001429,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000110,0.000000,0.000000,0.000000,0.000126,0.000092,0.000078,0.000218,0.000558,0.000558,0.000753,0.146741,-0.001258,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000111,0.000000,0.000000,0.000000,0.000127,0.000090,0.000076,0.000217,0.000480,0.000480,0.000739,0.145578,-0.001163,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000111,0.000000,0.000000,0.000000,0.000128,0.000089,0.000075,0.000217,0.000430,0.000430,0.000725,0.144481,-0.001097,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000130,0.000087,0.000074,0.000217,0.000362,0.000362,0.000712,0.143482,-0.000999,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000131,0.000085,0.000072,0.000217,0.000283,0.000283,0.000699,0.142637,-0.000845,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000133,0.000084,0.000071,0.000216,0.000176,0.000176,0.000687,0.141848,-0.000789,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000718,0.000023,0.000042,0.000023,0.000134,0.000082,0.000071,0.000239,0.000063,0.000063,0.000675,0.141723,-0.000125,1.000000,0.000019 +122,2022-08-06 02:00:00,0.001050,0.000067,0.000103,0.000067,0.000135,0.000081,0.000071,0.000284,0.000000,0.000000,0.000666,0.141928,0.000206,1.000000,0.000055 +123,2022-08-06 03:00:00,0.000914,0.000078,0.000079,0.000078,0.000137,0.000080,0.000072,0.000295,0.000000,0.000000,0.000657,0.142020,0.000092,1.000000,0.000056 +124,2022-08-06 04:00:00,0.000852,0.000079,0.000069,0.000079,0.000138,0.000079,0.000072,0.000296,0.000000,0.000000,0.000649,0.142060,0.000040,1.000000,0.000047 +125,2022-08-06 05:00:00,0.000822,0.000069,0.000065,0.000069,0.000140,0.000078,0.000072,0.000287,0.000000,0.000000,0.000643,0.142074,0.000014,1.000000,0.000043 +126,2022-08-06 06:00:00,0.000928,0.000075,0.000082,0.000075,0.000141,0.000078,0.000072,0.000294,0.000000,0.000000,0.000637,0.142176,0.000102,1.000000,0.000050 +127,2022-08-06 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000142,0.000077,0.000071,0.000253,0.000000,0.000000,0.000631,0.141442,-0.000734,1.000000,0.000016 +128,2022-08-06 08:00:00,0.000000,0.000016,0.000000,0.000016,0.000144,0.000076,0.000070,0.000236,0.000000,0.000000,0.000624,0.140718,-0.000723,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000075,0.000069,0.000220,0.000000,0.000000,0.000618,0.140005,-0.000713,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000074,0.000068,0.000221,0.000000,0.000000,0.000611,0.139302,-0.000703,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000074,0.000067,0.000221,0.000000,0.000000,0.000604,0.138609,-0.000693,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000073,0.000066,0.000222,0.000000,0.000000,0.000597,0.137926,-0.000683,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000072,0.000065,0.000222,0.000000,0.000000,0.000590,0.137253,-0.000673,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000071,0.000064,0.000223,0.000120,0.000120,0.000583,0.136470,-0.000782,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000070,0.000062,0.000223,0.000354,0.000354,0.000575,0.135468,-0.001002,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000069,0.000061,0.000224,0.000498,0.000498,0.000567,0.134339,-0.001129,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000068,0.000059,0.000224,0.000594,0.000594,0.000558,0.133131,-0.001208,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000067,0.000057,0.000224,0.000669,0.000669,0.000549,0.131866,-0.001264,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000066,0.000056,0.000224,0.000628,0.000628,0.000539,0.130661,-0.001206,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000064,0.000054,0.000224,0.000548,0.000548,0.000529,0.129551,-0.001110,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000063,0.000053,0.000224,0.000489,0.000489,0.000518,0.128515,-0.001036,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000062,0.000051,0.000224,0.000412,0.000412,0.000508,0.127569,-0.000945,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000061,0.000050,0.000224,0.000315,0.000315,0.000498,0.126733,-0.000836,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000059,0.000049,0.000224,0.000180,0.000180,0.000488,0.126041,-0.000692,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000058,0.000048,0.000225,0.000047,0.000047,0.000478,0.125490,-0.000551,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000057,0.000048,0.000225,0.000000,0.000000,0.000469,0.124994,-0.000496,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000056,0.000047,0.000225,0.000000,0.000000,0.000460,0.124505,-0.000489,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000055,0.000046,0.000225,0.000000,0.000000,0.000452,0.124023,-0.000482,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000054,0.000046,0.000225,0.000000,0.000000,0.000443,0.123548,-0.000475,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000053,0.000045,0.000226,0.000000,0.000000,0.000436,0.123079,-0.000469,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000052,0.000044,0.000226,0.000000,0.000000,0.000428,0.122617,-0.000462,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000051,0.000044,0.000226,0.000000,0.000000,0.000421,0.122162,-0.000455,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000050,0.000043,0.000227,0.000000,0.000000,0.000414,0.121713,-0.000449,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000049,0.000043,0.000227,0.000000,0.000000,0.000407,0.121271,-0.000442,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000049,0.000042,0.000228,0.000000,0.000000,0.000400,0.120835,-0.000436,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000048,0.000041,0.000228,0.000000,0.000000,0.000394,0.120405,-0.000430,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000047,0.000041,0.000229,0.000000,0.000000,0.000388,0.119981,-0.000424,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000046,0.000040,0.000229,0.000115,0.000115,0.000381,0.119449,-0.000532,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000046,0.000039,0.000230,0.000349,0.000349,0.000375,0.118695,-0.000754,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000045,0.000038,0.000230,0.000496,0.000496,0.000368,0.117807,-0.000888,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000044,0.000036,0.000230,0.000598,0.000598,0.000361,0.116831,-0.000976,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000043,0.000035,0.000231,0.000661,0.000661,0.000353,0.115806,-0.001024,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000042,0.000034,0.000231,0.000616,0.000616,0.000345,0.114841,-0.000965,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000041,0.000032,0.000231,0.000536,0.000536,0.000336,0.113968,-0.000873,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000040,0.000031,0.000231,0.000498,0.000498,0.000328,0.113144,-0.000823,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000039,0.000030,0.000231,0.000422,0.000422,0.000319,0.112408,-0.000737,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000038,0.000029,0.000231,0.000319,0.000319,0.000311,0.111784,-0.000624,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000037,0.000029,0.000232,0.000160,0.000160,0.000303,0.111325,-0.000458,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000036,0.000028,0.000232,0.000016,0.000016,0.000296,0.111015,-0.000310,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000035,0.000028,0.000232,0.000000,0.000000,0.000288,0.110726,-0.000290,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000028,0.000232,0.000000,0.000000,0.000282,0.110440,-0.000286,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000033,0.000027,0.000233,0.000000,0.000000,0.000276,0.110158,-0.000282,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000033,0.000027,0.000233,0.000000,0.000000,0.000270,0.109880,-0.000278,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000026,0.000234,0.000000,0.000000,0.000264,0.109606,-0.000274,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000031,0.000026,0.000234,0.000000,0.000000,0.000259,0.109336,-0.000270,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000031,0.000026,0.000235,0.000000,0.000000,0.000254,0.109070,-0.000266,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000030,0.000025,0.000235,0.000000,0.000000,0.000249,0.108808,-0.000262,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000030,0.000025,0.000236,0.000000,0.000000,0.000244,0.108550,-0.000259,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000029,0.000025,0.000236,0.000000,0.000000,0.000239,0.108295,-0.000255,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000029,0.000024,0.000237,0.000000,0.000000,0.000235,0.108044,-0.000251,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000024,0.000237,0.000000,0.000000,0.000231,0.107796,-0.000248,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000023,0.000238,0.000100,0.000100,0.000227,0.107454,-0.000342,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000023,0.000239,0.000336,0.000336,0.000223,0.106883,-0.000571,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000022,0.000239,0.000489,0.000489,0.000218,0.106170,-0.000713,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000026,0.000020,0.000239,0.000584,0.000584,0.000212,0.105373,-0.000797,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000019,0.000240,0.000663,0.000663,0.000207,0.104510,-0.000863,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000018,0.000240,0.000604,0.000604,0.000201,0.103718,-0.000792,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000017,0.000240,0.000530,0.000530,0.000194,0.103009,-0.000708,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000016,0.000241,0.000489,0.000489,0.000188,0.102352,-0.000658,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000022,0.000015,0.000241,0.000420,0.000420,0.000181,0.101772,-0.000580,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000021,0.000015,0.000241,0.000321,0.000321,0.000175,0.101297,-0.000475,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000014,0.000241,0.000182,0.000182,0.000169,0.100966,-0.000331,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000014,0.000242,0.000037,0.000037,0.000163,0.100782,-0.000184,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000014,0.000242,0.000000,0.000000,0.000158,0.100638,-0.000144,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000014,0.000242,0.000000,0.000000,0.000153,0.100496,-0.000142,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000013,0.000243,0.000000,0.000000,0.000149,0.100356,-0.000140,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000017,0.000013,0.000243,0.000000,0.000000,0.000144,0.100218,-0.000138,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000013,0.000244,0.000000,0.000000,0.000141,0.100082,-0.000136,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000013,0.000244,0.000000,0.000000,0.000137,0.099947,-0.000134,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000016,0.000013,0.000245,0.000000,0.000000,0.000133,0.099815,-0.000132,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000013,0.000246,0.000000,0.000000,0.000130,0.099685,-0.000130,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000012,0.000246,0.000000,0.000000,0.000127,0.099556,-0.000129,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000012,0.000247,0.000000,0.000000,0.000124,0.099429,-0.000127,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000247,0.000000,0.000000,0.000122,0.099305,-0.000125,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000012,0.000248,0.000000,0.000000,0.000119,0.099181,-0.000123,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000012,0.000249,0.000111,0.000111,0.000117,0.098951,-0.000231,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620844.csv b/test/channel_loss/channel_forcing/et/cat-2620844.csv new file mode 100644 index 000000000..eb94881cb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620844.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000004,0.000002,0.000000,0.001463,0.000308,0.001465,0.000185,0.000185,0.010441,0.428939,-0.004723,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001303,0.000304,0.001304,0.000055,0.000055,0.009442,0.424101,-0.004838,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001168,0.000299,0.001169,0.000000,0.000000,0.008573,0.419382,-0.004719,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001053,0.000295,0.001054,0.000000,0.000000,0.007815,0.414727,-0.004655,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000955,0.000291,0.000955,0.000000,0.000000,0.007151,0.410134,-0.004593,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000870,0.000288,0.000870,0.000000,0.000000,0.006569,0.405603,-0.004531,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000796,0.000284,0.000797,0.000000,0.000000,0.006057,0.401133,-0.004470,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000732,0.000280,0.000733,0.000000,0.000000,0.005605,0.396723,-0.004410,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000676,0.000276,0.000677,0.000000,0.000000,0.005205,0.392372,-0.004351,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000627,0.000272,0.000628,0.000000,0.000000,0.004851,0.388080,-0.004292,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000583,0.000269,0.000585,0.000000,0.000000,0.004536,0.383845,-0.004235,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000545,0.000265,0.000547,0.000000,0.000000,0.004256,0.379668,-0.004178,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000511,0.000262,0.000514,0.000000,0.000000,0.004006,0.375546,-0.004121,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000481,0.000258,0.000484,0.000000,0.000000,0.003783,0.371480,-0.004066,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000455,0.000254,0.000458,0.000139,0.000139,0.003583,0.367332,-0.004148,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000431,0.000251,0.000435,0.000390,0.000390,0.003402,0.362992,-0.004341,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000409,0.000247,0.000414,0.000543,0.000543,0.003240,0.358558,-0.004433,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000390,0.000243,0.000395,0.000640,0.000640,0.003093,0.354090,-0.004469,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000372,0.000239,0.000378,0.000575,0.000575,0.002960,0.349745,-0.004345,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000266,0.000000,0.000000,0.000000,0.000006,0.000357,0.000236,0.000363,0.000520,0.000520,0.002839,0.345775,-0.003970,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000254,0.000000,0.000000,0.000000,0.000007,0.000342,0.000232,0.000349,0.000458,0.000458,0.002729,0.341908,-0.003867,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000267,0.000000,0.000000,0.000000,0.000008,0.000329,0.000229,0.000337,0.000386,0.000386,0.002629,0.338177,-0.003731,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000332,0.000000,0.000000,0.000000,0.000008,0.000317,0.000226,0.000326,0.000336,0.000336,0.002538,0.334611,-0.003567,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000353,0.000001,0.000002,0.000001,0.000009,0.000307,0.000223,0.000317,0.000259,0.000259,0.002455,0.331186,-0.003424,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000375,0.000006,0.000010,0.000006,0.000010,0.000297,0.000220,0.000313,0.000156,0.000156,0.002378,0.327923,-0.003263,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000985,0.000087,0.000154,0.000087,0.000011,0.000288,0.000218,0.000386,0.000068,0.000068,0.002308,0.325250,-0.002673,1.000000,0.000071 +26,2022-08-02 02:00:00,0.000999,0.000139,0.000179,0.000139,0.000011,0.000280,0.000216,0.000430,0.000000,0.000000,0.002245,0.322669,-0.002581,1.000000,0.000111 +27,2022-08-02 03:00:00,0.000947,0.000164,0.000162,0.000164,0.000012,0.000272,0.000214,0.000449,0.000000,0.000000,0.002186,0.320088,-0.002581,1.000000,0.000109 +28,2022-08-02 04:00:00,0.000960,0.000167,0.000165,0.000167,0.000013,0.000265,0.000211,0.000445,0.000000,0.000000,0.002132,0.317552,-0.002537,1.000000,0.000107 +29,2022-08-02 05:00:00,0.000967,0.000165,0.000167,0.000165,0.000014,0.000259,0.000209,0.000438,0.000000,0.000000,0.002083,0.315055,-0.002497,1.000000,0.000108 +30,2022-08-02 06:00:00,0.000997,0.000171,0.000176,0.000171,0.000015,0.000253,0.000207,0.000439,0.000000,0.000000,0.002037,0.312612,-0.002443,1.000000,0.000112 +31,2022-08-02 07:00:00,0.000000,0.000077,0.000000,0.000077,0.000016,0.000248,0.000204,0.000341,0.000000,0.000000,0.001994,0.309392,-0.003220,1.000000,0.000035 +32,2022-08-02 08:00:00,0.000000,0.000035,0.000000,0.000035,0.000017,0.000242,0.000202,0.000294,0.000000,0.000000,0.001953,0.306216,-0.003177,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000237,0.000199,0.000255,0.000000,0.000000,0.001914,0.303082,-0.003134,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000233,0.000196,0.000251,0.000000,0.000000,0.001878,0.299990,-0.003092,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000228,0.000194,0.000248,0.000000,0.000000,0.001843,0.296940,-0.003050,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000224,0.000191,0.000245,0.000000,0.000000,0.001810,0.293930,-0.003009,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000022,0.000220,0.000188,0.000243,0.000000,0.000000,0.001778,0.291058,-0.002872,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000094,0.000001,0.000000,0.000001,0.000023,0.000216,0.000186,0.000240,0.000117,0.000117,0.001748,0.288106,-0.002953,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000213,0.000183,0.000237,0.000346,0.000346,0.001719,0.284937,-0.003169,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000209,0.000180,0.000234,0.000478,0.000478,0.001690,0.281679,-0.003258,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000205,0.000178,0.000232,0.000571,0.000571,0.001662,0.278375,-0.003305,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000188,0.000000,0.000000,0.000000,0.000027,0.000202,0.000175,0.000229,0.000649,0.000649,0.001635,0.275160,-0.003214,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000199,0.000172,0.000227,0.000598,0.000598,0.001608,0.271854,-0.003306,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000195,0.000169,0.000225,0.000522,0.000522,0.001582,0.268667,-0.003187,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000192,0.000166,0.000223,0.000511,0.000511,0.001556,0.265534,-0.003133,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000189,0.000164,0.000221,0.000436,0.000436,0.001531,0.262518,-0.003017,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000186,0.000161,0.000219,0.000329,0.000329,0.001507,0.259646,-0.002871,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000183,0.000159,0.000217,0.000190,0.000190,0.001483,0.256951,-0.002695,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000180,0.000157,0.000216,0.000038,0.000038,0.001460,0.254442,-0.002509,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000177,0.000155,0.000214,0.000000,0.000000,0.001437,0.252004,-0.002438,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000174,0.000153,0.000213,0.000000,0.000000,0.001416,0.249599,-0.002405,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000172,0.000151,0.000211,0.000000,0.000000,0.001395,0.247226,-0.002373,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000169,0.000149,0.000210,0.000000,0.000000,0.001374,0.244886,-0.002341,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000167,0.000147,0.000209,0.000000,0.000000,0.001354,0.242576,-0.002309,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000164,0.000145,0.000207,0.000000,0.000000,0.001334,0.240298,-0.002278,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000162,0.000143,0.000206,0.000000,0.000000,0.001315,0.238050,-0.002248,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000159,0.000141,0.000205,0.000000,0.000000,0.001297,0.235833,-0.002217,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000157,0.000139,0.000204,0.000000,0.000000,0.001278,0.233645,-0.002188,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000155,0.000137,0.000204,0.000000,0.000000,0.001260,0.231487,-0.002158,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000153,0.000135,0.000203,0.000000,0.000000,0.001243,0.229358,-0.002129,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000151,0.000133,0.000202,0.000000,0.000000,0.001226,0.227257,-0.002101,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000148,0.000131,0.000201,0.000132,0.000132,0.001209,0.225054,-0.002203,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000146,0.000129,0.000201,0.000389,0.000389,0.001192,0.222628,-0.002427,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000144,0.000127,0.000200,0.000541,0.000541,0.001174,0.220084,-0.002544,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000142,0.000125,0.000199,0.000641,0.000641,0.001157,0.217476,-0.002608,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000140,0.000123,0.000198,0.000643,0.000643,0.001140,0.214900,-0.002575,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000138,0.000120,0.000198,0.000600,0.000600,0.001123,0.212402,-0.002498,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000326,0.000000,0.000000,0.000000,0.000061,0.000136,0.000119,0.000197,0.000521,0.000521,0.001106,0.210337,-0.002065,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000125,0.000000,0.000000,0.000000,0.000063,0.000134,0.000117,0.000196,0.000496,0.000496,0.001089,0.208126,-0.002211,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000131,0.000115,0.000196,0.000422,0.000422,0.001072,0.205894,-0.002232,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000129,0.000113,0.000195,0.000321,0.000321,0.001056,0.203792,-0.002102,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000127,0.000111,0.000195,0.000186,0.000186,0.001040,0.201852,-0.001941,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000125,0.000110,0.000194,0.000051,0.000051,0.001024,0.200070,-0.001781,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000124,0.000108,0.000194,0.000000,0.000000,0.001009,0.198363,-0.001707,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000122,0.000107,0.000193,0.000000,0.000000,0.000994,0.196680,-0.001684,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000120,0.000105,0.000193,0.000000,0.000000,0.000980,0.195018,-0.001661,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000118,0.000104,0.000193,0.000000,0.000000,0.000965,0.193379,-0.001639,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000116,0.000103,0.000192,0.000000,0.000000,0.000952,0.191762,-0.001617,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000115,0.000101,0.000192,0.000000,0.000000,0.000938,0.190167,-0.001595,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000113,0.000100,0.000192,0.000000,0.000000,0.000925,0.188593,-0.001574,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000112,0.000099,0.000192,0.000000,0.000000,0.000912,0.187041,-0.001553,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000110,0.000097,0.000192,0.000000,0.000000,0.000899,0.185509,-0.001532,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000108,0.000096,0.000192,0.000000,0.000000,0.000887,0.183998,-0.001511,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000107,0.000095,0.000192,0.000000,0.000000,0.000874,0.182507,-0.001491,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000105,0.000093,0.000192,0.000000,0.000000,0.000862,0.181037,-0.001471,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000104,0.000092,0.000192,0.000127,0.000127,0.000850,0.179460,-0.001577,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000102,0.000090,0.000192,0.000386,0.000386,0.000838,0.177650,-0.001810,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000101,0.000089,0.000192,0.000542,0.000542,0.000826,0.175710,-0.001940,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000099,0.000087,0.000192,0.000642,0.000642,0.000814,0.173697,-0.002013,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000098,0.000085,0.000192,0.000719,0.000719,0.000801,0.171636,-0.002062,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000096,0.000083,0.000192,0.000667,0.000667,0.000788,0.169653,-0.001982,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000095,0.000082,0.000192,0.000577,0.000577,0.000775,0.167786,-0.001868,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000093,0.000080,0.000192,0.000507,0.000507,0.000763,0.166013,-0.001773,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000092,0.000079,0.000192,0.000440,0.000440,0.000750,0.164330,-0.001683,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000090,0.000078,0.000192,0.000337,0.000337,0.000738,0.162771,-0.001559,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000089,0.000076,0.000192,0.000200,0.000200,0.000725,0.161369,-0.001402,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000087,0.000075,0.000192,0.000063,0.000063,0.000714,0.160121,-0.001248,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000086,0.000074,0.000192,0.000000,0.000000,0.000702,0.158951,-0.001170,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000084,0.000073,0.000192,0.000000,0.000000,0.000691,0.157797,-0.001154,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000083,0.000072,0.000192,0.000000,0.000000,0.000680,0.156658,-0.001139,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000082,0.000071,0.000193,0.000000,0.000000,0.000670,0.155535,-0.001123,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000080,0.000070,0.000193,0.000000,0.000000,0.000660,0.154427,-0.001108,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000079,0.000069,0.000193,0.000000,0.000000,0.000650,0.153334,-0.001093,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000078,0.000068,0.000194,0.000000,0.000000,0.000640,0.152255,-0.001079,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000077,0.000068,0.000194,0.000000,0.000000,0.000631,0.151191,-0.001064,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000076,0.000067,0.000194,0.000000,0.000000,0.000622,0.150141,-0.001050,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000075,0.000066,0.000195,0.000000,0.000000,0.000613,0.149106,-0.001036,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000074,0.000065,0.000195,0.000000,0.000000,0.000604,0.148084,-0.001022,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000073,0.000064,0.000196,0.000000,0.000000,0.000596,0.147076,-0.001008,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000072,0.000063,0.000196,0.000140,0.000140,0.000587,0.145943,-0.001133,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000070,0.000062,0.000197,0.000389,0.000389,0.000578,0.144580,-0.001363,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000069,0.000061,0.000197,0.000542,0.000542,0.000570,0.143085,-0.001495,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000068,0.000059,0.000198,0.000646,0.000646,0.000561,0.141507,-0.001578,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000067,0.000058,0.000198,0.000626,0.000626,0.000551,0.139970,-0.001537,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000073,0.000000,0.000000,0.000000,0.000132,0.000066,0.000057,0.000198,0.000578,0.000578,0.000542,0.138573,-0.001397,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000073,0.000000,0.000000,0.000000,0.000134,0.000065,0.000055,0.000199,0.000503,0.000503,0.000533,0.137269,-0.001304,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000084,0.000000,0.000000,0.000000,0.000135,0.000064,0.000054,0.000199,0.000455,0.000455,0.000523,0.136040,-0.001229,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000137,0.000063,0.000053,0.000199,0.000378,0.000378,0.000514,0.134946,-0.001095,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000138,0.000061,0.000053,0.000200,0.000300,0.000300,0.000505,0.134006,-0.000940,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000060,0.000052,0.000200,0.000184,0.000184,0.000497,0.133130,-0.000875,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000649,0.000027,0.000050,0.000027,0.000141,0.000059,0.000052,0.000228,0.000067,0.000067,0.000489,0.132848,-0.000282,1.000000,0.000022 +122,2022-08-06 02:00:00,0.000956,0.000083,0.000128,0.000083,0.000143,0.000059,0.000052,0.000284,0.000000,0.000000,0.000482,0.132862,0.000014,1.000000,0.000067 +123,2022-08-06 03:00:00,0.000858,0.000099,0.000104,0.000099,0.000144,0.000058,0.000052,0.000301,0.000000,0.000000,0.000476,0.132802,-0.000060,1.000000,0.000072 +124,2022-08-06 04:00:00,0.000831,0.000106,0.000098,0.000106,0.000146,0.000057,0.000052,0.000309,0.000000,0.000000,0.000470,0.132722,-0.000080,1.000000,0.000065 +125,2022-08-06 05:00:00,0.000769,0.000092,0.000085,0.000092,0.000147,0.000057,0.000051,0.000296,0.000000,0.000000,0.000465,0.132596,-0.000126,1.000000,0.000058 +126,2022-08-06 06:00:00,0.000869,0.000100,0.000107,0.000100,0.000149,0.000056,0.000051,0.000304,0.000000,0.000000,0.000461,0.132548,-0.000048,1.000000,0.000065 +127,2022-08-06 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000150,0.000055,0.000051,0.000249,0.000000,0.000000,0.000456,0.131749,-0.000799,1.000000,0.000021 +128,2022-08-06 08:00:00,0.000000,0.000021,0.000000,0.000021,0.000152,0.000055,0.000050,0.000228,0.000000,0.000000,0.000451,0.130961,-0.000788,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000054,0.000049,0.000207,0.000000,0.000000,0.000446,0.130183,-0.000778,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000054,0.000049,0.000208,0.000000,0.000000,0.000441,0.129416,-0.000767,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000053,0.000048,0.000209,0.000000,0.000000,0.000436,0.128659,-0.000757,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000052,0.000047,0.000210,0.000000,0.000000,0.000431,0.127912,-0.000747,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000052,0.000047,0.000211,0.000000,0.000000,0.000426,0.127175,-0.000737,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000051,0.000046,0.000212,0.000123,0.000123,0.000421,0.126327,-0.000848,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000051,0.000045,0.000212,0.000373,0.000373,0.000416,0.125243,-0.001084,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000044,0.000213,0.000525,0.000525,0.000410,0.124024,-0.001219,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000049,0.000043,0.000214,0.000623,0.000623,0.000404,0.122724,-0.001300,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000048,0.000042,0.000214,0.000698,0.000698,0.000397,0.121368,-0.001356,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000047,0.000041,0.000215,0.000647,0.000647,0.000390,0.120081,-0.001287,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000047,0.000040,0.000216,0.000566,0.000566,0.000383,0.118891,-0.001190,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000046,0.000039,0.000216,0.000513,0.000513,0.000376,0.117770,-0.001122,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000045,0.000038,0.000217,0.000438,0.000438,0.000369,0.116737,-0.001032,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000044,0.000037,0.000217,0.000331,0.000331,0.000362,0.115824,-0.000914,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000043,0.000036,0.000218,0.000190,0.000190,0.000355,0.115062,-0.000762,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000042,0.000036,0.000218,0.000050,0.000050,0.000349,0.114449,-0.000613,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000035,0.000219,0.000000,0.000000,0.000342,0.113893,-0.000556,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000041,0.000035,0.000220,0.000000,0.000000,0.000336,0.113345,-0.000548,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000040,0.000034,0.000220,0.000000,0.000000,0.000331,0.112804,-0.000541,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000039,0.000034,0.000221,0.000000,0.000000,0.000325,0.112270,-0.000534,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000033,0.000222,0.000000,0.000000,0.000320,0.111744,-0.000526,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000038,0.000033,0.000223,0.000000,0.000000,0.000314,0.111224,-0.000519,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000223,0.000000,0.000000,0.000309,0.110712,-0.000512,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000032,0.000224,0.000000,0.000000,0.000305,0.110206,-0.000506,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000036,0.000032,0.000225,0.000000,0.000000,0.000300,0.109708,-0.000499,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000031,0.000226,0.000000,0.000000,0.000295,0.109216,-0.000492,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000031,0.000226,0.000000,0.000000,0.000291,0.108730,-0.000485,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000030,0.000227,0.000000,0.000000,0.000286,0.108252,-0.000479,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000030,0.000228,0.000119,0.000119,0.000282,0.107662,-0.000589,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000029,0.000229,0.000368,0.000368,0.000278,0.106835,-0.000827,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000033,0.000028,0.000230,0.000523,0.000523,0.000273,0.105866,-0.000969,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000027,0.000230,0.000628,0.000628,0.000268,0.104805,-0.001060,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000026,0.000231,0.000689,0.000689,0.000262,0.103699,-0.001106,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000026,0.000232,0.000634,0.000634,0.000257,0.102663,-0.001036,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000025,0.000232,0.000553,0.000553,0.000251,0.101720,-0.000943,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000519,0.000519,0.000245,0.100824,-0.000896,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000023,0.000233,0.000444,0.000444,0.000240,0.100013,-0.000810,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000335,0.000335,0.000234,0.099321,-0.000693,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000022,0.000235,0.000168,0.000168,0.000228,0.098803,-0.000518,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000022,0.000235,0.000017,0.000017,0.000223,0.098441,-0.000362,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000022,0.000236,0.000000,0.000000,0.000218,0.098101,-0.000341,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000021,0.000237,0.000000,0.000000,0.000214,0.097765,-0.000336,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000021,0.000237,0.000000,0.000000,0.000209,0.097433,-0.000331,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000205,0.097106,-0.000327,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000020,0.000239,0.000000,0.000000,0.000201,0.096784,-0.000323,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000239,0.000000,0.000000,0.000198,0.096465,-0.000318,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000240,0.000000,0.000000,0.000194,0.096151,-0.000314,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000020,0.000241,0.000000,0.000000,0.000191,0.095842,-0.000310,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000019,0.000242,0.000000,0.000000,0.000187,0.095536,-0.000306,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000019,0.000243,0.000000,0.000000,0.000184,0.095235,-0.000301,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000243,0.000000,0.000000,0.000181,0.094937,-0.000297,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000244,0.000000,0.000000,0.000178,0.094644,-0.000293,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000018,0.000245,0.000104,0.000104,0.000175,0.094252,-0.000392,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000018,0.000246,0.000358,0.000358,0.000172,0.093614,-0.000637,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000017,0.000247,0.000515,0.000000,0.000169,0.093339,-0.000276,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000017,0.000248,0.000613,0.000000,0.000166,0.093067,-0.000272,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000248,0.000694,0.000000,0.000163,0.092799,-0.000268,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000017,0.000249,0.000630,0.000000,0.000161,0.092534,-0.000265,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000250,0.000552,0.000000,0.000158,0.092273,-0.000261,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000016,0.000251,0.000511,0.000000,0.000156,0.092015,-0.000258,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000016,0.000252,0.000444,0.000000,0.000153,0.091761,-0.000254,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000016,0.000252,0.000337,0.000000,0.000151,0.091510,-0.000251,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000016,0.000253,0.000190,0.000000,0.000149,0.091263,-0.000247,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000015,0.000254,0.000038,0.000000,0.000146,0.091019,-0.000244,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000000,0.000000,0.000144,0.090778,-0.000241,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000000,0.000000,0.000142,0.090541,-0.000238,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000257,0.000000,0.000000,0.000140,0.090306,-0.000234,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000257,0.000000,0.000000,0.000138,0.090075,-0.000231,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000136,0.089847,-0.000228,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000134,0.089622,-0.000225,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000000,0.000000,0.000132,0.089400,-0.000222,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000261,0.000000,0.000000,0.000130,0.089181,-0.000219,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000128,0.088965,-0.000216,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000014,0.000262,0.000000,0.000000,0.000127,0.088752,-0.000213,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000125,0.088542,-0.000210,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000264,0.000000,0.000000,0.000123,0.088334,-0.000207,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000265,0.000114,0.000000,0.000121,0.088130,-0.000205,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620845.csv b/test/channel_loss/channel_forcing/et/cat-2620845.csv new file mode 100644 index 000000000..3e43a2afb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620845.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000003,0.000002,0.000000,0.001486,0.000476,0.001488,0.000177,0.000177,0.010586,0.428284,-0.004821,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001346,0.000469,0.001346,0.000053,0.000053,0.009710,0.423346,-0.004938,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001226,0.000463,0.001227,0.000000,0.000000,0.008946,0.418529,-0.004816,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001124,0.000456,0.001124,0.000000,0.000000,0.008279,0.413781,-0.004748,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001035,0.000450,0.001035,0.000000,0.000000,0.007693,0.409100,-0.004681,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000959,0.000443,0.000959,0.000000,0.000000,0.007178,0.404484,-0.004615,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000892,0.000437,0.000893,0.000000,0.000000,0.006723,0.399934,-0.004550,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000834,0.000431,0.000835,0.000000,0.000000,0.006320,0.395448,-0.004486,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000783,0.000425,0.000784,0.000000,0.000000,0.005962,0.391025,-0.004423,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000419,0.000739,0.000000,0.000000,0.005644,0.386665,-0.004360,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000697,0.000413,0.000699,0.000000,0.000000,0.005359,0.382366,-0.004299,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000662,0.000407,0.000664,0.000000,0.000000,0.005104,0.378128,-0.004238,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000630,0.000401,0.000633,0.000000,0.000000,0.004876,0.373949,-0.004178,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000602,0.000396,0.000605,0.000000,0.000000,0.004670,0.369830,-0.004120,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000576,0.000390,0.000580,0.000134,0.000134,0.004483,0.365637,-0.004193,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000553,0.000384,0.000557,0.000372,0.000372,0.004314,0.361268,-0.004369,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000532,0.000378,0.000537,0.000521,0.000521,0.004160,0.356814,-0.004454,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000513,0.000372,0.000518,0.000612,0.000612,0.004018,0.352333,-0.004481,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000496,0.000366,0.000501,0.000551,0.000551,0.003888,0.347974,-0.004358,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000239,0.000000,0.000000,0.000000,0.000006,0.000480,0.000360,0.000486,0.000505,0.000505,0.003769,0.343959,-0.004016,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000239,0.000000,0.000000,0.000000,0.000007,0.000465,0.000355,0.000472,0.000453,0.000453,0.003659,0.340051,-0.003907,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000251,0.000000,0.000000,0.000000,0.000007,0.000451,0.000350,0.000459,0.000374,0.000374,0.003557,0.336289,-0.003763,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000222,0.000000,0.000000,0.000000,0.000008,0.000439,0.000345,0.000447,0.000326,0.000326,0.003463,0.332598,-0.003691,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000239,0.000000,0.000000,0.000000,0.000009,0.000427,0.000340,0.000436,0.000248,0.000248,0.003375,0.329052,-0.003545,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000292,0.000001,0.000003,0.000001,0.000010,0.000416,0.000335,0.000427,0.000154,0.000154,0.003294,0.325700,-0.003352,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000847,0.000043,0.000077,0.000043,0.000010,0.000406,0.000331,0.000460,0.000067,0.000067,0.003219,0.322954,-0.002746,1.000000,0.000035 +26,2022-08-02 02:00:00,0.000918,0.000077,0.000104,0.000077,0.000011,0.000397,0.000328,0.000485,0.000000,0.000000,0.003149,0.320356,-0.002598,1.000000,0.000062 +27,2022-08-02 03:00:00,0.000894,0.000096,0.000099,0.000096,0.000012,0.000389,0.000324,0.000496,0.000000,0.000000,0.003085,0.317777,-0.002579,1.000000,0.000065 +28,2022-08-02 04:00:00,0.000907,0.000101,0.000101,0.000101,0.000013,0.000381,0.000321,0.000495,0.000000,0.000000,0.003024,0.315244,-0.002532,1.000000,0.000065 +29,2022-08-02 05:00:00,0.000889,0.000098,0.000097,0.000098,0.000014,0.000373,0.000317,0.000485,0.000000,0.000000,0.002968,0.312734,-0.002510,1.000000,0.000064 +30,2022-08-02 06:00:00,0.000908,0.000100,0.000100,0.000100,0.000015,0.000367,0.000314,0.000481,0.000000,0.000000,0.002915,0.310274,-0.002460,1.000000,0.000065 +31,2022-08-02 07:00:00,0.000000,0.000044,0.000000,0.000044,0.000015,0.000360,0.000309,0.000420,0.000000,0.000000,0.002865,0.307052,-0.003221,1.000000,0.000020 +32,2022-08-02 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000016,0.000354,0.000305,0.000390,0.000000,0.000000,0.002816,0.303876,-0.003176,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000348,0.000301,0.000365,0.000000,0.000000,0.002769,0.300745,-0.003131,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000342,0.000297,0.000360,0.000000,0.000000,0.002724,0.297658,-0.003087,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000336,0.000292,0.000355,0.000000,0.000000,0.002681,0.294615,-0.003043,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000330,0.000288,0.000351,0.000000,0.000000,0.002638,0.291614,-0.003001,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000083,0.000000,0.000001,0.000000,0.000021,0.000325,0.000284,0.000347,0.000000,0.000000,0.002597,0.288737,-0.002877,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000101,0.000000,0.000000,0.000000,0.000022,0.000320,0.000280,0.000343,0.000115,0.000115,0.002558,0.285805,-0.002932,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000083,0.000000,0.000000,0.000000,0.000023,0.000315,0.000276,0.000339,0.000334,0.000334,0.002519,0.282682,-0.003123,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000053,0.000000,0.000000,0.000000,0.000024,0.000310,0.000271,0.000334,0.000455,0.000455,0.002480,0.279453,-0.003229,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000053,0.000000,0.000000,0.000000,0.000026,0.000305,0.000267,0.000331,0.000546,0.000546,0.002442,0.276180,-0.003273,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000126,0.000000,0.000000,0.000000,0.000027,0.000300,0.000263,0.000327,0.000624,0.000624,0.002404,0.272948,-0.003231,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000295,0.000258,0.000323,0.000570,0.000570,0.002367,0.269691,-0.003257,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000291,0.000254,0.000320,0.000513,0.000513,0.002330,0.266536,-0.003155,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000286,0.000249,0.000316,0.000505,0.000505,0.002294,0.263433,-0.003103,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000281,0.000245,0.000313,0.000427,0.000427,0.002258,0.260451,-0.002982,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000277,0.000241,0.000309,0.000323,0.000323,0.002223,0.257615,-0.002837,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000272,0.000238,0.000306,0.000184,0.000184,0.002188,0.254955,-0.002660,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000268,0.000234,0.000303,0.000037,0.000037,0.002154,0.252478,-0.002477,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000264,0.000231,0.000300,0.000000,0.000000,0.002122,0.250071,-0.002406,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000260,0.000228,0.000297,0.000000,0.000000,0.002090,0.247699,-0.002372,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000256,0.000225,0.000294,0.000000,0.000000,0.002059,0.245360,-0.002339,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000252,0.000221,0.000292,0.000000,0.000000,0.002028,0.243054,-0.002306,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000248,0.000218,0.000289,0.000000,0.000000,0.001998,0.240781,-0.002273,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000244,0.000215,0.000287,0.000000,0.000000,0.001969,0.238540,-0.002241,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000241,0.000212,0.000284,0.000000,0.000000,0.001941,0.236330,-0.002210,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000237,0.000209,0.000282,0.000000,0.000000,0.001913,0.234152,-0.002178,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000234,0.000206,0.000280,0.000000,0.000000,0.001885,0.232004,-0.002148,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000230,0.000203,0.000278,0.000000,0.000000,0.001858,0.229886,-0.002117,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000227,0.000201,0.000276,0.000000,0.000000,0.001832,0.227799,-0.002088,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000224,0.000198,0.000274,0.000000,0.000000,0.001806,0.225741,-0.002058,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000220,0.000195,0.000272,0.000128,0.000128,0.001780,0.223586,-0.002155,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000217,0.000191,0.000270,0.000375,0.000375,0.001755,0.221217,-0.002369,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000214,0.000188,0.000268,0.000521,0.000521,0.001729,0.218738,-0.002479,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000211,0.000185,0.000266,0.000625,0.000625,0.001703,0.216192,-0.002547,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000207,0.000181,0.000264,0.000624,0.000624,0.001677,0.213683,-0.002509,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000204,0.000178,0.000262,0.000581,0.000581,0.001651,0.211251,-0.002432,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000258,0.000000,0.000000,0.000000,0.000060,0.000201,0.000175,0.000260,0.000506,0.000506,0.001625,0.209181,-0.002070,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000072,0.000000,0.000000,0.000000,0.000061,0.000197,0.000172,0.000259,0.000486,0.000486,0.001599,0.206977,-0.002204,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000194,0.000169,0.000257,0.000411,0.000411,0.001574,0.204807,-0.002170,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000191,0.000166,0.000255,0.000308,0.000308,0.001549,0.202769,-0.002038,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000188,0.000164,0.000253,0.000181,0.000181,0.001524,0.200885,-0.001884,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000185,0.000161,0.000252,0.000049,0.000049,0.001501,0.199158,-0.001727,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000182,0.000159,0.000250,0.000000,0.000000,0.001477,0.197504,-0.001654,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000179,0.000157,0.000249,0.000000,0.000000,0.001455,0.195873,-0.001631,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000176,0.000154,0.000247,0.000000,0.000000,0.001433,0.194265,-0.001608,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000174,0.000152,0.000246,0.000000,0.000000,0.001411,0.192680,-0.001585,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000171,0.000150,0.000245,0.000000,0.000000,0.001390,0.191117,-0.001563,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000169,0.000148,0.000244,0.000000,0.000000,0.001369,0.189576,-0.001541,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000166,0.000146,0.000243,0.000000,0.000000,0.001349,0.188057,-0.001519,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000164,0.000144,0.000242,0.000000,0.000000,0.001330,0.186560,-0.001498,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000161,0.000142,0.000241,0.000000,0.000000,0.001310,0.185083,-0.001477,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000159,0.000140,0.000240,0.000000,0.000000,0.001291,0.183628,-0.001456,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000156,0.000138,0.000239,0.000000,0.000000,0.001273,0.182192,-0.001435,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000154,0.000136,0.000238,0.000000,0.000000,0.001254,0.180778,-0.001415,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000152,0.000134,0.000237,0.000124,0.000124,0.001236,0.179261,-0.001517,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000150,0.000131,0.000237,0.000370,0.000370,0.001218,0.177522,-0.001739,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000147,0.000129,0.000236,0.000523,0.000523,0.001200,0.175658,-0.001864,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000145,0.000126,0.000235,0.000622,0.000622,0.001181,0.173722,-0.001936,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000143,0.000123,0.000234,0.000697,0.000697,0.001162,0.171739,-0.001983,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000140,0.000121,0.000233,0.000647,0.000647,0.001142,0.169834,-0.001906,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000138,0.000118,0.000232,0.000557,0.000557,0.001123,0.168044,-0.001790,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000135,0.000116,0.000231,0.000503,0.000503,0.001104,0.166333,-0.001711,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000133,0.000114,0.000230,0.000434,0.000434,0.001085,0.164714,-0.001619,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000131,0.000112,0.000229,0.000332,0.000332,0.001066,0.163219,-0.001495,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000128,0.000110,0.000228,0.000193,0.000193,0.001047,0.161881,-0.001338,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000126,0.000108,0.000228,0.000059,0.000059,0.001030,0.160695,-0.001186,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000124,0.000107,0.000227,0.000000,0.000000,0.001012,0.159583,-0.001112,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000122,0.000105,0.000226,0.000000,0.000000,0.000996,0.158487,-0.001096,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000120,0.000104,0.000226,0.000000,0.000000,0.000980,0.157407,-0.001081,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000118,0.000102,0.000225,0.000000,0.000000,0.000964,0.156341,-0.001065,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000116,0.000101,0.000225,0.000000,0.000000,0.000949,0.155291,-0.001050,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000114,0.000099,0.000225,0.000000,0.000000,0.000934,0.154256,-0.001035,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000112,0.000098,0.000224,0.000000,0.000000,0.000919,0.153235,-0.001021,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000111,0.000097,0.000224,0.000000,0.000000,0.000905,0.152228,-0.001006,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000109,0.000095,0.000224,0.000000,0.000000,0.000892,0.151236,-0.000992,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000107,0.000094,0.000224,0.000000,0.000000,0.000878,0.150258,-0.000978,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000106,0.000093,0.000223,0.000000,0.000000,0.000865,0.149293,-0.000964,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000104,0.000091,0.000223,0.000000,0.000000,0.000852,0.148342,-0.000951,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000103,0.000090,0.000223,0.000135,0.000135,0.000840,0.147271,-0.001071,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000101,0.000088,0.000223,0.000375,0.000375,0.000827,0.145979,-0.001292,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000099,0.000086,0.000223,0.000525,0.000525,0.000813,0.144557,-0.001422,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000098,0.000084,0.000223,0.000634,0.000634,0.000800,0.143048,-0.001509,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000096,0.000082,0.000222,0.000608,0.000608,0.000786,0.141586,-0.001462,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000128,0.000094,0.000080,0.000222,0.000562,0.000562,0.000772,0.140314,-0.001272,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000126,0.000000,0.000000,0.000000,0.000129,0.000093,0.000079,0.000222,0.000494,0.000494,0.000758,0.139128,-0.001186,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000091,0.000077,0.000222,0.000455,0.000455,0.000744,0.137996,-0.001132,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000132,0.000089,0.000076,0.000221,0.000377,0.000377,0.000731,0.136957,-0.001039,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000134,0.000088,0.000074,0.000221,0.000297,0.000297,0.000718,0.136074,-0.000883,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000135,0.000086,0.000073,0.000221,0.000182,0.000182,0.000705,0.135254,-0.000820,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000642,0.000018,0.000033,0.000018,0.000136,0.000085,0.000073,0.000239,0.000065,0.000065,0.000694,0.135038,-0.000216,1.000000,0.000015 +122,2022-08-06 02:00:00,0.000960,0.000056,0.000087,0.000056,0.000138,0.000083,0.000073,0.000277,0.000000,0.000000,0.000683,0.135149,0.000111,1.000000,0.000046 +123,2022-08-06 03:00:00,0.000907,0.000071,0.000078,0.000071,0.000139,0.000082,0.000073,0.000293,0.000000,0.000000,0.000674,0.135215,0.000066,1.000000,0.000052 +124,2022-08-06 04:00:00,0.000915,0.000080,0.000079,0.000080,0.000141,0.000081,0.000073,0.000302,0.000000,0.000000,0.000667,0.135287,0.000072,1.000000,0.000051 +125,2022-08-06 05:00:00,0.000863,0.000074,0.000071,0.000074,0.000142,0.000080,0.000073,0.000297,0.000000,0.000000,0.000660,0.135314,0.000028,1.000000,0.000048 +126,2022-08-06 06:00:00,0.000902,0.000076,0.000077,0.000076,0.000143,0.000080,0.000074,0.000299,0.000000,0.000000,0.000653,0.135374,0.000059,1.000000,0.000049 +127,2022-08-06 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000145,0.000079,0.000072,0.000257,0.000000,0.000000,0.000647,0.134619,-0.000755,1.000000,0.000015 +128,2022-08-06 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000146,0.000078,0.000071,0.000240,0.000000,0.000000,0.000640,0.133875,-0.000744,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000077,0.000070,0.000225,0.000000,0.000000,0.000634,0.133142,-0.000733,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000076,0.000069,0.000225,0.000000,0.000000,0.000627,0.132419,-0.000723,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000076,0.000068,0.000226,0.000000,0.000000,0.000620,0.131706,-0.000713,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000075,0.000068,0.000226,0.000000,0.000000,0.000613,0.131003,-0.000703,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000074,0.000067,0.000227,0.000000,0.000000,0.000605,0.130310,-0.000693,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000073,0.000065,0.000227,0.000119,0.000119,0.000598,0.129510,-0.000801,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000072,0.000064,0.000228,0.000353,0.000353,0.000590,0.128490,-0.001020,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000071,0.000062,0.000228,0.000492,0.000492,0.000582,0.127347,-0.001143,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000070,0.000061,0.000228,0.000594,0.000594,0.000573,0.126120,-0.001227,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000069,0.000059,0.000229,0.000672,0.000672,0.000563,0.124833,-0.001287,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000067,0.000057,0.000229,0.000623,0.000623,0.000553,0.123613,-0.001220,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000066,0.000056,0.000229,0.000551,0.000551,0.000543,0.122480,-0.001132,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000065,0.000054,0.000229,0.000509,0.000509,0.000533,0.121406,-0.001075,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000064,0.000053,0.000229,0.000428,0.000428,0.000522,0.120426,-0.000980,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000062,0.000052,0.000229,0.000325,0.000325,0.000512,0.119562,-0.000864,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000061,0.000051,0.000229,0.000188,0.000188,0.000501,0.118846,-0.000717,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000060,0.000050,0.000229,0.000048,0.000048,0.000492,0.118277,-0.000569,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000059,0.000049,0.000229,0.000000,0.000000,0.000482,0.117763,-0.000513,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000058,0.000049,0.000230,0.000000,0.000000,0.000473,0.117257,-0.000506,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000048,0.000230,0.000000,0.000000,0.000465,0.116758,-0.000499,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000055,0.000047,0.000230,0.000000,0.000000,0.000457,0.116266,-0.000492,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000055,0.000047,0.000231,0.000000,0.000000,0.000449,0.115781,-0.000485,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000054,0.000046,0.000231,0.000000,0.000000,0.000441,0.115303,-0.000478,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000053,0.000045,0.000231,0.000000,0.000000,0.000434,0.114831,-0.000471,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000052,0.000045,0.000232,0.000000,0.000000,0.000426,0.114366,-0.000465,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000051,0.000044,0.000232,0.000000,0.000000,0.000419,0.113908,-0.000458,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000050,0.000043,0.000233,0.000000,0.000000,0.000413,0.113456,-0.000452,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000049,0.000043,0.000233,0.000000,0.000000,0.000406,0.113011,-0.000445,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000049,0.000042,0.000234,0.000000,0.000000,0.000400,0.112572,-0.000439,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000048,0.000041,0.000234,0.000115,0.000115,0.000393,0.112026,-0.000546,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000047,0.000040,0.000234,0.000356,0.000356,0.000387,0.111250,-0.000776,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000046,0.000039,0.000235,0.000503,0.000503,0.000380,0.110339,-0.000911,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000045,0.000038,0.000235,0.000612,0.000612,0.000372,0.109335,-0.001004,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000044,0.000036,0.000235,0.000672,0.000672,0.000364,0.108285,-0.001050,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000043,0.000035,0.000236,0.000614,0.000614,0.000356,0.107307,-0.000978,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000042,0.000034,0.000236,0.000539,0.000539,0.000348,0.106417,-0.000890,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000041,0.000033,0.000236,0.000516,0.000516,0.000339,0.105562,-0.000854,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000040,0.000031,0.000236,0.000437,0.000437,0.000330,0.104797,-0.000765,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000039,0.000031,0.000236,0.000327,0.000327,0.000322,0.104151,-0.000646,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000038,0.000030,0.000237,0.000162,0.000162,0.000314,0.103677,-0.000474,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000037,0.000030,0.000237,0.000016,0.000016,0.000306,0.103354,-0.000324,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000036,0.000029,0.000237,0.000000,0.000000,0.000299,0.103051,-0.000303,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000035,0.000029,0.000237,0.000000,0.000000,0.000292,0.102752,-0.000299,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000035,0.000028,0.000238,0.000000,0.000000,0.000286,0.102458,-0.000294,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000034,0.000028,0.000238,0.000000,0.000000,0.000280,0.102167,-0.000290,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000033,0.000027,0.000239,0.000000,0.000000,0.000274,0.101881,-0.000286,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000033,0.000027,0.000239,0.000000,0.000000,0.000269,0.101599,-0.000282,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000032,0.000027,0.000240,0.000000,0.000000,0.000263,0.101321,-0.000278,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000031,0.000026,0.000240,0.000000,0.000000,0.000258,0.101047,-0.000274,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000031,0.000026,0.000241,0.000000,0.000000,0.000254,0.100776,-0.000270,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000030,0.000026,0.000241,0.000000,0.000000,0.000249,0.100510,-0.000267,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000030,0.000025,0.000242,0.000000,0.000000,0.000245,0.100247,-0.000263,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000029,0.000025,0.000243,0.000000,0.000000,0.000240,0.099988,-0.000259,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000029,0.000024,0.000243,0.000099,0.000099,0.000236,0.099635,-0.000353,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000028,0.000024,0.000244,0.000342,0.000342,0.000232,0.099047,-0.000588,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000027,0.000023,0.000244,0.000495,0.000495,0.000227,0.098316,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000027,0.000021,0.000245,0.000589,0.000589,0.000221,0.097503,-0.000813,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000026,0.000020,0.000245,0.000667,0.000667,0.000216,0.096625,-0.000878,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000025,0.000019,0.000245,0.000612,0.000612,0.000209,0.095813,-0.000812,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000025,0.000018,0.000246,0.000541,0.000541,0.000203,0.095083,-0.000730,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000024,0.000017,0.000246,0.000498,0.000498,0.000196,0.094406,-0.000677,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000023,0.000016,0.000246,0.000429,0.000429,0.000190,0.093806,-0.000600,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000016,0.000246,0.000328,0.000328,0.000183,0.093315,-0.000492,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000015,0.000247,0.000186,0.000186,0.000177,0.092970,-0.000345,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000015,0.000247,0.000038,0.000038,0.000171,0.092776,-0.000194,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000015,0.000247,0.000000,0.000000,0.000166,0.092622,-0.000154,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000015,0.000248,0.000000,0.000000,0.000161,0.092471,-0.000152,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000014,0.000248,0.000000,0.000000,0.000156,0.092321,-0.000149,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000014,0.000249,0.000000,0.000000,0.000152,0.092174,-0.000147,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000014,0.000249,0.000000,0.000000,0.000148,0.092029,-0.000145,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000014,0.000250,0.000000,0.000000,0.000144,0.091886,-0.000143,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000014,0.000250,0.000000,0.000000,0.000141,0.091744,-0.000141,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000013,0.000251,0.000000,0.000000,0.000138,0.091605,-0.000139,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000013,0.000252,0.000000,0.000000,0.000135,0.091468,-0.000137,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000013,0.000252,0.000000,0.000000,0.000132,0.091333,-0.000135,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000013,0.000253,0.000000,0.000000,0.000129,0.091199,-0.000133,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000000,0.000000,0.000126,0.091068,-0.000132,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000012,0.000254,0.000109,0.000000,0.000124,0.090938,-0.000130,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620846.csv b/test/channel_loss/channel_forcing/et/cat-2620846.csv new file mode 100644 index 000000000..50607dcff --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620846.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000002,0.000003,0.000002,0.000000,0.001485,0.000468,0.001487,0.000178,0.000178,0.010579,0.429015,-0.004720,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000052,0.000001,0.000000,0.000001,0.000000,0.001344,0.000461,0.001344,0.000052,0.000052,0.009697,0.424230,-0.004785,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000052,0.000001,0.000000,0.000001,0.000000,0.001223,0.000455,0.001224,0.000000,0.000000,0.008928,0.419564,-0.004666,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000052,0.000000,0.000000,0.000000,0.000000,0.001120,0.000448,0.001121,0.000000,0.000000,0.008257,0.414964,-0.004599,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000052,0.000000,0.000000,0.000000,0.000000,0.001031,0.000442,0.001032,0.000000,0.000000,0.007667,0.410431,-0.004534,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000052,0.000000,0.000000,0.000000,0.000000,0.000954,0.000436,0.000955,0.000000,0.000000,0.007149,0.405962,-0.004469,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000052,0.000000,0.000000,0.000000,0.000001,0.000887,0.000430,0.000888,0.000000,0.000000,0.006691,0.401557,-0.004405,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000829,0.000423,0.000830,0.000000,0.000000,0.006285,0.397166,-0.004392,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000777,0.000417,0.000778,0.000000,0.000000,0.005925,0.392837,-0.004329,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000732,0.000411,0.000733,0.000000,0.000000,0.005605,0.388570,-0.004267,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000692,0.000405,0.000693,0.000000,0.000000,0.005319,0.384364,-0.004206,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000656,0.000400,0.000658,0.000000,0.000000,0.005062,0.380218,-0.004146,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000624,0.000394,0.000627,0.000000,0.000000,0.004832,0.376132,-0.004086,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000596,0.000388,0.000598,0.000000,0.000000,0.004625,0.372104,-0.004028,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000570,0.000383,0.000573,0.000130,0.000130,0.004437,0.368006,-0.004098,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000547,0.000377,0.000551,0.000369,0.000369,0.004267,0.363731,-0.004275,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000526,0.000370,0.000530,0.000521,0.000521,0.004112,0.359367,-0.004364,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000507,0.000364,0.000511,0.000617,0.000617,0.003970,0.354971,-0.004396,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000489,0.000358,0.000494,0.000568,0.000568,0.003839,0.350687,-0.004284,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000169,0.000000,0.000000,0.000000,0.000006,0.000473,0.000353,0.000479,0.000527,0.000527,0.003719,0.346671,-0.004016,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000458,0.000347,0.000465,0.000451,0.000451,0.003608,0.342807,-0.003864,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000247,0.000000,0.000000,0.000000,0.000007,0.000444,0.000342,0.000452,0.000361,0.000361,0.003505,0.339144,-0.003663,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000432,0.000337,0.000440,0.000305,0.000305,0.003411,0.335533,-0.003612,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000247,0.000000,0.000000,0.000000,0.000009,0.000420,0.000332,0.000429,0.000239,0.000239,0.003323,0.332094,-0.003438,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000207,0.000000,0.000001,0.000000,0.000009,0.000409,0.000328,0.000419,0.000142,0.000142,0.003241,0.328762,-0.003333,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000019,0.000034,0.000019,0.000010,0.000399,0.000324,0.000428,0.000057,0.000057,0.003165,0.325883,-0.002879,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000764,0.000049,0.000073,0.000049,0.000011,0.000390,0.000320,0.000450,0.000000,0.000000,0.003095,0.323256,-0.002627,1.000000,0.000040 +27,2022-08-02 03:00:00,0.000824,0.000072,0.000085,0.000072,0.000012,0.000382,0.000316,0.000465,0.000000,0.000000,0.003029,0.320715,-0.002541,1.000000,0.000053 +28,2022-08-02 04:00:00,0.000848,0.000085,0.000089,0.000085,0.000013,0.000374,0.000313,0.000471,0.000000,0.000000,0.002969,0.318229,-0.002486,1.000000,0.000057 +29,2022-08-02 05:00:00,0.000851,0.000088,0.000089,0.000088,0.000013,0.000366,0.000309,0.000468,0.000000,0.000000,0.002912,0.315782,-0.002447,1.000000,0.000058 +30,2022-08-02 06:00:00,0.000790,0.000082,0.000077,0.000082,0.000014,0.000359,0.000306,0.000456,0.000000,0.000000,0.002859,0.313322,-0.002460,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000015,0.000353,0.000302,0.000405,0.000000,0.000000,0.002808,0.310195,-0.003128,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000016,0.000346,0.000297,0.000378,0.000000,0.000000,0.002759,0.307112,-0.003083,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000340,0.000293,0.000357,0.000000,0.000000,0.002712,0.304073,-0.003039,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000334,0.000289,0.000352,0.000000,0.000000,0.002666,0.301078,-0.002995,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000328,0.000285,0.000347,0.000000,0.000000,0.002622,0.298125,-0.002952,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000323,0.000281,0.000343,0.000000,0.000000,0.002580,0.295215,-0.002910,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000318,0.000277,0.000338,0.000000,0.000000,0.002539,0.292347,-0.002868,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000022,0.000312,0.000272,0.000334,0.000104,0.000104,0.002499,0.289419,-0.002928,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000023,0.000307,0.000268,0.000330,0.000333,0.000333,0.002460,0.286306,-0.003113,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000024,0.000302,0.000264,0.000326,0.000470,0.000470,0.002421,0.283103,-0.003203,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000001,0.000000,0.000000,0.000000,0.000025,0.000297,0.000259,0.000322,0.000561,0.000561,0.002383,0.279857,-0.003247,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000224,0.000000,0.000000,0.000000,0.000026,0.000293,0.000255,0.000319,0.000649,0.000649,0.002345,0.276790,-0.003067,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000288,0.000250,0.000315,0.000611,0.000611,0.002307,0.273583,-0.003207,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000283,0.000246,0.000311,0.000516,0.000516,0.002270,0.270516,-0.003067,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000278,0.000242,0.000308,0.000481,0.000481,0.002234,0.267527,-0.002989,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000274,0.000238,0.000304,0.000406,0.000406,0.002198,0.264655,-0.002872,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000269,0.000234,0.000301,0.000306,0.000306,0.002163,0.261923,-0.002732,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000265,0.000230,0.000297,0.000180,0.000180,0.002128,0.259354,-0.002569,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000260,0.000227,0.000294,0.000035,0.000035,0.002095,0.256966,-0.002389,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000256,0.000224,0.000291,0.000000,0.000000,0.002062,0.254645,-0.002320,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000252,0.000220,0.000289,0.000000,0.000000,0.002030,0.252358,-0.002287,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000248,0.000217,0.000286,0.000000,0.000000,0.002000,0.250104,-0.002254,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000244,0.000214,0.000283,0.000000,0.000000,0.001969,0.247882,-0.002222,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000241,0.000211,0.000281,0.000000,0.000000,0.001940,0.245691,-0.002190,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000237,0.000208,0.000278,0.000000,0.000000,0.001911,0.243533,-0.002159,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000233,0.000205,0.000276,0.000000,0.000000,0.001883,0.241405,-0.002128,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000230,0.000202,0.000274,0.000000,0.000000,0.001855,0.239307,-0.002097,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000226,0.000199,0.000271,0.000000,0.000000,0.001828,0.237240,-0.002067,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000223,0.000196,0.000269,0.000000,0.000000,0.001801,0.235202,-0.002038,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000220,0.000194,0.000267,0.000000,0.000000,0.001775,0.233193,-0.002009,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000216,0.000191,0.000265,0.000000,0.000000,0.001750,0.231214,-0.001980,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000213,0.000188,0.000263,0.000127,0.000127,0.001724,0.229137,-0.002077,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000210,0.000185,0.000262,0.000375,0.000375,0.001699,0.226845,-0.002291,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000207,0.000181,0.000260,0.000528,0.000528,0.001673,0.224437,-0.002409,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000204,0.000178,0.000258,0.000621,0.000621,0.001648,0.221970,-0.002466,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000200,0.000174,0.000256,0.000630,0.000630,0.001622,0.219530,-0.002440,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000197,0.000171,0.000254,0.000595,0.000595,0.001596,0.217159,-0.002371,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000567,0.000000,0.000000,0.000000,0.000058,0.000194,0.000169,0.000252,0.000501,0.000501,0.001571,0.215473,-0.001686,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000207,0.000000,0.000000,0.000000,0.000060,0.000191,0.000166,0.000250,0.000464,0.000464,0.001546,0.213494,-0.001980,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000188,0.000163,0.000249,0.000387,0.000387,0.001522,0.211415,-0.002079,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000185,0.000160,0.000247,0.000296,0.000296,0.001497,0.209456,-0.001959,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000182,0.000158,0.000245,0.000167,0.000167,0.001474,0.207652,-0.001804,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000179,0.000156,0.000244,0.000046,0.000046,0.001450,0.205993,-0.001659,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000176,0.000153,0.000242,0.000000,0.000000,0.001428,0.204403,-0.001590,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000173,0.000151,0.000241,0.000000,0.000000,0.001406,0.202835,-0.001567,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000170,0.000149,0.000240,0.000000,0.000000,0.001384,0.201290,-0.001545,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000168,0.000147,0.000238,0.000000,0.000000,0.001363,0.199768,-0.001523,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000165,0.000145,0.000237,0.000000,0.000000,0.001343,0.198267,-0.001501,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000163,0.000143,0.000236,0.000000,0.000000,0.001323,0.196787,-0.001479,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000160,0.000141,0.000235,0.000000,0.000000,0.001303,0.195329,-0.001458,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000158,0.000139,0.000234,0.000000,0.000000,0.001284,0.193892,-0.001437,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000155,0.000137,0.000233,0.000000,0.000000,0.001265,0.192475,-0.001417,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000153,0.000135,0.000232,0.000000,0.000000,0.001246,0.191078,-0.001396,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000151,0.000133,0.000231,0.000000,0.000000,0.001228,0.189702,-0.001376,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000149,0.000131,0.000230,0.000000,0.000000,0.001210,0.188345,-0.001357,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000146,0.000129,0.000230,0.000125,0.000125,0.001193,0.186884,-0.001461,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000144,0.000126,0.000229,0.000376,0.000376,0.001175,0.185197,-0.001687,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000142,0.000124,0.000228,0.000532,0.000532,0.001157,0.183380,-0.001816,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000140,0.000121,0.000227,0.000627,0.000627,0.001138,0.181496,-0.001885,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000137,0.000119,0.000226,0.000684,0.000684,0.001119,0.179583,-0.001913,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000135,0.000116,0.000225,0.000656,0.000656,0.001100,0.177725,-0.001858,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000133,0.000113,0.000224,0.000571,0.000571,0.001081,0.175977,-0.001748,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000130,0.000111,0.000223,0.000464,0.000464,0.001062,0.174360,-0.001617,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000128,0.000109,0.000222,0.000395,0.000395,0.001043,0.172833,-0.001526,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000126,0.000107,0.000222,0.000298,0.000298,0.001025,0.171425,-0.001409,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000123,0.000105,0.000221,0.000186,0.000186,0.001007,0.170146,-0.001279,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000025,0.000000,0.000000,0.000000,0.000099,0.000121,0.000104,0.000220,0.000059,0.000059,0.000989,0.169036,-0.001110,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000025,0.000000,0.000000,0.000000,0.000100,0.000119,0.000102,0.000219,0.000000,0.000000,0.000973,0.167999,-0.001036,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000025,0.000000,0.000000,0.000000,0.000102,0.000117,0.000101,0.000219,0.000000,0.000000,0.000956,0.166978,-0.001021,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000025,0.000000,0.000000,0.000000,0.000103,0.000115,0.000099,0.000218,0.000000,0.000000,0.000941,0.165972,-0.001007,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000025,0.000000,0.000000,0.000000,0.000104,0.000113,0.000098,0.000218,0.000000,0.000000,0.000926,0.164979,-0.000992,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000025,0.000000,0.000000,0.000000,0.000106,0.000111,0.000097,0.000217,0.000000,0.000000,0.000911,0.164001,-0.000978,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000110,0.000095,0.000217,0.000000,0.000000,0.000897,0.163013,-0.000989,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000108,0.000094,0.000217,0.000000,0.000000,0.000883,0.162038,-0.000974,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000106,0.000093,0.000216,0.000000,0.000000,0.000869,0.161078,-0.000960,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000105,0.000091,0.000216,0.000000,0.000000,0.000856,0.160131,-0.000947,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000103,0.000090,0.000216,0.000000,0.000000,0.000843,0.159198,-0.000933,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000101,0.000089,0.000216,0.000000,0.000000,0.000830,0.158279,-0.000920,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000100,0.000087,0.000216,0.000000,0.000000,0.000817,0.157372,-0.000907,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000098,0.000086,0.000216,0.000135,0.000135,0.000805,0.156345,-0.001027,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000097,0.000084,0.000215,0.000375,0.000375,0.000792,0.155097,-0.001248,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000095,0.000082,0.000215,0.000528,0.000528,0.000780,0.153715,-0.001382,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000094,0.000080,0.000215,0.000627,0.000627,0.000766,0.152255,-0.001460,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000092,0.000078,0.000215,0.000596,0.000596,0.000753,0.150847,-0.001408,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000104,0.000000,0.000000,0.000000,0.000124,0.000090,0.000077,0.000214,0.000549,0.000549,0.000739,0.149608,-0.001240,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000116,0.000000,0.000000,0.000000,0.000126,0.000089,0.000075,0.000214,0.000472,0.000472,0.000725,0.148475,-0.001133,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000110,0.000000,0.000000,0.000000,0.000127,0.000087,0.000073,0.000214,0.000410,0.000410,0.000712,0.147413,-0.001062,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000128,0.000085,0.000072,0.000214,0.000349,0.000349,0.000699,0.146442,-0.000971,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000194,0.000000,0.000000,0.000000,0.000130,0.000084,0.000071,0.000213,0.000266,0.000266,0.000686,0.145634,-0.000808,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000082,0.000070,0.000213,0.000170,0.000170,0.000674,0.144866,-0.000769,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000683,0.000021,0.000038,0.000021,0.000132,0.000081,0.000070,0.000234,0.000060,0.000060,0.000663,0.144728,-0.000138,1.000000,0.000017 +122,2022-08-06 02:00:00,0.001250,0.000089,0.000144,0.000089,0.000134,0.000080,0.000070,0.000302,0.000000,0.000000,0.000653,0.145105,0.000378,1.000000,0.000073 +123,2022-08-06 03:00:00,0.000958,0.000092,0.000087,0.000092,0.000135,0.000079,0.000070,0.000305,0.000000,0.000000,0.000645,0.145246,0.000141,1.000000,0.000068 +124,2022-08-06 04:00:00,0.000858,0.000090,0.000071,0.000090,0.000137,0.000078,0.000070,0.000304,0.000000,0.000000,0.000638,0.145303,0.000057,1.000000,0.000049 +125,2022-08-06 05:00:00,0.000843,0.000073,0.000068,0.000073,0.000138,0.000077,0.000071,0.000287,0.000000,0.000000,0.000631,0.145345,0.000043,1.000000,0.000045 +126,2022-08-06 06:00:00,0.000959,0.000079,0.000087,0.000079,0.000139,0.000076,0.000071,0.000295,0.000000,0.000000,0.000626,0.145484,0.000138,1.000000,0.000053 +127,2022-08-06 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000141,0.000076,0.000070,0.000252,0.000000,0.000000,0.000620,0.144760,-0.000723,1.000000,0.000017 +128,2022-08-06 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000142,0.000075,0.000069,0.000234,0.000000,0.000000,0.000614,0.144047,-0.000713,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000074,0.000068,0.000217,0.000000,0.000000,0.000608,0.143345,-0.000703,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000073,0.000067,0.000218,0.000000,0.000000,0.000601,0.142652,-0.000693,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000072,0.000066,0.000218,0.000000,0.000000,0.000595,0.141969,-0.000683,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000072,0.000065,0.000219,0.000000,0.000000,0.000588,0.141297,-0.000673,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000071,0.000064,0.000219,0.000000,0.000000,0.000581,0.140633,-0.000663,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000063,0.000220,0.000119,0.000119,0.000574,0.139862,-0.000771,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000069,0.000061,0.000220,0.000360,0.000360,0.000567,0.138864,-0.000998,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000068,0.000060,0.000221,0.000517,0.000517,0.000558,0.137727,-0.001138,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000067,0.000058,0.000221,0.000611,0.000611,0.000550,0.136512,-0.001214,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000066,0.000056,0.000221,0.000678,0.000678,0.000540,0.135250,-0.001263,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000065,0.000055,0.000221,0.000644,0.000644,0.000530,0.134038,-0.001212,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000063,0.000053,0.000221,0.000557,0.000557,0.000520,0.132930,-0.001108,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000062,0.000052,0.000221,0.000471,0.000471,0.000510,0.131922,-0.001008,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000061,0.000050,0.000221,0.000396,0.000396,0.000500,0.131002,-0.000920,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000060,0.000049,0.000221,0.000301,0.000301,0.000489,0.130189,-0.000813,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000058,0.000048,0.000221,0.000170,0.000170,0.000479,0.129518,-0.000672,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000057,0.000048,0.000222,0.000045,0.000045,0.000470,0.128979,-0.000538,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000056,0.000047,0.000222,0.000000,0.000000,0.000461,0.128492,-0.000487,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000055,0.000046,0.000222,0.000000,0.000000,0.000452,0.128012,-0.000480,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000054,0.000046,0.000222,0.000000,0.000000,0.000444,0.127539,-0.000473,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000053,0.000045,0.000222,0.000000,0.000000,0.000436,0.127073,-0.000466,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000052,0.000044,0.000223,0.000000,0.000000,0.000428,0.126614,-0.000459,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000051,0.000044,0.000223,0.000000,0.000000,0.000421,0.126161,-0.000453,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000050,0.000043,0.000223,0.000000,0.000000,0.000413,0.125714,-0.000446,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000049,0.000042,0.000224,0.000000,0.000000,0.000406,0.125274,-0.000440,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000224,0.000000,0.000000,0.000400,0.124841,-0.000434,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000041,0.000225,0.000000,0.000000,0.000393,0.124413,-0.000428,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000047,0.000041,0.000225,0.000000,0.000000,0.000387,0.123992,-0.000421,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000046,0.000040,0.000226,0.000000,0.000000,0.000381,0.123577,-0.000415,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000045,0.000039,0.000226,0.000115,0.000115,0.000374,0.123054,-0.000523,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000045,0.000038,0.000226,0.000354,0.000354,0.000368,0.122303,-0.000750,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000044,0.000037,0.000227,0.000508,0.000508,0.000361,0.121412,-0.000891,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000043,0.000036,0.000227,0.000608,0.000608,0.000354,0.120434,-0.000977,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000042,0.000034,0.000227,0.000674,0.000674,0.000346,0.119406,-0.001028,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000041,0.000033,0.000228,0.000636,0.000636,0.000338,0.118430,-0.000976,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000040,0.000032,0.000228,0.000543,0.000543,0.000330,0.117559,-0.000871,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000030,0.000228,0.000485,0.000485,0.000321,0.116758,-0.000801,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000038,0.000029,0.000228,0.000410,0.000410,0.000313,0.116043,-0.000716,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000029,0.000228,0.000309,0.000309,0.000304,0.115437,-0.000606,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000036,0.000028,0.000228,0.000158,0.000158,0.000296,0.114988,-0.000449,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000001,0.000000,0.000000,0.000000,0.000193,0.000035,0.000028,0.000229,0.000012,0.000012,0.000289,0.114691,-0.000297,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000195,0.000034,0.000027,0.000229,0.000000,0.000000,0.000282,0.114410,-0.000281,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000196,0.000033,0.000027,0.000229,0.000000,0.000000,0.000275,0.114133,-0.000277,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000197,0.000033,0.000026,0.000230,0.000000,0.000000,0.000269,0.113860,-0.000273,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000012,0.000000,0.000000,0.000000,0.000198,0.000032,0.000026,0.000230,0.000000,0.000000,0.000263,0.113602,-0.000259,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000199,0.000031,0.000026,0.000230,0.000000,0.000000,0.000258,0.113336,-0.000265,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000025,0.000231,0.000000,0.000000,0.000252,0.113074,-0.000263,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000231,0.000000,0.000000,0.000247,0.112815,-0.000259,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000025,0.000232,0.000000,0.000000,0.000243,0.112560,-0.000255,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000024,0.000232,0.000000,0.000000,0.000238,0.112308,-0.000252,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000024,0.000233,0.000000,0.000000,0.000234,0.112060,-0.000248,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000024,0.000233,0.000000,0.000000,0.000229,0.111816,-0.000244,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000027,0.000023,0.000234,0.000000,0.000000,0.000225,0.111575,-0.000241,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000023,0.000235,0.000100,0.000100,0.000221,0.111239,-0.000336,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000026,0.000022,0.000235,0.000344,0.000344,0.000217,0.110667,-0.000572,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000021,0.000236,0.000504,0.000504,0.000212,0.109946,-0.000721,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000025,0.000020,0.000236,0.000600,0.000600,0.000207,0.109140,-0.000806,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000019,0.000236,0.000678,0.000678,0.000201,0.108269,-0.000871,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000017,0.000237,0.000634,0.000634,0.000195,0.107454,-0.000815,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000016,0.000237,0.000540,0.000540,0.000189,0.106743,-0.000711,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000016,0.000237,0.000492,0.000492,0.000182,0.106089,-0.000653,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000015,0.000237,0.000414,0.000414,0.000176,0.105523,-0.000567,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000014,0.000238,0.000314,0.000314,0.000169,0.105062,-0.000460,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000014,0.000238,0.000179,0.000179,0.000163,0.104742,-0.000320,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000013,0.000238,0.000036,0.000036,0.000157,0.104567,-0.000175,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000013,0.000238,0.000000,0.000000,0.000152,0.104430,-0.000137,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000013,0.000239,0.000000,0.000000,0.000147,0.104295,-0.000135,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000013,0.000239,0.000000,0.000000,0.000143,0.104162,-0.000133,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000013,0.000240,0.000000,0.000000,0.000139,0.104031,-0.000131,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000016,0.000012,0.000240,0.000000,0.000000,0.000135,0.103902,-0.000129,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000012,0.000241,0.000000,0.000000,0.000131,0.103774,-0.000128,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000012,0.000241,0.000000,0.000000,0.000128,0.103648,-0.000126,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000012,0.000242,0.000000,0.000000,0.000125,0.103524,-0.000124,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000012,0.000242,0.000000,0.000000,0.000122,0.103402,-0.000122,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000000,0.000000,0.000119,0.103282,-0.000120,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000244,0.000000,0.000000,0.000116,0.103163,-0.000119,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000244,0.000000,0.000000,0.000114,0.103046,-0.000117,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000013,0.000011,0.000245,0.000111,0.000111,0.000111,0.102822,-0.000225,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620847.csv b/test/channel_loss/channel_forcing/et/cat-2620847.csv new file mode 100644 index 000000000..035803360 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620847.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000006,0.000011,0.000006,0.000000,0.001439,0.000137,0.001445,0.000178,0.000178,0.010294,0.430593,-0.004666,1.000000,0.000005 +1,2022-08-01 01:00:00,0.000063,0.000003,0.000000,0.000003,0.000000,0.001261,0.000135,0.001263,0.000052,0.000052,0.009169,0.425872,-0.004721,1.000000,0.000002 +2,2022-08-01 02:00:00,0.000063,0.000003,0.000002,0.000003,0.000000,0.001110,0.000134,0.001114,0.000000,0.000000,0.008192,0.421259,-0.004613,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000063,0.000002,0.000002,0.000002,0.000000,0.000983,0.000132,0.000985,0.000000,0.000000,0.007341,0.416705,-0.004555,1.000000,0.000002 +4,2022-08-01 04:00:00,0.000063,0.000002,0.000002,0.000002,0.000000,0.000874,0.000130,0.000876,0.000000,0.000000,0.006598,0.412208,-0.004497,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000063,0.000002,0.000002,0.000002,0.000000,0.000780,0.000129,0.000783,0.000000,0.000000,0.005946,0.407768,-0.004440,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000063,0.000002,0.000002,0.000002,0.000001,0.000699,0.000127,0.000702,0.000000,0.000000,0.005374,0.403384,-0.004384,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000001,0.000629,0.000125,0.000631,0.000000,0.000000,0.004870,0.398995,-0.004389,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000568,0.000124,0.000570,0.000000,0.000000,0.004426,0.394662,-0.004333,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000515,0.000122,0.000516,0.000000,0.000000,0.004033,0.390384,-0.004278,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000468,0.000121,0.000470,0.000000,0.000000,0.003685,0.386159,-0.004224,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000427,0.000119,0.000430,0.000000,0.000000,0.003377,0.381988,-0.004171,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000391,0.000118,0.000394,0.000000,0.000000,0.003103,0.377870,-0.004118,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000359,0.000116,0.000362,0.000000,0.000000,0.002860,0.373804,-0.004066,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000331,0.000115,0.000335,0.000130,0.000130,0.002644,0.369661,-0.004143,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000306,0.000113,0.000310,0.000365,0.000365,0.002451,0.365339,-0.004322,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000284,0.000112,0.000289,0.000515,0.000515,0.002278,0.360923,-0.004416,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000264,0.000110,0.000269,0.000613,0.000613,0.002124,0.356466,-0.004457,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000247,0.000108,0.000252,0.000565,0.000565,0.001986,0.352113,-0.004353,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000138,0.000000,0.000000,0.000000,0.000006,0.000231,0.000107,0.000237,0.000525,0.000525,0.001862,0.347991,-0.004122,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000217,0.000105,0.000224,0.000448,0.000448,0.001751,0.344047,-0.003944,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000225,0.000000,0.000000,0.000000,0.000008,0.000204,0.000104,0.000212,0.000358,0.000358,0.001651,0.340277,-0.003770,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000193,0.000103,0.000201,0.000302,0.000302,0.001561,0.336575,-0.003702,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000225,0.000000,0.000000,0.000000,0.000009,0.000182,0.000101,0.000192,0.000237,0.000237,0.001480,0.333019,-0.003556,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000281,0.000005,0.000009,0.000005,0.000010,0.000173,0.000100,0.000188,0.000140,0.000140,0.001406,0.329650,-0.003369,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000619,0.000070,0.000124,0.000070,0.000011,0.000165,0.000099,0.000246,0.000056,0.000056,0.001340,0.326627,-0.003023,1.000000,0.000057 +26,2022-08-02 02:00:00,0.000761,0.000148,0.000209,0.000148,0.000012,0.000157,0.000098,0.000317,0.000000,0.000000,0.001281,0.323754,-0.002873,1.000000,0.000119 +27,2022-08-02 03:00:00,0.000819,0.000207,0.000236,0.000207,0.000013,0.000151,0.000097,0.000370,0.000000,0.000000,0.001227,0.320948,-0.002806,1.000000,0.000148 +28,2022-08-02 04:00:00,0.000838,0.000236,0.000245,0.000236,0.000013,0.000145,0.000096,0.000394,0.000000,0.000000,0.001178,0.318187,-0.002761,1.000000,0.000157 +29,2022-08-02 05:00:00,0.000842,0.000244,0.000246,0.000244,0.000014,0.000139,0.000095,0.000397,0.000000,0.000000,0.001134,0.315464,-0.002723,1.000000,0.000160 +30,2022-08-02 06:00:00,0.000756,0.000222,0.000203,0.000222,0.000015,0.000134,0.000094,0.000372,0.000000,0.000000,0.001094,0.312733,-0.002732,1.000000,0.000141 +31,2022-08-02 07:00:00,0.000000,0.000100,0.000000,0.000100,0.000016,0.000130,0.000093,0.000246,0.000000,0.000000,0.001057,0.309490,-0.003243,1.000000,0.000041 +32,2022-08-02 08:00:00,0.000000,0.000041,0.000000,0.000041,0.000017,0.000125,0.000092,0.000183,0.000000,0.000000,0.001023,0.306288,-0.003202,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000121,0.000090,0.000140,0.000000,0.000000,0.000992,0.303127,-0.003161,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000118,0.000089,0.000137,0.000000,0.000000,0.000963,0.300006,-0.003121,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000115,0.000088,0.000135,0.000000,0.000000,0.000937,0.296925,-0.003082,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000112,0.000087,0.000133,0.000000,0.000000,0.000912,0.293882,-0.003043,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000109,0.000086,0.000131,0.000000,0.000000,0.000889,0.290878,-0.003004,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000106,0.000085,0.000130,0.000103,0.000103,0.000868,0.287810,-0.003068,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000104,0.000084,0.000128,0.000327,0.000327,0.000848,0.284559,-0.003251,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000101,0.000082,0.000127,0.000461,0.000461,0.000829,0.281218,-0.003342,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000099,0.000081,0.000126,0.000553,0.000553,0.000811,0.277828,-0.003390,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000225,0.000000,0.000000,0.000000,0.000028,0.000097,0.000080,0.000125,0.000643,0.000643,0.000794,0.274613,-0.003214,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000095,0.000079,0.000124,0.000605,0.000605,0.000778,0.271255,-0.003358,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000093,0.000078,0.000124,0.000509,0.000509,0.000762,0.268034,-0.003221,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000091,0.000076,0.000123,0.000473,0.000473,0.000747,0.264890,-0.003144,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000089,0.000075,0.000123,0.000400,0.000400,0.000733,0.261857,-0.003032,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000088,0.000074,0.000122,0.000302,0.000302,0.000720,0.258960,-0.002897,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000086,0.000073,0.000122,0.000179,0.000179,0.000707,0.256221,-0.002740,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000085,0.000072,0.000122,0.000035,0.000035,0.000694,0.253658,-0.002563,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000083,0.000071,0.000121,0.000000,0.000000,0.000682,0.251162,-0.002496,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000082,0.000070,0.000121,0.000000,0.000000,0.000671,0.248698,-0.002464,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000080,0.000070,0.000121,0.000000,0.000000,0.000660,0.246265,-0.002433,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000079,0.000069,0.000121,0.000000,0.000000,0.000650,0.243862,-0.002402,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000078,0.000068,0.000122,0.000000,0.000000,0.000639,0.241491,-0.002372,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000077,0.000067,0.000122,0.000000,0.000000,0.000630,0.239149,-0.002342,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000076,0.000066,0.000122,0.000000,0.000000,0.000620,0.236836,-0.002312,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000074,0.000065,0.000122,0.000000,0.000000,0.000611,0.234553,-0.002283,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000073,0.000064,0.000123,0.000000,0.000000,0.000602,0.232299,-0.002254,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000072,0.000064,0.000123,0.000000,0.000000,0.000593,0.230073,-0.002226,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000071,0.000063,0.000123,0.000000,0.000000,0.000585,0.227876,-0.002198,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000070,0.000062,0.000124,0.000000,0.000000,0.000577,0.225706,-0.002170,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000069,0.000061,0.000124,0.000126,0.000126,0.000569,0.223439,-0.002267,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000068,0.000060,0.000125,0.000371,0.000371,0.000561,0.220959,-0.002480,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000067,0.000059,0.000125,0.000522,0.000522,0.000553,0.218361,-0.002598,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000066,0.000058,0.000126,0.000615,0.000615,0.000545,0.215705,-0.002657,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000065,0.000057,0.000126,0.000628,0.000628,0.000537,0.213068,-0.002636,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000064,0.000056,0.000127,0.000592,0.000592,0.000529,0.210501,-0.002567,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000646,0.000005,0.000008,0.000005,0.000064,0.000063,0.000056,0.000132,0.000500,0.000500,0.000521,0.208687,-0.001814,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000225,0.000002,0.000000,0.000002,0.000065,0.000063,0.000055,0.000130,0.000459,0.000459,0.000514,0.206529,-0.002158,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000000,0.000002,0.000000,0.000002,0.000067,0.000062,0.000054,0.000130,0.000385,0.000385,0.000506,0.204250,-0.002280,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000061,0.000053,0.000129,0.000293,0.000293,0.000499,0.202089,-0.002161,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000060,0.000053,0.000130,0.000167,0.000167,0.000492,0.200081,-0.002008,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000059,0.000052,0.000130,0.000046,0.000046,0.000485,0.198217,-0.001864,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000058,0.000051,0.000131,0.000000,0.000000,0.000478,0.196422,-0.001795,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000057,0.000051,0.000132,0.000000,0.000000,0.000471,0.194650,-0.001772,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000057,0.000050,0.000133,0.000000,0.000000,0.000465,0.192900,-0.001750,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000056,0.000049,0.000133,0.000000,0.000000,0.000459,0.191172,-0.001728,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000055,0.000049,0.000134,0.000000,0.000000,0.000452,0.189467,-0.001706,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000054,0.000048,0.000135,0.000000,0.000000,0.000446,0.187782,-0.001684,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000054,0.000048,0.000136,0.000000,0.000000,0.000440,0.186120,-0.001663,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000053,0.000047,0.000137,0.000000,0.000000,0.000434,0.184478,-0.001642,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000052,0.000046,0.000138,0.000000,0.000000,0.000429,0.182857,-0.001621,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000051,0.000046,0.000139,0.000000,0.000000,0.000423,0.181256,-0.001601,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000051,0.000045,0.000139,0.000000,0.000000,0.000417,0.179676,-0.001580,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000050,0.000045,0.000140,0.000000,0.000000,0.000412,0.178115,-0.001560,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000049,0.000044,0.000141,0.000125,0.000125,0.000407,0.176451,-0.001664,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000049,0.000043,0.000142,0.000372,0.000372,0.000401,0.174564,-0.001887,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000048,0.000043,0.000143,0.000526,0.000526,0.000396,0.172548,-0.002016,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000047,0.000042,0.000144,0.000622,0.000622,0.000390,0.170464,-0.002084,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000047,0.000041,0.000145,0.000683,0.000683,0.000384,0.168345,-0.002119,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000046,0.000040,0.000146,0.000652,0.000652,0.000379,0.166284,-0.002061,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000045,0.000040,0.000147,0.000567,0.000567,0.000373,0.164333,-0.001951,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000045,0.000039,0.000148,0.000457,0.000457,0.000367,0.162515,-0.001817,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000044,0.000038,0.000149,0.000390,0.000390,0.000362,0.160787,-0.001728,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000043,0.000038,0.000150,0.000295,0.000295,0.000356,0.159175,-0.001613,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000043,0.000037,0.000151,0.000186,0.000186,0.000351,0.157690,-0.001484,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000039,0.000000,0.000000,0.000000,0.000110,0.000042,0.000037,0.000152,0.000060,0.000060,0.000345,0.156387,-0.001303,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000031,0.000000,0.000000,0.000000,0.000111,0.000041,0.000036,0.000153,0.000000,0.000000,0.000340,0.155152,-0.001236,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000023,0.000000,0.000000,0.000000,0.000113,0.000041,0.000036,0.000154,0.000000,0.000000,0.000335,0.153924,-0.001228,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000023,0.000000,0.000000,0.000000,0.000115,0.000040,0.000035,0.000155,0.000000,0.000000,0.000331,0.152712,-0.001212,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000023,0.000000,0.000000,0.000000,0.000116,0.000040,0.000035,0.000156,0.000000,0.000000,0.000326,0.151515,-0.001197,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000023,0.000000,0.000000,0.000000,0.000118,0.000039,0.000034,0.000157,0.000000,0.000000,0.000321,0.150334,-0.001182,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000038,0.000034,0.000158,0.000000,0.000000,0.000317,0.149144,-0.001189,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000038,0.000034,0.000159,0.000000,0.000000,0.000313,0.147970,-0.001174,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000037,0.000033,0.000160,0.000000,0.000000,0.000308,0.146810,-0.001160,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000037,0.000033,0.000161,0.000000,0.000000,0.000304,0.145665,-0.001145,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000036,0.000032,0.000162,0.000000,0.000000,0.000300,0.144535,-0.001130,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000036,0.000032,0.000163,0.000000,0.000000,0.000296,0.143419,-0.001116,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000035,0.000032,0.000165,0.000000,0.000000,0.000292,0.142317,-0.001102,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000035,0.000031,0.000166,0.000134,0.000134,0.000288,0.141096,-0.001221,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000034,0.000031,0.000167,0.000370,0.000370,0.000284,0.139658,-0.001438,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000034,0.000030,0.000168,0.000521,0.000521,0.000280,0.138089,-0.001569,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000033,0.000029,0.000169,0.000620,0.000620,0.000276,0.136442,-0.001647,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000033,0.000029,0.000170,0.000592,0.000592,0.000272,0.134844,-0.001598,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000032,0.000028,0.000171,0.000545,0.000545,0.000268,0.133374,-0.001470,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000103,0.000000,0.000000,0.000000,0.000141,0.000032,0.000028,0.000172,0.000467,0.000467,0.000263,0.132039,-0.001335,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000072,0.000000,0.000000,0.000000,0.000142,0.000031,0.000027,0.000174,0.000406,0.000406,0.000259,0.130751,-0.001288,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000144,0.000031,0.000027,0.000175,0.000345,0.000345,0.000255,0.129594,-0.001158,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000214,0.000000,0.000000,0.000000,0.000145,0.000030,0.000026,0.000176,0.000262,0.000262,0.000251,0.128619,-0.000975,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000147,0.000030,0.000026,0.000177,0.000168,0.000168,0.000247,0.127663,-0.000957,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000655,0.000058,0.000106,0.000058,0.000149,0.000030,0.000026,0.000236,0.000060,0.000060,0.000244,0.127243,-0.000420,1.000000,0.000048 +122,2022-08-06 02:00:00,0.001211,0.000230,0.000370,0.000230,0.000150,0.000029,0.000026,0.000410,0.000000,0.000000,0.000241,0.127175,-0.000068,1.000000,0.000188 +123,2022-08-06 03:00:00,0.000924,0.000242,0.000232,0.000242,0.000152,0.000029,0.000026,0.000422,0.000000,0.000000,0.000238,0.126961,-0.000214,1.000000,0.000179 +124,2022-08-06 04:00:00,0.000832,0.000239,0.000193,0.000239,0.000153,0.000028,0.000026,0.000420,0.000000,0.000000,0.000235,0.126698,-0.000263,1.000000,0.000134 +125,2022-08-06 05:00:00,0.000830,0.000201,0.000193,0.000201,0.000155,0.000028,0.000026,0.000384,0.000000,0.000000,0.000233,0.126437,-0.000261,1.000000,0.000125 +126,2022-08-06 06:00:00,0.000921,0.000214,0.000231,0.000214,0.000156,0.000028,0.000026,0.000398,0.000000,0.000000,0.000230,0.126231,-0.000206,1.000000,0.000143 +127,2022-08-06 07:00:00,0.000000,0.000096,0.000000,0.000096,0.000158,0.000028,0.000025,0.000282,0.000000,0.000000,0.000228,0.125346,-0.000885,1.000000,0.000046 +128,2022-08-06 08:00:00,0.000000,0.000046,0.000000,0.000046,0.000160,0.000027,0.000025,0.000233,0.000000,0.000000,0.000226,0.124472,-0.000874,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000027,0.000025,0.000188,0.000000,0.000000,0.000223,0.123610,-0.000863,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000027,0.000024,0.000190,0.000000,0.000000,0.000221,0.122758,-0.000852,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000026,0.000024,0.000191,0.000000,0.000000,0.000218,0.121917,-0.000841,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000026,0.000024,0.000192,0.000000,0.000000,0.000216,0.121087,-0.000830,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000026,0.000023,0.000193,0.000000,0.000000,0.000213,0.120267,-0.000820,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000026,0.000023,0.000195,0.000119,0.000119,0.000211,0.119341,-0.000927,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000025,0.000023,0.000196,0.000357,0.000357,0.000208,0.118191,-0.001150,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000025,0.000022,0.000197,0.000510,0.000510,0.000206,0.116905,-0.001286,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000025,0.000022,0.000198,0.000605,0.000605,0.000203,0.115540,-0.001365,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000024,0.000021,0.000199,0.000674,0.000674,0.000200,0.114126,-0.001415,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000024,0.000021,0.000201,0.000642,0.000642,0.000197,0.112760,-0.001366,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000023,0.000020,0.000202,0.000554,0.000554,0.000193,0.111499,-0.001261,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000023,0.000020,0.000203,0.000464,0.000464,0.000190,0.110342,-0.001157,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000023,0.000019,0.000204,0.000391,0.000391,0.000187,0.109272,-0.001070,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000022,0.000019,0.000205,0.000298,0.000298,0.000184,0.108307,-0.000965,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000022,0.000019,0.000206,0.000170,0.000170,0.000181,0.107481,-0.000826,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000022,0.000018,0.000207,0.000045,0.000045,0.000178,0.106789,-0.000692,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000021,0.000018,0.000209,0.000000,0.000000,0.000175,0.106150,-0.000639,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000021,0.000018,0.000210,0.000000,0.000000,0.000172,0.105519,-0.000631,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000020,0.000018,0.000211,0.000000,0.000000,0.000169,0.104896,-0.000623,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000020,0.000018,0.000212,0.000000,0.000000,0.000167,0.104281,-0.000615,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000020,0.000017,0.000213,0.000000,0.000000,0.000164,0.103674,-0.000607,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000020,0.000017,0.000214,0.000000,0.000000,0.000162,0.103074,-0.000600,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000019,0.000017,0.000216,0.000000,0.000000,0.000159,0.102482,-0.000592,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000019,0.000017,0.000217,0.000000,0.000000,0.000157,0.101898,-0.000585,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000019,0.000016,0.000218,0.000000,0.000000,0.000155,0.101321,-0.000577,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000016,0.000219,0.000000,0.000000,0.000153,0.100751,-0.000570,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000018,0.000016,0.000220,0.000000,0.000000,0.000150,0.100188,-0.000563,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000018,0.000016,0.000222,0.000000,0.000000,0.000148,0.099633,-0.000555,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000016,0.000223,0.000114,0.000000,0.000146,0.099084,-0.000548,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000015,0.000224,0.000349,0.000000,0.000144,0.098543,-0.000542,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000017,0.000015,0.000225,0.000501,0.000000,0.000142,0.098008,-0.000535,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000017,0.000015,0.000226,0.000602,0.000000,0.000140,0.097480,-0.000528,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000015,0.000228,0.000670,0.000000,0.000139,0.096959,-0.000521,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000017,0.000015,0.000229,0.000634,0.000000,0.000137,0.096444,-0.000515,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000016,0.000015,0.000230,0.000539,0.000000,0.000135,0.095936,-0.000508,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000014,0.000231,0.000479,0.000000,0.000133,0.095434,-0.000502,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000014,0.000232,0.000406,0.000000,0.000131,0.094939,-0.000495,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000014,0.000233,0.000303,0.000000,0.000130,0.094450,-0.000489,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000014,0.000235,0.000158,0.000000,0.000128,0.093967,-0.000483,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000011,0.000000,0.000000,0.000000,0.000220,0.000015,0.000014,0.000236,0.000013,0.000011,0.000126,0.093490,-0.000477,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000011,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000000,0.000000,0.000125,0.093030,-0.000460,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000223,0.000015,0.000013,0.000238,0.000000,0.000000,0.000123,0.092576,-0.000454,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000225,0.000015,0.000013,0.000239,0.000000,0.000000,0.000122,0.092128,-0.000448,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000039,0.000000,0.000001,0.000000,0.000226,0.000015,0.000013,0.000241,0.000000,0.000000,0.000120,0.091713,-0.000415,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000227,0.000014,0.000013,0.000242,0.000000,0.000000,0.000119,0.091276,-0.000437,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000013,0.000243,0.000000,0.000000,0.000117,0.090833,-0.000443,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000012,0.000244,0.000000,0.000000,0.000116,0.090396,-0.000437,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000012,0.000245,0.000000,0.000000,0.000114,0.089964,-0.000432,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000012,0.000246,0.000000,0.000000,0.000113,0.089538,-0.000426,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000012,0.000247,0.000000,0.000000,0.000111,0.089117,-0.000421,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000012,0.000249,0.000000,0.000000,0.000110,0.088701,-0.000416,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000012,0.000250,0.000000,0.000000,0.000108,0.088291,-0.000410,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000012,0.000251,0.000099,0.000000,0.000107,0.087886,-0.000405,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000252,0.000340,0.000000,0.000106,0.087486,-0.000400,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000013,0.000011,0.000253,0.000498,0.000000,0.000104,0.087091,-0.000395,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000011,0.000254,0.000595,0.000000,0.000103,0.086701,-0.000390,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000011,0.000255,0.000675,0.000000,0.000102,0.086316,-0.000385,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000012,0.000011,0.000256,0.000633,0.000000,0.000100,0.085936,-0.000380,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000012,0.000011,0.000257,0.000540,0.000000,0.000099,0.085561,-0.000375,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000012,0.000011,0.000259,0.000488,0.000000,0.000098,0.085190,-0.000371,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000012,0.000010,0.000260,0.000410,0.000000,0.000097,0.084824,-0.000366,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000012,0.000010,0.000261,0.000312,0.000000,0.000095,0.084463,-0.000361,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000011,0.000010,0.000262,0.000178,0.000000,0.000094,0.084106,-0.000357,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000011,0.000010,0.000263,0.000036,0.000000,0.000093,0.083754,-0.000352,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000011,0.000010,0.000264,0.000000,0.000000,0.000092,0.083406,-0.000348,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000011,0.000010,0.000265,0.000000,0.000000,0.000091,0.083063,-0.000343,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000011,0.000010,0.000266,0.000000,0.000000,0.000090,0.082724,-0.000339,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000011,0.000010,0.000267,0.000000,0.000000,0.000088,0.082389,-0.000335,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000011,0.000009,0.000268,0.000000,0.000000,0.000087,0.082059,-0.000330,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000010,0.000009,0.000269,0.000000,0.000000,0.000086,0.081733,-0.000326,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000010,0.000009,0.000270,0.000000,0.000000,0.000085,0.081410,-0.000322,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000010,0.000009,0.000271,0.000000,0.000000,0.000084,0.081092,-0.000318,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000010,0.000009,0.000272,0.000000,0.000000,0.000083,0.080778,-0.000314,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000010,0.000009,0.000273,0.000000,0.000000,0.000082,0.080468,-0.000310,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000010,0.000009,0.000275,0.000000,0.000000,0.000081,0.080162,-0.000306,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000010,0.000009,0.000276,0.000000,0.000000,0.000080,0.079860,-0.000302,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000010,0.000009,0.000277,0.000112,0.000000,0.000079,0.079561,-0.000298,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620848.csv b/test/channel_loss/channel_forcing/et/cat-2620848.csv new file mode 100644 index 000000000..a492e7ccd --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620848.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000247,0.000000,0.000000,0.000000,0.000000,0.001494,0.000527,0.001494,0.000192,0.000192,0.010630,0.426927,-0.004985,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000005,0.000000,0.000000,0.000000,0.000000,0.001359,0.000520,0.001359,0.000059,0.000059,0.009791,0.421906,-0.005021,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000003,0.000000,0.000000,0.000000,0.000000,0.001244,0.000512,0.001244,0.000000,0.000000,0.009060,0.417013,-0.004893,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000003,0.000000,0.000000,0.000000,0.000000,0.001145,0.000505,0.001145,0.000000,0.000000,0.008420,0.412189,-0.004824,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000003,0.000000,0.000000,0.000000,0.000000,0.001060,0.000498,0.001060,0.000000,0.000000,0.007858,0.407433,-0.004756,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000005,0.000000,0.000000,0.000000,0.000000,0.000986,0.000491,0.000986,0.000000,0.000000,0.007363,0.402747,-0.004686,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000001,0.000922,0.000484,0.000922,0.000000,0.000000,0.006925,0.398125,-0.004622,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000865,0.000477,0.000866,0.000000,0.000000,0.006537,0.393567,-0.004559,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000815,0.000470,0.000816,0.000000,0.000000,0.006192,0.389072,-0.004494,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000771,0.000464,0.000773,0.000000,0.000000,0.005884,0.384642,-0.004430,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000732,0.000457,0.000734,0.000000,0.000000,0.005609,0.380274,-0.004368,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000698,0.000451,0.000700,0.000000,0.000000,0.005362,0.375969,-0.004306,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000667,0.000444,0.000669,0.000000,0.000000,0.005139,0.371724,-0.004244,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000639,0.000438,0.000642,0.000000,0.000000,0.004938,0.367540,-0.004184,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000614,0.000431,0.000617,0.000143,0.000143,0.004756,0.363274,-0.004266,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000591,0.000425,0.000595,0.000390,0.000390,0.004590,0.358825,-0.004449,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000570,0.000418,0.000574,0.000546,0.000546,0.004438,0.354286,-0.004539,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000551,0.000411,0.000556,0.000650,0.000650,0.004298,0.349709,-0.004577,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000533,0.000404,0.000539,0.000597,0.000597,0.004168,0.345248,-0.004461,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000260,0.000000,0.000000,0.000000,0.000006,0.000517,0.000398,0.000523,0.000552,0.000552,0.004049,0.341152,-0.004097,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000249,0.000000,0.000000,0.000000,0.000007,0.000502,0.000392,0.000509,0.000479,0.000479,0.003939,0.337175,-0.003977,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000325,0.000000,0.000000,0.000000,0.000008,0.000489,0.000386,0.000496,0.000388,0.000388,0.003837,0.333420,-0.003755,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000290,0.000000,0.000000,0.000000,0.000008,0.000476,0.000381,0.000484,0.000339,0.000339,0.003742,0.329731,-0.003688,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000401,0.000001,0.000002,0.000001,0.000009,0.000464,0.000376,0.000474,0.000263,0.000263,0.003653,0.326276,-0.003455,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000356,0.000003,0.000005,0.000003,0.000010,0.000453,0.000371,0.000466,0.000161,0.000161,0.003571,0.322924,-0.003352,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000923,0.000048,0.000083,0.000048,0.000010,0.000443,0.000366,0.000501,0.000071,0.000071,0.003494,0.320190,-0.002734,1.000000,0.000038 +26,2022-08-02 02:00:00,0.000996,0.000083,0.000112,0.000083,0.000011,0.000434,0.000363,0.000528,0.000000,0.000000,0.003423,0.317609,-0.002581,1.000000,0.000067 +27,2022-08-02 03:00:00,0.000842,0.000089,0.000081,0.000089,0.000012,0.000425,0.000359,0.000526,0.000000,0.000000,0.003357,0.314944,-0.002666,1.000000,0.000059 +28,2022-08-02 04:00:00,0.000944,0.000098,0.000100,0.000098,0.000013,0.000417,0.000355,0.000527,0.000000,0.000000,0.003295,0.312397,-0.002546,1.000000,0.000061 +29,2022-08-02 05:00:00,0.000822,0.000083,0.000076,0.000083,0.000014,0.000409,0.000351,0.000506,0.000000,0.000000,0.003237,0.309790,-0.002608,1.000000,0.000054 +30,2022-08-02 06:00:00,0.000865,0.000085,0.000084,0.000085,0.000015,0.000402,0.000347,0.000502,0.000000,0.000000,0.003183,0.307255,-0.002535,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000036,0.000000,0.000036,0.000016,0.000395,0.000342,0.000447,0.000000,0.000000,0.003130,0.303986,-0.003269,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000388,0.000337,0.000421,0.000000,0.000000,0.003079,0.300763,-0.003223,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000382,0.000332,0.000399,0.000000,0.000000,0.003030,0.297586,-0.003177,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000375,0.000328,0.000394,0.000000,0.000000,0.002982,0.294454,-0.003132,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000369,0.000323,0.000389,0.000000,0.000000,0.002936,0.291366,-0.003087,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000363,0.000318,0.000384,0.000000,0.000000,0.002891,0.288323,-0.003044,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000059,0.000000,0.000000,0.000000,0.000021,0.000358,0.000314,0.000379,0.000000,0.000000,0.002847,0.285381,-0.002942,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000060,0.000000,0.000000,0.000000,0.000022,0.000352,0.000310,0.000375,0.000117,0.000117,0.002805,0.282366,-0.003015,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000042,0.000000,0.000000,0.000000,0.000024,0.000347,0.000305,0.000370,0.000337,0.000337,0.002763,0.279159,-0.003207,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000042,0.000000,0.000000,0.000000,0.000025,0.000341,0.000300,0.000366,0.000470,0.000470,0.002721,0.275867,-0.003292,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000042,0.000000,0.000000,0.000000,0.000026,0.000336,0.000295,0.000362,0.000567,0.000567,0.002680,0.272526,-0.003341,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000273,0.000000,0.000000,0.000000,0.000027,0.000331,0.000290,0.000357,0.000657,0.000657,0.002639,0.269371,-0.003154,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000325,0.000285,0.000353,0.000615,0.000615,0.002599,0.266034,-0.003337,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000320,0.000280,0.000349,0.000530,0.000530,0.002559,0.262828,-0.003206,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000315,0.000275,0.000345,0.000499,0.000499,0.002519,0.259697,-0.003131,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000310,0.000271,0.000341,0.000428,0.000428,0.002480,0.256680,-0.003016,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000305,0.000266,0.000338,0.000329,0.000329,0.002441,0.253805,-0.002876,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000300,0.000262,0.000334,0.000197,0.000197,0.002404,0.251100,-0.002704,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000295,0.000259,0.000330,0.000045,0.000045,0.002367,0.248584,-0.002517,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000291,0.000255,0.000327,0.000000,0.000000,0.002331,0.246147,-0.002436,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000286,0.000251,0.000324,0.000000,0.000000,0.002296,0.243745,-0.002402,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000282,0.000248,0.000321,0.000000,0.000000,0.002262,0.241378,-0.002368,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000278,0.000244,0.000318,0.000000,0.000000,0.002229,0.239043,-0.002334,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000273,0.000241,0.000315,0.000000,0.000000,0.002196,0.236742,-0.002301,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000269,0.000237,0.000312,0.000000,0.000000,0.002164,0.234474,-0.002268,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000265,0.000234,0.000309,0.000000,0.000000,0.002133,0.232238,-0.002236,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000261,0.000231,0.000306,0.000000,0.000000,0.002102,0.230034,-0.002204,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000258,0.000227,0.000304,0.000000,0.000000,0.002072,0.227860,-0.002173,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000254,0.000224,0.000301,0.000000,0.000000,0.002042,0.225718,-0.002142,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000250,0.000221,0.000299,0.000000,0.000000,0.002013,0.223606,-0.002112,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000246,0.000218,0.000297,0.000000,0.000000,0.001985,0.221524,-0.002082,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000243,0.000215,0.000295,0.000138,0.000138,0.001957,0.219336,-0.002189,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000239,0.000211,0.000292,0.000392,0.000392,0.001928,0.216928,-0.002408,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000236,0.000207,0.000290,0.000545,0.000545,0.001900,0.214403,-0.002525,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000232,0.000203,0.000288,0.000653,0.000653,0.001871,0.211808,-0.002595,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000228,0.000199,0.000285,0.000676,0.000676,0.001842,0.209228,-0.002580,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000225,0.000196,0.000283,0.000634,0.000634,0.001813,0.206725,-0.002503,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000793,0.000003,0.000006,0.000003,0.000060,0.000221,0.000193,0.000285,0.000544,0.000544,0.001785,0.205122,-0.001603,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000263,0.000002,0.000000,0.000002,0.000061,0.000218,0.000190,0.000281,0.000503,0.000503,0.001758,0.203066,-0.002056,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000063,0.000214,0.000187,0.000278,0.000431,0.000431,0.001730,0.200851,-0.002215,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000211,0.000184,0.000275,0.000331,0.000331,0.001703,0.198766,-0.002085,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000207,0.000181,0.000273,0.000196,0.000196,0.001677,0.196844,-0.001922,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000204,0.000178,0.000271,0.000058,0.000058,0.001651,0.195084,-0.001759,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000201,0.000175,0.000269,0.000000,0.000000,0.001626,0.193407,-0.001677,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000198,0.000173,0.000268,0.000000,0.000000,0.001601,0.191754,-0.001653,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000195,0.000171,0.000266,0.000000,0.000000,0.001577,0.190124,-0.001630,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000192,0.000168,0.000264,0.000000,0.000000,0.001553,0.188518,-0.001607,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000189,0.000166,0.000263,0.000000,0.000000,0.001530,0.186934,-0.001584,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000186,0.000163,0.000262,0.000000,0.000000,0.001508,0.185372,-0.001561,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000183,0.000161,0.000260,0.000000,0.000000,0.001486,0.183833,-0.001539,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000180,0.000159,0.000259,0.000000,0.000000,0.001464,0.182316,-0.001517,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000178,0.000157,0.000258,0.000000,0.000000,0.001443,0.180820,-0.001496,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000175,0.000154,0.000257,0.000000,0.000000,0.001422,0.179345,-0.001475,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000173,0.000152,0.000256,0.000000,0.000000,0.001401,0.177892,-0.001454,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000170,0.000150,0.000255,0.000000,0.000000,0.001381,0.176459,-0.001433,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000168,0.000148,0.000253,0.000135,0.000135,0.001361,0.174913,-0.001546,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000165,0.000145,0.000252,0.000389,0.000389,0.001341,0.173138,-0.001774,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000162,0.000142,0.000251,0.000545,0.000545,0.001321,0.171235,-0.001903,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000160,0.000139,0.000250,0.000657,0.000657,0.001300,0.169249,-0.001986,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000157,0.000136,0.000249,0.000750,0.000750,0.001279,0.167199,-0.002050,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000155,0.000133,0.000248,0.000708,0.000708,0.001257,0.165219,-0.001980,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000152,0.000130,0.000247,0.000606,0.000606,0.001236,0.163369,-0.001851,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000149,0.000128,0.000245,0.000506,0.000506,0.001214,0.161643,-0.001726,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000146,0.000125,0.000244,0.000439,0.000439,0.001193,0.160008,-0.001635,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000144,0.000123,0.000243,0.000340,0.000340,0.001172,0.158494,-0.001514,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000141,0.000121,0.000242,0.000208,0.000208,0.001151,0.157131,-0.001362,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000139,0.000119,0.000241,0.000073,0.000073,0.001132,0.155921,-0.001210,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000136,0.000117,0.000240,0.000000,0.000000,0.001112,0.154800,-0.001121,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000134,0.000116,0.000239,0.000000,0.000000,0.001094,0.153694,-0.001105,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000132,0.000114,0.000238,0.000000,0.000000,0.001076,0.152605,-0.001090,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000130,0.000112,0.000238,0.000000,0.000000,0.001059,0.151531,-0.001074,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000128,0.000111,0.000237,0.000000,0.000000,0.001042,0.150472,-0.001059,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000126,0.000109,0.000237,0.000000,0.000000,0.001025,0.149428,-0.001044,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000124,0.000108,0.000236,0.000000,0.000000,0.001009,0.148399,-0.001029,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000122,0.000106,0.000236,0.000000,0.000000,0.000994,0.147384,-0.001014,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000120,0.000105,0.000235,0.000000,0.000000,0.000979,0.146384,-0.001000,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000118,0.000103,0.000235,0.000000,0.000000,0.000964,0.145398,-0.000986,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000116,0.000102,0.000234,0.000000,0.000000,0.000949,0.144427,-0.000972,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000114,0.000100,0.000234,0.000000,0.000000,0.000935,0.143468,-0.000958,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000113,0.000099,0.000234,0.000145,0.000145,0.000921,0.142381,-0.001087,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000111,0.000097,0.000234,0.000388,0.000388,0.000907,0.141070,-0.001311,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000109,0.000094,0.000233,0.000544,0.000544,0.000892,0.139624,-0.001446,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000107,0.000092,0.000233,0.000656,0.000656,0.000877,0.138087,-0.001537,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000105,0.000090,0.000232,0.000644,0.000644,0.000862,0.136584,-0.001503,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000103,0.000088,0.000232,0.000605,0.000605,0.000846,0.135203,-0.001380,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000101,0.000086,0.000231,0.000507,0.000507,0.000830,0.133939,-0.001265,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000100,0.000084,0.000231,0.000445,0.000445,0.000815,0.132753,-0.001186,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000107,0.000000,0.000000,0.000000,0.000133,0.000098,0.000083,0.000230,0.000375,0.000375,0.000800,0.131696,-0.001057,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000188,0.000000,0.000000,0.000000,0.000134,0.000096,0.000081,0.000230,0.000298,0.000298,0.000785,0.130810,-0.000886,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000104,0.000000,0.000000,0.000000,0.000136,0.000094,0.000080,0.000230,0.000185,0.000185,0.000771,0.129966,-0.000844,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000657,0.000017,0.000031,0.000017,0.000137,0.000093,0.000080,0.000246,0.000071,0.000071,0.000758,0.129761,-0.000205,1.000000,0.000014 +122,2022-08-06 02:00:00,0.001058,0.000060,0.000096,0.000060,0.000139,0.000091,0.000080,0.000290,0.000000,0.000000,0.000747,0.129959,0.000199,1.000000,0.000049 +123,2022-08-06 03:00:00,0.000777,0.000059,0.000053,0.000059,0.000140,0.000090,0.000080,0.000289,0.000000,0.000000,0.000737,0.129920,-0.000039,1.000000,0.000043 +124,2022-08-06 04:00:00,0.000632,0.000052,0.000035,0.000052,0.000141,0.000089,0.000080,0.000282,0.000000,0.000000,0.000728,0.129756,-0.000164,1.000000,0.000026 +125,2022-08-06 05:00:00,0.000640,0.000039,0.000036,0.000039,0.000143,0.000088,0.000079,0.000270,0.000000,0.000000,0.000719,0.129601,-0.000155,1.000000,0.000023 +126,2022-08-06 06:00:00,0.000702,0.000040,0.000043,0.000040,0.000144,0.000087,0.000079,0.000271,0.000000,0.000000,0.000712,0.129503,-0.000098,1.000000,0.000027 +127,2022-08-06 07:00:00,0.000000,0.000018,0.000000,0.000018,0.000146,0.000086,0.000078,0.000250,0.000000,0.000000,0.000704,0.128757,-0.000746,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000147,0.000085,0.000077,0.000241,0.000000,0.000000,0.000696,0.128021,-0.000736,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000084,0.000076,0.000232,0.000000,0.000000,0.000688,0.127296,-0.000725,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000083,0.000075,0.000233,0.000000,0.000000,0.000680,0.126581,-0.000715,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000082,0.000074,0.000233,0.000000,0.000000,0.000672,0.125876,-0.000705,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000081,0.000073,0.000233,0.000000,0.000000,0.000663,0.125181,-0.000695,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000080,0.000072,0.000234,0.000000,0.000000,0.000655,0.124496,-0.000685,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000079,0.000070,0.000234,0.000130,0.000130,0.000647,0.123693,-0.000803,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000078,0.000069,0.000234,0.000376,0.000376,0.000638,0.122659,-0.001034,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000077,0.000067,0.000235,0.000532,0.000532,0.000629,0.121485,-0.001174,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000075,0.000065,0.000235,0.000640,0.000640,0.000618,0.120222,-0.001264,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000074,0.000063,0.000235,0.000731,0.000731,0.000608,0.118887,-0.001335,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000073,0.000061,0.000235,0.000690,0.000690,0.000596,0.117611,-0.001276,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000071,0.000060,0.000235,0.000594,0.000594,0.000585,0.116448,-0.001163,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000070,0.000058,0.000235,0.000514,0.000514,0.000573,0.115381,-0.001067,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000068,0.000056,0.000234,0.000439,0.000439,0.000561,0.114402,-0.000979,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000067,0.000055,0.000234,0.000337,0.000337,0.000549,0.113538,-0.000864,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000065,0.000054,0.000234,0.000199,0.000199,0.000538,0.112822,-0.000716,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000064,0.000053,0.000234,0.000058,0.000058,0.000527,0.112255,-0.000566,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000063,0.000052,0.000234,0.000000,0.000000,0.000517,0.111754,-0.000501,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000062,0.000052,0.000234,0.000000,0.000000,0.000507,0.111259,-0.000494,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000060,0.000051,0.000235,0.000000,0.000000,0.000497,0.110772,-0.000487,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000059,0.000050,0.000235,0.000000,0.000000,0.000488,0.110292,-0.000480,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000058,0.000050,0.000235,0.000000,0.000000,0.000479,0.109818,-0.000474,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000057,0.000049,0.000235,0.000000,0.000000,0.000471,0.109351,-0.000467,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000056,0.000048,0.000236,0.000000,0.000000,0.000463,0.108891,-0.000460,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000055,0.000047,0.000236,0.000000,0.000000,0.000455,0.108437,-0.000454,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000054,0.000047,0.000236,0.000000,0.000000,0.000447,0.107990,-0.000447,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000053,0.000046,0.000237,0.000000,0.000000,0.000440,0.107549,-0.000441,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000053,0.000045,0.000237,0.000000,0.000000,0.000433,0.107114,-0.000435,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000052,0.000045,0.000237,0.000000,0.000000,0.000426,0.106686,-0.000428,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000051,0.000044,0.000238,0.000125,0.000125,0.000419,0.106140,-0.000546,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000050,0.000043,0.000238,0.000370,0.000370,0.000412,0.105361,-0.000780,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000049,0.000041,0.000239,0.000529,0.000529,0.000404,0.104435,-0.000925,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000048,0.000040,0.000239,0.000640,0.000640,0.000396,0.103414,-0.001021,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000047,0.000038,0.000239,0.000718,0.000718,0.000387,0.102330,-0.001084,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000046,0.000037,0.000239,0.000674,0.000674,0.000378,0.101305,-0.001025,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000045,0.000035,0.000239,0.000578,0.000578,0.000369,0.100389,-0.000916,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000044,0.000034,0.000239,0.000525,0.000525,0.000359,0.099539,-0.000851,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000042,0.000033,0.000239,0.000449,0.000449,0.000350,0.098775,-0.000764,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000041,0.000032,0.000239,0.000341,0.000341,0.000340,0.098129,-0.000646,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000040,0.000031,0.000239,0.000176,0.000176,0.000331,0.097654,-0.000475,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000039,0.000031,0.000240,0.000023,0.000023,0.000323,0.097337,-0.000317,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000038,0.000030,0.000240,0.000000,0.000000,0.000315,0.097047,-0.000290,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000037,0.000030,0.000240,0.000000,0.000000,0.000308,0.096761,-0.000286,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000036,0.000029,0.000240,0.000000,0.000000,0.000301,0.096480,-0.000282,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000036,0.000029,0.000241,0.000000,0.000000,0.000294,0.096202,-0.000278,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000035,0.000029,0.000241,0.000000,0.000000,0.000288,0.095929,-0.000274,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000034,0.000028,0.000242,0.000000,0.000000,0.000282,0.095659,-0.000270,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000033,0.000028,0.000242,0.000000,0.000000,0.000276,0.095393,-0.000266,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000033,0.000027,0.000242,0.000000,0.000000,0.000271,0.095131,-0.000262,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000032,0.000027,0.000243,0.000000,0.000000,0.000266,0.094872,-0.000258,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000032,0.000027,0.000243,0.000000,0.000000,0.000261,0.094618,-0.000255,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000031,0.000026,0.000244,0.000000,0.000000,0.000256,0.094367,-0.000251,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000030,0.000026,0.000245,0.000000,0.000000,0.000251,0.094119,-0.000248,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000030,0.000025,0.000245,0.000108,0.000108,0.000247,0.093768,-0.000351,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000029,0.000024,0.000246,0.000359,0.000359,0.000242,0.093175,-0.000593,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000029,0.000023,0.000246,0.000519,0.000519,0.000237,0.092433,-0.000742,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000028,0.000022,0.000246,0.000628,0.000628,0.000231,0.091593,-0.000840,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000027,0.000021,0.000247,0.000719,0.000719,0.000224,0.090676,-0.000917,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000026,0.000019,0.000247,0.000685,0.000685,0.000217,0.089806,-0.000870,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000025,0.000018,0.000247,0.000582,0.000582,0.000210,0.089050,-0.000756,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000025,0.000018,0.000247,0.000523,0.000000,0.000203,0.088878,-0.000172,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000024,0.000018,0.000248,0.000451,0.000000,0.000197,0.088708,-0.000170,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000023,0.000017,0.000248,0.000346,0.000000,0.000192,0.088541,-0.000167,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000023,0.000017,0.000248,0.000198,0.000000,0.000186,0.088376,-0.000165,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000022,0.000017,0.000249,0.000046,0.000000,0.000181,0.088213,-0.000163,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000017,0.000249,0.000000,0.000000,0.000177,0.088053,-0.000160,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000021,0.000017,0.000250,0.000000,0.000000,0.000172,0.087895,-0.000158,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000016,0.000250,0.000000,0.000000,0.000168,0.087739,-0.000156,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000016,0.000251,0.000000,0.000000,0.000164,0.087586,-0.000153,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000016,0.000251,0.000000,0.000000,0.000161,0.087435,-0.000151,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000016,0.000252,0.000000,0.000000,0.000157,0.087285,-0.000149,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000015,0.000253,0.000000,0.000000,0.000154,0.087138,-0.000147,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000015,0.000253,0.000000,0.000000,0.000151,0.086993,-0.000145,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000015,0.000254,0.000000,0.000000,0.000148,0.086851,-0.000143,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000015,0.000254,0.000000,0.000000,0.000145,0.086710,-0.000141,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000000,0.000000,0.000142,0.086571,-0.000139,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000014,0.000256,0.000000,0.000000,0.000140,0.086434,-0.000137,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000014,0.000256,0.000120,0.000000,0.000137,0.086299,-0.000135,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620849.csv b/test/channel_loss/channel_forcing/et/cat-2620849.csv new file mode 100644 index 000000000..9f67f0077 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620849.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000314,0.000002,0.000003,0.000002,0.000000,0.001481,0.000440,0.001483,0.000184,0.000184,0.010555,0.428909,-0.004753,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000002,0.000001,0.000000,0.000001,0.000000,0.001337,0.000434,0.001337,0.000054,0.000054,0.009653,0.424046,-0.004863,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000002,0.000001,0.000000,0.000001,0.000000,0.001214,0.000428,0.001214,0.000000,0.000000,0.008867,0.419305,-0.004741,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001109,0.000422,0.001109,0.000000,0.000000,0.008180,0.414631,-0.004674,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001018,0.000416,0.001018,0.000000,0.000000,0.007578,0.410022,-0.004608,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.000940,0.000410,0.000940,0.000000,0.000000,0.007048,0.405479,-0.004543,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000001,0.000871,0.000404,0.000872,0.000000,0.000000,0.006581,0.400999,-0.004479,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000812,0.000399,0.000813,0.000000,0.000000,0.006168,0.396582,-0.004418,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000760,0.000393,0.000761,0.000000,0.000000,0.005801,0.392226,-0.004356,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000714,0.000387,0.000715,0.000000,0.000000,0.005475,0.387932,-0.004294,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000673,0.000382,0.000675,0.000000,0.000000,0.005184,0.383698,-0.004234,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000637,0.000377,0.000639,0.000000,0.000000,0.004923,0.379524,-0.004174,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000605,0.000371,0.000607,0.000000,0.000000,0.004690,0.375409,-0.004115,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000576,0.000366,0.000579,0.000000,0.000000,0.004480,0.371352,-0.004057,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000550,0.000361,0.000553,0.000137,0.000137,0.004291,0.367216,-0.004135,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000527,0.000355,0.000531,0.000382,0.000382,0.004119,0.362898,-0.004319,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000506,0.000349,0.000510,0.000531,0.000531,0.003963,0.358493,-0.004404,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000486,0.000344,0.000491,0.000627,0.000627,0.003820,0.354057,-0.004436,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000469,0.000338,0.000474,0.000571,0.000571,0.003689,0.349738,-0.004319,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000301,0.000000,0.000000,0.000000,0.000006,0.000453,0.000333,0.000459,0.000522,0.000522,0.003569,0.345825,-0.003913,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000301,0.000000,0.000000,0.000000,0.000007,0.000438,0.000328,0.000445,0.000457,0.000457,0.003459,0.342032,-0.003793,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000365,0.000000,0.000000,0.000000,0.000007,0.000425,0.000324,0.000432,0.000376,0.000376,0.003358,0.338434,-0.003598,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000372,0.000000,0.000000,0.000000,0.000008,0.000412,0.000319,0.000421,0.000326,0.000326,0.003265,0.334944,-0.003490,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000449,0.000003,0.000006,0.000003,0.000009,0.000401,0.000315,0.000413,0.000252,0.000252,0.003178,0.331646,-0.003298,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000451,0.000009,0.000013,0.000009,0.000010,0.000391,0.000311,0.000409,0.000152,0.000152,0.003098,0.328487,-0.003159,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000981,0.000065,0.000111,0.000065,0.000010,0.000381,0.000307,0.000457,0.000065,0.000065,0.003025,0.325884,-0.002603,1.000000,0.000052 +26,2022-08-02 02:00:00,0.000996,0.000102,0.000129,0.000102,0.000011,0.000372,0.000304,0.000485,0.000000,0.000000,0.002957,0.323380,-0.002504,1.000000,0.000080 +27,2022-08-02 03:00:00,0.000935,0.000117,0.000114,0.000117,0.000012,0.000364,0.000301,0.000493,0.000000,0.000000,0.002894,0.320865,-0.002515,1.000000,0.000077 +28,2022-08-02 04:00:00,0.000953,0.000119,0.000118,0.000119,0.000013,0.000356,0.000298,0.000488,0.000000,0.000000,0.002835,0.318400,-0.002465,1.000000,0.000076 +29,2022-08-02 05:00:00,0.000941,0.000116,0.000115,0.000116,0.000014,0.000349,0.000295,0.000478,0.000000,0.000000,0.002781,0.315961,-0.002439,1.000000,0.000075 +30,2022-08-02 06:00:00,0.000970,0.000119,0.000121,0.000119,0.000014,0.000342,0.000291,0.000476,0.000000,0.000000,0.002730,0.313579,-0.002382,1.000000,0.000078 +31,2022-08-02 07:00:00,0.000000,0.000053,0.000000,0.000053,0.000015,0.000336,0.000287,0.000405,0.000000,0.000000,0.002681,0.310393,-0.003186,1.000000,0.000024 +32,2022-08-02 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000016,0.000330,0.000283,0.000370,0.000000,0.000000,0.002635,0.307253,-0.003141,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000324,0.000279,0.000341,0.000000,0.000000,0.002590,0.304156,-0.003096,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000319,0.000275,0.000337,0.000000,0.000000,0.002547,0.301103,-0.003053,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000313,0.000271,0.000332,0.000000,0.000000,0.002505,0.298094,-0.003010,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000308,0.000268,0.000328,0.000000,0.000000,0.002465,0.295126,-0.002967,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000097,0.000001,0.000001,0.000001,0.000021,0.000303,0.000264,0.000325,0.000000,0.000000,0.002426,0.292296,-0.002831,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000087,0.000000,0.000000,0.000000,0.000022,0.000298,0.000260,0.000321,0.000114,0.000114,0.002388,0.289384,-0.002912,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000293,0.000256,0.000317,0.000337,0.000337,0.002351,0.286269,-0.003115,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000289,0.000252,0.000313,0.000465,0.000465,0.002314,0.283072,-0.003197,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000284,0.000248,0.000309,0.000555,0.000555,0.002278,0.279831,-0.003241,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000239,0.000000,0.000000,0.000000,0.000026,0.000279,0.000244,0.000306,0.000638,0.000638,0.002243,0.276728,-0.003103,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000275,0.000240,0.000302,0.000593,0.000593,0.002208,0.273478,-0.003251,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000270,0.000236,0.000299,0.000514,0.000514,0.002173,0.270351,-0.003127,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000266,0.000232,0.000296,0.000495,0.000495,0.002139,0.267287,-0.003064,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000262,0.000228,0.000293,0.000421,0.000421,0.002105,0.264339,-0.002948,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000257,0.000224,0.000290,0.000320,0.000320,0.002072,0.261532,-0.002807,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000253,0.000221,0.000287,0.000187,0.000187,0.002039,0.258895,-0.002636,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000249,0.000218,0.000284,0.000038,0.000038,0.002008,0.256443,-0.002453,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000245,0.000215,0.000281,0.000000,0.000000,0.001977,0.254063,-0.002380,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000242,0.000212,0.000279,0.000000,0.000000,0.001947,0.251716,-0.002347,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000238,0.000209,0.000276,0.000000,0.000000,0.001918,0.249403,-0.002313,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000234,0.000206,0.000274,0.000000,0.000000,0.001889,0.247122,-0.002281,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000231,0.000203,0.000271,0.000000,0.000000,0.001862,0.244873,-0.002249,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000227,0.000200,0.000269,0.000000,0.000000,0.001834,0.242656,-0.002217,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000224,0.000197,0.000267,0.000000,0.000000,0.001808,0.240470,-0.002186,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000221,0.000194,0.000265,0.000000,0.000000,0.001782,0.238315,-0.002155,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000217,0.000192,0.000263,0.000000,0.000000,0.001756,0.236191,-0.002125,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000214,0.000189,0.000261,0.000000,0.000000,0.001731,0.234096,-0.002095,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000211,0.000186,0.000259,0.000000,0.000000,0.001706,0.232031,-0.002065,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000208,0.000184,0.000258,0.000000,0.000000,0.001682,0.229995,-0.002036,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000205,0.000181,0.000256,0.000132,0.000132,0.001658,0.227857,-0.002137,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000202,0.000178,0.000254,0.000384,0.000384,0.001634,0.225502,-0.002356,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000199,0.000175,0.000253,0.000531,0.000531,0.001610,0.223034,-0.002467,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000196,0.000171,0.000251,0.000633,0.000633,0.001585,0.220502,-0.002533,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000193,0.000168,0.000249,0.000641,0.000641,0.001561,0.217996,-0.002505,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000190,0.000165,0.000247,0.000601,0.000601,0.001536,0.215566,-0.002430,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000443,0.000000,0.000000,0.000000,0.000059,0.000187,0.000163,0.000246,0.000517,0.000517,0.001513,0.213689,-0.001877,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000177,0.000000,0.000000,0.000000,0.000061,0.000184,0.000160,0.000244,0.000486,0.000486,0.001489,0.211607,-0.002082,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000181,0.000157,0.000243,0.000414,0.000414,0.001465,0.209451,-0.002156,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000178,0.000155,0.000241,0.000316,0.000316,0.001442,0.207422,-0.002029,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000175,0.000152,0.000240,0.000183,0.000183,0.001420,0.205553,-0.001869,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000172,0.000150,0.000238,0.000051,0.000051,0.001397,0.203840,-0.001713,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000169,0.000148,0.000237,0.000000,0.000000,0.001376,0.202201,-0.001639,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000167,0.000146,0.000236,0.000000,0.000000,0.001355,0.200586,-0.001616,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000164,0.000144,0.000235,0.000000,0.000000,0.001334,0.198993,-0.001593,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000162,0.000142,0.000234,0.000000,0.000000,0.001314,0.197423,-0.001570,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000159,0.000140,0.000233,0.000000,0.000000,0.001295,0.195875,-0.001548,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000157,0.000138,0.000232,0.000000,0.000000,0.001276,0.194348,-0.001526,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000154,0.000136,0.000231,0.000000,0.000000,0.001257,0.192844,-0.001505,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000152,0.000134,0.000230,0.000000,0.000000,0.001239,0.191360,-0.001484,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000150,0.000132,0.000229,0.000000,0.000000,0.001221,0.189897,-0.001463,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000148,0.000130,0.000228,0.000000,0.000000,0.001203,0.188455,-0.001442,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000146,0.000128,0.000228,0.000000,0.000000,0.001186,0.187033,-0.001422,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000143,0.000126,0.000227,0.000000,0.000000,0.001169,0.185632,-0.001402,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000141,0.000124,0.000226,0.000129,0.000129,0.001152,0.184123,-0.001509,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000139,0.000122,0.000226,0.000382,0.000382,0.001135,0.182385,-0.001738,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000137,0.000120,0.000225,0.000533,0.000533,0.001118,0.180523,-0.001862,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000135,0.000117,0.000224,0.000634,0.000634,0.001100,0.178588,-0.001935,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000133,0.000115,0.000223,0.000716,0.000716,0.001082,0.176600,-0.001989,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000130,0.000112,0.000223,0.000671,0.000671,0.001064,0.174684,-0.001916,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000128,0.000110,0.000222,0.000573,0.000573,0.001046,0.172891,-0.001793,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000126,0.000108,0.000221,0.000493,0.000493,0.001028,0.171203,-0.001688,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000124,0.000106,0.000220,0.000426,0.000426,0.001010,0.169605,-0.001598,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000121,0.000104,0.000219,0.000328,0.000328,0.000992,0.168125,-0.001479,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000119,0.000102,0.000219,0.000197,0.000197,0.000975,0.166796,-0.001329,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000117,0.000101,0.000218,0.000064,0.000064,0.000958,0.165617,-0.001179,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000115,0.000099,0.000218,0.000000,0.000000,0.000942,0.164517,-0.001100,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000113,0.000098,0.000217,0.000000,0.000000,0.000927,0.163433,-0.001084,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000112,0.000096,0.000217,0.000000,0.000000,0.000912,0.162364,-0.001069,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000110,0.000095,0.000216,0.000000,0.000000,0.000897,0.161310,-0.001054,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000108,0.000094,0.000216,0.000000,0.000000,0.000883,0.160271,-0.001039,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000106,0.000092,0.000216,0.000000,0.000000,0.000869,0.159246,-0.001024,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000105,0.000091,0.000216,0.000000,0.000000,0.000855,0.158236,-0.001010,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000103,0.000090,0.000216,0.000000,0.000000,0.000842,0.157241,-0.000996,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000101,0.000089,0.000215,0.000000,0.000000,0.000830,0.156259,-0.000982,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000100,0.000087,0.000215,0.000000,0.000000,0.000817,0.155291,-0.000968,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000098,0.000086,0.000215,0.000000,0.000000,0.000805,0.154337,-0.000954,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000097,0.000085,0.000215,0.000000,0.000000,0.000793,0.153396,-0.000941,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000095,0.000083,0.000215,0.000139,0.000139,0.000781,0.152331,-0.001065,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000094,0.000082,0.000215,0.000380,0.000380,0.000769,0.151044,-0.001287,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000092,0.000080,0.000215,0.000531,0.000531,0.000757,0.149626,-0.001418,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000091,0.000078,0.000215,0.000637,0.000637,0.000744,0.148123,-0.001503,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000089,0.000076,0.000215,0.000616,0.000616,0.000731,0.146663,-0.001460,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000088,0.000074,0.000215,0.000572,0.000572,0.000718,0.145329,-0.001334,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000086,0.000073,0.000214,0.000487,0.000487,0.000705,0.144097,-0.001232,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000064,0.000000,0.000000,0.000000,0.000130,0.000084,0.000071,0.000214,0.000433,0.000433,0.000692,0.142936,-0.001161,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000131,0.000083,0.000070,0.000214,0.000367,0.000367,0.000679,0.141919,-0.001017,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000133,0.000081,0.000069,0.000214,0.000290,0.000290,0.000667,0.141054,-0.000864,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000134,0.000080,0.000068,0.000214,0.000179,0.000179,0.000655,0.140249,-0.000805,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000738,0.000026,0.000047,0.000026,0.000136,0.000078,0.000068,0.000240,0.000065,0.000065,0.000644,0.140124,-0.000125,1.000000,0.000021 +122,2022-08-06 02:00:00,0.000999,0.000067,0.000100,0.000067,0.000137,0.000077,0.000068,0.000281,0.000000,0.000000,0.000635,0.140269,0.000145,1.000000,0.000054 +123,2022-08-06 03:00:00,0.000853,0.000075,0.000074,0.000075,0.000138,0.000076,0.000068,0.000290,0.000000,0.000000,0.000626,0.140294,0.000025,1.000000,0.000053 +124,2022-08-06 04:00:00,0.000728,0.000069,0.000055,0.000069,0.000140,0.000075,0.000068,0.000284,0.000000,0.000000,0.000619,0.140215,-0.000079,1.000000,0.000039 +125,2022-08-06 05:00:00,0.000748,0.000060,0.000058,0.000060,0.000141,0.000075,0.000068,0.000276,0.000000,0.000000,0.000612,0.140154,-0.000061,1.000000,0.000037 +126,2022-08-06 06:00:00,0.000823,0.000063,0.000069,0.000063,0.000143,0.000074,0.000068,0.000280,0.000000,0.000000,0.000606,0.140156,0.000002,1.000000,0.000043 +127,2022-08-06 07:00:00,0.000000,0.000029,0.000000,0.000029,0.000144,0.000073,0.000067,0.000246,0.000000,0.000000,0.000600,0.139415,-0.000741,1.000000,0.000014 +128,2022-08-06 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000145,0.000072,0.000066,0.000231,0.000000,0.000000,0.000593,0.138685,-0.000730,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000071,0.000065,0.000218,0.000000,0.000000,0.000587,0.137965,-0.000720,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000071,0.000064,0.000219,0.000000,0.000000,0.000580,0.137255,-0.000710,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000070,0.000063,0.000219,0.000000,0.000000,0.000574,0.136555,-0.000700,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000069,0.000062,0.000220,0.000000,0.000000,0.000567,0.135865,-0.000690,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000068,0.000061,0.000220,0.000000,0.000000,0.000560,0.135184,-0.000680,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000067,0.000060,0.000221,0.000124,0.000124,0.000553,0.134391,-0.000793,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000066,0.000059,0.000221,0.000367,0.000367,0.000546,0.133370,-0.001021,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000065,0.000058,0.000222,0.000515,0.000515,0.000538,0.132217,-0.001153,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000064,0.000056,0.000222,0.000615,0.000615,0.000529,0.130982,-0.001235,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000063,0.000054,0.000222,0.000692,0.000692,0.000520,0.129688,-0.001294,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000062,0.000053,0.000223,0.000648,0.000648,0.000511,0.128456,-0.001232,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000061,0.000051,0.000223,0.000562,0.000562,0.000501,0.127325,-0.001130,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000060,0.000050,0.000223,0.000498,0.000498,0.000491,0.126275,-0.001051,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000059,0.000049,0.000223,0.000424,0.000424,0.000481,0.125312,-0.000963,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000057,0.000048,0.000223,0.000323,0.000323,0.000472,0.124462,-0.000850,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000056,0.000047,0.000223,0.000187,0.000187,0.000462,0.123758,-0.000704,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000055,0.000046,0.000223,0.000050,0.000050,0.000453,0.123199,-0.000559,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000045,0.000224,0.000000,0.000000,0.000444,0.122697,-0.000502,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000053,0.000045,0.000224,0.000000,0.000000,0.000436,0.122202,-0.000495,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000052,0.000044,0.000224,0.000000,0.000000,0.000428,0.121715,-0.000488,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000051,0.000043,0.000225,0.000000,0.000000,0.000420,0.121234,-0.000481,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000050,0.000043,0.000225,0.000000,0.000000,0.000413,0.120759,-0.000474,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000225,0.000000,0.000000,0.000406,0.120292,-0.000467,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000042,0.000226,0.000000,0.000000,0.000399,0.119831,-0.000461,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000048,0.000041,0.000226,0.000000,0.000000,0.000392,0.119377,-0.000454,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000047,0.000040,0.000227,0.000000,0.000000,0.000386,0.118929,-0.000448,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000046,0.000040,0.000227,0.000000,0.000000,0.000379,0.118487,-0.000442,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000039,0.000228,0.000000,0.000000,0.000373,0.118052,-0.000435,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000045,0.000039,0.000228,0.000000,0.000000,0.000368,0.117622,-0.000429,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000044,0.000038,0.000229,0.000119,0.000119,0.000362,0.117082,-0.000540,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000037,0.000229,0.000360,0.000360,0.000356,0.116311,-0.000771,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000042,0.000036,0.000230,0.000511,0.000511,0.000349,0.115402,-0.000909,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000042,0.000035,0.000230,0.000617,0.000617,0.000342,0.114402,-0.001000,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000041,0.000033,0.000231,0.000683,0.000683,0.000335,0.113351,-0.001051,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000040,0.000032,0.000231,0.000635,0.000635,0.000327,0.112362,-0.000989,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000039,0.000031,0.000231,0.000549,0.000549,0.000319,0.111472,-0.000890,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000038,0.000030,0.000231,0.000510,0.000510,0.000311,0.110632,-0.000840,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000037,0.000029,0.000232,0.000433,0.000433,0.000303,0.109880,-0.000752,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000036,0.000028,0.000232,0.000328,0.000328,0.000295,0.109242,-0.000638,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000035,0.000027,0.000232,0.000167,0.000167,0.000288,0.108773,-0.000469,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000027,0.000232,0.000017,0.000017,0.000280,0.108458,-0.000315,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000033,0.000027,0.000233,0.000000,0.000000,0.000274,0.108164,-0.000294,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000032,0.000026,0.000233,0.000000,0.000000,0.000267,0.107874,-0.000290,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000026,0.000234,0.000000,0.000000,0.000262,0.107588,-0.000286,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000031,0.000025,0.000234,0.000000,0.000000,0.000256,0.107306,-0.000282,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000025,0.000235,0.000000,0.000000,0.000251,0.107029,-0.000278,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000030,0.000025,0.000235,0.000000,0.000000,0.000246,0.106755,-0.000274,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000024,0.000236,0.000000,0.000000,0.000241,0.106485,-0.000270,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000029,0.000024,0.000236,0.000000,0.000000,0.000236,0.106218,-0.000266,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000024,0.000237,0.000000,0.000000,0.000232,0.105956,-0.000262,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000028,0.000023,0.000237,0.000000,0.000000,0.000227,0.105697,-0.000259,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000023,0.000238,0.000000,0.000000,0.000223,0.105442,-0.000255,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000023,0.000239,0.000000,0.000000,0.000220,0.105190,-0.000252,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000022,0.000239,0.000103,0.000103,0.000216,0.104841,-0.000350,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000026,0.000021,0.000240,0.000350,0.000350,0.000211,0.104252,-0.000588,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000240,0.000503,0.000503,0.000207,0.103521,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000019,0.000241,0.000604,0.000604,0.000202,0.102701,-0.000820,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000018,0.000241,0.000685,0.000685,0.000196,0.101813,-0.000888,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000017,0.000242,0.000640,0.000640,0.000191,0.100982,-0.000832,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000016,0.000242,0.000545,0.000545,0.000185,0.100255,-0.000726,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000015,0.000242,0.000505,0.000505,0.000178,0.099579,-0.000676,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000015,0.000243,0.000434,0.000434,0.000172,0.098982,-0.000597,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000014,0.000243,0.000331,0.000331,0.000166,0.098495,-0.000487,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000014,0.000243,0.000188,0.000188,0.000160,0.098156,-0.000339,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000013,0.000244,0.000039,0.000039,0.000155,0.097969,-0.000187,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000013,0.000244,0.000000,0.000000,0.000150,0.097822,-0.000146,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000013,0.000244,0.000000,0.000000,0.000145,0.097678,-0.000144,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000013,0.000245,0.000000,0.000000,0.000141,0.097536,-0.000142,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000013,0.000245,0.000000,0.000000,0.000137,0.097396,-0.000140,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000012,0.000246,0.000000,0.000000,0.000133,0.097258,-0.000138,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000012,0.000247,0.000000,0.000000,0.000130,0.097122,-0.000136,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000012,0.000247,0.000000,0.000000,0.000127,0.096988,-0.000134,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000248,0.000000,0.000000,0.000124,0.096855,-0.000132,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000012,0.000248,0.000000,0.000000,0.000121,0.096725,-0.000130,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000012,0.000249,0.000000,0.000000,0.000118,0.096596,-0.000129,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000011,0.000250,0.000000,0.000000,0.000116,0.096469,-0.000127,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000011,0.000250,0.000000,0.000000,0.000113,0.096344,-0.000125,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000251,0.000115,0.000115,0.000111,0.096108,-0.000236,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620850.csv b/test/channel_loss/channel_forcing/et/cat-2620850.csv new file mode 100644 index 000000000..cdf7e7211 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620850.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000261,0.000001,0.000001,0.000001,0.000000,0.001469,0.000350,0.001469,0.000186,0.000186,0.010477,0.428689,-0.004778,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001314,0.000345,0.001314,0.000054,0.000054,0.009508,0.423850,-0.004839,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001183,0.000340,0.001183,0.000000,0.000000,0.008666,0.419131,-0.004719,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001071,0.000335,0.001071,0.000000,0.000000,0.007931,0.414477,-0.004655,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000975,0.000331,0.000975,0.000000,0.000000,0.007287,0.409886,-0.004591,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000892,0.000326,0.000892,0.000000,0.000000,0.006721,0.405358,-0.004528,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000820,0.000322,0.000820,0.000000,0.000000,0.006223,0.400891,-0.004466,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000757,0.000318,0.000758,0.000000,0.000000,0.005784,0.396486,-0.004405,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000702,0.000313,0.000703,0.000000,0.000000,0.005394,0.392141,-0.004345,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000654,0.000309,0.000656,0.000000,0.000000,0.005049,0.387855,-0.004286,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000612,0.000305,0.000613,0.000000,0.000000,0.004742,0.383628,-0.004227,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000574,0.000300,0.000576,0.000000,0.000000,0.004468,0.379459,-0.004169,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000541,0.000296,0.000543,0.000000,0.000000,0.004224,0.375347,-0.004112,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000511,0.000292,0.000514,0.000000,0.000000,0.004005,0.371291,-0.004056,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000485,0.000288,0.000488,0.000139,0.000139,0.003808,0.367153,-0.004138,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000461,0.000284,0.000465,0.000388,0.000388,0.003631,0.362826,-0.004327,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000440,0.000279,0.000444,0.000540,0.000540,0.003471,0.358409,-0.004417,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000421,0.000275,0.000425,0.000636,0.000636,0.003325,0.353957,-0.004452,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000403,0.000271,0.000409,0.000573,0.000573,0.003193,0.349629,-0.004329,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000309,0.000000,0.000000,0.000000,0.000006,0.000387,0.000267,0.000393,0.000519,0.000519,0.003072,0.345718,-0.003911,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000289,0.000000,0.000000,0.000000,0.000007,0.000373,0.000263,0.000380,0.000456,0.000456,0.002963,0.341902,-0.003816,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000330,0.000000,0.000000,0.000000,0.000008,0.000360,0.000259,0.000367,0.000382,0.000382,0.002862,0.338252,-0.003650,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000330,0.000000,0.000000,0.000000,0.000008,0.000348,0.000256,0.000356,0.000334,0.000334,0.002770,0.334699,-0.003553,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000411,0.000002,0.000004,0.000002,0.000009,0.000337,0.000252,0.000348,0.000257,0.000257,0.002686,0.331347,-0.003353,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000431,0.000009,0.000014,0.000009,0.000010,0.000327,0.000249,0.000345,0.000156,0.000156,0.002609,0.328150,-0.003197,1.000000,0.000007 +25,2022-08-02 01:00:00,0.001047,0.000090,0.000155,0.000090,0.000010,0.000317,0.000247,0.000418,0.000067,0.000067,0.002538,0.325553,-0.002597,1.000000,0.000073 +26,2022-08-02 02:00:00,0.001051,0.000138,0.000176,0.000138,0.000011,0.000309,0.000244,0.000459,0.000000,0.000000,0.002473,0.323041,-0.002512,1.000000,0.000110 +27,2022-08-02 03:00:00,0.000881,0.000144,0.000126,0.000144,0.000012,0.000301,0.000242,0.000458,0.000000,0.000000,0.002413,0.320444,-0.002597,1.000000,0.000092 +28,2022-08-02 04:00:00,0.000996,0.000154,0.000158,0.000154,0.000013,0.000294,0.000239,0.000461,0.000000,0.000000,0.002358,0.317965,-0.002479,1.000000,0.000096 +29,2022-08-02 05:00:00,0.000865,0.000131,0.000121,0.000131,0.000014,0.000288,0.000237,0.000433,0.000000,0.000000,0.002307,0.315427,-0.002538,1.000000,0.000086 +30,2022-08-02 06:00:00,0.001021,0.000152,0.000164,0.000152,0.000015,0.000282,0.000234,0.000448,0.000000,0.000000,0.002260,0.313036,-0.002391,1.000000,0.000098 +31,2022-08-02 07:00:00,0.000000,0.000065,0.000000,0.000065,0.000016,0.000276,0.000231,0.000357,0.000000,0.000000,0.002215,0.309831,-0.003204,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000270,0.000228,0.000320,0.000000,0.000000,0.002172,0.306671,-0.003160,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000265,0.000225,0.000283,0.000000,0.000000,0.002132,0.303554,-0.003117,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000260,0.000222,0.000279,0.000000,0.000000,0.002093,0.300479,-0.003075,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000255,0.000219,0.000275,0.000000,0.000000,0.002056,0.297447,-0.003032,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000251,0.000216,0.000271,0.000000,0.000000,0.002021,0.294456,-0.002991,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000001,0.000002,0.000001,0.000021,0.000247,0.000213,0.000269,0.000000,0.000000,0.001987,0.291603,-0.002853,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000099,0.000000,0.000000,0.000000,0.000023,0.000242,0.000210,0.000265,0.000116,0.000116,0.001954,0.288675,-0.002928,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000066,0.000000,0.000000,0.000000,0.000024,0.000238,0.000207,0.000262,0.000339,0.000339,0.001922,0.285534,-0.003140,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000234,0.000203,0.000259,0.000468,0.000468,0.001891,0.282307,-0.003228,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000231,0.000200,0.000256,0.000560,0.000560,0.001861,0.279033,-0.003274,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000229,0.000000,0.000000,0.000000,0.000027,0.000227,0.000197,0.000254,0.000638,0.000638,0.001831,0.275890,-0.003143,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000223,0.000194,0.000251,0.000591,0.000591,0.001802,0.272611,-0.003279,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000219,0.000191,0.000249,0.000515,0.000515,0.001773,0.269452,-0.003159,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000216,0.000187,0.000246,0.000502,0.000502,0.001745,0.266348,-0.003104,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000212,0.000185,0.000244,0.000431,0.000431,0.001717,0.263358,-0.002991,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000209,0.000182,0.000242,0.000327,0.000327,0.001690,0.260510,-0.002848,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000206,0.000179,0.000239,0.000190,0.000190,0.001663,0.257836,-0.002674,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000202,0.000177,0.000237,0.000040,0.000040,0.001637,0.255348,-0.002489,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000199,0.000174,0.000236,0.000000,0.000000,0.001612,0.252932,-0.002415,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000196,0.000172,0.000234,0.000000,0.000000,0.001588,0.250550,-0.002382,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000193,0.000169,0.000232,0.000000,0.000000,0.001564,0.248200,-0.002350,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000190,0.000167,0.000230,0.000000,0.000000,0.001541,0.245882,-0.002318,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000187,0.000165,0.000229,0.000000,0.000000,0.001519,0.243596,-0.002286,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000185,0.000163,0.000227,0.000000,0.000000,0.001497,0.241341,-0.002255,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000182,0.000160,0.000226,0.000000,0.000000,0.001475,0.239117,-0.002224,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000179,0.000158,0.000225,0.000000,0.000000,0.001454,0.236924,-0.002194,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000177,0.000156,0.000223,0.000000,0.000000,0.001433,0.234760,-0.002164,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000174,0.000154,0.000222,0.000000,0.000000,0.001413,0.232626,-0.002134,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000172,0.000152,0.000221,0.000000,0.000000,0.001393,0.230521,-0.002105,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000169,0.000150,0.000220,0.000000,0.000000,0.001374,0.228445,-0.002076,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000167,0.000147,0.000219,0.000133,0.000133,0.001355,0.226267,-0.002179,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000164,0.000145,0.000218,0.000388,0.000388,0.001335,0.223866,-0.002401,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000162,0.000143,0.000217,0.000537,0.000537,0.001316,0.221351,-0.002515,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000159,0.000140,0.000216,0.000639,0.000639,0.001297,0.218770,-0.002581,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000157,0.000137,0.000215,0.000646,0.000646,0.001277,0.216217,-0.002553,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000155,0.000135,0.000214,0.000604,0.000604,0.001257,0.213740,-0.002477,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000510,0.000000,0.000000,0.000000,0.000061,0.000152,0.000133,0.000213,0.000521,0.000521,0.001238,0.211883,-0.001857,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000162,0.000000,0.000000,0.000000,0.000062,0.000150,0.000131,0.000212,0.000495,0.000495,0.001219,0.209734,-0.002149,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000147,0.000129,0.000211,0.000425,0.000425,0.001201,0.207523,-0.002211,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000145,0.000127,0.000210,0.000322,0.000322,0.001182,0.205444,-0.002080,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000143,0.000125,0.000209,0.000189,0.000189,0.001164,0.203524,-0.001920,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000141,0.000123,0.000208,0.000052,0.000052,0.001146,0.201765,-0.001759,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000139,0.000121,0.000208,0.000000,0.000000,0.001129,0.200083,-0.001683,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000136,0.000120,0.000207,0.000000,0.000000,0.001112,0.198423,-0.001660,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000134,0.000118,0.000206,0.000000,0.000000,0.001096,0.196785,-0.001637,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000132,0.000116,0.000206,0.000000,0.000000,0.001080,0.195171,-0.001615,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000130,0.000115,0.000205,0.000000,0.000000,0.001064,0.193578,-0.001593,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000129,0.000113,0.000205,0.000000,0.000000,0.001049,0.192007,-0.001571,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000127,0.000112,0.000205,0.000000,0.000000,0.001034,0.190457,-0.001549,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000125,0.000110,0.000204,0.000000,0.000000,0.001019,0.188929,-0.001528,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000123,0.000109,0.000204,0.000000,0.000000,0.001005,0.187422,-0.001507,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000121,0.000107,0.000204,0.000000,0.000000,0.000991,0.185935,-0.001487,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000120,0.000106,0.000203,0.000000,0.000000,0.000977,0.184468,-0.001466,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000118,0.000104,0.000203,0.000000,0.000000,0.000963,0.183022,-0.001446,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000116,0.000103,0.000203,0.000129,0.000129,0.000950,0.181468,-0.001554,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000115,0.000101,0.000203,0.000385,0.000385,0.000936,0.179683,-0.001785,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000113,0.000099,0.000203,0.000538,0.000538,0.000922,0.177772,-0.001911,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000111,0.000097,0.000202,0.000639,0.000639,0.000908,0.175786,-0.001986,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000109,0.000095,0.000202,0.000724,0.000724,0.000894,0.173745,-0.002041,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000108,0.000093,0.000202,0.000674,0.000674,0.000879,0.171780,-0.001965,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000106,0.000091,0.000202,0.000579,0.000579,0.000865,0.169936,-0.001844,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000104,0.000089,0.000201,0.000505,0.000505,0.000850,0.168190,-0.001746,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000102,0.000088,0.000201,0.000439,0.000439,0.000836,0.166533,-0.001657,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000100,0.000086,0.000201,0.000337,0.000337,0.000822,0.165000,-0.001533,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000099,0.000085,0.000201,0.000201,0.000201,0.000808,0.163622,-0.001378,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000097,0.000084,0.000200,0.000065,0.000065,0.000795,0.162396,-0.001226,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000095,0.000083,0.000200,0.000000,0.000000,0.000782,0.161252,-0.001145,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000094,0.000081,0.000200,0.000000,0.000000,0.000769,0.160123,-0.001129,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000092,0.000080,0.000200,0.000000,0.000000,0.000757,0.159009,-0.001114,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000091,0.000079,0.000200,0.000000,0.000000,0.000745,0.157911,-0.001098,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000090,0.000078,0.000201,0.000000,0.000000,0.000734,0.156827,-0.001083,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000088,0.000077,0.000201,0.000000,0.000000,0.000723,0.155759,-0.001069,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000087,0.000076,0.000201,0.000000,0.000000,0.000712,0.154705,-0.001054,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000086,0.000075,0.000201,0.000000,0.000000,0.000701,0.153665,-0.001040,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000084,0.000074,0.000201,0.000000,0.000000,0.000691,0.152640,-0.001025,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000083,0.000073,0.000201,0.000000,0.000000,0.000681,0.151629,-0.001011,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000082,0.000072,0.000202,0.000000,0.000000,0.000671,0.150631,-0.000997,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000081,0.000071,0.000202,0.000000,0.000000,0.000661,0.149647,-0.000984,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000079,0.000070,0.000202,0.000141,0.000141,0.000651,0.148538,-0.001109,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000078,0.000068,0.000203,0.000386,0.000386,0.000642,0.147203,-0.001336,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000077,0.000067,0.000203,0.000538,0.000538,0.000632,0.145735,-0.001467,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000076,0.000065,0.000203,0.000643,0.000643,0.000621,0.144184,-0.001552,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000074,0.000064,0.000203,0.000624,0.000624,0.000611,0.142673,-0.001511,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000073,0.000063,0.000204,0.000578,0.000578,0.000600,0.141290,-0.001383,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000072,0.000061,0.000204,0.000492,0.000492,0.000590,0.140011,-0.001279,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000071,0.000060,0.000204,0.000447,0.000447,0.000579,0.138793,-0.001217,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000109,0.000000,0.000000,0.000000,0.000135,0.000069,0.000059,0.000204,0.000375,0.000375,0.000569,0.137709,-0.001084,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000136,0.000068,0.000058,0.000204,0.000298,0.000298,0.000559,0.136795,-0.000914,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000107,0.000000,0.000000,0.000000,0.000138,0.000067,0.000057,0.000205,0.000182,0.000182,0.000549,0.135927,-0.000868,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000608,0.000021,0.000039,0.000021,0.000139,0.000066,0.000057,0.000226,0.000067,0.000067,0.000541,0.135640,-0.000287,1.000000,0.000017 +122,2022-08-06 02:00:00,0.000886,0.000064,0.000099,0.000064,0.000141,0.000065,0.000057,0.000269,0.000000,0.000000,0.000533,0.135638,-0.000002,1.000000,0.000052 +123,2022-08-06 03:00:00,0.000791,0.000076,0.000080,0.000076,0.000142,0.000064,0.000057,0.000282,0.000000,0.000000,0.000526,0.135561,-0.000077,1.000000,0.000056 +124,2022-08-06 04:00:00,0.000671,0.000072,0.000058,0.000072,0.000144,0.000063,0.000057,0.000278,0.000000,0.000000,0.000519,0.135388,-0.000173,1.000000,0.000042 +125,2022-08-06 05:00:00,0.000674,0.000063,0.000059,0.000063,0.000145,0.000062,0.000056,0.000270,0.000000,0.000000,0.000513,0.135219,-0.000168,1.000000,0.000038 +126,2022-08-06 06:00:00,0.000703,0.000061,0.000064,0.000061,0.000147,0.000062,0.000056,0.000270,0.000000,0.000000,0.000508,0.135077,-0.000142,1.000000,0.000040 +127,2022-08-06 07:00:00,0.000000,0.000028,0.000000,0.000028,0.000148,0.000061,0.000056,0.000237,0.000000,0.000000,0.000502,0.134306,-0.000771,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000149,0.000060,0.000055,0.000223,0.000000,0.000000,0.000497,0.133545,-0.000761,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000060,0.000054,0.000211,0.000000,0.000000,0.000491,0.132795,-0.000750,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000059,0.000053,0.000211,0.000000,0.000000,0.000485,0.132055,-0.000740,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000058,0.000053,0.000212,0.000000,0.000000,0.000480,0.131325,-0.000730,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000058,0.000052,0.000213,0.000000,0.000000,0.000474,0.130605,-0.000720,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000057,0.000051,0.000213,0.000000,0.000000,0.000468,0.129895,-0.000710,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000056,0.000050,0.000214,0.000125,0.000125,0.000462,0.129072,-0.000823,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000055,0.000049,0.000215,0.000371,0.000371,0.000456,0.128017,-0.001055,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000055,0.000048,0.000215,0.000521,0.000521,0.000450,0.126828,-0.001189,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000054,0.000047,0.000216,0.000622,0.000622,0.000443,0.125557,-0.001271,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000053,0.000046,0.000217,0.000701,0.000701,0.000435,0.124224,-0.001332,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000052,0.000044,0.000217,0.000652,0.000652,0.000428,0.122958,-0.001266,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000051,0.000043,0.000217,0.000567,0.000567,0.000420,0.121794,-0.001165,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000042,0.000218,0.000510,0.000510,0.000412,0.120701,-0.001093,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000049,0.000041,0.000218,0.000437,0.000437,0.000404,0.119695,-0.001006,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000048,0.000040,0.000219,0.000332,0.000332,0.000396,0.118807,-0.000888,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000047,0.000039,0.000219,0.000193,0.000193,0.000388,0.118068,-0.000739,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000046,0.000039,0.000220,0.000051,0.000051,0.000380,0.117478,-0.000589,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000038,0.000220,0.000000,0.000000,0.000373,0.116948,-0.000531,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000038,0.000221,0.000000,0.000000,0.000367,0.116425,-0.000523,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000037,0.000221,0.000000,0.000000,0.000360,0.115908,-0.000516,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000000,0.000000,0.000354,0.115399,-0.000509,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000042,0.000036,0.000222,0.000000,0.000000,0.000348,0.114897,-0.000502,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000036,0.000223,0.000000,0.000000,0.000342,0.114402,-0.000495,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000041,0.000035,0.000224,0.000000,0.000000,0.000336,0.113913,-0.000489,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000040,0.000035,0.000224,0.000000,0.000000,0.000331,0.113431,-0.000482,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000034,0.000225,0.000000,0.000000,0.000326,0.112956,-0.000475,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000034,0.000226,0.000000,0.000000,0.000321,0.112487,-0.000469,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000033,0.000226,0.000000,0.000000,0.000316,0.112025,-0.000462,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000033,0.000227,0.000000,0.000000,0.000311,0.111569,-0.000456,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000032,0.000228,0.000119,0.000119,0.000306,0.111001,-0.000568,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000037,0.000031,0.000228,0.000366,0.000366,0.000301,0.110199,-0.000803,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000031,0.000229,0.000520,0.000520,0.000296,0.109255,-0.000944,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000035,0.000030,0.000230,0.000626,0.000626,0.000290,0.108219,-0.001036,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000028,0.000230,0.000690,0.000690,0.000284,0.107134,-0.001085,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000027,0.000231,0.000637,0.000637,0.000278,0.106116,-0.001018,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000027,0.000231,0.000553,0.000553,0.000271,0.105196,-0.000920,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000026,0.000232,0.000520,0.000520,0.000265,0.104320,-0.000876,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000025,0.000232,0.000445,0.000445,0.000258,0.103531,-0.000789,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000024,0.000233,0.000337,0.000337,0.000252,0.102859,-0.000672,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000170,0.000170,0.000246,0.102361,-0.000498,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000023,0.000234,0.000018,0.000018,0.000240,0.102019,-0.000342,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000000,0.000000,0.000235,0.101700,-0.000319,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000235,0.000000,0.000000,0.000230,0.101385,-0.000315,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000022,0.000235,0.000000,0.000000,0.000225,0.101074,-0.000311,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000236,0.000000,0.000000,0.000220,0.100768,-0.000306,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000216,0.100466,-0.000302,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000021,0.000237,0.000000,0.000000,0.000212,0.100168,-0.000298,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000208,0.099874,-0.000294,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000204,0.099584,-0.000290,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000021,0.000240,0.000000,0.000000,0.000200,0.099298,-0.000286,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000240,0.000000,0.000000,0.000197,0.099016,-0.000282,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000020,0.000241,0.000000,0.000000,0.000193,0.098738,-0.000278,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000242,0.000000,0.000000,0.000190,0.098463,-0.000274,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000019,0.000243,0.000104,0.000104,0.000187,0.098090,-0.000373,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000019,0.000243,0.000356,0.000356,0.000183,0.097473,-0.000617,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000018,0.000244,0.000512,0.000512,0.000180,0.096712,-0.000762,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000021,0.000017,0.000245,0.000612,0.000612,0.000176,0.095862,-0.000850,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000021,0.000016,0.000245,0.000694,0.000694,0.000171,0.094943,-0.000919,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000015,0.000246,0.000644,0.000644,0.000166,0.094085,-0.000858,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000020,0.000015,0.000246,0.000553,0.000553,0.000161,0.093329,-0.000756,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000014,0.000247,0.000514,0.000000,0.000157,0.093128,-0.000200,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000014,0.000247,0.000445,0.000000,0.000153,0.092931,-0.000198,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000014,0.000248,0.000338,0.000000,0.000149,0.092736,-0.000195,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000014,0.000249,0.000191,0.000000,0.000145,0.092543,-0.000192,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000014,0.000249,0.000040,0.000000,0.000142,0.092354,-0.000190,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000013,0.000250,0.000000,0.000000,0.000138,0.092166,-0.000187,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000013,0.000251,0.000000,0.000000,0.000135,0.091982,-0.000185,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000013,0.000251,0.000000,0.000000,0.000132,0.091800,-0.000182,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000013,0.000252,0.000000,0.000000,0.000130,0.091620,-0.000180,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000013,0.000253,0.000000,0.000000,0.000127,0.091443,-0.000177,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000000,0.000000,0.000125,0.091269,-0.000175,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000012,0.000254,0.000000,0.000000,0.000122,0.091096,-0.000172,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000012,0.000255,0.000000,0.000000,0.000120,0.090926,-0.000170,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000256,0.000000,0.000000,0.000118,0.090759,-0.000168,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000000,0.000000,0.000116,0.090594,-0.000165,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000014,0.000012,0.000257,0.000000,0.000000,0.000114,0.090431,-0.000163,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000014,0.000012,0.000258,0.000000,0.000000,0.000112,0.090270,-0.000161,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000011,0.000259,0.000115,0.000000,0.000110,0.090111,-0.000159,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620851.csv b/test/channel_loss/channel_forcing/et/cat-2620851.csv new file mode 100644 index 000000000..bebc07af4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620851.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000220,0.000000,0.000000,0.000000,0.000000,0.001514,0.000675,0.001514,0.000190,0.000190,0.010757,0.427297,-0.005008,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001396,0.000665,0.001396,0.000057,0.000057,0.010026,0.422280,-0.005018,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001295,0.000655,0.001295,0.000000,0.000000,0.009386,0.417394,-0.004886,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001207,0.000645,0.001207,0.000000,0.000000,0.008824,0.412581,-0.004813,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001131,0.000635,0.001131,0.000000,0.000000,0.008328,0.407841,-0.004740,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001065,0.000626,0.001065,0.000000,0.000000,0.007890,0.403172,-0.004669,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001006,0.000616,0.001007,0.000000,0.000000,0.007500,0.398574,-0.004598,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000955,0.000607,0.000956,0.000000,0.000000,0.007152,0.394045,-0.004529,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000909,0.000598,0.000910,0.000000,0.000000,0.006840,0.389584,-0.004461,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000869,0.000589,0.000870,0.000000,0.000000,0.006561,0.385190,-0.004394,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000832,0.000580,0.000834,0.000000,0.000000,0.006309,0.380862,-0.004328,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000799,0.000571,0.000801,0.000000,0.000000,0.006080,0.376600,-0.004262,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000770,0.000563,0.000772,0.000000,0.000000,0.005873,0.372402,-0.004198,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000743,0.000554,0.000746,0.000000,0.000000,0.005684,0.368267,-0.004135,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000719,0.000546,0.000722,0.000141,0.000141,0.005511,0.364055,-0.004212,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000696,0.000537,0.000700,0.000388,0.000388,0.005351,0.359664,-0.004391,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000676,0.000527,0.000680,0.000540,0.000540,0.005203,0.355188,-0.004475,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000656,0.000518,0.000661,0.000642,0.000642,0.005065,0.350680,-0.004508,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000638,0.000509,0.000644,0.000585,0.000585,0.004936,0.346296,-0.004384,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000307,0.000000,0.000000,0.000000,0.000006,0.000622,0.000501,0.000628,0.000535,0.000535,0.004815,0.342329,-0.003966,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000289,0.000000,0.000000,0.000000,0.000007,0.000606,0.000493,0.000613,0.000468,0.000468,0.004702,0.338470,-0.003859,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000384,0.000000,0.000000,0.000000,0.000007,0.000592,0.000486,0.000599,0.000384,0.000384,0.004596,0.334846,-0.003624,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000326,0.000000,0.000000,0.000000,0.000008,0.000578,0.000478,0.000586,0.000335,0.000335,0.004496,0.331267,-0.003579,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000447,0.000002,0.000003,0.000002,0.000009,0.000565,0.000472,0.000576,0.000259,0.000259,0.004403,0.327933,-0.003335,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000423,0.000004,0.000007,0.000004,0.000009,0.000553,0.000465,0.000567,0.000159,0.000159,0.004314,0.324721,-0.003212,1.000000,0.000004 +25,2022-08-02 01:00:00,0.001022,0.000046,0.000080,0.000046,0.000010,0.000542,0.000460,0.000598,0.000070,0.000070,0.004232,0.322162,-0.002558,1.000000,0.000037 +26,2022-08-02 02:00:00,0.001067,0.000076,0.000099,0.000076,0.000011,0.000532,0.000455,0.000618,0.000000,0.000000,0.004155,0.319737,-0.002425,1.000000,0.000061 +27,2022-08-02 03:00:00,0.000845,0.000076,0.000063,0.000076,0.000012,0.000522,0.000449,0.000609,0.000000,0.000000,0.004083,0.317165,-0.002572,1.000000,0.000048 +28,2022-08-02 04:00:00,0.001013,0.000085,0.000089,0.000085,0.000012,0.000513,0.000445,0.000610,0.000000,0.000000,0.004015,0.314772,-0.002393,1.000000,0.000053 +29,2022-08-02 05:00:00,0.000844,0.000069,0.000063,0.000069,0.000013,0.000504,0.000439,0.000586,0.000000,0.000000,0.003950,0.312274,-0.002498,1.000000,0.000046 +30,2022-08-02 06:00:00,0.001018,0.000083,0.000089,0.000083,0.000014,0.000496,0.000435,0.000592,0.000000,0.000000,0.003889,0.309960,-0.002315,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000015,0.000488,0.000428,0.000537,0.000000,0.000000,0.003830,0.306765,-0.003195,1.000000,0.000018 +32,2022-08-02 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000016,0.000480,0.000422,0.000514,0.000000,0.000000,0.003771,0.303618,-0.003147,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000472,0.000415,0.000489,0.000000,0.000000,0.003714,0.300519,-0.003099,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000465,0.000409,0.000482,0.000000,0.000000,0.003659,0.297467,-0.003052,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000458,0.000403,0.000476,0.000000,0.000000,0.003604,0.294460,-0.003006,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000450,0.000397,0.000470,0.000000,0.000000,0.003551,0.291499,-0.002961,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000100,0.000000,0.000001,0.000000,0.000021,0.000443,0.000391,0.000464,0.000000,0.000000,0.003498,0.288680,-0.002819,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000088,0.000000,0.000000,0.000000,0.000021,0.000437,0.000385,0.000458,0.000117,0.000117,0.003447,0.285777,-0.002903,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000063,0.000000,0.000000,0.000000,0.000023,0.000430,0.000379,0.000453,0.000335,0.000335,0.003396,0.282679,-0.003098,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000063,0.000000,0.000000,0.000000,0.000024,0.000423,0.000372,0.000447,0.000465,0.000465,0.003345,0.279500,-0.003179,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000063,0.000000,0.000000,0.000000,0.000025,0.000416,0.000366,0.000441,0.000559,0.000559,0.003294,0.276275,-0.003225,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000026,0.000410,0.000359,0.000435,0.000643,0.000643,0.003244,0.273203,-0.003072,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000403,0.000353,0.000430,0.000601,0.000601,0.003193,0.269970,-0.003233,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000396,0.000346,0.000424,0.000521,0.000521,0.003143,0.266865,-0.003105,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000390,0.000340,0.000419,0.000497,0.000497,0.003094,0.263830,-0.003035,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000383,0.000334,0.000413,0.000427,0.000427,0.003044,0.260909,-0.002921,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000377,0.000328,0.000408,0.000327,0.000327,0.002996,0.258131,-0.002778,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000371,0.000323,0.000403,0.000194,0.000194,0.002948,0.255526,-0.002605,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000365,0.000318,0.000398,0.000044,0.000044,0.002901,0.253108,-0.002418,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000359,0.000313,0.000393,0.000000,0.000000,0.002856,0.250770,-0.002338,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000353,0.000309,0.000389,0.000000,0.000000,0.002812,0.248466,-0.002303,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000347,0.000304,0.000384,0.000000,0.000000,0.002768,0.246198,-0.002269,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000342,0.000299,0.000380,0.000000,0.000000,0.002726,0.243963,-0.002234,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000336,0.000295,0.000376,0.000000,0.000000,0.002684,0.241763,-0.002201,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000331,0.000291,0.000372,0.000000,0.000000,0.002644,0.239595,-0.002168,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000326,0.000286,0.000368,0.000000,0.000000,0.002604,0.237460,-0.002135,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000321,0.000282,0.000364,0.000000,0.000000,0.002565,0.235357,-0.002103,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000316,0.000278,0.000360,0.000000,0.000000,0.002526,0.233286,-0.002071,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000311,0.000273,0.000357,0.000000,0.000000,0.002489,0.231246,-0.002040,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000306,0.000269,0.000353,0.000000,0.000000,0.002452,0.229237,-0.002009,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000302,0.000265,0.000350,0.000000,0.000000,0.002415,0.227258,-0.001979,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000297,0.000261,0.000346,0.000136,0.000136,0.002379,0.225175,-0.002083,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000292,0.000256,0.000343,0.000389,0.000389,0.002343,0.222874,-0.002301,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000288,0.000251,0.000340,0.000539,0.000539,0.002307,0.220460,-0.002414,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000283,0.000246,0.000336,0.000646,0.000646,0.002270,0.217977,-0.002483,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000278,0.000241,0.000333,0.000663,0.000663,0.002233,0.215515,-0.002462,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000273,0.000236,0.000329,0.000624,0.000624,0.002196,0.213128,-0.002387,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000638,0.000000,0.000001,0.000000,0.000057,0.000269,0.000233,0.000326,0.000534,0.000534,0.002160,0.211493,-0.001636,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000230,0.000000,0.000000,0.000000,0.000058,0.000264,0.000229,0.000323,0.000497,0.000497,0.002125,0.209519,-0.001974,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000260,0.000225,0.000320,0.000428,0.000428,0.002090,0.207415,-0.002104,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000255,0.000221,0.000316,0.000327,0.000327,0.002055,0.205442,-0.001972,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000251,0.000217,0.000313,0.000194,0.000194,0.002021,0.203631,-0.001811,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000247,0.000213,0.000310,0.000056,0.000056,0.001987,0.201982,-0.001649,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000243,0.000210,0.000308,0.000000,0.000000,0.001955,0.200414,-0.001569,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000239,0.000207,0.000305,0.000000,0.000000,0.001923,0.198869,-0.001545,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000235,0.000204,0.000302,0.000000,0.000000,0.001893,0.197347,-0.001522,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000231,0.000201,0.000300,0.000000,0.000000,0.001863,0.195849,-0.001499,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000227,0.000198,0.000298,0.000000,0.000000,0.001833,0.194372,-0.001476,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000223,0.000195,0.000295,0.000000,0.000000,0.001805,0.192919,-0.001454,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000220,0.000192,0.000293,0.000000,0.000000,0.001777,0.191487,-0.001432,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000216,0.000189,0.000291,0.000000,0.000000,0.001749,0.190076,-0.001410,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000213,0.000186,0.000289,0.000000,0.000000,0.001723,0.188687,-0.001389,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000210,0.000183,0.000287,0.000000,0.000000,0.001696,0.187319,-0.001368,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000206,0.000181,0.000285,0.000000,0.000000,0.001670,0.185971,-0.001348,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000203,0.000178,0.000283,0.000000,0.000000,0.001645,0.184644,-0.001327,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000200,0.000175,0.000282,0.000133,0.000133,0.001620,0.183205,-0.001439,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000197,0.000172,0.000280,0.000385,0.000385,0.001595,0.181540,-0.001665,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000194,0.000168,0.000278,0.000539,0.000539,0.001569,0.179748,-0.001792,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000190,0.000164,0.000276,0.000648,0.000648,0.001542,0.177877,-0.001871,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000187,0.000160,0.000274,0.000740,0.000740,0.001516,0.175943,-0.001934,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000184,0.000156,0.000272,0.000694,0.000694,0.001488,0.174082,-0.001860,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000180,0.000153,0.000270,0.000593,0.000593,0.001461,0.172350,-0.001733,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000177,0.000149,0.000268,0.000505,0.000505,0.001434,0.170730,-0.001620,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000173,0.000146,0.000266,0.000439,0.000439,0.001407,0.169200,-0.001530,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000170,0.000143,0.000264,0.000338,0.000338,0.001380,0.167792,-0.001408,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000167,0.000141,0.000262,0.000205,0.000205,0.001354,0.166536,-0.001255,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000164,0.000139,0.000260,0.000070,0.000070,0.001329,0.165433,-0.001104,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000161,0.000136,0.000259,0.000000,0.000000,0.001305,0.164414,-0.001018,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000158,0.000134,0.000257,0.000000,0.000000,0.001282,0.163412,-0.001003,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000155,0.000132,0.000256,0.000000,0.000000,0.001260,0.162424,-0.000988,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000152,0.000130,0.000254,0.000000,0.000000,0.001238,0.161451,-0.000973,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000149,0.000128,0.000253,0.000000,0.000000,0.001217,0.160493,-0.000958,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000147,0.000126,0.000252,0.000000,0.000000,0.001196,0.159550,-0.000944,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000144,0.000125,0.000251,0.000000,0.000000,0.001177,0.158620,-0.000929,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000142,0.000123,0.000250,0.000000,0.000000,0.001157,0.157705,-0.000915,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000140,0.000121,0.000249,0.000000,0.000000,0.001138,0.156803,-0.000902,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000137,0.000119,0.000248,0.000000,0.000000,0.001120,0.155915,-0.000888,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000135,0.000117,0.000247,0.000000,0.000000,0.001102,0.155040,-0.000875,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000133,0.000115,0.000246,0.000000,0.000000,0.001085,0.154179,-0.000862,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000131,0.000113,0.000245,0.000143,0.000143,0.001067,0.153189,-0.000990,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000129,0.000111,0.000244,0.000385,0.000385,0.001050,0.151976,-0.001213,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000126,0.000108,0.000243,0.000539,0.000539,0.001031,0.150629,-0.001346,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000124,0.000105,0.000243,0.000650,0.000650,0.001013,0.149194,-0.001435,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000122,0.000102,0.000241,0.000634,0.000634,0.000993,0.147796,-0.001398,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000119,0.000100,0.000240,0.000593,0.000593,0.000974,0.146522,-0.001274,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000117,0.000097,0.000239,0.000497,0.000497,0.000954,0.145361,-0.001161,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000114,0.000095,0.000238,0.000444,0.000444,0.000935,0.144270,-0.001091,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000095,0.000000,0.000000,0.000000,0.000125,0.000112,0.000093,0.000237,0.000372,0.000372,0.000916,0.143298,-0.000972,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000127,0.000110,0.000092,0.000236,0.000297,0.000297,0.000898,0.142508,-0.000791,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000128,0.000108,0.000090,0.000235,0.000183,0.000183,0.000880,0.141738,-0.000770,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000565,0.000009,0.000017,0.000009,0.000129,0.000106,0.000090,0.000244,0.000069,0.000069,0.000864,0.141548,-0.000190,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000903,0.000035,0.000055,0.000035,0.000130,0.000104,0.000090,0.000269,0.000000,0.000000,0.000850,0.141724,0.000176,1.000000,0.000028 +123,2022-08-06 03:00:00,0.000741,0.000038,0.000038,0.000038,0.000132,0.000102,0.000090,0.000272,0.000000,0.000000,0.000838,0.141756,0.000032,1.000000,0.000028 +124,2022-08-06 04:00:00,0.000606,0.000034,0.000025,0.000034,0.000133,0.000101,0.000090,0.000269,0.000000,0.000000,0.000827,0.141666,-0.000089,1.000000,0.000019 +125,2022-08-06 05:00:00,0.000626,0.000029,0.000027,0.000029,0.000134,0.000100,0.000090,0.000263,0.000000,0.000000,0.000817,0.141596,-0.000070,1.000000,0.000017 +126,2022-08-06 06:00:00,0.000639,0.000027,0.000028,0.000027,0.000136,0.000099,0.000090,0.000262,0.000000,0.000000,0.000808,0.141538,-0.000058,1.000000,0.000018 +127,2022-08-06 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000137,0.000097,0.000088,0.000247,0.000000,0.000000,0.000798,0.140880,-0.000658,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000138,0.000096,0.000087,0.000240,0.000000,0.000000,0.000789,0.140231,-0.000648,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000095,0.000086,0.000235,0.000000,0.000000,0.000779,0.139593,-0.000639,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000094,0.000084,0.000235,0.000000,0.000000,0.000770,0.138964,-0.000629,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000093,0.000083,0.000235,0.000000,0.000000,0.000760,0.138344,-0.000619,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000092,0.000082,0.000235,0.000000,0.000000,0.000750,0.137734,-0.000610,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000090,0.000081,0.000235,0.000000,0.000000,0.000740,0.137133,-0.000601,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000089,0.000079,0.000235,0.000128,0.000128,0.000730,0.136415,-0.000718,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000088,0.000077,0.000235,0.000372,0.000372,0.000720,0.135468,-0.000947,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000086,0.000075,0.000235,0.000523,0.000523,0.000708,0.134386,-0.001082,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000085,0.000073,0.000235,0.000630,0.000630,0.000696,0.133215,-0.001171,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000083,0.000070,0.000234,0.000716,0.000716,0.000683,0.131977,-0.001238,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000082,0.000068,0.000234,0.000674,0.000674,0.000669,0.130799,-0.001178,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000080,0.000065,0.000233,0.000582,0.000582,0.000654,0.129729,-0.001070,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000078,0.000063,0.000233,0.000511,0.000511,0.000640,0.128745,-0.000984,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000076,0.000062,0.000232,0.000439,0.000439,0.000625,0.127848,-0.000897,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000074,0.000060,0.000232,0.000334,0.000334,0.000610,0.127066,-0.000781,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000073,0.000059,0.000231,0.000198,0.000198,0.000596,0.126431,-0.000635,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000071,0.000058,0.000231,0.000056,0.000056,0.000583,0.125946,-0.000486,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000069,0.000057,0.000230,0.000000,0.000000,0.000570,0.125522,-0.000423,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000068,0.000056,0.000230,0.000000,0.000000,0.000558,0.125105,-0.000417,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000067,0.000055,0.000230,0.000000,0.000000,0.000547,0.124695,-0.000411,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000065,0.000054,0.000230,0.000000,0.000000,0.000536,0.124290,-0.000405,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000064,0.000053,0.000230,0.000000,0.000000,0.000525,0.123892,-0.000398,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000063,0.000053,0.000230,0.000000,0.000000,0.000515,0.123499,-0.000392,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000061,0.000052,0.000230,0.000000,0.000000,0.000506,0.123113,-0.000387,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000060,0.000051,0.000230,0.000000,0.000000,0.000496,0.122732,-0.000381,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000059,0.000050,0.000230,0.000000,0.000000,0.000487,0.122357,-0.000375,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000058,0.000050,0.000230,0.000000,0.000000,0.000479,0.121987,-0.000369,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000049,0.000230,0.000000,0.000000,0.000470,0.121624,-0.000364,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000056,0.000048,0.000230,0.000000,0.000000,0.000462,0.121265,-0.000358,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000055,0.000047,0.000230,0.000123,0.000123,0.000454,0.120792,-0.000474,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000054,0.000046,0.000230,0.000366,0.000366,0.000445,0.120085,-0.000706,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000053,0.000044,0.000230,0.000523,0.000523,0.000436,0.119235,-0.000850,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000052,0.000042,0.000230,0.000632,0.000632,0.000426,0.118291,-0.000945,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000051,0.000040,0.000230,0.000706,0.000706,0.000416,0.117287,-0.001003,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000049,0.000038,0.000230,0.000657,0.000657,0.000404,0.116347,-0.000941,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000048,0.000036,0.000229,0.000567,0.000567,0.000393,0.115509,-0.000837,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000046,0.000035,0.000229,0.000523,0.000523,0.000381,0.114728,-0.000781,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000045,0.000033,0.000229,0.000447,0.000447,0.000370,0.114033,-0.000695,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000043,0.000032,0.000229,0.000341,0.000341,0.000358,0.113453,-0.000580,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000042,0.000031,0.000228,0.000174,0.000174,0.000347,0.113047,-0.000407,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000041,0.000031,0.000228,0.000022,0.000022,0.000337,0.112796,-0.000251,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000040,0.000030,0.000228,0.000000,0.000000,0.000327,0.112570,-0.000225,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000039,0.000030,0.000228,0.000000,0.000000,0.000319,0.112348,-0.000222,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000038,0.000029,0.000228,0.000000,0.000000,0.000310,0.112130,-0.000219,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000029,0.000228,0.000000,0.000000,0.000302,0.111915,-0.000215,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000028,0.000228,0.000000,0.000000,0.000295,0.111702,-0.000212,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000028,0.000229,0.000000,0.000000,0.000288,0.111494,-0.000209,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000028,0.000229,0.000000,0.000000,0.000282,0.111288,-0.000206,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000033,0.000027,0.000229,0.000000,0.000000,0.000275,0.111085,-0.000203,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000027,0.000229,0.000000,0.000000,0.000269,0.110886,-0.000200,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000032,0.000026,0.000230,0.000000,0.000000,0.000264,0.110689,-0.000197,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000031,0.000026,0.000230,0.000000,0.000000,0.000258,0.110495,-0.000194,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000031,0.000026,0.000230,0.000000,0.000000,0.000253,0.110305,-0.000191,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000025,0.000231,0.000107,0.000107,0.000248,0.110012,-0.000293,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000024,0.000231,0.000356,0.000356,0.000243,0.109477,-0.000535,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000029,0.000022,0.000231,0.000513,0.000513,0.000236,0.108796,-0.000681,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000021,0.000231,0.000619,0.000619,0.000229,0.108021,-0.000775,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000019,0.000231,0.000707,0.000707,0.000222,0.107171,-0.000850,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000017,0.000231,0.000670,0.000670,0.000213,0.106370,-0.000800,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000016,0.000231,0.000570,0.000570,0.000205,0.105680,-0.000690,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000015,0.000231,0.000518,0.000518,0.000196,0.105052,-0.000628,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000014,0.000231,0.000448,0.000448,0.000187,0.104502,-0.000550,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000013,0.000231,0.000343,0.000343,0.000178,0.104064,-0.000438,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000012,0.000231,0.000196,0.000196,0.000170,0.103777,-0.000286,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000012,0.000231,0.000044,0.000044,0.000162,0.103644,-0.000133,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000019,0.000012,0.000231,0.000000,0.000000,0.000155,0.103557,-0.000088,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000018,0.000012,0.000231,0.000000,0.000000,0.000149,0.103471,-0.000086,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000011,0.000231,0.000000,0.000000,0.000143,0.103386,-0.000085,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000011,0.000232,0.000000,0.000000,0.000137,0.103302,-0.000084,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000011,0.000232,0.000000,0.000000,0.000132,0.103220,-0.000082,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000015,0.000011,0.000232,0.000000,0.000000,0.000128,0.103138,-0.000081,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000011,0.000232,0.000000,0.000000,0.000123,0.103059,-0.000080,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000014,0.000011,0.000233,0.000000,0.000000,0.000120,0.102980,-0.000079,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000014,0.000010,0.000233,0.000000,0.000000,0.000116,0.102902,-0.000078,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000014,0.000010,0.000234,0.000000,0.000000,0.000113,0.102826,-0.000076,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000013,0.000010,0.000234,0.000000,0.000000,0.000109,0.102751,-0.000075,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000013,0.000010,0.000235,0.000000,0.000000,0.000106,0.102677,-0.000074,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000013,0.000010,0.000235,0.000118,0.000118,0.000103,0.102487,-0.000190,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620852.csv b/test/channel_loss/channel_forcing/et/cat-2620852.csv new file mode 100644 index 000000000..013931332 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620852.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000289,0.000002,0.000004,0.000002,0.000000,0.001451,0.000221,0.001453,0.000186,0.000186,0.010366,0.430333,-0.004753,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000037,0.000001,0.000000,0.000001,0.000000,0.001282,0.000218,0.001283,0.000056,0.000056,0.009303,0.425525,-0.004808,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000037,0.000001,0.000000,0.000001,0.000000,0.001139,0.000216,0.001140,0.000000,0.000000,0.008380,0.420833,-0.004691,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000037,0.000000,0.000000,0.000000,0.000000,0.001018,0.000213,0.001018,0.000000,0.000000,0.007575,0.416203,-0.004631,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000037,0.000000,0.000000,0.000000,0.000000,0.000914,0.000210,0.000914,0.000000,0.000000,0.006871,0.411632,-0.004571,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000037,0.000000,0.000000,0.000000,0.000000,0.000824,0.000207,0.000825,0.000000,0.000000,0.006254,0.407120,-0.004512,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000037,0.000000,0.000000,0.000000,0.000001,0.000747,0.000205,0.000748,0.000000,0.000000,0.005712,0.402667,-0.004453,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000680,0.000202,0.000681,0.000000,0.000000,0.005234,0.398235,-0.004431,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000621,0.000199,0.000623,0.000000,0.000000,0.004812,0.393861,-0.004374,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000570,0.000197,0.000572,0.000000,0.000000,0.004439,0.389543,-0.004318,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000525,0.000194,0.000527,0.000000,0.000000,0.004108,0.385282,-0.004262,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000486,0.000192,0.000488,0.000000,0.000000,0.003814,0.381075,-0.004207,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000451,0.000189,0.000453,0.000000,0.000000,0.003553,0.376923,-0.004152,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000420,0.000187,0.000423,0.000000,0.000000,0.003320,0.372824,-0.004099,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000392,0.000184,0.000396,0.000136,0.000136,0.003112,0.368645,-0.004180,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000368,0.000182,0.000372,0.000377,0.000377,0.002926,0.364281,-0.004364,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000346,0.000179,0.000351,0.000530,0.000530,0.002759,0.359823,-0.004458,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000327,0.000176,0.000332,0.000634,0.000634,0.002609,0.355320,-0.004503,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000309,0.000174,0.000315,0.000583,0.000583,0.002473,0.350925,-0.004394,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000130,0.000000,0.000000,0.000000,0.000006,0.000293,0.000171,0.000300,0.000538,0.000538,0.002351,0.346760,-0.004165,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000279,0.000169,0.000286,0.000462,0.000462,0.002241,0.342782,-0.003978,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000200,0.000000,0.000000,0.000000,0.000008,0.000266,0.000167,0.000274,0.000371,0.000371,0.002141,0.338957,-0.003825,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000255,0.000164,0.000263,0.000313,0.000313,0.002051,0.335227,-0.003730,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000200,0.000000,0.000000,0.000000,0.000009,0.000244,0.000162,0.000254,0.000249,0.000249,0.001969,0.331620,-0.003607,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000534,0.000022,0.000040,0.000022,0.000010,0.000235,0.000160,0.000267,0.000147,0.000147,0.001894,0.328449,-0.003171,1.000000,0.000018 +25,2022-08-02 01:00:00,0.000808,0.000084,0.000135,0.000084,0.000011,0.000226,0.000159,0.000321,0.000062,0.000062,0.001827,0.325581,-0.002868,1.000000,0.000069 +26,2022-08-02 02:00:00,0.000765,0.000119,0.000141,0.000119,0.000012,0.000218,0.000157,0.000349,0.000000,0.000000,0.001765,0.322763,-0.002818,1.000000,0.000090 +27,2022-08-02 03:00:00,0.000716,0.000130,0.000124,0.000130,0.000012,0.000211,0.000155,0.000354,0.000000,0.000000,0.001709,0.319949,-0.002814,1.000000,0.000084 +28,2022-08-02 04:00:00,0.000765,0.000136,0.000140,0.000136,0.000013,0.000205,0.000154,0.000354,0.000000,0.000000,0.001658,0.317205,-0.002744,1.000000,0.000088 +29,2022-08-02 05:00:00,0.000727,0.000129,0.000127,0.000129,0.000014,0.000199,0.000152,0.000343,0.000000,0.000000,0.001611,0.314472,-0.002733,1.000000,0.000085 +30,2022-08-02 06:00:00,0.000645,0.000115,0.000101,0.000115,0.000015,0.000194,0.000150,0.000324,0.000000,0.000000,0.001568,0.311718,-0.002754,1.000000,0.000071 +31,2022-08-02 07:00:00,0.000000,0.000051,0.000000,0.000051,0.000016,0.000188,0.000148,0.000255,0.000000,0.000000,0.001528,0.308463,-0.003255,1.000000,0.000020 +32,2022-08-02 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000017,0.000184,0.000147,0.000221,0.000000,0.000000,0.001491,0.305250,-0.003213,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000179,0.000145,0.000198,0.000000,0.000000,0.001456,0.302078,-0.003172,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000175,0.000143,0.000194,0.000000,0.000000,0.001423,0.298947,-0.003131,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000171,0.000141,0.000192,0.000000,0.000000,0.001393,0.295857,-0.003090,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000168,0.000139,0.000189,0.000000,0.000000,0.001364,0.292807,-0.003050,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000164,0.000137,0.000187,0.000000,0.000000,0.001337,0.289797,-0.003011,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000161,0.000135,0.000185,0.000108,0.000108,0.001311,0.286719,-0.003078,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000158,0.000134,0.000183,0.000334,0.000334,0.001286,0.283457,-0.003261,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000155,0.000132,0.000181,0.000468,0.000468,0.001263,0.280106,-0.003352,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000152,0.000129,0.000179,0.000563,0.000563,0.001240,0.276704,-0.003402,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000206,0.000000,0.000000,0.000000,0.000028,0.000150,0.000128,0.000178,0.000657,0.000657,0.001218,0.273456,-0.003248,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000147,0.000126,0.000176,0.000617,0.000617,0.001196,0.270087,-0.003369,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000144,0.000124,0.000175,0.000516,0.000516,0.001176,0.266861,-0.003226,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000142,0.000122,0.000173,0.000479,0.000479,0.001155,0.263713,-0.003148,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000139,0.000120,0.000172,0.000408,0.000408,0.001136,0.260675,-0.003037,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000137,0.000118,0.000171,0.000312,0.000312,0.001117,0.257773,-0.002903,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000135,0.000117,0.000170,0.000187,0.000187,0.001099,0.255031,-0.002742,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000133,0.000115,0.000169,0.000040,0.000040,0.001081,0.252469,-0.002562,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000130,0.000114,0.000168,0.000000,0.000000,0.001064,0.249980,-0.002489,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000128,0.000112,0.000168,0.000000,0.000000,0.001048,0.247524,-0.002457,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000126,0.000111,0.000167,0.000000,0.000000,0.001032,0.245099,-0.002425,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000125,0.000109,0.000166,0.000000,0.000000,0.001017,0.242705,-0.002394,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000123,0.000108,0.000166,0.000000,0.000000,0.001002,0.240342,-0.002363,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000121,0.000106,0.000165,0.000000,0.000000,0.000987,0.238010,-0.002332,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000119,0.000105,0.000165,0.000000,0.000000,0.000973,0.235708,-0.002302,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000117,0.000104,0.000165,0.000000,0.000000,0.000959,0.233436,-0.002272,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000116,0.000102,0.000164,0.000000,0.000000,0.000946,0.231193,-0.002243,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000114,0.000101,0.000164,0.000000,0.000000,0.000933,0.228980,-0.002214,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000113,0.000100,0.000164,0.000000,0.000000,0.000920,0.226795,-0.002185,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000111,0.000098,0.000164,0.000000,0.000000,0.000907,0.224638,-0.002157,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000109,0.000097,0.000164,0.000132,0.000132,0.000895,0.222378,-0.002260,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000108,0.000096,0.000164,0.000382,0.000382,0.000882,0.219901,-0.002477,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000106,0.000094,0.000164,0.000532,0.000532,0.000870,0.217308,-0.002593,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000105,0.000092,0.000163,0.000632,0.000632,0.000858,0.214650,-0.002658,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000103,0.000091,0.000163,0.000649,0.000649,0.000845,0.212010,-0.002641,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000102,0.000089,0.000163,0.000612,0.000612,0.000833,0.209440,-0.002570,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000683,0.000003,0.000006,0.000003,0.000063,0.000100,0.000088,0.000167,0.000523,0.000523,0.000821,0.207660,-0.001780,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000204,0.000002,0.000000,0.000002,0.000065,0.000099,0.000087,0.000165,0.000474,0.000474,0.000809,0.205484,-0.002176,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000066,0.000097,0.000086,0.000165,0.000398,0.000398,0.000797,0.203210,-0.002274,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000096,0.000084,0.000163,0.000307,0.000307,0.000785,0.201055,-0.002155,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000094,0.000083,0.000164,0.000177,0.000177,0.000774,0.199057,-0.001999,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000093,0.000082,0.000164,0.000052,0.000052,0.000763,0.197207,-0.001849,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000092,0.000081,0.000164,0.000000,0.000000,0.000752,0.195433,-0.001774,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000090,0.000080,0.000164,0.000000,0.000000,0.000741,0.193682,-0.001751,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000089,0.000079,0.000164,0.000000,0.000000,0.000731,0.191953,-0.001729,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000088,0.000078,0.000165,0.000000,0.000000,0.000721,0.190247,-0.001706,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000087,0.000077,0.000165,0.000000,0.000000,0.000711,0.188563,-0.001684,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000086,0.000076,0.000165,0.000000,0.000000,0.000701,0.186900,-0.001662,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000084,0.000075,0.000166,0.000000,0.000000,0.000692,0.185259,-0.001641,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000083,0.000074,0.000166,0.000000,0.000000,0.000682,0.183640,-0.001620,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000082,0.000073,0.000167,0.000000,0.000000,0.000673,0.182041,-0.001599,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000081,0.000072,0.000167,0.000000,0.000000,0.000664,0.180463,-0.001578,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000080,0.000071,0.000167,0.000000,0.000000,0.000655,0.178905,-0.001558,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000079,0.000070,0.000168,0.000000,0.000000,0.000647,0.177368,-0.001537,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000078,0.000069,0.000169,0.000130,0.000130,0.000638,0.175722,-0.001646,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000077,0.000068,0.000169,0.000383,0.000383,0.000629,0.173847,-0.001875,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000076,0.000067,0.000170,0.000539,0.000539,0.000621,0.171843,-0.002004,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000075,0.000066,0.000170,0.000642,0.000642,0.000612,0.169763,-0.002080,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000073,0.000064,0.000170,0.000719,0.000719,0.000603,0.167634,-0.002129,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000072,0.000063,0.000171,0.000679,0.000679,0.000593,0.165572,-0.002062,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000071,0.000062,0.000171,0.000579,0.000579,0.000584,0.163636,-0.001936,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000070,0.000061,0.000172,0.000471,0.000471,0.000575,0.161831,-0.001805,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000069,0.000060,0.000172,0.000405,0.000405,0.000566,0.160115,-0.001716,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000068,0.000059,0.000173,0.000309,0.000309,0.000557,0.158515,-0.001600,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000067,0.000058,0.000173,0.000194,0.000194,0.000548,0.157050,-0.001465,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000062,0.000000,0.000000,0.000000,0.000108,0.000066,0.000057,0.000174,0.000066,0.000066,0.000540,0.155791,-0.001259,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000021,0.000000,0.000000,0.000000,0.000110,0.000065,0.000056,0.000175,0.000000,0.000000,0.000532,0.154573,-0.001218,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000013,0.000000,0.000000,0.000000,0.000111,0.000064,0.000056,0.000175,0.000000,0.000000,0.000524,0.153363,-0.001210,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000013,0.000000,0.000000,0.000000,0.000113,0.000063,0.000055,0.000176,0.000000,0.000000,0.000516,0.152168,-0.001195,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000013,0.000000,0.000000,0.000000,0.000115,0.000062,0.000054,0.000176,0.000000,0.000000,0.000508,0.150989,-0.001179,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000013,0.000000,0.000000,0.000000,0.000116,0.000061,0.000054,0.000177,0.000000,0.000000,0.000501,0.149825,-0.001164,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000060,0.000053,0.000178,0.000000,0.000000,0.000494,0.148664,-0.001161,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000059,0.000052,0.000179,0.000000,0.000000,0.000487,0.147518,-0.001146,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000058,0.000052,0.000179,0.000000,0.000000,0.000480,0.146386,-0.001132,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000058,0.000051,0.000180,0.000000,0.000000,0.000474,0.145269,-0.001117,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000057,0.000050,0.000181,0.000000,0.000000,0.000467,0.144167,-0.001102,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000056,0.000050,0.000182,0.000000,0.000000,0.000461,0.143078,-0.001088,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000055,0.000049,0.000183,0.000000,0.000000,0.000454,0.142004,-0.001074,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000054,0.000048,0.000183,0.000139,0.000139,0.000448,0.140807,-0.001198,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000054,0.000047,0.000184,0.000379,0.000379,0.000442,0.139388,-0.001419,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000053,0.000046,0.000185,0.000531,0.000531,0.000435,0.137838,-0.001550,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000052,0.000046,0.000186,0.000636,0.000636,0.000429,0.136204,-0.001634,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000051,0.000045,0.000187,0.000612,0.000612,0.000422,0.134614,-0.001590,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000050,0.000044,0.000187,0.000562,0.000562,0.000415,0.133157,-0.001457,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000195,0.000000,0.000000,0.000000,0.000138,0.000050,0.000043,0.000188,0.000484,0.000484,0.000409,0.131926,-0.001231,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000140,0.000049,0.000042,0.000189,0.000419,0.000419,0.000402,0.130645,-0.001282,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000115,0.000000,0.000000,0.000000,0.000142,0.000048,0.000042,0.000190,0.000356,0.000356,0.000396,0.129493,-0.001152,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000196,0.000000,0.000000,0.000000,0.000143,0.000047,0.000041,0.000190,0.000273,0.000273,0.000389,0.128519,-0.000975,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000115,0.000000,0.000000,0.000000,0.000145,0.000047,0.000040,0.000191,0.000176,0.000176,0.000383,0.127573,-0.000946,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000600,0.000030,0.000055,0.000030,0.000146,0.000046,0.000040,0.000223,0.000065,0.000065,0.000377,0.127172,-0.000401,1.000000,0.000025 +122,2022-08-06 02:00:00,0.001060,0.000122,0.000197,0.000122,0.000148,0.000045,0.000040,0.000315,0.000000,0.000000,0.000372,0.127155,-0.000017,1.000000,0.000100 +123,2022-08-06 03:00:00,0.000796,0.000125,0.000117,0.000125,0.000149,0.000045,0.000040,0.000319,0.000000,0.000000,0.000368,0.126957,-0.000198,1.000000,0.000092 +124,2022-08-06 04:00:00,0.000705,0.000120,0.000093,0.000120,0.000151,0.000044,0.000040,0.000315,0.000000,0.000000,0.000363,0.126696,-0.000262,1.000000,0.000065 +125,2022-08-06 05:00:00,0.000686,0.000095,0.000088,0.000095,0.000152,0.000044,0.000040,0.000291,0.000000,0.000000,0.000359,0.126423,-0.000273,1.000000,0.000058 +126,2022-08-06 06:00:00,0.000769,0.000101,0.000109,0.000101,0.000154,0.000043,0.000040,0.000298,0.000000,0.000000,0.000356,0.126215,-0.000208,1.000000,0.000067 +127,2022-08-06 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000156,0.000043,0.000039,0.000243,0.000000,0.000000,0.000352,0.125359,-0.000856,1.000000,0.000022 +128,2022-08-06 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000157,0.000042,0.000039,0.000221,0.000000,0.000000,0.000348,0.124514,-0.000845,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000042,0.000038,0.000200,0.000000,0.000000,0.000345,0.123680,-0.000834,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000041,0.000038,0.000202,0.000000,0.000000,0.000341,0.122857,-0.000823,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000041,0.000037,0.000203,0.000000,0.000000,0.000337,0.122044,-0.000813,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000040,0.000037,0.000204,0.000000,0.000000,0.000333,0.121242,-0.000802,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000040,0.000036,0.000205,0.000000,0.000000,0.000329,0.120450,-0.000792,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000039,0.000036,0.000206,0.000125,0.000125,0.000325,0.119546,-0.000905,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000039,0.000035,0.000207,0.000368,0.000368,0.000321,0.118412,-0.001133,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000038,0.000034,0.000208,0.000521,0.000521,0.000317,0.117143,-0.001269,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000033,0.000209,0.000621,0.000621,0.000312,0.115791,-0.001352,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000037,0.000032,0.000210,0.000695,0.000695,0.000307,0.114384,-0.001407,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000037,0.000032,0.000211,0.000667,0.000667,0.000302,0.113023,-0.001361,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000036,0.000031,0.000211,0.000569,0.000569,0.000297,0.111775,-0.001247,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000035,0.000030,0.000212,0.000476,0.000476,0.000292,0.110636,-0.001139,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000035,0.000030,0.000213,0.000404,0.000404,0.000287,0.109583,-0.001053,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000029,0.000214,0.000311,0.000311,0.000282,0.108636,-0.000947,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000034,0.000029,0.000215,0.000179,0.000179,0.000277,0.107830,-0.000805,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000033,0.000028,0.000216,0.000051,0.000051,0.000272,0.107162,-0.000668,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000032,0.000028,0.000217,0.000000,0.000000,0.000267,0.106552,-0.000610,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000032,0.000027,0.000218,0.000000,0.000000,0.000263,0.105951,-0.000602,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000027,0.000218,0.000000,0.000000,0.000259,0.105357,-0.000594,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000027,0.000219,0.000000,0.000000,0.000255,0.104771,-0.000586,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000030,0.000026,0.000220,0.000000,0.000000,0.000251,0.104192,-0.000579,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000026,0.000221,0.000000,0.000000,0.000247,0.103621,-0.000571,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000026,0.000222,0.000000,0.000000,0.000243,0.103057,-0.000564,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000029,0.000025,0.000223,0.000000,0.000000,0.000239,0.102500,-0.000557,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000025,0.000224,0.000000,0.000000,0.000236,0.101951,-0.000549,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000025,0.000225,0.000000,0.000000,0.000232,0.101409,-0.000542,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000024,0.000226,0.000000,0.000000,0.000229,0.100873,-0.000535,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000024,0.000227,0.000000,0.000000,0.000226,0.100345,-0.000528,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000024,0.000228,0.000119,0.000119,0.000222,0.099706,-0.000639,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000023,0.000229,0.000359,0.000359,0.000219,0.098839,-0.000867,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000023,0.000230,0.000512,0.000512,0.000216,0.097832,-0.001007,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000022,0.000231,0.000618,0.000618,0.000212,0.096732,-0.001099,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000232,0.000690,0.000690,0.000208,0.095576,-0.001156,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000021,0.000233,0.000654,0.000654,0.000204,0.094470,-0.001106,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000234,0.000554,0.000554,0.000200,0.093478,-0.000993,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000492,0.000000,0.000196,0.093045,-0.000433,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000236,0.000418,0.000000,0.000192,0.092618,-0.000427,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000305,0.000000,0.000188,0.092197,-0.000422,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000237,0.000165,0.000000,0.000185,0.091780,-0.000416,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000019,0.000238,0.000018,0.000000,0.000182,0.091370,-0.000411,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000002,0.000000,0.000000,0.000000,0.000218,0.000022,0.000018,0.000239,0.000000,0.000000,0.000178,0.090967,-0.000403,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000000,0.000000,0.000175,0.090567,-0.000400,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000042,0.000000,0.000000,0.000000,0.000220,0.000021,0.000018,0.000241,0.000000,0.000000,0.000173,0.090213,-0.000354,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000121,0.000002,0.000003,0.000002,0.000222,0.000021,0.000018,0.000244,0.000000,0.000000,0.000170,0.089939,-0.000274,1.000000,0.000001 +174,2022-08-08 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000223,0.000020,0.000018,0.000244,0.000000,0.000000,0.000167,0.089553,-0.000387,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000224,0.000020,0.000017,0.000245,0.000000,0.000000,0.000165,0.089171,-0.000382,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000017,0.000245,0.000000,0.000000,0.000162,0.088794,-0.000377,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000017,0.000246,0.000000,0.000000,0.000160,0.088422,-0.000372,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000017,0.000247,0.000000,0.000000,0.000158,0.088054,-0.000367,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000017,0.000248,0.000000,0.000000,0.000155,0.087692,-0.000362,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000016,0.000249,0.000000,0.000000,0.000153,0.087334,-0.000358,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000250,0.000000,0.000000,0.000151,0.086981,-0.000353,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000016,0.000251,0.000103,0.000000,0.000149,0.086632,-0.000349,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000016,0.000252,0.000349,0.000000,0.000147,0.086288,-0.000344,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000015,0.000253,0.000507,0.000000,0.000145,0.085949,-0.000340,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000015,0.000254,0.000612,0.000000,0.000143,0.085613,-0.000335,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000696,0.000000,0.000141,0.085282,-0.000331,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000655,0.000000,0.000139,0.084956,-0.000327,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000257,0.000556,0.000000,0.000137,0.084633,-0.000322,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000015,0.000258,0.000501,0.000000,0.000135,0.084315,-0.000318,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000424,0.000000,0.000133,0.084001,-0.000314,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000324,0.000000,0.000132,0.083691,-0.000310,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000261,0.000187,0.000000,0.000130,0.083385,-0.000306,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000262,0.000041,0.000000,0.000128,0.083083,-0.000302,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000014,0.000263,0.000000,0.000000,0.000126,0.082784,-0.000298,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000264,0.000000,0.000000,0.000125,0.082490,-0.000294,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000265,0.000000,0.000000,0.000123,0.082200,-0.000291,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000013,0.000266,0.000000,0.000000,0.000121,0.081913,-0.000287,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000015,0.000013,0.000267,0.000000,0.000000,0.000120,0.081630,-0.000283,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000013,0.000268,0.000000,0.000000,0.000118,0.081350,-0.000279,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000014,0.000013,0.000269,0.000000,0.000000,0.000117,0.081075,-0.000276,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000014,0.000012,0.000270,0.000000,0.000000,0.000115,0.080802,-0.000272,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000014,0.000012,0.000271,0.000000,0.000000,0.000114,0.080534,-0.000269,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000014,0.000012,0.000272,0.000000,0.000000,0.000112,0.080268,-0.000265,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000013,0.000012,0.000272,0.000000,0.000000,0.000111,0.080007,-0.000262,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000013,0.000012,0.000273,0.000000,0.000000,0.000109,0.079748,-0.000258,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000013,0.000012,0.000274,0.000118,0.000000,0.000108,0.079493,-0.000255,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620853.csv b/test/channel_loss/channel_forcing/et/cat-2620853.csv new file mode 100644 index 000000000..d7367d2df --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620853.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000246,0.000000,0.000000,0.000000,0.000000,0.001481,0.000438,0.001481,0.000195,0.000195,0.010552,0.429137,-0.004853,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000016,0.000000,0.000000,0.000000,0.000000,0.001336,0.000432,0.001336,0.000064,0.000064,0.009648,0.424255,-0.004882,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000007,0.000000,0.000000,0.000000,0.000000,0.001213,0.000426,0.001213,0.000000,0.000000,0.008860,0.419496,-0.004759,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000007,0.000000,0.000000,0.000000,0.000000,0.001108,0.000420,0.001108,0.000000,0.000000,0.008172,0.414803,-0.004693,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000007,0.000000,0.000000,0.000000,0.000000,0.001017,0.000414,0.001017,0.000000,0.000000,0.007569,0.410176,-0.004627,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000016,0.000000,0.000000,0.000000,0.000000,0.000938,0.000408,0.000939,0.000000,0.000000,0.007039,0.405622,-0.004554,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000007,0.000000,0.000000,0.000000,0.000001,0.000870,0.000402,0.000871,0.000000,0.000000,0.006571,0.401123,-0.004498,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000811,0.000397,0.000811,0.000000,0.000000,0.006157,0.396681,-0.004443,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000758,0.000391,0.000759,0.000000,0.000000,0.005790,0.392300,-0.004380,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000712,0.000386,0.000714,0.000000,0.000000,0.005464,0.387981,-0.004319,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000671,0.000380,0.000673,0.000000,0.000000,0.005173,0.383723,-0.004259,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000635,0.000375,0.000637,0.000000,0.000000,0.004912,0.379524,-0.004199,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000603,0.000370,0.000606,0.000000,0.000000,0.004679,0.375383,-0.004140,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000574,0.000364,0.000577,0.000000,0.000000,0.004469,0.371301,-0.004082,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000549,0.000359,0.000552,0.000141,0.000141,0.004280,0.367137,-0.004164,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000525,0.000354,0.000529,0.000377,0.000377,0.004108,0.362799,-0.004338,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000504,0.000348,0.000509,0.000534,0.000534,0.003952,0.358366,-0.004433,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000485,0.000342,0.000490,0.000655,0.000655,0.003809,0.353876,-0.004490,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000468,0.000337,0.000473,0.000615,0.000615,0.003678,0.349489,-0.004388,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000452,0.000332,0.000458,0.000578,0.000578,0.003558,0.345324,-0.004165,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000139,0.000000,0.000000,0.000000,0.000007,0.000437,0.000326,0.000444,0.000486,0.000486,0.003448,0.341320,-0.004003,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000178,0.000000,0.000000,0.000000,0.000007,0.000423,0.000322,0.000431,0.000376,0.000376,0.003346,0.337520,-0.003800,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000148,0.000000,0.000000,0.000000,0.000008,0.000411,0.000317,0.000419,0.000324,0.000324,0.003252,0.333794,-0.003726,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000254,0.000000,0.000000,0.000000,0.000009,0.000399,0.000312,0.000408,0.000255,0.000255,0.003165,0.330294,-0.003501,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000964,0.000049,0.000089,0.000049,0.000010,0.000389,0.000309,0.000447,0.000152,0.000152,0.003085,0.327556,-0.002738,1.000000,0.000040 +25,2022-08-02 01:00:00,0.001118,0.000101,0.000143,0.000101,0.000010,0.000379,0.000306,0.000490,0.000070,0.000070,0.003012,0.325036,-0.002519,1.000000,0.000082 +26,2022-08-02 02:00:00,0.000713,0.000091,0.000069,0.000091,0.000011,0.000370,0.000302,0.000473,0.000000,0.000000,0.002944,0.322294,-0.002742,1.000000,0.000059 +27,2022-08-02 03:00:00,0.000599,0.000073,0.000049,0.000073,0.000012,0.000362,0.000299,0.000447,0.000000,0.000000,0.002881,0.319498,-0.002796,1.000000,0.000036 +28,2022-08-02 04:00:00,0.000641,0.000057,0.000056,0.000057,0.000013,0.000354,0.000295,0.000424,0.000000,0.000000,0.002822,0.316776,-0.002722,1.000000,0.000035 +29,2022-08-02 05:00:00,0.000577,0.000049,0.000045,0.000049,0.000014,0.000347,0.000292,0.000409,0.000000,0.000000,0.002766,0.314039,-0.002737,1.000000,0.000031 +30,2022-08-02 06:00:00,0.000542,0.000044,0.000040,0.000044,0.000015,0.000340,0.000288,0.000399,0.000000,0.000000,0.002714,0.311310,-0.002728,1.000000,0.000027 +31,2022-08-02 07:00:00,0.000000,0.000019,0.000000,0.000019,0.000015,0.000334,0.000284,0.000368,0.000000,0.000000,0.002665,0.308126,-0.003185,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000016,0.000328,0.000280,0.000352,0.000000,0.000000,0.002617,0.304985,-0.003140,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000322,0.000276,0.000339,0.000000,0.000000,0.002572,0.301889,-0.003096,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000316,0.000273,0.000334,0.000000,0.000000,0.002528,0.298836,-0.003053,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000311,0.000269,0.000330,0.000000,0.000000,0.002486,0.295825,-0.003010,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000306,0.000265,0.000326,0.000000,0.000000,0.002446,0.292857,-0.002968,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000031,0.000000,0.000000,0.000000,0.000021,0.000301,0.000261,0.000322,0.000000,0.000000,0.002406,0.289961,-0.002896,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000031,0.000000,0.000000,0.000000,0.000022,0.000296,0.000258,0.000318,0.000116,0.000116,0.002368,0.286992,-0.002970,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000031,0.000000,0.000000,0.000000,0.000023,0.000291,0.000254,0.000314,0.000333,0.000333,0.002331,0.283849,-0.003143,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000031,0.000000,0.000000,0.000000,0.000024,0.000286,0.000249,0.000310,0.000474,0.000474,0.002295,0.280612,-0.003237,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000031,0.000000,0.000000,0.000000,0.000025,0.000281,0.000245,0.000307,0.000586,0.000586,0.002258,0.277311,-0.003302,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000231,0.000000,0.000000,0.000000,0.000027,0.000277,0.000241,0.000303,0.000674,0.000674,0.002223,0.274166,-0.003145,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000272,0.000237,0.000300,0.000632,0.000632,0.002188,0.270878,-0.003288,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000268,0.000233,0.000297,0.000541,0.000541,0.002153,0.267726,-0.003152,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000264,0.000229,0.000293,0.000490,0.000490,0.002119,0.264667,-0.003058,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000259,0.000226,0.000290,0.000423,0.000423,0.002085,0.261719,-0.002949,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000255,0.000222,0.000287,0.000327,0.000327,0.002052,0.258905,-0.002813,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000251,0.000219,0.000284,0.000198,0.000198,0.002020,0.256259,-0.002646,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000247,0.000215,0.000282,0.000049,0.000049,0.001988,0.253796,-0.002463,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000243,0.000212,0.000279,0.000000,0.000000,0.001958,0.251417,-0.002380,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000239,0.000209,0.000276,0.000000,0.000000,0.001928,0.249071,-0.002346,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000235,0.000207,0.000274,0.000000,0.000000,0.001899,0.246757,-0.002313,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000232,0.000204,0.000272,0.000000,0.000000,0.001871,0.244476,-0.002281,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000228,0.000201,0.000269,0.000000,0.000000,0.001843,0.242227,-0.002249,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000225,0.000198,0.000267,0.000000,0.000000,0.001816,0.240010,-0.002218,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000222,0.000195,0.000265,0.000000,0.000000,0.001790,0.237823,-0.002187,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000218,0.000192,0.000263,0.000000,0.000000,0.001764,0.235667,-0.002156,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000215,0.000190,0.000261,0.000000,0.000000,0.001739,0.233541,-0.002126,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000212,0.000187,0.000259,0.000000,0.000000,0.001714,0.231446,-0.002096,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000209,0.000185,0.000258,0.000000,0.000000,0.001689,0.229379,-0.002067,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000206,0.000182,0.000256,0.000000,0.000000,0.001666,0.227341,-0.002038,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000203,0.000179,0.000254,0.000138,0.000138,0.001642,0.225196,-0.002145,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000200,0.000176,0.000253,0.000384,0.000384,0.001618,0.222839,-0.002357,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000197,0.000173,0.000251,0.000539,0.000539,0.001594,0.220361,-0.002478,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000194,0.000170,0.000249,0.000658,0.000658,0.001570,0.217802,-0.002560,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000191,0.000167,0.000248,0.000682,0.000682,0.001546,0.215254,-0.002548,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000188,0.000163,0.000246,0.000643,0.000643,0.001522,0.212780,-0.002474,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000513,0.000000,0.000000,0.000000,0.000060,0.000185,0.000161,0.000244,0.000554,0.000554,0.001498,0.210934,-0.001846,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000105,0.000000,0.000000,0.000000,0.000061,0.000182,0.000158,0.000243,0.000494,0.000494,0.001475,0.208771,-0.002163,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000179,0.000156,0.000241,0.000417,0.000417,0.001452,0.206611,-0.002160,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000176,0.000153,0.000240,0.000319,0.000319,0.001429,0.204577,-0.002033,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000173,0.000151,0.000238,0.000190,0.000190,0.001406,0.202700,-0.001878,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000170,0.000148,0.000237,0.000063,0.000063,0.001384,0.200974,-0.001726,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000168,0.000146,0.000236,0.000000,0.000000,0.001363,0.199334,-0.001640,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000165,0.000144,0.000235,0.000000,0.000000,0.001342,0.197717,-0.001617,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000163,0.000142,0.000233,0.000000,0.000000,0.001322,0.196123,-0.001594,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000160,0.000140,0.000232,0.000000,0.000000,0.001302,0.194551,-0.001572,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000158,0.000138,0.000231,0.000000,0.000000,0.001283,0.193001,-0.001550,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000155,0.000136,0.000230,0.000000,0.000000,0.001264,0.191473,-0.001528,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000153,0.000135,0.000230,0.000000,0.000000,0.001245,0.189966,-0.001507,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000151,0.000133,0.000229,0.000000,0.000000,0.001227,0.188481,-0.001486,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000149,0.000131,0.000228,0.000000,0.000000,0.001209,0.187016,-0.001465,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000146,0.000129,0.000227,0.000000,0.000000,0.001192,0.185571,-0.001444,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000144,0.000127,0.000227,0.000000,0.000000,0.001175,0.184147,-0.001424,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000142,0.000125,0.000226,0.000000,0.000000,0.001158,0.182743,-0.001404,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000140,0.000123,0.000225,0.000135,0.000135,0.001141,0.181225,-0.001518,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000138,0.000121,0.000225,0.000381,0.000381,0.001125,0.179486,-0.001739,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000136,0.000119,0.000224,0.000542,0.000542,0.001108,0.177613,-0.001873,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000134,0.000116,0.000223,0.000662,0.000662,0.001090,0.175647,-0.001966,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000132,0.000114,0.000223,0.000758,0.000758,0.001073,0.173615,-0.002032,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000129,0.000111,0.000222,0.000699,0.000699,0.001055,0.171668,-0.001946,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000127,0.000109,0.000221,0.000605,0.000605,0.001037,0.169843,-0.001826,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000125,0.000107,0.000220,0.000494,0.000494,0.001019,0.168152,-0.001691,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000123,0.000105,0.000220,0.000425,0.000425,0.001001,0.166553,-0.001599,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000120,0.000103,0.000219,0.000326,0.000326,0.000984,0.165073,-0.001479,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000118,0.000101,0.000218,0.000204,0.000204,0.000966,0.163735,-0.001338,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000107,0.000000,0.000000,0.000000,0.000101,0.000116,0.000100,0.000218,0.000077,0.000077,0.000950,0.162647,-0.001088,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000042,0.000000,0.000000,0.000000,0.000103,0.000114,0.000099,0.000217,0.000000,0.000000,0.000934,0.161585,-0.001062,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000037,0.000000,0.000000,0.000000,0.000104,0.000112,0.000097,0.000217,0.000000,0.000000,0.000919,0.160533,-0.001052,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000045,0.000000,0.000000,0.000000,0.000106,0.000111,0.000096,0.000217,0.000000,0.000000,0.000904,0.159504,-0.001029,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000054,0.000000,0.000000,0.000000,0.000107,0.000109,0.000095,0.000216,0.000000,0.000000,0.000890,0.158498,-0.001006,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000057,0.000000,0.000000,0.000000,0.000109,0.000107,0.000093,0.000216,0.000000,0.000000,0.000876,0.157508,-0.000989,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000105,0.000092,0.000216,0.000000,0.000000,0.000863,0.156477,-0.001031,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000104,0.000091,0.000216,0.000000,0.000000,0.000850,0.155460,-0.001017,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000102,0.000090,0.000215,0.000000,0.000000,0.000837,0.154458,-0.001003,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000101,0.000088,0.000215,0.000000,0.000000,0.000825,0.153469,-0.000988,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000099,0.000087,0.000215,0.000000,0.000000,0.000812,0.152495,-0.000975,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000098,0.000086,0.000215,0.000000,0.000000,0.000800,0.151534,-0.000961,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000096,0.000085,0.000215,0.000000,0.000000,0.000789,0.150586,-0.000948,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000095,0.000083,0.000215,0.000144,0.000144,0.000777,0.149510,-0.001076,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000093,0.000082,0.000215,0.000381,0.000381,0.000765,0.148215,-0.001295,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000092,0.000080,0.000215,0.000536,0.000536,0.000753,0.146786,-0.001430,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000090,0.000078,0.000215,0.000655,0.000655,0.000740,0.145258,-0.001527,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000089,0.000076,0.000215,0.000641,0.000641,0.000728,0.143766,-0.001492,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000087,0.000074,0.000215,0.000603,0.000603,0.000715,0.142396,-0.001371,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000279,0.000000,0.000000,0.000000,0.000129,0.000086,0.000073,0.000215,0.000502,0.000502,0.000702,0.141356,-0.001040,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000084,0.000071,0.000214,0.000439,0.000439,0.000689,0.140180,-0.001175,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000110,0.000000,0.000000,0.000000,0.000132,0.000083,0.000070,0.000214,0.000370,0.000370,0.000677,0.139135,-0.001045,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000146,0.000000,0.000000,0.000000,0.000133,0.000081,0.000069,0.000214,0.000285,0.000285,0.000665,0.138224,-0.000911,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000099,0.000000,0.000000,0.000000,0.000135,0.000080,0.000068,0.000214,0.000185,0.000185,0.000653,0.137378,-0.000845,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000597,0.000016,0.000029,0.000016,0.000136,0.000078,0.000068,0.000230,0.000074,0.000074,0.000642,0.137117,-0.000262,1.000000,0.000013 +122,2022-08-06 02:00:00,0.000881,0.000050,0.000079,0.000050,0.000138,0.000077,0.000068,0.000265,0.000000,0.000000,0.000633,0.137162,0.000045,1.000000,0.000041 +123,2022-08-06 03:00:00,0.000692,0.000053,0.000049,0.000053,0.000139,0.000076,0.000067,0.000268,0.000000,0.000000,0.000624,0.137049,-0.000113,1.000000,0.000038 +124,2022-08-06 04:00:00,0.000602,0.000049,0.000038,0.000049,0.000140,0.000075,0.000067,0.000264,0.000000,0.000000,0.000616,0.136861,-0.000188,1.000000,0.000027 +125,2022-08-06 05:00:00,0.000562,0.000037,0.000033,0.000037,0.000142,0.000074,0.000067,0.000253,0.000000,0.000000,0.000609,0.136641,-0.000221,1.000000,0.000022 +126,2022-08-06 06:00:00,0.000622,0.000038,0.000040,0.000038,0.000143,0.000073,0.000067,0.000254,0.000000,0.000000,0.000602,0.136476,-0.000165,1.000000,0.000025 +127,2022-08-06 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000145,0.000073,0.000066,0.000234,0.000000,0.000000,0.000595,0.135739,-0.000737,1.000000,0.000008 +128,2022-08-06 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000146,0.000072,0.000065,0.000226,0.000000,0.000000,0.000589,0.135013,-0.000726,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000071,0.000064,0.000218,0.000000,0.000000,0.000582,0.134296,-0.000716,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000070,0.000063,0.000219,0.000000,0.000000,0.000575,0.133590,-0.000706,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000069,0.000062,0.000219,0.000000,0.000000,0.000568,0.132894,-0.000696,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000068,0.000061,0.000220,0.000000,0.000000,0.000561,0.132207,-0.000687,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000067,0.000060,0.000220,0.000000,0.000000,0.000554,0.131531,-0.000677,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000067,0.000059,0.000221,0.000130,0.000130,0.000547,0.130735,-0.000795,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000066,0.000058,0.000221,0.000371,0.000371,0.000539,0.129713,-0.001022,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000065,0.000057,0.000222,0.000530,0.000530,0.000531,0.128549,-0.001164,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000064,0.000055,0.000222,0.000643,0.000643,0.000523,0.127289,-0.001259,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000062,0.000053,0.000222,0.000726,0.000726,0.000514,0.125965,-0.001324,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000061,0.000052,0.000222,0.000697,0.000697,0.000504,0.124689,-0.001276,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000060,0.000050,0.000223,0.000600,0.000600,0.000494,0.123526,-0.001163,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000059,0.000049,0.000223,0.000497,0.000497,0.000484,0.122481,-0.001045,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000058,0.000048,0.000223,0.000422,0.000422,0.000474,0.121523,-0.000957,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000056,0.000047,0.000223,0.000321,0.000321,0.000464,0.120680,-0.000843,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000055,0.000046,0.000223,0.000192,0.000192,0.000455,0.119976,-0.000704,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000054,0.000045,0.000223,0.000060,0.000060,0.000446,0.119411,-0.000565,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000053,0.000044,0.000224,0.000000,0.000000,0.000437,0.118913,-0.000498,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000052,0.000044,0.000224,0.000000,0.000000,0.000429,0.118422,-0.000491,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000051,0.000043,0.000224,0.000000,0.000000,0.000421,0.117938,-0.000484,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000050,0.000043,0.000225,0.000000,0.000000,0.000413,0.117461,-0.000477,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000049,0.000042,0.000225,0.000000,0.000000,0.000406,0.116991,-0.000470,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000048,0.000041,0.000225,0.000000,0.000000,0.000399,0.116527,-0.000464,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000048,0.000041,0.000226,0.000000,0.000000,0.000392,0.116070,-0.000457,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000047,0.000040,0.000226,0.000000,0.000000,0.000386,0.115619,-0.000451,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000046,0.000040,0.000227,0.000000,0.000000,0.000379,0.115174,-0.000445,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000045,0.000039,0.000227,0.000000,0.000000,0.000373,0.114736,-0.000438,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000039,0.000228,0.000000,0.000000,0.000367,0.114304,-0.000432,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000044,0.000038,0.000228,0.000000,0.000000,0.000361,0.113878,-0.000426,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000043,0.000037,0.000229,0.000124,0.000124,0.000355,0.113335,-0.000543,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000042,0.000036,0.000229,0.000362,0.000362,0.000349,0.112565,-0.000769,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000042,0.000035,0.000230,0.000522,0.000522,0.000343,0.111649,-0.000917,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000041,0.000034,0.000230,0.000642,0.000642,0.000336,0.110627,-0.001022,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000040,0.000033,0.000231,0.000719,0.000719,0.000329,0.109544,-0.001083,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000039,0.000031,0.000231,0.000688,0.000688,0.000321,0.108506,-0.001038,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000038,0.000030,0.000231,0.000580,0.000580,0.000313,0.107589,-0.000916,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000037,0.000029,0.000231,0.000511,0.000511,0.000305,0.106753,-0.000836,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000036,0.000028,0.000232,0.000437,0.000437,0.000297,0.106002,-0.000752,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000035,0.000027,0.000232,0.000322,0.000322,0.000289,0.105374,-0.000628,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000027,0.000232,0.000180,0.000180,0.000282,0.104895,-0.000479,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000010,0.000000,0.000000,0.000000,0.000199,0.000033,0.000026,0.000232,0.000028,0.000028,0.000275,0.104583,-0.000312,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000020,0.000000,0.000000,0.000000,0.000200,0.000033,0.000026,0.000233,0.000000,0.000000,0.000268,0.104312,-0.000271,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000201,0.000032,0.000026,0.000233,0.000000,0.000000,0.000262,0.104035,-0.000277,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000063,0.000000,0.000000,0.000000,0.000203,0.000031,0.000025,0.000234,0.000000,0.000000,0.000256,0.103814,-0.000221,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000184,0.000002,0.000004,0.000002,0.000204,0.000030,0.000025,0.000236,0.000000,0.000000,0.000251,0.103713,-0.000101,1.000000,0.000002 +174,2022-08-08 06:00:00,0.000014,0.000001,0.000000,0.000001,0.000205,0.000030,0.000025,0.000236,0.000000,0.000000,0.000246,0.103449,-0.000264,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000206,0.000029,0.000024,0.000236,0.000000,0.000000,0.000241,0.103175,-0.000274,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000029,0.000024,0.000236,0.000000,0.000000,0.000237,0.102905,-0.000270,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000024,0.000237,0.000000,0.000000,0.000232,0.102638,-0.000267,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000023,0.000237,0.000000,0.000000,0.000228,0.102375,-0.000263,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000023,0.000238,0.000000,0.000000,0.000224,0.102116,-0.000259,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000023,0.000238,0.000000,0.000000,0.000220,0.101861,-0.000256,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000022,0.000239,0.000000,0.000000,0.000216,0.101609,-0.000252,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000026,0.000022,0.000240,0.000108,0.000108,0.000213,0.101254,-0.000355,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000240,0.000350,0.000350,0.000209,0.100665,-0.000589,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000020,0.000241,0.000512,0.000512,0.000204,0.099925,-0.000740,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000019,0.000241,0.000631,0.000631,0.000199,0.099078,-0.000847,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000018,0.000242,0.000723,0.000723,0.000194,0.098153,-0.000925,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000017,0.000242,0.000700,0.000700,0.000188,0.097263,-0.000890,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000016,0.000242,0.000599,0.000599,0.000182,0.096484,-0.000779,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000015,0.000243,0.000525,0.000525,0.000176,0.095790,-0.000695,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000014,0.000243,0.000445,0.000445,0.000170,0.095184,-0.000605,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000014,0.000243,0.000341,0.000341,0.000164,0.094689,-0.000495,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000013,0.000244,0.000200,0.000200,0.000158,0.094341,-0.000348,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000013,0.000244,0.000051,0.000051,0.000152,0.094144,-0.000197,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000013,0.000244,0.000000,0.000000,0.000147,0.094001,-0.000144,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000013,0.000245,0.000000,0.000000,0.000143,0.093859,-0.000142,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000012,0.000245,0.000000,0.000000,0.000138,0.093719,-0.000140,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000012,0.000246,0.000000,0.000000,0.000135,0.093581,-0.000138,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000012,0.000246,0.000000,0.000000,0.000131,0.093445,-0.000136,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000015,0.000012,0.000247,0.000000,0.000000,0.000127,0.093311,-0.000134,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000248,0.000000,0.000000,0.000124,0.093179,-0.000132,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000012,0.000248,0.000000,0.000000,0.000121,0.093048,-0.000130,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000249,0.000000,0.000000,0.000118,0.092920,-0.000129,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000011,0.000249,0.000000,0.000000,0.000116,0.092793,-0.000127,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000011,0.000250,0.000000,0.000000,0.000113,0.092668,-0.000125,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000251,0.000000,0.000000,0.000111,0.092545,-0.000123,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000251,0.000122,0.000000,0.000108,0.092423,-0.000121,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620854.csv b/test/channel_loss/channel_forcing/et/cat-2620854.csv new file mode 100644 index 000000000..317c2664f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620854.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000314,0.000003,0.000005,0.000003,0.000000,0.001456,0.000258,0.001459,0.000191,0.000191,0.010399,0.428939,-0.004722,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000062,0.000001,0.000000,0.000001,0.000000,0.001291,0.000255,0.001292,0.000057,0.000057,0.009363,0.424167,-0.004773,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000053,0.000001,0.000001,0.000001,0.000000,0.001152,0.000252,0.001153,0.000000,0.000000,0.008463,0.419504,-0.004663,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000053,0.000001,0.000001,0.000001,0.000000,0.001033,0.000248,0.001034,0.000000,0.000000,0.007678,0.414903,-0.004601,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000053,0.000001,0.000001,0.000001,0.000000,0.000931,0.000245,0.000933,0.000000,0.000000,0.006992,0.410362,-0.004540,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000062,0.000001,0.000001,0.000001,0.000000,0.000844,0.000242,0.000845,0.000000,0.000000,0.006390,0.405890,-0.004472,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000053,0.000001,0.000001,0.000001,0.000001,0.000768,0.000239,0.000770,0.000000,0.000000,0.005861,0.401469,-0.004421,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000702,0.000236,0.000704,0.000000,0.000000,0.005394,0.397054,-0.004415,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000645,0.000233,0.000646,0.000000,0.000000,0.004982,0.392697,-0.004357,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000595,0.000229,0.000596,0.000000,0.000000,0.004617,0.388398,-0.004299,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000550,0.000226,0.000552,0.000000,0.000000,0.004293,0.384156,-0.004242,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000511,0.000223,0.000513,0.000000,0.000000,0.004005,0.379970,-0.004186,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000477,0.000221,0.000479,0.000000,0.000000,0.003749,0.375838,-0.004131,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000446,0.000218,0.000449,0.000000,0.000000,0.003520,0.371762,-0.004077,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000419,0.000215,0.000423,0.000138,0.000138,0.003315,0.367603,-0.004159,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000395,0.000212,0.000399,0.000382,0.000382,0.003132,0.363259,-0.004345,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000373,0.000208,0.000378,0.000536,0.000536,0.002967,0.358819,-0.004440,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000354,0.000205,0.000359,0.000642,0.000642,0.002818,0.354333,-0.004486,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000336,0.000202,0.000342,0.000592,0.000592,0.002684,0.349956,-0.004377,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000131,0.000000,0.000000,0.000000,0.000006,0.000321,0.000199,0.000327,0.000550,0.000550,0.002562,0.345808,-0.004149,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000306,0.000196,0.000313,0.000469,0.000469,0.002452,0.341852,-0.003956,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000234,0.000000,0.000000,0.000000,0.000008,0.000293,0.000194,0.000301,0.000377,0.000377,0.002352,0.338082,-0.003769,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000282,0.000191,0.000290,0.000324,0.000324,0.002261,0.334372,-0.003711,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000214,0.000000,0.000000,0.000000,0.000009,0.000271,0.000188,0.000280,0.000256,0.000256,0.002179,0.330801,-0.003570,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000352,0.000006,0.000010,0.000006,0.000010,0.000261,0.000186,0.000277,0.000152,0.000152,0.002103,0.327507,-0.003294,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000890,0.000084,0.000148,0.000084,0.000011,0.000253,0.000184,0.000347,0.000064,0.000064,0.002034,0.324738,-0.002770,1.000000,0.000068 +26,2022-08-02 02:00:00,0.000837,0.000122,0.000151,0.000122,0.000012,0.000245,0.000182,0.000378,0.000000,0.000000,0.001972,0.322013,-0.002725,1.000000,0.000097 +27,2022-08-02 03:00:00,0.000780,0.000140,0.000132,0.000140,0.000012,0.000237,0.000180,0.000390,0.000000,0.000000,0.001914,0.319287,-0.002726,1.000000,0.000090 +28,2022-08-02 04:00:00,0.000862,0.000150,0.000158,0.000150,0.000013,0.000231,0.000178,0.000394,0.000000,0.000000,0.001862,0.316651,-0.002635,1.000000,0.000097 +29,2022-08-02 05:00:00,0.000760,0.000134,0.000125,0.000134,0.000014,0.000225,0.000176,0.000373,0.000000,0.000000,0.001814,0.313983,-0.002668,1.000000,0.000088 +30,2022-08-02 06:00:00,0.000705,0.000122,0.000108,0.000122,0.000015,0.000219,0.000174,0.000356,0.000000,0.000000,0.001769,0.311312,-0.002671,1.000000,0.000074 +31,2022-08-02 07:00:00,0.000000,0.000052,0.000000,0.000052,0.000016,0.000214,0.000172,0.000282,0.000000,0.000000,0.001728,0.308087,-0.003225,1.000000,0.000022 +32,2022-08-02 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000017,0.000209,0.000170,0.000247,0.000000,0.000000,0.001689,0.304905,-0.003182,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000204,0.000168,0.000222,0.000000,0.000000,0.001652,0.301765,-0.003140,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000200,0.000165,0.000219,0.000000,0.000000,0.001618,0.298666,-0.003099,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000196,0.000163,0.000216,0.000000,0.000000,0.001585,0.295608,-0.003058,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000192,0.000161,0.000213,0.000000,0.000000,0.001554,0.292590,-0.003018,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000188,0.000159,0.000210,0.000000,0.000000,0.001525,0.289613,-0.002978,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000185,0.000157,0.000208,0.000111,0.000111,0.001497,0.286565,-0.003048,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000181,0.000154,0.000205,0.000339,0.000339,0.001471,0.283332,-0.003233,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000178,0.000152,0.000203,0.000473,0.000473,0.001445,0.280009,-0.003323,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000175,0.000150,0.000201,0.000569,0.000569,0.001420,0.276636,-0.003373,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000253,0.000000,0.000000,0.000000,0.000028,0.000172,0.000147,0.000199,0.000661,0.000661,0.001395,0.273467,-0.003170,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000169,0.000145,0.000198,0.000615,0.000615,0.001371,0.270134,-0.003332,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000166,0.000143,0.000196,0.000520,0.000520,0.001348,0.266940,-0.003194,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000163,0.000141,0.000194,0.000486,0.000486,0.001326,0.263822,-0.003119,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000160,0.000138,0.000193,0.000413,0.000413,0.001304,0.260817,-0.003005,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000158,0.000136,0.000191,0.000318,0.000318,0.001282,0.257944,-0.002872,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000155,0.000134,0.000190,0.000190,0.000190,0.001262,0.255236,-0.002708,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000153,0.000133,0.000189,0.000042,0.000042,0.001242,0.252710,-0.002526,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000150,0.000131,0.000187,0.000000,0.000000,0.001222,0.250259,-0.002451,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000148,0.000129,0.000186,0.000000,0.000000,0.001204,0.247840,-0.002419,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000146,0.000127,0.000185,0.000000,0.000000,0.001186,0.245453,-0.002387,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000143,0.000126,0.000185,0.000000,0.000000,0.001168,0.243098,-0.002355,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000141,0.000124,0.000184,0.000000,0.000000,0.001151,0.240773,-0.002324,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000139,0.000122,0.000183,0.000000,0.000000,0.001134,0.238479,-0.002294,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000137,0.000121,0.000182,0.000000,0.000000,0.001118,0.236216,-0.002263,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000135,0.000119,0.000182,0.000000,0.000000,0.001102,0.233982,-0.002234,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000133,0.000118,0.000181,0.000000,0.000000,0.001086,0.231778,-0.002204,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000131,0.000116,0.000181,0.000000,0.000000,0.001071,0.229603,-0.002175,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000129,0.000115,0.000180,0.000000,0.000000,0.001056,0.227457,-0.002146,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000128,0.000113,0.000180,0.000000,0.000000,0.001042,0.225339,-0.002118,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000126,0.000111,0.000179,0.000135,0.000135,0.001027,0.223116,-0.002223,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000124,0.000110,0.000179,0.000389,0.000389,0.001013,0.220672,-0.002444,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000122,0.000108,0.000179,0.000539,0.000539,0.000998,0.218111,-0.002561,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000120,0.000106,0.000178,0.000643,0.000643,0.000984,0.215482,-0.002629,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000119,0.000104,0.000178,0.000662,0.000662,0.000969,0.212869,-0.002613,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000117,0.000102,0.000178,0.000619,0.000619,0.000955,0.210332,-0.002537,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000901,0.000015,0.000028,0.000015,0.000062,0.000115,0.000101,0.000193,0.000529,0.000529,0.000941,0.208780,-0.001552,1.000000,0.000012 +69,2022-08-03 21:00:00,0.000226,0.000007,0.000000,0.000007,0.000064,0.000113,0.000100,0.000184,0.000483,0.000483,0.000927,0.206655,-0.002126,1.000000,0.000006 +70,2022-08-03 22:00:00,0.000000,0.000006,0.000000,0.000006,0.000065,0.000112,0.000098,0.000182,0.000409,0.000409,0.000914,0.204408,-0.002247,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000110,0.000097,0.000177,0.000317,0.000317,0.000900,0.202281,-0.002127,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000108,0.000095,0.000176,0.000184,0.000184,0.000887,0.200314,-0.001967,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000107,0.000094,0.000176,0.000054,0.000054,0.000874,0.198501,-0.001813,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000105,0.000093,0.000176,0.000000,0.000000,0.000861,0.196766,-0.001736,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000104,0.000091,0.000176,0.000000,0.000000,0.000849,0.195053,-0.001713,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000102,0.000090,0.000176,0.000000,0.000000,0.000837,0.193363,-0.001690,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000101,0.000089,0.000176,0.000000,0.000000,0.000825,0.191695,-0.001668,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000099,0.000088,0.000176,0.000000,0.000000,0.000814,0.190049,-0.001646,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000098,0.000087,0.000177,0.000000,0.000000,0.000802,0.188425,-0.001624,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000097,0.000086,0.000177,0.000000,0.000000,0.000791,0.186822,-0.001603,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000095,0.000084,0.000177,0.000000,0.000000,0.000780,0.185240,-0.001582,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000094,0.000083,0.000177,0.000000,0.000000,0.000770,0.183680,-0.001561,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000093,0.000082,0.000177,0.000000,0.000000,0.000759,0.182139,-0.001540,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000091,0.000081,0.000178,0.000000,0.000000,0.000749,0.180620,-0.001520,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000090,0.000080,0.000178,0.000000,0.000000,0.000739,0.179120,-0.001500,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000089,0.000079,0.000178,0.000132,0.000132,0.000729,0.177510,-0.001610,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000088,0.000078,0.000179,0.000389,0.000389,0.000719,0.175668,-0.001843,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000086,0.000076,0.000179,0.000545,0.000545,0.000708,0.173696,-0.001972,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000085,0.000075,0.000179,0.000650,0.000650,0.000698,0.171646,-0.002050,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000084,0.000073,0.000179,0.000733,0.000733,0.000687,0.169541,-0.002105,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000083,0.000072,0.000180,0.000692,0.000692,0.000677,0.167505,-0.002036,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000081,0.000070,0.000180,0.000589,0.000589,0.000666,0.165597,-0.001908,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000080,0.000069,0.000180,0.000481,0.000481,0.000655,0.163821,-0.001776,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000079,0.000068,0.000180,0.000416,0.000416,0.000645,0.162132,-0.001689,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000077,0.000067,0.000181,0.000320,0.000320,0.000634,0.160560,-0.001572,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000076,0.000066,0.000181,0.000200,0.000200,0.000624,0.159128,-0.001432,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000012,0.000000,0.000000,0.000000,0.000106,0.000075,0.000065,0.000181,0.000068,0.000068,0.000614,0.157856,-0.001271,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000074,0.000064,0.000182,0.000000,0.000000,0.000604,0.156657,-0.001199,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000072,0.000063,0.000182,0.000000,0.000000,0.000595,0.155474,-0.001183,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000071,0.000062,0.000182,0.000000,0.000000,0.000586,0.154306,-0.001168,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000070,0.000062,0.000183,0.000000,0.000000,0.000577,0.153153,-0.001152,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000069,0.000061,0.000183,0.000000,0.000000,0.000569,0.152016,-0.001137,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000068,0.000060,0.000184,0.000000,0.000000,0.000560,0.150894,-0.001122,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000067,0.000059,0.000185,0.000000,0.000000,0.000552,0.149787,-0.001107,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000066,0.000058,0.000185,0.000000,0.000000,0.000544,0.148694,-0.001093,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000065,0.000058,0.000186,0.000000,0.000000,0.000537,0.147616,-0.001078,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000064,0.000057,0.000186,0.000000,0.000000,0.000529,0.146551,-0.001064,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000063,0.000056,0.000187,0.000000,0.000000,0.000522,0.145501,-0.001050,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000063,0.000055,0.000188,0.000000,0.000000,0.000514,0.144465,-0.001036,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000062,0.000054,0.000188,0.000141,0.000141,0.000507,0.143304,-0.001161,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000061,0.000053,0.000189,0.000383,0.000383,0.000500,0.141919,-0.001385,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000060,0.000052,0.000190,0.000537,0.000537,0.000492,0.140400,-0.001519,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000059,0.000051,0.000190,0.000646,0.000646,0.000485,0.138794,-0.001606,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000058,0.000050,0.000191,0.000625,0.000625,0.000477,0.137229,-0.001565,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000057,0.000049,0.000191,0.000581,0.000581,0.000469,0.135791,-0.001438,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000134,0.000000,0.000000,0.000000,0.000136,0.000056,0.000048,0.000192,0.000493,0.000493,0.000461,0.134529,-0.001262,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000055,0.000047,0.000193,0.000426,0.000426,0.000453,0.133279,-0.001249,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000054,0.000047,0.000193,0.000364,0.000364,0.000446,0.132170,-0.001109,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000205,0.000000,0.000000,0.000000,0.000141,0.000053,0.000046,0.000194,0.000283,0.000283,0.000438,0.131234,-0.000937,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000142,0.000052,0.000045,0.000194,0.000179,0.000179,0.000431,0.130334,-0.000899,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000688,0.000037,0.000067,0.000037,0.000144,0.000052,0.000045,0.000232,0.000067,0.000067,0.000425,0.130046,-0.000288,1.000000,0.000030 +122,2022-08-06 02:00:00,0.001303,0.000161,0.000262,0.000161,0.000145,0.000051,0.000045,0.000357,0.000000,0.000000,0.000419,0.130241,0.000195,1.000000,0.000131 +123,2022-08-06 03:00:00,0.000906,0.000153,0.000135,0.000153,0.000147,0.000050,0.000045,0.000350,0.000000,0.000000,0.000414,0.130167,-0.000074,1.000000,0.000113 +124,2022-08-06 04:00:00,0.000783,0.000143,0.000103,0.000143,0.000148,0.000050,0.000045,0.000340,0.000000,0.000000,0.000409,0.130004,-0.000162,1.000000,0.000073 +125,2022-08-06 05:00:00,0.000763,0.000106,0.000098,0.000106,0.000150,0.000049,0.000045,0.000305,0.000000,0.000000,0.000405,0.129829,-0.000176,1.000000,0.000065 +126,2022-08-06 06:00:00,0.000815,0.000106,0.000111,0.000106,0.000151,0.000049,0.000045,0.000306,0.000000,0.000000,0.000401,0.129695,-0.000134,1.000000,0.000069 +127,2022-08-06 07:00:00,0.000000,0.000047,0.000000,0.000047,0.000153,0.000048,0.000044,0.000248,0.000000,0.000000,0.000397,0.128867,-0.000828,1.000000,0.000022 +128,2022-08-06 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000154,0.000048,0.000044,0.000224,0.000000,0.000000,0.000393,0.128050,-0.000817,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000047,0.000043,0.000203,0.000000,0.000000,0.000388,0.127245,-0.000806,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000047,0.000042,0.000204,0.000000,0.000000,0.000384,0.126449,-0.000795,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000046,0.000042,0.000205,0.000000,0.000000,0.000380,0.125665,-0.000785,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000046,0.000041,0.000206,0.000000,0.000000,0.000376,0.124890,-0.000774,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000045,0.000041,0.000207,0.000000,0.000000,0.000371,0.124126,-0.000764,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000045,0.000040,0.000208,0.000127,0.000127,0.000367,0.123247,-0.000879,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000044,0.000039,0.000209,0.000374,0.000374,0.000362,0.122135,-0.001112,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000043,0.000038,0.000209,0.000528,0.000528,0.000357,0.120886,-0.001249,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000038,0.000210,0.000631,0.000631,0.000352,0.119552,-0.001334,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000037,0.000211,0.000710,0.000710,0.000347,0.118158,-0.001395,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000041,0.000036,0.000212,0.000675,0.000675,0.000341,0.116816,-0.001342,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000035,0.000213,0.000576,0.000576,0.000335,0.115591,-0.001226,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000040,0.000034,0.000213,0.000488,0.000488,0.000329,0.114468,-0.001123,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000039,0.000033,0.000214,0.000414,0.000414,0.000323,0.113433,-0.001035,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000215,0.000320,0.000320,0.000317,0.112504,-0.000929,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000038,0.000032,0.000215,0.000186,0.000186,0.000311,0.111721,-0.000784,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000037,0.000031,0.000216,0.000052,0.000052,0.000305,0.111079,-0.000642,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000031,0.000217,0.000000,0.000000,0.000300,0.110497,-0.000582,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000031,0.000218,0.000000,0.000000,0.000295,0.109923,-0.000574,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000035,0.000030,0.000219,0.000000,0.000000,0.000290,0.109356,-0.000567,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000030,0.000219,0.000000,0.000000,0.000285,0.108797,-0.000559,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000034,0.000029,0.000220,0.000000,0.000000,0.000281,0.108245,-0.000552,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000029,0.000221,0.000000,0.000000,0.000276,0.107701,-0.000544,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000029,0.000222,0.000000,0.000000,0.000272,0.107164,-0.000537,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000028,0.000223,0.000000,0.000000,0.000268,0.106634,-0.000530,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000028,0.000224,0.000000,0.000000,0.000264,0.106110,-0.000523,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000028,0.000225,0.000000,0.000000,0.000260,0.105594,-0.000516,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000027,0.000226,0.000000,0.000000,0.000256,0.105085,-0.000509,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000027,0.000226,0.000000,0.000000,0.000252,0.104582,-0.000503,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000026,0.000227,0.000122,0.000122,0.000248,0.103966,-0.000616,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000026,0.000228,0.000364,0.000364,0.000245,0.103118,-0.000847,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000025,0.000229,0.000519,0.000519,0.000241,0.102130,-0.000989,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000024,0.000230,0.000627,0.000627,0.000236,0.101047,-0.001083,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000701,0.000701,0.000232,0.099906,-0.001141,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000023,0.000231,0.000661,0.000661,0.000227,0.098819,-0.001087,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000027,0.000022,0.000232,0.000561,0.000561,0.000222,0.097845,-0.000974,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000021,0.000233,0.000501,0.000501,0.000217,0.096944,-0.000901,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000021,0.000234,0.000429,0.000429,0.000212,0.096125,-0.000818,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000020,0.000234,0.000314,0.000314,0.000207,0.095431,-0.000695,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000025,0.000020,0.000235,0.000169,0.000169,0.000203,0.094889,-0.000542,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000236,0.000019,0.000019,0.000198,0.094502,-0.000387,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000019,0.000237,0.000000,0.000000,0.000194,0.094139,-0.000363,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000000,0.000000,0.000190,0.093781,-0.000358,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000012,0.000000,0.000000,0.000000,0.000216,0.000023,0.000019,0.000238,0.000000,0.000000,0.000187,0.093440,-0.000341,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000055,0.000000,0.000001,0.000000,0.000217,0.000022,0.000019,0.000239,0.000000,0.000000,0.000183,0.093144,-0.000295,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000022,0.000018,0.000240,0.000000,0.000000,0.000180,0.092799,-0.000345,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000241,0.000000,0.000000,0.000176,0.092459,-0.000341,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000018,0.000242,0.000000,0.000000,0.000173,0.092123,-0.000336,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000018,0.000243,0.000000,0.000000,0.000170,0.091791,-0.000332,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000017,0.000244,0.000000,0.000000,0.000168,0.091464,-0.000327,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000017,0.000244,0.000000,0.000000,0.000165,0.091141,-0.000323,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000020,0.000017,0.000245,0.000000,0.000000,0.000162,0.090822,-0.000319,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000017,0.000246,0.000000,0.000000,0.000160,0.090508,-0.000314,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000017,0.000247,0.000106,0.000000,0.000157,0.090197,-0.000310,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000016,0.000248,0.000354,0.000000,0.000155,0.089891,-0.000306,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000016,0.000249,0.000514,0.000000,0.000153,0.089589,-0.000302,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000250,0.000620,0.000000,0.000150,0.089291,-0.000298,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000016,0.000251,0.000708,0.000000,0.000148,0.088997,-0.000294,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000015,0.000252,0.000668,0.000000,0.000146,0.088706,-0.000290,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000253,0.000562,0.000000,0.000144,0.088420,-0.000287,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000254,0.000510,0.000000,0.000142,0.088137,-0.000283,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000254,0.000433,0.000000,0.000140,0.087858,-0.000279,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000255,0.000333,0.000000,0.000138,0.087583,-0.000275,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000015,0.000256,0.000191,0.000000,0.000136,0.087311,-0.000272,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000043,0.000000,0.000134,0.087043,-0.000268,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000132,0.086778,-0.000265,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000130,0.086517,-0.000261,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000000,0.000000,0.000128,0.086260,-0.000258,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000014,0.000261,0.000000,0.000000,0.000127,0.086005,-0.000254,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000125,0.085754,-0.000251,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000123,0.085507,-0.000248,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000263,0.000000,0.000000,0.000122,0.085263,-0.000244,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000264,0.000000,0.000000,0.000120,0.085022,-0.000241,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000013,0.000265,0.000000,0.000000,0.000118,0.084784,-0.000238,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000013,0.000266,0.000000,0.000000,0.000117,0.084549,-0.000235,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000267,0.000000,0.000000,0.000115,0.084317,-0.000232,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000012,0.000268,0.000000,0.000000,0.000114,0.084089,-0.000229,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000014,0.000012,0.000269,0.000119,0.000000,0.000112,0.083863,-0.000226,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620855.csv b/test/channel_loss/channel_forcing/et/cat-2620855.csv new file mode 100644 index 000000000..09059cadf --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620855.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000266,0.000001,0.000002,0.000001,0.000000,0.001447,0.000196,0.001449,0.000190,0.000190,0.010345,0.428963,-0.004774,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000013,0.000001,0.000000,0.000001,0.000000,0.001275,0.000193,0.001276,0.000060,0.000060,0.009262,0.424133,-0.004831,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000011,0.000001,0.000000,0.000001,0.000000,0.001130,0.000191,0.001131,0.000000,0.000000,0.008323,0.419422,-0.004711,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001007,0.000188,0.001007,0.000000,0.000000,0.007504,0.414771,-0.004650,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.000902,0.000186,0.000902,0.000000,0.000000,0.006788,0.410181,-0.004591,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000013,0.000000,0.000000,0.000000,0.000000,0.000811,0.000183,0.000811,0.000000,0.000000,0.006161,0.405650,-0.004530,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000001,0.000733,0.000181,0.000733,0.000000,0.000000,0.005609,0.401177,-0.004473,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000665,0.000179,0.000665,0.000000,0.000000,0.005124,0.396750,-0.004427,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000605,0.000176,0.000606,0.000000,0.000000,0.004695,0.392380,-0.004370,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000553,0.000174,0.000555,0.000000,0.000000,0.004316,0.388066,-0.004314,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000508,0.000172,0.000510,0.000000,0.000000,0.003980,0.383807,-0.004259,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000468,0.000170,0.000470,0.000000,0.000000,0.003681,0.379603,-0.004204,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000433,0.000168,0.000435,0.000000,0.000000,0.003416,0.375453,-0.004150,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000401,0.000165,0.000404,0.000000,0.000000,0.003180,0.371357,-0.004096,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000374,0.000163,0.000377,0.000139,0.000139,0.002970,0.367176,-0.004181,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000349,0.000161,0.000353,0.000380,0.000380,0.002782,0.362811,-0.004365,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000327,0.000159,0.000332,0.000533,0.000533,0.002613,0.358351,-0.004460,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000308,0.000156,0.000313,0.000642,0.000642,0.002462,0.353841,-0.004510,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000290,0.000154,0.000296,0.000595,0.000595,0.002325,0.349435,-0.004406,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000274,0.000152,0.000281,0.000553,0.000553,0.002203,0.345252,-0.004183,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000187,0.000000,0.000000,0.000000,0.000007,0.000260,0.000150,0.000267,0.000470,0.000470,0.002092,0.341264,-0.003988,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000195,0.000000,0.000000,0.000000,0.000008,0.000247,0.000148,0.000255,0.000376,0.000376,0.001993,0.337427,-0.003837,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000236,0.000146,0.000244,0.000322,0.000322,0.001902,0.333689,-0.003738,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000225,0.000144,0.000235,0.000255,0.000255,0.001820,0.330065,-0.003624,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000967,0.000100,0.000182,0.000100,0.000010,0.000216,0.000142,0.000326,0.000153,0.000153,0.001747,0.327176,-0.002889,1.000000,0.000082 +25,2022-08-02 01:00:00,0.001277,0.000244,0.000361,0.000244,0.000011,0.000208,0.000141,0.000463,0.000066,0.000066,0.001680,0.324538,-0.002638,1.000000,0.000199 +26,2022-08-02 02:00:00,0.000775,0.000218,0.000165,0.000218,0.000012,0.000200,0.000139,0.000429,0.000000,0.000000,0.001619,0.321697,-0.002840,1.000000,0.000147 +27,2022-08-02 03:00:00,0.000657,0.000181,0.000122,0.000181,0.000013,0.000193,0.000138,0.000386,0.000000,0.000000,0.001564,0.318820,-0.002878,1.000000,0.000088 +28,2022-08-02 04:00:00,0.000704,0.000140,0.000138,0.000140,0.000013,0.000187,0.000136,0.000340,0.000000,0.000000,0.001513,0.316010,-0.002810,1.000000,0.000087 +29,2022-08-02 05:00:00,0.000651,0.000125,0.000119,0.000125,0.000014,0.000181,0.000135,0.000320,0.000000,0.000000,0.001467,0.313203,-0.002807,1.000000,0.000081 +30,2022-08-02 06:00:00,0.000546,0.000105,0.000086,0.000105,0.000015,0.000176,0.000133,0.000296,0.000000,0.000000,0.001425,0.310360,-0.002842,1.000000,0.000063 +31,2022-08-02 07:00:00,0.000000,0.000045,0.000000,0.000045,0.000016,0.000171,0.000132,0.000232,0.000000,0.000000,0.001386,0.307100,-0.003260,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000017,0.000166,0.000130,0.000201,0.000000,0.000000,0.001350,0.303882,-0.003218,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000162,0.000128,0.000180,0.000000,0.000000,0.001316,0.300706,-0.003177,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000158,0.000127,0.000177,0.000000,0.000000,0.001285,0.297570,-0.003136,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000154,0.000125,0.000175,0.000000,0.000000,0.001256,0.294475,-0.003095,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000151,0.000123,0.000172,0.000000,0.000000,0.001228,0.291419,-0.003056,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000148,0.000122,0.000170,0.000000,0.000000,0.001202,0.288403,-0.003016,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000145,0.000120,0.000168,0.000112,0.000112,0.001178,0.285315,-0.003089,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000142,0.000118,0.000166,0.000336,0.000336,0.001155,0.282045,-0.003269,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000139,0.000117,0.000165,0.000470,0.000470,0.001132,0.278686,-0.003360,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000136,0.000115,0.000163,0.000570,0.000570,0.001111,0.275270,-0.003415,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000213,0.000000,0.000000,0.000000,0.000028,0.000134,0.000113,0.000162,0.000665,0.000665,0.001090,0.272015,-0.003255,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000131,0.000111,0.000161,0.000621,0.000621,0.001071,0.268635,-0.003380,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000129,0.000110,0.000159,0.000522,0.000522,0.001051,0.265397,-0.003238,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000127,0.000108,0.000158,0.000485,0.000485,0.001033,0.262236,-0.003161,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000124,0.000106,0.000157,0.000411,0.000411,0.001015,0.259189,-0.003047,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000122,0.000105,0.000156,0.000318,0.000318,0.000998,0.256273,-0.002915,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000120,0.000103,0.000156,0.000191,0.000191,0.000981,0.253520,-0.002753,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000118,0.000102,0.000155,0.000044,0.000044,0.000965,0.250947,-0.002573,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000116,0.000101,0.000154,0.000000,0.000000,0.000950,0.248451,-0.002496,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000114,0.000099,0.000154,0.000000,0.000000,0.000935,0.245987,-0.002464,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000113,0.000098,0.000153,0.000000,0.000000,0.000920,0.243555,-0.002432,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000111,0.000097,0.000153,0.000000,0.000000,0.000906,0.241154,-0.002401,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000109,0.000096,0.000153,0.000000,0.000000,0.000893,0.238783,-0.002370,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000108,0.000094,0.000152,0.000000,0.000000,0.000880,0.236444,-0.002340,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000106,0.000093,0.000152,0.000000,0.000000,0.000867,0.234134,-0.002310,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000104,0.000092,0.000152,0.000000,0.000000,0.000855,0.231854,-0.002280,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000103,0.000091,0.000152,0.000000,0.000000,0.000843,0.229603,-0.002251,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000102,0.000090,0.000152,0.000000,0.000000,0.000831,0.227382,-0.002222,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000100,0.000089,0.000152,0.000000,0.000000,0.000819,0.225188,-0.002193,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000099,0.000087,0.000152,0.000000,0.000000,0.000808,0.223023,-0.002165,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000097,0.000086,0.000152,0.000135,0.000135,0.000797,0.220753,-0.002271,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000096,0.000085,0.000152,0.000384,0.000384,0.000786,0.218265,-0.002487,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000095,0.000084,0.000152,0.000534,0.000534,0.000775,0.215662,-0.002603,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000093,0.000082,0.000152,0.000640,0.000640,0.000764,0.212988,-0.002675,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000092,0.000081,0.000152,0.000662,0.000662,0.000753,0.210326,-0.002662,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000090,0.000079,0.000152,0.000619,0.000619,0.000741,0.207741,-0.002585,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000844,0.000014,0.000026,0.000014,0.000063,0.000089,0.000079,0.000167,0.000531,0.000531,0.000731,0.206083,-0.001658,1.000000,0.000012 +69,2022-08-03 21:00:00,0.000171,0.000006,0.000000,0.000006,0.000065,0.000088,0.000077,0.000159,0.000482,0.000482,0.000720,0.203856,-0.002227,1.000000,0.000005 +70,2022-08-03 22:00:00,0.000000,0.000005,0.000000,0.000005,0.000066,0.000087,0.000076,0.000158,0.000404,0.000404,0.000710,0.201567,-0.002290,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000085,0.000075,0.000153,0.000312,0.000312,0.000699,0.199397,-0.002170,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000084,0.000074,0.000154,0.000183,0.000183,0.000689,0.197383,-0.002014,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000083,0.000073,0.000154,0.000057,0.000057,0.000679,0.195519,-0.001864,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000082,0.000072,0.000154,0.000000,0.000000,0.000670,0.193736,-0.001784,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000081,0.000071,0.000155,0.000000,0.000000,0.000660,0.191975,-0.001761,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000079,0.000070,0.000155,0.000000,0.000000,0.000651,0.190237,-0.001738,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000078,0.000069,0.000155,0.000000,0.000000,0.000642,0.188521,-0.001716,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000077,0.000068,0.000156,0.000000,0.000000,0.000633,0.186827,-0.001694,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000076,0.000068,0.000156,0.000000,0.000000,0.000625,0.185155,-0.001672,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000075,0.000067,0.000157,0.000000,0.000000,0.000616,0.183505,-0.001650,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000074,0.000066,0.000157,0.000000,0.000000,0.000608,0.181876,-0.001629,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000073,0.000065,0.000158,0.000000,0.000000,0.000600,0.180268,-0.001608,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000072,0.000064,0.000159,0.000000,0.000000,0.000592,0.178680,-0.001588,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000071,0.000063,0.000159,0.000000,0.000000,0.000584,0.177113,-0.001567,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000070,0.000062,0.000160,0.000000,0.000000,0.000576,0.175566,-0.001547,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000069,0.000062,0.000161,0.000133,0.000133,0.000569,0.173907,-0.001659,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000068,0.000061,0.000161,0.000384,0.000384,0.000561,0.172022,-0.001885,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000067,0.000060,0.000162,0.000539,0.000539,0.000553,0.170009,-0.002014,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000066,0.000058,0.000162,0.000648,0.000648,0.000545,0.167913,-0.002096,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000065,0.000057,0.000163,0.000734,0.000734,0.000537,0.165760,-0.002153,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000064,0.000056,0.000164,0.000686,0.000686,0.000529,0.163681,-0.002078,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000063,0.000055,0.000164,0.000590,0.000590,0.000521,0.161725,-0.001957,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000062,0.000054,0.000165,0.000479,0.000479,0.000513,0.159902,-0.001822,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000061,0.000053,0.000165,0.000413,0.000413,0.000505,0.158169,-0.001734,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000060,0.000052,0.000166,0.000318,0.000318,0.000497,0.156551,-0.001617,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000059,0.000052,0.000167,0.000200,0.000200,0.000489,0.155071,-0.001480,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000074,0.000000,0.000000,0.000000,0.000109,0.000059,0.000051,0.000167,0.000071,0.000071,0.000481,0.153809,-0.001261,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000010,0.000000,0.000000,0.000000,0.000111,0.000058,0.000050,0.000168,0.000000,0.000000,0.000474,0.152571,-0.001238,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000112,0.000057,0.000050,0.000169,0.000000,0.000000,0.000467,0.151349,-0.001222,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000010,0.000000,0.000000,0.000000,0.000114,0.000056,0.000049,0.000170,0.000000,0.000000,0.000460,0.150143,-0.001206,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000010,0.000000,0.000000,0.000000,0.000115,0.000055,0.000048,0.000171,0.000000,0.000000,0.000454,0.148952,-0.001191,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000010,0.000000,0.000000,0.000000,0.000117,0.000054,0.000048,0.000171,0.000000,0.000000,0.000447,0.147777,-0.001176,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000054,0.000047,0.000172,0.000000,0.000000,0.000441,0.146607,-0.001170,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000053,0.000047,0.000173,0.000000,0.000000,0.000435,0.145452,-0.001155,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000052,0.000046,0.000174,0.000000,0.000000,0.000429,0.144312,-0.001140,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000051,0.000045,0.000175,0.000000,0.000000,0.000423,0.143186,-0.001125,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000051,0.000045,0.000176,0.000000,0.000000,0.000417,0.142075,-0.001111,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000050,0.000044,0.000177,0.000000,0.000000,0.000411,0.140979,-0.001097,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000049,0.000044,0.000177,0.000000,0.000000,0.000406,0.139896,-0.001083,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000049,0.000043,0.000178,0.000142,0.000142,0.000400,0.138687,-0.001209,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000048,0.000042,0.000179,0.000379,0.000379,0.000394,0.137260,-0.001427,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000047,0.000042,0.000180,0.000530,0.000530,0.000389,0.135702,-0.001558,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000047,0.000041,0.000181,0.000643,0.000643,0.000383,0.134053,-0.001649,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000046,0.000040,0.000182,0.000623,0.000623,0.000377,0.132445,-0.001608,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000045,0.000039,0.000183,0.000582,0.000582,0.000371,0.130960,-0.001485,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000260,0.000000,0.000000,0.000000,0.000139,0.000044,0.000038,0.000184,0.000495,0.000495,0.000365,0.129774,-0.001186,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000044,0.000038,0.000185,0.000428,0.000428,0.000359,0.128475,-0.001299,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000104,0.000000,0.000000,0.000000,0.000143,0.000043,0.000037,0.000185,0.000363,0.000363,0.000353,0.127297,-0.001178,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000174,0.000000,0.000000,0.000000,0.000144,0.000042,0.000037,0.000186,0.000280,0.000280,0.000348,0.126285,-0.001012,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000104,0.000000,0.000000,0.000000,0.000146,0.000042,0.000036,0.000187,0.000180,0.000180,0.000342,0.125316,-0.000969,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000661,0.000043,0.000078,0.000043,0.000147,0.000041,0.000036,0.000231,0.000070,0.000070,0.000337,0.124942,-0.000374,1.000000,0.000035 +122,2022-08-06 02:00:00,0.001021,0.000136,0.000212,0.000136,0.000149,0.000040,0.000036,0.000325,0.000000,0.000000,0.000333,0.124865,-0.000077,1.000000,0.000111 +123,2022-08-06 03:00:00,0.000732,0.000132,0.000115,0.000132,0.000150,0.000040,0.000036,0.000322,0.000000,0.000000,0.000328,0.124598,-0.000267,1.000000,0.000094 +124,2022-08-06 04:00:00,0.000600,0.000115,0.000080,0.000115,0.000152,0.000039,0.000035,0.000307,0.000000,0.000000,0.000324,0.124239,-0.000358,1.000000,0.000059 +125,2022-08-06 05:00:00,0.000592,0.000086,0.000078,0.000086,0.000154,0.000039,0.000035,0.000278,0.000000,0.000000,0.000321,0.123879,-0.000360,1.000000,0.000051 +126,2022-08-06 06:00:00,0.000680,0.000091,0.000101,0.000091,0.000155,0.000039,0.000035,0.000284,0.000000,0.000000,0.000317,0.123588,-0.000291,1.000000,0.000061 +127,2022-08-06 07:00:00,0.000000,0.000041,0.000000,0.000041,0.000157,0.000038,0.000035,0.000236,0.000000,0.000000,0.000314,0.122729,-0.000859,1.000000,0.000020 +128,2022-08-06 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000158,0.000038,0.000034,0.000216,0.000000,0.000000,0.000311,0.121881,-0.000848,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000037,0.000034,0.000197,0.000000,0.000000,0.000307,0.121044,-0.000837,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000037,0.000033,0.000198,0.000000,0.000000,0.000304,0.120218,-0.000826,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000036,0.000033,0.000199,0.000000,0.000000,0.000300,0.119402,-0.000816,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000036,0.000033,0.000200,0.000000,0.000000,0.000297,0.118597,-0.000805,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000032,0.000202,0.000000,0.000000,0.000293,0.117802,-0.000795,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000035,0.000032,0.000203,0.000128,0.000128,0.000290,0.116891,-0.000911,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000031,0.000204,0.000370,0.000370,0.000286,0.115753,-0.001138,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000034,0.000030,0.000205,0.000523,0.000523,0.000282,0.114478,-0.001275,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000034,0.000030,0.000206,0.000630,0.000630,0.000278,0.113115,-0.001363,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000033,0.000029,0.000207,0.000708,0.000708,0.000274,0.111692,-0.001423,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000033,0.000028,0.000208,0.000678,0.000678,0.000269,0.110317,-0.001375,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000032,0.000027,0.000209,0.000579,0.000579,0.000265,0.109057,-0.001260,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000032,0.000027,0.000210,0.000484,0.000484,0.000260,0.107907,-0.001150,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000031,0.000026,0.000211,0.000411,0.000411,0.000255,0.106844,-0.001063,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000026,0.000211,0.000316,0.000316,0.000251,0.105888,-0.000955,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000030,0.000025,0.000212,0.000185,0.000185,0.000246,0.105074,-0.000814,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000029,0.000025,0.000213,0.000055,0.000055,0.000242,0.104398,-0.000676,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000029,0.000025,0.000214,0.000000,0.000000,0.000238,0.103786,-0.000612,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000024,0.000215,0.000000,0.000000,0.000234,0.103181,-0.000605,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000024,0.000216,0.000000,0.000000,0.000230,0.102585,-0.000597,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000024,0.000217,0.000000,0.000000,0.000227,0.101996,-0.000589,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000023,0.000218,0.000000,0.000000,0.000223,0.101414,-0.000582,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000023,0.000219,0.000000,0.000000,0.000220,0.100840,-0.000574,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000023,0.000221,0.000000,0.000000,0.000216,0.100273,-0.000567,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000026,0.000023,0.000222,0.000000,0.000000,0.000213,0.099714,-0.000559,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000022,0.000223,0.000000,0.000000,0.000210,0.099162,-0.000552,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000022,0.000224,0.000000,0.000000,0.000207,0.098617,-0.000545,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000025,0.000022,0.000225,0.000000,0.000000,0.000204,0.098079,-0.000538,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000021,0.000226,0.000000,0.000000,0.000201,0.097547,-0.000531,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000021,0.000227,0.000123,0.000123,0.000198,0.096902,-0.000645,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000024,0.000021,0.000228,0.000361,0.000361,0.000195,0.096030,-0.000872,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000023,0.000020,0.000229,0.000515,0.000515,0.000192,0.095016,-0.001013,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000020,0.000230,0.000627,0.000627,0.000189,0.093906,-0.001111,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000022,0.000019,0.000231,0.000701,0.000000,0.000185,0.093428,-0.000478,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000019,0.000232,0.000667,0.000000,0.000182,0.092957,-0.000471,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000019,0.000233,0.000565,0.000000,0.000179,0.092491,-0.000465,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000019,0.000234,0.000500,0.000000,0.000177,0.092032,-0.000459,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000018,0.000235,0.000427,0.000000,0.000174,0.091579,-0.000453,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000021,0.000018,0.000236,0.000310,0.000000,0.000171,0.091131,-0.000448,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000018,0.000237,0.000169,0.000000,0.000169,0.090689,-0.000442,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000018,0.000238,0.000022,0.000000,0.000166,0.090253,-0.000436,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000002,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000239,0.000000,0.000000,0.000164,0.089824,-0.000429,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000240,0.000000,0.000000,0.000161,0.089399,-0.000425,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000058,0.000000,0.000001,0.000000,0.000222,0.000019,0.000017,0.000242,0.000000,0.000000,0.000159,0.089036,-0.000363,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000174,0.000004,0.000007,0.000004,0.000223,0.000019,0.000017,0.000246,0.000000,0.000000,0.000157,0.088786,-0.000250,1.000000,0.000003 +174,2022-08-08 06:00:00,0.000000,0.000002,0.000000,0.000002,0.000225,0.000019,0.000017,0.000245,0.000000,0.000000,0.000155,0.088375,-0.000412,1.000000,0.000001 +175,2022-08-08 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000226,0.000018,0.000016,0.000246,0.000000,0.000000,0.000153,0.087968,-0.000406,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000016,0.000246,0.000000,0.000000,0.000151,0.087567,-0.000401,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000016,0.000247,0.000000,0.000000,0.000149,0.087171,-0.000396,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000016,0.000248,0.000000,0.000000,0.000147,0.086780,-0.000391,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000016,0.000249,0.000000,0.000000,0.000145,0.086394,-0.000386,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000017,0.000015,0.000250,0.000000,0.000000,0.000143,0.086013,-0.000381,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000015,0.000251,0.000000,0.000000,0.000141,0.085637,-0.000376,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000252,0.000107,0.000000,0.000139,0.085266,-0.000371,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000253,0.000350,0.000000,0.000137,0.084899,-0.000366,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000016,0.000015,0.000254,0.000508,0.000000,0.000135,0.084538,-0.000362,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000619,0.000000,0.000134,0.084180,-0.000357,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000707,0.000000,0.000132,0.083828,-0.000353,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000672,0.000000,0.000130,0.083480,-0.000348,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000570,0.000000,0.000129,0.083136,-0.000344,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000014,0.000259,0.000511,0.000000,0.000127,0.082797,-0.000339,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000014,0.000260,0.000433,0.000000,0.000125,0.082462,-0.000335,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000332,0.000000,0.000124,0.082132,-0.000330,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000192,0.000000,0.000122,0.081806,-0.000326,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000046,0.000000,0.000120,0.081484,-0.000322,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000013,0.000264,0.000000,0.000000,0.000119,0.081166,-0.000318,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000013,0.000265,0.000000,0.000000,0.000117,0.080852,-0.000314,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000013,0.000266,0.000000,0.000000,0.000116,0.080542,-0.000310,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000267,0.000000,0.000000,0.000114,0.080237,-0.000306,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000012,0.000268,0.000000,0.000000,0.000113,0.079935,-0.000302,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000013,0.000012,0.000269,0.000000,0.000000,0.000111,0.079637,-0.000298,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000013,0.000012,0.000270,0.000000,0.000000,0.000110,0.079343,-0.000294,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000013,0.000012,0.000271,0.000000,0.000000,0.000109,0.079052,-0.000290,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000013,0.000012,0.000272,0.000000,0.000000,0.000107,0.078766,-0.000287,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000013,0.000011,0.000273,0.000000,0.000000,0.000106,0.078483,-0.000283,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000013,0.000011,0.000274,0.000000,0.000000,0.000104,0.078204,-0.000279,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000012,0.000011,0.000275,0.000000,0.000000,0.000103,0.077928,-0.000276,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000012,0.000011,0.000276,0.000120,0.000000,0.000102,0.077656,-0.000272,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620856.csv b/test/channel_loss/channel_forcing/et/cat-2620856.csv new file mode 100644 index 000000000..5a5d5bc28 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620856.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000274,0.000001,0.000002,0.000001,0.000000,0.001464,0.000316,0.001465,0.000197,0.000197,0.010448,0.428873,-0.004789,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000052,0.000000,0.000000,0.000000,0.000000,0.001305,0.000311,0.001306,0.000064,0.000064,0.009454,0.424062,-0.004811,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000046,0.000001,0.000001,0.000001,0.000000,0.001171,0.000307,0.001172,0.000000,0.000000,0.008590,0.419372,-0.004690,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000048,0.000000,0.000001,0.000000,0.000000,0.001057,0.000303,0.001057,0.000000,0.000000,0.007837,0.414748,-0.004625,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000055,0.000001,0.000001,0.000001,0.000000,0.000959,0.000299,0.000960,0.000000,0.000000,0.007177,0.410191,-0.004556,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000061,0.000001,0.000001,0.000001,0.000000,0.000874,0.000295,0.000875,0.000000,0.000000,0.006599,0.405702,-0.004489,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000061,0.000001,0.000001,0.000001,0.000001,0.000801,0.000291,0.000802,0.000000,0.000000,0.006089,0.401274,-0.004429,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000287,0.000738,0.000000,0.000000,0.005640,0.396845,-0.004428,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000681,0.000283,0.000682,0.000000,0.000000,0.005242,0.392476,-0.004369,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000632,0.000280,0.000633,0.000000,0.000000,0.004890,0.388166,-0.004310,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000589,0.000276,0.000591,0.000000,0.000000,0.004577,0.383914,-0.004252,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000551,0.000272,0.000553,0.000000,0.000000,0.004298,0.379719,-0.004195,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000517,0.000269,0.000520,0.000000,0.000000,0.004049,0.375581,-0.004139,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000487,0.000265,0.000490,0.000000,0.000000,0.003827,0.371498,-0.004083,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000261,0.000464,0.000142,0.000142,0.003627,0.367330,-0.004168,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000257,0.000441,0.000380,0.000380,0.003448,0.362982,-0.004347,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000415,0.000253,0.000420,0.000537,0.000537,0.003286,0.358539,-0.004443,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000396,0.000249,0.000401,0.000655,0.000655,0.003140,0.354039,-0.004500,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000379,0.000246,0.000384,0.000615,0.000615,0.003007,0.349640,-0.004400,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000124,0.000000,0.000000,0.000000,0.000006,0.000363,0.000242,0.000369,0.000575,0.000575,0.002886,0.345461,-0.004179,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000137,0.000000,0.000000,0.000000,0.000007,0.000348,0.000238,0.000355,0.000485,0.000485,0.002776,0.341440,-0.004021,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000232,0.000000,0.000000,0.000000,0.000008,0.000335,0.000235,0.000343,0.000380,0.000380,0.002675,0.337669,-0.003771,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000156,0.000000,0.000000,0.000000,0.000008,0.000323,0.000232,0.000332,0.000329,0.000329,0.002584,0.333925,-0.003744,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000378,0.000002,0.000003,0.000002,0.000009,0.000313,0.000229,0.000323,0.000259,0.000259,0.002500,0.330516,-0.003409,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000683,0.000030,0.000054,0.000030,0.000010,0.000303,0.000226,0.000343,0.000157,0.000157,0.002423,0.327505,-0.003011,1.000000,0.000025 +25,2022-08-02 01:00:00,0.001066,0.000110,0.000175,0.000110,0.000011,0.000294,0.000224,0.000414,0.000071,0.000071,0.002353,0.324877,-0.002628,1.000000,0.000089 +26,2022-08-02 02:00:00,0.000807,0.000120,0.000119,0.000120,0.000011,0.000285,0.000221,0.000416,0.000000,0.000000,0.002289,0.322156,-0.002722,1.000000,0.000088 +27,2022-08-02 03:00:00,0.000710,0.000116,0.000093,0.000116,0.000012,0.000278,0.000219,0.000406,0.000000,0.000000,0.002230,0.319399,-0.002756,1.000000,0.000066 +28,2022-08-02 04:00:00,0.000787,0.000109,0.000112,0.000109,0.000013,0.000271,0.000216,0.000393,0.000000,0.000000,0.002176,0.316738,-0.002662,1.000000,0.000069 +29,2022-08-02 05:00:00,0.000645,0.000089,0.000077,0.000089,0.000014,0.000264,0.000214,0.000367,0.000000,0.000000,0.002126,0.314006,-0.002732,1.000000,0.000057 +30,2022-08-02 06:00:00,0.000644,0.000084,0.000076,0.000084,0.000015,0.000258,0.000212,0.000357,0.000000,0.000000,0.002079,0.311311,-0.002695,1.000000,0.000050 +31,2022-08-02 07:00:00,0.000000,0.000035,0.000000,0.000035,0.000016,0.000253,0.000209,0.000303,0.000000,0.000000,0.002035,0.308092,-0.003219,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000017,0.000248,0.000206,0.000280,0.000000,0.000000,0.001994,0.304917,-0.003176,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000243,0.000203,0.000260,0.000000,0.000000,0.001954,0.301784,-0.003133,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000238,0.000201,0.000256,0.000000,0.000000,0.001917,0.298693,-0.003091,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000233,0.000198,0.000253,0.000000,0.000000,0.001882,0.295644,-0.003049,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000229,0.000195,0.000250,0.000000,0.000000,0.001848,0.292636,-0.003008,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000225,0.000193,0.000247,0.000000,0.000000,0.001816,0.289668,-0.002968,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000221,0.000190,0.000244,0.000118,0.000118,0.001785,0.286624,-0.003044,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000217,0.000187,0.000241,0.000334,0.000334,0.001755,0.283407,-0.003216,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000213,0.000184,0.000238,0.000470,0.000470,0.001725,0.280099,-0.003308,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000210,0.000181,0.000236,0.000579,0.000579,0.001697,0.276729,-0.003371,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000197,0.000000,0.000000,0.000000,0.000027,0.000206,0.000178,0.000234,0.000670,0.000670,0.001669,0.273508,-0.003221,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000203,0.000175,0.000231,0.000630,0.000630,0.001641,0.270176,-0.003332,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000199,0.000173,0.000229,0.000535,0.000535,0.001614,0.266982,-0.003194,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000196,0.000170,0.000227,0.000490,0.000490,0.001588,0.263876,-0.003106,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000193,0.000167,0.000225,0.000421,0.000421,0.001562,0.260879,-0.002997,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000190,0.000165,0.000223,0.000328,0.000328,0.001537,0.258015,-0.002864,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000187,0.000162,0.000221,0.000198,0.000198,0.001513,0.255317,-0.002698,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000184,0.000160,0.000219,0.000050,0.000050,0.001489,0.252801,-0.002516,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000181,0.000158,0.000218,0.000000,0.000000,0.001466,0.250369,-0.002432,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000178,0.000156,0.000216,0.000000,0.000000,0.001444,0.247969,-0.002400,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000175,0.000154,0.000215,0.000000,0.000000,0.001422,0.245602,-0.002367,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000173,0.000152,0.000213,0.000000,0.000000,0.001401,0.243267,-0.002335,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000170,0.000149,0.000212,0.000000,0.000000,0.001381,0.240962,-0.002304,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000167,0.000147,0.000211,0.000000,0.000000,0.001361,0.238689,-0.002273,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000165,0.000146,0.000210,0.000000,0.000000,0.001341,0.236447,-0.002243,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000163,0.000144,0.000209,0.000000,0.000000,0.001322,0.234234,-0.002212,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000160,0.000142,0.000208,0.000000,0.000000,0.001304,0.232052,-0.002183,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000158,0.000140,0.000207,0.000000,0.000000,0.001285,0.229899,-0.002153,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000156,0.000138,0.000206,0.000000,0.000000,0.001267,0.227774,-0.002124,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000154,0.000136,0.000205,0.000000,0.000000,0.001250,0.225678,-0.002096,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000151,0.000134,0.000204,0.000139,0.000139,0.001232,0.223474,-0.002205,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000149,0.000132,0.000204,0.000385,0.000385,0.001215,0.221056,-0.002417,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000147,0.000130,0.000203,0.000538,0.000538,0.001198,0.218520,-0.002536,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000145,0.000127,0.000202,0.000656,0.000656,0.001180,0.215902,-0.002618,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000143,0.000125,0.000201,0.000681,0.000681,0.001162,0.213293,-0.002608,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000140,0.000123,0.000200,0.000641,0.000641,0.001145,0.210760,-0.002533,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001020,0.000020,0.000036,0.000020,0.000061,0.000138,0.000122,0.000219,0.000550,0.000550,0.001128,0.209321,-0.001439,1.000000,0.000016 +69,2022-08-03 21:00:00,0.000181,0.000009,0.000000,0.000009,0.000063,0.000136,0.000120,0.000208,0.000495,0.000495,0.001111,0.207163,-0.002157,1.000000,0.000007 +70,2022-08-03 22:00:00,0.000000,0.000007,0.000000,0.000007,0.000064,0.000134,0.000118,0.000206,0.000417,0.000417,0.001095,0.204933,-0.002230,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000132,0.000116,0.000198,0.000323,0.000323,0.001078,0.202826,-0.002107,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000130,0.000114,0.000197,0.000193,0.000193,0.001062,0.200875,-0.001951,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000128,0.000112,0.000197,0.000064,0.000064,0.001046,0.199078,-0.001797,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000126,0.000111,0.000196,0.000000,0.000000,0.001031,0.197368,-0.001710,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000124,0.000109,0.000196,0.000000,0.000000,0.001016,0.195681,-0.001687,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000123,0.000108,0.000196,0.000000,0.000000,0.001001,0.194017,-0.001664,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000121,0.000107,0.000195,0.000000,0.000000,0.000987,0.192375,-0.001642,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000119,0.000105,0.000195,0.000000,0.000000,0.000973,0.190755,-0.001620,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000117,0.000104,0.000195,0.000000,0.000000,0.000959,0.189157,-0.001598,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000116,0.000102,0.000195,0.000000,0.000000,0.000946,0.187580,-0.001577,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000114,0.000101,0.000195,0.000000,0.000000,0.000933,0.186025,-0.001555,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000113,0.000100,0.000195,0.000000,0.000000,0.000920,0.184490,-0.001535,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000111,0.000098,0.000194,0.000000,0.000000,0.000907,0.182976,-0.001514,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000109,0.000097,0.000194,0.000000,0.000000,0.000894,0.181483,-0.001494,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000108,0.000096,0.000194,0.000000,0.000000,0.000882,0.180009,-0.001473,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000106,0.000094,0.000194,0.000136,0.000136,0.000870,0.178421,-0.001588,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000105,0.000093,0.000194,0.000383,0.000383,0.000858,0.176611,-0.001810,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000091,0.000194,0.000542,0.000542,0.000845,0.174669,-0.001943,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000102,0.000089,0.000194,0.000661,0.000661,0.000833,0.172634,-0.002034,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000100,0.000087,0.000194,0.000758,0.000758,0.000820,0.170532,-0.002102,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000099,0.000085,0.000194,0.000705,0.000705,0.000807,0.168511,-0.002021,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000097,0.000084,0.000194,0.000607,0.000607,0.000794,0.166613,-0.001898,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000095,0.000082,0.000194,0.000495,0.000495,0.000780,0.164851,-0.001762,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000094,0.000081,0.000194,0.000427,0.000427,0.000767,0.163180,-0.001671,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000092,0.000079,0.000194,0.000331,0.000331,0.000755,0.161626,-0.001554,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000091,0.000078,0.000194,0.000207,0.000207,0.000742,0.160215,-0.001411,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000034,0.000000,0.000000,0.000000,0.000105,0.000089,0.000077,0.000194,0.000078,0.000078,0.000730,0.158984,-0.001231,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000106,0.000088,0.000076,0.000194,0.000000,0.000000,0.000718,0.157814,-0.001170,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000108,0.000086,0.000075,0.000194,0.000000,0.000000,0.000707,0.156660,-0.001154,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000110,0.000085,0.000074,0.000194,0.000000,0.000000,0.000696,0.155521,-0.001139,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000111,0.000084,0.000073,0.000195,0.000000,0.000000,0.000686,0.154398,-0.001124,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000113,0.000082,0.000072,0.000195,0.000000,0.000000,0.000675,0.153289,-0.001108,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000081,0.000071,0.000195,0.000000,0.000000,0.000665,0.152195,-0.001094,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000080,0.000070,0.000196,0.000000,0.000000,0.000655,0.151115,-0.001080,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000079,0.000069,0.000196,0.000000,0.000000,0.000646,0.150050,-0.001065,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000078,0.000068,0.000196,0.000000,0.000000,0.000636,0.148999,-0.001051,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000076,0.000067,0.000197,0.000000,0.000000,0.000627,0.147962,-0.001037,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000075,0.000066,0.000197,0.000000,0.000000,0.000618,0.146939,-0.001023,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000074,0.000065,0.000198,0.000000,0.000000,0.000609,0.145930,-0.001009,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000073,0.000064,0.000198,0.000145,0.000145,0.000601,0.144792,-0.001139,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000072,0.000063,0.000198,0.000382,0.000382,0.000592,0.143435,-0.001357,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000071,0.000062,0.000199,0.000535,0.000535,0.000583,0.141946,-0.001490,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000070,0.000061,0.000199,0.000656,0.000656,0.000574,0.140357,-0.001589,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000069,0.000059,0.000200,0.000642,0.000642,0.000564,0.138803,-0.001554,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000067,0.000058,0.000200,0.000598,0.000598,0.000555,0.137376,-0.001427,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000134,0.000066,0.000057,0.000200,0.000503,0.000503,0.000545,0.136186,-0.001190,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000065,0.000000,0.000000,0.000000,0.000135,0.000065,0.000056,0.000201,0.000440,0.000440,0.000536,0.134951,-0.001234,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000123,0.000000,0.000000,0.000000,0.000137,0.000064,0.000055,0.000201,0.000373,0.000373,0.000526,0.133858,-0.001094,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000175,0.000000,0.000000,0.000000,0.000138,0.000063,0.000054,0.000201,0.000290,0.000290,0.000517,0.132910,-0.000947,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000160,0.000000,0.000000,0.000000,0.000140,0.000062,0.000053,0.000202,0.000186,0.000186,0.000509,0.132065,-0.000846,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000969,0.000061,0.000110,0.000061,0.000141,0.000061,0.000053,0.000263,0.000075,0.000075,0.000501,0.132029,-0.000036,1.000000,0.000050 +122,2022-08-06 02:00:00,0.001126,0.000121,0.000170,0.000121,0.000143,0.000060,0.000053,0.000324,0.000000,0.000000,0.000494,0.132164,0.000135,1.000000,0.000098 +123,2022-08-06 03:00:00,0.000810,0.000115,0.000092,0.000115,0.000144,0.000059,0.000053,0.000319,0.000000,0.000000,0.000488,0.132063,-0.000101,1.000000,0.000075 +124,2022-08-06 04:00:00,0.000654,0.000090,0.000061,0.000090,0.000146,0.000059,0.000053,0.000295,0.000000,0.000000,0.000482,0.131839,-0.000224,1.000000,0.000046 +125,2022-08-06 05:00:00,0.000651,0.000067,0.000060,0.000067,0.000147,0.000058,0.000053,0.000272,0.000000,0.000000,0.000477,0.131616,-0.000224,1.000000,0.000039 +126,2022-08-06 06:00:00,0.000731,0.000069,0.000075,0.000069,0.000149,0.000057,0.000053,0.000275,0.000000,0.000000,0.000472,0.131459,-0.000157,1.000000,0.000046 +127,2022-08-06 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000150,0.000057,0.000052,0.000238,0.000000,0.000000,0.000468,0.130658,-0.000801,1.000000,0.000015 +128,2022-08-06 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000152,0.000056,0.000051,0.000223,0.000000,0.000000,0.000463,0.129868,-0.000790,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000056,0.000051,0.000209,0.000000,0.000000,0.000458,0.129088,-0.000780,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000055,0.000050,0.000210,0.000000,0.000000,0.000452,0.128319,-0.000769,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000054,0.000049,0.000210,0.000000,0.000000,0.000447,0.127561,-0.000759,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000054,0.000049,0.000211,0.000000,0.000000,0.000442,0.126812,-0.000749,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000053,0.000048,0.000212,0.000000,0.000000,0.000437,0.126074,-0.000738,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000047,0.000213,0.000131,0.000131,0.000432,0.125216,-0.000858,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000052,0.000046,0.000214,0.000372,0.000372,0.000426,0.124132,-0.001084,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000051,0.000045,0.000214,0.000529,0.000529,0.000420,0.122907,-0.001225,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000050,0.000044,0.000215,0.000643,0.000643,0.000414,0.121587,-0.001320,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000049,0.000043,0.000216,0.000727,0.000727,0.000407,0.120201,-0.001385,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000049,0.000042,0.000216,0.000695,0.000695,0.000400,0.118866,-0.001335,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000040,0.000217,0.000596,0.000596,0.000393,0.117647,-0.001220,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000047,0.000039,0.000217,0.000497,0.000497,0.000385,0.116541,-0.001106,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000218,0.000424,0.000424,0.000378,0.115522,-0.001019,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000038,0.000218,0.000325,0.000325,0.000371,0.114614,-0.000908,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000037,0.000219,0.000195,0.000195,0.000364,0.113847,-0.000767,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000037,0.000219,0.000061,0.000061,0.000357,0.113223,-0.000624,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000043,0.000036,0.000220,0.000000,0.000000,0.000351,0.112667,-0.000556,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000036,0.000221,0.000000,0.000000,0.000344,0.112119,-0.000548,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000035,0.000221,0.000000,0.000000,0.000338,0.111578,-0.000541,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000035,0.000222,0.000000,0.000000,0.000333,0.111044,-0.000534,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000034,0.000223,0.000000,0.000000,0.000327,0.110518,-0.000526,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000034,0.000223,0.000000,0.000000,0.000322,0.109998,-0.000519,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000224,0.000000,0.000000,0.000317,0.109486,-0.000512,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000038,0.000033,0.000225,0.000000,0.000000,0.000312,0.108980,-0.000506,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000037,0.000032,0.000226,0.000000,0.000000,0.000307,0.108482,-0.000499,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000032,0.000226,0.000000,0.000000,0.000302,0.107990,-0.000492,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000031,0.000227,0.000000,0.000000,0.000297,0.107504,-0.000485,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000036,0.000031,0.000228,0.000000,0.000000,0.000293,0.107025,-0.000479,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000035,0.000031,0.000229,0.000125,0.000125,0.000289,0.106429,-0.000596,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000030,0.000230,0.000362,0.000362,0.000284,0.105607,-0.000822,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000029,0.000230,0.000520,0.000520,0.000279,0.104640,-0.000967,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000028,0.000231,0.000641,0.000641,0.000274,0.103568,-0.001073,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000033,0.000027,0.000232,0.000720,0.000720,0.000268,0.102432,-0.001136,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000026,0.000232,0.000685,0.000685,0.000263,0.101345,-0.001086,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000233,0.000579,0.000579,0.000257,0.100378,-0.000968,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000024,0.000233,0.000513,0.000513,0.000251,0.099488,-0.000890,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000024,0.000234,0.000440,0.000440,0.000245,0.098683,-0.000805,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000023,0.000234,0.000324,0.000324,0.000239,0.098003,-0.000680,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000235,0.000180,0.000180,0.000233,0.097475,-0.000528,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000022,0.000236,0.000028,0.000028,0.000228,0.097103,-0.000372,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000236,0.000000,0.000000,0.000223,0.096764,-0.000339,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000022,0.000237,0.000000,0.000000,0.000218,0.096429,-0.000334,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000031,0.000000,0.000000,0.000000,0.000212,0.000026,0.000021,0.000238,0.000000,0.000000,0.000214,0.096129,-0.000300,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000076,0.000001,0.000001,0.000001,0.000213,0.000025,0.000021,0.000239,0.000000,0.000000,0.000210,0.095877,-0.000252,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000206,0.095554,-0.000323,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000021,0.000240,0.000000,0.000000,0.000202,0.095236,-0.000318,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000241,0.000000,0.000000,0.000198,0.094922,-0.000314,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000242,0.000000,0.000000,0.000195,0.094612,-0.000310,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000242,0.000000,0.000000,0.000191,0.094307,-0.000306,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000188,0.094005,-0.000301,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000244,0.000000,0.000000,0.000185,0.093708,-0.000297,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000000,0.000000,0.000182,0.093415,-0.000293,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000019,0.000246,0.000109,0.000000,0.000179,0.093125,-0.000289,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000019,0.000246,0.000351,0.000000,0.000176,0.092839,-0.000286,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000018,0.000247,0.000512,0.000000,0.000174,0.092558,-0.000282,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000018,0.000248,0.000630,0.000000,0.000171,0.092280,-0.000278,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000018,0.000249,0.000724,0.000000,0.000168,0.092006,-0.000274,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000018,0.000250,0.000696,0.000000,0.000166,0.091735,-0.000271,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000017,0.000251,0.000593,0.000000,0.000163,0.091468,-0.000267,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000017,0.000251,0.000525,0.000000,0.000161,0.091205,-0.000263,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000017,0.000252,0.000446,0.000000,0.000159,0.090945,-0.000260,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000017,0.000253,0.000344,0.000000,0.000156,0.090689,-0.000256,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000016,0.000254,0.000201,0.000000,0.000154,0.090436,-0.000253,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000255,0.000052,0.000000,0.000152,0.090187,-0.000249,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000256,0.000000,0.000000,0.000150,0.089941,-0.000246,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000256,0.000000,0.000000,0.000148,0.089698,-0.000243,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000018,0.000016,0.000257,0.000000,0.000000,0.000145,0.089458,-0.000239,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000258,0.000000,0.000000,0.000143,0.089222,-0.000236,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000000,0.000000,0.000141,0.088989,-0.000233,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000260,0.000000,0.000000,0.000139,0.088759,-0.000230,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000017,0.000015,0.000261,0.000000,0.000000,0.000138,0.088532,-0.000227,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000015,0.000261,0.000000,0.000000,0.000136,0.088308,-0.000224,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000134,0.088087,-0.000221,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000263,0.000000,0.000000,0.000132,0.087870,-0.000218,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000264,0.000000,0.000000,0.000130,0.087655,-0.000215,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000016,0.000014,0.000265,0.000000,0.000000,0.000128,0.087443,-0.000212,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000014,0.000265,0.000123,0.000000,0.000127,0.087234,-0.000209,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620857.csv b/test/channel_loss/channel_forcing/et/cat-2620857.csv new file mode 100644 index 000000000..e457730bb --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620857.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001453,0.000237,0.001456,0.000191,0.000191,0.010380,0.428942,-0.004720,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000063,0.000001,0.000000,0.000001,0.000000,0.001286,0.000234,0.001287,0.000058,0.000058,0.009328,0.424171,-0.004771,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000063,0.000002,0.000001,0.000002,0.000000,0.001144,0.000231,0.001146,0.000000,0.000000,0.008415,0.419519,-0.004652,1.000000,0.000001 +3,2022-08-01 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.001024,0.000228,0.001025,0.000000,0.000000,0.007618,0.414928,-0.004591,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.000921,0.000225,0.000923,0.000000,0.000000,0.006922,0.410397,-0.004531,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000063,0.000001,0.000001,0.000001,0.000000,0.000833,0.000222,0.000834,0.000000,0.000000,0.006311,0.405925,-0.004472,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000063,0.000001,0.000001,0.000001,0.000001,0.000756,0.000219,0.000758,0.000000,0.000000,0.005774,0.401512,-0.004413,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000001,0.000689,0.000216,0.000691,0.000000,0.000000,0.005301,0.397095,-0.004416,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000631,0.000213,0.000633,0.000000,0.000000,0.004883,0.392737,-0.004359,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000580,0.000210,0.000582,0.000000,0.000000,0.004513,0.388435,-0.004302,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000536,0.000208,0.000537,0.000000,0.000000,0.004186,0.384190,-0.004245,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000496,0.000205,0.000499,0.000000,0.000000,0.003894,0.380000,-0.004190,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000462,0.000202,0.000464,0.000000,0.000000,0.003635,0.375865,-0.004135,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000431,0.000200,0.000434,0.000000,0.000000,0.003404,0.371784,-0.004081,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000404,0.000197,0.000407,0.000139,0.000139,0.003197,0.367620,-0.004164,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000379,0.000194,0.000383,0.000381,0.000381,0.003012,0.363271,-0.004349,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000357,0.000191,0.000362,0.000533,0.000533,0.002846,0.358829,-0.004442,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000338,0.000188,0.000343,0.000640,0.000640,0.002696,0.354340,-0.004489,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000320,0.000186,0.000326,0.000593,0.000593,0.002561,0.349956,-0.004385,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000127,0.000000,0.000000,0.000000,0.000006,0.000305,0.000183,0.000311,0.000551,0.000551,0.002439,0.345795,-0.004160,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000007,0.000290,0.000180,0.000298,0.000469,0.000469,0.002329,0.341832,-0.003963,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000269,0.000000,0.000000,0.000000,0.000008,0.000278,0.000178,0.000285,0.000377,0.000377,0.002229,0.338090,-0.003742,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000189,0.000000,0.000000,0.000000,0.000008,0.000266,0.000175,0.000274,0.000325,0.000325,0.002138,0.334370,-0.003720,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000248,0.000000,0.000000,0.000000,0.000009,0.000255,0.000173,0.000265,0.000257,0.000257,0.002056,0.330823,-0.003547,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000385,0.000008,0.000014,0.000008,0.000010,0.000246,0.000171,0.000264,0.000155,0.000155,0.001981,0.327545,-0.003278,1.000000,0.000006 +25,2022-08-02 01:00:00,0.000977,0.000108,0.000190,0.000108,0.000011,0.000237,0.000169,0.000356,0.000067,0.000067,0.001913,0.324808,-0.002737,1.000000,0.000088 +26,2022-08-02 02:00:00,0.000904,0.000153,0.000186,0.000153,0.000012,0.000229,0.000167,0.000394,0.000000,0.000000,0.001851,0.322104,-0.002704,1.000000,0.000122 +27,2022-08-02 03:00:00,0.000777,0.000162,0.000141,0.000162,0.000012,0.000222,0.000166,0.000397,0.000000,0.000000,0.001795,0.319355,-0.002750,1.000000,0.000101 +28,2022-08-02 04:00:00,0.000887,0.000171,0.000179,0.000171,0.000013,0.000216,0.000164,0.000400,0.000000,0.000000,0.001743,0.316713,-0.002642,1.000000,0.000109 +29,2022-08-02 05:00:00,0.000729,0.000141,0.000125,0.000141,0.000014,0.000210,0.000162,0.000365,0.000000,0.000000,0.001695,0.314002,-0.002710,1.000000,0.000092 +30,2022-08-02 06:00:00,0.000714,0.000133,0.000120,0.000133,0.000015,0.000204,0.000160,0.000352,0.000000,0.000000,0.001652,0.311318,-0.002684,1.000000,0.000079 +31,2022-08-02 07:00:00,0.000000,0.000055,0.000000,0.000055,0.000016,0.000199,0.000158,0.000270,0.000000,0.000000,0.001611,0.308082,-0.003236,1.000000,0.000024 +32,2022-08-02 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000017,0.000194,0.000156,0.000235,0.000000,0.000000,0.001573,0.304889,-0.003193,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000190,0.000154,0.000208,0.000000,0.000000,0.001538,0.301737,-0.003152,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000186,0.000152,0.000204,0.000000,0.000000,0.001504,0.298627,-0.003110,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000182,0.000150,0.000202,0.000000,0.000000,0.001473,0.295557,-0.003070,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000178,0.000148,0.000199,0.000000,0.000000,0.001443,0.292528,-0.003029,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000174,0.000146,0.000196,0.000000,0.000000,0.001415,0.289538,-0.002990,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000171,0.000144,0.000194,0.000113,0.000113,0.001389,0.286476,-0.003062,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000168,0.000142,0.000192,0.000335,0.000335,0.001363,0.283235,-0.003241,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000165,0.000140,0.000190,0.000467,0.000467,0.001338,0.279906,-0.003329,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000162,0.000138,0.000188,0.000564,0.000564,0.001315,0.276525,-0.003381,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000269,0.000000,0.000000,0.000000,0.000028,0.000159,0.000136,0.000187,0.000656,0.000656,0.001292,0.273364,-0.003162,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000156,0.000134,0.000185,0.000611,0.000611,0.001269,0.270022,-0.003342,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000153,0.000132,0.000183,0.000517,0.000517,0.001247,0.266817,-0.003205,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000151,0.000130,0.000182,0.000484,0.000484,0.001226,0.263686,-0.003131,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000148,0.000128,0.000181,0.000412,0.000412,0.001206,0.260668,-0.003019,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000146,0.000126,0.000179,0.000320,0.000320,0.001186,0.257780,-0.002888,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000143,0.000124,0.000178,0.000192,0.000192,0.001167,0.255056,-0.002724,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000141,0.000122,0.000177,0.000044,0.000044,0.001148,0.252513,-0.002543,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000139,0.000121,0.000176,0.000000,0.000000,0.001130,0.250047,-0.002466,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000136,0.000119,0.000175,0.000000,0.000000,0.001113,0.247613,-0.002434,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000134,0.000118,0.000175,0.000000,0.000000,0.001096,0.245212,-0.002402,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000132,0.000116,0.000174,0.000000,0.000000,0.001079,0.242841,-0.002370,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000130,0.000114,0.000173,0.000000,0.000000,0.001063,0.240502,-0.002339,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000128,0.000113,0.000173,0.000000,0.000000,0.001048,0.238193,-0.002309,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000127,0.000111,0.000172,0.000000,0.000000,0.001033,0.235915,-0.002278,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000125,0.000110,0.000172,0.000000,0.000000,0.001018,0.233666,-0.002249,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000123,0.000109,0.000171,0.000000,0.000000,0.001004,0.231447,-0.002219,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000121,0.000107,0.000171,0.000000,0.000000,0.000990,0.229257,-0.002190,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000120,0.000106,0.000171,0.000000,0.000000,0.000976,0.227095,-0.002161,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000118,0.000104,0.000170,0.000000,0.000000,0.000963,0.224962,-0.002133,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000116,0.000103,0.000170,0.000135,0.000135,0.000949,0.222723,-0.002239,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000115,0.000101,0.000170,0.000385,0.000385,0.000936,0.220267,-0.002456,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000113,0.000100,0.000170,0.000535,0.000535,0.000923,0.217696,-0.002571,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000111,0.000098,0.000169,0.000641,0.000641,0.000910,0.215053,-0.002643,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000110,0.000096,0.000169,0.000664,0.000664,0.000896,0.212422,-0.002630,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000108,0.000095,0.000169,0.000620,0.000620,0.000883,0.209869,-0.002553,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001116,0.000039,0.000071,0.000039,0.000063,0.000106,0.000094,0.000208,0.000530,0.000530,0.000870,0.208469,-0.001400,1.000000,0.000032 +69,2022-08-03 21:00:00,0.000340,0.000018,0.000000,0.000018,0.000064,0.000105,0.000092,0.000187,0.000484,0.000484,0.000858,0.206437,-0.002032,1.000000,0.000014 +70,2022-08-03 22:00:00,0.000000,0.000014,0.000000,0.000014,0.000065,0.000103,0.000091,0.000183,0.000410,0.000410,0.000845,0.204170,-0.002267,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000102,0.000089,0.000169,0.000319,0.000319,0.000833,0.202021,-0.002148,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000100,0.000088,0.000169,0.000187,0.000187,0.000821,0.200032,-0.001989,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000099,0.000087,0.000169,0.000056,0.000056,0.000809,0.198198,-0.001835,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000097,0.000086,0.000169,0.000000,0.000000,0.000798,0.196443,-0.001755,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000096,0.000085,0.000169,0.000000,0.000000,0.000786,0.194711,-0.001732,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000095,0.000084,0.000169,0.000000,0.000000,0.000775,0.193002,-0.001709,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000093,0.000083,0.000169,0.000000,0.000000,0.000764,0.191315,-0.001687,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000092,0.000081,0.000170,0.000000,0.000000,0.000754,0.189650,-0.001665,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000091,0.000080,0.000170,0.000000,0.000000,0.000744,0.188007,-0.001643,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000089,0.000079,0.000170,0.000000,0.000000,0.000733,0.186385,-0.001621,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000088,0.000078,0.000170,0.000000,0.000000,0.000723,0.184785,-0.001600,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000087,0.000077,0.000171,0.000000,0.000000,0.000714,0.183206,-0.001579,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000086,0.000076,0.000171,0.000000,0.000000,0.000704,0.181647,-0.001559,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000085,0.000075,0.000172,0.000000,0.000000,0.000695,0.180109,-0.001538,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000084,0.000074,0.000172,0.000000,0.000000,0.000685,0.178591,-0.001518,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000082,0.000073,0.000172,0.000133,0.000133,0.000676,0.176961,-0.001630,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000081,0.000072,0.000173,0.000385,0.000385,0.000667,0.175104,-0.001857,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000080,0.000071,0.000173,0.000539,0.000539,0.000657,0.173119,-0.001985,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000079,0.000069,0.000174,0.000647,0.000647,0.000648,0.171054,-0.002065,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000078,0.000068,0.000174,0.000736,0.000736,0.000638,0.168927,-0.002126,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000077,0.000067,0.000174,0.000695,0.000695,0.000628,0.166870,-0.002058,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000075,0.000065,0.000175,0.000591,0.000591,0.000618,0.164941,-0.001928,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000074,0.000064,0.000175,0.000483,0.000483,0.000608,0.163145,-0.001796,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000073,0.000063,0.000175,0.000419,0.000419,0.000599,0.161436,-0.001709,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000072,0.000062,0.000176,0.000325,0.000325,0.000589,0.159842,-0.001594,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000071,0.000061,0.000176,0.000202,0.000202,0.000580,0.158390,-0.001452,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000069,0.000060,0.000177,0.000071,0.000071,0.000570,0.157086,-0.001304,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000068,0.000060,0.000177,0.000000,0.000000,0.000562,0.155869,-0.001217,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000067,0.000059,0.000178,0.000000,0.000000,0.000553,0.154668,-0.001201,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000066,0.000058,0.000178,0.000000,0.000000,0.000545,0.153483,-0.001185,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000065,0.000057,0.000179,0.000000,0.000000,0.000537,0.152314,-0.001170,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000064,0.000056,0.000179,0.000000,0.000000,0.000529,0.151160,-0.001154,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000063,0.000056,0.000180,0.000000,0.000000,0.000521,0.150020,-0.001139,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000062,0.000055,0.000181,0.000000,0.000000,0.000514,0.148896,-0.001124,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000062,0.000054,0.000181,0.000000,0.000000,0.000506,0.147787,-0.001109,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000061,0.000054,0.000182,0.000000,0.000000,0.000499,0.146692,-0.001095,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000060,0.000053,0.000183,0.000000,0.000000,0.000492,0.145611,-0.001081,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000059,0.000052,0.000184,0.000000,0.000000,0.000485,0.144545,-0.001066,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000058,0.000051,0.000184,0.000000,0.000000,0.000479,0.143492,-0.001053,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000057,0.000051,0.000185,0.000141,0.000141,0.000472,0.142314,-0.001178,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000057,0.000050,0.000186,0.000381,0.000381,0.000465,0.140915,-0.001399,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000056,0.000049,0.000187,0.000532,0.000532,0.000458,0.139385,-0.001530,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000055,0.000048,0.000187,0.000645,0.000645,0.000451,0.137763,-0.001621,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000054,0.000047,0.000188,0.000626,0.000626,0.000444,0.136182,-0.001582,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000053,0.000046,0.000189,0.000582,0.000582,0.000437,0.134727,-0.001455,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000118,0.000000,0.000000,0.000000,0.000137,0.000052,0.000045,0.000189,0.000492,0.000492,0.000430,0.133433,-0.001294,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000051,0.000044,0.000190,0.000427,0.000427,0.000422,0.132167,-0.001266,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000050,0.000043,0.000191,0.000364,0.000364,0.000415,0.131042,-0.001125,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000217,0.000000,0.000000,0.000000,0.000142,0.000050,0.000043,0.000191,0.000285,0.000285,0.000409,0.130098,-0.000944,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000143,0.000049,0.000042,0.000192,0.000180,0.000180,0.000402,0.129182,-0.000916,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000899,0.000068,0.000124,0.000068,0.000145,0.000048,0.000042,0.000261,0.000069,0.000069,0.000396,0.129027,-0.000154,1.000000,0.000056 +122,2022-08-06 02:00:00,0.001373,0.000201,0.000309,0.000201,0.000146,0.000047,0.000042,0.000394,0.000000,0.000000,0.000391,0.129229,0.000201,1.000000,0.000164 +123,2022-08-06 03:00:00,0.000936,0.000187,0.000155,0.000187,0.000148,0.000047,0.000042,0.000382,0.000000,0.000000,0.000386,0.129148,-0.000080,1.000000,0.000131 +124,2022-08-06 04:00:00,0.000728,0.000154,0.000097,0.000154,0.000149,0.000046,0.000042,0.000349,0.000000,0.000000,0.000382,0.128920,-0.000228,1.000000,0.000075 +125,2022-08-06 05:00:00,0.000747,0.000111,0.000102,0.000111,0.000151,0.000046,0.000042,0.000308,0.000000,0.000000,0.000378,0.128709,-0.000211,1.000000,0.000065 +126,2022-08-06 06:00:00,0.000825,0.000112,0.000122,0.000112,0.000152,0.000045,0.000042,0.000310,0.000000,0.000000,0.000374,0.128557,-0.000152,1.000000,0.000075 +127,2022-08-06 07:00:00,0.000000,0.000051,0.000000,0.000051,0.000154,0.000045,0.000041,0.000250,0.000000,0.000000,0.000370,0.127713,-0.000843,1.000000,0.000024 +128,2022-08-06 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000155,0.000045,0.000041,0.000224,0.000000,0.000000,0.000367,0.126881,-0.000832,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000044,0.000040,0.000201,0.000000,0.000000,0.000363,0.126060,-0.000821,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000044,0.000040,0.000202,0.000000,0.000000,0.000359,0.125249,-0.000811,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000043,0.000039,0.000203,0.000000,0.000000,0.000355,0.124449,-0.000800,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000043,0.000039,0.000204,0.000000,0.000000,0.000351,0.123660,-0.000789,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000042,0.000038,0.000205,0.000000,0.000000,0.000347,0.122881,-0.000779,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000042,0.000038,0.000206,0.000128,0.000128,0.000343,0.121986,-0.000895,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000041,0.000037,0.000207,0.000372,0.000372,0.000339,0.120861,-0.001124,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000041,0.000036,0.000208,0.000524,0.000524,0.000334,0.119602,-0.001260,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000040,0.000035,0.000209,0.000629,0.000629,0.000329,0.118255,-0.001347,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000034,0.000210,0.000711,0.000711,0.000324,0.116845,-0.001410,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000039,0.000033,0.000211,0.000676,0.000676,0.000319,0.115488,-0.001357,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000038,0.000033,0.000211,0.000575,0.000575,0.000313,0.114248,-0.001240,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000037,0.000032,0.000212,0.000489,0.000489,0.000308,0.113110,-0.001138,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000037,0.000031,0.000213,0.000416,0.000416,0.000302,0.112058,-0.001051,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000036,0.000030,0.000214,0.000323,0.000323,0.000297,0.111113,-0.000946,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000035,0.000030,0.000215,0.000189,0.000189,0.000291,0.110311,-0.000802,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000035,0.000030,0.000215,0.000055,0.000055,0.000286,0.109653,-0.000658,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000034,0.000029,0.000216,0.000000,0.000000,0.000281,0.109057,-0.000596,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000034,0.000029,0.000217,0.000000,0.000000,0.000276,0.108469,-0.000588,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000033,0.000028,0.000218,0.000000,0.000000,0.000272,0.107889,-0.000580,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000028,0.000219,0.000000,0.000000,0.000267,0.107316,-0.000573,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000028,0.000220,0.000000,0.000000,0.000263,0.106751,-0.000565,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000027,0.000221,0.000000,0.000000,0.000259,0.106193,-0.000558,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000031,0.000027,0.000222,0.000000,0.000000,0.000255,0.105643,-0.000550,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000030,0.000027,0.000223,0.000000,0.000000,0.000251,0.105099,-0.000543,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000026,0.000224,0.000000,0.000000,0.000247,0.104563,-0.000536,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000026,0.000225,0.000000,0.000000,0.000244,0.104034,-0.000529,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000026,0.000225,0.000000,0.000000,0.000240,0.103512,-0.000522,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000025,0.000226,0.000000,0.000000,0.000237,0.102997,-0.000515,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000025,0.000227,0.000122,0.000122,0.000233,0.102367,-0.000629,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000024,0.000228,0.000362,0.000362,0.000230,0.101510,-0.000857,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000024,0.000229,0.000515,0.000515,0.000226,0.100513,-0.000997,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000023,0.000230,0.000627,0.000627,0.000222,0.099418,-0.001094,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000231,0.000703,0.000703,0.000218,0.098263,-0.001155,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000663,0.000663,0.000213,0.097163,-0.001101,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000233,0.000562,0.000562,0.000209,0.096176,-0.000987,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000020,0.000233,0.000502,0.000502,0.000204,0.095261,-0.000915,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000234,0.000431,0.000431,0.000200,0.094428,-0.000833,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000019,0.000235,0.000318,0.000318,0.000195,0.093718,-0.000710,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000171,0.000000,0.000191,0.093331,-0.000387,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000021,0.000000,0.000187,0.092949,-0.000382,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000018,0.000237,0.000000,0.000000,0.000183,0.092572,-0.000377,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000018,0.000238,0.000000,0.000000,0.000180,0.092199,-0.000372,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000176,0.091832,-0.000367,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000035,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000000,0.000000,0.000173,0.091504,-0.000328,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000021,0.000018,0.000241,0.000000,0.000000,0.000170,0.091146,-0.000358,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000017,0.000242,0.000000,0.000000,0.000167,0.090793,-0.000353,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000017,0.000243,0.000000,0.000000,0.000164,0.090444,-0.000349,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000017,0.000244,0.000000,0.000000,0.000162,0.090100,-0.000344,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000017,0.000245,0.000000,0.000000,0.000159,0.089760,-0.000340,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000019,0.000016,0.000246,0.000000,0.000000,0.000156,0.089424,-0.000335,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000016,0.000247,0.000000,0.000000,0.000154,0.089093,-0.000331,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000018,0.000016,0.000248,0.000000,0.000000,0.000152,0.088767,-0.000327,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000018,0.000016,0.000249,0.000107,0.000000,0.000149,0.088445,-0.000322,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000249,0.000351,0.000000,0.000147,0.088126,-0.000318,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000015,0.000250,0.000508,0.000000,0.000145,0.087812,-0.000314,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000015,0.000251,0.000618,0.000000,0.000143,0.087503,-0.000310,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000252,0.000708,0.000000,0.000141,0.087197,-0.000306,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000253,0.000672,0.000000,0.000139,0.086895,-0.000302,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000254,0.000564,0.000000,0.000137,0.086597,-0.000298,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000510,0.000000,0.000135,0.086303,-0.000294,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000435,0.000000,0.000133,0.086013,-0.000290,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000336,0.000000,0.000131,0.085727,-0.000286,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000193,0.000000,0.000129,0.085444,-0.000283,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000014,0.000259,0.000045,0.000000,0.000127,0.085166,-0.000279,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000260,0.000000,0.000000,0.000126,0.084890,-0.000275,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000000,0.000000,0.000124,0.084619,-0.000272,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000122,0.084351,-0.000268,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000121,0.084086,-0.000265,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000013,0.000264,0.000000,0.000000,0.000119,0.083825,-0.000261,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000013,0.000265,0.000000,0.000000,0.000117,0.083568,-0.000258,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000012,0.000265,0.000000,0.000000,0.000116,0.083313,-0.000254,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000266,0.000000,0.000000,0.000114,0.083062,-0.000251,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000012,0.000267,0.000000,0.000000,0.000113,0.082815,-0.000248,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000013,0.000012,0.000268,0.000000,0.000000,0.000111,0.082570,-0.000244,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000013,0.000012,0.000269,0.000000,0.000000,0.000110,0.082329,-0.000241,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000013,0.000012,0.000270,0.000000,0.000000,0.000108,0.082091,-0.000238,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000013,0.000011,0.000271,0.000120,0.000000,0.000107,0.081856,-0.000235,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620858.csv b/test/channel_loss/channel_forcing/et/cat-2620858.csv new file mode 100644 index 000000000..663cb15f2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620858.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000248,0.000000,0.000000,0.000000,0.000000,0.001482,0.000442,0.001482,0.000197,0.000197,0.010557,0.428519,-0.004892,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001337,0.000435,0.001337,0.000061,0.000061,0.009655,0.423585,-0.004934,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001214,0.000429,0.001214,0.000000,0.000000,0.008870,0.418779,-0.004806,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001109,0.000423,0.001109,0.000000,0.000000,0.008184,0.414041,-0.004739,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001019,0.000417,0.001019,0.000000,0.000000,0.007583,0.409368,-0.004673,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000940,0.000412,0.000941,0.000000,0.000000,0.007054,0.404761,-0.004607,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000872,0.000406,0.000873,0.000000,0.000000,0.006588,0.400217,-0.004543,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000813,0.000400,0.000814,0.000000,0.000000,0.006175,0.395738,-0.004480,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000395,0.000762,0.000000,0.000000,0.005809,0.391320,-0.004418,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000715,0.000389,0.000716,0.000000,0.000000,0.005484,0.386964,-0.004356,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000674,0.000384,0.000676,0.000000,0.000000,0.005193,0.382669,-0.004295,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000638,0.000378,0.000640,0.000000,0.000000,0.004933,0.378433,-0.004235,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000606,0.000373,0.000609,0.000000,0.000000,0.004701,0.374257,-0.004176,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000577,0.000368,0.000580,0.000000,0.000000,0.004491,0.370139,-0.004118,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000552,0.000363,0.000555,0.000146,0.000146,0.004302,0.365934,-0.004205,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000528,0.000357,0.000532,0.000395,0.000395,0.004131,0.361542,-0.004392,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000507,0.000351,0.000512,0.000554,0.000554,0.003975,0.357054,-0.004488,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000488,0.000346,0.000493,0.000664,0.000664,0.003833,0.352521,-0.004534,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000471,0.000340,0.000476,0.000616,0.000616,0.003702,0.348098,-0.004422,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000455,0.000335,0.000461,0.000574,0.000574,0.003583,0.343969,-0.004129,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000199,0.000000,0.000000,0.000000,0.000007,0.000440,0.000330,0.000447,0.000492,0.000492,0.003472,0.339985,-0.003985,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000316,0.000000,0.000000,0.000000,0.000008,0.000427,0.000325,0.000434,0.000392,0.000392,0.003371,0.336269,-0.003716,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000239,0.000000,0.000000,0.000000,0.000008,0.000414,0.000321,0.000422,0.000343,0.000343,0.003277,0.332578,-0.003692,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000351,0.000001,0.000001,0.000001,0.000009,0.000403,0.000316,0.000412,0.000269,0.000269,0.003191,0.329119,-0.003458,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000272,0.000001,0.000002,0.000001,0.000010,0.000392,0.000312,0.000403,0.000164,0.000164,0.003111,0.325734,-0.003385,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000851,0.000046,0.000082,0.000046,0.000010,0.000382,0.000308,0.000439,0.000074,0.000074,0.003037,0.322977,-0.002757,1.000000,0.000037 +26,2022-08-02 02:00:00,0.000993,0.000092,0.000129,0.000092,0.000011,0.000374,0.000305,0.000477,0.000000,0.000000,0.002968,0.320425,-0.002552,1.000000,0.000075 +27,2022-08-02 03:00:00,0.000833,0.000100,0.000093,0.000100,0.000012,0.000365,0.000302,0.000477,0.000000,0.000000,0.002905,0.317787,-0.002638,1.000000,0.000067 +28,2022-08-02 04:00:00,0.000932,0.000112,0.000114,0.000112,0.000013,0.000358,0.000299,0.000482,0.000000,0.000000,0.002846,0.315262,-0.002524,1.000000,0.000070 +29,2022-08-02 05:00:00,0.000774,0.000091,0.000080,0.000091,0.000014,0.000350,0.000295,0.000455,0.000000,0.000000,0.002791,0.312650,-0.002612,1.000000,0.000059 +30,2022-08-02 06:00:00,0.000793,0.000088,0.000083,0.000088,0.000015,0.000344,0.000292,0.000447,0.000000,0.000000,0.002740,0.310090,-0.002560,1.000000,0.000053 +31,2022-08-02 07:00:00,0.000000,0.000037,0.000000,0.000037,0.000016,0.000337,0.000288,0.000390,0.000000,0.000000,0.002690,0.306866,-0.003224,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000331,0.000284,0.000364,0.000000,0.000000,0.002643,0.303687,-0.003179,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000325,0.000280,0.000343,0.000000,0.000000,0.002598,0.300552,-0.003135,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000320,0.000276,0.000338,0.000000,0.000000,0.002555,0.297460,-0.003091,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000314,0.000272,0.000334,0.000000,0.000000,0.002513,0.294412,-0.003048,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000309,0.000269,0.000329,0.000000,0.000000,0.002473,0.291406,-0.003006,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000304,0.000265,0.000325,0.000000,0.000000,0.002433,0.288442,-0.002964,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000299,0.000261,0.000321,0.000118,0.000118,0.002395,0.285403,-0.003039,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000294,0.000257,0.000318,0.000341,0.000341,0.002358,0.282187,-0.003216,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000289,0.000253,0.000314,0.000478,0.000478,0.002321,0.278880,-0.003307,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000285,0.000249,0.000311,0.000578,0.000578,0.002285,0.275521,-0.003359,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000308,0.000000,0.000000,0.000000,0.000027,0.000280,0.000245,0.000307,0.000671,0.000671,0.002249,0.272420,-0.003101,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000276,0.000240,0.000304,0.000627,0.000627,0.002214,0.269103,-0.003318,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000271,0.000236,0.000300,0.000536,0.000536,0.002179,0.265921,-0.003182,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000267,0.000232,0.000297,0.000502,0.000502,0.002145,0.262817,-0.003104,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000263,0.000229,0.000294,0.000431,0.000431,0.002111,0.259827,-0.002990,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000258,0.000225,0.000291,0.000334,0.000334,0.002078,0.256973,-0.002854,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000254,0.000222,0.000288,0.000201,0.000201,0.002045,0.254291,-0.002683,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000250,0.000219,0.000285,0.000048,0.000048,0.002014,0.251796,-0.002494,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000246,0.000216,0.000282,0.000000,0.000000,0.001983,0.249384,-0.002412,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000242,0.000213,0.000280,0.000000,0.000000,0.001953,0.247006,-0.002378,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000239,0.000210,0.000277,0.000000,0.000000,0.001924,0.244661,-0.002345,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000235,0.000207,0.000275,0.000000,0.000000,0.001896,0.242348,-0.002313,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000232,0.000204,0.000273,0.000000,0.000000,0.001868,0.240068,-0.002280,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000228,0.000201,0.000271,0.000000,0.000000,0.001841,0.237819,-0.002249,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000225,0.000198,0.000269,0.000000,0.000000,0.001814,0.235602,-0.002217,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000221,0.000195,0.000267,0.000000,0.000000,0.001788,0.233416,-0.002186,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000218,0.000193,0.000265,0.000000,0.000000,0.001763,0.231260,-0.002156,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000215,0.000190,0.000263,0.000000,0.000000,0.001738,0.229134,-0.002126,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000212,0.000187,0.000261,0.000000,0.000000,0.001713,0.227038,-0.002096,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000209,0.000185,0.000259,0.000000,0.000000,0.001689,0.224971,-0.002067,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000206,0.000182,0.000258,0.000141,0.000141,0.001665,0.222793,-0.002178,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000203,0.000179,0.000256,0.000398,0.000398,0.001641,0.220392,-0.002401,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000200,0.000176,0.000254,0.000556,0.000556,0.001617,0.217870,-0.002523,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000197,0.000172,0.000253,0.000666,0.000666,0.001593,0.215274,-0.002596,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000194,0.000169,0.000251,0.000696,0.000696,0.001569,0.212684,-0.002590,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000191,0.000166,0.000249,0.000649,0.000649,0.001544,0.210177,-0.002507,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001084,0.000018,0.000032,0.000018,0.000060,0.000188,0.000164,0.000265,0.000559,0.000559,0.001521,0.208830,-0.001347,1.000000,0.000014 +69,2022-08-03 21:00:00,0.000342,0.000008,0.000000,0.000008,0.000062,0.000185,0.000162,0.000254,0.000509,0.000509,0.001498,0.206852,-0.001978,1.000000,0.000006 +70,2022-08-03 22:00:00,0.000000,0.000006,0.000000,0.000006,0.000063,0.000182,0.000159,0.000251,0.000437,0.000437,0.001475,0.204636,-0.002216,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000179,0.000156,0.000243,0.000339,0.000339,0.001453,0.202547,-0.002089,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000176,0.000154,0.000242,0.000201,0.000201,0.001430,0.200623,-0.001924,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000173,0.000152,0.000241,0.000061,0.000061,0.001409,0.198864,-0.001759,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000171,0.000150,0.000239,0.000000,0.000000,0.001387,0.197190,-0.001674,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000168,0.000148,0.000238,0.000000,0.000000,0.001367,0.195539,-0.001651,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000166,0.000145,0.000237,0.000000,0.000000,0.001346,0.193910,-0.001628,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000163,0.000143,0.000236,0.000000,0.000000,0.001327,0.192305,-0.001605,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000161,0.000141,0.000235,0.000000,0.000000,0.001307,0.190722,-0.001583,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000158,0.000139,0.000234,0.000000,0.000000,0.001288,0.189161,-0.001561,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000156,0.000138,0.000233,0.000000,0.000000,0.001270,0.187622,-0.001539,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000154,0.000136,0.000233,0.000000,0.000000,0.001252,0.186104,-0.001518,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000152,0.000134,0.000232,0.000000,0.000000,0.001234,0.184607,-0.001497,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000149,0.000132,0.000231,0.000000,0.000000,0.001216,0.183131,-0.001476,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000147,0.000130,0.000230,0.000000,0.000000,0.001199,0.181676,-0.001455,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000145,0.000128,0.000230,0.000000,0.000000,0.001182,0.180241,-0.001435,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000143,0.000126,0.000229,0.000138,0.000138,0.001165,0.178690,-0.001551,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000141,0.000124,0.000229,0.000394,0.000394,0.001148,0.176908,-0.001782,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000139,0.000122,0.000228,0.000555,0.000555,0.001131,0.174993,-0.001916,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000137,0.000119,0.000227,0.000671,0.000671,0.001114,0.172989,-0.002004,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000134,0.000116,0.000226,0.000770,0.000770,0.001096,0.170916,-0.002073,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000132,0.000114,0.000226,0.000729,0.000729,0.001078,0.168913,-0.002003,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000130,0.000112,0.000225,0.000622,0.000622,0.001059,0.167042,-0.001870,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000128,0.000109,0.000224,0.000510,0.000510,0.001041,0.165309,-0.001734,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000125,0.000107,0.000223,0.000443,0.000443,0.001023,0.163665,-0.001644,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000123,0.000105,0.000223,0.000345,0.000345,0.001005,0.162141,-0.001524,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000121,0.000104,0.000222,0.000212,0.000212,0.000988,0.160770,-0.001372,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000119,0.000102,0.000221,0.000077,0.000077,0.000971,0.159550,-0.001220,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000117,0.000101,0.000221,0.000000,0.000000,0.000955,0.158423,-0.001127,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000115,0.000099,0.000220,0.000000,0.000000,0.000939,0.157312,-0.001111,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000113,0.000098,0.000220,0.000000,0.000000,0.000924,0.156217,-0.001096,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000111,0.000097,0.000220,0.000000,0.000000,0.000909,0.155136,-0.001080,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000109,0.000095,0.000219,0.000000,0.000000,0.000895,0.154071,-0.001065,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000108,0.000094,0.000219,0.000000,0.000000,0.000881,0.153021,-0.001050,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000106,0.000093,0.000219,0.000000,0.000000,0.000868,0.151985,-0.001036,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000104,0.000091,0.000219,0.000000,0.000000,0.000854,0.150964,-0.001021,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000103,0.000090,0.000219,0.000000,0.000000,0.000842,0.149957,-0.001007,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000101,0.000089,0.000219,0.000000,0.000000,0.000829,0.148964,-0.000993,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000100,0.000087,0.000219,0.000000,0.000000,0.000817,0.147984,-0.000979,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000098,0.000086,0.000218,0.000000,0.000000,0.000805,0.147019,-0.000966,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000097,0.000085,0.000218,0.000148,0.000148,0.000793,0.145921,-0.001098,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000095,0.000083,0.000218,0.000395,0.000395,0.000781,0.144594,-0.001326,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000094,0.000081,0.000218,0.000554,0.000554,0.000768,0.143130,-0.001464,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000092,0.000079,0.000218,0.000668,0.000668,0.000755,0.141574,-0.001556,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000091,0.000077,0.000218,0.000659,0.000659,0.000742,0.140047,-0.001527,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000089,0.000076,0.000218,0.000622,0.000622,0.000729,0.138642,-0.001406,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000087,0.000074,0.000218,0.000513,0.000513,0.000716,0.137362,-0.001279,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000070,0.000000,0.000000,0.000000,0.000132,0.000086,0.000073,0.000218,0.000447,0.000447,0.000703,0.136174,-0.001189,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000124,0.000000,0.000000,0.000000,0.000133,0.000084,0.000071,0.000217,0.000380,0.000380,0.000690,0.135121,-0.001053,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000196,0.000000,0.000000,0.000000,0.000135,0.000083,0.000070,0.000217,0.000302,0.000302,0.000677,0.134229,-0.000891,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000117,0.000000,0.000000,0.000000,0.000136,0.000081,0.000069,0.000217,0.000187,0.000187,0.000665,0.133386,-0.000843,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000748,0.000026,0.000047,0.000026,0.000138,0.000080,0.000069,0.000243,0.000074,0.000074,0.000654,0.133242,-0.000145,1.000000,0.000021 +122,2022-08-06 02:00:00,0.001240,0.000095,0.000151,0.000095,0.000139,0.000079,0.000069,0.000313,0.000000,0.000000,0.000645,0.133555,0.000314,1.000000,0.000077 +123,2022-08-06 03:00:00,0.000836,0.000086,0.000071,0.000086,0.000141,0.000078,0.000069,0.000305,0.000000,0.000000,0.000637,0.133544,-0.000011,1.000000,0.000062 +124,2022-08-06 04:00:00,0.000635,0.000071,0.000042,0.000071,0.000142,0.000077,0.000069,0.000290,0.000000,0.000000,0.000629,0.133365,-0.000179,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000645,0.000049,0.000043,0.000049,0.000143,0.000076,0.000069,0.000268,0.000000,0.000000,0.000622,0.133196,-0.000169,1.000000,0.000028 +126,2022-08-06 06:00:00,0.000756,0.000052,0.000059,0.000052,0.000145,0.000075,0.000069,0.000272,0.000000,0.000000,0.000616,0.133124,-0.000072,1.000000,0.000035 +127,2022-08-06 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000146,0.000074,0.000068,0.000244,0.000000,0.000000,0.000609,0.132366,-0.000759,1.000000,0.000012 +128,2022-08-06 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000148,0.000073,0.000067,0.000233,0.000000,0.000000,0.000603,0.131618,-0.000748,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000073,0.000066,0.000222,0.000000,0.000000,0.000596,0.130880,-0.000738,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000072,0.000065,0.000222,0.000000,0.000000,0.000589,0.130153,-0.000727,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000071,0.000064,0.000223,0.000000,0.000000,0.000582,0.129436,-0.000717,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000070,0.000063,0.000223,0.000000,0.000000,0.000576,0.128729,-0.000707,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000069,0.000062,0.000224,0.000000,0.000000,0.000569,0.128032,-0.000697,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000068,0.000061,0.000224,0.000133,0.000133,0.000562,0.127213,-0.000819,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000067,0.000060,0.000225,0.000384,0.000384,0.000554,0.126158,-0.001055,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000066,0.000058,0.000225,0.000545,0.000545,0.000546,0.124959,-0.001198,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000065,0.000057,0.000226,0.000656,0.000656,0.000537,0.123667,-0.001292,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000064,0.000055,0.000226,0.000751,0.000751,0.000528,0.122300,-0.001367,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000063,0.000053,0.000226,0.000712,0.000712,0.000519,0.120990,-0.001310,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000062,0.000052,0.000226,0.000610,0.000610,0.000509,0.119800,-0.001191,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000061,0.000051,0.000226,0.000519,0.000519,0.000498,0.118715,-0.001085,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000059,0.000049,0.000226,0.000444,0.000444,0.000488,0.117719,-0.000996,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000058,0.000048,0.000227,0.000344,0.000344,0.000478,0.116836,-0.000883,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000057,0.000047,0.000227,0.000204,0.000204,0.000469,0.116104,-0.000732,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000056,0.000047,0.000227,0.000061,0.000061,0.000459,0.115523,-0.000581,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000055,0.000046,0.000227,0.000000,0.000000,0.000450,0.115010,-0.000513,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000054,0.000045,0.000227,0.000000,0.000000,0.000442,0.114504,-0.000506,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000053,0.000045,0.000228,0.000000,0.000000,0.000434,0.114004,-0.000499,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000052,0.000044,0.000228,0.000000,0.000000,0.000426,0.113512,-0.000492,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000051,0.000043,0.000229,0.000000,0.000000,0.000419,0.113027,-0.000485,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000050,0.000043,0.000229,0.000000,0.000000,0.000411,0.112549,-0.000478,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000049,0.000042,0.000229,0.000000,0.000000,0.000404,0.112077,-0.000472,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000048,0.000042,0.000230,0.000000,0.000000,0.000398,0.111612,-0.000465,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000048,0.000041,0.000230,0.000000,0.000000,0.000391,0.111153,-0.000459,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000047,0.000040,0.000231,0.000000,0.000000,0.000385,0.110700,-0.000452,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000046,0.000040,0.000231,0.000000,0.000000,0.000379,0.110254,-0.000446,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000045,0.000039,0.000232,0.000000,0.000000,0.000373,0.109814,-0.000440,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000045,0.000039,0.000233,0.000129,0.000129,0.000367,0.109254,-0.000561,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000044,0.000038,0.000233,0.000377,0.000377,0.000361,0.108456,-0.000798,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000043,0.000036,0.000234,0.000540,0.000540,0.000354,0.107509,-0.000947,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000042,0.000035,0.000234,0.000653,0.000653,0.000347,0.106463,-0.001046,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000041,0.000034,0.000234,0.000738,0.000738,0.000339,0.105349,-0.001115,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000040,0.000032,0.000235,0.000698,0.000698,0.000332,0.104289,-0.001060,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000039,0.000031,0.000235,0.000592,0.000592,0.000323,0.103349,-0.000940,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000038,0.000030,0.000235,0.000530,0.000530,0.000315,0.102482,-0.000867,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000037,0.000029,0.000235,0.000455,0.000455,0.000307,0.101702,-0.000780,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000036,0.000028,0.000236,0.000345,0.000345,0.000299,0.101041,-0.000661,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000035,0.000028,0.000236,0.000181,0.000181,0.000291,0.100551,-0.000490,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000034,0.000027,0.000236,0.000025,0.000025,0.000284,0.100221,-0.000330,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000034,0.000027,0.000236,0.000000,0.000000,0.000277,0.099921,-0.000300,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000033,0.000026,0.000237,0.000000,0.000000,0.000271,0.099625,-0.000296,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000032,0.000026,0.000237,0.000000,0.000000,0.000265,0.099334,-0.000292,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000031,0.000026,0.000238,0.000000,0.000000,0.000259,0.099046,-0.000288,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000031,0.000025,0.000238,0.000000,0.000000,0.000254,0.098762,-0.000284,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000030,0.000025,0.000239,0.000000,0.000000,0.000249,0.098483,-0.000280,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000030,0.000025,0.000239,0.000000,0.000000,0.000244,0.098207,-0.000276,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000029,0.000024,0.000240,0.000000,0.000000,0.000239,0.097935,-0.000272,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000028,0.000024,0.000241,0.000000,0.000000,0.000235,0.097666,-0.000268,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000028,0.000024,0.000241,0.000000,0.000000,0.000230,0.097402,-0.000264,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000027,0.000023,0.000242,0.000000,0.000000,0.000226,0.097141,-0.000261,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000027,0.000023,0.000243,0.000000,0.000000,0.000222,0.096884,-0.000257,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000026,0.000023,0.000243,0.000111,0.000111,0.000218,0.096521,-0.000363,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000026,0.000022,0.000244,0.000365,0.000365,0.000214,0.095913,-0.000609,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000025,0.000021,0.000244,0.000530,0.000530,0.000209,0.095150,-0.000762,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000025,0.000020,0.000245,0.000643,0.000643,0.000204,0.094286,-0.000864,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000024,0.000019,0.000245,0.000740,0.000740,0.000199,0.093339,-0.000947,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000017,0.000246,0.000706,0.000706,0.000193,0.092439,-0.000900,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000023,0.000017,0.000246,0.000598,0.000000,0.000187,0.092247,-0.000192,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000017,0.000246,0.000534,0.000000,0.000182,0.092058,-0.000189,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000017,0.000247,0.000459,0.000000,0.000177,0.091872,-0.000186,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000016,0.000247,0.000354,0.000000,0.000173,0.091688,-0.000184,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000016,0.000248,0.000203,0.000000,0.000169,0.091507,-0.000181,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000016,0.000249,0.000049,0.000000,0.000165,0.091329,-0.000179,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000016,0.000249,0.000000,0.000000,0.000161,0.091152,-0.000176,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000016,0.000250,0.000000,0.000000,0.000157,0.090979,-0.000174,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000015,0.000250,0.000000,0.000000,0.000154,0.090807,-0.000171,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000015,0.000251,0.000000,0.000000,0.000151,0.090638,-0.000169,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000018,0.000015,0.000252,0.000000,0.000000,0.000148,0.090472,-0.000167,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000015,0.000252,0.000000,0.000000,0.000145,0.090308,-0.000164,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000014,0.000253,0.000000,0.000000,0.000142,0.090146,-0.000162,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000014,0.000254,0.000000,0.000000,0.000140,0.089986,-0.000160,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000014,0.000254,0.000000,0.000000,0.000137,0.089829,-0.000157,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000016,0.000014,0.000255,0.000000,0.000000,0.000135,0.089673,-0.000155,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000000,0.000000,0.000132,0.089520,-0.000153,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000013,0.000256,0.000000,0.000000,0.000130,0.089369,-0.000151,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000015,0.000013,0.000257,0.000123,0.000000,0.000128,0.089220,-0.000149,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620859.csv b/test/channel_loss/channel_forcing/et/cat-2620859.csv new file mode 100644 index 000000000..368f8360e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620859.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000212,0.000000,0.000000,0.000000,0.000000,0.001524,0.000741,0.001524,0.000205,0.000205,0.010812,0.429506,-0.005029,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001413,0.000729,0.001413,0.000069,0.000069,0.010129,0.424490,-0.005016,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001317,0.000718,0.001318,0.000000,0.000000,0.009530,0.419619,-0.004871,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001235,0.000707,0.001235,0.000000,0.000000,0.009002,0.414823,-0.004796,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001163,0.000696,0.001163,0.000000,0.000000,0.008536,0.410100,-0.004722,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001100,0.000686,0.001100,0.000000,0.000000,0.008121,0.405451,-0.004650,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000010,0.000000,0.000000,0.000000,0.000001,0.001044,0.000675,0.001045,0.000000,0.000000,0.007752,0.400873,-0.004578,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000995,0.000665,0.000996,0.000000,0.000000,0.007422,0.396356,-0.004517,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000951,0.000654,0.000952,0.000000,0.000000,0.007125,0.391908,-0.004448,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000912,0.000644,0.000913,0.000000,0.000000,0.006858,0.387529,-0.004379,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000877,0.000634,0.000878,0.000000,0.000000,0.006616,0.383217,-0.004312,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000845,0.000625,0.000847,0.000000,0.000000,0.006396,0.378972,-0.004245,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000816,0.000615,0.000818,0.000000,0.000000,0.006195,0.374792,-0.004180,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000790,0.000606,0.000792,0.000000,0.000000,0.006011,0.370676,-0.004116,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000765,0.000596,0.000769,0.000147,0.000147,0.005841,0.366479,-0.004197,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000743,0.000586,0.000747,0.000388,0.000388,0.005684,0.362110,-0.004370,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000722,0.000576,0.000727,0.000552,0.000552,0.005537,0.357646,-0.004464,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000703,0.000565,0.000708,0.000683,0.000683,0.005399,0.353121,-0.004525,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000685,0.000555,0.000690,0.000646,0.000646,0.005269,0.348703,-0.004418,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000103,0.000000,0.000000,0.000000,0.000006,0.000668,0.000545,0.000674,0.000608,0.000608,0.005147,0.344492,-0.004211,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000103,0.000000,0.000000,0.000000,0.000006,0.000652,0.000536,0.000658,0.000518,0.000518,0.005031,0.340435,-0.004057,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000007,0.000637,0.000527,0.000644,0.000396,0.000396,0.004922,0.336583,-0.003852,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000104,0.000000,0.000000,0.000000,0.000008,0.000622,0.000519,0.000630,0.000344,0.000344,0.004818,0.332819,-0.003764,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000395,0.000001,0.000001,0.000001,0.000008,0.000609,0.000511,0.000618,0.000267,0.000267,0.004720,0.329474,-0.003345,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000881,0.000023,0.000041,0.000023,0.000009,0.000596,0.000504,0.000628,0.000162,0.000162,0.004628,0.326723,-0.002751,1.000000,0.000019 +25,2022-08-02 01:00:00,0.001137,0.000058,0.000087,0.000058,0.000010,0.000584,0.000499,0.000653,0.000077,0.000077,0.004543,0.324306,-0.002417,1.000000,0.000047 +26,2022-08-02 02:00:00,0.000585,0.000045,0.000027,0.000045,0.000011,0.000573,0.000493,0.000629,0.000000,0.000000,0.004462,0.321517,-0.002789,1.000000,0.000030 +27,2022-08-02 03:00:00,0.000530,0.000036,0.000022,0.000036,0.000011,0.000563,0.000486,0.000611,0.000000,0.000000,0.004385,0.318721,-0.002796,1.000000,0.000016 +28,2022-08-02 04:00:00,0.000569,0.000025,0.000026,0.000025,0.000012,0.000553,0.000480,0.000590,0.000000,0.000000,0.004312,0.316004,-0.002717,1.000000,0.000016 +29,2022-08-02 05:00:00,0.000525,0.000023,0.000022,0.000023,0.000013,0.000543,0.000474,0.000579,0.000000,0.000000,0.004242,0.313288,-0.002715,1.000000,0.000015 +30,2022-08-02 06:00:00,0.000534,0.000023,0.000022,0.000023,0.000014,0.000534,0.000467,0.000571,0.000000,0.000000,0.004175,0.310623,-0.002665,1.000000,0.000014 +31,2022-08-02 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000015,0.000526,0.000460,0.000550,0.000000,0.000000,0.004110,0.307495,-0.003128,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000015,0.000517,0.000453,0.000537,0.000000,0.000000,0.004046,0.304416,-0.003080,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000509,0.000446,0.000525,0.000000,0.000000,0.003984,0.301383,-0.003032,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000500,0.000439,0.000518,0.000000,0.000000,0.003923,0.298398,-0.002985,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000492,0.000433,0.000510,0.000000,0.000000,0.003863,0.295459,-0.002939,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000484,0.000426,0.000504,0.000000,0.000000,0.003805,0.292564,-0.002894,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000477,0.000419,0.000497,0.000000,0.000000,0.003747,0.289715,-0.002850,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000469,0.000413,0.000490,0.000124,0.000124,0.003691,0.286787,-0.002928,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000462,0.000405,0.000484,0.000342,0.000342,0.003634,0.283689,-0.003098,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000454,0.000398,0.000477,0.000488,0.000488,0.003578,0.280496,-0.003194,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000447,0.000391,0.000471,0.000607,0.000607,0.003522,0.277234,-0.003262,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000064,0.000000,0.000000,0.000000,0.000025,0.000439,0.000383,0.000464,0.000698,0.000698,0.003466,0.273996,-0.003238,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000432,0.000376,0.000458,0.000660,0.000660,0.003410,0.270783,-0.003213,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000424,0.000369,0.000452,0.000570,0.000570,0.003354,0.267707,-0.003076,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000417,0.000362,0.000445,0.000506,0.000506,0.003299,0.264742,-0.002965,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000410,0.000355,0.000439,0.000438,0.000438,0.003245,0.261889,-0.002853,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000403,0.000349,0.000433,0.000342,0.000342,0.003191,0.259175,-0.002714,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000396,0.000343,0.000427,0.000208,0.000208,0.003138,0.256635,-0.002540,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000389,0.000338,0.000422,0.000056,0.000056,0.003087,0.254283,-0.002352,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000383,0.000333,0.000416,0.000000,0.000000,0.003037,0.252023,-0.002260,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000376,0.000327,0.000411,0.000000,0.000000,0.002988,0.249797,-0.002225,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000370,0.000322,0.000406,0.000000,0.000000,0.002941,0.247606,-0.002191,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000364,0.000317,0.000401,0.000000,0.000000,0.002894,0.245449,-0.002157,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000358,0.000313,0.000396,0.000000,0.000000,0.002849,0.243324,-0.002124,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000352,0.000308,0.000392,0.000000,0.000000,0.002805,0.241233,-0.002092,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000346,0.000303,0.000387,0.000000,0.000000,0.002761,0.239173,-0.002059,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000341,0.000298,0.000383,0.000000,0.000000,0.002719,0.237146,-0.002028,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000336,0.000294,0.000379,0.000000,0.000000,0.002677,0.235149,-0.001996,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000330,0.000289,0.000375,0.000000,0.000000,0.002636,0.233184,-0.001966,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000325,0.000285,0.000371,0.000000,0.000000,0.002596,0.231248,-0.001935,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000320,0.000280,0.000367,0.000000,0.000000,0.002556,0.229343,-0.001906,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000315,0.000276,0.000363,0.000144,0.000144,0.002517,0.227325,-0.002018,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000310,0.000271,0.000359,0.000394,0.000394,0.002478,0.225091,-0.002233,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000305,0.000265,0.000355,0.000557,0.000557,0.002439,0.222732,-0.002359,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000300,0.000260,0.000351,0.000685,0.000685,0.002399,0.220283,-0.002449,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000294,0.000254,0.000347,0.000714,0.000714,0.002358,0.217843,-0.002440,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000289,0.000249,0.000343,0.000680,0.000680,0.002318,0.215475,-0.002368,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000220,0.000000,0.000000,0.000000,0.000056,0.000284,0.000244,0.000340,0.000584,0.000584,0.002278,0.213454,-0.002021,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000047,0.000000,0.000000,0.000000,0.000057,0.000279,0.000239,0.000336,0.000517,0.000517,0.002238,0.211360,-0.002094,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000274,0.000234,0.000332,0.000436,0.000436,0.002199,0.209331,-0.002029,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000269,0.000230,0.000328,0.000335,0.000335,0.002160,0.207433,-0.001898,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000264,0.000226,0.000325,0.000203,0.000203,0.002122,0.205694,-0.001739,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000259,0.000222,0.000321,0.000070,0.000070,0.002085,0.204113,-0.001581,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000255,0.000219,0.000318,0.000000,0.000000,0.002049,0.202625,-0.001488,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000250,0.000216,0.000315,0.000000,0.000000,0.002015,0.201160,-0.001465,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000246,0.000212,0.000312,0.000000,0.000000,0.001981,0.199718,-0.001442,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000242,0.000209,0.000309,0.000000,0.000000,0.001948,0.198297,-0.001420,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000238,0.000206,0.000306,0.000000,0.000000,0.001916,0.196899,-0.001398,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000234,0.000203,0.000304,0.000000,0.000000,0.001885,0.195522,-0.001377,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000230,0.000199,0.000301,0.000000,0.000000,0.001855,0.194167,-0.001356,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000226,0.000196,0.000299,0.000000,0.000000,0.001825,0.192832,-0.001335,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000222,0.000193,0.000296,0.000000,0.000000,0.001796,0.191518,-0.001314,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000219,0.000190,0.000294,0.000000,0.000000,0.001768,0.190224,-0.001294,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000215,0.000187,0.000292,0.000000,0.000000,0.001740,0.188950,-0.001274,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000212,0.000185,0.000290,0.000000,0.000000,0.001713,0.187695,-0.001254,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000208,0.000181,0.000288,0.000140,0.000140,0.001686,0.186323,-0.001373,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000205,0.000178,0.000285,0.000391,0.000391,0.001658,0.184723,-0.001599,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000201,0.000174,0.000283,0.000559,0.000559,0.001631,0.182983,-0.001740,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000198,0.000170,0.000281,0.000690,0.000690,0.001602,0.181142,-0.001842,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000194,0.000165,0.000279,0.000793,0.000793,0.001573,0.179226,-0.001915,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000190,0.000161,0.000276,0.000740,0.000740,0.001544,0.177393,-0.001833,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000187,0.000157,0.000274,0.000640,0.000640,0.001514,0.175686,-0.001707,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000183,0.000153,0.000271,0.000521,0.000521,0.001484,0.174122,-0.001563,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000179,0.000150,0.000269,0.000447,0.000447,0.001455,0.172656,-0.001467,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000176,0.000147,0.000267,0.000344,0.000344,0.001426,0.171313,-0.001342,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000172,0.000144,0.000265,0.000216,0.000216,0.001398,0.170118,-0.001195,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000055,0.000000,0.000000,0.000000,0.000094,0.000169,0.000142,0.000263,0.000084,0.000084,0.001371,0.169125,-0.000993,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000166,0.000140,0.000261,0.000000,0.000000,0.001345,0.168176,-0.000949,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000162,0.000138,0.000259,0.000000,0.000000,0.001320,0.167241,-0.000935,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000159,0.000135,0.000257,0.000000,0.000000,0.001296,0.166321,-0.000920,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000157,0.000133,0.000256,0.000000,0.000000,0.001273,0.165415,-0.000906,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000154,0.000131,0.000254,0.000000,0.000000,0.001251,0.164523,-0.000892,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000151,0.000129,0.000253,0.000000,0.000000,0.001229,0.163644,-0.000878,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000148,0.000127,0.000251,0.000000,0.000000,0.001208,0.162780,-0.000865,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000146,0.000125,0.000250,0.000000,0.000000,0.001187,0.161928,-0.000852,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000143,0.000123,0.000249,0.000000,0.000000,0.001167,0.161090,-0.000838,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000141,0.000121,0.000248,0.000000,0.000000,0.001148,0.160264,-0.000825,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000139,0.000120,0.000247,0.000000,0.000000,0.001129,0.159451,-0.000813,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000136,0.000118,0.000246,0.000000,0.000000,0.001111,0.158651,-0.000800,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000134,0.000116,0.000245,0.000149,0.000149,0.001092,0.157716,-0.000935,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000132,0.000113,0.000244,0.000392,0.000392,0.001074,0.156556,-0.001160,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000129,0.000110,0.000243,0.000555,0.000555,0.001054,0.155254,-0.001302,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000127,0.000107,0.000241,0.000683,0.000683,0.001034,0.153846,-0.001408,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000124,0.000104,0.000240,0.000671,0.000671,0.001014,0.152471,-0.001375,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000117,0.000122,0.000101,0.000239,0.000630,0.000630,0.000993,0.151228,-0.001243,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000256,0.000000,0.000000,0.000000,0.000118,0.000119,0.000099,0.000238,0.000527,0.000527,0.000972,0.150287,-0.000941,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000078,0.000000,0.000000,0.000000,0.000120,0.000117,0.000096,0.000236,0.000460,0.000460,0.000952,0.149252,-0.001035,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000103,0.000000,0.000000,0.000000,0.000121,0.000114,0.000094,0.000235,0.000390,0.000390,0.000932,0.148326,-0.000925,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000113,0.000000,0.000000,0.000000,0.000122,0.000112,0.000092,0.000234,0.000303,0.000303,0.000912,0.147511,-0.000816,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000103,0.000000,0.000000,0.000000,0.000124,0.000109,0.000091,0.000233,0.000194,0.000194,0.000894,0.146805,-0.000706,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000524,0.000007,0.000012,0.000007,0.000125,0.000107,0.000090,0.000239,0.000081,0.000081,0.000876,0.146624,-0.000181,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000725,0.000020,0.000032,0.000020,0.000126,0.000105,0.000090,0.000252,0.000000,0.000000,0.000861,0.146704,0.000080,1.000000,0.000017 +123,2022-08-06 03:00:00,0.000638,0.000024,0.000025,0.000024,0.000127,0.000104,0.000090,0.000255,0.000000,0.000000,0.000848,0.146704,-0.000000,1.000000,0.000017 +124,2022-08-06 04:00:00,0.000597,0.000024,0.000022,0.000024,0.000129,0.000102,0.000090,0.000255,0.000000,0.000000,0.000836,0.146666,-0.000037,1.000000,0.000015 +125,2022-08-06 05:00:00,0.000604,0.000023,0.000022,0.000023,0.000130,0.000101,0.000090,0.000253,0.000000,0.000000,0.000825,0.146636,-0.000030,1.000000,0.000014 +126,2022-08-06 06:00:00,0.000613,0.000022,0.000023,0.000022,0.000131,0.000100,0.000090,0.000253,0.000000,0.000000,0.000816,0.146614,-0.000022,1.000000,0.000015 +127,2022-08-06 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000132,0.000098,0.000089,0.000241,0.000000,0.000000,0.000806,0.146011,-0.000603,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000134,0.000097,0.000087,0.000235,0.000000,0.000000,0.000796,0.145418,-0.000593,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000096,0.000086,0.000231,0.000000,0.000000,0.000786,0.144834,-0.000584,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000095,0.000085,0.000231,0.000000,0.000000,0.000776,0.144258,-0.000575,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000093,0.000083,0.000231,0.000000,0.000000,0.000766,0.143692,-0.000566,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000092,0.000082,0.000231,0.000000,0.000000,0.000756,0.143134,-0.000558,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000091,0.000081,0.000231,0.000000,0.000000,0.000745,0.142585,-0.000549,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000090,0.000079,0.000231,0.000135,0.000135,0.000735,0.141912,-0.000673,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000088,0.000077,0.000230,0.000382,0.000382,0.000724,0.141005,-0.000907,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000087,0.000075,0.000230,0.000549,0.000549,0.000712,0.139948,-0.001057,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000085,0.000072,0.000230,0.000672,0.000672,0.000699,0.138787,-0.001161,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000083,0.000069,0.000229,0.000759,0.000759,0.000684,0.137557,-0.001229,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000082,0.000067,0.000228,0.000729,0.000729,0.000669,0.136376,-0.001181,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000080,0.000064,0.000228,0.000629,0.000629,0.000654,0.135312,-0.001064,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000078,0.000062,0.000227,0.000520,0.000520,0.000638,0.134371,-0.000940,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000076,0.000060,0.000226,0.000444,0.000444,0.000622,0.133520,-0.000851,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000074,0.000058,0.000225,0.000337,0.000337,0.000606,0.132788,-0.000732,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000072,0.000057,0.000225,0.000205,0.000205,0.000591,0.132196,-0.000591,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000070,0.000056,0.000224,0.000068,0.000068,0.000577,0.131749,-0.000447,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000069,0.000055,0.000224,0.000000,0.000000,0.000563,0.131375,-0.000374,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000067,0.000054,0.000223,0.000000,0.000000,0.000550,0.131007,-0.000368,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000066,0.000053,0.000223,0.000000,0.000000,0.000538,0.130645,-0.000362,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000064,0.000053,0.000222,0.000000,0.000000,0.000527,0.130288,-0.000357,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000063,0.000052,0.000222,0.000000,0.000000,0.000516,0.129937,-0.000351,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000061,0.000051,0.000222,0.000000,0.000000,0.000505,0.129591,-0.000346,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000060,0.000050,0.000222,0.000000,0.000000,0.000495,0.129250,-0.000341,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000059,0.000049,0.000222,0.000000,0.000000,0.000485,0.128915,-0.000335,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000058,0.000049,0.000222,0.000000,0.000000,0.000476,0.128585,-0.000330,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000057,0.000048,0.000222,0.000000,0.000000,0.000467,0.128260,-0.000325,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000056,0.000047,0.000222,0.000000,0.000000,0.000458,0.127940,-0.000320,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000055,0.000046,0.000222,0.000000,0.000000,0.000450,0.127625,-0.000315,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000054,0.000045,0.000222,0.000130,0.000130,0.000442,0.127187,-0.000438,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000053,0.000044,0.000222,0.000373,0.000373,0.000433,0.126516,-0.000671,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000051,0.000042,0.000222,0.000541,0.000541,0.000423,0.125690,-0.000826,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000050,0.000040,0.000222,0.000669,0.000669,0.000413,0.124750,-0.000940,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000049,0.000037,0.000221,0.000751,0.000751,0.000402,0.123745,-0.001005,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000035,0.000221,0.000720,0.000720,0.000390,0.122786,-0.000959,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000033,0.000221,0.000607,0.000607,0.000377,0.121952,-0.000834,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000044,0.000032,0.000220,0.000536,0.000536,0.000364,0.121201,-0.000751,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000030,0.000220,0.000458,0.000458,0.000352,0.120539,-0.000662,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000029,0.000219,0.000341,0.000341,0.000339,0.120002,-0.000537,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000040,0.000028,0.000219,0.000191,0.000191,0.000328,0.119621,-0.000381,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000038,0.000027,0.000218,0.000034,0.000034,0.000317,0.119400,-0.000221,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000037,0.000027,0.000218,0.000000,0.000000,0.000306,0.119217,-0.000184,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000027,0.000218,0.000000,0.000000,0.000297,0.119036,-0.000181,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000054,0.000000,0.000000,0.000000,0.000183,0.000035,0.000026,0.000218,0.000000,0.000000,0.000288,0.118911,-0.000125,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000112,0.000000,0.000001,0.000000,0.000184,0.000034,0.000026,0.000218,0.000000,0.000000,0.000281,0.118845,-0.000066,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000033,0.000026,0.000218,0.000000,0.000000,0.000273,0.118670,-0.000175,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000032,0.000025,0.000218,0.000000,0.000000,0.000266,0.118497,-0.000172,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000025,0.000218,0.000000,0.000000,0.000260,0.118328,-0.000170,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000031,0.000025,0.000219,0.000000,0.000000,0.000254,0.118161,-0.000167,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000030,0.000024,0.000219,0.000000,0.000000,0.000248,0.117996,-0.000165,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000024,0.000219,0.000000,0.000000,0.000242,0.117834,-0.000162,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000023,0.000219,0.000000,0.000000,0.000237,0.117674,-0.000160,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000028,0.000023,0.000220,0.000000,0.000000,0.000232,0.117517,-0.000157,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000028,0.000023,0.000220,0.000113,0.000113,0.000227,0.117252,-0.000266,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000027,0.000021,0.000220,0.000361,0.000361,0.000221,0.116746,-0.000506,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000020,0.000221,0.000530,0.000530,0.000215,0.116081,-0.000665,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000025,0.000018,0.000221,0.000659,0.000659,0.000208,0.115300,-0.000782,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000024,0.000016,0.000220,0.000759,0.000759,0.000200,0.114432,-0.000868,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000023,0.000014,0.000220,0.000736,0.000736,0.000191,0.113600,-0.000832,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000022,0.000012,0.000220,0.000629,0.000629,0.000181,0.112886,-0.000714,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000021,0.000011,0.000220,0.000552,0.000552,0.000172,0.112259,-0.000627,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000020,0.000010,0.000219,0.000468,0.000468,0.000162,0.111725,-0.000535,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000009,0.000219,0.000358,0.000358,0.000152,0.111307,-0.000418,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000017,0.000008,0.000219,0.000210,0.000210,0.000143,0.111041,-0.000266,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000016,0.000008,0.000219,0.000058,0.000058,0.000135,0.110929,-0.000112,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000015,0.000008,0.000219,0.000000,0.000000,0.000127,0.110876,-0.000053,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000015,0.000008,0.000219,0.000000,0.000000,0.000120,0.110823,-0.000052,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000014,0.000008,0.000219,0.000000,0.000000,0.000114,0.110772,-0.000052,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000013,0.000007,0.000219,0.000000,0.000000,0.000108,0.110721,-0.000051,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000012,0.000007,0.000219,0.000000,0.000000,0.000103,0.110671,-0.000050,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000012,0.000007,0.000220,0.000000,0.000000,0.000099,0.110622,-0.000049,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000011,0.000007,0.000220,0.000000,0.000000,0.000094,0.110573,-0.000049,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000011,0.000007,0.000220,0.000000,0.000000,0.000090,0.110525,-0.000048,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000011,0.000007,0.000221,0.000000,0.000000,0.000087,0.110478,-0.000047,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000010,0.000007,0.000221,0.000000,0.000000,0.000084,0.110432,-0.000046,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000010,0.000007,0.000221,0.000000,0.000000,0.000081,0.110387,-0.000046,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000009,0.000007,0.000222,0.000000,0.000000,0.000078,0.110342,-0.000045,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000009,0.000006,0.000222,0.000127,0.000127,0.000075,0.110173,-0.000169,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620860.csv b/test/channel_loss/channel_forcing/et/cat-2620860.csv new file mode 100644 index 000000000..7aaf80b44 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620860.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000313,0.000002,0.000004,0.000002,0.000000,0.001459,0.000282,0.001461,0.000202,0.000202,0.010419,0.428925,-0.004737,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000059,0.000001,0.000000,0.000001,0.000000,0.001297,0.000278,0.001298,0.000065,0.000065,0.009400,0.424139,-0.004786,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000042,0.000001,0.000001,0.000001,0.000000,0.001160,0.000274,0.001161,0.000000,0.000000,0.008515,0.419464,-0.004675,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000042,0.000000,0.000001,0.000000,0.000000,0.001043,0.000271,0.001043,0.000000,0.000000,0.007743,0.414851,-0.004613,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000042,0.000000,0.000000,0.000000,0.000000,0.000943,0.000267,0.000943,0.000000,0.000000,0.007068,0.410299,-0.004552,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.000856,0.000264,0.000857,0.000000,0.000000,0.006476,0.405825,-0.004474,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000045,0.000001,0.000001,0.000001,0.000001,0.000781,0.000260,0.000783,0.000000,0.000000,0.005954,0.401396,-0.004429,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000716,0.000257,0.000718,0.000000,0.000000,0.005495,0.396982,-0.004413,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000660,0.000253,0.000661,0.000000,0.000000,0.005088,0.392628,-0.004355,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000610,0.000250,0.000611,0.000000,0.000000,0.004729,0.388331,-0.004297,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000566,0.000247,0.000568,0.000000,0.000000,0.004409,0.384092,-0.004239,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000528,0.000243,0.000530,0.000000,0.000000,0.004125,0.379909,-0.004183,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000493,0.000240,0.000496,0.000000,0.000000,0.003872,0.375782,-0.004127,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000463,0.000237,0.000466,0.000000,0.000000,0.003646,0.371709,-0.004072,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000436,0.000234,0.000440,0.000146,0.000146,0.003443,0.367547,-0.004163,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000412,0.000230,0.000416,0.000393,0.000393,0.003261,0.363197,-0.004350,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000390,0.000227,0.000395,0.000553,0.000553,0.003098,0.358746,-0.004451,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000371,0.000223,0.000376,0.000673,0.000673,0.002950,0.354236,-0.004510,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000354,0.000220,0.000359,0.000631,0.000631,0.002816,0.349829,-0.004408,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000135,0.000000,0.000000,0.000000,0.000006,0.000338,0.000216,0.000344,0.000588,0.000588,0.002695,0.345654,-0.004174,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000156,0.000000,0.000000,0.000000,0.000007,0.000323,0.000213,0.000330,0.000505,0.000505,0.002584,0.341639,-0.004016,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000248,0.000000,0.000000,0.000000,0.000008,0.000311,0.000210,0.000318,0.000395,0.000395,0.002484,0.337877,-0.003762,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000187,0.000000,0.000000,0.000000,0.000008,0.000299,0.000207,0.000307,0.000345,0.000345,0.002393,0.334153,-0.003723,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000227,0.000000,0.000000,0.000000,0.000009,0.000288,0.000205,0.000297,0.000271,0.000271,0.002310,0.330592,-0.003561,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000198,0.000000,0.000000,0.000000,0.000010,0.000278,0.000202,0.000288,0.000165,0.000165,0.002233,0.327154,-0.003439,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000644,0.000038,0.000068,0.000038,0.000011,0.000269,0.000200,0.000318,0.000076,0.000076,0.002164,0.324222,-0.002931,1.000000,0.000031 +26,2022-08-02 02:00:00,0.000880,0.000101,0.000153,0.000101,0.000011,0.000261,0.000198,0.000374,0.000000,0.000000,0.002100,0.321554,-0.002669,1.000000,0.000082 +27,2022-08-02 03:00:00,0.000779,0.000119,0.000122,0.000119,0.000012,0.000254,0.000195,0.000385,0.000000,0.000000,0.002042,0.318852,-0.002702,1.000000,0.000085 +28,2022-08-02 04:00:00,0.000866,0.000142,0.000148,0.000142,0.000013,0.000247,0.000193,0.000402,0.000000,0.000000,0.001988,0.316247,-0.002605,1.000000,0.000091 +29,2022-08-02 05:00:00,0.000731,0.000120,0.000108,0.000120,0.000014,0.000241,0.000191,0.000375,0.000000,0.000000,0.001939,0.313583,-0.002664,1.000000,0.000078 +30,2022-08-02 06:00:00,0.000745,0.000117,0.000111,0.000117,0.000015,0.000235,0.000189,0.000367,0.000000,0.000000,0.001894,0.310964,-0.002618,1.000000,0.000071 +31,2022-08-02 07:00:00,0.000000,0.000049,0.000000,0.000049,0.000016,0.000229,0.000187,0.000294,0.000000,0.000000,0.001851,0.307755,-0.003209,1.000000,0.000022 +32,2022-08-02 08:00:00,0.000000,0.000022,0.000000,0.000022,0.000017,0.000224,0.000184,0.000263,0.000000,0.000000,0.001811,0.304589,-0.003166,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000219,0.000182,0.000237,0.000000,0.000000,0.001773,0.301464,-0.003124,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000215,0.000179,0.000234,0.000000,0.000000,0.001738,0.298382,-0.003083,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000211,0.000177,0.000230,0.000000,0.000000,0.001704,0.295340,-0.003042,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000207,0.000175,0.000227,0.000000,0.000000,0.001672,0.292339,-0.003001,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000203,0.000172,0.000225,0.000000,0.000000,0.001641,0.289378,-0.002961,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000199,0.000170,0.000222,0.000122,0.000122,0.001612,0.286336,-0.003042,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000196,0.000167,0.000220,0.000342,0.000342,0.001584,0.283117,-0.003219,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000192,0.000165,0.000217,0.000482,0.000482,0.001557,0.279804,-0.003314,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000189,0.000162,0.000215,0.000591,0.000591,0.001530,0.276427,-0.003377,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000305,0.000000,0.000000,0.000000,0.000027,0.000185,0.000160,0.000213,0.000684,0.000684,0.001504,0.273304,-0.003123,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000182,0.000157,0.000211,0.000646,0.000646,0.001479,0.269958,-0.003345,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000179,0.000155,0.000209,0.000551,0.000551,0.001454,0.266752,-0.003206,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000176,0.000152,0.000207,0.000503,0.000503,0.001430,0.263635,-0.003117,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000173,0.000150,0.000205,0.000434,0.000434,0.001407,0.260628,-0.003007,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000170,0.000147,0.000204,0.000338,0.000338,0.001384,0.257755,-0.002873,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000168,0.000145,0.000202,0.000204,0.000204,0.001361,0.255053,-0.002702,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000165,0.000143,0.000201,0.000052,0.000052,0.001340,0.252537,-0.002516,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000162,0.000141,0.000199,0.000000,0.000000,0.001319,0.250105,-0.002431,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000160,0.000140,0.000198,0.000000,0.000000,0.001299,0.247707,-0.002399,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000157,0.000138,0.000197,0.000000,0.000000,0.001279,0.245340,-0.002367,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000155,0.000136,0.000196,0.000000,0.000000,0.001260,0.243005,-0.002335,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000153,0.000134,0.000195,0.000000,0.000000,0.001242,0.240700,-0.002304,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000150,0.000132,0.000194,0.000000,0.000000,0.001224,0.238427,-0.002274,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000148,0.000131,0.000193,0.000000,0.000000,0.001206,0.236184,-0.002243,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000146,0.000129,0.000192,0.000000,0.000000,0.001189,0.233970,-0.002213,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000144,0.000127,0.000191,0.000000,0.000000,0.001172,0.231786,-0.002184,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000142,0.000125,0.000191,0.000000,0.000000,0.001156,0.229632,-0.002155,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000140,0.000124,0.000190,0.000000,0.000000,0.001140,0.227505,-0.002126,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000138,0.000122,0.000190,0.000000,0.000000,0.001124,0.225408,-0.002098,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000136,0.000120,0.000189,0.000143,0.000143,0.001108,0.223197,-0.002211,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000134,0.000118,0.000188,0.000397,0.000397,0.001093,0.220765,-0.002432,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000132,0.000116,0.000188,0.000556,0.000556,0.001077,0.218209,-0.002556,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000130,0.000114,0.000187,0.000675,0.000675,0.001061,0.215569,-0.002640,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000128,0.000112,0.000187,0.000704,0.000704,0.001045,0.212935,-0.002634,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000126,0.000110,0.000186,0.000663,0.000663,0.001029,0.210377,-0.002558,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000992,0.000018,0.000033,0.000018,0.000062,0.000124,0.000109,0.000204,0.000569,0.000569,0.001014,0.208893,-0.001485,1.000000,0.000015 +69,2022-08-03 21:00:00,0.000155,0.000008,0.000000,0.000008,0.000063,0.000122,0.000107,0.000194,0.000511,0.000511,0.000999,0.206692,-0.002201,1.000000,0.000007 +70,2022-08-03 22:00:00,0.000000,0.000007,0.000000,0.000007,0.000065,0.000121,0.000106,0.000192,0.000434,0.000434,0.000984,0.204443,-0.002248,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000119,0.000104,0.000185,0.000337,0.000337,0.000970,0.202320,-0.002123,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000117,0.000102,0.000184,0.000202,0.000202,0.000955,0.200358,-0.001962,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000115,0.000101,0.000184,0.000066,0.000066,0.000941,0.198557,-0.001801,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000113,0.000100,0.000184,0.000000,0.000000,0.000927,0.196844,-0.001712,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000112,0.000098,0.000184,0.000000,0.000000,0.000914,0.195155,-0.001690,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000110,0.000097,0.000184,0.000000,0.000000,0.000900,0.193488,-0.001667,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000109,0.000096,0.000183,0.000000,0.000000,0.000888,0.191843,-0.001645,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000107,0.000094,0.000183,0.000000,0.000000,0.000875,0.190220,-0.001623,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000105,0.000093,0.000183,0.000000,0.000000,0.000863,0.188619,-0.001601,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000104,0.000092,0.000183,0.000000,0.000000,0.000851,0.187039,-0.001580,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000103,0.000091,0.000183,0.000000,0.000000,0.000839,0.185480,-0.001559,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000101,0.000089,0.000184,0.000000,0.000000,0.000827,0.183942,-0.001538,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000100,0.000088,0.000184,0.000000,0.000000,0.000816,0.182424,-0.001518,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000098,0.000087,0.000184,0.000000,0.000000,0.000805,0.180926,-0.001497,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000097,0.000086,0.000184,0.000000,0.000000,0.000794,0.179449,-0.001478,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000096,0.000085,0.000184,0.000140,0.000140,0.000783,0.177853,-0.001596,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000094,0.000083,0.000184,0.000394,0.000394,0.000772,0.176027,-0.001825,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000093,0.000082,0.000184,0.000558,0.000558,0.000761,0.174064,-0.001963,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000091,0.000080,0.000185,0.000680,0.000680,0.000749,0.172007,-0.002057,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000090,0.000078,0.000185,0.000782,0.000782,0.000738,0.169877,-0.002130,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000089,0.000077,0.000185,0.000736,0.000736,0.000726,0.167820,-0.002057,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000087,0.000075,0.000185,0.000630,0.000630,0.000714,0.165895,-0.001925,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000086,0.000074,0.000185,0.000513,0.000513,0.000703,0.164111,-0.001784,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000084,0.000073,0.000185,0.000444,0.000444,0.000691,0.162419,-0.001692,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000083,0.000071,0.000185,0.000344,0.000344,0.000679,0.160848,-0.001571,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000081,0.000070,0.000185,0.000214,0.000214,0.000668,0.159427,-0.001422,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000080,0.000069,0.000186,0.000081,0.000081,0.000657,0.158156,-0.001271,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000079,0.000068,0.000186,0.000000,0.000000,0.000647,0.156981,-0.001174,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000078,0.000067,0.000186,0.000000,0.000000,0.000637,0.155823,-0.001159,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000076,0.000067,0.000186,0.000000,0.000000,0.000627,0.154679,-0.001143,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000075,0.000066,0.000187,0.000000,0.000000,0.000617,0.153551,-0.001128,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000074,0.000065,0.000187,0.000000,0.000000,0.000608,0.152438,-0.001113,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000073,0.000064,0.000188,0.000000,0.000000,0.000599,0.151340,-0.001098,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000072,0.000063,0.000188,0.000000,0.000000,0.000590,0.150257,-0.001084,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000071,0.000062,0.000189,0.000000,0.000000,0.000581,0.149187,-0.001069,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000070,0.000061,0.000189,0.000000,0.000000,0.000573,0.148133,-0.001055,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000069,0.000061,0.000190,0.000000,0.000000,0.000565,0.147092,-0.001041,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000068,0.000060,0.000190,0.000000,0.000000,0.000557,0.146065,-0.001027,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000067,0.000059,0.000191,0.000000,0.000000,0.000549,0.145051,-0.001013,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000066,0.000058,0.000191,0.000149,0.000149,0.000541,0.143904,-0.001147,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000065,0.000057,0.000192,0.000394,0.000394,0.000533,0.142531,-0.001374,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000064,0.000056,0.000192,0.000553,0.000553,0.000525,0.141019,-0.001512,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000063,0.000055,0.000193,0.000675,0.000675,0.000517,0.139407,-0.001612,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000062,0.000053,0.000193,0.000663,0.000663,0.000508,0.137827,-0.001579,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000104,0.000000,0.000000,0.000000,0.000133,0.000061,0.000052,0.000194,0.000617,0.000617,0.000500,0.136418,-0.001409,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000118,0.000000,0.000000,0.000000,0.000135,0.000060,0.000051,0.000194,0.000521,0.000521,0.000491,0.135135,-0.001283,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000122,0.000000,0.000000,0.000000,0.000136,0.000059,0.000050,0.000195,0.000454,0.000454,0.000483,0.133940,-0.001196,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000138,0.000058,0.000049,0.000195,0.000385,0.000385,0.000474,0.132833,-0.001107,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000190,0.000000,0.000000,0.000000,0.000139,0.000057,0.000049,0.000196,0.000303,0.000303,0.000466,0.131884,-0.000948,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000141,0.000056,0.000048,0.000196,0.000191,0.000191,0.000458,0.130996,-0.000888,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000963,0.000066,0.000119,0.000066,0.000142,0.000055,0.000048,0.000263,0.000078,0.000078,0.000451,0.130939,-0.000058,1.000000,0.000054 +122,2022-08-06 02:00:00,0.001310,0.000165,0.000246,0.000165,0.000144,0.000054,0.000048,0.000363,0.000000,0.000000,0.000445,0.131176,0.000238,1.000000,0.000135 +123,2022-08-06 03:00:00,0.000996,0.000167,0.000149,0.000167,0.000145,0.000053,0.000048,0.000366,0.000000,0.000000,0.000440,0.131197,0.000020,1.000000,0.000116 +124,2022-08-06 04:00:00,0.000846,0.000147,0.000110,0.000147,0.000147,0.000053,0.000048,0.000346,0.000000,0.000000,0.000435,0.131107,-0.000089,1.000000,0.000079 +125,2022-08-06 05:00:00,0.000831,0.000116,0.000106,0.000116,0.000148,0.000052,0.000048,0.000316,0.000000,0.000000,0.000431,0.131008,-0.000099,1.000000,0.000070 +126,2022-08-06 06:00:00,0.000925,0.000120,0.000130,0.000120,0.000150,0.000052,0.000048,0.000321,0.000000,0.000000,0.000427,0.130980,-0.000029,1.000000,0.000080 +127,2022-08-06 07:00:00,0.000000,0.000054,0.000000,0.000054,0.000151,0.000051,0.000047,0.000256,0.000000,0.000000,0.000423,0.130167,-0.000812,1.000000,0.000026 +128,2022-08-06 08:00:00,0.000000,0.000026,0.000000,0.000026,0.000153,0.000051,0.000047,0.000229,0.000000,0.000000,0.000418,0.129366,-0.000802,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000050,0.000046,0.000204,0.000000,0.000000,0.000414,0.128575,-0.000791,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000050,0.000045,0.000205,0.000000,0.000000,0.000410,0.127794,-0.000780,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000049,0.000045,0.000206,0.000000,0.000000,0.000405,0.127024,-0.000770,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000049,0.000044,0.000207,0.000000,0.000000,0.000401,0.126265,-0.000760,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000048,0.000044,0.000208,0.000000,0.000000,0.000396,0.125515,-0.000750,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000048,0.000043,0.000209,0.000136,0.000136,0.000392,0.124641,-0.000874,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000047,0.000042,0.000210,0.000385,0.000385,0.000387,0.123534,-0.001108,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000046,0.000041,0.000211,0.000548,0.000548,0.000382,0.122280,-0.001254,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000046,0.000040,0.000211,0.000664,0.000664,0.000376,0.120928,-0.001351,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000045,0.000039,0.000212,0.000752,0.000752,0.000370,0.119507,-0.001421,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000044,0.000038,0.000213,0.000718,0.000718,0.000364,0.118139,-0.001369,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000037,0.000213,0.000616,0.000616,0.000357,0.116889,-0.001250,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000043,0.000036,0.000214,0.000515,0.000515,0.000350,0.115756,-0.001133,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000215,0.000440,0.000440,0.000344,0.114712,-0.001044,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000041,0.000034,0.000215,0.000340,0.000340,0.000337,0.113781,-0.000931,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000034,0.000216,0.000204,0.000204,0.000331,0.112996,-0.000785,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000039,0.000033,0.000217,0.000064,0.000064,0.000325,0.112360,-0.000636,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000033,0.000217,0.000000,0.000000,0.000319,0.111795,-0.000564,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000038,0.000032,0.000218,0.000000,0.000000,0.000313,0.111238,-0.000557,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000037,0.000032,0.000219,0.000000,0.000000,0.000308,0.110689,-0.000550,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000219,0.000000,0.000000,0.000303,0.110147,-0.000542,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000036,0.000031,0.000220,0.000000,0.000000,0.000298,0.109612,-0.000535,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000031,0.000221,0.000000,0.000000,0.000293,0.109084,-0.000528,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000030,0.000222,0.000000,0.000000,0.000288,0.108563,-0.000521,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000030,0.000223,0.000000,0.000000,0.000284,0.108049,-0.000514,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000030,0.000223,0.000000,0.000000,0.000279,0.107542,-0.000507,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000029,0.000224,0.000000,0.000000,0.000275,0.107041,-0.000500,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000029,0.000225,0.000000,0.000000,0.000271,0.106548,-0.000494,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000028,0.000226,0.000000,0.000000,0.000267,0.106061,-0.000487,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000028,0.000227,0.000130,0.000130,0.000263,0.105452,-0.000609,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000027,0.000228,0.000375,0.000375,0.000259,0.104609,-0.000843,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000026,0.000229,0.000538,0.000538,0.000254,0.103617,-0.000992,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000026,0.000229,0.000660,0.000660,0.000250,0.102518,-0.001099,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000030,0.000025,0.000230,0.000743,0.000743,0.000245,0.101352,-0.001167,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000024,0.000231,0.000707,0.000707,0.000239,0.100236,-0.001115,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000598,0.000598,0.000234,0.099243,-0.000993,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000028,0.000022,0.000232,0.000531,0.000531,0.000229,0.098330,-0.000913,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000027,0.000022,0.000233,0.000456,0.000456,0.000223,0.097503,-0.000827,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000026,0.000021,0.000233,0.000339,0.000339,0.000218,0.096801,-0.000701,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000026,0.000021,0.000234,0.000185,0.000185,0.000213,0.096262,-0.000539,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000020,0.000235,0.000030,0.000030,0.000208,0.095882,-0.000380,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000025,0.000020,0.000235,0.000000,0.000000,0.000203,0.095537,-0.000345,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000236,0.000000,0.000000,0.000199,0.095197,-0.000340,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000024,0.000020,0.000237,0.000000,0.000000,0.000195,0.094861,-0.000336,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000003,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000238,0.000000,0.000000,0.000191,0.094532,-0.000329,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000023,0.000019,0.000238,0.000000,0.000000,0.000187,0.094205,-0.000327,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000019,0.000239,0.000000,0.000000,0.000184,0.093882,-0.000323,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000022,0.000019,0.000240,0.000000,0.000000,0.000181,0.093564,-0.000318,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000241,0.000000,0.000000,0.000177,0.093249,-0.000314,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000021,0.000018,0.000242,0.000000,0.000000,0.000174,0.092939,-0.000310,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000021,0.000018,0.000242,0.000000,0.000000,0.000171,0.092633,-0.000306,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000020,0.000018,0.000243,0.000000,0.000000,0.000169,0.092332,-0.000302,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000020,0.000017,0.000244,0.000000,0.000000,0.000166,0.092034,-0.000298,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000020,0.000017,0.000245,0.000113,0.000000,0.000163,0.091740,-0.000294,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000019,0.000017,0.000246,0.000362,0.000000,0.000161,0.091450,-0.000290,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000019,0.000017,0.000247,0.000529,0.000000,0.000158,0.091164,-0.000286,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000016,0.000248,0.000651,0.000000,0.000156,0.090882,-0.000282,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000016,0.000249,0.000750,0.000000,0.000153,0.090603,-0.000278,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000016,0.000249,0.000716,0.000000,0.000151,0.090328,-0.000275,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000016,0.000250,0.000610,0.000000,0.000149,0.090057,-0.000271,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000018,0.000016,0.000251,0.000541,0.000000,0.000147,0.089790,-0.000268,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000015,0.000252,0.000462,0.000000,0.000144,0.089526,-0.000264,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000017,0.000015,0.000253,0.000355,0.000000,0.000142,0.089265,-0.000260,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000017,0.000015,0.000254,0.000206,0.000000,0.000140,0.089008,-0.000257,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000255,0.000054,0.000000,0.000138,0.088755,-0.000254,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000015,0.000256,0.000000,0.000000,0.000136,0.088505,-0.000250,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000016,0.000014,0.000256,0.000000,0.000000,0.000134,0.088258,-0.000247,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000257,0.000000,0.000000,0.000133,0.088014,-0.000244,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000131,0.087774,-0.000240,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000129,0.087537,-0.000237,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000015,0.000014,0.000260,0.000000,0.000000,0.000127,0.087303,-0.000234,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000000,0.000000,0.000125,0.087072,-0.000231,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000124,0.086844,-0.000228,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000262,0.000000,0.000000,0.000122,0.086620,-0.000225,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000263,0.000000,0.000000,0.000120,0.086398,-0.000222,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000013,0.000264,0.000000,0.000000,0.000119,0.086179,-0.000219,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000013,0.000265,0.000000,0.000000,0.000117,0.085963,-0.000216,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000012,0.000266,0.000127,0.000000,0.000116,0.085750,-0.000213,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620861.csv b/test/channel_loss/channel_forcing/et/cat-2620861.csv new file mode 100644 index 000000000..86b3cb98a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620861.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000222,0.000000,0.000000,0.000000,0.000000,0.001483,0.000450,0.001483,0.000210,0.000210,0.010561,0.428455,-0.004884,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001339,0.000443,0.001339,0.000071,0.000071,0.009665,0.423558,-0.004897,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001217,0.000437,0.001217,0.000000,0.000000,0.008885,0.418800,-0.004758,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001112,0.000431,0.001113,0.000000,0.000000,0.008204,0.414109,-0.004691,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001022,0.000425,0.001023,0.000000,0.000000,0.007606,0.409484,-0.004625,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000945,0.000419,0.000945,0.000000,0.000000,0.007080,0.404925,-0.004559,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000877,0.000413,0.000877,0.000000,0.000000,0.006616,0.400430,-0.004495,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000818,0.000407,0.000818,0.000000,0.000000,0.006206,0.395998,-0.004432,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000766,0.000401,0.000767,0.000000,0.000000,0.005842,0.391629,-0.004369,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000720,0.000396,0.000721,0.000000,0.000000,0.005517,0.387321,-0.004308,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000679,0.000390,0.000681,0.000000,0.000000,0.005228,0.383075,-0.004247,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000643,0.000385,0.000645,0.000000,0.000000,0.004970,0.378888,-0.004187,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000611,0.000379,0.000614,0.000000,0.000000,0.004737,0.374760,-0.004128,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000583,0.000374,0.000585,0.000000,0.000000,0.004529,0.370691,-0.004069,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000557,0.000368,0.000560,0.000151,0.000151,0.004340,0.366530,-0.004161,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000534,0.000363,0.000537,0.000397,0.000397,0.004169,0.362186,-0.004344,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000513,0.000357,0.000517,0.000565,0.000565,0.004013,0.357737,-0.004449,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000493,0.000351,0.000498,0.000698,0.000698,0.003871,0.353220,-0.004517,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000476,0.000345,0.000481,0.000661,0.000661,0.003740,0.348803,-0.004417,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000113,0.000000,0.000000,0.000000,0.000006,0.000460,0.000339,0.000466,0.000622,0.000622,0.003620,0.344598,-0.004205,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000113,0.000000,0.000000,0.000000,0.000007,0.000445,0.000334,0.000452,0.000534,0.000534,0.003509,0.340539,-0.004059,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000126,0.000000,0.000000,0.000000,0.000007,0.000431,0.000329,0.000439,0.000411,0.000411,0.003406,0.336671,-0.003868,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000121,0.000000,0.000000,0.000000,0.000008,0.000419,0.000324,0.000427,0.000358,0.000358,0.003312,0.332905,-0.003766,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000497,0.000004,0.000007,0.000004,0.000009,0.000407,0.000320,0.000420,0.000278,0.000278,0.003224,0.329635,-0.003270,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000815,0.000032,0.000056,0.000032,0.000010,0.000397,0.000316,0.000439,0.000171,0.000171,0.003144,0.326782,-0.002853,1.000000,0.000026 +25,2022-08-02 01:00:00,0.001053,0.000082,0.000121,0.000082,0.000010,0.000387,0.000313,0.000479,0.000083,0.000083,0.003069,0.324227,-0.002555,1.000000,0.000065 +26,2022-08-02 02:00:00,0.000539,0.000063,0.000039,0.000063,0.000011,0.000378,0.000309,0.000452,0.000000,0.000000,0.003001,0.321363,-0.002864,1.000000,0.000042 +27,2022-08-02 03:00:00,0.000522,0.000054,0.000037,0.000054,0.000012,0.000369,0.000305,0.000435,0.000000,0.000000,0.002936,0.318526,-0.002837,1.000000,0.000024 +28,2022-08-02 04:00:00,0.000528,0.000038,0.000037,0.000038,0.000013,0.000362,0.000302,0.000412,0.000000,0.000000,0.002876,0.315734,-0.002792,1.000000,0.000024 +29,2022-08-02 05:00:00,0.000523,0.000037,0.000037,0.000037,0.000014,0.000354,0.000298,0.000405,0.000000,0.000000,0.002820,0.312977,-0.002757,1.000000,0.000024 +30,2022-08-02 06:00:00,0.000527,0.000037,0.000037,0.000037,0.000014,0.000347,0.000294,0.000399,0.000000,0.000000,0.002767,0.310262,-0.002715,1.000000,0.000024 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000015,0.000341,0.000290,0.000373,0.000000,0.000000,0.002716,0.307103,-0.003159,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000016,0.000334,0.000286,0.000358,0.000000,0.000000,0.002668,0.303988,-0.003115,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000328,0.000282,0.000346,0.000000,0.000000,0.002622,0.300918,-0.003071,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000323,0.000278,0.000341,0.000000,0.000000,0.002577,0.297890,-0.003027,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000317,0.000274,0.000336,0.000000,0.000000,0.002534,0.294906,-0.002985,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000312,0.000270,0.000332,0.000000,0.000000,0.002493,0.291963,-0.002943,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000307,0.000266,0.000328,0.000000,0.000000,0.002453,0.289062,-0.002901,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000301,0.000263,0.000324,0.000128,0.000128,0.002414,0.286076,-0.002986,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000297,0.000258,0.000320,0.000347,0.000347,0.002376,0.282915,-0.003161,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000292,0.000254,0.000316,0.000497,0.000497,0.002338,0.279653,-0.003263,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000287,0.000250,0.000312,0.000618,0.000618,0.002301,0.276316,-0.003336,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000024,0.000000,0.000000,0.000000,0.000026,0.000282,0.000245,0.000309,0.000714,0.000714,0.002264,0.272956,-0.003360,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000277,0.000241,0.000305,0.000681,0.000681,0.002227,0.269651,-0.003305,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000273,0.000237,0.000301,0.000584,0.000584,0.002191,0.266489,-0.003162,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000268,0.000233,0.000298,0.000523,0.000523,0.002156,0.263433,-0.003057,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000264,0.000229,0.000295,0.000450,0.000450,0.002121,0.260490,-0.002943,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000259,0.000225,0.000292,0.000351,0.000351,0.002087,0.257687,-0.002803,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000255,0.000222,0.000288,0.000213,0.000213,0.002053,0.255060,-0.002627,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000251,0.000219,0.000285,0.000059,0.000059,0.002021,0.252621,-0.002439,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000247,0.000215,0.000283,0.000000,0.000000,0.001989,0.250275,-0.002346,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000243,0.000212,0.000280,0.000000,0.000000,0.001958,0.247962,-0.002313,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000239,0.000209,0.000277,0.000000,0.000000,0.001929,0.245682,-0.002280,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000236,0.000206,0.000275,0.000000,0.000000,0.001900,0.243434,-0.002248,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000232,0.000204,0.000273,0.000000,0.000000,0.001871,0.241218,-0.002216,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000228,0.000201,0.000270,0.000000,0.000000,0.001843,0.239033,-0.002185,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000225,0.000198,0.000268,0.000000,0.000000,0.001816,0.236879,-0.002154,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000222,0.000195,0.000266,0.000000,0.000000,0.001790,0.234755,-0.002124,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000218,0.000192,0.000264,0.000000,0.000000,0.001764,0.232662,-0.002094,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000215,0.000190,0.000262,0.000000,0.000000,0.001738,0.230597,-0.002064,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000212,0.000187,0.000260,0.000000,0.000000,0.001713,0.228562,-0.002035,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000209,0.000184,0.000258,0.000000,0.000000,0.001689,0.226556,-0.002006,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000206,0.000181,0.000257,0.000147,0.000147,0.001664,0.224433,-0.002123,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000203,0.000178,0.000255,0.000402,0.000402,0.001640,0.222089,-0.002345,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000200,0.000175,0.000253,0.000571,0.000571,0.001616,0.219611,-0.002477,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000196,0.000172,0.000251,0.000702,0.000702,0.001591,0.217039,-0.002572,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000193,0.000168,0.000250,0.000737,0.000737,0.001566,0.214469,-0.002570,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000190,0.000165,0.000248,0.000701,0.000701,0.001541,0.211970,-0.002499,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000101,0.000000,0.000000,0.000000,0.000059,0.000187,0.000162,0.000246,0.000603,0.000603,0.001516,0.209703,-0.002267,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000013,0.000000,0.000000,0.000000,0.000060,0.000184,0.000159,0.000244,0.000534,0.000534,0.001491,0.207450,-0.002253,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000181,0.000156,0.000243,0.000453,0.000453,0.001467,0.205295,-0.002155,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000178,0.000154,0.000241,0.000349,0.000349,0.001443,0.203273,-0.002022,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000175,0.000151,0.000239,0.000212,0.000212,0.001419,0.201415,-0.001858,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000172,0.000149,0.000238,0.000074,0.000074,0.001396,0.199719,-0.001696,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000169,0.000147,0.000237,0.000000,0.000000,0.001374,0.198120,-0.001599,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000166,0.000145,0.000235,0.000000,0.000000,0.001352,0.196543,-0.001577,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000164,0.000143,0.000234,0.000000,0.000000,0.001331,0.194988,-0.001554,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000161,0.000141,0.000233,0.000000,0.000000,0.001311,0.193456,-0.001533,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000159,0.000139,0.000232,0.000000,0.000000,0.001291,0.191945,-0.001511,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000156,0.000137,0.000231,0.000000,0.000000,0.001271,0.190455,-0.001490,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000154,0.000135,0.000230,0.000000,0.000000,0.001252,0.188987,-0.001469,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000152,0.000133,0.000229,0.000000,0.000000,0.001234,0.187539,-0.001448,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000149,0.000131,0.000228,0.000000,0.000000,0.001215,0.186111,-0.001427,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000147,0.000129,0.000227,0.000000,0.000000,0.001198,0.184704,-0.001407,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000145,0.000127,0.000226,0.000000,0.000000,0.001180,0.183317,-0.001387,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000143,0.000126,0.000226,0.000000,0.000000,0.001163,0.181949,-0.001368,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000141,0.000124,0.000225,0.000144,0.000144,0.001146,0.180459,-0.001490,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000139,0.000121,0.000224,0.000400,0.000400,0.001129,0.178736,-0.001722,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000136,0.000119,0.000224,0.000573,0.000573,0.001111,0.176868,-0.001868,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000134,0.000116,0.000223,0.000708,0.000708,0.001094,0.174893,-0.001975,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000132,0.000114,0.000222,0.000816,0.000816,0.001075,0.172840,-0.002054,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000130,0.000111,0.000221,0.000773,0.000773,0.001057,0.170858,-0.001982,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000127,0.000109,0.000220,0.000665,0.000665,0.001038,0.169010,-0.001847,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000125,0.000106,0.000219,0.000540,0.000540,0.001020,0.167312,-0.001699,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000123,0.000104,0.000219,0.000465,0.000465,0.001001,0.165711,-0.001600,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000120,0.000102,0.000218,0.000358,0.000358,0.000983,0.164239,-0.001472,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000118,0.000101,0.000217,0.000224,0.000224,0.000966,0.162920,-0.001319,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000050,0.000000,0.000000,0.000000,0.000100,0.000116,0.000099,0.000216,0.000088,0.000088,0.000949,0.161802,-0.001118,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000114,0.000098,0.000216,0.000000,0.000000,0.000932,0.160738,-0.001064,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000112,0.000096,0.000215,0.000000,0.000000,0.000917,0.159689,-0.001049,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000110,0.000095,0.000215,0.000000,0.000000,0.000901,0.158655,-0.001034,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000108,0.000094,0.000215,0.000000,0.000000,0.000887,0.157635,-0.001020,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000107,0.000092,0.000214,0.000000,0.000000,0.000872,0.156629,-0.001005,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000105,0.000091,0.000214,0.000000,0.000000,0.000858,0.155638,-0.000991,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000103,0.000090,0.000214,0.000000,0.000000,0.000845,0.154661,-0.000977,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000102,0.000088,0.000213,0.000000,0.000000,0.000832,0.153697,-0.000963,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000100,0.000087,0.000213,0.000000,0.000000,0.000819,0.152748,-0.000950,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000099,0.000086,0.000213,0.000000,0.000000,0.000806,0.151811,-0.000936,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000097,0.000085,0.000213,0.000000,0.000000,0.000794,0.150888,-0.000923,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000096,0.000084,0.000213,0.000000,0.000000,0.000782,0.149978,-0.000910,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000094,0.000082,0.000213,0.000154,0.000154,0.000770,0.148929,-0.001049,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000093,0.000081,0.000213,0.000401,0.000401,0.000758,0.147651,-0.001278,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000091,0.000079,0.000213,0.000569,0.000569,0.000746,0.146225,-0.001426,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000089,0.000077,0.000213,0.000701,0.000701,0.000733,0.144690,-0.001536,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000088,0.000075,0.000213,0.000692,0.000692,0.000720,0.143185,-0.001504,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000106,0.000000,0.000000,0.000000,0.000126,0.000086,0.000073,0.000212,0.000657,0.000657,0.000707,0.141841,-0.001344,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000249,0.000000,0.000000,0.000000,0.000128,0.000085,0.000071,0.000212,0.000553,0.000553,0.000693,0.140759,-0.001082,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000113,0.000000,0.000000,0.000000,0.000129,0.000083,0.000070,0.000212,0.000479,0.000479,0.000680,0.139631,-0.001127,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000117,0.000000,0.000000,0.000000,0.000130,0.000081,0.000069,0.000212,0.000407,0.000407,0.000668,0.138594,-0.001037,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000166,0.000000,0.000000,0.000000,0.000132,0.000080,0.000067,0.000212,0.000316,0.000316,0.000655,0.137709,-0.000885,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000169,0.000000,0.000000,0.000000,0.000133,0.000078,0.000066,0.000212,0.000200,0.000200,0.000643,0.136955,-0.000755,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000748,0.000024,0.000044,0.000024,0.000135,0.000077,0.000066,0.000236,0.000085,0.000085,0.000633,0.136850,-0.000104,1.000000,0.000020 +122,2022-08-06 02:00:00,0.000764,0.000043,0.000058,0.000043,0.000136,0.000076,0.000066,0.000255,0.000000,0.000000,0.000623,0.136834,-0.000017,1.000000,0.000035 +123,2022-08-06 03:00:00,0.000718,0.000052,0.000052,0.000052,0.000137,0.000075,0.000066,0.000264,0.000000,0.000000,0.000614,0.136778,-0.000055,1.000000,0.000035 +124,2022-08-06 04:00:00,0.000701,0.000052,0.000049,0.000052,0.000139,0.000074,0.000066,0.000264,0.000000,0.000000,0.000607,0.136710,-0.000069,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000701,0.000050,0.000049,0.000050,0.000140,0.000073,0.000066,0.000263,0.000000,0.000000,0.000600,0.136642,-0.000068,1.000000,0.000032 +126,2022-08-06 06:00:00,0.000701,0.000050,0.000050,0.000050,0.000141,0.000072,0.000066,0.000263,0.000000,0.000000,0.000593,0.136575,-0.000066,1.000000,0.000032 +127,2022-08-06 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000143,0.000071,0.000065,0.000237,0.000000,0.000000,0.000587,0.135867,-0.000708,1.000000,0.000010 +128,2022-08-06 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000144,0.000071,0.000064,0.000225,0.000000,0.000000,0.000580,0.135169,-0.000698,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000070,0.000063,0.000215,0.000000,0.000000,0.000574,0.134481,-0.000688,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000069,0.000062,0.000216,0.000000,0.000000,0.000567,0.133802,-0.000679,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000068,0.000061,0.000216,0.000000,0.000000,0.000560,0.133133,-0.000669,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000067,0.000061,0.000217,0.000000,0.000000,0.000553,0.132473,-0.000660,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000067,0.000060,0.000217,0.000000,0.000000,0.000547,0.131823,-0.000650,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000066,0.000059,0.000218,0.000139,0.000139,0.000540,0.131044,-0.000779,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000065,0.000057,0.000218,0.000392,0.000392,0.000532,0.130028,-0.001016,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000064,0.000056,0.000219,0.000563,0.000563,0.000524,0.128857,-0.001171,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000063,0.000054,0.000219,0.000691,0.000691,0.000516,0.127577,-0.001280,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000062,0.000052,0.000219,0.000783,0.000783,0.000506,0.126223,-0.001353,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000060,0.000051,0.000219,0.000752,0.000752,0.000497,0.124920,-0.001303,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000059,0.000049,0.000219,0.000650,0.000650,0.000487,0.123735,-0.001184,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000058,0.000048,0.000220,0.000537,0.000537,0.000476,0.122679,-0.001056,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000046,0.000220,0.000460,0.000460,0.000466,0.121714,-0.000965,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000055,0.000045,0.000220,0.000351,0.000351,0.000456,0.120870,-0.000844,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000054,0.000044,0.000220,0.000214,0.000214,0.000446,0.120172,-0.000697,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000053,0.000044,0.000220,0.000072,0.000072,0.000437,0.119625,-0.000547,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000052,0.000043,0.000220,0.000000,0.000000,0.000428,0.119156,-0.000469,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000051,0.000042,0.000220,0.000000,0.000000,0.000419,0.118694,-0.000462,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000050,0.000042,0.000221,0.000000,0.000000,0.000411,0.118238,-0.000456,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000049,0.000041,0.000221,0.000000,0.000000,0.000403,0.117788,-0.000449,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000048,0.000041,0.000221,0.000000,0.000000,0.000396,0.117345,-0.000443,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000047,0.000040,0.000222,0.000000,0.000000,0.000389,0.116909,-0.000437,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000046,0.000040,0.000222,0.000000,0.000000,0.000382,0.116478,-0.000431,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000046,0.000039,0.000223,0.000000,0.000000,0.000375,0.116053,-0.000425,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000045,0.000038,0.000223,0.000000,0.000000,0.000369,0.115635,-0.000419,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000044,0.000038,0.000224,0.000000,0.000000,0.000363,0.115222,-0.000413,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000043,0.000037,0.000224,0.000000,0.000000,0.000357,0.114815,-0.000407,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000043,0.000037,0.000225,0.000000,0.000000,0.000351,0.114414,-0.000401,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000036,0.000225,0.000134,0.000134,0.000345,0.113887,-0.000527,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000041,0.000035,0.000226,0.000380,0.000380,0.000339,0.113124,-0.000763,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000040,0.000034,0.000226,0.000555,0.000555,0.000333,0.112200,-0.000924,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000033,0.000226,0.000687,0.000687,0.000326,0.111158,-0.001042,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000031,0.000227,0.000774,0.000774,0.000318,0.110045,-0.001113,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000030,0.000227,0.000741,0.000741,0.000310,0.108981,-0.001065,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000028,0.000227,0.000629,0.000629,0.000302,0.108042,-0.000939,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000036,0.000027,0.000227,0.000554,0.000554,0.000294,0.107189,-0.000852,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000026,0.000227,0.000474,0.000474,0.000286,0.106428,-0.000761,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000026,0.000228,0.000357,0.000357,0.000277,0.105794,-0.000635,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000025,0.000228,0.000195,0.000195,0.000270,0.105328,-0.000466,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000024,0.000228,0.000037,0.000037,0.000262,0.105024,-0.000304,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000024,0.000228,0.000000,0.000000,0.000255,0.104761,-0.000263,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000229,0.000000,0.000000,0.000249,0.104502,-0.000259,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000050,0.000000,0.000000,0.000000,0.000200,0.000029,0.000024,0.000229,0.000000,0.000000,0.000243,0.104295,-0.000207,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000092,0.000001,0.000001,0.000001,0.000201,0.000029,0.000023,0.000230,0.000000,0.000000,0.000238,0.104131,-0.000163,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000230,0.000000,0.000000,0.000232,0.103881,-0.000250,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000028,0.000023,0.000231,0.000000,0.000000,0.000228,0.103634,-0.000247,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000231,0.000000,0.000000,0.000223,0.103391,-0.000243,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000232,0.000000,0.000000,0.000218,0.103151,-0.000240,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000022,0.000232,0.000000,0.000000,0.000214,0.102914,-0.000237,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000233,0.000000,0.000000,0.000210,0.102681,-0.000233,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000021,0.000233,0.000000,0.000000,0.000206,0.102451,-0.000230,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000025,0.000021,0.000234,0.000000,0.000000,0.000203,0.102225,-0.000227,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000117,0.000117,0.000199,0.101886,-0.000339,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000024,0.000020,0.000235,0.000370,0.000370,0.000195,0.101302,-0.000584,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000544,0.000544,0.000190,0.100555,-0.000747,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000017,0.000236,0.000677,0.000677,0.000185,0.099688,-0.000868,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000016,0.000237,0.000783,0.000783,0.000180,0.098728,-0.000960,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000015,0.000237,0.000757,0.000757,0.000174,0.097808,-0.000921,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000014,0.000237,0.000647,0.000647,0.000167,0.097009,-0.000799,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000013,0.000237,0.000569,0.000569,0.000161,0.096298,-0.000711,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000012,0.000238,0.000485,0.000485,0.000155,0.095680,-0.000618,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000012,0.000238,0.000369,0.000369,0.000148,0.095185,-0.000495,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000017,0.000011,0.000238,0.000215,0.000215,0.000142,0.094848,-0.000336,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000017,0.000011,0.000238,0.000061,0.000061,0.000136,0.094669,-0.000179,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000011,0.000239,0.000000,0.000000,0.000131,0.094552,-0.000117,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000011,0.000239,0.000000,0.000000,0.000127,0.094437,-0.000115,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000010,0.000240,0.000000,0.000000,0.000122,0.094324,-0.000114,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000010,0.000240,0.000000,0.000000,0.000118,0.094212,-0.000112,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000010,0.000241,0.000000,0.000000,0.000114,0.094101,-0.000110,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000010,0.000241,0.000000,0.000000,0.000111,0.093992,-0.000109,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000010,0.000242,0.000000,0.000000,0.000108,0.093885,-0.000107,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000010,0.000242,0.000000,0.000000,0.000105,0.093779,-0.000106,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000010,0.000243,0.000000,0.000000,0.000102,0.093675,-0.000104,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000009,0.000244,0.000000,0.000000,0.000099,0.093572,-0.000103,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000009,0.000244,0.000000,0.000000,0.000097,0.093471,-0.000101,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000011,0.000009,0.000245,0.000000,0.000000,0.000095,0.093371,-0.000100,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000011,0.000009,0.000246,0.000130,0.000000,0.000093,0.093273,-0.000099,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620862.csv b/test/channel_loss/channel_forcing/et/cat-2620862.csv new file mode 100644 index 000000000..704bbf0d6 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620862.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000300,0.000002,0.000004,0.000002,0.000000,0.001441,0.000154,0.001444,0.000209,0.000209,0.010288,0.428740,-0.004761,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000001,0.000001,0.000000,0.000001,0.000000,0.001265,0.000152,0.001266,0.000071,0.000071,0.009175,0.423885,-0.004854,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001115,0.000150,0.001116,0.000000,0.000000,0.008209,0.419161,-0.004725,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000989,0.000148,0.000989,0.000000,0.000000,0.007368,0.414496,-0.004665,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000881,0.000146,0.000881,0.000000,0.000000,0.006633,0.409890,-0.004606,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000000,0.000788,0.000144,0.000789,0.000000,0.000000,0.005989,0.405344,-0.004546,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000708,0.000142,0.000709,0.000000,0.000000,0.005424,0.400854,-0.004490,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000638,0.000141,0.000639,0.000000,0.000000,0.004926,0.396420,-0.004433,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000578,0.000139,0.000579,0.000000,0.000000,0.004487,0.392043,-0.004377,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000525,0.000137,0.000527,0.000000,0.000000,0.004098,0.387721,-0.004322,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000479,0.000135,0.000481,0.000000,0.000000,0.003755,0.383454,-0.004267,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000438,0.000134,0.000440,0.000000,0.000000,0.003451,0.379240,-0.004213,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000402,0.000132,0.000405,0.000000,0.000000,0.003180,0.375080,-0.004160,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000371,0.000130,0.000374,0.000000,0.000000,0.002940,0.370973,-0.004107,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000343,0.000129,0.000346,0.000153,0.000153,0.002726,0.366766,-0.004207,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000318,0.000127,0.000322,0.000405,0.000405,0.002535,0.362364,-0.004402,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000296,0.000125,0.000300,0.000574,0.000574,0.002364,0.357851,-0.004513,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000276,0.000123,0.000281,0.000700,0.000700,0.002211,0.353270,-0.004581,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000258,0.000121,0.000264,0.000660,0.000660,0.002074,0.348787,-0.004484,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000150,0.000000,0.000000,0.000000,0.000006,0.000243,0.000119,0.000249,0.000620,0.000620,0.001951,0.344547,-0.004239,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000153,0.000000,0.000000,0.000000,0.000007,0.000228,0.000118,0.000236,0.000535,0.000535,0.001840,0.340449,-0.004099,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000175,0.000000,0.000000,0.000000,0.000008,0.000216,0.000116,0.000224,0.000418,0.000418,0.001741,0.336539,-0.003909,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000226,0.000000,0.000000,0.000000,0.000009,0.000204,0.000115,0.000213,0.000366,0.000366,0.001651,0.332781,-0.003758,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000299,0.000000,0.000000,0.000000,0.000009,0.000194,0.000113,0.000204,0.000285,0.000285,0.001570,0.329222,-0.003559,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000314,0.000004,0.000008,0.000004,0.000010,0.000185,0.000112,0.000200,0.000177,0.000177,0.001497,0.325821,-0.003400,1.000000,0.000004 +25,2022-08-02 01:00:00,0.000811,0.000100,0.000179,0.000100,0.000011,0.000177,0.000111,0.000288,0.000085,0.000085,0.001431,0.322877,-0.002945,1.000000,0.000082 +26,2022-08-02 02:00:00,0.000727,0.000145,0.000179,0.000145,0.000012,0.000169,0.000110,0.000326,0.000000,0.000000,0.001371,0.319970,-0.002906,1.000000,0.000116 +27,2022-08-02 03:00:00,0.000692,0.000170,0.000163,0.000170,0.000013,0.000162,0.000108,0.000345,0.000000,0.000000,0.001317,0.317082,-0.002889,1.000000,0.000109 +28,2022-08-02 04:00:00,0.000708,0.000170,0.000169,0.000170,0.000014,0.000156,0.000107,0.000339,0.000000,0.000000,0.001268,0.314239,-0.002842,1.000000,0.000109 +29,2022-08-02 05:00:00,0.000700,0.000166,0.000165,0.000166,0.000014,0.000151,0.000106,0.000331,0.000000,0.000000,0.001224,0.311429,-0.002810,1.000000,0.000108 +30,2022-08-02 06:00:00,0.000704,0.000167,0.000166,0.000167,0.000015,0.000146,0.000105,0.000328,0.000000,0.000000,0.001183,0.308657,-0.002772,1.000000,0.000108 +31,2022-08-02 07:00:00,0.000000,0.000075,0.000000,0.000075,0.000016,0.000141,0.000104,0.000232,0.000000,0.000000,0.001146,0.305390,-0.003268,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000137,0.000102,0.000187,0.000000,0.000000,0.001111,0.302164,-0.003226,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000133,0.000101,0.000151,0.000000,0.000000,0.001080,0.298978,-0.003185,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000129,0.000100,0.000148,0.000000,0.000000,0.001050,0.295833,-0.003145,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000126,0.000098,0.000146,0.000000,0.000000,0.001023,0.292727,-0.003105,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000122,0.000097,0.000144,0.000000,0.000000,0.000998,0.289661,-0.003066,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000120,0.000096,0.000142,0.000000,0.000000,0.000974,0.286634,-0.003027,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000117,0.000095,0.000141,0.000129,0.000129,0.000952,0.283517,-0.003116,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000114,0.000093,0.000139,0.000350,0.000350,0.000932,0.280222,-0.003295,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000112,0.000092,0.000138,0.000498,0.000498,0.000912,0.276822,-0.003400,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000109,0.000091,0.000137,0.000613,0.000613,0.000893,0.273352,-0.003471,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000037,0.000000,0.000000,0.000000,0.000028,0.000107,0.000089,0.000136,0.000714,0.000714,0.000875,0.269862,-0.003490,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000105,0.000088,0.000135,0.000683,0.000683,0.000858,0.266410,-0.003452,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000103,0.000086,0.000134,0.000581,0.000581,0.000841,0.263103,-0.003307,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000101,0.000085,0.000133,0.000527,0.000527,0.000825,0.259891,-0.003212,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000099,0.000084,0.000132,0.000454,0.000454,0.000810,0.256792,-0.003099,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000097,0.000083,0.000132,0.000352,0.000352,0.000795,0.253832,-0.002960,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000096,0.000082,0.000131,0.000214,0.000214,0.000781,0.251047,-0.002785,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000094,0.000080,0.000131,0.000059,0.000059,0.000768,0.248449,-0.002598,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000092,0.000079,0.000131,0.000000,0.000000,0.000755,0.245942,-0.002506,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000091,0.000078,0.000131,0.000000,0.000000,0.000743,0.243468,-0.002475,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000089,0.000077,0.000130,0.000000,0.000000,0.000731,0.241024,-0.002443,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000088,0.000076,0.000130,0.000000,0.000000,0.000719,0.238612,-0.002412,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000087,0.000076,0.000130,0.000000,0.000000,0.000708,0.236230,-0.002382,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000085,0.000075,0.000130,0.000000,0.000000,0.000697,0.233878,-0.002352,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000084,0.000074,0.000131,0.000000,0.000000,0.000687,0.231556,-0.002322,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000083,0.000073,0.000131,0.000000,0.000000,0.000677,0.229263,-0.002293,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000082,0.000072,0.000131,0.000000,0.000000,0.000667,0.227000,-0.002264,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000080,0.000071,0.000131,0.000000,0.000000,0.000658,0.224765,-0.002235,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000079,0.000070,0.000132,0.000000,0.000000,0.000649,0.222558,-0.002207,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000078,0.000069,0.000132,0.000000,0.000000,0.000640,0.220379,-0.002179,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000077,0.000068,0.000132,0.000149,0.000149,0.000631,0.218080,-0.002298,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000076,0.000067,0.000133,0.000407,0.000407,0.000622,0.215556,-0.002525,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000075,0.000066,0.000133,0.000576,0.000576,0.000613,0.212897,-0.002659,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000074,0.000065,0.000133,0.000703,0.000703,0.000604,0.210145,-0.002751,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000073,0.000064,0.000134,0.000741,0.000741,0.000595,0.207392,-0.002754,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000072,0.000063,0.000134,0.000704,0.000704,0.000587,0.204710,-0.002682,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000117,0.000000,0.000000,0.000000,0.000064,0.000070,0.000062,0.000135,0.000605,0.000605,0.000578,0.202274,-0.002435,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000031,0.000000,0.000000,0.000000,0.000066,0.000069,0.000061,0.000135,0.000539,0.000539,0.000569,0.199850,-0.002424,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000068,0.000060,0.000136,0.000460,0.000460,0.000560,0.197504,-0.002346,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000067,0.000059,0.000136,0.000355,0.000355,0.000552,0.195291,-0.002212,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000066,0.000058,0.000137,0.000215,0.000215,0.000544,0.193245,-0.002047,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000065,0.000057,0.000137,0.000074,0.000074,0.000536,0.191363,-0.001881,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000064,0.000057,0.000138,0.000000,0.000000,0.000528,0.189579,-0.001785,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000063,0.000056,0.000138,0.000000,0.000000,0.000520,0.187817,-0.001762,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000063,0.000055,0.000139,0.000000,0.000000,0.000513,0.186077,-0.001740,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000062,0.000054,0.000140,0.000000,0.000000,0.000506,0.184359,-0.001718,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000061,0.000054,0.000140,0.000000,0.000000,0.000499,0.182663,-0.001696,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000060,0.000053,0.000141,0.000000,0.000000,0.000492,0.180989,-0.001675,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000059,0.000052,0.000142,0.000000,0.000000,0.000485,0.179336,-0.001653,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000058,0.000052,0.000143,0.000000,0.000000,0.000479,0.177703,-0.001632,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000058,0.000051,0.000144,0.000000,0.000000,0.000472,0.176091,-0.001612,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000057,0.000050,0.000144,0.000000,0.000000,0.000466,0.174500,-0.001591,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000056,0.000050,0.000145,0.000000,0.000000,0.000460,0.172929,-0.001571,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000055,0.000049,0.000146,0.000000,0.000000,0.000454,0.171377,-0.001551,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000055,0.000049,0.000147,0.000146,0.000146,0.000448,0.169702,-0.001676,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000054,0.000048,0.000148,0.000405,0.000405,0.000442,0.167791,-0.001910,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000053,0.000047,0.000149,0.000577,0.000577,0.000435,0.165735,-0.002056,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000052,0.000046,0.000149,0.000710,0.000710,0.000429,0.163574,-0.002161,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000051,0.000045,0.000150,0.000820,0.000820,0.000423,0.161332,-0.002242,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000051,0.000044,0.000151,0.000781,0.000781,0.000416,0.159156,-0.002176,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000050,0.000043,0.000152,0.000671,0.000671,0.000410,0.157116,-0.002040,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000049,0.000043,0.000153,0.000544,0.000544,0.000403,0.155228,-0.001888,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000048,0.000042,0.000154,0.000471,0.000471,0.000397,0.153435,-0.001793,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000048,0.000041,0.000154,0.000364,0.000364,0.000391,0.151771,-0.001664,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000047,0.000041,0.000155,0.000226,0.000226,0.000384,0.150263,-0.001507,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000110,0.000046,0.000040,0.000156,0.000089,0.000089,0.000378,0.148912,-0.001351,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000045,0.000040,0.000157,0.000000,0.000000,0.000373,0.147665,-0.001248,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000045,0.000039,0.000158,0.000000,0.000000,0.000367,0.146433,-0.001232,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000044,0.000039,0.000159,0.000000,0.000000,0.000362,0.145216,-0.001216,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000043,0.000038,0.000160,0.000000,0.000000,0.000356,0.144015,-0.001201,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000043,0.000038,0.000161,0.000000,0.000000,0.000351,0.142829,-0.001186,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000042,0.000037,0.000162,0.000000,0.000000,0.000346,0.141658,-0.001171,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000042,0.000037,0.000163,0.000000,0.000000,0.000341,0.140502,-0.001156,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000041,0.000036,0.000164,0.000000,0.000000,0.000337,0.139361,-0.001141,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000040,0.000036,0.000165,0.000000,0.000000,0.000332,0.138234,-0.001127,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000040,0.000035,0.000166,0.000000,0.000000,0.000327,0.137121,-0.001113,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000039,0.000035,0.000167,0.000000,0.000000,0.000323,0.136023,-0.001099,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000039,0.000034,0.000168,0.000000,0.000000,0.000319,0.134938,-0.001085,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000038,0.000034,0.000170,0.000156,0.000156,0.000314,0.133712,-0.001226,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000038,0.000033,0.000171,0.000405,0.000405,0.000310,0.132257,-0.001456,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000037,0.000033,0.000172,0.000574,0.000574,0.000305,0.130653,-0.001603,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000037,0.000032,0.000173,0.000704,0.000704,0.000301,0.128941,-0.001712,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000036,0.000031,0.000174,0.000698,0.000698,0.000296,0.127257,-0.001684,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000035,0.000031,0.000175,0.000666,0.000666,0.000291,0.125751,-0.001506,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000165,0.000000,0.000000,0.000000,0.000141,0.000035,0.000030,0.000176,0.000564,0.000564,0.000287,0.124402,-0.001349,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000144,0.000000,0.000000,0.000000,0.000143,0.000034,0.000030,0.000177,0.000484,0.000484,0.000282,0.123128,-0.001274,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000144,0.000034,0.000029,0.000178,0.000411,0.000411,0.000277,0.121925,-0.001203,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000227,0.000000,0.000000,0.000000,0.000146,0.000033,0.000029,0.000179,0.000322,0.000322,0.000273,0.120925,-0.001000,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000188,0.000000,0.000000,0.000000,0.000147,0.000033,0.000028,0.000180,0.000201,0.000201,0.000269,0.120018,-0.000906,1.000000,0.000000 +121,2022-08-06 01:00:00,0.001015,0.000119,0.000216,0.000119,0.000149,0.000032,0.000028,0.000300,0.000086,0.000086,0.000265,0.119839,-0.000179,1.000000,0.000097 +122,2022-08-06 02:00:00,0.001041,0.000199,0.000264,0.000199,0.000151,0.000032,0.000028,0.000382,0.000000,0.000000,0.000261,0.119726,-0.000113,1.000000,0.000162 +123,2022-08-06 03:00:00,0.000996,0.000244,0.000244,0.000244,0.000152,0.000031,0.000028,0.000427,0.000000,0.000000,0.000258,0.119589,-0.000137,1.000000,0.000163 +124,2022-08-06 04:00:00,0.000978,0.000244,0.000237,0.000244,0.000154,0.000031,0.000028,0.000429,0.000000,0.000000,0.000255,0.119445,-0.000145,1.000000,0.000155 +125,2022-08-06 05:00:00,0.000973,0.000237,0.000234,0.000237,0.000155,0.000031,0.000028,0.000423,0.000000,0.000000,0.000252,0.119298,-0.000146,1.000000,0.000153 +126,2022-08-06 06:00:00,0.000981,0.000237,0.000238,0.000237,0.000157,0.000030,0.000028,0.000424,0.000000,0.000000,0.000250,0.119159,-0.000140,1.000000,0.000154 +127,2022-08-06 07:00:00,0.000000,0.000106,0.000000,0.000106,0.000158,0.000030,0.000028,0.000295,0.000000,0.000000,0.000248,0.118287,-0.000872,1.000000,0.000048 +128,2022-08-06 08:00:00,0.000000,0.000048,0.000000,0.000048,0.000160,0.000030,0.000027,0.000237,0.000000,0.000000,0.000245,0.117427,-0.000861,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000029,0.000027,0.000191,0.000000,0.000000,0.000243,0.116577,-0.000850,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000029,0.000027,0.000192,0.000000,0.000000,0.000240,0.115738,-0.000839,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000029,0.000026,0.000194,0.000000,0.000000,0.000237,0.114910,-0.000828,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000029,0.000026,0.000195,0.000000,0.000000,0.000235,0.114092,-0.000818,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000028,0.000026,0.000196,0.000000,0.000000,0.000232,0.113285,-0.000807,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000028,0.000025,0.000197,0.000142,0.000142,0.000230,0.112348,-0.000937,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000028,0.000025,0.000199,0.000397,0.000397,0.000227,0.111171,-0.001177,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000027,0.000024,0.000200,0.000568,0.000568,0.000224,0.109839,-0.001332,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000027,0.000024,0.000201,0.000695,0.000695,0.000221,0.108399,-0.001440,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000026,0.000023,0.000202,0.000793,0.000793,0.000217,0.106880,-0.001519,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000026,0.000022,0.000203,0.000760,0.000760,0.000214,0.105414,-0.001467,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000026,0.000022,0.000204,0.000656,0.000656,0.000210,0.104069,-0.001345,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000025,0.000021,0.000205,0.000545,0.000545,0.000206,0.102850,-0.001219,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000025,0.000021,0.000206,0.000467,0.000467,0.000203,0.101723,-0.001127,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000024,0.000020,0.000207,0.000359,0.000359,0.000199,0.100718,-0.001005,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000024,0.000020,0.000208,0.000218,0.000218,0.000195,0.099864,-0.000854,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000023,0.000020,0.000210,0.000072,0.000072,0.000192,0.099165,-0.000699,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000023,0.000020,0.000211,0.000000,0.000000,0.000189,0.098547,-0.000619,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000023,0.000019,0.000212,0.000000,0.000000,0.000186,0.097936,-0.000611,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000022,0.000019,0.000213,0.000000,0.000000,0.000183,0.097333,-0.000603,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000022,0.000019,0.000214,0.000000,0.000000,0.000180,0.096737,-0.000596,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000021,0.000019,0.000215,0.000000,0.000000,0.000177,0.096149,-0.000588,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000021,0.000018,0.000216,0.000000,0.000000,0.000174,0.095568,-0.000581,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000021,0.000018,0.000217,0.000000,0.000000,0.000171,0.094995,-0.000573,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000020,0.000018,0.000219,0.000000,0.000000,0.000169,0.094429,-0.000566,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000020,0.000018,0.000220,0.000000,0.000000,0.000166,0.093870,-0.000559,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000020,0.000017,0.000221,0.000000,0.000000,0.000164,0.093318,-0.000552,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000020,0.000017,0.000222,0.000000,0.000000,0.000162,0.092774,-0.000545,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000019,0.000017,0.000223,0.000000,0.000000,0.000159,0.092236,-0.000538,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000019,0.000017,0.000224,0.000136,0.000000,0.000157,0.091705,-0.000531,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000017,0.000226,0.000386,0.000000,0.000155,0.091180,-0.000524,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000227,0.000561,0.000000,0.000153,0.090662,-0.000518,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000016,0.000228,0.000690,0.000000,0.000151,0.090151,-0.000511,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000018,0.000016,0.000229,0.000782,0.000000,0.000149,0.089646,-0.000505,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000018,0.000016,0.000230,0.000747,0.000000,0.000147,0.089148,-0.000498,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000018,0.000016,0.000231,0.000637,0.000000,0.000145,0.088656,-0.000492,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000015,0.000232,0.000562,0.000000,0.000143,0.088170,-0.000486,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000015,0.000234,0.000481,0.000000,0.000141,0.087690,-0.000480,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000015,0.000235,0.000363,0.000000,0.000139,0.087217,-0.000474,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000015,0.000236,0.000194,0.000000,0.000137,0.086749,-0.000468,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000015,0.000237,0.000036,0.000000,0.000135,0.086287,-0.000462,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000016,0.000014,0.000238,0.000000,0.000000,0.000134,0.085831,-0.000456,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000016,0.000014,0.000239,0.000000,0.000000,0.000132,0.085381,-0.000450,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000002,0.000000,0.000000,0.000000,0.000225,0.000016,0.000014,0.000241,0.000000,0.000000,0.000130,0.084938,-0.000443,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000012,0.000000,0.000000,0.000000,0.000226,0.000016,0.000014,0.000242,0.000000,0.000000,0.000129,0.084512,-0.000427,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000014,0.000243,0.000000,0.000000,0.000127,0.084078,-0.000433,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000014,0.000244,0.000000,0.000000,0.000125,0.083650,-0.000428,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000013,0.000245,0.000000,0.000000,0.000124,0.083228,-0.000423,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000015,0.000013,0.000246,0.000000,0.000000,0.000122,0.082810,-0.000417,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000013,0.000247,0.000000,0.000000,0.000121,0.082398,-0.000412,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000013,0.000248,0.000000,0.000000,0.000119,0.081992,-0.000407,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000014,0.000013,0.000250,0.000000,0.000000,0.000118,0.081590,-0.000402,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000251,0.000000,0.000000,0.000116,0.081193,-0.000397,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000119,0.000000,0.000115,0.080802,-0.000392,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000253,0.000375,0.000000,0.000113,0.080415,-0.000387,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000550,0.000000,0.000112,0.080034,-0.000382,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000012,0.000255,0.000681,0.000000,0.000110,0.079657,-0.000377,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000012,0.000256,0.000788,0.000000,0.000109,0.079285,-0.000372,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000012,0.000257,0.000758,0.000000,0.000107,0.078917,-0.000367,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000013,0.000011,0.000258,0.000647,0.000000,0.000106,0.078555,-0.000363,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000013,0.000011,0.000259,0.000573,0.000000,0.000105,0.078197,-0.000358,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000011,0.000260,0.000489,0.000000,0.000103,0.077843,-0.000354,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000012,0.000011,0.000262,0.000373,0.000000,0.000102,0.077494,-0.000349,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000012,0.000011,0.000263,0.000216,0.000000,0.000101,0.077149,-0.000345,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000012,0.000011,0.000264,0.000060,0.000000,0.000100,0.076809,-0.000340,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000098,0.076473,-0.000336,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000097,0.076141,-0.000332,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000010,0.000267,0.000000,0.000000,0.000096,0.075813,-0.000328,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000011,0.000010,0.000268,0.000000,0.000000,0.000095,0.075490,-0.000323,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000011,0.000010,0.000269,0.000000,0.000000,0.000093,0.075170,-0.000319,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000011,0.000010,0.000270,0.000000,0.000000,0.000092,0.074855,-0.000315,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000011,0.000010,0.000271,0.000000,0.000000,0.000091,0.074544,-0.000311,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000011,0.000010,0.000272,0.000000,0.000000,0.000090,0.074236,-0.000307,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000011,0.000010,0.000273,0.000000,0.000000,0.000089,0.073933,-0.000304,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000011,0.000010,0.000274,0.000000,0.000000,0.000088,0.073633,-0.000300,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000010,0.000009,0.000275,0.000000,0.000000,0.000087,0.073337,-0.000296,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000010,0.000009,0.000276,0.000000,0.000000,0.000085,0.073045,-0.000292,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000010,0.000009,0.000277,0.000131,0.000000,0.000084,0.072756,-0.000288,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620863.csv b/test/channel_loss/channel_forcing/et/cat-2620863.csv new file mode 100644 index 000000000..3a88521e8 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620863.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000192,0.000000,0.000000,0.000000,0.000000,0.001584,0.001169,0.001584,0.000205,0.000205,0.011180,0.417980,-0.005809,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001523,0.001150,0.001523,0.000067,0.000067,0.010807,0.412211,-0.005769,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001468,0.001132,0.001468,0.000000,0.000000,0.010471,0.406599,-0.005612,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001419,0.001114,0.001419,0.000000,0.000000,0.010166,0.401076,-0.005523,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001374,0.001096,0.001375,0.000000,0.000000,0.009888,0.395641,-0.005435,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001334,0.001079,0.001334,0.000000,0.000000,0.009633,0.390292,-0.005349,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001297,0.001062,0.001297,0.000000,0.000000,0.009398,0.385028,-0.005264,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001263,0.001045,0.001263,0.000000,0.000000,0.009180,0.379848,-0.005180,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001231,0.001028,0.001232,0.000000,0.000000,0.008977,0.374750,-0.005098,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001202,0.001012,0.001203,0.000000,0.000000,0.008788,0.369733,-0.005017,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001174,0.000996,0.001176,0.000000,0.000000,0.008609,0.364796,-0.004937,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001148,0.000980,0.001151,0.000000,0.000000,0.008441,0.359937,-0.004859,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001124,0.000964,0.001127,0.000000,0.000000,0.008281,0.355155,-0.004782,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001101,0.000949,0.001104,0.000000,0.000000,0.008129,0.350449,-0.004706,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001079,0.000934,0.001082,0.000151,0.000151,0.007984,0.345670,-0.004780,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.001058,0.000917,0.001062,0.000404,0.000404,0.007843,0.340717,-0.004953,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.001037,0.000901,0.001042,0.000575,0.000575,0.007707,0.335674,-0.005042,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.001018,0.000885,0.001023,0.000688,0.000688,0.007574,0.330601,-0.005073,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000998,0.000868,0.001004,0.000641,0.000641,0.007444,0.325655,-0.004946,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000240,0.000000,0.000000,0.000000,0.000006,0.000980,0.000853,0.000986,0.000602,0.000602,0.007318,0.321061,-0.004593,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000301,0.000000,0.000000,0.000000,0.000007,0.000961,0.000839,0.000968,0.000528,0.000528,0.007196,0.316674,-0.004387,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000465,0.000000,0.000000,0.000000,0.000008,0.000944,0.000826,0.000952,0.000415,0.000415,0.007078,0.312629,-0.004045,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000334,0.000000,0.000000,0.000000,0.000008,0.000927,0.000813,0.000936,0.000365,0.000365,0.006963,0.308569,-0.004060,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000458,0.000001,0.000002,0.000001,0.000009,0.000911,0.000800,0.000921,0.000282,0.000282,0.006852,0.304774,-0.003795,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000365,0.000002,0.000002,0.000002,0.000010,0.000895,0.000788,0.000907,0.000176,0.000176,0.006745,0.301053,-0.003721,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000845,0.000018,0.000031,0.000018,0.000011,0.000881,0.000778,0.000909,0.000084,0.000084,0.006643,0.297924,-0.003128,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000987,0.000037,0.000052,0.000037,0.000011,0.000866,0.000769,0.000915,0.000000,0.000000,0.006545,0.295048,-0.002876,1.000000,0.000030 +27,2022-08-02 03:00:00,0.000863,0.000041,0.000040,0.000041,0.000012,0.000853,0.000759,0.000906,0.000000,0.000000,0.006452,0.292107,-0.002941,1.000000,0.000028 +28,2022-08-02 04:00:00,0.000971,0.000048,0.000050,0.000048,0.000013,0.000840,0.000750,0.000901,0.000000,0.000000,0.006362,0.289310,-0.002798,1.000000,0.000030 +29,2022-08-02 05:00:00,0.000880,0.000043,0.000041,0.000043,0.000014,0.000827,0.000741,0.000884,0.000000,0.000000,0.006275,0.286475,-0.002834,1.000000,0.000028 +30,2022-08-02 06:00:00,0.000800,0.000039,0.000034,0.000039,0.000015,0.000815,0.000732,0.000869,0.000000,0.000000,0.006191,0.283614,-0.002861,1.000000,0.000023 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000016,0.000803,0.000720,0.000836,0.000000,0.000000,0.006108,0.280045,-0.003570,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000017,0.000792,0.000709,0.000815,0.000000,0.000000,0.006025,0.276532,-0.003513,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000780,0.000697,0.000797,0.000000,0.000000,0.005942,0.273075,-0.003457,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000768,0.000686,0.000787,0.000000,0.000000,0.005860,0.269673,-0.003402,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000757,0.000675,0.000776,0.000000,0.000000,0.005779,0.266324,-0.003348,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000745,0.000665,0.000766,0.000000,0.000000,0.005698,0.263029,-0.003295,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000734,0.000654,0.000755,0.000000,0.000000,0.005618,0.259787,-0.003243,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000723,0.000643,0.000745,0.000123,0.000123,0.005539,0.256475,-0.003312,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000712,0.000632,0.000735,0.000346,0.000346,0.005459,0.252995,-0.003479,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000700,0.000620,0.000725,0.000493,0.000493,0.005379,0.249427,-0.003568,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000689,0.000609,0.000715,0.000601,0.000601,0.005299,0.245809,-0.003618,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000273,0.000000,0.000000,0.000000,0.000027,0.000678,0.000597,0.000705,0.000699,0.000699,0.005218,0.242421,-0.003388,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000667,0.000586,0.000695,0.000664,0.000664,0.005138,0.238851,-0.003569,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000655,0.000575,0.000685,0.000569,0.000569,0.005057,0.235433,-0.003418,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000644,0.000564,0.000675,0.000527,0.000527,0.004977,0.232110,-0.003323,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000633,0.000554,0.000665,0.000455,0.000455,0.004897,0.228912,-0.003199,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000622,0.000544,0.000655,0.000347,0.000347,0.004818,0.225869,-0.003042,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000612,0.000534,0.000645,0.000212,0.000212,0.004741,0.223008,-0.002861,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000601,0.000526,0.000636,0.000056,0.000056,0.004665,0.220346,-0.002662,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000591,0.000517,0.000627,0.000000,0.000000,0.004591,0.217781,-0.002565,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000581,0.000509,0.000619,0.000000,0.000000,0.004519,0.215257,-0.002524,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000572,0.000501,0.000610,0.000000,0.000000,0.004449,0.212773,-0.002484,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000562,0.000493,0.000602,0.000000,0.000000,0.004380,0.210329,-0.002444,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000553,0.000485,0.000594,0.000000,0.000000,0.004312,0.207923,-0.002406,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000544,0.000477,0.000586,0.000000,0.000000,0.004245,0.205555,-0.002367,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000535,0.000470,0.000579,0.000000,0.000000,0.004180,0.203226,-0.002330,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000526,0.000462,0.000571,0.000000,0.000000,0.004116,0.200933,-0.002293,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000518,0.000455,0.000564,0.000000,0.000000,0.004053,0.198676,-0.002256,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000510,0.000448,0.000557,0.000000,0.000000,0.003992,0.196456,-0.002221,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000501,0.000441,0.000550,0.000000,0.000000,0.003931,0.194270,-0.002185,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000493,0.000434,0.000544,0.000000,0.000000,0.003871,0.192120,-0.002151,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000485,0.000426,0.000537,0.000147,0.000147,0.003812,0.189858,-0.002262,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000478,0.000418,0.000530,0.000408,0.000408,0.003753,0.187376,-0.002482,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000470,0.000410,0.000524,0.000577,0.000577,0.003693,0.184767,-0.002609,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000461,0.000401,0.000517,0.000690,0.000690,0.003633,0.182088,-0.002679,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000453,0.000392,0.000510,0.000730,0.000730,0.003572,0.179412,-0.002676,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000445,0.000384,0.000503,0.000695,0.000695,0.003511,0.176814,-0.002598,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001122,0.000007,0.000013,0.000007,0.000060,0.000437,0.000379,0.000504,0.000592,0.000592,0.003453,0.175449,-0.001365,1.000000,0.000006 +69,2022-08-03 21:00:00,0.000318,0.000003,0.000000,0.000003,0.000061,0.000430,0.000373,0.000494,0.000540,0.000540,0.003396,0.173378,-0.002071,1.000000,0.000003 +70,2022-08-03 22:00:00,0.000000,0.000003,0.000000,0.000003,0.000062,0.000422,0.000365,0.000487,0.000461,0.000461,0.003339,0.171106,-0.002272,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000415,0.000358,0.000479,0.000355,0.000355,0.003282,0.168974,-0.002132,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000408,0.000352,0.000473,0.000215,0.000215,0.003227,0.167013,-0.001960,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000400,0.000346,0.000467,0.000070,0.000070,0.003172,0.165227,-0.001786,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000393,0.000341,0.000461,0.000000,0.000000,0.003120,0.163538,-0.001689,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000387,0.000335,0.000456,0.000000,0.000000,0.003068,0.161875,-0.001663,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000380,0.000330,0.000451,0.000000,0.000000,0.003018,0.160239,-0.001636,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000374,0.000325,0.000446,0.000000,0.000000,0.002969,0.158629,-0.001610,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000367,0.000320,0.000441,0.000000,0.000000,0.002921,0.157044,-0.001585,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000361,0.000315,0.000436,0.000000,0.000000,0.002875,0.155485,-0.001559,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000355,0.000310,0.000431,0.000000,0.000000,0.002829,0.153950,-0.001535,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000349,0.000305,0.000427,0.000000,0.000000,0.002784,0.152440,-0.001510,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000344,0.000300,0.000423,0.000000,0.000000,0.002740,0.150954,-0.001486,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000338,0.000295,0.000419,0.000000,0.000000,0.002697,0.149491,-0.001463,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000333,0.000290,0.000414,0.000000,0.000000,0.002655,0.148052,-0.001439,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000327,0.000286,0.000410,0.000000,0.000000,0.002613,0.146635,-0.001417,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000322,0.000281,0.000407,0.000141,0.000141,0.002572,0.145102,-0.001533,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000317,0.000275,0.000403,0.000402,0.000402,0.002530,0.143336,-0.001765,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000311,0.000269,0.000398,0.000569,0.000569,0.002488,0.141435,-0.001901,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000305,0.000262,0.000394,0.000699,0.000699,0.002445,0.139435,-0.002000,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000300,0.000256,0.000390,0.000802,0.000802,0.002401,0.137366,-0.002069,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000294,0.000249,0.000386,0.000770,0.000770,0.002356,0.135362,-0.002004,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000288,0.000243,0.000381,0.000666,0.000666,0.002310,0.133492,-0.001870,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000282,0.000237,0.000377,0.000540,0.000540,0.002265,0.131775,-0.001716,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000277,0.000232,0.000373,0.000468,0.000468,0.002221,0.130157,-0.001619,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000271,0.000227,0.000368,0.000363,0.000363,0.002177,0.128668,-0.001489,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000266,0.000223,0.000364,0.000224,0.000224,0.002134,0.127338,-0.001330,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000260,0.000219,0.000360,0.000086,0.000086,0.002093,0.126166,-0.001172,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000255,0.000216,0.000357,0.000000,0.000000,0.002054,0.125097,-0.001069,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000250,0.000212,0.000353,0.000000,0.000000,0.002015,0.124045,-0.001052,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000246,0.000209,0.000350,0.000000,0.000000,0.001979,0.123009,-0.001035,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000241,0.000205,0.000347,0.000000,0.000000,0.001943,0.121991,-0.001019,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000237,0.000202,0.000344,0.000000,0.000000,0.001909,0.120988,-0.001003,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000232,0.000199,0.000341,0.000000,0.000000,0.001875,0.120001,-0.000987,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000228,0.000196,0.000338,0.000000,0.000000,0.001843,0.119030,-0.000971,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000224,0.000193,0.000336,0.000000,0.000000,0.001811,0.118074,-0.000956,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000220,0.000190,0.000333,0.000000,0.000000,0.001780,0.117134,-0.000940,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000217,0.000187,0.000331,0.000000,0.000000,0.001750,0.116208,-0.000926,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000213,0.000184,0.000328,0.000000,0.000000,0.001721,0.115298,-0.000911,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000209,0.000181,0.000326,0.000000,0.000000,0.001693,0.114401,-0.000896,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000206,0.000177,0.000324,0.000153,0.000153,0.001664,0.113369,-0.001032,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000202,0.000173,0.000322,0.000403,0.000403,0.001636,0.112106,-0.001263,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000198,0.000169,0.000319,0.000571,0.000571,0.001606,0.110699,-0.001407,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000194,0.000164,0.000317,0.000693,0.000693,0.001575,0.109194,-0.001505,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000191,0.000159,0.000314,0.000693,0.000693,0.001544,0.107712,-0.001482,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000125,0.000186,0.000155,0.000312,0.000660,0.000660,0.001512,0.106357,-0.001355,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000071,0.000000,0.000000,0.000000,0.000126,0.000182,0.000151,0.000309,0.000557,0.000557,0.001480,0.105125,-0.001232,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000098,0.000000,0.000000,0.000000,0.000128,0.000179,0.000147,0.000306,0.000477,0.000477,0.001449,0.104017,-0.001108,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000099,0.000000,0.000000,0.000000,0.000129,0.000175,0.000144,0.000304,0.000405,0.000405,0.001418,0.102999,-0.001018,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000251,0.000000,0.000000,0.000000,0.000131,0.000171,0.000141,0.000301,0.000320,0.000320,0.001388,0.102229,-0.000769,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000114,0.000000,0.000000,0.000000,0.000132,0.000167,0.000139,0.000299,0.000198,0.000198,0.001359,0.101457,-0.000772,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000777,0.000011,0.000019,0.000011,0.000133,0.000164,0.000139,0.000308,0.000083,0.000083,0.001334,0.101445,-0.000013,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000988,0.000026,0.000039,0.000026,0.000135,0.000161,0.000139,0.000322,0.000000,0.000000,0.001312,0.101702,0.000257,1.000000,0.000021 +123,2022-08-06 03:00:00,0.000677,0.000024,0.000018,0.000024,0.000136,0.000159,0.000139,0.000319,0.000000,0.000000,0.001292,0.101669,-0.000033,1.000000,0.000016 +124,2022-08-06 04:00:00,0.000573,0.000020,0.000013,0.000020,0.000137,0.000157,0.000139,0.000314,0.000000,0.000000,0.001274,0.101540,-0.000129,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000581,0.000015,0.000014,0.000015,0.000139,0.000155,0.000139,0.000308,0.000000,0.000000,0.001258,0.101420,-0.000119,1.000000,0.000009 +126,2022-08-06 06:00:00,0.000667,0.000016,0.000018,0.000016,0.000140,0.000153,0.000138,0.000309,0.000000,0.000000,0.001244,0.101384,-0.000037,1.000000,0.000011 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000141,0.000151,0.000136,0.000299,0.000000,0.000000,0.001229,0.100708,-0.000675,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000143,0.000149,0.000134,0.000295,0.000000,0.000000,0.001214,0.100044,-0.000665,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000147,0.000132,0.000291,0.000000,0.000000,0.001199,0.099389,-0.000654,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000145,0.000130,0.000290,0.000000,0.000000,0.001183,0.098746,-0.000644,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000143,0.000128,0.000290,0.000000,0.000000,0.001168,0.098112,-0.000634,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000141,0.000126,0.000289,0.000000,0.000000,0.001152,0.097489,-0.000623,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000139,0.000124,0.000288,0.000000,0.000000,0.001136,0.096875,-0.000614,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000137,0.000121,0.000288,0.000136,0.000136,0.001120,0.096138,-0.000738,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000135,0.000118,0.000287,0.000390,0.000390,0.001103,0.095161,-0.000976,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000133,0.000114,0.000286,0.000566,0.000566,0.001085,0.094028,-0.001134,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000131,0.000110,0.000285,0.000688,0.000688,0.001064,0.092793,-0.001235,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000128,0.000106,0.000283,0.000795,0.000795,0.001043,0.091471,-0.001321,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000125,0.000102,0.000282,0.000755,0.000755,0.001020,0.090210,-0.001261,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000122,0.000098,0.000280,0.000652,0.000652,0.000996,0.089070,-0.001140,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000119,0.000095,0.000278,0.000550,0.000550,0.000972,0.088049,-0.001021,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000116,0.000092,0.000276,0.000467,0.000467,0.000948,0.087125,-0.000924,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000113,0.000089,0.000275,0.000361,0.000361,0.000924,0.086321,-0.000804,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000110,0.000087,0.000273,0.000217,0.000217,0.000901,0.085671,-0.000650,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000108,0.000086,0.000272,0.000070,0.000070,0.000880,0.085176,-0.000495,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000105,0.000084,0.000270,0.000000,0.000000,0.000859,0.084758,-0.000418,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000103,0.000083,0.000269,0.000000,0.000000,0.000839,0.084347,-0.000411,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000100,0.000082,0.000268,0.000000,0.000000,0.000821,0.083942,-0.000405,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000098,0.000080,0.000267,0.000000,0.000000,0.000803,0.083544,-0.000398,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000096,0.000079,0.000266,0.000000,0.000000,0.000786,0.083152,-0.000392,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000094,0.000078,0.000265,0.000000,0.000000,0.000770,0.082766,-0.000386,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000092,0.000077,0.000265,0.000000,0.000000,0.000754,0.082386,-0.000380,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000090,0.000075,0.000264,0.000000,0.000000,0.000739,0.082013,-0.000374,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000088,0.000074,0.000263,0.000000,0.000000,0.000725,0.081645,-0.000368,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000087,0.000073,0.000263,0.000000,0.000000,0.000711,0.081283,-0.000362,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000085,0.000072,0.000262,0.000000,0.000000,0.000698,0.080927,-0.000356,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000084,0.000071,0.000262,0.000000,0.000000,0.000685,0.080576,-0.000351,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000082,0.000069,0.000262,0.000133,0.000133,0.000672,0.080100,-0.000476,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000080,0.000067,0.000261,0.000388,0.000388,0.000659,0.079381,-0.000719,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000079,0.000064,0.000260,0.000567,0.000567,0.000644,0.078498,-0.000884,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000077,0.000061,0.000260,0.000682,0.000682,0.000628,0.077515,-0.000983,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000074,0.000057,0.000259,0.000777,0.000777,0.000611,0.076454,-0.001061,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000072,0.000054,0.000257,0.000738,0.000738,0.000593,0.075448,-0.001006,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000070,0.000051,0.000256,0.000631,0.000631,0.000574,0.074564,-0.000884,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000068,0.000049,0.000255,0.000562,0.000562,0.000555,0.073761,-0.000803,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000065,0.000046,0.000254,0.000479,0.000479,0.000536,0.073054,-0.000708,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000063,0.000045,0.000253,0.000364,0.000000,0.000518,0.072828,-0.000225,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000061,0.000045,0.000252,0.000192,0.000000,0.000502,0.072606,-0.000222,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000059,0.000044,0.000251,0.000032,0.000000,0.000487,0.072388,-0.000218,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000057,0.000043,0.000250,0.000000,0.000000,0.000473,0.072173,-0.000215,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000056,0.000043,0.000250,0.000000,0.000000,0.000460,0.071962,-0.000211,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000054,0.000042,0.000249,0.000000,0.000000,0.000447,0.071753,-0.000208,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000053,0.000041,0.000249,0.000000,0.000000,0.000436,0.071549,-0.000205,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000197,0.000052,0.000041,0.000249,0.000000,0.000000,0.000425,0.071349,-0.000200,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000001,0.000000,0.000000,0.000000,0.000198,0.000050,0.000040,0.000248,0.000000,0.000000,0.000414,0.071152,-0.000197,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000049,0.000039,0.000248,0.000000,0.000000,0.000404,0.070957,-0.000195,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000048,0.000039,0.000248,0.000000,0.000000,0.000395,0.070765,-0.000192,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000047,0.000038,0.000248,0.000000,0.000000,0.000386,0.070576,-0.000189,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000046,0.000038,0.000248,0.000000,0.000000,0.000378,0.070390,-0.000186,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000045,0.000037,0.000248,0.000000,0.000000,0.000370,0.070207,-0.000183,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000044,0.000036,0.000248,0.000000,0.000000,0.000362,0.070026,-0.000180,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000043,0.000036,0.000248,0.000113,0.000000,0.000355,0.069849,-0.000177,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000042,0.000035,0.000248,0.000372,0.000000,0.000348,0.069675,-0.000175,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000041,0.000035,0.000249,0.000552,0.000000,0.000341,0.069503,-0.000172,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000041,0.000034,0.000249,0.000671,0.000000,0.000335,0.069334,-0.000169,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000040,0.000034,0.000249,0.000773,0.000000,0.000328,0.069167,-0.000166,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000039,0.000033,0.000249,0.000747,0.000000,0.000322,0.069004,-0.000164,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000038,0.000032,0.000249,0.000634,0.000000,0.000316,0.068842,-0.000161,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000038,0.000032,0.000250,0.000567,0.000000,0.000311,0.068684,-0.000159,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000037,0.000031,0.000250,0.000483,0.000000,0.000305,0.068528,-0.000156,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000036,0.000031,0.000250,0.000370,0.000000,0.000300,0.068374,-0.000154,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000036,0.000030,0.000251,0.000215,0.000000,0.000295,0.068223,-0.000151,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000035,0.000030,0.000251,0.000057,0.000000,0.000289,0.068074,-0.000149,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000035,0.000030,0.000251,0.000000,0.000000,0.000284,0.067928,-0.000146,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000034,0.000029,0.000252,0.000000,0.000000,0.000280,0.067784,-0.000144,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000033,0.000029,0.000252,0.000000,0.000000,0.000275,0.067642,-0.000142,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000033,0.000028,0.000252,0.000000,0.000000,0.000270,0.067503,-0.000140,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000032,0.000028,0.000253,0.000000,0.000000,0.000266,0.067365,-0.000137,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000032,0.000027,0.000253,0.000000,0.000000,0.000261,0.067230,-0.000135,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000031,0.000027,0.000253,0.000000,0.000000,0.000257,0.067097,-0.000133,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000031,0.000026,0.000254,0.000000,0.000000,0.000253,0.066966,-0.000131,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000030,0.000026,0.000254,0.000000,0.000000,0.000249,0.066838,-0.000129,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000030,0.000026,0.000254,0.000000,0.000000,0.000244,0.066711,-0.000127,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000029,0.000025,0.000255,0.000000,0.000000,0.000240,0.066586,-0.000125,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000029,0.000025,0.000255,0.000000,0.000000,0.000237,0.066463,-0.000123,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000028,0.000024,0.000255,0.000125,0.000000,0.000233,0.066343,-0.000121,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620864.csv b/test/channel_loss/channel_forcing/et/cat-2620864.csv new file mode 100644 index 000000000..f3b68e11b --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620864.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000316,0.000003,0.000005,0.000003,0.000000,0.001463,0.000311,0.001466,0.000174,0.000174,0.010445,0.426238,-0.004727,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001304,0.000307,0.001306,0.000053,0.000053,0.009447,0.421388,-0.004850,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001170,0.000303,0.001171,0.000000,0.000000,0.008581,0.416656,-0.004732,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001055,0.000299,0.001055,0.000000,0.000000,0.007825,0.411988,-0.004668,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000956,0.000295,0.000957,0.000000,0.000000,0.007163,0.407382,-0.004605,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000872,0.000291,0.000872,0.000000,0.000000,0.006582,0.402839,-0.004543,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000798,0.000287,0.000799,0.000000,0.000000,0.006071,0.398358,-0.004482,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000734,0.000283,0.000735,0.000000,0.000000,0.005620,0.393937,-0.004421,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000678,0.000279,0.000679,0.000000,0.000000,0.005221,0.389575,-0.004361,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000629,0.000275,0.000630,0.000000,0.000000,0.004868,0.385273,-0.004302,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000586,0.000272,0.000588,0.000000,0.000000,0.004554,0.381029,-0.004244,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000548,0.000268,0.000550,0.000000,0.000000,0.004274,0.376842,-0.004187,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000514,0.000264,0.000516,0.000000,0.000000,0.004024,0.372711,-0.004130,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000484,0.000261,0.000487,0.000000,0.000000,0.003801,0.368637,-0.004075,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000457,0.000257,0.000461,0.000131,0.000131,0.003601,0.364488,-0.004149,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000433,0.000253,0.000437,0.000357,0.000357,0.003422,0.360173,-0.004316,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000412,0.000250,0.000416,0.000504,0.000504,0.003259,0.355770,-0.004402,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000392,0.000246,0.000398,0.000596,0.000596,0.003113,0.351336,-0.004434,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000375,0.000242,0.000381,0.000545,0.000545,0.002980,0.347013,-0.004324,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000193,0.000000,0.000000,0.000000,0.000006,0.000359,0.000238,0.000365,0.000500,0.000500,0.002859,0.342982,-0.004030,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000193,0.000000,0.000000,0.000000,0.000007,0.000345,0.000235,0.000352,0.000453,0.000453,0.002749,0.339053,-0.003929,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000195,0.000000,0.000000,0.000000,0.000008,0.000332,0.000232,0.000339,0.000370,0.000370,0.002649,0.335261,-0.003792,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000193,0.000000,0.000000,0.000000,0.000008,0.000320,0.000228,0.000328,0.000321,0.000321,0.002557,0.331566,-0.003695,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000239,0.000000,0.000000,0.000000,0.000009,0.000309,0.000225,0.000318,0.000243,0.000243,0.002473,0.328044,-0.003523,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000266,0.000001,0.000003,0.000001,0.000010,0.000299,0.000222,0.000310,0.000154,0.000154,0.002396,0.324680,-0.003364,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000754,0.000050,0.000090,0.000050,0.000011,0.000290,0.000220,0.000351,0.000067,0.000067,0.002326,0.321843,-0.002837,1.000000,0.000041 +26,2022-08-02 02:00:00,0.000801,0.000088,0.000119,0.000088,0.000011,0.000282,0.000217,0.000382,0.000000,0.000000,0.002262,0.319129,-0.002714,1.000000,0.000071 +27,2022-08-02 03:00:00,0.000808,0.000114,0.000120,0.000114,0.000012,0.000274,0.000215,0.000400,0.000000,0.000000,0.002203,0.316457,-0.002672,1.000000,0.000078 +28,2022-08-02 04:00:00,0.000829,0.000123,0.000126,0.000123,0.000013,0.000267,0.000213,0.000403,0.000000,0.000000,0.002148,0.313837,-0.002620,1.000000,0.000081 +29,2022-08-02 05:00:00,0.000817,0.000122,0.000122,0.000122,0.000014,0.000261,0.000211,0.000397,0.000000,0.000000,0.002098,0.311243,-0.002593,1.000000,0.000080 +30,2022-08-02 06:00:00,0.000820,0.000123,0.000122,0.000123,0.000015,0.000255,0.000208,0.000392,0.000000,0.000000,0.002051,0.308688,-0.002556,1.000000,0.000079 +31,2022-08-02 07:00:00,0.000000,0.000055,0.000000,0.000055,0.000016,0.000249,0.000205,0.000320,0.000000,0.000000,0.002008,0.305478,-0.003210,1.000000,0.000024 +32,2022-08-02 08:00:00,0.000000,0.000024,0.000000,0.000024,0.000017,0.000244,0.000203,0.000285,0.000000,0.000000,0.001966,0.302312,-0.003166,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000239,0.000200,0.000257,0.000000,0.000000,0.001927,0.299188,-0.003123,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000234,0.000197,0.000253,0.000000,0.000000,0.001890,0.296107,-0.003081,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000230,0.000195,0.000250,0.000000,0.000000,0.001855,0.293068,-0.003040,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000226,0.000192,0.000246,0.000000,0.000000,0.001821,0.290069,-0.002999,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000008,0.000000,0.000000,0.000000,0.000022,0.000221,0.000189,0.000243,0.000000,0.000000,0.001789,0.287119,-0.002950,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000082,0.000000,0.000000,0.000000,0.000023,0.000218,0.000187,0.000240,0.000114,0.000114,0.001758,0.284169,-0.002950,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000005,0.000000,0.000000,0.000000,0.000024,0.000214,0.000184,0.000238,0.000323,0.000323,0.001729,0.280977,-0.003192,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000005,0.000000,0.000000,0.000000,0.000025,0.000210,0.000181,0.000235,0.000441,0.000441,0.001700,0.277712,-0.003265,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000005,0.000000,0.000000,0.000000,0.000026,0.000207,0.000178,0.000233,0.000531,0.000531,0.001671,0.274401,-0.003311,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000082,0.000000,0.000000,0.000000,0.000027,0.000203,0.000175,0.000230,0.000611,0.000611,0.001644,0.271133,-0.003268,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000200,0.000173,0.000228,0.000561,0.000561,0.001616,0.267877,-0.003256,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000196,0.000170,0.000226,0.000511,0.000511,0.001590,0.264715,-0.003162,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000193,0.000167,0.000224,0.000499,0.000499,0.001564,0.261607,-0.003108,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000190,0.000164,0.000222,0.000421,0.000421,0.001538,0.258618,-0.002989,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000187,0.000162,0.000220,0.000319,0.000319,0.001514,0.255770,-0.002848,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000184,0.000160,0.000218,0.000180,0.000180,0.001490,0.253098,-0.002672,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000181,0.000157,0.000216,0.000037,0.000037,0.001466,0.250604,-0.002495,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000178,0.000155,0.000215,0.000000,0.000000,0.001444,0.248179,-0.002425,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000175,0.000153,0.000213,0.000000,0.000000,0.001422,0.245787,-0.002392,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000172,0.000151,0.000212,0.000000,0.000000,0.001400,0.243427,-0.002360,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000170,0.000149,0.000211,0.000000,0.000000,0.001380,0.241099,-0.002328,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000167,0.000147,0.000209,0.000000,0.000000,0.001359,0.238803,-0.002296,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000165,0.000145,0.000208,0.000000,0.000000,0.001339,0.236537,-0.002265,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000162,0.000143,0.000207,0.000000,0.000000,0.001320,0.234302,-0.002235,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000160,0.000141,0.000206,0.000000,0.000000,0.001301,0.232098,-0.002205,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000158,0.000139,0.000205,0.000000,0.000000,0.001283,0.229923,-0.002175,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000155,0.000137,0.000204,0.000000,0.000000,0.001265,0.227777,-0.002145,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000153,0.000136,0.000203,0.000000,0.000000,0.001247,0.225661,-0.002116,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000151,0.000134,0.000203,0.000000,0.000000,0.001230,0.223573,-0.002088,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000149,0.000132,0.000202,0.000125,0.000125,0.001212,0.221390,-0.002183,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000147,0.000130,0.000201,0.000364,0.000364,0.001195,0.219000,-0.002389,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000145,0.000127,0.000200,0.000508,0.000508,0.001178,0.216502,-0.002499,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000142,0.000125,0.000200,0.000614,0.000614,0.001161,0.213932,-0.002570,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000140,0.000123,0.000199,0.000613,0.000613,0.001144,0.211398,-0.002534,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000138,0.000121,0.000198,0.000571,0.000571,0.001126,0.208940,-0.002458,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000167,0.000000,0.000000,0.000000,0.000061,0.000136,0.000119,0.000197,0.000498,0.000498,0.001109,0.206751,-0.002188,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000134,0.000117,0.000197,0.000478,0.000478,0.001092,0.204510,-0.002241,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000132,0.000115,0.000196,0.000401,0.000401,0.001075,0.202312,-0.002198,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000130,0.000113,0.000195,0.000300,0.000300,0.001059,0.200244,-0.002068,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000128,0.000112,0.000195,0.000177,0.000177,0.001043,0.198325,-0.001919,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000126,0.000110,0.000194,0.000049,0.000049,0.001027,0.196558,-0.001767,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000124,0.000108,0.000194,0.000000,0.000000,0.001011,0.194863,-0.001695,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000122,0.000107,0.000194,0.000000,0.000000,0.000996,0.193191,-0.001672,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000120,0.000106,0.000193,0.000000,0.000000,0.000982,0.191542,-0.001649,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000118,0.000104,0.000193,0.000000,0.000000,0.000967,0.189915,-0.001627,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000117,0.000103,0.000193,0.000000,0.000000,0.000954,0.188310,-0.001605,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000115,0.000101,0.000192,0.000000,0.000000,0.000940,0.186727,-0.001583,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000113,0.000100,0.000192,0.000000,0.000000,0.000927,0.185165,-0.001562,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000112,0.000099,0.000192,0.000000,0.000000,0.000913,0.183625,-0.001541,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000110,0.000097,0.000192,0.000000,0.000000,0.000901,0.182105,-0.001520,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000109,0.000096,0.000192,0.000000,0.000000,0.000888,0.180605,-0.001499,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000107,0.000095,0.000192,0.000000,0.000000,0.000876,0.179126,-0.001479,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000106,0.000093,0.000192,0.000000,0.000000,0.000864,0.177667,-0.001459,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000104,0.000092,0.000192,0.000123,0.000123,0.000852,0.176106,-0.001560,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000103,0.000090,0.000192,0.000360,0.000360,0.000839,0.174333,-0.001773,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000101,0.000089,0.000192,0.000510,0.000510,0.000827,0.172436,-0.001897,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000100,0.000087,0.000192,0.000610,0.000610,0.000815,0.170465,-0.001971,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000098,0.000085,0.000192,0.000686,0.000686,0.000802,0.168446,-0.002019,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000096,0.000084,0.000192,0.000635,0.000635,0.000789,0.166505,-0.001941,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000095,0.000082,0.000192,0.000549,0.000549,0.000777,0.164674,-0.001830,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000093,0.000080,0.000192,0.000502,0.000502,0.000764,0.162915,-0.001759,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000092,0.000079,0.000192,0.000427,0.000427,0.000751,0.161254,-0.001661,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000090,0.000078,0.000192,0.000330,0.000330,0.000739,0.159711,-0.001543,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000089,0.000076,0.000192,0.000191,0.000191,0.000727,0.158326,-0.001385,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000087,0.000075,0.000192,0.000057,0.000057,0.000715,0.157091,-0.001235,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000086,0.000074,0.000192,0.000000,0.000000,0.000703,0.155930,-0.001161,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000084,0.000073,0.000192,0.000000,0.000000,0.000692,0.154784,-0.001146,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000083,0.000072,0.000192,0.000000,0.000000,0.000681,0.153654,-0.001130,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000082,0.000071,0.000193,0.000000,0.000000,0.000671,0.152538,-0.001115,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000081,0.000070,0.000193,0.000000,0.000000,0.000661,0.151439,-0.001100,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000079,0.000069,0.000193,0.000000,0.000000,0.000651,0.150353,-0.001085,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000078,0.000069,0.000194,0.000000,0.000000,0.000641,0.149283,-0.001070,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000077,0.000068,0.000194,0.000000,0.000000,0.000632,0.148227,-0.001056,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000076,0.000067,0.000194,0.000000,0.000000,0.000623,0.147185,-0.001042,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000075,0.000066,0.000195,0.000000,0.000000,0.000614,0.146158,-0.001028,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000074,0.000065,0.000195,0.000000,0.000000,0.000605,0.145144,-0.001014,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000073,0.000064,0.000196,0.000000,0.000000,0.000596,0.144144,-0.001000,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000072,0.000063,0.000196,0.000133,0.000133,0.000588,0.143026,-0.001117,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000071,0.000062,0.000197,0.000366,0.000366,0.000579,0.141694,-0.001332,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000069,0.000061,0.000197,0.000515,0.000515,0.000570,0.140233,-0.001461,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000068,0.000059,0.000197,0.000625,0.000625,0.000561,0.138683,-0.001550,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000067,0.000058,0.000198,0.000599,0.000599,0.000552,0.137179,-0.001504,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000132,0.000066,0.000057,0.000198,0.000552,0.000552,0.000543,0.135867,-0.001312,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000138,0.000000,0.000000,0.000000,0.000134,0.000065,0.000056,0.000199,0.000485,0.000485,0.000534,0.134650,-0.001217,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000138,0.000000,0.000000,0.000000,0.000135,0.000064,0.000055,0.000199,0.000451,0.000451,0.000524,0.133483,-0.001167,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000137,0.000063,0.000054,0.000199,0.000375,0.000375,0.000515,0.132395,-0.001088,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000138,0.000062,0.000053,0.000200,0.000295,0.000295,0.000507,0.131464,-0.000932,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000140,0.000061,0.000052,0.000200,0.000181,0.000181,0.000498,0.130594,-0.000870,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000701,0.000032,0.000059,0.000032,0.000141,0.000060,0.000052,0.000233,0.000065,0.000065,0.000491,0.130360,-0.000234,1.000000,0.000027 +122,2022-08-06 02:00:00,0.000924,0.000080,0.000119,0.000080,0.000143,0.000059,0.000052,0.000282,0.000000,0.000000,0.000484,0.130353,-0.000006,1.000000,0.000066 +123,2022-08-06 03:00:00,0.000943,0.000110,0.000124,0.000110,0.000144,0.000058,0.000052,0.000312,0.000000,0.000000,0.000478,0.130361,0.000008,1.000000,0.000080 +124,2022-08-06 04:00:00,0.000958,0.000125,0.000128,0.000125,0.000146,0.000057,0.000052,0.000328,0.000000,0.000000,0.000472,0.130380,0.000019,1.000000,0.000082 +125,2022-08-06 05:00:00,0.000939,0.000124,0.000123,0.000124,0.000147,0.000057,0.000052,0.000328,0.000000,0.000000,0.000467,0.130384,0.000004,1.000000,0.000081 +126,2022-08-06 06:00:00,0.000954,0.000126,0.000127,0.000126,0.000148,0.000056,0.000052,0.000331,0.000000,0.000000,0.000463,0.130399,0.000015,1.000000,0.000082 +127,2022-08-06 07:00:00,0.000000,0.000056,0.000000,0.000056,0.000150,0.000056,0.000051,0.000262,0.000000,0.000000,0.000458,0.129598,-0.000801,1.000000,0.000025 +128,2022-08-06 08:00:00,0.000000,0.000025,0.000000,0.000025,0.000151,0.000055,0.000051,0.000232,0.000000,0.000000,0.000454,0.128808,-0.000790,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000055,0.000050,0.000207,0.000000,0.000000,0.000449,0.128029,-0.000779,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000049,0.000208,0.000000,0.000000,0.000444,0.127260,-0.000769,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000053,0.000049,0.000209,0.000000,0.000000,0.000440,0.126502,-0.000758,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000053,0.000048,0.000210,0.000000,0.000000,0.000435,0.125753,-0.000748,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000052,0.000047,0.000211,0.000000,0.000000,0.000430,0.125015,-0.000738,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000047,0.000212,0.000116,0.000116,0.000425,0.124173,-0.000843,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000051,0.000046,0.000213,0.000338,0.000338,0.000419,0.123123,-0.001050,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000050,0.000045,0.000213,0.000472,0.000472,0.000414,0.121955,-0.001168,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000050,0.000043,0.000214,0.000577,0.000577,0.000408,0.120699,-0.001256,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000049,0.000042,0.000215,0.000658,0.000658,0.000401,0.119380,-0.001319,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000048,0.000041,0.000215,0.000613,0.000613,0.000394,0.118123,-0.001257,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000047,0.000040,0.000216,0.000545,0.000545,0.000388,0.116950,-0.001172,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000046,0.000039,0.000216,0.000505,0.000505,0.000381,0.115833,-0.001117,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000045,0.000038,0.000217,0.000420,0.000420,0.000373,0.114815,-0.001018,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000044,0.000038,0.000217,0.000321,0.000321,0.000367,0.113908,-0.000907,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000037,0.000218,0.000186,0.000186,0.000360,0.113146,-0.000761,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000036,0.000219,0.000048,0.000048,0.000353,0.112531,-0.000615,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000036,0.000219,0.000000,0.000000,0.000347,0.111972,-0.000559,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000035,0.000220,0.000000,0.000000,0.000341,0.111420,-0.000552,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000035,0.000221,0.000000,0.000000,0.000335,0.110875,-0.000544,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000034,0.000221,0.000000,0.000000,0.000329,0.110338,-0.000537,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000034,0.000222,0.000000,0.000000,0.000324,0.109808,-0.000530,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000033,0.000223,0.000000,0.000000,0.000319,0.109286,-0.000523,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000038,0.000033,0.000223,0.000000,0.000000,0.000314,0.108770,-0.000516,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000033,0.000224,0.000000,0.000000,0.000309,0.108261,-0.000509,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000037,0.000032,0.000225,0.000000,0.000000,0.000304,0.107760,-0.000502,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000036,0.000032,0.000226,0.000000,0.000000,0.000299,0.107265,-0.000495,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000031,0.000226,0.000000,0.000000,0.000295,0.106776,-0.000488,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000031,0.000227,0.000000,0.000000,0.000291,0.106295,-0.000482,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000030,0.000228,0.000112,0.000112,0.000286,0.105709,-0.000586,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000030,0.000229,0.000345,0.000345,0.000282,0.104901,-0.000808,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000034,0.000029,0.000230,0.000490,0.000490,0.000277,0.103961,-0.000940,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000028,0.000230,0.000599,0.000599,0.000272,0.102927,-0.001034,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000032,0.000027,0.000231,0.000662,0.000662,0.000266,0.101845,-0.001082,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000026,0.000232,0.000608,0.000608,0.000261,0.100830,-0.001015,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000025,0.000232,0.000534,0.000534,0.000255,0.099901,-0.000929,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000030,0.000024,0.000233,0.000512,0.000512,0.000249,0.099008,-0.000893,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000024,0.000233,0.000429,0.000429,0.000244,0.098208,-0.000800,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000029,0.000023,0.000234,0.000321,0.000321,0.000238,0.097525,-0.000683,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000158,0.000158,0.000232,0.097013,-0.000512,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000022,0.000235,0.000017,0.000017,0.000227,0.096647,-0.000366,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000236,0.000000,0.000000,0.000222,0.096302,-0.000345,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000022,0.000236,0.000000,0.000000,0.000218,0.095962,-0.000340,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000021,0.000237,0.000000,0.000000,0.000213,0.095626,-0.000336,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000021,0.000238,0.000000,0.000000,0.000209,0.095295,-0.000331,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000205,0.094968,-0.000327,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000024,0.000021,0.000239,0.000000,0.000000,0.000202,0.094646,-0.000322,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000240,0.000000,0.000000,0.000198,0.094328,-0.000318,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000024,0.000020,0.000241,0.000000,0.000000,0.000194,0.094015,-0.000314,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000242,0.000000,0.000000,0.000191,0.093705,-0.000309,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000188,0.093400,-0.000305,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000019,0.000243,0.000000,0.000000,0.000185,0.093099,-0.000301,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000022,0.000019,0.000244,0.000000,0.000000,0.000182,0.092802,-0.000297,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000096,0.000000,0.000179,0.092509,-0.000293,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000021,0.000019,0.000246,0.000329,0.000000,0.000176,0.092221,-0.000289,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000018,0.000247,0.000480,0.000000,0.000173,0.091935,-0.000285,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000018,0.000247,0.000574,0.000000,0.000171,0.091654,-0.000281,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000020,0.000018,0.000248,0.000651,0.000000,0.000168,0.091377,-0.000277,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000018,0.000249,0.000602,0.000000,0.000166,0.091103,-0.000274,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000017,0.000250,0.000531,0.000000,0.000163,0.090833,-0.000270,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000251,0.000497,0.000000,0.000161,0.090567,-0.000266,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000017,0.000252,0.000420,0.000000,0.000158,0.090304,-0.000263,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000017,0.000253,0.000324,0.000000,0.000156,0.090045,-0.000259,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000016,0.000253,0.000184,0.000000,0.000154,0.089789,-0.000256,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000254,0.000038,0.000000,0.000152,0.089537,-0.000252,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000032,0.000000,0.000000,0.000000,0.000237,0.000018,0.000016,0.000255,0.000000,0.000000,0.000149,0.089320,-0.000217,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000238,0.000018,0.000016,0.000256,0.000000,0.000000,0.000147,0.089084,-0.000236,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000018,0.000016,0.000257,0.000000,0.000000,0.000145,0.088841,-0.000243,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000258,0.000000,0.000000,0.000143,0.088602,-0.000239,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000258,0.000000,0.000000,0.000141,0.088365,-0.000236,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000000,0.000000,0.000139,0.088133,-0.000233,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000017,0.000015,0.000260,0.000000,0.000000,0.000137,0.087903,-0.000230,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000015,0.000261,0.000000,0.000000,0.000136,0.087676,-0.000227,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000262,0.000000,0.000000,0.000134,0.087452,-0.000224,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000016,0.000014,0.000262,0.000000,0.000000,0.000132,0.087232,-0.000221,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000263,0.000000,0.000000,0.000130,0.087014,-0.000218,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000016,0.000014,0.000264,0.000000,0.000000,0.000128,0.086799,-0.000215,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000014,0.000265,0.000108,0.000000,0.000127,0.086587,-0.000212,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620865.csv b/test/channel_loss/channel_forcing/et/cat-2620865.csv new file mode 100644 index 000000000..6cea90f7f --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620865.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000304,0.000002,0.000003,0.000002,0.000000,0.001475,0.000393,0.001477,0.000172,0.000172,0.010515,0.448808,-0.004820,1.000000,0.000002 +1,2022-08-01 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001325,0.000388,0.001326,0.000053,0.000053,0.009578,0.443872,-0.004936,1.000000,0.000001 +2,2022-08-01 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000000,0.001198,0.000383,0.001198,0.000000,0.000000,0.008763,0.439053,-0.004819,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001089,0.000378,0.001089,0.000000,0.000000,0.008051,0.434297,-0.004756,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000996,0.000373,0.000996,0.000000,0.000000,0.007428,0.429603,-0.004694,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000915,0.000368,0.000916,0.000000,0.000000,0.006881,0.424970,-0.004633,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000845,0.000363,0.000846,0.000000,0.000000,0.006399,0.420398,-0.004572,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000784,0.000358,0.000785,0.000000,0.000000,0.005973,0.415885,-0.004513,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000731,0.000354,0.000732,0.000000,0.000000,0.005596,0.411431,-0.004454,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000684,0.000349,0.000685,0.000000,0.000000,0.005262,0.407035,-0.004396,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000642,0.000344,0.000644,0.000000,0.000000,0.004964,0.402696,-0.004339,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000606,0.000340,0.000608,0.000000,0.000000,0.004698,0.398414,-0.004282,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000573,0.000336,0.000576,0.000000,0.000000,0.004460,0.394188,-0.004226,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000544,0.000331,0.000547,0.000000,0.000000,0.004248,0.390017,-0.004171,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000518,0.000327,0.000522,0.000130,0.000130,0.004056,0.385773,-0.004245,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000495,0.000322,0.000499,0.000356,0.000356,0.003883,0.381360,-0.004413,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000474,0.000317,0.000478,0.000505,0.000505,0.003727,0.376858,-0.004502,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000455,0.000313,0.000460,0.000595,0.000595,0.003584,0.372325,-0.004533,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000438,0.000308,0.000443,0.000546,0.000546,0.003455,0.367900,-0.004425,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000186,0.000000,0.000000,0.000000,0.000006,0.000422,0.000304,0.000428,0.000495,0.000495,0.003336,0.363767,-0.004133,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000187,0.000000,0.000000,0.000000,0.000007,0.000408,0.000299,0.000415,0.000449,0.000449,0.003228,0.359734,-0.004033,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000213,0.000000,0.000000,0.000000,0.000008,0.000395,0.000295,0.000402,0.000367,0.000367,0.003129,0.355860,-0.003874,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000214,0.000000,0.000000,0.000000,0.000008,0.000383,0.000291,0.000391,0.000321,0.000321,0.003038,0.352083,-0.003777,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000248,0.000000,0.000000,0.000000,0.000009,0.000372,0.000288,0.000381,0.000243,0.000243,0.002954,0.348467,-0.003617,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000263,0.000001,0.000002,0.000001,0.000010,0.000361,0.000284,0.000372,0.000156,0.000156,0.002876,0.344996,-0.003470,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000772,0.000041,0.000074,0.000041,0.000011,0.000352,0.000281,0.000404,0.000068,0.000068,0.002805,0.342089,-0.002907,1.000000,0.000033 +26,2022-08-02 02:00:00,0.000817,0.000072,0.000097,0.000072,0.000011,0.000344,0.000278,0.000427,0.000000,0.000000,0.002739,0.339308,-0.002781,1.000000,0.000058 +27,2022-08-02 03:00:00,0.000819,0.000092,0.000097,0.000092,0.000012,0.000336,0.000275,0.000440,0.000000,0.000000,0.002679,0.336565,-0.002742,1.000000,0.000063 +28,2022-08-02 04:00:00,0.000847,0.000100,0.000103,0.000100,0.000013,0.000328,0.000272,0.000442,0.000000,0.000000,0.002623,0.333880,-0.002685,1.000000,0.000066 +29,2022-08-02 05:00:00,0.000800,0.000096,0.000092,0.000096,0.000014,0.000322,0.000269,0.000432,0.000000,0.000000,0.002570,0.331195,-0.002685,1.000000,0.000062 +30,2022-08-02 06:00:00,0.000779,0.000092,0.000087,0.000092,0.000015,0.000315,0.000267,0.000422,0.000000,0.000000,0.002522,0.328528,-0.002667,1.000000,0.000058 +31,2022-08-02 07:00:00,0.000000,0.000040,0.000000,0.000040,0.000016,0.000309,0.000263,0.000365,0.000000,0.000000,0.002475,0.325213,-0.003315,1.000000,0.000017 +32,2022-08-02 08:00:00,0.000000,0.000017,0.000000,0.000017,0.000017,0.000304,0.000260,0.000338,0.000000,0.000000,0.002432,0.321942,-0.003271,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000298,0.000256,0.000316,0.000000,0.000000,0.002390,0.318713,-0.003229,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000293,0.000253,0.000312,0.000000,0.000000,0.002350,0.315526,-0.003187,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000288,0.000250,0.000308,0.000000,0.000000,0.002311,0.312381,-0.003145,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000283,0.000246,0.000304,0.000000,0.000000,0.002274,0.309277,-0.003104,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000030,0.000000,0.000000,0.000000,0.000022,0.000279,0.000243,0.000301,0.000000,0.000000,0.002239,0.306243,-0.003034,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000036,0.000000,0.000000,0.000000,0.000023,0.000274,0.000240,0.000297,0.000116,0.000116,0.002204,0.303141,-0.003102,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000019,0.000000,0.000000,0.000000,0.000024,0.000270,0.000237,0.000294,0.000323,0.000323,0.002171,0.299858,-0.003283,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000019,0.000000,0.000000,0.000000,0.000025,0.000266,0.000233,0.000291,0.000441,0.000441,0.002138,0.296500,-0.003357,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000019,0.000000,0.000000,0.000000,0.000026,0.000262,0.000229,0.000288,0.000529,0.000529,0.002105,0.293100,-0.003400,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000083,0.000000,0.000000,0.000000,0.000027,0.000258,0.000226,0.000285,0.000606,0.000606,0.002074,0.289732,-0.003368,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000254,0.000222,0.000282,0.000550,0.000550,0.002042,0.286380,-0.003352,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000250,0.000219,0.000280,0.000508,0.000508,0.002012,0.283114,-0.003266,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000246,0.000216,0.000277,0.000502,0.000502,0.001981,0.279895,-0.003218,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000242,0.000212,0.000274,0.000425,0.000425,0.001952,0.276796,-0.003100,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000238,0.000209,0.000272,0.000321,0.000321,0.001922,0.273839,-0.002957,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000235,0.000206,0.000269,0.000180,0.000180,0.001894,0.271060,-0.002779,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000231,0.000204,0.000267,0.000036,0.000036,0.001866,0.268459,-0.002601,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000228,0.000201,0.000265,0.000000,0.000000,0.001839,0.265928,-0.002531,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000225,0.000198,0.000263,0.000000,0.000000,0.001813,0.263430,-0.002498,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000221,0.000196,0.000261,0.000000,0.000000,0.001788,0.260964,-0.002466,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000218,0.000193,0.000259,0.000000,0.000000,0.001763,0.258531,-0.002434,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000215,0.000191,0.000257,0.000000,0.000000,0.001738,0.256129,-0.002402,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000212,0.000188,0.000256,0.000000,0.000000,0.001715,0.253758,-0.002370,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000209,0.000186,0.000254,0.000000,0.000000,0.001691,0.251419,-0.002340,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000206,0.000183,0.000253,0.000000,0.000000,0.001668,0.249110,-0.002309,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000203,0.000181,0.000251,0.000000,0.000000,0.001646,0.246831,-0.002279,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000201,0.000179,0.000250,0.000000,0.000000,0.001624,0.244582,-0.002249,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000198,0.000176,0.000248,0.000000,0.000000,0.001602,0.242362,-0.002220,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000195,0.000174,0.000247,0.000000,0.000000,0.001581,0.240171,-0.002191,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000193,0.000172,0.000246,0.000125,0.000125,0.001560,0.237885,-0.002286,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000190,0.000169,0.000245,0.000364,0.000364,0.001539,0.235394,-0.002492,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000187,0.000166,0.000243,0.000510,0.000510,0.001518,0.232790,-0.002604,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000185,0.000163,0.000242,0.000616,0.000616,0.001497,0.230116,-0.002674,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000182,0.000161,0.000241,0.000611,0.000611,0.001476,0.227482,-0.002634,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000179,0.000158,0.000240,0.000562,0.000562,0.001454,0.224931,-0.002552,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000306,0.000000,0.000000,0.000000,0.000062,0.000177,0.000156,0.000239,0.000493,0.000493,0.001434,0.222783,-0.002148,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000069,0.000000,0.000000,0.000000,0.000063,0.000174,0.000153,0.000237,0.000477,0.000477,0.001413,0.220445,-0.002338,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000171,0.000151,0.000236,0.000402,0.000402,0.001392,0.218143,-0.002302,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000169,0.000149,0.000235,0.000299,0.000299,0.001372,0.215973,-0.002170,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000166,0.000146,0.000234,0.000180,0.000180,0.001352,0.213949,-0.002024,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000164,0.000144,0.000233,0.000049,0.000049,0.001333,0.212081,-0.001869,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000162,0.000143,0.000232,0.000000,0.000000,0.001314,0.210285,-0.001796,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000159,0.000141,0.000232,0.000000,0.000000,0.001295,0.208512,-0.001773,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000157,0.000139,0.000231,0.000000,0.000000,0.001277,0.206763,-0.001749,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000155,0.000137,0.000230,0.000000,0.000000,0.001259,0.205036,-0.001727,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000153,0.000135,0.000229,0.000000,0.000000,0.001242,0.203332,-0.001704,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000150,0.000134,0.000229,0.000000,0.000000,0.001225,0.201650,-0.001682,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000148,0.000132,0.000228,0.000000,0.000000,0.001208,0.199990,-0.001660,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000146,0.000130,0.000228,0.000000,0.000000,0.001192,0.198352,-0.001638,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000144,0.000128,0.000227,0.000000,0.000000,0.001176,0.196735,-0.001617,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000142,0.000127,0.000227,0.000000,0.000000,0.001160,0.195139,-0.001596,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000141,0.000125,0.000227,0.000000,0.000000,0.001145,0.193564,-0.001575,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000139,0.000123,0.000226,0.000000,0.000000,0.001130,0.192010,-0.001554,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000137,0.000122,0.000226,0.000122,0.000122,0.001115,0.190355,-0.001654,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000135,0.000120,0.000226,0.000359,0.000359,0.001100,0.188489,-0.001867,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000133,0.000118,0.000225,0.000511,0.000511,0.001084,0.186496,-0.001992,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000131,0.000115,0.000225,0.000612,0.000612,0.001069,0.184430,-0.002066,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000129,0.000113,0.000224,0.000682,0.000682,0.001053,0.182322,-0.002108,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000127,0.000111,0.000224,0.000622,0.000622,0.001037,0.180301,-0.002022,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000125,0.000109,0.000224,0.000544,0.000544,0.001021,0.178382,-0.001918,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000123,0.000107,0.000223,0.000506,0.000506,0.001005,0.176526,-0.001856,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000121,0.000105,0.000223,0.000431,0.000431,0.000989,0.174768,-0.001757,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000119,0.000104,0.000222,0.000331,0.000331,0.000974,0.173132,-0.001636,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000117,0.000102,0.000222,0.000190,0.000190,0.000959,0.171656,-0.001476,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000115,0.000101,0.000222,0.000056,0.000056,0.000944,0.170332,-0.001324,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000114,0.000099,0.000222,0.000000,0.000000,0.000929,0.169081,-0.001251,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000112,0.000098,0.000221,0.000000,0.000000,0.000915,0.167845,-0.001235,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000110,0.000097,0.000221,0.000000,0.000000,0.000902,0.166626,-0.001219,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000109,0.000096,0.000221,0.000000,0.000000,0.000889,0.165423,-0.001203,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000107,0.000094,0.000221,0.000000,0.000000,0.000876,0.164236,-0.001187,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000106,0.000093,0.000221,0.000000,0.000000,0.000863,0.163064,-0.001172,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000104,0.000092,0.000221,0.000000,0.000000,0.000851,0.161907,-0.001157,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000103,0.000091,0.000221,0.000000,0.000000,0.000839,0.160766,-0.001142,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000101,0.000089,0.000221,0.000000,0.000000,0.000828,0.159639,-0.001127,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000100,0.000088,0.000222,0.000000,0.000000,0.000816,0.158527,-0.001112,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000098,0.000087,0.000222,0.000000,0.000000,0.000805,0.157429,-0.001098,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000097,0.000086,0.000222,0.000000,0.000000,0.000794,0.156346,-0.001083,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000096,0.000085,0.000222,0.000133,0.000133,0.000783,0.155146,-0.001200,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000094,0.000083,0.000222,0.000368,0.000368,0.000772,0.153729,-0.001417,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000093,0.000082,0.000223,0.000518,0.000518,0.000761,0.152183,-0.001546,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000091,0.000080,0.000223,0.000626,0.000626,0.000749,0.150550,-0.001633,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000090,0.000078,0.000223,0.000600,0.000600,0.000738,0.148965,-0.001585,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000125,0.000000,0.000000,0.000000,0.000134,0.000089,0.000077,0.000223,0.000551,0.000551,0.000726,0.147572,-0.001392,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000129,0.000000,0.000000,0.000000,0.000136,0.000087,0.000075,0.000223,0.000489,0.000489,0.000714,0.146263,-0.001309,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000134,0.000000,0.000000,0.000000,0.000137,0.000086,0.000074,0.000223,0.000457,0.000457,0.000703,0.145007,-0.001256,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000084,0.000073,0.000223,0.000382,0.000382,0.000691,0.143834,-0.001173,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000140,0.000083,0.000072,0.000223,0.000298,0.000298,0.000680,0.142821,-0.001013,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000142,0.000082,0.000071,0.000224,0.000182,0.000182,0.000669,0.141873,-0.000947,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000686,0.000024,0.000044,0.000024,0.000144,0.000080,0.000070,0.000248,0.000065,0.000065,0.000659,0.141563,-0.000310,1.000000,0.000020 +122,2022-08-06 02:00:00,0.000906,0.000060,0.000090,0.000060,0.000145,0.000079,0.000070,0.000285,0.000000,0.000000,0.000651,0.141492,-0.000071,1.000000,0.000049 +123,2022-08-06 03:00:00,0.000915,0.000082,0.000092,0.000082,0.000147,0.000078,0.000070,0.000307,0.000000,0.000000,0.000643,0.141429,-0.000063,1.000000,0.000059 +124,2022-08-06 04:00:00,0.000906,0.000090,0.000090,0.000090,0.000148,0.000077,0.000070,0.000316,0.000000,0.000000,0.000635,0.141359,-0.000069,1.000000,0.000059 +125,2022-08-06 05:00:00,0.000892,0.000089,0.000087,0.000089,0.000150,0.000077,0.000070,0.000315,0.000000,0.000000,0.000629,0.141280,-0.000079,1.000000,0.000057 +126,2022-08-06 06:00:00,0.000903,0.000089,0.000089,0.000089,0.000151,0.000076,0.000070,0.000316,0.000000,0.000000,0.000623,0.141211,-0.000069,1.000000,0.000058 +127,2022-08-06 07:00:00,0.000000,0.000040,0.000000,0.000040,0.000153,0.000075,0.000069,0.000268,0.000000,0.000000,0.000617,0.140339,-0.000872,1.000000,0.000018 +128,2022-08-06 08:00:00,0.000000,0.000018,0.000000,0.000018,0.000154,0.000074,0.000068,0.000246,0.000000,0.000000,0.000611,0.139479,-0.000860,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000074,0.000067,0.000229,0.000000,0.000000,0.000605,0.138630,-0.000849,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000073,0.000067,0.000230,0.000000,0.000000,0.000598,0.137792,-0.000838,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000072,0.000066,0.000231,0.000000,0.000000,0.000592,0.136965,-0.000827,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000071,0.000065,0.000231,0.000000,0.000000,0.000586,0.136148,-0.000816,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000071,0.000064,0.000232,0.000000,0.000000,0.000579,0.135343,-0.000806,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000070,0.000063,0.000233,0.000115,0.000115,0.000572,0.134434,-0.000909,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000069,0.000062,0.000233,0.000338,0.000338,0.000565,0.133318,-0.001116,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000068,0.000061,0.000234,0.000471,0.000471,0.000558,0.132084,-0.001234,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000067,0.000059,0.000235,0.000578,0.000578,0.000550,0.130761,-0.001323,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000066,0.000058,0.000235,0.000656,0.000656,0.000542,0.129378,-0.001383,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000065,0.000056,0.000235,0.000607,0.000607,0.000533,0.128061,-0.001317,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000064,0.000055,0.000236,0.000543,0.000543,0.000525,0.126825,-0.001236,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000063,0.000054,0.000236,0.000511,0.000511,0.000516,0.125637,-0.001188,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000062,0.000053,0.000237,0.000424,0.000424,0.000507,0.124550,-0.001087,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000061,0.000052,0.000237,0.000325,0.000325,0.000498,0.123575,-0.000975,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000059,0.000051,0.000237,0.000188,0.000188,0.000489,0.122748,-0.000827,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000058,0.000050,0.000238,0.000048,0.000048,0.000481,0.122070,-0.000678,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000057,0.000049,0.000238,0.000000,0.000000,0.000473,0.121448,-0.000622,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000057,0.000049,0.000239,0.000000,0.000000,0.000465,0.120834,-0.000614,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000056,0.000048,0.000239,0.000000,0.000000,0.000457,0.120228,-0.000606,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000055,0.000047,0.000240,0.000000,0.000000,0.000450,0.119630,-0.000598,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000054,0.000047,0.000240,0.000000,0.000000,0.000443,0.119040,-0.000590,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000053,0.000046,0.000241,0.000000,0.000000,0.000436,0.118457,-0.000583,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000052,0.000046,0.000241,0.000000,0.000000,0.000430,0.117882,-0.000575,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000051,0.000045,0.000242,0.000000,0.000000,0.000423,0.117315,-0.000567,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000051,0.000044,0.000243,0.000000,0.000000,0.000417,0.116755,-0.000560,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000050,0.000044,0.000243,0.000000,0.000000,0.000411,0.116202,-0.000553,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000049,0.000043,0.000244,0.000000,0.000000,0.000405,0.115657,-0.000546,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000049,0.000043,0.000245,0.000000,0.000000,0.000399,0.115118,-0.000538,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000048,0.000042,0.000245,0.000112,0.000112,0.000394,0.114476,-0.000642,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000047,0.000041,0.000246,0.000348,0.000348,0.000388,0.113610,-0.000866,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000046,0.000040,0.000247,0.000493,0.000493,0.000382,0.112612,-0.000998,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000046,0.000039,0.000247,0.000599,0.000599,0.000375,0.111522,-0.001090,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000045,0.000038,0.000248,0.000659,0.000659,0.000368,0.110387,-0.001135,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000044,0.000037,0.000248,0.000603,0.000603,0.000361,0.109322,-0.001065,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000043,0.000036,0.000249,0.000532,0.000532,0.000354,0.108342,-0.000981,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000042,0.000035,0.000249,0.000517,0.000517,0.000346,0.107389,-0.000953,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000041,0.000034,0.000249,0.000432,0.000432,0.000339,0.106532,-0.000857,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000040,0.000033,0.000250,0.000323,0.000323,0.000332,0.105793,-0.000738,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000039,0.000032,0.000250,0.000158,0.000158,0.000325,0.105228,-0.000565,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000039,0.000032,0.000251,0.000017,0.000017,0.000318,0.104808,-0.000419,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000038,0.000032,0.000251,0.000000,0.000000,0.000312,0.104412,-0.000397,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000037,0.000031,0.000252,0.000000,0.000000,0.000306,0.104020,-0.000392,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000036,0.000031,0.000252,0.000000,0.000000,0.000300,0.103633,-0.000387,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000036,0.000030,0.000253,0.000000,0.000000,0.000295,0.103252,-0.000382,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000035,0.000030,0.000254,0.000000,0.000000,0.000289,0.102875,-0.000377,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000034,0.000030,0.000254,0.000000,0.000000,0.000284,0.102503,-0.000372,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000034,0.000029,0.000255,0.000000,0.000000,0.000280,0.102137,-0.000367,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000033,0.000029,0.000256,0.000000,0.000000,0.000275,0.101774,-0.000362,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000033,0.000028,0.000256,0.000000,0.000000,0.000271,0.101417,-0.000357,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000032,0.000028,0.000257,0.000000,0.000000,0.000266,0.101064,-0.000353,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000032,0.000028,0.000258,0.000000,0.000000,0.000262,0.100716,-0.000348,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000031,0.000027,0.000259,0.000000,0.000000,0.000258,0.100373,-0.000344,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000031,0.000027,0.000259,0.000096,0.000096,0.000254,0.099940,-0.000433,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000030,0.000026,0.000260,0.000330,0.000330,0.000250,0.099280,-0.000660,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000030,0.000025,0.000261,0.000483,0.000483,0.000245,0.098478,-0.000802,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000029,0.000024,0.000261,0.000574,0.000574,0.000241,0.097597,-0.000881,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000029,0.000023,0.000262,0.000649,0.000649,0.000236,0.096654,-0.000943,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000028,0.000022,0.000263,0.000594,0.000594,0.000230,0.095777,-0.000877,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000027,0.000022,0.000263,0.000528,0.000528,0.000224,0.094977,-0.000800,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000027,0.000021,0.000264,0.000501,0.000501,0.000219,0.094214,-0.000763,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000026,0.000020,0.000264,0.000424,0.000424,0.000213,0.093537,-0.000677,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000025,0.000020,0.000264,0.000325,0.000325,0.000207,0.092966,-0.000571,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000024,0.000019,0.000265,0.000184,0.000184,0.000202,0.092541,-0.000424,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000024,0.000019,0.000266,0.000038,0.000038,0.000197,0.092267,-0.000275,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000018,0.000000,0.000000,0.000000,0.000243,0.000023,0.000019,0.000266,0.000000,0.000000,0.000192,0.092051,-0.000216,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000244,0.000023,0.000018,0.000267,0.000000,0.000000,0.000188,0.091822,-0.000229,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000022,0.000018,0.000267,0.000000,0.000000,0.000184,0.091594,-0.000228,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000022,0.000018,0.000268,0.000000,0.000000,0.000180,0.091370,-0.000225,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000021,0.000018,0.000269,0.000000,0.000000,0.000176,0.091148,-0.000222,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000021,0.000017,0.000269,0.000000,0.000000,0.000172,0.090929,-0.000219,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000020,0.000017,0.000270,0.000000,0.000000,0.000169,0.090714,-0.000216,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000020,0.000017,0.000271,0.000000,0.000000,0.000166,0.090500,-0.000213,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000020,0.000017,0.000271,0.000000,0.000000,0.000163,0.090290,-0.000210,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000019,0.000016,0.000272,0.000000,0.000000,0.000160,0.090083,-0.000208,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000019,0.000016,0.000273,0.000000,0.000000,0.000157,0.089878,-0.000205,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000019,0.000016,0.000274,0.000000,0.000000,0.000155,0.089676,-0.000202,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000018,0.000016,0.000274,0.000106,0.000106,0.000152,0.089371,-0.000305,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620866.csv b/test/channel_loss/channel_forcing/et/cat-2620866.csv new file mode 100644 index 000000000..23c16724e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620866.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001486,0.000473,0.001486,0.000168,0.000168,0.010584,0.434140,-0.004797,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001345,0.000466,0.001345,0.000040,0.000040,0.009705,0.429540,-0.004599,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001225,0.000459,0.001225,0.000000,0.000000,0.008939,0.425049,-0.004491,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001122,0.000452,0.001122,0.000000,0.000000,0.008270,0.420624,-0.004425,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001034,0.000446,0.001034,0.000000,0.000000,0.007682,0.416265,-0.004359,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000957,0.000439,0.000957,0.000000,0.000000,0.007164,0.411970,-0.004295,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000890,0.000433,0.000890,0.000000,0.000000,0.006707,0.407739,-0.004231,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000831,0.000426,0.000832,0.000000,0.000000,0.006302,0.403571,-0.004168,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000780,0.000420,0.000781,0.000000,0.000000,0.005943,0.399464,-0.004106,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000734,0.000414,0.000736,0.000000,0.000000,0.005622,0.395419,-0.004046,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000694,0.000408,0.000696,0.000000,0.000000,0.005335,0.391433,-0.003986,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000658,0.000402,0.000660,0.000000,0.000000,0.005079,0.387507,-0.003926,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000626,0.000396,0.000629,0.000000,0.000000,0.004848,0.383639,-0.003868,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000598,0.000390,0.000600,0.000000,0.000000,0.004640,0.379828,-0.003811,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000572,0.000384,0.000575,0.000126,0.000126,0.004452,0.375949,-0.003879,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000549,0.000377,0.000552,0.000362,0.000362,0.004281,0.371896,-0.004053,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000527,0.000371,0.000531,0.000540,0.000540,0.004124,0.367727,-0.004169,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000508,0.000365,0.000513,0.000683,0.000683,0.003981,0.363478,-0.004248,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000490,0.000358,0.000495,0.000677,0.000677,0.003849,0.359300,-0.004179,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000010,0.000000,0.000000,0.000000,0.000006,0.000474,0.000352,0.000480,0.000618,0.000618,0.003727,0.355252,-0.004048,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000245,0.000000,0.000000,0.000000,0.000006,0.000459,0.000346,0.000465,0.000501,0.000501,0.003614,0.351610,-0.003642,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000069,0.000000,0.000000,0.000000,0.000007,0.000445,0.000341,0.000452,0.000385,0.000385,0.003510,0.347963,-0.003647,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000432,0.000335,0.000440,0.000299,0.000299,0.003413,0.344387,-0.003576,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000420,0.000330,0.000428,0.000228,0.000228,0.003322,0.340934,-0.003453,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001140,0.000057,0.000104,0.000057,0.000009,0.000409,0.000326,0.000475,0.000138,0.000138,0.003240,0.338641,-0.002293,1.000000,0.000047 +25,2022-08-02 01:00:00,0.000530,0.000040,0.000025,0.000040,0.000010,0.000399,0.000322,0.000448,0.000049,0.000049,0.003163,0.335947,-0.002694,1.000000,0.000032 +26,2022-08-02 02:00:00,0.000384,0.000036,0.000016,0.000036,0.000010,0.000390,0.000318,0.000436,0.000000,0.000000,0.003091,0.333205,-0.002742,1.000000,0.000012 +27,2022-08-02 03:00:00,0.000006,0.000009,0.000000,0.000009,0.000011,0.000381,0.000313,0.000401,0.000000,0.000000,0.003023,0.330148,-0.003057,1.000000,0.000003 +28,2022-08-02 04:00:00,0.000000,0.000003,0.000000,0.000003,0.000012,0.000372,0.000309,0.000387,0.000000,0.000000,0.002960,0.327130,-0.003018,1.000000,0.000000 +29,2022-08-02 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000364,0.000304,0.000377,0.000000,0.000000,0.002899,0.324157,-0.002973,1.000000,0.000000 +30,2022-08-02 06:00:00,0.000064,0.000000,0.000000,0.000000,0.000013,0.000357,0.000300,0.000371,0.000000,0.000000,0.002842,0.321290,-0.002867,1.000000,0.000000 +31,2022-08-02 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000350,0.000295,0.000364,0.000000,0.000000,0.002787,0.318404,-0.002886,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000343,0.000291,0.000358,0.000000,0.000000,0.002735,0.315560,-0.002844,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000337,0.000286,0.000352,0.000000,0.000000,0.002685,0.312759,-0.002801,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000330,0.000282,0.000347,0.000000,0.000000,0.002637,0.309999,-0.002760,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000324,0.000278,0.000342,0.000000,0.000000,0.002591,0.307280,-0.002719,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000319,0.000274,0.000337,0.000000,0.000000,0.002546,0.304601,-0.002679,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000313,0.000270,0.000332,0.000000,0.000000,0.002503,0.301962,-0.002639,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000308,0.000266,0.000328,0.000105,0.000105,0.002461,0.299259,-0.002703,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000302,0.000261,0.000324,0.000339,0.000339,0.002420,0.296366,-0.002893,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000297,0.000257,0.000319,0.000508,0.000508,0.002380,0.293349,-0.003017,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000292,0.000252,0.000315,0.000657,0.000657,0.002340,0.290229,-0.003119,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000287,0.000247,0.000311,0.000769,0.000769,0.002300,0.287046,-0.003184,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000282,0.000242,0.000307,0.000689,0.000689,0.002260,0.283988,-0.003057,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000277,0.000238,0.000303,0.000566,0.000566,0.002221,0.281097,-0.002891,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000272,0.000233,0.000299,0.000509,0.000509,0.002183,0.278306,-0.002792,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000267,0.000229,0.000296,0.000411,0.000411,0.002146,0.275651,-0.002654,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000262,0.000225,0.000292,0.000305,0.000305,0.002109,0.273141,-0.002511,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000258,0.000222,0.000288,0.000167,0.000167,0.002073,0.270804,-0.002337,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000253,0.000219,0.000285,0.000022,0.000022,0.002038,0.268644,-0.002160,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000249,0.000215,0.000282,0.000000,0.000000,0.002005,0.266539,-0.002106,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000245,0.000212,0.000279,0.000000,0.000000,0.001972,0.264464,-0.002075,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000241,0.000209,0.000276,0.000000,0.000000,0.001940,0.262420,-0.002044,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000237,0.000206,0.000273,0.000000,0.000000,0.001910,0.260406,-0.002014,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000233,0.000203,0.000270,0.000000,0.000000,0.001879,0.258423,-0.001984,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000229,0.000200,0.000268,0.000000,0.000000,0.001850,0.256469,-0.001954,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000226,0.000197,0.000265,0.000000,0.000000,0.001821,0.254543,-0.001925,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000222,0.000194,0.000263,0.000000,0.000000,0.001793,0.252646,-0.001897,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000219,0.000191,0.000261,0.000000,0.000000,0.001766,0.250778,-0.001869,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000215,0.000188,0.000258,0.000000,0.000000,0.001739,0.248937,-0.001841,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000212,0.000185,0.000256,0.000000,0.000000,0.001713,0.247123,-0.001814,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000209,0.000183,0.000254,0.000000,0.000000,0.001687,0.245336,-0.001787,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000205,0.000180,0.000252,0.000122,0.000122,0.001661,0.243456,-0.001881,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000202,0.000177,0.000250,0.000367,0.000367,0.001636,0.241362,-0.002094,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000199,0.000173,0.000248,0.000544,0.000544,0.001610,0.239125,-0.002238,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000196,0.000170,0.000246,0.000693,0.000693,0.001584,0.236774,-0.002351,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000192,0.000166,0.000244,0.000691,0.000691,0.001558,0.234459,-0.002314,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000189,0.000163,0.000242,0.000614,0.000614,0.001531,0.232255,-0.002204,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000186,0.000159,0.000240,0.000510,0.000510,0.001505,0.230186,-0.002069,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000182,0.000156,0.000238,0.000446,0.000446,0.001479,0.228211,-0.001975,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000222,0.000000,0.000000,0.000000,0.000057,0.000179,0.000154,0.000236,0.000350,0.000350,0.001454,0.226579,-0.001633,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000052,0.000000,0.000000,0.000000,0.000058,0.000176,0.000151,0.000234,0.000253,0.000253,0.001429,0.224898,-0.001681,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000173,0.000149,0.000232,0.000149,0.000149,0.001405,0.223294,-0.001604,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000170,0.000147,0.000231,0.000032,0.000032,0.001381,0.221830,-0.001465,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000167,0.000144,0.000229,0.000000,0.000000,0.001359,0.220418,-0.001412,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000164,0.000142,0.000227,0.000000,0.000000,0.001336,0.219027,-0.001391,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000207,0.000002,0.000004,0.000002,0.000064,0.000162,0.000140,0.000228,0.000000,0.000000,0.001315,0.217858,-0.001170,1.000000,0.000002 +77,2022-08-04 05:00:00,0.000012,0.000001,0.000000,0.000001,0.000066,0.000159,0.000138,0.000226,0.000000,0.000000,0.001294,0.216517,-0.001341,1.000000,0.000001 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000067,0.000157,0.000136,0.000224,0.000000,0.000000,0.001274,0.215184,-0.001333,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000154,0.000134,0.000222,0.000000,0.000000,0.001254,0.213871,-0.001313,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000152,0.000132,0.000221,0.000000,0.000000,0.001235,0.212577,-0.001294,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000149,0.000130,0.000220,0.000000,0.000000,0.001216,0.211303,-0.001275,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000147,0.000128,0.000219,0.000000,0.000000,0.001197,0.210047,-0.001256,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000145,0.000126,0.000218,0.000000,0.000000,0.001179,0.208810,-0.001237,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000142,0.000125,0.000217,0.000000,0.000000,0.001161,0.207591,-0.001219,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000140,0.000123,0.000216,0.000000,0.000000,0.001143,0.206391,-0.001201,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000138,0.000121,0.000215,0.000119,0.000119,0.001126,0.205090,-0.001300,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000136,0.000118,0.000214,0.000363,0.000363,0.001109,0.203569,-0.001522,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000134,0.000116,0.000214,0.000542,0.000542,0.001091,0.201894,-0.001675,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000131,0.000113,0.000213,0.000689,0.000689,0.001072,0.200099,-0.001795,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000129,0.000110,0.000212,0.000698,0.000698,0.001054,0.198322,-0.001777,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000127,0.000108,0.000210,0.000673,0.000673,0.001034,0.196595,-0.001727,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000124,0.000105,0.000209,0.000582,0.000582,0.001015,0.194984,-0.001611,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000122,0.000103,0.000208,0.000482,0.000482,0.000996,0.193496,-0.001488,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000120,0.000101,0.000207,0.000389,0.000389,0.000977,0.192121,-0.001375,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000479,0.000002,0.000003,0.000002,0.000089,0.000117,0.000100,0.000208,0.000296,0.000296,0.000960,0.191328,-0.000793,1.000000,0.000001 +96,2022-08-05 00:00:00,0.000401,0.000003,0.000004,0.000003,0.000090,0.000115,0.000098,0.000209,0.000178,0.000178,0.000943,0.190584,-0.000744,1.000000,0.000003 +97,2022-08-05 01:00:00,0.000412,0.000008,0.000012,0.000008,0.000091,0.000113,0.000098,0.000213,0.000045,0.000045,0.000927,0.189986,-0.000599,1.000000,0.000006 +98,2022-08-05 02:00:00,0.000000,0.000004,0.000000,0.000004,0.000093,0.000111,0.000096,0.000208,0.000000,0.000000,0.000911,0.189046,-0.000940,1.000000,0.000002 +99,2022-08-05 03:00:00,0.000000,0.000002,0.000000,0.000002,0.000094,0.000110,0.000095,0.000206,0.000000,0.000000,0.000896,0.188120,-0.000926,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000108,0.000093,0.000203,0.000000,0.000000,0.000882,0.187208,-0.000912,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000106,0.000092,0.000203,0.000000,0.000000,0.000868,0.186310,-0.000898,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000104,0.000091,0.000202,0.000000,0.000000,0.000854,0.185425,-0.000885,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000103,0.000089,0.000202,0.000000,0.000000,0.000840,0.184553,-0.000872,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000101,0.000088,0.000202,0.000000,0.000000,0.000827,0.183694,-0.000859,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000099,0.000087,0.000201,0.000000,0.000000,0.000814,0.182848,-0.000846,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000098,0.000085,0.000201,0.000000,0.000000,0.000801,0.182014,-0.000834,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000096,0.000084,0.000201,0.000000,0.000000,0.000789,0.181193,-0.000821,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000095,0.000083,0.000201,0.000000,0.000000,0.000777,0.180384,-0.000809,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000093,0.000082,0.000200,0.000000,0.000000,0.000765,0.179586,-0.000797,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000092,0.000080,0.000200,0.000132,0.000132,0.000753,0.178671,-0.000916,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000090,0.000078,0.000200,0.000371,0.000371,0.000741,0.177533,-0.001137,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000089,0.000076,0.000200,0.000550,0.000550,0.000729,0.176236,-0.001297,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000087,0.000074,0.000199,0.000702,0.000702,0.000716,0.174809,-0.001427,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000086,0.000072,0.000199,0.000717,0.000717,0.000702,0.173388,-0.001421,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000084,0.000070,0.000199,0.000615,0.000615,0.000688,0.172089,-0.001299,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000310,0.000000,0.000000,0.000000,0.000116,0.000082,0.000069,0.000198,0.000525,0.000525,0.000674,0.171203,-0.000886,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000224,0.000000,0.000000,0.000000,0.000117,0.000081,0.000067,0.000198,0.000434,0.000434,0.000661,0.170335,-0.000868,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000079,0.000066,0.000197,0.000352,0.000352,0.000648,0.169340,-0.000995,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000077,0.000064,0.000197,0.000271,0.000271,0.000635,0.168440,-0.000900,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000169,0.000000,0.000000,0.000000,0.000121,0.000076,0.000063,0.000197,0.000164,0.000164,0.000622,0.167825,-0.000616,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000517,0.000010,0.000018,0.000010,0.000122,0.000074,0.000063,0.000207,0.000051,0.000051,0.000611,0.167655,-0.000170,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000000,0.000005,0.000000,0.000005,0.000123,0.000073,0.000062,0.000201,0.000000,0.000000,0.000600,0.167047,-0.000608,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000282,0.000007,0.000007,0.000007,0.000125,0.000072,0.000062,0.000204,0.000000,0.000000,0.000590,0.166719,-0.000328,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000000,0.000002,0.000000,0.000002,0.000126,0.000071,0.000061,0.000198,0.000000,0.000000,0.000580,0.166124,-0.000595,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000127,0.000069,0.000060,0.000198,0.000000,0.000000,0.000571,0.165538,-0.000586,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000068,0.000059,0.000197,0.000000,0.000000,0.000561,0.164961,-0.000577,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000067,0.000058,0.000197,0.000000,0.000000,0.000552,0.164393,-0.000569,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000066,0.000057,0.000197,0.000000,0.000000,0.000543,0.163833,-0.000560,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000065,0.000056,0.000197,0.000000,0.000000,0.000535,0.163281,-0.000552,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000064,0.000056,0.000197,0.000000,0.000000,0.000526,0.162737,-0.000544,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000063,0.000055,0.000197,0.000000,0.000000,0.000518,0.162202,-0.000536,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000062,0.000054,0.000198,0.000000,0.000000,0.000510,0.161674,-0.000528,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000061,0.000053,0.000198,0.000000,0.000000,0.000502,0.161155,-0.000520,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000060,0.000052,0.000198,0.000116,0.000116,0.000494,0.160529,-0.000626,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000059,0.000051,0.000198,0.000350,0.000350,0.000486,0.159681,-0.000847,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000058,0.000049,0.000198,0.000534,0.000534,0.000477,0.158665,-0.001017,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000057,0.000048,0.000198,0.000683,0.000683,0.000468,0.157517,-0.001148,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000056,0.000046,0.000198,0.000766,0.000766,0.000458,0.156304,-0.001213,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000054,0.000044,0.000198,0.000684,0.000684,0.000447,0.155190,-0.001114,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000053,0.000042,0.000198,0.000592,0.000592,0.000437,0.154184,-0.001006,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000052,0.000041,0.000198,0.000495,0.000495,0.000426,0.153287,-0.000897,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000050,0.000040,0.000198,0.000400,0.000400,0.000415,0.152498,-0.000790,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000049,0.000039,0.000198,0.000296,0.000296,0.000405,0.151823,-0.000675,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000048,0.000038,0.000198,0.000158,0.000158,0.000395,0.151293,-0.000530,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000047,0.000037,0.000198,0.000033,0.000033,0.000386,0.150895,-0.000398,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000046,0.000037,0.000198,0.000000,0.000000,0.000377,0.150535,-0.000360,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000045,0.000036,0.000198,0.000000,0.000000,0.000368,0.150180,-0.000355,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000044,0.000036,0.000198,0.000000,0.000000,0.000360,0.149831,-0.000349,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000043,0.000035,0.000198,0.000000,0.000000,0.000353,0.149487,-0.000344,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000042,0.000035,0.000198,0.000000,0.000000,0.000345,0.149148,-0.000339,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000041,0.000034,0.000199,0.000000,0.000000,0.000338,0.148814,-0.000334,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000040,0.000034,0.000199,0.000000,0.000000,0.000332,0.148485,-0.000329,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000039,0.000033,0.000199,0.000000,0.000000,0.000325,0.148160,-0.000324,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000039,0.000033,0.000200,0.000000,0.000000,0.000319,0.147841,-0.000319,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000038,0.000032,0.000200,0.000000,0.000000,0.000313,0.147526,-0.000315,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000037,0.000032,0.000201,0.000000,0.000000,0.000308,0.147216,-0.000310,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000031,0.000201,0.000000,0.000000,0.000302,0.146911,-0.000305,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000036,0.000031,0.000201,0.000110,0.000110,0.000297,0.146502,-0.000409,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000035,0.000030,0.000202,0.000345,0.000345,0.000291,0.145866,-0.000635,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000035,0.000028,0.000202,0.000525,0.000525,0.000285,0.145064,-0.000803,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000034,0.000027,0.000202,0.000673,0.000673,0.000278,0.144127,-0.000936,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000033,0.000025,0.000202,0.000759,0.000759,0.000271,0.143120,-0.001007,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000032,0.000024,0.000202,0.000688,0.000688,0.000263,0.142198,-0.000922,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000031,0.000023,0.000203,0.000574,0.000574,0.000255,0.141401,-0.000797,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000030,0.000022,0.000203,0.000490,0.000490,0.000247,0.140700,-0.000702,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000029,0.000021,0.000203,0.000394,0.000394,0.000238,0.140103,-0.000596,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000028,0.000020,0.000203,0.000288,0.000288,0.000230,0.139620,-0.000483,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000027,0.000020,0.000203,0.000138,0.000138,0.000223,0.139292,-0.000328,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000026,0.000019,0.000203,0.000005,0.000005,0.000216,0.139099,-0.000193,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000017,0.000000,0.000000,0.000000,0.000178,0.000025,0.000019,0.000203,0.000000,0.000000,0.000210,0.138931,-0.000168,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000025,0.000019,0.000203,0.000000,0.000000,0.000204,0.138748,-0.000183,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000024,0.000018,0.000204,0.000000,0.000000,0.000198,0.138569,-0.000180,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000023,0.000018,0.000204,0.000000,0.000000,0.000193,0.138391,-0.000177,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000023,0.000018,0.000205,0.000000,0.000000,0.000188,0.138217,-0.000175,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000022,0.000018,0.000205,0.000000,0.000000,0.000183,0.138045,-0.000172,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000022,0.000017,0.000205,0.000000,0.000000,0.000179,0.137876,-0.000169,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000021,0.000017,0.000206,0.000000,0.000000,0.000175,0.137709,-0.000167,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000021,0.000017,0.000206,0.000000,0.000000,0.000171,0.137544,-0.000164,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000020,0.000017,0.000207,0.000000,0.000000,0.000167,0.137382,-0.000162,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000020,0.000016,0.000207,0.000000,0.000000,0.000164,0.137223,-0.000160,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000019,0.000016,0.000208,0.000000,0.000000,0.000160,0.137065,-0.000157,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000019,0.000016,0.000208,0.000095,0.000095,0.000157,0.136817,-0.000249,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000019,0.000015,0.000209,0.000333,0.000333,0.000153,0.136337,-0.000479,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000018,0.000014,0.000209,0.000520,0.000520,0.000149,0.135681,-0.000656,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000017,0.000013,0.000210,0.000659,0.000659,0.000145,0.134898,-0.000783,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000017,0.000011,0.000210,0.000763,0.000763,0.000139,0.134023,-0.000875,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000016,0.000010,0.000210,0.000687,0.000687,0.000133,0.133237,-0.000786,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000015,0.000009,0.000210,0.000569,0.000569,0.000127,0.132579,-0.000658,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000015,0.000008,0.000210,0.000503,0.000503,0.000121,0.131995,-0.000584,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000014,0.000008,0.000210,0.000400,0.000400,0.000114,0.131521,-0.000473,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000013,0.000007,0.000211,0.000298,0.000298,0.000108,0.131155,-0.000366,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000012,0.000007,0.000211,0.000165,0.000165,0.000102,0.130926,-0.000230,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000012,0.000006,0.000211,0.000031,0.000031,0.000097,0.130831,-0.000094,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000011,0.000006,0.000211,0.000000,0.000000,0.000092,0.130769,-0.000062,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000011,0.000006,0.000212,0.000000,0.000000,0.000088,0.130707,-0.000062,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000010,0.000006,0.000212,0.000000,0.000000,0.000084,0.130647,-0.000061,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000010,0.000006,0.000212,0.000000,0.000000,0.000080,0.130587,-0.000060,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000203,0.000009,0.000006,0.000213,0.000000,0.000000,0.000077,0.130529,-0.000058,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000009,0.000006,0.000213,0.000000,0.000000,0.000074,0.130471,-0.000058,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000009,0.000006,0.000214,0.000000,0.000000,0.000071,0.130414,-0.000057,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000008,0.000006,0.000214,0.000000,0.000000,0.000069,0.130358,-0.000056,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000008,0.000006,0.000215,0.000000,0.000000,0.000066,0.130303,-0.000055,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000008,0.000006,0.000215,0.000000,0.000000,0.000064,0.130248,-0.000055,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000008,0.000006,0.000216,0.000000,0.000000,0.000062,0.130194,-0.000054,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000007,0.000005,0.000216,0.000000,0.000000,0.000060,0.130141,-0.000053,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000007,0.000005,0.000217,0.000106,0.000106,0.000058,0.129984,-0.000157,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620867.csv b/test/channel_loss/channel_forcing/et/cat-2620867.csv new file mode 100644 index 000000000..b160458ec --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620867.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001473,0.000377,0.001473,0.000169,0.000169,0.010501,0.427731,-0.004853,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001321,0.000372,0.001321,0.000042,0.000042,0.009552,0.423073,-0.004658,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001192,0.000366,0.001192,0.000000,0.000000,0.008726,0.418523,-0.004550,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001082,0.000361,0.001082,0.000000,0.000000,0.008005,0.414039,-0.004485,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000988,0.000356,0.000988,0.000000,0.000000,0.007374,0.409618,-0.004421,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000906,0.000351,0.000906,0.000000,0.000000,0.006819,0.405261,-0.004357,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000835,0.000346,0.000836,0.000000,0.000000,0.006329,0.400966,-0.004295,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000773,0.000341,0.000774,0.000000,0.000000,0.005897,0.396732,-0.004233,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000719,0.000336,0.000720,0.000000,0.000000,0.005514,0.392560,-0.004173,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000671,0.000331,0.000673,0.000000,0.000000,0.005174,0.388446,-0.004113,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000629,0.000326,0.000631,0.000000,0.000000,0.004871,0.384392,-0.004054,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000592,0.000322,0.000594,0.000000,0.000000,0.004600,0.380396,-0.003996,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000559,0.000317,0.000562,0.000000,0.000000,0.004358,0.376457,-0.003939,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000530,0.000313,0.000533,0.000000,0.000000,0.004141,0.372574,-0.003883,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000308,0.000507,0.000124,0.000124,0.003946,0.368624,-0.003950,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000480,0.000303,0.000483,0.000355,0.000355,0.003769,0.364503,-0.004121,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000458,0.000298,0.000462,0.000532,0.000532,0.003609,0.360267,-0.004236,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000439,0.000293,0.000444,0.000673,0.000673,0.003464,0.355953,-0.004314,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000421,0.000288,0.000427,0.000659,0.000659,0.003331,0.351713,-0.004239,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000405,0.000283,0.000411,0.000596,0.000596,0.003209,0.347597,-0.004116,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000263,0.000000,0.000000,0.000000,0.000007,0.000390,0.000279,0.000397,0.000496,0.000496,0.003098,0.343898,-0.003700,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000077,0.000000,0.000000,0.000000,0.000007,0.000377,0.000275,0.000384,0.000380,0.000380,0.002995,0.340182,-0.003716,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000365,0.000270,0.000373,0.000302,0.000302,0.002901,0.336520,-0.003661,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000009,0.000353,0.000266,0.000362,0.000227,0.000227,0.002814,0.332986,-0.003535,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001090,0.000072,0.000132,0.000072,0.000009,0.000343,0.000263,0.000425,0.000144,0.000144,0.002735,0.330528,-0.002458,1.000000,0.000059 +25,2022-08-02 01:00:00,0.000506,0.000051,0.000032,0.000051,0.000010,0.000333,0.000260,0.000394,0.000053,0.000053,0.002661,0.327717,-0.002811,1.000000,0.000041 +26,2022-08-02 02:00:00,0.000426,0.000050,0.000029,0.000050,0.000011,0.000325,0.000257,0.000386,0.000000,0.000000,0.002594,0.324923,-0.002793,1.000000,0.000019 +27,2022-08-02 03:00:00,0.000039,0.000014,0.000000,0.000014,0.000011,0.000316,0.000253,0.000342,0.000000,0.000000,0.002530,0.321816,-0.003107,1.000000,0.000006 +28,2022-08-02 04:00:00,0.000000,0.000006,0.000000,0.000006,0.000012,0.000309,0.000250,0.000327,0.000000,0.000000,0.002471,0.318715,-0.003101,1.000000,0.000000 +29,2022-08-02 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000302,0.000246,0.000315,0.000000,0.000000,0.002416,0.315659,-0.003057,1.000000,0.000000 +30,2022-08-02 06:00:00,0.000089,0.000001,0.000001,0.000001,0.000014,0.000295,0.000243,0.000310,0.000000,0.000000,0.002364,0.312733,-0.002926,1.000000,0.000001 +31,2022-08-02 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000289,0.000239,0.000304,0.000000,0.000000,0.002314,0.309762,-0.002971,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000283,0.000236,0.000299,0.000000,0.000000,0.002267,0.306834,-0.002928,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000277,0.000232,0.000293,0.000000,0.000000,0.002223,0.303947,-0.002887,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000271,0.000229,0.000289,0.000000,0.000000,0.002181,0.301102,-0.002845,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000266,0.000226,0.000285,0.000000,0.000000,0.002140,0.298297,-0.002805,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000261,0.000223,0.000281,0.000000,0.000000,0.002102,0.295533,-0.002764,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000257,0.000219,0.000277,0.000000,0.000000,0.002064,0.292808,-0.002725,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000252,0.000216,0.000273,0.000104,0.000104,0.002029,0.290020,-0.002788,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000248,0.000213,0.000270,0.000334,0.000334,0.001994,0.287045,-0.002975,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000243,0.000209,0.000267,0.000500,0.000500,0.001960,0.283948,-0.003097,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000239,0.000205,0.000263,0.000646,0.000646,0.001926,0.280752,-0.003196,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000235,0.000202,0.000260,0.000755,0.000755,0.001893,0.277494,-0.003258,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000231,0.000198,0.000257,0.000674,0.000674,0.001860,0.274363,-0.003131,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000226,0.000194,0.000254,0.000555,0.000555,0.001828,0.271394,-0.002969,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000222,0.000191,0.000251,0.000496,0.000496,0.001797,0.268526,-0.002869,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000219,0.000188,0.000248,0.000405,0.000405,0.001766,0.265788,-0.002738,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000215,0.000185,0.000246,0.000304,0.000304,0.001736,0.263189,-0.002599,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000211,0.000182,0.000243,0.000166,0.000166,0.001707,0.260763,-0.002426,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000208,0.000179,0.000241,0.000023,0.000023,0.001679,0.258512,-0.002250,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000204,0.000177,0.000238,0.000000,0.000000,0.001651,0.256317,-0.002195,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000201,0.000174,0.000236,0.000000,0.000000,0.001625,0.254154,-0.002164,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000197,0.000172,0.000234,0.000000,0.000000,0.001599,0.252021,-0.002133,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000194,0.000169,0.000232,0.000000,0.000000,0.001574,0.249919,-0.002102,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000191,0.000167,0.000230,0.000000,0.000000,0.001550,0.247847,-0.002072,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000188,0.000164,0.000229,0.000000,0.000000,0.001526,0.245804,-0.002042,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000185,0.000162,0.000227,0.000000,0.000000,0.001503,0.243791,-0.002013,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000182,0.000160,0.000225,0.000000,0.000000,0.001480,0.241806,-0.001984,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000180,0.000158,0.000224,0.000000,0.000000,0.001458,0.239850,-0.001956,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000177,0.000155,0.000222,0.000000,0.000000,0.001436,0.237922,-0.001928,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000174,0.000153,0.000221,0.000000,0.000000,0.001415,0.236022,-0.001900,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000172,0.000151,0.000219,0.000000,0.000000,0.001394,0.234148,-0.001873,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000169,0.000149,0.000218,0.000121,0.000121,0.001374,0.232183,-0.001965,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000167,0.000146,0.000217,0.000362,0.000362,0.001353,0.230008,-0.002176,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000164,0.000143,0.000216,0.000537,0.000537,0.001332,0.227691,-0.002316,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000161,0.000140,0.000214,0.000682,0.000682,0.001312,0.225265,-0.002426,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000159,0.000138,0.000213,0.000686,0.000686,0.001291,0.222870,-0.002395,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000156,0.000135,0.000212,0.000617,0.000617,0.001269,0.220576,-0.002293,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000153,0.000132,0.000210,0.000505,0.000505,0.001249,0.218427,-0.002150,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000151,0.000130,0.000209,0.000439,0.000439,0.001228,0.216372,-0.002054,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000005,0.000000,0.000000,0.000000,0.000059,0.000148,0.000128,0.000208,0.000354,0.000354,0.001207,0.214436,-0.001936,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000002,0.000000,0.000000,0.000000,0.000061,0.000146,0.000126,0.000207,0.000254,0.000254,0.001187,0.212624,-0.001813,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000143,0.000124,0.000205,0.000148,0.000148,0.001168,0.210939,-0.001685,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000141,0.000122,0.000204,0.000033,0.000033,0.001149,0.209392,-0.001547,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000139,0.000120,0.000203,0.000000,0.000000,0.001130,0.207900,-0.001492,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000136,0.000118,0.000203,0.000000,0.000000,0.001112,0.206429,-0.001471,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000021,0.000000,0.000000,0.000000,0.000067,0.000134,0.000117,0.000202,0.000000,0.000000,0.001095,0.205000,-0.001429,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000132,0.000115,0.000201,0.000000,0.000000,0.001078,0.203570,-0.001429,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000130,0.000113,0.000200,0.000000,0.000000,0.001061,0.202161,-0.001409,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000128,0.000112,0.000200,0.000000,0.000000,0.001045,0.200773,-0.001389,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000126,0.000110,0.000199,0.000000,0.000000,0.001029,0.199404,-0.001369,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000124,0.000109,0.000198,0.000000,0.000000,0.001013,0.198054,-0.001349,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000122,0.000107,0.000198,0.000000,0.000000,0.000998,0.196724,-0.001330,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000120,0.000106,0.000197,0.000000,0.000000,0.000983,0.195413,-0.001311,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000119,0.000104,0.000197,0.000000,0.000000,0.000969,0.194121,-0.001292,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000117,0.000103,0.000197,0.000000,0.000000,0.000955,0.192847,-0.001274,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000101,0.000196,0.000118,0.000118,0.000940,0.191475,-0.001372,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000113,0.000099,0.000196,0.000360,0.000360,0.000926,0.189885,-0.001591,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000097,0.000195,0.000535,0.000535,0.000912,0.188145,-0.001740,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000110,0.000095,0.000195,0.000679,0.000679,0.000897,0.186287,-0.001858,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000108,0.000093,0.000194,0.000699,0.000699,0.000882,0.184436,-0.001851,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000106,0.000091,0.000194,0.000670,0.000670,0.000867,0.182640,-0.001796,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000104,0.000089,0.000193,0.000578,0.000578,0.000851,0.180962,-0.001679,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000102,0.000087,0.000193,0.000477,0.000477,0.000836,0.179405,-0.001556,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000100,0.000085,0.000192,0.000389,0.000389,0.000821,0.177959,-0.001447,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000373,0.000000,0.000001,0.000000,0.000093,0.000098,0.000084,0.000192,0.000296,0.000296,0.000806,0.176991,-0.000967,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000330,0.000002,0.000003,0.000002,0.000095,0.000097,0.000083,0.000194,0.000177,0.000177,0.000793,0.176111,-0.000880,1.000000,0.000002 +97,2022-08-05 01:00:00,0.000313,0.000006,0.000009,0.000006,0.000096,0.000095,0.000082,0.000197,0.000045,0.000045,0.000779,0.175350,-0.000761,1.000000,0.000005 +98,2022-08-05 02:00:00,0.000000,0.000003,0.000000,0.000003,0.000098,0.000094,0.000081,0.000194,0.000000,0.000000,0.000767,0.174345,-0.001005,1.000000,0.000002 +99,2022-08-05 03:00:00,0.000000,0.000002,0.000000,0.000002,0.000099,0.000092,0.000080,0.000193,0.000000,0.000000,0.000754,0.173354,-0.000991,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000091,0.000079,0.000191,0.000000,0.000000,0.000743,0.172378,-0.000977,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000089,0.000078,0.000191,0.000000,0.000000,0.000731,0.171415,-0.000963,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000088,0.000076,0.000191,0.000000,0.000000,0.000719,0.170466,-0.000949,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000086,0.000075,0.000191,0.000000,0.000000,0.000708,0.169531,-0.000935,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000085,0.000074,0.000191,0.000000,0.000000,0.000698,0.168609,-0.000922,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000084,0.000073,0.000191,0.000000,0.000000,0.000687,0.167701,-0.000909,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000082,0.000072,0.000191,0.000000,0.000000,0.000677,0.166805,-0.000896,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000081,0.000071,0.000191,0.000000,0.000000,0.000666,0.165922,-0.000883,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000080,0.000070,0.000191,0.000000,0.000000,0.000656,0.165052,-0.000870,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000079,0.000069,0.000191,0.000000,0.000000,0.000647,0.164194,-0.000858,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000078,0.000068,0.000192,0.000130,0.000130,0.000637,0.163220,-0.000974,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000076,0.000067,0.000192,0.000365,0.000365,0.000627,0.162029,-0.001191,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000075,0.000065,0.000192,0.000541,0.000541,0.000617,0.160682,-0.001348,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000074,0.000063,0.000192,0.000690,0.000690,0.000606,0.159207,-0.001475,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000073,0.000062,0.000192,0.000706,0.000706,0.000595,0.157737,-0.001470,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000071,0.000060,0.000192,0.000607,0.000607,0.000584,0.156385,-0.001352,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000413,0.000000,0.000000,0.000000,0.000122,0.000070,0.000059,0.000192,0.000523,0.000523,0.000573,0.155544,-0.000842,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000356,0.000000,0.000000,0.000000,0.000123,0.000069,0.000058,0.000192,0.000430,0.000430,0.000563,0.154749,-0.000794,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000067,0.000057,0.000192,0.000348,0.000348,0.000552,0.153696,-0.001053,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000066,0.000056,0.000192,0.000271,0.000271,0.000542,0.152733,-0.000963,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000213,0.000000,0.000000,0.000000,0.000127,0.000065,0.000055,0.000192,0.000164,0.000164,0.000532,0.152100,-0.000633,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000460,0.000011,0.000020,0.000011,0.000129,0.000064,0.000055,0.000204,0.000053,0.000053,0.000523,0.151809,-0.000291,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000000,0.000005,0.000000,0.000005,0.000130,0.000063,0.000054,0.000198,0.000000,0.000000,0.000514,0.151140,-0.000668,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000194,0.000007,0.000005,0.000007,0.000131,0.000062,0.000053,0.000200,0.000000,0.000000,0.000506,0.150668,-0.000472,1.000000,0.000002 +124,2022-08-06 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000133,0.000061,0.000052,0.000195,0.000000,0.000000,0.000498,0.150016,-0.000652,1.000000,0.000001 +125,2022-08-06 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000134,0.000060,0.000052,0.000195,0.000000,0.000000,0.000490,0.149374,-0.000643,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000059,0.000051,0.000194,0.000000,0.000000,0.000482,0.148740,-0.000633,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000058,0.000050,0.000194,0.000000,0.000000,0.000475,0.148116,-0.000624,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000057,0.000050,0.000195,0.000000,0.000000,0.000468,0.147500,-0.000615,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000056,0.000049,0.000195,0.000000,0.000000,0.000461,0.146894,-0.000607,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000055,0.000048,0.000196,0.000000,0.000000,0.000454,0.146296,-0.000598,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000054,0.000047,0.000196,0.000000,0.000000,0.000447,0.145706,-0.000589,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000053,0.000047,0.000197,0.000000,0.000000,0.000440,0.145125,-0.000581,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000053,0.000046,0.000197,0.000000,0.000000,0.000433,0.144553,-0.000573,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000052,0.000045,0.000198,0.000114,0.000114,0.000427,0.143876,-0.000676,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000051,0.000044,0.000198,0.000345,0.000345,0.000420,0.142982,-0.000894,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000050,0.000043,0.000198,0.000524,0.000524,0.000413,0.141923,-0.001059,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000049,0.000042,0.000199,0.000669,0.000669,0.000405,0.140737,-0.001186,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000048,0.000040,0.000199,0.000750,0.000750,0.000397,0.139488,-0.001249,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000047,0.000039,0.000199,0.000677,0.000677,0.000389,0.138328,-0.001160,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000046,0.000038,0.000200,0.000585,0.000585,0.000380,0.137276,-0.001052,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000045,0.000037,0.000200,0.000491,0.000491,0.000372,0.136332,-0.000944,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000044,0.000036,0.000200,0.000399,0.000399,0.000363,0.135493,-0.000840,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000043,0.000035,0.000200,0.000300,0.000300,0.000355,0.134762,-0.000730,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000042,0.000034,0.000200,0.000160,0.000160,0.000347,0.134180,-0.000582,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000041,0.000033,0.000201,0.000034,0.000034,0.000339,0.133731,-0.000449,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000040,0.000033,0.000201,0.000000,0.000000,0.000332,0.133322,-0.000410,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000039,0.000033,0.000201,0.000000,0.000000,0.000325,0.132918,-0.000404,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000039,0.000032,0.000202,0.000000,0.000000,0.000318,0.132520,-0.000398,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000038,0.000032,0.000202,0.000000,0.000000,0.000312,0.132128,-0.000392,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000037,0.000031,0.000203,0.000000,0.000000,0.000306,0.131741,-0.000387,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000036,0.000031,0.000203,0.000000,0.000000,0.000300,0.131360,-0.000381,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000036,0.000030,0.000204,0.000000,0.000000,0.000295,0.130984,-0.000376,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000030,0.000204,0.000000,0.000000,0.000289,0.130614,-0.000370,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000034,0.000029,0.000205,0.000000,0.000000,0.000284,0.130249,-0.000365,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000034,0.000029,0.000205,0.000000,0.000000,0.000279,0.129889,-0.000360,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000033,0.000029,0.000206,0.000000,0.000000,0.000275,0.129534,-0.000355,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000033,0.000028,0.000207,0.000000,0.000000,0.000270,0.129185,-0.000350,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000032,0.000028,0.000207,0.000108,0.000108,0.000266,0.128733,-0.000451,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000032,0.000027,0.000208,0.000340,0.000340,0.000261,0.128060,-0.000673,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000031,0.000026,0.000208,0.000517,0.000517,0.000256,0.127222,-0.000838,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000030,0.000025,0.000209,0.000662,0.000662,0.000250,0.126253,-0.000969,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000030,0.000024,0.000209,0.000746,0.000746,0.000244,0.125215,-0.001038,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000029,0.000022,0.000210,0.000677,0.000677,0.000238,0.124260,-0.000956,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000028,0.000021,0.000210,0.000569,0.000569,0.000231,0.123425,-0.000835,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000027,0.000021,0.000210,0.000486,0.000486,0.000224,0.122684,-0.000741,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000026,0.000020,0.000210,0.000396,0.000396,0.000218,0.122042,-0.000642,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000026,0.000019,0.000211,0.000290,0.000290,0.000211,0.121514,-0.000528,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000025,0.000019,0.000211,0.000137,0.000137,0.000205,0.121144,-0.000369,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000024,0.000018,0.000212,0.000006,0.000006,0.000200,0.120909,-0.000235,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000024,0.000018,0.000212,0.000000,0.000000,0.000194,0.120683,-0.000226,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000023,0.000018,0.000212,0.000000,0.000000,0.000189,0.120460,-0.000223,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000022,0.000018,0.000213,0.000000,0.000000,0.000185,0.120240,-0.000220,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000022,0.000017,0.000213,0.000000,0.000000,0.000180,0.120024,-0.000217,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000021,0.000017,0.000214,0.000000,0.000000,0.000176,0.119810,-0.000213,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000021,0.000017,0.000215,0.000000,0.000000,0.000172,0.119600,-0.000210,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000020,0.000017,0.000215,0.000000,0.000000,0.000168,0.119393,-0.000207,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000020,0.000016,0.000216,0.000000,0.000000,0.000165,0.119188,-0.000204,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000020,0.000016,0.000216,0.000000,0.000000,0.000162,0.118987,-0.000202,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000019,0.000016,0.000217,0.000000,0.000000,0.000158,0.118788,-0.000199,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000019,0.000016,0.000218,0.000000,0.000000,0.000155,0.118592,-0.000196,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000018,0.000016,0.000218,0.000000,0.000000,0.000152,0.118399,-0.000193,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000015,0.000219,0.000094,0.000094,0.000150,0.118117,-0.000283,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000018,0.000015,0.000220,0.000326,0.000326,0.000146,0.117609,-0.000508,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000017,0.000014,0.000220,0.000510,0.000510,0.000143,0.116927,-0.000682,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000017,0.000013,0.000221,0.000647,0.000647,0.000139,0.116120,-0.000807,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000016,0.000012,0.000221,0.000748,0.000748,0.000135,0.115224,-0.000895,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000016,0.000011,0.000222,0.000672,0.000672,0.000130,0.114418,-0.000807,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000015,0.000010,0.000222,0.000560,0.000560,0.000125,0.113733,-0.000685,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000014,0.000009,0.000222,0.000496,0.000496,0.000120,0.113121,-0.000612,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000014,0.000009,0.000223,0.000395,0.000395,0.000115,0.112616,-0.000504,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000013,0.000008,0.000223,0.000298,0.000298,0.000110,0.112215,-0.000401,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000013,0.000008,0.000223,0.000166,0.000166,0.000105,0.111949,-0.000266,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000012,0.000008,0.000224,0.000031,0.000031,0.000101,0.111821,-0.000129,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000008,0.000224,0.000000,0.000000,0.000097,0.111725,-0.000096,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000011,0.000008,0.000225,0.000000,0.000000,0.000093,0.111630,-0.000095,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000011,0.000008,0.000225,0.000000,0.000000,0.000090,0.111537,-0.000093,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000010,0.000007,0.000226,0.000000,0.000000,0.000087,0.111445,-0.000092,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000010,0.000007,0.000226,0.000000,0.000000,0.000084,0.111354,-0.000091,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000010,0.000007,0.000227,0.000000,0.000000,0.000081,0.111265,-0.000089,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000010,0.000007,0.000228,0.000000,0.000000,0.000079,0.111176,-0.000088,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000009,0.000007,0.000228,0.000000,0.000000,0.000076,0.111090,-0.000087,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000009,0.000007,0.000229,0.000000,0.000000,0.000074,0.111004,-0.000086,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000009,0.000007,0.000229,0.000000,0.000000,0.000072,0.110919,-0.000084,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000009,0.000007,0.000230,0.000000,0.000000,0.000071,0.110836,-0.000083,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000008,0.000007,0.000231,0.000000,0.000000,0.000069,0.110754,-0.000082,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000008,0.000006,0.000231,0.000105,0.000105,0.000067,0.110570,-0.000184,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620868.csv b/test/channel_loss/channel_forcing/et/cat-2620868.csv new file mode 100644 index 000000000..ee91bc382 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620868.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000057,0.000000,0.000000,0.000000,0.000000,0.001473,0.000383,0.001473,0.000169,0.000169,0.010506,0.425657,-0.004922,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001322,0.000377,0.001322,0.000044,0.000044,0.009561,0.420873,-0.004784,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001194,0.000372,0.001194,0.000000,0.000000,0.008739,0.416199,-0.004673,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.001085,0.000367,0.001085,0.000000,0.000000,0.008021,0.411592,-0.004607,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.000990,0.000362,0.000991,0.000000,0.000000,0.007393,0.407049,-0.004543,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000000,0.000909,0.000357,0.000910,0.000000,0.000000,0.006840,0.402571,-0.004479,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000001,0.000839,0.000352,0.000839,0.000000,0.000000,0.006353,0.398155,-0.004416,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000777,0.000347,0.000778,0.000000,0.000000,0.005923,0.393799,-0.004355,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000723,0.000342,0.000724,0.000000,0.000000,0.005542,0.389505,-0.004294,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000676,0.000337,0.000677,0.000000,0.000000,0.005203,0.385272,-0.004234,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000634,0.000332,0.000635,0.000000,0.000000,0.004901,0.381097,-0.004174,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000597,0.000328,0.000599,0.000000,0.000000,0.004632,0.376982,-0.004115,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000564,0.000323,0.000566,0.000000,0.000000,0.004392,0.372924,-0.004058,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000534,0.000318,0.000537,0.000000,0.000000,0.004176,0.368924,-0.004001,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000508,0.000314,0.000511,0.000121,0.000121,0.003981,0.364860,-0.004064,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000485,0.000309,0.000488,0.000345,0.000345,0.003806,0.360633,-0.004227,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000463,0.000304,0.000468,0.000512,0.000512,0.003647,0.356300,-0.004333,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000444,0.000299,0.000449,0.000648,0.000648,0.003502,0.351894,-0.004406,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000426,0.000294,0.000432,0.000630,0.000630,0.003369,0.347568,-0.004326,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000029,0.000000,0.000000,0.000000,0.000006,0.000410,0.000289,0.000416,0.000571,0.000571,0.003248,0.343390,-0.004178,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000051,0.000000,0.000000,0.000000,0.000007,0.000396,0.000285,0.000402,0.000480,0.000480,0.003138,0.339382,-0.004008,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000119,0.000000,0.000000,0.000000,0.000007,0.000382,0.000281,0.000390,0.000368,0.000368,0.003036,0.335607,-0.003774,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000029,0.000000,0.000000,0.000000,0.000008,0.000370,0.000276,0.000378,0.000291,0.000291,0.002942,0.331873,-0.003734,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000009,0.000359,0.000272,0.000368,0.000232,0.000232,0.002856,0.328249,-0.003624,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001009,0.000062,0.000113,0.000062,0.000009,0.000348,0.000269,0.000420,0.000145,0.000145,0.002776,0.325617,-0.002632,1.000000,0.000051 +25,2022-08-02 01:00:00,0.000522,0.000048,0.000035,0.000048,0.000010,0.000339,0.000266,0.000397,0.000055,0.000055,0.002703,0.322708,-0.002909,1.000000,0.000038 +26,2022-08-02 02:00:00,0.000428,0.000048,0.000029,0.000048,0.000011,0.000330,0.000263,0.000389,0.000000,0.000000,0.002636,0.319806,-0.002902,1.000000,0.000020 +27,2022-08-02 03:00:00,0.000172,0.000017,0.000005,0.000017,0.000012,0.000322,0.000259,0.000351,0.000000,0.000000,0.002573,0.316716,-0.003089,1.000000,0.000008 +28,2022-08-02 04:00:00,0.000154,0.000009,0.000004,0.000009,0.000013,0.000314,0.000256,0.000336,0.000000,0.000000,0.002514,0.313654,-0.003062,1.000000,0.000003 +29,2022-08-02 05:00:00,0.000118,0.000003,0.000002,0.000003,0.000014,0.000307,0.000252,0.000324,0.000000,0.000000,0.002459,0.310601,-0.003053,1.000000,0.000002 +30,2022-08-02 06:00:00,0.000190,0.000005,0.000006,0.000005,0.000014,0.000301,0.000249,0.000320,0.000000,0.000000,0.002407,0.307658,-0.002942,1.000000,0.000003 +31,2022-08-02 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000015,0.000294,0.000245,0.000311,0.000000,0.000000,0.002358,0.304575,-0.003083,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000016,0.000288,0.000242,0.000306,0.000000,0.000000,0.002312,0.301536,-0.003040,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000283,0.000239,0.000300,0.000000,0.000000,0.002268,0.298539,-0.002997,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000277,0.000235,0.000295,0.000000,0.000000,0.002226,0.295584,-0.002955,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000272,0.000232,0.000291,0.000000,0.000000,0.002186,0.292671,-0.002913,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000267,0.000229,0.000287,0.000000,0.000000,0.002147,0.289799,-0.002872,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000262,0.000225,0.000283,0.000000,0.000000,0.002110,0.286967,-0.002832,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000258,0.000222,0.000280,0.000102,0.000102,0.002074,0.284074,-0.002893,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000253,0.000219,0.000276,0.000325,0.000325,0.002040,0.281002,-0.003072,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000249,0.000215,0.000273,0.000485,0.000485,0.002006,0.277816,-0.003186,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000245,0.000211,0.000270,0.000620,0.000620,0.001972,0.274540,-0.003275,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000044,0.000000,0.000000,0.000000,0.000026,0.000241,0.000208,0.000267,0.000725,0.000725,0.001939,0.271252,-0.003288,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000236,0.000204,0.000264,0.000651,0.000651,0.001907,0.268039,-0.003213,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000232,0.000200,0.000261,0.000545,0.000545,0.001875,0.264975,-0.003064,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000228,0.000197,0.000258,0.000485,0.000485,0.001843,0.262014,-0.002961,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000224,0.000194,0.000255,0.000394,0.000394,0.001813,0.259185,-0.002830,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000221,0.000191,0.000253,0.000300,0.000300,0.001783,0.256487,-0.002697,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000217,0.000188,0.000250,0.000165,0.000165,0.001754,0.253961,-0.002526,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000213,0.000185,0.000248,0.000024,0.000024,0.001725,0.251610,-0.002351,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000210,0.000183,0.000245,0.000000,0.000000,0.001698,0.249315,-0.002295,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000207,0.000180,0.000243,0.000000,0.000000,0.001672,0.247052,-0.002263,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000203,0.000178,0.000241,0.000000,0.000000,0.001646,0.244821,-0.002231,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000200,0.000175,0.000239,0.000000,0.000000,0.001621,0.242622,-0.002200,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000197,0.000173,0.000237,0.000000,0.000000,0.001596,0.240453,-0.002169,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000194,0.000170,0.000236,0.000000,0.000000,0.001572,0.238315,-0.002138,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000191,0.000168,0.000234,0.000000,0.000000,0.001549,0.236207,-0.002108,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000188,0.000165,0.000232,0.000000,0.000000,0.001526,0.234128,-0.002078,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000185,0.000163,0.000231,0.000000,0.000000,0.001504,0.232079,-0.002049,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000183,0.000161,0.000229,0.000000,0.000000,0.001482,0.230059,-0.002020,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000180,0.000159,0.000228,0.000000,0.000000,0.001460,0.228067,-0.001992,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000177,0.000156,0.000227,0.000000,0.000000,0.001439,0.226103,-0.001964,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000175,0.000154,0.000225,0.000118,0.000118,0.001419,0.224050,-0.002053,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000172,0.000151,0.000224,0.000352,0.000352,0.001398,0.221795,-0.002255,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000170,0.000149,0.000223,0.000518,0.000518,0.001377,0.219409,-0.002386,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000167,0.000146,0.000222,0.000656,0.000656,0.001356,0.216920,-0.002489,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000164,0.000143,0.000220,0.000664,0.000664,0.001335,0.214458,-0.002462,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000162,0.000140,0.000219,0.000602,0.000602,0.001314,0.212092,-0.002366,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000150,0.000000,0.000000,0.000000,0.000059,0.000159,0.000138,0.000218,0.000496,0.000496,0.001293,0.210011,-0.002081,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000029,0.000000,0.000000,0.000000,0.000060,0.000156,0.000136,0.000216,0.000433,0.000433,0.001272,0.207902,-0.002109,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000016,0.000000,0.000000,0.000000,0.000061,0.000154,0.000133,0.000215,0.000354,0.000354,0.001252,0.205888,-0.002014,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000030,0.000000,0.000000,0.000000,0.000063,0.000151,0.000131,0.000214,0.000259,0.000259,0.001232,0.204009,-0.001878,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000149,0.000129,0.000213,0.000150,0.000150,0.001212,0.202236,-0.001773,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000146,0.000127,0.000212,0.000034,0.000034,0.001193,0.200602,-0.001634,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000144,0.000126,0.000211,0.000000,0.000000,0.001174,0.199024,-0.001578,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000142,0.000124,0.000210,0.000000,0.000000,0.001156,0.197468,-0.001556,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000140,0.000122,0.000209,0.000000,0.000000,0.001139,0.195934,-0.001534,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000016,0.000000,0.000000,0.000000,0.000071,0.000138,0.000120,0.000209,0.000000,0.000000,0.001121,0.194438,-0.001497,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000135,0.000119,0.000208,0.000000,0.000000,0.001105,0.192946,-0.001491,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000133,0.000117,0.000207,0.000000,0.000000,0.001088,0.191476,-0.001470,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000131,0.000115,0.000207,0.000000,0.000000,0.001072,0.190027,-0.001450,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000129,0.000114,0.000206,0.000000,0.000000,0.001056,0.188597,-0.001429,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000128,0.000112,0.000206,0.000000,0.000000,0.001041,0.187188,-0.001409,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000126,0.000111,0.000205,0.000000,0.000000,0.001026,0.185799,-0.001389,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000124,0.000109,0.000205,0.000000,0.000000,0.001011,0.184429,-0.001370,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000122,0.000107,0.000205,0.000000,0.000000,0.000996,0.183079,-0.001351,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000120,0.000106,0.000204,0.000116,0.000116,0.000982,0.181632,-0.001446,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000118,0.000104,0.000204,0.000351,0.000351,0.000968,0.179975,-0.001658,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000117,0.000102,0.000203,0.000518,0.000518,0.000953,0.178176,-0.001798,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000115,0.000100,0.000203,0.000655,0.000655,0.000938,0.176268,-0.001908,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000113,0.000098,0.000203,0.000690,0.000690,0.000923,0.174352,-0.001916,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000013,0.000000,0.000000,0.000000,0.000091,0.000111,0.000095,0.000202,0.000658,0.000658,0.000907,0.172507,-0.001845,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000002,0.000000,0.000000,0.000000,0.000093,0.000109,0.000094,0.000202,0.000566,0.000566,0.000892,0.170767,-0.001740,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000107,0.000092,0.000201,0.000466,0.000466,0.000876,0.169150,-0.001618,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000105,0.000090,0.000201,0.000380,0.000380,0.000861,0.167640,-0.001510,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000181,0.000000,0.000000,0.000000,0.000097,0.000103,0.000089,0.000200,0.000294,0.000294,0.000846,0.166415,-0.001225,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000303,0.000001,0.000002,0.000001,0.000098,0.000102,0.000087,0.000201,0.000176,0.000176,0.000832,0.165441,-0.000974,1.000000,0.000001 +97,2022-08-05 01:00:00,0.000237,0.000003,0.000005,0.000003,0.000100,0.000100,0.000086,0.000203,0.000045,0.000045,0.000818,0.164543,-0.000898,1.000000,0.000003 +98,2022-08-05 02:00:00,0.000000,0.000002,0.000000,0.000002,0.000101,0.000098,0.000085,0.000201,0.000000,0.000000,0.000805,0.163472,-0.001071,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000000,0.000001,0.000000,0.000001,0.000103,0.000097,0.000084,0.000200,0.000000,0.000000,0.000792,0.162416,-0.001056,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000095,0.000083,0.000199,0.000000,0.000000,0.000780,0.161375,-0.001041,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000094,0.000082,0.000199,0.000000,0.000000,0.000768,0.160348,-0.001026,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000092,0.000081,0.000199,0.000000,0.000000,0.000756,0.159337,-0.001012,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000091,0.000079,0.000199,0.000000,0.000000,0.000745,0.158339,-0.000998,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000090,0.000078,0.000199,0.000000,0.000000,0.000734,0.157355,-0.000984,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000088,0.000077,0.000199,0.000000,0.000000,0.000723,0.156385,-0.000970,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000087,0.000076,0.000199,0.000000,0.000000,0.000712,0.155429,-0.000956,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000086,0.000075,0.000200,0.000000,0.000000,0.000701,0.154486,-0.000943,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000084,0.000074,0.000200,0.000000,0.000000,0.000691,0.153557,-0.000930,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000083,0.000073,0.000200,0.000000,0.000000,0.000681,0.152640,-0.000916,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000082,0.000072,0.000200,0.000127,0.000127,0.000671,0.151612,-0.001028,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000081,0.000070,0.000200,0.000354,0.000354,0.000661,0.150374,-0.001238,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000079,0.000069,0.000200,0.000521,0.000521,0.000650,0.148988,-0.001385,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000078,0.000067,0.000201,0.000663,0.000663,0.000639,0.147482,-0.001506,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000077,0.000065,0.000201,0.000674,0.000674,0.000628,0.145987,-0.001495,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000016,0.000000,0.000000,0.000000,0.000125,0.000075,0.000064,0.000201,0.000600,0.000600,0.000617,0.144601,-0.001386,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000224,0.000000,0.000000,0.000000,0.000127,0.000074,0.000063,0.000201,0.000510,0.000510,0.000606,0.143530,-0.001072,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000191,0.000000,0.000000,0.000000,0.000128,0.000072,0.000061,0.000201,0.000416,0.000416,0.000595,0.142533,-0.000997,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000029,0.000000,0.000000,0.000000,0.000130,0.000071,0.000060,0.000201,0.000339,0.000339,0.000584,0.141465,-0.001068,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000131,0.000070,0.000059,0.000201,0.000266,0.000266,0.000573,0.140484,-0.000981,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000230,0.000000,0.000001,0.000000,0.000132,0.000069,0.000058,0.000201,0.000163,0.000163,0.000563,0.139817,-0.000667,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000442,0.000010,0.000018,0.000010,0.000134,0.000067,0.000058,0.000211,0.000055,0.000055,0.000554,0.139457,-0.000360,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000106,0.000005,0.000001,0.000005,0.000135,0.000066,0.000057,0.000207,0.000000,0.000000,0.000545,0.138842,-0.000615,1.000000,0.000004 +123,2022-08-06 03:00:00,0.000349,0.000012,0.000015,0.000012,0.000137,0.000065,0.000057,0.000214,0.000000,0.000000,0.000536,0.138461,-0.000380,1.000000,0.000007 +124,2022-08-06 04:00:00,0.000085,0.000005,0.000001,0.000005,0.000138,0.000064,0.000056,0.000207,0.000000,0.000000,0.000528,0.137840,-0.000622,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000103,0.000004,0.000001,0.000004,0.000139,0.000063,0.000055,0.000207,0.000000,0.000000,0.000520,0.137245,-0.000595,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000091,0.000001,0.000001,0.000001,0.000141,0.000062,0.000055,0.000204,0.000000,0.000000,0.000513,0.136646,-0.000599,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000142,0.000061,0.000054,0.000204,0.000000,0.000000,0.000505,0.135967,-0.000679,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000061,0.000053,0.000204,0.000000,0.000000,0.000498,0.135298,-0.000669,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000060,0.000053,0.000205,0.000000,0.000000,0.000491,0.134638,-0.000660,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000059,0.000052,0.000205,0.000000,0.000000,0.000484,0.133988,-0.000650,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000058,0.000051,0.000206,0.000000,0.000000,0.000477,0.133346,-0.000641,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000057,0.000050,0.000206,0.000000,0.000000,0.000470,0.132714,-0.000632,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000056,0.000050,0.000207,0.000000,0.000000,0.000463,0.132090,-0.000623,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000055,0.000049,0.000207,0.000111,0.000111,0.000457,0.131367,-0.000724,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000055,0.000048,0.000208,0.000335,0.000335,0.000450,0.130432,-0.000935,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000046,0.000208,0.000505,0.000505,0.000442,0.129342,-0.001090,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000053,0.000045,0.000208,0.000643,0.000643,0.000435,0.128133,-0.001210,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000052,0.000044,0.000209,0.000721,0.000721,0.000427,0.126863,-0.001269,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000051,0.000042,0.000209,0.000662,0.000662,0.000418,0.125669,-0.001194,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000050,0.000041,0.000209,0.000570,0.000570,0.000409,0.124583,-0.001086,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000049,0.000040,0.000210,0.000476,0.000476,0.000401,0.123605,-0.000978,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000048,0.000039,0.000210,0.000389,0.000389,0.000392,0.122727,-0.000878,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000047,0.000038,0.000210,0.000295,0.000295,0.000384,0.121953,-0.000773,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000046,0.000037,0.000210,0.000157,0.000157,0.000375,0.121327,-0.000627,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000045,0.000037,0.000211,0.000034,0.000034,0.000368,0.120830,-0.000497,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000044,0.000036,0.000211,0.000000,0.000000,0.000360,0.120374,-0.000456,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000043,0.000036,0.000211,0.000000,0.000000,0.000353,0.119924,-0.000450,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000042,0.000035,0.000212,0.000000,0.000000,0.000346,0.119480,-0.000444,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000035,0.000212,0.000000,0.000000,0.000340,0.119043,-0.000437,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000034,0.000213,0.000000,0.000000,0.000334,0.118611,-0.000431,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000040,0.000034,0.000213,0.000000,0.000000,0.000328,0.118186,-0.000425,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000039,0.000033,0.000214,0.000000,0.000000,0.000322,0.117767,-0.000419,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000033,0.000215,0.000000,0.000000,0.000317,0.117354,-0.000413,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000038,0.000032,0.000215,0.000000,0.000000,0.000311,0.116946,-0.000407,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000037,0.000032,0.000216,0.000000,0.000000,0.000306,0.116544,-0.000402,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000032,0.000216,0.000000,0.000000,0.000301,0.116148,-0.000396,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000036,0.000031,0.000217,0.000000,0.000000,0.000296,0.115758,-0.000391,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000035,0.000031,0.000218,0.000105,0.000105,0.000291,0.115269,-0.000489,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000030,0.000218,0.000329,0.000329,0.000286,0.114566,-0.000703,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000029,0.000219,0.000500,0.000500,0.000281,0.113705,-0.000861,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000028,0.000219,0.000639,0.000639,0.000275,0.112719,-0.000986,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000026,0.000220,0.000722,0.000722,0.000269,0.111665,-0.001054,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000025,0.000220,0.000659,0.000659,0.000263,0.110688,-0.000977,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000031,0.000024,0.000221,0.000556,0.000556,0.000256,0.109825,-0.000862,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000023,0.000221,0.000476,0.000476,0.000249,0.109055,-0.000771,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000029,0.000023,0.000221,0.000389,0.000389,0.000243,0.108380,-0.000675,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000022,0.000222,0.000294,0.000294,0.000236,0.107809,-0.000571,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000022,0.000222,0.000138,0.000138,0.000230,0.107400,-0.000409,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000021,0.000222,0.000005,0.000005,0.000224,0.107127,-0.000272,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000026,0.000021,0.000223,0.000000,0.000000,0.000218,0.106863,-0.000264,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000021,0.000223,0.000000,0.000000,0.000213,0.106603,-0.000260,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000020,0.000224,0.000000,0.000000,0.000208,0.106347,-0.000256,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000025,0.000020,0.000225,0.000000,0.000000,0.000204,0.106094,-0.000253,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000020,0.000225,0.000000,0.000000,0.000199,0.105845,-0.000249,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000020,0.000226,0.000000,0.000000,0.000195,0.105599,-0.000246,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000023,0.000019,0.000226,0.000000,0.000000,0.000191,0.105357,-0.000242,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000019,0.000227,0.000000,0.000000,0.000188,0.105118,-0.000239,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000022,0.000019,0.000228,0.000000,0.000000,0.000184,0.104883,-0.000235,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000018,0.000228,0.000000,0.000000,0.000181,0.104651,-0.000232,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000021,0.000018,0.000229,0.000000,0.000000,0.000177,0.104422,-0.000229,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000021,0.000018,0.000230,0.000000,0.000000,0.000174,0.104196,-0.000226,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000018,0.000230,0.000091,0.000091,0.000171,0.103884,-0.000312,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000017,0.000231,0.000316,0.000316,0.000168,0.103354,-0.000530,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000020,0.000016,0.000232,0.000489,0.000489,0.000164,0.102660,-0.000693,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000015,0.000232,0.000621,0.000621,0.000160,0.101847,-0.000814,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000014,0.000233,0.000718,0.000718,0.000156,0.100949,-0.000897,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000013,0.000233,0.000645,0.000645,0.000151,0.100137,-0.000813,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000018,0.000013,0.000234,0.000547,0.000547,0.000146,0.099432,-0.000705,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000012,0.000234,0.000480,0.000480,0.000140,0.098803,-0.000629,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000011,0.000234,0.000387,0.000387,0.000135,0.098274,-0.000529,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000016,0.000011,0.000235,0.000296,0.000296,0.000130,0.097843,-0.000432,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000010,0.000235,0.000166,0.000166,0.000126,0.097546,-0.000297,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000010,0.000236,0.000030,0.000030,0.000121,0.097387,-0.000159,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000128,0.000001,0.000002,0.000001,0.000222,0.000014,0.000010,0.000237,0.000000,0.000000,0.000117,0.097384,-0.000002,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000029,0.000001,0.000000,0.000001,0.000223,0.000014,0.000010,0.000237,0.000000,0.000000,0.000114,0.097286,-0.000099,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000013,0.000010,0.000238,0.000000,0.000000,0.000110,0.097160,-0.000125,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000010,0.000238,0.000000,0.000000,0.000107,0.097037,-0.000124,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000013,0.000010,0.000239,0.000000,0.000000,0.000104,0.096915,-0.000122,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000012,0.000010,0.000239,0.000000,0.000000,0.000101,0.096795,-0.000120,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000012,0.000009,0.000240,0.000000,0.000000,0.000099,0.096676,-0.000118,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000012,0.000009,0.000240,0.000000,0.000000,0.000097,0.096560,-0.000117,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000011,0.000009,0.000241,0.000000,0.000000,0.000094,0.096444,-0.000115,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000011,0.000009,0.000242,0.000000,0.000000,0.000092,0.096331,-0.000114,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000011,0.000009,0.000242,0.000000,0.000000,0.000090,0.096219,-0.000112,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000011,0.000009,0.000243,0.000000,0.000000,0.000088,0.096109,-0.000110,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000010,0.000009,0.000244,0.000102,0.000102,0.000086,0.095899,-0.000210,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620869.csv b/test/channel_loss/channel_forcing/et/cat-2620869.csv new file mode 100644 index 000000000..7db4ae886 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620869.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000246,0.000000,0.000001,0.000000,0.000000,0.001493,0.000525,0.001494,0.000179,0.000179,0.010629,0.425774,-0.004796,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000024,0.000000,0.000000,0.000000,0.000000,0.001358,0.000518,0.001358,0.000050,0.000050,0.009788,0.420957,-0.004817,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.001243,0.000510,0.001243,0.000000,0.000000,0.009055,0.416255,-0.004702,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001144,0.000502,0.001144,0.000000,0.000000,0.008414,0.411614,-0.004641,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000010,0.000000,0.000000,0.000000,0.000000,0.001059,0.000495,0.001059,0.000000,0.000000,0.007850,0.407041,-0.004573,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000018,0.000000,0.000000,0.000000,0.000000,0.000985,0.000488,0.000985,0.000000,0.000000,0.007353,0.402544,-0.004497,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000010,0.000000,0.000000,0.000000,0.000001,0.000920,0.000481,0.000920,0.000000,0.000000,0.006914,0.398106,-0.004439,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000863,0.000474,0.000864,0.000000,0.000000,0.006524,0.393723,-0.004383,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000813,0.000467,0.000814,0.000000,0.000000,0.006177,0.389404,-0.004318,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000769,0.000460,0.000770,0.000000,0.000000,0.005868,0.385150,-0.004255,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000730,0.000453,0.000732,0.000000,0.000000,0.005591,0.380958,-0.004192,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000695,0.000446,0.000697,0.000000,0.000000,0.005342,0.376828,-0.004130,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000664,0.000440,0.000666,0.000000,0.000000,0.005118,0.372758,-0.004069,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000636,0.000433,0.000638,0.000000,0.000000,0.004915,0.368749,-0.004009,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000610,0.000427,0.000614,0.000125,0.000125,0.004732,0.364676,-0.004073,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000587,0.000420,0.000591,0.000355,0.000355,0.004564,0.360436,-0.004240,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000566,0.000413,0.000571,0.000527,0.000527,0.004410,0.356090,-0.004347,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000547,0.000406,0.000552,0.000663,0.000663,0.004269,0.351674,-0.004416,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000529,0.000399,0.000535,0.000634,0.000634,0.004138,0.347350,-0.004323,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000513,0.000392,0.000519,0.000572,0.000572,0.004017,0.343277,-0.004074,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000169,0.000000,0.000000,0.000000,0.000007,0.000498,0.000386,0.000504,0.000495,0.000495,0.003905,0.339381,-0.003895,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000276,0.000000,0.000000,0.000000,0.000007,0.000484,0.000380,0.000491,0.000381,0.000381,0.003801,0.335761,-0.003621,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000169,0.000000,0.000000,0.000000,0.000008,0.000471,0.000374,0.000479,0.000308,0.000308,0.003704,0.332160,-0.003600,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000169,0.000000,0.000000,0.000000,0.000009,0.000459,0.000368,0.000467,0.000250,0.000250,0.003614,0.328670,-0.003490,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000241,0.000000,0.000001,0.000000,0.000009,0.000448,0.000363,0.000457,0.000157,0.000157,0.003529,0.325392,-0.003278,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000017,0.000030,0.000017,0.000010,0.000437,0.000358,0.000464,0.000062,0.000062,0.003450,0.322551,-0.002841,1.000000,0.000014 +26,2022-08-02 02:00:00,0.000859,0.000053,0.000082,0.000053,0.000011,0.000427,0.000354,0.000491,0.000000,0.000000,0.003377,0.320047,-0.002504,1.000000,0.000043 +27,2022-08-02 03:00:00,0.000893,0.000075,0.000088,0.000075,0.000012,0.000418,0.000350,0.000505,0.000000,0.000000,0.003309,0.317608,-0.002439,1.000000,0.000056 +28,2022-08-02 04:00:00,0.000843,0.000082,0.000079,0.000082,0.000012,0.000410,0.000346,0.000504,0.000000,0.000000,0.003246,0.315165,-0.002443,1.000000,0.000053 +29,2022-08-02 05:00:00,0.000625,0.000062,0.000044,0.000062,0.000013,0.000402,0.000342,0.000477,0.000000,0.000000,0.003186,0.312577,-0.002588,1.000000,0.000036 +30,2022-08-02 06:00:00,0.000525,0.000044,0.000031,0.000044,0.000014,0.000395,0.000338,0.000453,0.000000,0.000000,0.003129,0.309941,-0.002636,1.000000,0.000023 +31,2022-08-02 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000015,0.000387,0.000333,0.000419,0.000000,0.000000,0.003075,0.306859,-0.003083,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000016,0.000381,0.000328,0.000403,0.000000,0.000000,0.003022,0.303821,-0.003037,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000374,0.000323,0.000391,0.000000,0.000000,0.002972,0.300829,-0.002993,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000368,0.000319,0.000385,0.000000,0.000000,0.002923,0.297880,-0.002948,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000361,0.000314,0.000380,0.000000,0.000000,0.002875,0.294975,-0.002905,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000355,0.000309,0.000375,0.000000,0.000000,0.002829,0.292113,-0.002862,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000349,0.000305,0.000370,0.000000,0.000000,0.002784,0.289293,-0.002820,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000344,0.000300,0.000365,0.000107,0.000107,0.002741,0.286409,-0.002884,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000338,0.000295,0.000361,0.000333,0.000333,0.002697,0.283345,-0.003064,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000333,0.000290,0.000356,0.000492,0.000492,0.002655,0.280170,-0.003175,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000327,0.000285,0.000352,0.000622,0.000622,0.002612,0.276913,-0.003257,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000294,0.000000,0.000000,0.000000,0.000026,0.000322,0.000280,0.000347,0.000722,0.000722,0.002570,0.273895,-0.003018,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000316,0.000275,0.000343,0.000657,0.000657,0.002529,0.270696,-0.003199,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000311,0.000270,0.000339,0.000562,0.000562,0.002487,0.267639,-0.003057,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000306,0.000265,0.000334,0.000498,0.000498,0.002447,0.264689,-0.002949,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000300,0.000260,0.000330,0.000411,0.000411,0.002406,0.261869,-0.002821,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000295,0.000256,0.000326,0.000316,0.000316,0.002367,0.259183,-0.002686,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000290,0.000252,0.000323,0.000174,0.000174,0.002329,0.256677,-0.002506,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000286,0.000248,0.000319,0.000028,0.000028,0.002291,0.254352,-0.002325,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000281,0.000244,0.000315,0.000000,0.000000,0.002255,0.252089,-0.002263,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000276,0.000241,0.000312,0.000000,0.000000,0.002219,0.249859,-0.002230,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000272,0.000237,0.000309,0.000000,0.000000,0.002185,0.247663,-0.002197,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000268,0.000234,0.000306,0.000000,0.000000,0.002151,0.245498,-0.002164,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000263,0.000230,0.000303,0.000000,0.000000,0.002118,0.243366,-0.002132,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000259,0.000227,0.000300,0.000000,0.000000,0.002086,0.241265,-0.002101,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000255,0.000224,0.000297,0.000000,0.000000,0.002054,0.239195,-0.002070,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000251,0.000220,0.000294,0.000000,0.000000,0.002023,0.237155,-0.002040,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000247,0.000217,0.000292,0.000000,0.000000,0.001993,0.235146,-0.002009,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000244,0.000214,0.000289,0.000000,0.000000,0.001963,0.233166,-0.001980,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000240,0.000211,0.000287,0.000000,0.000000,0.001934,0.231215,-0.001951,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000236,0.000208,0.000284,0.000000,0.000000,0.001905,0.229293,-0.001922,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000233,0.000204,0.000282,0.000123,0.000123,0.001877,0.227279,-0.002014,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000229,0.000201,0.000280,0.000365,0.000365,0.001849,0.225055,-0.002223,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000225,0.000197,0.000277,0.000533,0.000533,0.001820,0.222700,-0.002356,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000222,0.000193,0.000275,0.000665,0.000665,0.001791,0.220248,-0.002451,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000218,0.000189,0.000272,0.000673,0.000673,0.001762,0.217825,-0.002423,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000214,0.000185,0.000270,0.000608,0.000608,0.001733,0.215502,-0.002324,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000825,0.000005,0.000010,0.000005,0.000057,0.000211,0.000183,0.000273,0.000513,0.000513,0.001706,0.214109,-0.001392,1.000000,0.000004 +69,2022-08-03 21:00:00,0.000169,0.000002,0.000000,0.000002,0.000058,0.000207,0.000180,0.000268,0.000457,0.000457,0.001678,0.212156,-0.001954,1.000000,0.000002 +70,2022-08-03 22:00:00,0.000062,0.000002,0.000000,0.000002,0.000060,0.000204,0.000177,0.000266,0.000376,0.000376,0.001651,0.210206,-0.001950,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000201,0.000174,0.000262,0.000279,0.000279,0.001624,0.208319,-0.001887,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000197,0.000171,0.000260,0.000164,0.000164,0.001598,0.206573,-0.001746,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000194,0.000168,0.000258,0.000038,0.000038,0.001572,0.204977,-0.001596,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000191,0.000166,0.000256,0.000000,0.000000,0.001547,0.203442,-0.001535,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000188,0.000163,0.000254,0.000000,0.000000,0.001522,0.201930,-0.001512,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000185,0.000161,0.000252,0.000000,0.000000,0.001499,0.200440,-0.001490,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000069,0.000182,0.000159,0.000251,0.000000,0.000000,0.001475,0.199034,-0.001406,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000179,0.000156,0.000249,0.000000,0.000000,0.001453,0.197586,-0.001447,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000176,0.000154,0.000248,0.000000,0.000000,0.001431,0.196160,-0.001426,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000174,0.000152,0.000247,0.000000,0.000000,0.001409,0.194756,-0.001405,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000171,0.000150,0.000245,0.000000,0.000000,0.001388,0.193371,-0.001384,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000168,0.000147,0.000244,0.000000,0.000000,0.001367,0.192008,-0.001364,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000166,0.000145,0.000243,0.000000,0.000000,0.001346,0.190664,-0.001344,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000163,0.000143,0.000242,0.000000,0.000000,0.001326,0.189340,-0.001324,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000161,0.000141,0.000241,0.000000,0.000000,0.001306,0.188036,-0.001304,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000158,0.000139,0.000239,0.000119,0.000119,0.001287,0.186634,-0.001402,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000156,0.000136,0.000238,0.000361,0.000361,0.001267,0.185014,-0.001620,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000153,0.000133,0.000237,0.000531,0.000531,0.001247,0.183249,-0.001764,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000151,0.000130,0.000236,0.000668,0.000668,0.001226,0.181377,-0.001873,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000148,0.000127,0.000235,0.000723,0.000723,0.001206,0.179478,-0.001899,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000029,0.000000,0.000000,0.000000,0.000088,0.000145,0.000124,0.000234,0.000670,0.000670,0.001184,0.177687,-0.001791,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000090,0.000143,0.000121,0.000232,0.000580,0.000580,0.001163,0.175993,-0.001694,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000140,0.000119,0.000231,0.000486,0.000486,0.001142,0.174406,-0.001587,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000137,0.000116,0.000230,0.000398,0.000398,0.001121,0.172931,-0.001476,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000012,0.000000,0.000000,0.000000,0.000094,0.000135,0.000114,0.000229,0.000311,0.000311,0.001100,0.171574,-0.001357,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000024,0.000000,0.000000,0.000000,0.000095,0.000132,0.000112,0.000227,0.000184,0.000184,0.001080,0.170374,-0.001200,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000033,0.000000,0.000000,0.000000,0.000096,0.000130,0.000111,0.000226,0.000048,0.000048,0.001061,0.169334,-0.001040,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000128,0.000109,0.000225,0.000000,0.000000,0.001042,0.168324,-0.001009,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000125,0.000107,0.000225,0.000000,0.000000,0.001024,0.167330,-0.000994,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000123,0.000106,0.000224,0.000000,0.000000,0.001007,0.166350,-0.000980,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000121,0.000104,0.000223,0.000000,0.000000,0.000990,0.165385,-0.000965,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000119,0.000103,0.000222,0.000000,0.000000,0.000973,0.164434,-0.000951,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000117,0.000101,0.000222,0.000000,0.000000,0.000957,0.163497,-0.000937,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000115,0.000100,0.000221,0.000000,0.000000,0.000942,0.162573,-0.000923,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000113,0.000098,0.000221,0.000000,0.000000,0.000927,0.161664,-0.000910,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000112,0.000097,0.000220,0.000000,0.000000,0.000912,0.160768,-0.000896,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000110,0.000095,0.000220,0.000000,0.000000,0.000898,0.159885,-0.000883,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000108,0.000094,0.000220,0.000000,0.000000,0.000884,0.159015,-0.000870,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000106,0.000093,0.000219,0.000000,0.000000,0.000870,0.158158,-0.000857,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000105,0.000091,0.000219,0.000131,0.000131,0.000856,0.157184,-0.000974,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000103,0.000089,0.000218,0.000368,0.000368,0.000842,0.155992,-0.001192,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000101,0.000087,0.000218,0.000536,0.000536,0.000828,0.154651,-0.001340,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000099,0.000085,0.000218,0.000672,0.000672,0.000813,0.153196,-0.001455,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000097,0.000082,0.000217,0.000677,0.000677,0.000798,0.151758,-0.001438,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000096,0.000080,0.000217,0.000613,0.000613,0.000783,0.150466,-0.001292,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000173,0.000000,0.000000,0.000000,0.000122,0.000094,0.000078,0.000216,0.000523,0.000523,0.000767,0.149390,-0.001076,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000084,0.000000,0.000000,0.000000,0.000124,0.000092,0.000077,0.000215,0.000433,0.000433,0.000752,0.148331,-0.001059,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000125,0.000090,0.000075,0.000215,0.000359,0.000359,0.000738,0.147402,-0.000929,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000169,0.000000,0.000000,0.000000,0.000126,0.000088,0.000074,0.000215,0.000282,0.000282,0.000723,0.146606,-0.000797,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000128,0.000087,0.000073,0.000214,0.000174,0.000174,0.000709,0.145842,-0.000763,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000468,0.000008,0.000015,0.000008,0.000129,0.000085,0.000072,0.000222,0.000061,0.000061,0.000697,0.145566,-0.000276,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000688,0.000026,0.000041,0.000026,0.000130,0.000084,0.000072,0.000240,0.000000,0.000000,0.000685,0.145544,-0.000022,1.000000,0.000022 +123,2022-08-06 03:00:00,0.000619,0.000032,0.000034,0.000032,0.000132,0.000082,0.000072,0.000246,0.000000,0.000000,0.000675,0.145463,-0.000082,1.000000,0.000023 +124,2022-08-06 04:00:00,0.000468,0.000027,0.000019,0.000027,0.000133,0.000081,0.000072,0.000241,0.000000,0.000000,0.000666,0.145247,-0.000216,1.000000,0.000015 +125,2022-08-06 05:00:00,0.000468,0.000022,0.000019,0.000022,0.000134,0.000080,0.000071,0.000237,0.000000,0.000000,0.000657,0.145034,-0.000213,1.000000,0.000013 +126,2022-08-06 06:00:00,0.000476,0.000020,0.000020,0.000020,0.000136,0.000079,0.000071,0.000234,0.000000,0.000000,0.000649,0.144832,-0.000202,1.000000,0.000013 +127,2022-08-06 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000137,0.000078,0.000070,0.000224,0.000000,0.000000,0.000641,0.144184,-0.000648,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000138,0.000077,0.000069,0.000219,0.000000,0.000000,0.000633,0.143546,-0.000638,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000076,0.000068,0.000216,0.000000,0.000000,0.000625,0.142917,-0.000629,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000075,0.000067,0.000216,0.000000,0.000000,0.000616,0.142297,-0.000620,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000074,0.000066,0.000216,0.000000,0.000000,0.000608,0.141687,-0.000611,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000073,0.000065,0.000216,0.000000,0.000000,0.000600,0.141085,-0.000602,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000072,0.000064,0.000217,0.000000,0.000000,0.000592,0.140492,-0.000593,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000071,0.000063,0.000217,0.000114,0.000114,0.000584,0.139796,-0.000696,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000070,0.000061,0.000217,0.000347,0.000347,0.000575,0.138881,-0.000915,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000069,0.000060,0.000217,0.000512,0.000512,0.000566,0.137815,-0.001065,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000068,0.000058,0.000217,0.000649,0.000649,0.000556,0.136631,-0.001184,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000066,0.000056,0.000217,0.000728,0.000728,0.000546,0.135387,-0.001244,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000065,0.000054,0.000217,0.000673,0.000673,0.000534,0.134215,-0.001172,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000064,0.000052,0.000217,0.000580,0.000580,0.000523,0.133153,-0.001063,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000062,0.000051,0.000217,0.000494,0.000494,0.000511,0.132190,-0.000962,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000061,0.000049,0.000217,0.000403,0.000403,0.000500,0.131332,-0.000859,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000059,0.000048,0.000217,0.000312,0.000312,0.000488,0.130576,-0.000756,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000058,0.000047,0.000216,0.000168,0.000168,0.000477,0.129972,-0.000603,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000046,0.000216,0.000038,0.000038,0.000467,0.129506,-0.000467,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000056,0.000046,0.000216,0.000000,0.000000,0.000457,0.129084,-0.000422,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000054,0.000045,0.000216,0.000000,0.000000,0.000447,0.128668,-0.000416,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000053,0.000044,0.000216,0.000000,0.000000,0.000438,0.128258,-0.000410,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000052,0.000044,0.000217,0.000000,0.000000,0.000430,0.127855,-0.000404,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000051,0.000043,0.000217,0.000000,0.000000,0.000422,0.127457,-0.000398,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000050,0.000042,0.000217,0.000000,0.000000,0.000414,0.127065,-0.000392,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000049,0.000042,0.000217,0.000000,0.000000,0.000406,0.126679,-0.000386,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000041,0.000218,0.000000,0.000000,0.000399,0.126299,-0.000380,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000048,0.000040,0.000218,0.000000,0.000000,0.000392,0.125924,-0.000375,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000047,0.000040,0.000218,0.000000,0.000000,0.000385,0.125555,-0.000369,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000046,0.000039,0.000219,0.000000,0.000000,0.000378,0.125191,-0.000364,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000045,0.000039,0.000219,0.000000,0.000000,0.000372,0.124833,-0.000358,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000038,0.000219,0.000110,0.000110,0.000365,0.124372,-0.000461,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000044,0.000037,0.000220,0.000343,0.000343,0.000359,0.123688,-0.000684,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000036,0.000220,0.000514,0.000514,0.000351,0.122846,-0.000842,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000034,0.000220,0.000649,0.000649,0.000344,0.121882,-0.000963,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000032,0.000220,0.000729,0.000729,0.000335,0.120855,-0.001027,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000031,0.000220,0.000671,0.000671,0.000326,0.119900,-0.000955,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000029,0.000220,0.000571,0.000571,0.000317,0.119056,-0.000843,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000028,0.000220,0.000490,0.000490,0.000308,0.118306,-0.000750,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000036,0.000027,0.000220,0.000407,0.000407,0.000299,0.117649,-0.000657,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000026,0.000220,0.000310,0.000310,0.000290,0.117096,-0.000553,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000034,0.000026,0.000220,0.000147,0.000147,0.000281,0.116713,-0.000383,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000033,0.000025,0.000220,0.000007,0.000007,0.000273,0.116472,-0.000241,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000025,0.000221,0.000000,0.000000,0.000266,0.116242,-0.000230,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000024,0.000221,0.000000,0.000000,0.000259,0.116016,-0.000226,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000031,0.000024,0.000221,0.000000,0.000000,0.000253,0.115793,-0.000223,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000030,0.000024,0.000221,0.000000,0.000000,0.000246,0.115573,-0.000220,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000029,0.000023,0.000222,0.000000,0.000000,0.000241,0.115356,-0.000217,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000029,0.000023,0.000222,0.000000,0.000000,0.000235,0.115143,-0.000213,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000028,0.000023,0.000223,0.000000,0.000000,0.000230,0.114933,-0.000210,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000027,0.000022,0.000223,0.000000,0.000000,0.000225,0.114726,-0.000207,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000027,0.000022,0.000223,0.000000,0.000000,0.000220,0.114522,-0.000204,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000022,0.000224,0.000000,0.000000,0.000216,0.114321,-0.000201,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000026,0.000021,0.000224,0.000000,0.000000,0.000212,0.114123,-0.000198,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000025,0.000021,0.000225,0.000000,0.000000,0.000208,0.113928,-0.000195,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000025,0.000021,0.000225,0.000095,0.000095,0.000204,0.113642,-0.000285,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000020,0.000226,0.000329,0.000329,0.000199,0.113130,-0.000513,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000024,0.000019,0.000226,0.000503,0.000503,0.000194,0.112453,-0.000676,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000017,0.000227,0.000634,0.000634,0.000189,0.111658,-0.000795,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000022,0.000016,0.000227,0.000725,0.000725,0.000183,0.110785,-0.000874,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000021,0.000015,0.000227,0.000657,0.000657,0.000176,0.109992,-0.000793,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000014,0.000227,0.000561,0.000561,0.000169,0.109305,-0.000687,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000020,0.000013,0.000227,0.000498,0.000498,0.000162,0.108690,-0.000614,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000012,0.000227,0.000405,0.000405,0.000155,0.108176,-0.000514,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000011,0.000228,0.000312,0.000312,0.000148,0.107761,-0.000415,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000011,0.000228,0.000178,0.000178,0.000142,0.107485,-0.000277,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000016,0.000010,0.000228,0.000034,0.000034,0.000136,0.107354,-0.000130,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000596,0.000016,0.000030,0.000016,0.000212,0.000016,0.000011,0.000245,0.000000,0.000000,0.000131,0.107817,0.000463,1.000000,0.000013 +195,2022-08-09 03:00:00,0.000218,0.000010,0.000004,0.000010,0.000213,0.000015,0.000011,0.000238,0.000000,0.000000,0.000127,0.107926,0.000108,1.000000,0.000008 +196,2022-08-09 04:00:00,0.000000,0.000007,0.000000,0.000007,0.000214,0.000015,0.000011,0.000236,0.000000,0.000000,0.000123,0.107822,-0.000104,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000215,0.000015,0.000011,0.000230,0.000000,0.000000,0.000120,0.107720,-0.000102,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000011,0.000230,0.000000,0.000000,0.000117,0.107619,-0.000101,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000014,0.000011,0.000231,0.000000,0.000000,0.000114,0.107520,-0.000099,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000013,0.000011,0.000231,0.000000,0.000000,0.000111,0.107422,-0.000098,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000013,0.000010,0.000232,0.000000,0.000000,0.000108,0.107326,-0.000096,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000013,0.000010,0.000232,0.000000,0.000000,0.000106,0.107231,-0.000095,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000012,0.000010,0.000233,0.000000,0.000000,0.000103,0.107137,-0.000093,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000012,0.000010,0.000234,0.000000,0.000000,0.000101,0.107045,-0.000092,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000012,0.000010,0.000234,0.000000,0.000000,0.000099,0.106954,-0.000091,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000009,0.000235,0.000104,0.000104,0.000097,0.106762,-0.000192,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620870.csv b/test/channel_loss/channel_forcing/et/cat-2620870.csv new file mode 100644 index 000000000..64ea854d3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620870.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000280,0.000001,0.000002,0.000001,0.000000,0.001481,0.000436,0.001482,0.000184,0.000184,0.010552,0.425934,-0.004750,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000005,0.000000,0.000000,0.000000,0.000000,0.001336,0.000430,0.001336,0.000055,0.000055,0.009646,0.421110,-0.004824,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001212,0.000423,0.001213,0.000000,0.000000,0.008857,0.416404,-0.004706,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001107,0.000417,0.001107,0.000000,0.000000,0.008168,0.411765,-0.004639,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001016,0.000411,0.001016,0.000000,0.000000,0.007563,0.407193,-0.004572,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000937,0.000406,0.000938,0.000000,0.000000,0.007032,0.402686,-0.004507,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000869,0.000400,0.000869,0.000000,0.000000,0.006563,0.398243,-0.004443,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000809,0.000394,0.000810,0.000000,0.000000,0.006148,0.393863,-0.004379,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000757,0.000388,0.000758,0.000000,0.000000,0.005780,0.389546,-0.004317,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000710,0.000383,0.000712,0.000000,0.000000,0.005452,0.385291,-0.004255,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000670,0.000377,0.000671,0.000000,0.000000,0.005160,0.381096,-0.004195,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000633,0.000372,0.000635,0.000000,0.000000,0.004899,0.376961,-0.004135,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000601,0.000367,0.000603,0.000000,0.000000,0.004665,0.372886,-0.004076,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000572,0.000362,0.000575,0.000000,0.000000,0.004454,0.368868,-0.004018,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000546,0.000356,0.000550,0.000130,0.000130,0.004264,0.364780,-0.004088,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000523,0.000351,0.000527,0.000366,0.000366,0.004091,0.360517,-0.004263,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000502,0.000345,0.000506,0.000528,0.000528,0.003935,0.356156,-0.004361,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000483,0.000339,0.000487,0.000646,0.000646,0.003791,0.351740,-0.004416,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000465,0.000334,0.000470,0.000608,0.000608,0.003660,0.347425,-0.004315,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000169,0.000000,0.000000,0.000000,0.000006,0.000449,0.000328,0.000455,0.000545,0.000545,0.003539,0.343401,-0.004025,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000185,0.000000,0.000000,0.000000,0.000007,0.000434,0.000323,0.000441,0.000480,0.000480,0.003428,0.339513,-0.003887,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000280,0.000000,0.000000,0.000000,0.000007,0.000421,0.000319,0.000428,0.000387,0.000387,0.003326,0.335866,-0.003647,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000185,0.000000,0.000000,0.000000,0.000008,0.000408,0.000314,0.000416,0.000326,0.000326,0.003232,0.332238,-0.003628,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000397,0.000309,0.000405,0.000260,0.000260,0.003144,0.328730,-0.003507,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000185,0.000000,0.000000,0.000000,0.000009,0.000386,0.000305,0.000395,0.000165,0.000165,0.003063,0.325363,-0.003367,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000531,0.000017,0.000030,0.000017,0.000010,0.000376,0.000301,0.000403,0.000070,0.000070,0.002988,0.322449,-0.002914,1.000000,0.000014 +26,2022-08-02 02:00:00,0.000817,0.000057,0.000090,0.000057,0.000011,0.000367,0.000298,0.000435,0.000000,0.000000,0.002919,0.319868,-0.002581,1.000000,0.000046 +27,2022-08-02 03:00:00,0.000844,0.000081,0.000095,0.000081,0.000012,0.000359,0.000294,0.000451,0.000000,0.000000,0.002855,0.317346,-0.002523,1.000000,0.000061 +28,2022-08-02 04:00:00,0.000900,0.000100,0.000107,0.000100,0.000013,0.000351,0.000291,0.000464,0.000000,0.000000,0.002795,0.314903,-0.002443,1.000000,0.000067 +29,2022-08-02 05:00:00,0.000687,0.000081,0.000064,0.000081,0.000013,0.000344,0.000288,0.000438,0.000000,0.000000,0.002739,0.312327,-0.002575,1.000000,0.000050 +30,2022-08-02 06:00:00,0.000653,0.000069,0.000058,0.000069,0.000014,0.000337,0.000285,0.000420,0.000000,0.000000,0.002687,0.309761,-0.002566,1.000000,0.000039 +31,2022-08-02 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000015,0.000330,0.000280,0.000373,0.000000,0.000000,0.002637,0.306644,-0.003117,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000016,0.000324,0.000276,0.000352,0.000000,0.000000,0.002589,0.303572,-0.003072,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000318,0.000273,0.000335,0.000000,0.000000,0.002544,0.300543,-0.003028,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000313,0.000269,0.000330,0.000000,0.000000,0.002500,0.297558,-0.002985,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000307,0.000265,0.000326,0.000000,0.000000,0.002458,0.294616,-0.002943,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000302,0.000261,0.000322,0.000000,0.000000,0.002417,0.291715,-0.002901,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000297,0.000257,0.000318,0.000000,0.000000,0.002377,0.288856,-0.002859,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000292,0.000253,0.000314,0.000113,0.000113,0.002339,0.285926,-0.002930,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000287,0.000249,0.000310,0.000338,0.000338,0.002302,0.282816,-0.003109,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000282,0.000245,0.000306,0.000487,0.000487,0.002265,0.279604,-0.003212,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000278,0.000241,0.000303,0.000598,0.000598,0.002228,0.276328,-0.003276,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000318,0.000000,0.000000,0.000000,0.000026,0.000273,0.000237,0.000299,0.000689,0.000689,0.002192,0.273323,-0.003005,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000268,0.000233,0.000296,0.000628,0.000628,0.002157,0.270107,-0.003215,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000264,0.000229,0.000292,0.000548,0.000548,0.002122,0.267016,-0.003091,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000259,0.000225,0.000289,0.000504,0.000504,0.002087,0.264012,-0.003004,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000255,0.000221,0.000286,0.000424,0.000424,0.002053,0.261131,-0.002882,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000251,0.000218,0.000283,0.000328,0.000328,0.002020,0.258384,-0.002746,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000247,0.000214,0.000280,0.000183,0.000183,0.001987,0.255821,-0.002564,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000243,0.000211,0.000277,0.000034,0.000034,0.001956,0.253440,-0.002381,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000239,0.000208,0.000274,0.000000,0.000000,0.001925,0.251127,-0.002313,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000235,0.000205,0.000271,0.000000,0.000000,0.001895,0.248847,-0.002280,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000231,0.000202,0.000269,0.000000,0.000000,0.001866,0.246599,-0.002247,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000228,0.000199,0.000267,0.000000,0.000000,0.001838,0.244384,-0.002215,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000224,0.000197,0.000264,0.000000,0.000000,0.001810,0.242200,-0.002184,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000221,0.000194,0.000262,0.000000,0.000000,0.001783,0.240048,-0.002153,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000217,0.000191,0.000260,0.000000,0.000000,0.001757,0.237926,-0.002122,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000214,0.000188,0.000258,0.000000,0.000000,0.001731,0.235834,-0.002092,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000211,0.000186,0.000256,0.000000,0.000000,0.001706,0.233773,-0.002062,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000208,0.000183,0.000254,0.000000,0.000000,0.001681,0.231740,-0.002032,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000205,0.000180,0.000252,0.000000,0.000000,0.001656,0.229737,-0.002003,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000202,0.000178,0.000251,0.000000,0.000000,0.001632,0.227762,-0.001975,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000199,0.000175,0.000249,0.000126,0.000126,0.001609,0.225692,-0.002071,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000196,0.000172,0.000247,0.000372,0.000372,0.001585,0.223408,-0.002284,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000193,0.000169,0.000246,0.000532,0.000532,0.001561,0.220999,-0.002409,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000190,0.000166,0.000244,0.000646,0.000646,0.001537,0.218512,-0.002487,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000187,0.000162,0.000242,0.000651,0.000651,0.001513,0.216056,-0.002456,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000184,0.000159,0.000241,0.000589,0.000589,0.001489,0.213695,-0.002360,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000909,0.000011,0.000019,0.000011,0.000058,0.000181,0.000158,0.000250,0.000508,0.000508,0.001466,0.212326,-0.001369,1.000000,0.000009 +69,2022-08-03 21:00:00,0.000179,0.000005,0.000000,0.000005,0.000060,0.000178,0.000155,0.000242,0.000474,0.000474,0.001443,0.210309,-0.002018,1.000000,0.000004 +70,2022-08-03 22:00:00,0.000004,0.000004,0.000000,0.000004,0.000061,0.000175,0.000152,0.000240,0.000392,0.000392,0.001420,0.208229,-0.002080,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000172,0.000150,0.000235,0.000295,0.000295,0.001398,0.206270,-0.001959,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000169,0.000147,0.000233,0.000177,0.000177,0.001376,0.204455,-0.001815,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000167,0.000145,0.000232,0.000046,0.000046,0.001354,0.202796,-0.001659,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000164,0.000143,0.000231,0.000000,0.000000,0.001333,0.201206,-0.001590,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000161,0.000141,0.000230,0.000000,0.000000,0.001313,0.199639,-0.001568,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000159,0.000139,0.000228,0.000000,0.000000,0.001293,0.198093,-0.001545,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000043,0.000000,0.000000,0.000000,0.000071,0.000157,0.000137,0.000228,0.000000,0.000000,0.001274,0.196613,-0.001481,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000154,0.000135,0.000226,0.000000,0.000000,0.001255,0.195111,-0.001502,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000152,0.000133,0.000226,0.000000,0.000000,0.001236,0.193630,-0.001481,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000150,0.000131,0.000225,0.000000,0.000000,0.001218,0.192171,-0.001459,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000147,0.000129,0.000224,0.000000,0.000000,0.001200,0.190732,-0.001439,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000145,0.000128,0.000223,0.000000,0.000000,0.001182,0.189314,-0.001418,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000143,0.000126,0.000222,0.000000,0.000000,0.001165,0.187916,-0.001398,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000141,0.000124,0.000222,0.000000,0.000000,0.001148,0.186538,-0.001378,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000139,0.000122,0.000221,0.000000,0.000000,0.001132,0.185180,-0.001358,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000137,0.000120,0.000220,0.000122,0.000122,0.001115,0.183721,-0.001459,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000135,0.000118,0.000220,0.000364,0.000364,0.001098,0.182045,-0.001677,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000133,0.000116,0.000219,0.000530,0.000530,0.001082,0.180228,-0.001817,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000130,0.000113,0.000218,0.000652,0.000652,0.001064,0.178317,-0.001910,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000128,0.000111,0.000218,0.000715,0.000715,0.001047,0.176371,-0.001946,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000126,0.000108,0.000217,0.000653,0.000653,0.001029,0.174514,-0.001857,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000124,0.000106,0.000216,0.000572,0.000572,0.001011,0.172764,-0.001751,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000122,0.000104,0.000215,0.000503,0.000503,0.000994,0.171107,-0.001657,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000119,0.000102,0.000214,0.000417,0.000417,0.000976,0.169557,-0.001549,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000117,0.000100,0.000214,0.000328,0.000328,0.000959,0.168118,-0.001439,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000115,0.000098,0.000213,0.000193,0.000193,0.000942,0.166833,-0.001286,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000113,0.000097,0.000212,0.000056,0.000056,0.000925,0.165701,-0.001132,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000111,0.000095,0.000212,0.000000,0.000000,0.000910,0.164640,-0.001061,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000109,0.000094,0.000211,0.000000,0.000000,0.000894,0.163594,-0.001046,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000108,0.000093,0.000211,0.000000,0.000000,0.000879,0.162563,-0.001031,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000106,0.000091,0.000211,0.000000,0.000000,0.000865,0.161547,-0.001016,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000104,0.000090,0.000210,0.000000,0.000000,0.000851,0.160546,-0.001002,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000102,0.000089,0.000210,0.000000,0.000000,0.000838,0.159559,-0.000987,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000101,0.000088,0.000210,0.000000,0.000000,0.000825,0.158585,-0.000973,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000099,0.000086,0.000210,0.000000,0.000000,0.000812,0.157626,-0.000959,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000098,0.000085,0.000210,0.000000,0.000000,0.000799,0.156681,-0.000946,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000096,0.000084,0.000210,0.000000,0.000000,0.000787,0.155748,-0.000932,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000095,0.000083,0.000210,0.000000,0.000000,0.000775,0.154830,-0.000919,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000093,0.000081,0.000210,0.000000,0.000000,0.000763,0.153924,-0.000906,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000092,0.000080,0.000209,0.000135,0.000135,0.000752,0.152898,-0.001026,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000090,0.000079,0.000209,0.000376,0.000376,0.000740,0.151649,-0.001249,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000089,0.000077,0.000209,0.000536,0.000536,0.000728,0.150260,-0.001389,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000087,0.000075,0.000209,0.000655,0.000655,0.000715,0.148774,-0.001486,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000086,0.000073,0.000209,0.000655,0.000655,0.000703,0.147308,-0.001465,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000084,0.000071,0.000209,0.000593,0.000593,0.000690,0.145988,-0.001320,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000072,0.000000,0.000000,0.000000,0.000126,0.000083,0.000070,0.000209,0.000512,0.000512,0.000677,0.144775,-0.001213,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000081,0.000068,0.000208,0.000452,0.000452,0.000664,0.143630,-0.001145,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000129,0.000079,0.000067,0.000208,0.000378,0.000378,0.000651,0.142637,-0.000994,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000130,0.000078,0.000066,0.000208,0.000296,0.000296,0.000639,0.141800,-0.000836,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000100,0.000000,0.000000,0.000000,0.000132,0.000076,0.000065,0.000208,0.000183,0.000183,0.000627,0.140998,-0.000802,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000574,0.000015,0.000027,0.000015,0.000133,0.000075,0.000064,0.000223,0.000068,0.000068,0.000617,0.140762,-0.000236,1.000000,0.000012 +122,2022-08-06 02:00:00,0.000949,0.000057,0.000092,0.000057,0.000134,0.000074,0.000065,0.000266,0.000000,0.000000,0.000607,0.140902,0.000140,1.000000,0.000047 +123,2022-08-06 03:00:00,0.000762,0.000062,0.000060,0.000062,0.000136,0.000073,0.000065,0.000270,0.000000,0.000000,0.000599,0.140887,-0.000015,1.000000,0.000046 +124,2022-08-06 04:00:00,0.000660,0.000059,0.000046,0.000059,0.000137,0.000072,0.000064,0.000268,0.000000,0.000000,0.000591,0.140785,-0.000101,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000660,0.000049,0.000046,0.000049,0.000139,0.000071,0.000064,0.000258,0.000000,0.000000,0.000584,0.140686,-0.000100,1.000000,0.000030 +126,2022-08-06 06:00:00,0.000676,0.000047,0.000048,0.000047,0.000140,0.000070,0.000064,0.000257,0.000000,0.000000,0.000578,0.140601,-0.000085,1.000000,0.000031 +127,2022-08-06 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000141,0.000070,0.000063,0.000232,0.000000,0.000000,0.000572,0.139898,-0.000703,1.000000,0.000010 +128,2022-08-06 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000143,0.000069,0.000062,0.000221,0.000000,0.000000,0.000565,0.139206,-0.000693,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000068,0.000061,0.000212,0.000000,0.000000,0.000559,0.138523,-0.000683,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000067,0.000061,0.000213,0.000000,0.000000,0.000552,0.137850,-0.000673,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000066,0.000060,0.000213,0.000000,0.000000,0.000545,0.137187,-0.000663,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000066,0.000059,0.000214,0.000000,0.000000,0.000539,0.136533,-0.000654,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000065,0.000058,0.000214,0.000000,0.000000,0.000532,0.135888,-0.000645,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000064,0.000057,0.000215,0.000117,0.000117,0.000525,0.135137,-0.000751,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000063,0.000056,0.000215,0.000351,0.000351,0.000518,0.134166,-0.000971,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000062,0.000054,0.000215,0.000510,0.000510,0.000510,0.133053,-0.001114,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000061,0.000053,0.000216,0.000630,0.000630,0.000502,0.131837,-0.001215,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000060,0.000051,0.000216,0.000707,0.000707,0.000493,0.130563,-0.001275,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000059,0.000049,0.000216,0.000654,0.000654,0.000484,0.129358,-0.001204,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000048,0.000216,0.000570,0.000570,0.000474,0.128254,-0.001104,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000056,0.000047,0.000216,0.000510,0.000510,0.000464,0.127225,-0.001029,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000055,0.000046,0.000216,0.000420,0.000420,0.000454,0.126299,-0.000926,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000054,0.000044,0.000217,0.000327,0.000327,0.000445,0.125479,-0.000821,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000053,0.000044,0.000217,0.000181,0.000181,0.000436,0.124813,-0.000665,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000052,0.000043,0.000217,0.000046,0.000046,0.000427,0.124291,-0.000523,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000051,0.000042,0.000217,0.000000,0.000000,0.000418,0.123821,-0.000470,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000042,0.000217,0.000000,0.000000,0.000410,0.123358,-0.000463,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000049,0.000041,0.000218,0.000000,0.000000,0.000402,0.122901,-0.000457,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000048,0.000040,0.000218,0.000000,0.000000,0.000395,0.122451,-0.000450,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000047,0.000040,0.000219,0.000000,0.000000,0.000388,0.122008,-0.000444,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000046,0.000039,0.000219,0.000000,0.000000,0.000381,0.121570,-0.000437,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000045,0.000039,0.000219,0.000000,0.000000,0.000374,0.121139,-0.000431,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000038,0.000220,0.000000,0.000000,0.000368,0.120715,-0.000425,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000044,0.000038,0.000220,0.000000,0.000000,0.000361,0.120296,-0.000419,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000043,0.000037,0.000221,0.000000,0.000000,0.000355,0.119883,-0.000413,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000037,0.000221,0.000000,0.000000,0.000350,0.119476,-0.000407,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000042,0.000036,0.000222,0.000000,0.000000,0.000344,0.119075,-0.000401,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000041,0.000035,0.000222,0.000114,0.000114,0.000338,0.118567,-0.000507,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000034,0.000223,0.000350,0.000350,0.000332,0.117834,-0.000733,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000040,0.000033,0.000223,0.000512,0.000512,0.000326,0.116952,-0.000882,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000039,0.000032,0.000224,0.000632,0.000632,0.000319,0.115963,-0.000988,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000031,0.000224,0.000704,0.000704,0.000312,0.114918,-0.001045,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000029,0.000224,0.000649,0.000649,0.000305,0.113943,-0.000975,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000028,0.000224,0.000563,0.000563,0.000297,0.113066,-0.000877,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000035,0.000027,0.000225,0.000503,0.000503,0.000289,0.112260,-0.000805,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000026,0.000225,0.000423,0.000423,0.000281,0.111546,-0.000715,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000026,0.000225,0.000320,0.000320,0.000274,0.110942,-0.000604,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000025,0.000225,0.000155,0.000155,0.000266,0.110509,-0.000433,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000025,0.000226,0.000014,0.000014,0.000259,0.110222,-0.000287,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000024,0.000226,0.000000,0.000000,0.000253,0.109953,-0.000269,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000024,0.000226,0.000000,0.000000,0.000247,0.109688,-0.000265,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000029,0.000024,0.000227,0.000000,0.000000,0.000241,0.109426,-0.000261,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000023,0.000227,0.000000,0.000000,0.000236,0.109169,-0.000258,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000023,0.000228,0.000000,0.000000,0.000231,0.108915,-0.000254,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000023,0.000228,0.000000,0.000000,0.000226,0.108664,-0.000250,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000022,0.000229,0.000000,0.000000,0.000221,0.108417,-0.000247,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000022,0.000229,0.000000,0.000000,0.000217,0.108174,-0.000243,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000022,0.000230,0.000000,0.000000,0.000213,0.107934,-0.000240,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000231,0.000000,0.000000,0.000209,0.107698,-0.000236,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000021,0.000231,0.000000,0.000000,0.000205,0.107465,-0.000233,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000021,0.000232,0.000000,0.000000,0.000201,0.107235,-0.000230,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000233,0.000098,0.000098,0.000197,0.106912,-0.000323,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000020,0.000233,0.000336,0.000336,0.000194,0.106359,-0.000553,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000500,0.000500,0.000189,0.105651,-0.000707,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000234,0.000615,0.000615,0.000184,0.104842,-0.000810,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000016,0.000234,0.000700,0.000700,0.000179,0.103959,-0.000882,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000015,0.000235,0.000634,0.000634,0.000174,0.103155,-0.000805,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000014,0.000235,0.000552,0.000552,0.000168,0.102443,-0.000712,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000014,0.000235,0.000511,0.000511,0.000162,0.101781,-0.000661,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000013,0.000236,0.000422,0.000422,0.000156,0.101217,-0.000564,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000018,0.000012,0.000236,0.000325,0.000325,0.000150,0.100756,-0.000461,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000017,0.000012,0.000236,0.000187,0.000187,0.000144,0.100438,-0.000318,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000017,0.000012,0.000237,0.000039,0.000039,0.000139,0.100270,-0.000168,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000423,0.000010,0.000018,0.000010,0.000221,0.000016,0.000012,0.000247,0.000000,0.000000,0.000135,0.100542,0.000272,1.000000,0.000008 +195,2022-08-09 03:00:00,0.000153,0.000006,0.000002,0.000006,0.000222,0.000016,0.000012,0.000244,0.000000,0.000000,0.000131,0.100559,0.000017,1.000000,0.000005 +196,2022-08-09 04:00:00,0.000000,0.000004,0.000000,0.000004,0.000223,0.000015,0.000012,0.000242,0.000000,0.000000,0.000127,0.100428,-0.000131,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000012,0.000239,0.000000,0.000000,0.000124,0.100299,-0.000129,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000011,0.000239,0.000000,0.000000,0.000121,0.100171,-0.000127,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000011,0.000240,0.000000,0.000000,0.000118,0.100046,-0.000126,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000011,0.000241,0.000000,0.000000,0.000115,0.099922,-0.000124,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000011,0.000241,0.000000,0.000000,0.000112,0.099800,-0.000122,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000011,0.000242,0.000000,0.000000,0.000110,0.099679,-0.000120,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000011,0.000242,0.000000,0.000000,0.000108,0.099561,-0.000119,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000011,0.000243,0.000000,0.000000,0.000105,0.099444,-0.000117,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000010,0.000244,0.000000,0.000000,0.000103,0.099329,-0.000115,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000010,0.000244,0.000107,0.000107,0.000101,0.099110,-0.000219,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620871.csv b/test/channel_loss/channel_forcing/et/cat-2620871.csv new file mode 100644 index 000000000..64a888eb4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620871.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000454,0.000008,0.000014,0.000008,0.000000,0.001453,0.000240,0.001461,0.000184,0.000184,0.010383,0.836389,-0.004985,1.000000,0.000006 +1,2022-08-01 01:00:00,0.000000,0.000003,0.000000,0.000003,0.000000,0.001287,0.000238,0.001290,0.000057,0.000057,0.009334,0.831123,-0.005265,1.000000,0.000003 +2,2022-08-01 02:00:00,0.000000,0.000003,0.000000,0.000003,0.000000,0.001146,0.000237,0.001149,0.000000,0.000000,0.008425,0.825948,-0.005176,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001026,0.000235,0.001026,0.000000,0.000000,0.007634,0.820804,-0.005143,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000924,0.000234,0.000924,0.000000,0.000000,0.006943,0.815693,-0.005111,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000837,0.000232,0.000837,0.000000,0.000000,0.006339,0.810613,-0.005080,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000231,0.000761,0.000000,0.000000,0.005809,0.805565,-0.005048,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000229,0.000696,0.000000,0.000000,0.005343,0.800549,-0.005017,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000638,0.000228,0.000639,0.000000,0.000000,0.004933,0.795563,-0.004985,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000588,0.000227,0.000590,0.000000,0.000000,0.004571,0.790609,-0.004954,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000545,0.000225,0.000547,0.000000,0.000000,0.004252,0.785686,-0.004923,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000506,0.000224,0.000509,0.000000,0.000000,0.003969,0.780793,-0.004893,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000473,0.000222,0.000476,0.000000,0.000000,0.003719,0.775931,-0.004862,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000443,0.000221,0.000447,0.000000,0.000000,0.003496,0.771099,-0.004832,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000417,0.000220,0.000421,0.000131,0.000131,0.003299,0.766167,-0.004932,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000394,0.000218,0.000398,0.000362,0.000362,0.003123,0.761036,-0.005131,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000373,0.000217,0.000378,0.000520,0.000520,0.002966,0.755780,-0.005256,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000355,0.000215,0.000361,0.000627,0.000627,0.002826,0.750451,-0.005329,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000339,0.000213,0.000345,0.000584,0.000584,0.002701,0.745197,-0.005254,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000299,0.000000,0.000000,0.000000,0.000007,0.000324,0.000212,0.000331,0.000522,0.000522,0.002589,0.740335,-0.004862,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000200,0.000000,0.000000,0.000000,0.000008,0.000311,0.000211,0.000319,0.000470,0.000470,0.002489,0.735457,-0.004878,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000448,0.000000,0.000001,0.000000,0.000009,0.000299,0.000209,0.000309,0.000385,0.000385,0.002399,0.730939,-0.004518,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000200,0.000000,0.000000,0.000000,0.000010,0.000289,0.000208,0.000299,0.000334,0.000334,0.002318,0.726255,-0.004684,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000300,0.000000,0.000000,0.000000,0.000010,0.000280,0.000207,0.000290,0.000260,0.000260,0.002245,0.721772,-0.004483,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000200,0.000000,0.000000,0.000000,0.000011,0.000271,0.000206,0.000283,0.000167,0.000167,0.002179,0.717310,-0.004462,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000800,0.000045,0.000081,0.000045,0.000012,0.000264,0.000204,0.000321,0.000074,0.000074,0.002120,0.713484,-0.003826,1.000000,0.000037 +26,2022-08-02 02:00:00,0.000901,0.000087,0.000121,0.000087,0.000013,0.000257,0.000203,0.000357,0.000000,0.000000,0.002066,0.709816,-0.003668,1.000000,0.000071 +27,2022-08-02 03:00:00,0.000900,0.000113,0.000121,0.000113,0.000014,0.000251,0.000202,0.000378,0.000000,0.000000,0.002018,0.706170,-0.003646,1.000000,0.000079 +28,2022-08-02 04:00:00,0.000948,0.000127,0.000133,0.000127,0.000015,0.000245,0.000201,0.000388,0.000000,0.000000,0.001974,0.702583,-0.003587,1.000000,0.000084 +29,2022-08-02 05:00:00,0.000700,0.000098,0.000075,0.000098,0.000016,0.000240,0.000200,0.000355,0.000000,0.000000,0.001935,0.698829,-0.003754,1.000000,0.000060 +30,2022-08-02 06:00:00,0.000696,0.000086,0.000074,0.000086,0.000017,0.000235,0.000199,0.000339,0.000000,0.000000,0.001898,0.695096,-0.003733,1.000000,0.000048 +31,2022-08-02 07:00:00,0.000000,0.000033,0.000000,0.000033,0.000019,0.000231,0.000198,0.000283,0.000000,0.000000,0.001865,0.690767,-0.004329,1.000000,0.000015 +32,2022-08-02 08:00:00,0.000000,0.000015,0.000000,0.000015,0.000020,0.000227,0.000197,0.000262,0.000000,0.000000,0.001835,0.686466,-0.004302,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000224,0.000195,0.000245,0.000000,0.000000,0.001806,0.682191,-0.004275,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000220,0.000194,0.000243,0.000000,0.000000,0.001780,0.677942,-0.004248,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000217,0.000193,0.000241,0.000000,0.000000,0.001756,0.673721,-0.004222,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000214,0.000192,0.000239,0.000000,0.000000,0.001733,0.669525,-0.004196,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000212,0.000191,0.000238,0.000000,0.000000,0.001712,0.665356,-0.004169,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000209,0.000189,0.000237,0.000117,0.000117,0.001692,0.661096,-0.004260,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000207,0.000188,0.000236,0.000331,0.000331,0.001674,0.656650,-0.004446,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000205,0.000187,0.000235,0.000466,0.000466,0.001656,0.652098,-0.004552,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000202,0.000185,0.000234,0.000561,0.000561,0.001639,0.647479,-0.004619,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000304,0.000000,0.000000,0.000000,0.000033,0.000200,0.000184,0.000233,0.000645,0.000645,0.001623,0.643109,-0.004371,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000048,0.000000,0.000000,0.000000,0.000034,0.000198,0.000183,0.000233,0.000585,0.000585,0.001607,0.638571,-0.004538,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000197,0.000182,0.000232,0.000533,0.000533,0.001592,0.634065,-0.004506,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000195,0.000180,0.000232,0.000517,0.000517,0.001578,0.629603,-0.004462,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000193,0.000179,0.000232,0.000438,0.000438,0.001564,0.625247,-0.004356,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000191,0.000178,0.000232,0.000335,0.000335,0.001551,0.621021,-0.004226,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000190,0.000177,0.000232,0.000186,0.000186,0.001538,0.616968,-0.004052,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000188,0.000176,0.000232,0.000038,0.000038,0.001525,0.613088,-0.003880,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000187,0.000175,0.000232,0.000000,0.000000,0.001513,0.609270,-0.003818,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000185,0.000173,0.000232,0.000000,0.000000,0.001501,0.605476,-0.003794,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000184,0.000172,0.000232,0.000000,0.000000,0.001490,0.601705,-0.003771,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000182,0.000171,0.000233,0.000000,0.000000,0.001479,0.597958,-0.003747,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000181,0.000170,0.000233,0.000000,0.000000,0.001468,0.594235,-0.003724,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000180,0.000169,0.000234,0.000000,0.000000,0.001458,0.590534,-0.003701,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000178,0.000168,0.000234,0.000000,0.000000,0.001448,0.586857,-0.003677,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000177,0.000167,0.000235,0.000000,0.000000,0.001438,0.583202,-0.003655,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000176,0.000166,0.000235,0.000000,0.000000,0.001428,0.579570,-0.003632,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000175,0.000165,0.000236,0.000000,0.000000,0.001418,0.575961,-0.003609,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000063,0.000173,0.000164,0.000236,0.000000,0.000000,0.001409,0.572376,-0.003585,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000065,0.000172,0.000163,0.000237,0.000000,0.000000,0.001399,0.568814,-0.003562,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000171,0.000162,0.000238,0.000127,0.000127,0.001390,0.565146,-0.003668,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000170,0.000161,0.000239,0.000374,0.000374,0.001381,0.561255,-0.003891,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000169,0.000160,0.000239,0.000529,0.000529,0.001372,0.557234,-0.004021,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000168,0.000158,0.000240,0.000634,0.000634,0.001362,0.553135,-0.004100,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000167,0.000157,0.000241,0.000636,0.000636,0.001353,0.549058,-0.004077,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000165,0.000156,0.000242,0.000572,0.000572,0.001344,0.545071,-0.003987,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001529,0.000074,0.000134,0.000074,0.000078,0.000164,0.000155,0.000316,0.000505,0.000505,0.001335,0.542561,-0.002510,1.000000,0.000060 +69,2022-08-03 21:00:00,0.000239,0.000034,0.000000,0.000034,0.000080,0.000163,0.000154,0.000277,0.000483,0.000483,0.001326,0.538939,-0.003621,1.000000,0.000027 +70,2022-08-03 22:00:00,0.000000,0.000027,0.000000,0.000027,0.000082,0.000162,0.000153,0.000271,0.000403,0.000403,0.001318,0.535183,-0.003757,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000048,0.000000,0.000000,0.000000,0.000084,0.000161,0.000152,0.000245,0.000309,0.000309,0.001309,0.531591,-0.003591,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000160,0.000151,0.000246,0.000187,0.000187,0.001300,0.528095,-0.003496,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000159,0.000150,0.000247,0.000051,0.000051,0.001292,0.524756,-0.003339,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000158,0.000149,0.000248,0.000000,0.000000,0.001283,0.521488,-0.003268,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000157,0.000148,0.000250,0.000000,0.000000,0.001275,0.518241,-0.003248,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000156,0.000148,0.000251,0.000000,0.000000,0.001267,0.515013,-0.003227,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000155,0.000147,0.000252,0.000000,0.000000,0.001259,0.511806,-0.003207,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000099,0.000154,0.000146,0.000253,0.000000,0.000000,0.001251,0.508620,-0.003187,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000101,0.000153,0.000145,0.000254,0.000000,0.000000,0.001243,0.505455,-0.003165,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000003,0.000000,0.000000,0.000000,0.000103,0.000152,0.000144,0.000255,0.000000,0.000000,0.001235,0.502310,-0.003145,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000106,0.000151,0.000143,0.000256,0.000000,0.000000,0.001227,0.499184,-0.003125,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000108,0.000150,0.000142,0.000258,0.000000,0.000000,0.001220,0.496078,-0.003107,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000110,0.000149,0.000141,0.000259,0.000000,0.000000,0.001212,0.492991,-0.003087,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000112,0.000148,0.000140,0.000260,0.000000,0.000000,0.001204,0.489923,-0.003068,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000004,0.000000,0.000000,0.000000,0.000115,0.000147,0.000139,0.000262,0.000000,0.000000,0.001197,0.486876,-0.003047,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000146,0.000139,0.000263,0.000124,0.000124,0.001190,0.483721,-0.003155,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000145,0.000138,0.000264,0.000366,0.000366,0.001182,0.480346,-0.003376,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000144,0.000137,0.000266,0.000527,0.000527,0.001174,0.476830,-0.003515,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000143,0.000136,0.000267,0.000636,0.000636,0.001167,0.473229,-0.003602,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000142,0.000135,0.000268,0.000701,0.000701,0.001159,0.469585,-0.003644,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000141,0.000134,0.000270,0.000631,0.000631,0.001151,0.466033,-0.003552,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000140,0.000133,0.000271,0.000566,0.000566,0.001143,0.462569,-0.003464,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000139,0.000132,0.000272,0.000524,0.000524,0.001136,0.459167,-0.003402,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000138,0.000131,0.000274,0.000437,0.000437,0.001128,0.455873,-0.003293,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000137,0.000130,0.000275,0.000341,0.000341,0.001120,0.452696,-0.003178,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000136,0.000129,0.000276,0.000198,0.000198,0.001113,0.449680,-0.003016,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000136,0.000128,0.000278,0.000057,0.000057,0.001105,0.446822,-0.002857,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000135,0.000127,0.000279,0.000000,0.000000,0.001098,0.444040,-0.002783,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000134,0.000126,0.000281,0.000000,0.000000,0.001090,0.441275,-0.002765,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000133,0.000126,0.000282,0.000000,0.000000,0.001083,0.438527,-0.002748,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000132,0.000125,0.000284,0.000000,0.000000,0.001076,0.435796,-0.002731,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000131,0.000124,0.000285,0.000000,0.000000,0.001069,0.433082,-0.002714,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000130,0.000123,0.000287,0.000000,0.000000,0.001062,0.430385,-0.002697,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000129,0.000123,0.000288,0.000000,0.000000,0.001055,0.427705,-0.002680,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000129,0.000122,0.000290,0.000000,0.000000,0.001049,0.425041,-0.002663,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000128,0.000121,0.000292,0.000000,0.000000,0.001042,0.422395,-0.002647,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000127,0.000120,0.000293,0.000000,0.000000,0.001035,0.419764,-0.002630,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000126,0.000120,0.000295,0.000000,0.000000,0.001029,0.417150,-0.002614,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000125,0.000119,0.000297,0.000000,0.000000,0.001022,0.414552,-0.002598,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000124,0.000118,0.000298,0.000137,0.000137,0.001016,0.411835,-0.002718,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000124,0.000117,0.000300,0.000381,0.000381,0.001009,0.408892,-0.002943,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000123,0.000116,0.000301,0.000537,0.000537,0.001003,0.405812,-0.003080,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000122,0.000115,0.000303,0.000647,0.000647,0.000996,0.402642,-0.003170,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000121,0.000114,0.000305,0.000634,0.000634,0.000990,0.399505,-0.003138,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000189,0.000000,0.000000,0.000000,0.000186,0.000120,0.000114,0.000306,0.000573,0.000573,0.000983,0.396635,-0.002870,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000189,0.000000,0.000000,0.000000,0.000189,0.000120,0.000113,0.000308,0.000511,0.000511,0.000976,0.393845,-0.002790,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000192,0.000000,0.000000,0.000000,0.000191,0.000119,0.000112,0.000310,0.000472,0.000472,0.000970,0.391114,-0.002731,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000200,0.000000,0.000000,0.000000,0.000194,0.000118,0.000111,0.000311,0.000396,0.000396,0.000963,0.388483,-0.002631,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000300,0.000000,0.000000,0.000000,0.000196,0.000117,0.000111,0.000313,0.000308,0.000308,0.000956,0.386056,-0.002427,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000200,0.000000,0.000000,0.000000,0.000199,0.000116,0.000110,0.000315,0.000190,0.000190,0.000950,0.383662,-0.002394,1.000000,0.000000 +121,2022-08-06 01:00:00,0.001048,0.000060,0.000109,0.000060,0.000201,0.000116,0.000109,0.000377,0.000070,0.000070,0.000944,0.382136,-0.001526,1.000000,0.000049 +122,2022-08-06 02:00:00,0.001258,0.000124,0.000175,0.000124,0.000204,0.000115,0.000109,0.000442,0.000000,0.000000,0.000938,0.380832,-0.001304,1.000000,0.000101 +123,2022-08-06 03:00:00,0.000900,0.000117,0.000093,0.000117,0.000206,0.000114,0.000109,0.000437,0.000000,0.000000,0.000933,0.379262,-0.001570,1.000000,0.000077 +124,2022-08-06 04:00:00,0.000761,0.000096,0.000068,0.000096,0.000209,0.000113,0.000108,0.000418,0.000000,0.000000,0.000928,0.377589,-0.001673,1.000000,0.000049 +125,2022-08-06 05:00:00,0.000788,0.000075,0.000072,0.000075,0.000211,0.000113,0.000108,0.000399,0.000000,0.000000,0.000922,0.375949,-0.001640,1.000000,0.000046 +126,2022-08-06 06:00:00,0.000801,0.000073,0.000075,0.000073,0.000214,0.000112,0.000107,0.000399,0.000000,0.000000,0.000917,0.374329,-0.001619,1.000000,0.000048 +127,2022-08-06 07:00:00,0.000003,0.000033,0.000000,0.000033,0.000216,0.000112,0.000107,0.000361,0.000000,0.000000,0.000912,0.372001,-0.002329,1.000000,0.000015 +128,2022-08-06 08:00:00,0.000001,0.000015,0.000000,0.000015,0.000219,0.000111,0.000106,0.000345,0.000000,0.000000,0.000907,0.369685,-0.002316,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000221,0.000110,0.000105,0.000332,0.000000,0.000000,0.000902,0.367385,-0.002300,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000224,0.000110,0.000105,0.000334,0.000000,0.000000,0.000897,0.365101,-0.002285,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000226,0.000109,0.000104,0.000336,0.000000,0.000000,0.000892,0.362829,-0.002272,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000229,0.000108,0.000103,0.000337,0.000000,0.000000,0.000887,0.360571,-0.002258,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000004,0.000000,0.000000,0.000000,0.000232,0.000108,0.000103,0.000339,0.000000,0.000000,0.000882,0.358329,-0.002242,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000107,0.000102,0.000341,0.000116,0.000116,0.000877,0.355982,-0.002347,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000107,0.000101,0.000343,0.000345,0.000345,0.000871,0.353422,-0.002560,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000106,0.000100,0.000345,0.000492,0.000492,0.000866,0.350733,-0.002690,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000105,0.000100,0.000347,0.000606,0.000606,0.000860,0.347946,-0.002787,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000104,0.000099,0.000349,0.000685,0.000685,0.000855,0.345098,-0.002848,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000104,0.000098,0.000351,0.000633,0.000633,0.000849,0.342319,-0.002779,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000103,0.000097,0.000353,0.000564,0.000564,0.000843,0.339627,-0.002692,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000102,0.000097,0.000354,0.000529,0.000529,0.000838,0.336987,-0.002640,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000102,0.000096,0.000356,0.000436,0.000436,0.000832,0.334455,-0.002532,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000101,0.000095,0.000358,0.000339,0.000339,0.000826,0.332035,-0.002419,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000100,0.000094,0.000360,0.000193,0.000193,0.000820,0.329776,-0.002259,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000100,0.000094,0.000362,0.000050,0.000050,0.000815,0.327673,-0.002104,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000099,0.000093,0.000364,0.000000,0.000000,0.000809,0.325632,-0.002041,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000098,0.000093,0.000366,0.000000,0.000000,0.000804,0.323604,-0.002028,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000270,0.000097,0.000092,0.000367,0.000000,0.000000,0.000798,0.321589,-0.002015,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000273,0.000097,0.000092,0.000369,0.000000,0.000000,0.000793,0.319586,-0.002003,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000275,0.000096,0.000091,0.000371,0.000000,0.000000,0.000788,0.317596,-0.001990,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000278,0.000096,0.000090,0.000373,0.000000,0.000000,0.000783,0.315618,-0.001978,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000280,0.000095,0.000090,0.000375,0.000000,0.000000,0.000778,0.313653,-0.001965,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000283,0.000094,0.000089,0.000377,0.000000,0.000000,0.000773,0.311700,-0.001953,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000285,0.000094,0.000089,0.000379,0.000000,0.000000,0.000768,0.309759,-0.001941,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000288,0.000093,0.000088,0.000381,0.000000,0.000000,0.000763,0.307830,-0.001929,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000291,0.000092,0.000088,0.000383,0.000000,0.000000,0.000758,0.305913,-0.001917,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000293,0.000092,0.000087,0.000385,0.000000,0.000000,0.000753,0.304010,-0.001903,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000296,0.000091,0.000087,0.000387,0.000114,0.000114,0.000748,0.302003,-0.002007,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000298,0.000091,0.000086,0.000389,0.000357,0.000357,0.000743,0.299768,-0.002235,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000301,0.000090,0.000085,0.000391,0.000511,0.000511,0.000738,0.297393,-0.002375,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000303,0.000089,0.000084,0.000393,0.000617,0.000617,0.000733,0.294927,-0.002465,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000306,0.000089,0.000084,0.000395,0.000686,0.000686,0.000728,0.292409,-0.002518,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000308,0.000088,0.000083,0.000397,0.000629,0.000629,0.000723,0.289963,-0.002446,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000311,0.000088,0.000082,0.000398,0.000558,0.000558,0.000718,0.287603,-0.002360,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000313,0.000087,0.000082,0.000400,0.000526,0.000526,0.000713,0.285289,-0.002314,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000316,0.000086,0.000081,0.000402,0.000439,0.000439,0.000708,0.283076,-0.002213,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000319,0.000086,0.000080,0.000404,0.000333,0.000333,0.000702,0.280983,-0.002094,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000321,0.000085,0.000080,0.000406,0.000161,0.000161,0.000697,0.279073,-0.001910,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000324,0.000084,0.000079,0.000408,0.000019,0.000019,0.000692,0.277316,-0.001757,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000326,0.000084,0.000079,0.000410,0.000000,0.000000,0.000687,0.275589,-0.001727,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000329,0.000083,0.000078,0.000412,0.000000,0.000000,0.000683,0.273873,-0.001716,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000331,0.000083,0.000078,0.000414,0.000000,0.000000,0.000678,0.272167,-0.001706,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000334,0.000082,0.000077,0.000416,0.000000,0.000000,0.000673,0.270472,-0.001695,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000336,0.000082,0.000077,0.000418,0.000000,0.000000,0.000669,0.268791,-0.001681,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000004,0.000000,0.000000,0.000000,0.000339,0.000081,0.000077,0.000420,0.000000,0.000000,0.000664,0.267121,-0.001670,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000004,0.000000,0.000000,0.000000,0.000341,0.000080,0.000076,0.000422,0.000000,0.000000,0.000660,0.265461,-0.001660,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000344,0.000080,0.000076,0.000424,0.000000,0.000000,0.000656,0.263811,-0.001650,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000004,0.000000,0.000000,0.000000,0.000346,0.000079,0.000075,0.000426,0.000000,0.000000,0.000651,0.262173,-0.001639,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000005,0.000000,0.000000,0.000000,0.000349,0.000079,0.000075,0.000428,0.000000,0.000000,0.000647,0.260545,-0.001628,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000004,0.000000,0.000000,0.000000,0.000351,0.000078,0.000074,0.000430,0.000000,0.000000,0.000643,0.258927,-0.001618,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000007,0.000000,0.000000,0.000000,0.000354,0.000078,0.000074,0.000432,0.000000,0.000000,0.000639,0.257321,-0.001606,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000356,0.000077,0.000073,0.000434,0.000099,0.000099,0.000635,0.255621,-0.001700,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000359,0.000077,0.000073,0.000435,0.000341,0.000341,0.000631,0.253690,-0.001931,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000361,0.000076,0.000072,0.000437,0.000500,0.000500,0.000626,0.251613,-0.002077,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000364,0.000076,0.000071,0.000439,0.000595,0.000595,0.000622,0.249455,-0.002158,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000366,0.000075,0.000071,0.000441,0.000676,0.000676,0.000618,0.247230,-0.002226,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000369,0.000075,0.000070,0.000443,0.000609,0.000609,0.000613,0.245085,-0.002144,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000371,0.000074,0.000070,0.000445,0.000544,0.000544,0.000609,0.243018,-0.002067,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000373,0.000074,0.000069,0.000447,0.000522,0.000522,0.000604,0.240985,-0.002033,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000376,0.000073,0.000068,0.000449,0.000436,0.000436,0.000600,0.239052,-0.001934,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000378,0.000072,0.000068,0.000451,0.000336,0.000336,0.000595,0.237229,-0.001822,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000381,0.000072,0.000067,0.000453,0.000192,0.000192,0.000591,0.235561,-0.001668,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000383,0.000071,0.000067,0.000455,0.000042,0.000042,0.000586,0.234053,-0.001508,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000159,0.000002,0.000003,0.000002,0.000386,0.000071,0.000067,0.000458,0.000000,0.000000,0.000582,0.232750,-0.001303,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000052,0.000001,0.000000,0.000001,0.000388,0.000070,0.000066,0.000459,0.000000,0.000000,0.000578,0.231352,-0.001398,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000390,0.000070,0.000066,0.000461,0.000000,0.000000,0.000574,0.229911,-0.001441,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000393,0.000069,0.000065,0.000462,0.000000,0.000000,0.000570,0.228480,-0.001431,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000002,0.000000,0.000000,0.000000,0.000395,0.000069,0.000065,0.000464,0.000000,0.000000,0.000566,0.227060,-0.001420,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000398,0.000068,0.000065,0.000466,0.000000,0.000000,0.000562,0.225649,-0.001411,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000003,0.000000,0.000000,0.000000,0.000400,0.000068,0.000064,0.000468,0.000000,0.000000,0.000559,0.224247,-0.001402,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000402,0.000068,0.000064,0.000470,0.000000,0.000000,0.000555,0.222853,-0.001393,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000005,0.000000,0.000000,0.000000,0.000405,0.000067,0.000063,0.000472,0.000000,0.000000,0.000551,0.221470,-0.001383,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000407,0.000067,0.000063,0.000474,0.000000,0.000000,0.000548,0.220092,-0.001378,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000005,0.000000,0.000000,0.000000,0.000410,0.000066,0.000063,0.000476,0.000000,0.000000,0.000544,0.218727,-0.001366,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000004,0.000000,0.000000,0.000000,0.000412,0.000066,0.000062,0.000478,0.000000,0.000000,0.000541,0.217369,-0.001358,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000414,0.000065,0.000062,0.000480,0.000107,0.000107,0.000537,0.215909,-0.001460,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620872.csv b/test/channel_loss/channel_forcing/et/cat-2620872.csv new file mode 100644 index 000000000..114ab5b58 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620872.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000288,0.000001,0.000002,0.000001,0.000000,0.001487,0.000481,0.001488,0.000180,0.000180,0.010590,0.425916,-0.004752,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000063,0.000001,0.000000,0.000001,0.000000,0.001347,0.000474,0.001347,0.000051,0.000051,0.009717,0.421140,-0.004776,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000038,0.000001,0.000000,0.000001,0.000000,0.001228,0.000467,0.001228,0.000000,0.000000,0.008957,0.416459,-0.004682,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001126,0.000460,0.001126,0.000000,0.000000,0.008292,0.411838,-0.004621,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000030,0.000000,0.000000,0.000000,0.000000,0.001037,0.000454,0.001038,0.000000,0.000000,0.007708,0.407283,-0.004554,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000037,0.000000,0.000000,0.000000,0.000000,0.000961,0.000447,0.000962,0.000000,0.000000,0.007194,0.402802,-0.004482,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000030,0.000000,0.000000,0.000000,0.000001,0.000895,0.000441,0.000895,0.000000,0.000000,0.006741,0.398379,-0.004423,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000836,0.000434,0.000837,0.000000,0.000000,0.006339,0.393990,-0.004389,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000785,0.000428,0.000786,0.000000,0.000000,0.005982,0.389664,-0.004325,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000740,0.000422,0.000742,0.000000,0.000000,0.005663,0.385402,-0.004263,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000700,0.000416,0.000702,0.000000,0.000000,0.005379,0.381201,-0.004201,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000665,0.000410,0.000667,0.000000,0.000000,0.005124,0.377061,-0.004140,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000633,0.000404,0.000635,0.000000,0.000000,0.004895,0.372981,-0.004080,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000604,0.000398,0.000607,0.000000,0.000000,0.004689,0.368960,-0.004021,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000579,0.000392,0.000582,0.000126,0.000126,0.004502,0.364873,-0.004087,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000556,0.000386,0.000559,0.000359,0.000359,0.004332,0.360616,-0.004257,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000535,0.000380,0.000539,0.000527,0.000527,0.004177,0.356255,-0.004361,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000515,0.000373,0.000520,0.000659,0.000659,0.004035,0.351827,-0.004428,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000498,0.000367,0.000503,0.000626,0.000626,0.003904,0.347496,-0.004331,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000482,0.000361,0.000488,0.000564,0.000564,0.003783,0.343414,-0.004082,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000188,0.000000,0.000000,0.000000,0.000007,0.000467,0.000355,0.000473,0.000490,0.000490,0.003672,0.339524,-0.003890,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000253,0.000000,0.000000,0.000000,0.000007,0.000453,0.000350,0.000460,0.000382,0.000382,0.003569,0.335861,-0.003663,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000188,0.000000,0.000000,0.000000,0.000008,0.000440,0.000345,0.000448,0.000309,0.000309,0.003473,0.332259,-0.003602,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000188,0.000000,0.000000,0.000000,0.000009,0.000428,0.000340,0.000437,0.000250,0.000250,0.003385,0.328767,-0.003492,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000193,0.000000,0.000000,0.000000,0.000009,0.000417,0.000335,0.000427,0.000155,0.000155,0.003302,0.325424,-0.003343,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000018,0.000033,0.000018,0.000010,0.000407,0.000330,0.000436,0.000061,0.000061,0.003225,0.322560,-0.002864,1.000000,0.000015 +26,2022-08-02 02:00:00,0.000890,0.000061,0.000096,0.000061,0.000011,0.000398,0.000327,0.000470,0.000000,0.000000,0.003154,0.320052,-0.002508,1.000000,0.000050 +27,2022-08-02 03:00:00,0.000927,0.000087,0.000103,0.000087,0.000012,0.000389,0.000323,0.000488,0.000000,0.000000,0.003088,0.317610,-0.002442,1.000000,0.000066 +28,2022-08-02 04:00:00,0.000897,0.000098,0.000097,0.000098,0.000012,0.000381,0.000320,0.000492,0.000000,0.000000,0.003027,0.315181,-0.002429,1.000000,0.000064 +29,2022-08-02 05:00:00,0.000702,0.000078,0.000060,0.000078,0.000013,0.000374,0.000316,0.000465,0.000000,0.000000,0.002969,0.312630,-0.002551,1.000000,0.000047 +30,2022-08-02 06:00:00,0.000598,0.000059,0.000044,0.000059,0.000014,0.000366,0.000312,0.000439,0.000000,0.000000,0.002915,0.310029,-0.002601,1.000000,0.000032 +31,2022-08-02 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000015,0.000360,0.000308,0.000398,0.000000,0.000000,0.002863,0.306921,-0.003108,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000016,0.000353,0.000303,0.000378,0.000000,0.000000,0.002813,0.303857,-0.003063,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000347,0.000299,0.000364,0.000000,0.000000,0.002765,0.300838,-0.003019,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000341,0.000295,0.000359,0.000000,0.000000,0.002718,0.297863,-0.002975,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000335,0.000290,0.000354,0.000000,0.000000,0.002674,0.294931,-0.002932,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000329,0.000286,0.000349,0.000000,0.000000,0.002630,0.292041,-0.002890,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000324,0.000282,0.000345,0.000000,0.000000,0.002588,0.289194,-0.002848,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000319,0.000278,0.000340,0.000107,0.000107,0.002547,0.286282,-0.002911,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000313,0.000273,0.000336,0.000336,0.000336,0.002507,0.283187,-0.003095,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000308,0.000268,0.000332,0.000493,0.000493,0.002467,0.279982,-0.003205,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000303,0.000264,0.000328,0.000618,0.000618,0.002428,0.276700,-0.003282,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000265,0.000000,0.000000,0.000000,0.000026,0.000298,0.000259,0.000324,0.000715,0.000715,0.002389,0.273631,-0.003069,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000293,0.000255,0.000320,0.000652,0.000652,0.002350,0.270407,-0.003224,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000288,0.000250,0.000316,0.000559,0.000559,0.002312,0.267323,-0.003085,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000283,0.000246,0.000313,0.000497,0.000497,0.002274,0.264343,-0.002980,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000279,0.000242,0.000309,0.000413,0.000413,0.002237,0.261490,-0.002853,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000274,0.000238,0.000305,0.000317,0.000317,0.002201,0.258772,-0.002718,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000269,0.000234,0.000302,0.000176,0.000176,0.002165,0.256233,-0.002539,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000265,0.000230,0.000299,0.000029,0.000029,0.002131,0.253876,-0.002357,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000261,0.000227,0.000296,0.000000,0.000000,0.002097,0.251581,-0.002295,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000257,0.000224,0.000293,0.000000,0.000000,0.002064,0.249320,-0.002261,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000252,0.000221,0.000290,0.000000,0.000000,0.002032,0.247091,-0.002229,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000248,0.000217,0.000287,0.000000,0.000000,0.002001,0.244895,-0.002196,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000245,0.000214,0.000284,0.000000,0.000000,0.001971,0.242731,-0.002164,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000241,0.000211,0.000282,0.000000,0.000000,0.001941,0.240598,-0.002133,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000237,0.000208,0.000279,0.000000,0.000000,0.001912,0.238495,-0.002102,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000234,0.000205,0.000277,0.000000,0.000000,0.001884,0.236424,-0.002072,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000230,0.000202,0.000275,0.000000,0.000000,0.001856,0.234382,-0.002042,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000227,0.000199,0.000273,0.000000,0.000000,0.001829,0.232370,-0.002012,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000223,0.000196,0.000270,0.000000,0.000000,0.001802,0.230387,-0.001983,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000220,0.000193,0.000268,0.000000,0.000000,0.001776,0.228433,-0.001954,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000216,0.000190,0.000266,0.000124,0.000124,0.001750,0.226385,-0.002048,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000213,0.000187,0.000264,0.000367,0.000367,0.001724,0.224127,-0.002258,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000210,0.000184,0.000262,0.000533,0.000533,0.001697,0.221738,-0.002389,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000207,0.000180,0.000260,0.000661,0.000661,0.001671,0.219258,-0.002480,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000203,0.000177,0.000258,0.000666,0.000666,0.001644,0.216808,-0.002449,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000200,0.000173,0.000256,0.000597,0.000597,0.001618,0.214463,-0.002345,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000689,0.000002,0.000003,0.000002,0.000058,0.000197,0.000171,0.000256,0.000514,0.000514,0.001592,0.212909,-0.001554,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000185,0.000001,0.000000,0.000001,0.000059,0.000193,0.000168,0.000253,0.000462,0.000462,0.001567,0.210935,-0.001974,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000056,0.000001,0.000000,0.000001,0.000060,0.000190,0.000165,0.000251,0.000379,0.000379,0.001541,0.208944,-0.001991,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000187,0.000162,0.000249,0.000282,0.000282,0.001517,0.207023,-0.001921,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000184,0.000160,0.000247,0.000164,0.000164,0.001492,0.205245,-0.001777,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000181,0.000157,0.000246,0.000039,0.000039,0.001469,0.203617,-0.001628,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000178,0.000155,0.000244,0.000000,0.000000,0.001446,0.202051,-0.001566,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000175,0.000153,0.000243,0.000000,0.000000,0.001423,0.200507,-0.001543,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000173,0.000151,0.000241,0.000000,0.000000,0.001401,0.198986,-0.001521,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000170,0.000148,0.000240,0.000000,0.000000,0.001380,0.197549,-0.001437,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000167,0.000146,0.000239,0.000000,0.000000,0.001359,0.196071,-0.001478,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000165,0.000144,0.000238,0.000000,0.000000,0.001338,0.194614,-0.001457,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000162,0.000142,0.000236,0.000000,0.000000,0.001318,0.193178,-0.001436,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000160,0.000140,0.000235,0.000000,0.000000,0.001299,0.191763,-0.001415,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000157,0.000138,0.000234,0.000000,0.000000,0.001279,0.190369,-0.001394,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000155,0.000136,0.000233,0.000000,0.000000,0.001261,0.188995,-0.001374,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000153,0.000134,0.000232,0.000000,0.000000,0.001242,0.187640,-0.001354,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000150,0.000132,0.000231,0.000000,0.000000,0.001224,0.186306,-0.001335,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000148,0.000130,0.000231,0.000120,0.000120,0.001206,0.184872,-0.001434,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000146,0.000128,0.000230,0.000363,0.000363,0.001188,0.183220,-0.001652,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000144,0.000125,0.000229,0.000532,0.000532,0.001169,0.181425,-0.001795,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000141,0.000122,0.000228,0.000664,0.000664,0.001150,0.179526,-0.001899,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000139,0.000119,0.000227,0.000723,0.000723,0.001131,0.177596,-0.001930,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000068,0.000000,0.000000,0.000000,0.000090,0.000136,0.000117,0.000226,0.000666,0.000666,0.001111,0.175818,-0.001778,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000030,0.000000,0.000000,0.000000,0.000091,0.000134,0.000114,0.000225,0.000578,0.000578,0.001092,0.174115,-0.001703,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000131,0.000112,0.000224,0.000485,0.000485,0.001072,0.172498,-0.001617,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000129,0.000110,0.000223,0.000398,0.000398,0.001053,0.170990,-0.001508,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000127,0.000108,0.000222,0.000311,0.000311,0.001034,0.169591,-0.001400,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000002,0.000000,0.000000,0.000000,0.000097,0.000124,0.000106,0.000221,0.000185,0.000185,0.001016,0.168337,-0.001254,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000041,0.000000,0.000000,0.000000,0.000098,0.000122,0.000104,0.000220,0.000050,0.000050,0.000998,0.167273,-0.001063,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000120,0.000103,0.000220,0.000000,0.000000,0.000981,0.166234,-0.001039,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000118,0.000101,0.000219,0.000000,0.000000,0.000964,0.165210,-0.001024,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000116,0.000100,0.000218,0.000000,0.000000,0.000948,0.164200,-0.001010,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000114,0.000098,0.000218,0.000000,0.000000,0.000932,0.163205,-0.000995,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000112,0.000097,0.000217,0.000000,0.000000,0.000917,0.162225,-0.000980,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000110,0.000096,0.000217,0.000000,0.000000,0.000903,0.161258,-0.000966,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000109,0.000094,0.000216,0.000000,0.000000,0.000888,0.160306,-0.000952,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000107,0.000093,0.000216,0.000000,0.000000,0.000874,0.159368,-0.000938,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000105,0.000092,0.000216,0.000000,0.000000,0.000861,0.158443,-0.000925,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000104,0.000090,0.000216,0.000000,0.000000,0.000847,0.157531,-0.000911,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000102,0.000089,0.000215,0.000000,0.000000,0.000834,0.156633,-0.000898,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000100,0.000088,0.000215,0.000000,0.000000,0.000822,0.155748,-0.000885,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000099,0.000086,0.000215,0.000132,0.000132,0.000809,0.154745,-0.001002,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000097,0.000084,0.000215,0.000369,0.000369,0.000796,0.153524,-0.001221,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000096,0.000082,0.000215,0.000535,0.000535,0.000783,0.152157,-0.001367,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000094,0.000080,0.000214,0.000667,0.000667,0.000769,0.150679,-0.001478,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000092,0.000078,0.000214,0.000665,0.000665,0.000755,0.149224,-0.001455,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000090,0.000076,0.000214,0.000601,0.000601,0.000741,0.147916,-0.001308,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000177,0.000000,0.000000,0.000000,0.000125,0.000089,0.000075,0.000213,0.000512,0.000512,0.000727,0.146828,-0.001089,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000065,0.000000,0.000000,0.000000,0.000126,0.000087,0.000073,0.000213,0.000433,0.000433,0.000713,0.145722,-0.001106,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000127,0.000085,0.000072,0.000213,0.000358,0.000358,0.000699,0.144766,-0.000956,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000188,0.000000,0.000000,0.000000,0.000129,0.000084,0.000070,0.000212,0.000281,0.000281,0.000686,0.143961,-0.000805,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000065,0.000000,0.000000,0.000000,0.000130,0.000082,0.000069,0.000212,0.000175,0.000175,0.000673,0.143151,-0.000810,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000492,0.000010,0.000018,0.000010,0.000131,0.000081,0.000069,0.000222,0.000061,0.000061,0.000662,0.142868,-0.000283,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000771,0.000035,0.000056,0.000035,0.000133,0.000079,0.000069,0.000248,0.000000,0.000000,0.000651,0.142887,0.000019,1.000000,0.000029 +123,2022-08-06 03:00:00,0.000657,0.000040,0.000041,0.000040,0.000134,0.000078,0.000069,0.000253,0.000000,0.000000,0.000642,0.142808,-0.000079,1.000000,0.000030 +124,2022-08-06 04:00:00,0.000526,0.000036,0.000027,0.000036,0.000135,0.000077,0.000069,0.000249,0.000000,0.000000,0.000633,0.142615,-0.000193,1.000000,0.000020 +125,2022-08-06 05:00:00,0.000527,0.000030,0.000027,0.000030,0.000137,0.000076,0.000068,0.000243,0.000000,0.000000,0.000625,0.142426,-0.000189,1.000000,0.000017 +126,2022-08-06 06:00:00,0.000563,0.000029,0.000031,0.000029,0.000138,0.000075,0.000068,0.000242,0.000000,0.000000,0.000618,0.142271,-0.000154,1.000000,0.000019 +127,2022-08-06 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000139,0.000074,0.000067,0.000227,0.000000,0.000000,0.000611,0.141594,-0.000677,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000141,0.000073,0.000066,0.000220,0.000000,0.000000,0.000603,0.140927,-0.000667,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000073,0.000065,0.000215,0.000000,0.000000,0.000596,0.140269,-0.000658,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000072,0.000064,0.000215,0.000000,0.000000,0.000588,0.139621,-0.000648,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000071,0.000063,0.000215,0.000000,0.000000,0.000581,0.138983,-0.000639,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000070,0.000062,0.000216,0.000000,0.000000,0.000573,0.138353,-0.000629,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000069,0.000061,0.000216,0.000000,0.000000,0.000566,0.137733,-0.000620,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000068,0.000060,0.000217,0.000115,0.000115,0.000558,0.137008,-0.000725,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000067,0.000059,0.000217,0.000350,0.000350,0.000550,0.136062,-0.000946,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000066,0.000057,0.000217,0.000514,0.000514,0.000542,0.134968,-0.001094,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000056,0.000217,0.000646,0.000646,0.000532,0.133760,-0.001208,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000064,0.000054,0.000217,0.000721,0.000721,0.000523,0.132496,-0.001264,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000062,0.000052,0.000217,0.000668,0.000668,0.000512,0.131302,-0.001194,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000061,0.000050,0.000217,0.000575,0.000575,0.000502,0.130217,-0.001085,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000060,0.000049,0.000217,0.000491,0.000491,0.000491,0.129231,-0.000987,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000048,0.000217,0.000401,0.000401,0.000480,0.128347,-0.000883,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000047,0.000217,0.000311,0.000311,0.000470,0.127565,-0.000782,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000056,0.000046,0.000217,0.000168,0.000168,0.000460,0.126936,-0.000629,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000045,0.000217,0.000039,0.000039,0.000450,0.126442,-0.000494,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000044,0.000218,0.000000,0.000000,0.000441,0.125995,-0.000448,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000052,0.000044,0.000218,0.000000,0.000000,0.000432,0.125553,-0.000441,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000051,0.000043,0.000218,0.000000,0.000000,0.000423,0.125119,-0.000435,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000042,0.000218,0.000000,0.000000,0.000415,0.124690,-0.000428,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000218,0.000000,0.000000,0.000408,0.124268,-0.000422,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000041,0.000219,0.000000,0.000000,0.000400,0.123852,-0.000416,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000048,0.000041,0.000219,0.000000,0.000000,0.000393,0.123442,-0.000410,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000040,0.000219,0.000000,0.000000,0.000386,0.123037,-0.000404,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000039,0.000220,0.000000,0.000000,0.000380,0.122639,-0.000398,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000039,0.000220,0.000000,0.000000,0.000373,0.122247,-0.000393,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000038,0.000221,0.000000,0.000000,0.000367,0.121860,-0.000387,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000038,0.000221,0.000000,0.000000,0.000361,0.121478,-0.000381,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000111,0.000111,0.000355,0.120994,-0.000485,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000042,0.000036,0.000222,0.000345,0.000345,0.000348,0.120285,-0.000708,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000041,0.000035,0.000222,0.000513,0.000513,0.000342,0.119421,-0.000864,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000033,0.000223,0.000645,0.000645,0.000334,0.118439,-0.000982,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000032,0.000223,0.000720,0.000720,0.000327,0.117398,-0.001041,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000030,0.000223,0.000663,0.000663,0.000318,0.116428,-0.000970,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000029,0.000223,0.000568,0.000568,0.000310,0.115566,-0.000862,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000028,0.000223,0.000487,0.000487,0.000301,0.114796,-0.000770,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000027,0.000223,0.000406,0.000406,0.000293,0.114117,-0.000679,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000026,0.000223,0.000309,0.000309,0.000285,0.113543,-0.000574,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000026,0.000224,0.000149,0.000149,0.000277,0.113136,-0.000407,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000025,0.000224,0.000008,0.000008,0.000269,0.112873,-0.000263,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000025,0.000224,0.000000,0.000000,0.000262,0.112622,-0.000251,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000024,0.000224,0.000000,0.000000,0.000256,0.112374,-0.000247,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000024,0.000225,0.000000,0.000000,0.000250,0.112131,-0.000244,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000024,0.000225,0.000000,0.000000,0.000244,0.111890,-0.000240,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000023,0.000226,0.000000,0.000000,0.000238,0.111654,-0.000237,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000233,0.111420,-0.000233,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000227,0.000000,0.000000,0.000228,0.111190,-0.000230,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000000,0.000000,0.000224,0.110964,-0.000227,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000228,0.000000,0.000000,0.000219,0.110740,-0.000223,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000215,0.110520,-0.000220,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000000,0.000000,0.000211,0.110303,-0.000217,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000229,0.000000,0.000000,0.000207,0.110090,-0.000214,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000096,0.000096,0.000203,0.109784,-0.000305,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000230,0.000331,0.000331,0.000199,0.109252,-0.000533,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000019,0.000231,0.000503,0.000503,0.000194,0.108558,-0.000694,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000018,0.000231,0.000631,0.000631,0.000189,0.107748,-0.000810,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000016,0.000231,0.000718,0.000718,0.000183,0.106863,-0.000884,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000015,0.000232,0.000654,0.000654,0.000177,0.106055,-0.000808,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000021,0.000014,0.000232,0.000560,0.000560,0.000171,0.105351,-0.000704,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000020,0.000013,0.000232,0.000498,0.000498,0.000164,0.104718,-0.000633,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000019,0.000013,0.000232,0.000406,0.000406,0.000158,0.104185,-0.000533,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000018,0.000012,0.000233,0.000314,0.000314,0.000151,0.103751,-0.000434,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000012,0.000233,0.000179,0.000179,0.000145,0.103456,-0.000295,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000017,0.000011,0.000233,0.000034,0.000034,0.000140,0.103308,-0.000148,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000612,0.000019,0.000034,0.000019,0.000217,0.000016,0.000012,0.000252,0.000000,0.000000,0.000135,0.103765,0.000457,1.000000,0.000015 +195,2022-08-09 03:00:00,0.000248,0.000012,0.000006,0.000012,0.000218,0.000016,0.000012,0.000246,0.000000,0.000000,0.000131,0.103885,0.000120,1.000000,0.000009 +196,2022-08-09 04:00:00,0.000000,0.000008,0.000000,0.000008,0.000219,0.000015,0.000012,0.000243,0.000000,0.000000,0.000128,0.103764,-0.000121,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000220,0.000015,0.000012,0.000236,0.000000,0.000000,0.000125,0.103645,-0.000119,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000012,0.000236,0.000000,0.000000,0.000122,0.103528,-0.000117,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000014,0.000011,0.000236,0.000000,0.000000,0.000119,0.103412,-0.000116,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000011,0.000237,0.000000,0.000000,0.000116,0.103298,-0.000114,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000011,0.000237,0.000000,0.000000,0.000113,0.103186,-0.000112,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000011,0.000238,0.000000,0.000000,0.000111,0.103076,-0.000111,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000011,0.000239,0.000000,0.000000,0.000108,0.102967,-0.000109,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000013,0.000011,0.000239,0.000000,0.000000,0.000106,0.102859,-0.000107,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000010,0.000240,0.000000,0.000000,0.000104,0.102753,-0.000106,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000012,0.000010,0.000240,0.000106,0.000106,0.000102,0.102545,-0.000208,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620873.csv b/test/channel_loss/channel_forcing/et/cat-2620873.csv new file mode 100644 index 000000000..1cbe99600 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620873.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000214,0.000000,0.000000,0.000000,0.000000,0.001467,0.000338,0.001467,0.000171,0.000171,0.010467,0.426291,-0.004754,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000059,0.000000,0.000000,0.000000,0.000000,0.001311,0.000333,0.001311,0.000047,0.000047,0.009489,0.421573,-0.004719,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.001179,0.000328,0.001179,0.000000,0.000000,0.008639,0.416965,-0.004608,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.001066,0.000324,0.001067,0.000000,0.000000,0.007897,0.412420,-0.004544,1.000000,0.000001 +4,2022-08-01 04:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.000969,0.000319,0.000970,0.000000,0.000000,0.007248,0.407939,-0.004481,1.000000,0.000001 +5,2022-08-01 05:00:00,0.000059,0.000001,0.000001,0.000001,0.000000,0.000885,0.000315,0.000887,0.000000,0.000000,0.006677,0.403520,-0.004419,1.000000,0.000001 +6,2022-08-01 06:00:00,0.000059,0.000001,0.000001,0.000001,0.000001,0.000813,0.000311,0.000814,0.000000,0.000000,0.006175,0.399161,-0.004358,1.000000,0.000001 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000750,0.000306,0.000751,0.000000,0.000000,0.005732,0.394806,-0.004356,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000695,0.000302,0.000696,0.000000,0.000000,0.005339,0.390510,-0.004295,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000646,0.000298,0.000648,0.000000,0.000000,0.004991,0.386275,-0.004236,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000603,0.000294,0.000605,0.000000,0.000000,0.004682,0.382097,-0.004177,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000566,0.000290,0.000568,0.000000,0.000000,0.004406,0.377978,-0.004120,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000532,0.000286,0.000535,0.000000,0.000000,0.004160,0.373915,-0.004063,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000502,0.000282,0.000505,0.000000,0.000000,0.003939,0.369909,-0.004006,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000476,0.000278,0.000479,0.000122,0.000122,0.003741,0.365837,-0.004071,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000452,0.000274,0.000456,0.000348,0.000348,0.003563,0.361600,-0.004237,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000431,0.000269,0.000435,0.000514,0.000514,0.003402,0.357257,-0.004343,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000411,0.000265,0.000416,0.000646,0.000646,0.003256,0.352844,-0.004413,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000394,0.000261,0.000399,0.000617,0.000617,0.003123,0.348520,-0.004324,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000122,0.000000,0.000000,0.000000,0.000006,0.000378,0.000257,0.000384,0.000561,0.000561,0.003002,0.344433,-0.004088,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000134,0.000000,0.000000,0.000000,0.000007,0.000363,0.000253,0.000370,0.000477,0.000477,0.002891,0.340496,-0.003937,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000227,0.000000,0.000000,0.000000,0.000007,0.000350,0.000249,0.000358,0.000364,0.000364,0.002790,0.336816,-0.003680,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000134,0.000000,0.000000,0.000000,0.000008,0.000338,0.000246,0.000346,0.000289,0.000289,0.002698,0.333170,-0.003646,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000134,0.000000,0.000000,0.000000,0.000009,0.000327,0.000242,0.000336,0.000234,0.000234,0.002613,0.329628,-0.003541,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000420,0.000008,0.000014,0.000008,0.000010,0.000317,0.000239,0.000335,0.000143,0.000143,0.002535,0.326493,-0.003135,1.000000,0.000007 +25,2022-08-02 01:00:00,0.000608,0.000034,0.000055,0.000034,0.000010,0.000308,0.000236,0.000352,0.000054,0.000054,0.002463,0.323635,-0.002858,1.000000,0.000028 +26,2022-08-02 02:00:00,0.000769,0.000072,0.000101,0.000072,0.000011,0.000299,0.000234,0.000383,0.000000,0.000000,0.002398,0.320982,-0.002653,1.000000,0.000056 +27,2022-08-02 03:00:00,0.000716,0.000085,0.000088,0.000085,0.000012,0.000292,0.000231,0.000388,0.000000,0.000000,0.002337,0.318326,-0.002656,1.000000,0.000060 +28,2022-08-02 04:00:00,0.000669,0.000085,0.000077,0.000085,0.000013,0.000284,0.000228,0.000382,0.000000,0.000000,0.002281,0.315672,-0.002654,1.000000,0.000052 +29,2022-08-02 05:00:00,0.000551,0.000066,0.000053,0.000066,0.000014,0.000278,0.000226,0.000357,0.000000,0.000000,0.002229,0.312962,-0.002710,1.000000,0.000039 +30,2022-08-02 06:00:00,0.000507,0.000054,0.000045,0.000054,0.000015,0.000271,0.000223,0.000340,0.000000,0.000000,0.002181,0.310253,-0.002709,1.000000,0.000031 +31,2022-08-02 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000015,0.000266,0.000220,0.000303,0.000000,0.000000,0.002135,0.307127,-0.003126,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000016,0.000260,0.000217,0.000285,0.000000,0.000000,0.002092,0.304044,-0.003083,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000255,0.000214,0.000272,0.000000,0.000000,0.002051,0.301004,-0.003040,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000250,0.000211,0.000268,0.000000,0.000000,0.002012,0.298006,-0.002998,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000245,0.000208,0.000264,0.000000,0.000000,0.001975,0.295049,-0.002957,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000241,0.000205,0.000261,0.000000,0.000000,0.001940,0.292133,-0.002916,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000236,0.000202,0.000258,0.000000,0.000000,0.001906,0.289257,-0.002876,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000232,0.000199,0.000254,0.000100,0.000100,0.001873,0.286323,-0.002935,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000228,0.000196,0.000251,0.000328,0.000328,0.001841,0.283204,-0.003119,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000224,0.000193,0.000249,0.000486,0.000486,0.001810,0.279972,-0.003231,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000220,0.000190,0.000246,0.000616,0.000616,0.001780,0.276657,-0.003315,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000150,0.000000,0.000000,0.000000,0.000027,0.000217,0.000187,0.000243,0.000714,0.000714,0.001750,0.273440,-0.003218,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000213,0.000184,0.000241,0.000645,0.000645,0.001721,0.270186,-0.003254,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000209,0.000180,0.000238,0.000545,0.000545,0.001692,0.267077,-0.003109,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000206,0.000177,0.000236,0.000487,0.000487,0.001664,0.264067,-0.003010,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000202,0.000175,0.000233,0.000397,0.000397,0.001636,0.261188,-0.002879,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000199,0.000172,0.000231,0.000304,0.000304,0.001610,0.258440,-0.002747,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000195,0.000169,0.000229,0.000168,0.000168,0.001584,0.255865,-0.002575,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000192,0.000167,0.000227,0.000025,0.000025,0.001558,0.253467,-0.002399,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000189,0.000165,0.000225,0.000000,0.000000,0.001534,0.251126,-0.002341,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000186,0.000162,0.000223,0.000000,0.000000,0.001510,0.248817,-0.002308,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000183,0.000160,0.000222,0.000000,0.000000,0.001487,0.246541,-0.002277,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000180,0.000158,0.000220,0.000000,0.000000,0.001464,0.244296,-0.002245,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000178,0.000156,0.000219,0.000000,0.000000,0.001442,0.242082,-0.002214,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000175,0.000154,0.000217,0.000000,0.000000,0.001421,0.239898,-0.002183,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000172,0.000152,0.000216,0.000000,0.000000,0.001400,0.237745,-0.002153,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000170,0.000149,0.000215,0.000000,0.000000,0.001380,0.235622,-0.002123,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000167,0.000147,0.000213,0.000000,0.000000,0.001360,0.233527,-0.002094,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000165,0.000145,0.000212,0.000000,0.000000,0.001340,0.231462,-0.002065,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000162,0.000143,0.000211,0.000000,0.000000,0.001321,0.229426,-0.002037,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000160,0.000141,0.000210,0.000000,0.000000,0.001302,0.227417,-0.002008,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000158,0.000139,0.000209,0.000119,0.000119,0.001284,0.225319,-0.002098,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000155,0.000137,0.000208,0.000357,0.000357,0.001265,0.223015,-0.002303,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000153,0.000135,0.000207,0.000521,0.000521,0.001247,0.220582,-0.002434,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000151,0.000132,0.000206,0.000653,0.000653,0.001228,0.218052,-0.002530,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000148,0.000130,0.000205,0.000662,0.000662,0.001209,0.215548,-0.002504,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000146,0.000127,0.000204,0.000585,0.000585,0.001190,0.213154,-0.002394,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000409,0.000000,0.000000,0.000000,0.000060,0.000144,0.000125,0.000203,0.000502,0.000502,0.001172,0.211279,-0.001875,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000110,0.000000,0.000000,0.000000,0.000061,0.000142,0.000123,0.000203,0.000446,0.000446,0.001153,0.209190,-0.002088,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000092,0.000000,0.000000,0.000000,0.000062,0.000139,0.000121,0.000202,0.000361,0.000361,0.001135,0.207196,-0.001994,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000015,0.000000,0.000000,0.000000,0.000064,0.000137,0.000119,0.000201,0.000269,0.000269,0.001118,0.205246,-0.001951,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000135,0.000118,0.000200,0.000151,0.000151,0.001101,0.203423,-0.001823,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000133,0.000116,0.000200,0.000035,0.000035,0.001084,0.201740,-0.001683,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000131,0.000114,0.000199,0.000000,0.000000,0.001067,0.200114,-0.001626,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000129,0.000113,0.000198,0.000000,0.000000,0.001051,0.198511,-0.001603,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000127,0.000111,0.000198,0.000000,0.000000,0.001036,0.196930,-0.001581,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000001,0.000000,0.000072,0.000125,0.000110,0.000198,0.000000,0.000000,0.001020,0.195433,-0.001497,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000123,0.000108,0.000197,0.000000,0.000000,0.001005,0.193894,-0.001538,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000121,0.000107,0.000197,0.000000,0.000000,0.000991,0.192377,-0.001517,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000120,0.000105,0.000196,0.000000,0.000000,0.000977,0.190881,-0.001496,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000118,0.000104,0.000196,0.000000,0.000000,0.000963,0.189406,-0.001475,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000116,0.000102,0.000196,0.000000,0.000000,0.000949,0.187951,-0.001455,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000114,0.000101,0.000196,0.000000,0.000000,0.000935,0.186516,-0.001435,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000113,0.000100,0.000195,0.000000,0.000000,0.000922,0.185101,-0.001415,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000111,0.000098,0.000195,0.000000,0.000000,0.000909,0.183705,-0.001395,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000110,0.000097,0.000195,0.000119,0.000119,0.000896,0.182212,-0.001493,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000108,0.000095,0.000195,0.000358,0.000358,0.000883,0.180504,-0.001708,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000106,0.000093,0.000195,0.000522,0.000522,0.000870,0.178657,-0.001846,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000105,0.000091,0.000195,0.000654,0.000654,0.000857,0.176706,-0.001951,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000089,0.000194,0.000693,0.000693,0.000843,0.174743,-0.001963,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000111,0.000000,0.000000,0.000000,0.000093,0.000101,0.000088,0.000194,0.000656,0.000656,0.000829,0.172954,-0.001789,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000059,0.000000,0.000000,0.000000,0.000094,0.000100,0.000086,0.000194,0.000571,0.000571,0.000816,0.171222,-0.001732,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000098,0.000084,0.000194,0.000463,0.000463,0.000802,0.169561,-0.001660,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000096,0.000083,0.000193,0.000378,0.000378,0.000788,0.168008,-0.001553,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000034,0.000000,0.000000,0.000000,0.000099,0.000095,0.000081,0.000193,0.000292,0.000292,0.000775,0.166594,-0.001415,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000105,0.000000,0.000000,0.000000,0.000100,0.000093,0.000080,0.000193,0.000176,0.000176,0.000762,0.165384,-0.001210,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000158,0.000001,0.000002,0.000001,0.000102,0.000092,0.000079,0.000194,0.000047,0.000047,0.000750,0.164369,-0.001015,1.000000,0.000001 +98,2022-08-05 02:00:00,0.000023,0.000001,0.000000,0.000001,0.000103,0.000090,0.000078,0.000194,0.000000,0.000000,0.000738,0.163283,-0.001087,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000023,0.000000,0.000000,0.000000,0.000105,0.000089,0.000077,0.000194,0.000000,0.000000,0.000726,0.162211,-0.001072,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000023,0.000000,0.000000,0.000000,0.000106,0.000087,0.000076,0.000193,0.000000,0.000000,0.000715,0.161154,-0.001057,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000023,0.000000,0.000000,0.000000,0.000107,0.000086,0.000075,0.000193,0.000000,0.000000,0.000704,0.160112,-0.001042,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000023,0.000000,0.000000,0.000000,0.000109,0.000085,0.000074,0.000194,0.000000,0.000000,0.000693,0.159085,-0.001028,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000083,0.000073,0.000194,0.000000,0.000000,0.000683,0.158049,-0.001036,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000082,0.000072,0.000194,0.000000,0.000000,0.000673,0.157027,-0.001021,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000081,0.000071,0.000194,0.000000,0.000000,0.000663,0.156020,-0.001007,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000080,0.000070,0.000194,0.000000,0.000000,0.000653,0.155027,-0.000993,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000078,0.000069,0.000195,0.000000,0.000000,0.000644,0.154047,-0.000980,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000068,0.000195,0.000000,0.000000,0.000634,0.153081,-0.000966,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000076,0.000067,0.000195,0.000000,0.000000,0.000625,0.152128,-0.000953,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000075,0.000066,0.000196,0.000127,0.000127,0.000616,0.151064,-0.001065,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000074,0.000065,0.000196,0.000357,0.000357,0.000607,0.149787,-0.001277,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000073,0.000063,0.000196,0.000522,0.000522,0.000597,0.148365,-0.001422,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000072,0.000062,0.000197,0.000660,0.000660,0.000588,0.146826,-0.001538,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000060,0.000197,0.000655,0.000655,0.000578,0.145314,-0.001512,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000128,0.000069,0.000059,0.000197,0.000585,0.000585,0.000568,0.143954,-0.001360,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000210,0.000000,0.000000,0.000000,0.000129,0.000068,0.000058,0.000197,0.000499,0.000499,0.000558,0.142842,-0.001112,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000121,0.000000,0.000000,0.000000,0.000131,0.000067,0.000057,0.000198,0.000414,0.000414,0.000548,0.141742,-0.001100,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000122,0.000000,0.000000,0.000000,0.000132,0.000065,0.000056,0.000198,0.000336,0.000336,0.000538,0.140735,-0.001007,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000123,0.000000,0.000000,0.000000,0.000134,0.000064,0.000055,0.000198,0.000263,0.000263,0.000529,0.139815,-0.000920,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000129,0.000000,0.000000,0.000000,0.000135,0.000063,0.000054,0.000198,0.000165,0.000165,0.000519,0.139010,-0.000805,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000442,0.000011,0.000021,0.000011,0.000137,0.000062,0.000054,0.000210,0.000055,0.000055,0.000511,0.138613,-0.000397,1.000000,0.000009 +122,2022-08-06 02:00:00,0.000519,0.000025,0.000037,0.000025,0.000138,0.000061,0.000053,0.000225,0.000000,0.000000,0.000503,0.138336,-0.000277,1.000000,0.000021 +123,2022-08-06 03:00:00,0.000491,0.000031,0.000033,0.000031,0.000139,0.000060,0.000053,0.000231,0.000000,0.000000,0.000496,0.138039,-0.000297,1.000000,0.000022 +124,2022-08-06 04:00:00,0.000332,0.000024,0.000015,0.000024,0.000141,0.000060,0.000053,0.000224,0.000000,0.000000,0.000489,0.137607,-0.000432,1.000000,0.000014 +125,2022-08-06 05:00:00,0.000339,0.000019,0.000016,0.000019,0.000142,0.000059,0.000052,0.000220,0.000000,0.000000,0.000483,0.137187,-0.000420,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000333,0.000016,0.000016,0.000016,0.000144,0.000058,0.000052,0.000217,0.000000,0.000000,0.000477,0.136767,-0.000420,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000145,0.000057,0.000051,0.000209,0.000000,0.000000,0.000471,0.136040,-0.000727,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000147,0.000056,0.000050,0.000206,0.000000,0.000000,0.000465,0.135323,-0.000717,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000056,0.000050,0.000204,0.000000,0.000000,0.000459,0.134616,-0.000707,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000055,0.000049,0.000204,0.000000,0.000000,0.000453,0.133918,-0.000697,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000054,0.000048,0.000205,0.000000,0.000000,0.000447,0.133231,-0.000688,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000054,0.000048,0.000206,0.000000,0.000000,0.000441,0.132552,-0.000678,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000053,0.000047,0.000206,0.000000,0.000000,0.000435,0.131884,-0.000669,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000052,0.000046,0.000207,0.000112,0.000112,0.000429,0.131113,-0.000770,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000051,0.000045,0.000208,0.000340,0.000340,0.000423,0.130130,-0.000984,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000051,0.000044,0.000208,0.000507,0.000507,0.000417,0.128994,-0.001135,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000050,0.000043,0.000209,0.000641,0.000641,0.000410,0.127742,-0.001252,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000049,0.000042,0.000209,0.000711,0.000711,0.000403,0.126439,-0.001303,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000048,0.000040,0.000210,0.000655,0.000655,0.000395,0.125209,-0.001230,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000047,0.000039,0.000210,0.000565,0.000565,0.000388,0.124084,-0.001125,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000046,0.000038,0.000211,0.000470,0.000470,0.000380,0.123069,-0.001015,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000045,0.000037,0.000211,0.000381,0.000381,0.000372,0.122155,-0.000914,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000044,0.000037,0.000211,0.000293,0.000293,0.000364,0.121341,-0.000814,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000036,0.000212,0.000154,0.000154,0.000357,0.120675,-0.000666,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000042,0.000035,0.000212,0.000035,0.000035,0.000350,0.120136,-0.000539,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000042,0.000035,0.000213,0.000000,0.000000,0.000343,0.119639,-0.000497,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000035,0.000213,0.000000,0.000000,0.000337,0.119148,-0.000490,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000040,0.000034,0.000214,0.000000,0.000000,0.000331,0.118665,-0.000484,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000039,0.000034,0.000215,0.000000,0.000000,0.000325,0.118188,-0.000477,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000039,0.000033,0.000215,0.000000,0.000000,0.000319,0.117718,-0.000470,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000038,0.000033,0.000216,0.000000,0.000000,0.000314,0.117254,-0.000464,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000037,0.000032,0.000216,0.000000,0.000000,0.000309,0.116797,-0.000457,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000032,0.000217,0.000000,0.000000,0.000304,0.116346,-0.000451,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000036,0.000031,0.000218,0.000000,0.000000,0.000299,0.115901,-0.000445,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000031,0.000218,0.000000,0.000000,0.000294,0.115462,-0.000439,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000030,0.000219,0.000000,0.000000,0.000289,0.115030,-0.000433,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000030,0.000220,0.000000,0.000000,0.000285,0.114603,-0.000427,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000029,0.000221,0.000106,0.000106,0.000280,0.114078,-0.000526,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000033,0.000029,0.000221,0.000334,0.000334,0.000276,0.113335,-0.000743,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000028,0.000222,0.000503,0.000503,0.000271,0.112436,-0.000899,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000032,0.000027,0.000223,0.000638,0.000638,0.000265,0.111416,-0.001020,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000031,0.000026,0.000223,0.000713,0.000713,0.000260,0.110336,-0.001079,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000025,0.000224,0.000652,0.000652,0.000254,0.109332,-0.001004,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000024,0.000224,0.000554,0.000554,0.000248,0.108438,-0.000894,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000029,0.000023,0.000225,0.000473,0.000473,0.000241,0.107637,-0.000802,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000022,0.000225,0.000388,0.000388,0.000235,0.106930,-0.000707,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000022,0.000226,0.000298,0.000298,0.000229,0.106322,-0.000608,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000021,0.000226,0.000141,0.000141,0.000224,0.105877,-0.000445,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000010,0.000000,0.000000,0.000000,0.000200,0.000026,0.000021,0.000227,0.000005,0.000005,0.000218,0.105582,-0.000295,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000023,0.000000,0.000000,0.000000,0.000201,0.000026,0.000021,0.000227,0.000000,0.000000,0.000213,0.105309,-0.000273,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000010,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000228,0.000000,0.000000,0.000209,0.105027,-0.000282,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000010,0.000000,0.000000,0.000000,0.000204,0.000025,0.000020,0.000228,0.000000,0.000000,0.000204,0.104748,-0.000278,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000010,0.000000,0.000000,0.000000,0.000205,0.000024,0.000020,0.000229,0.000000,0.000000,0.000200,0.104474,-0.000275,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000010,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000230,0.000000,0.000000,0.000196,0.104203,-0.000271,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000023,0.000019,0.000230,0.000000,0.000000,0.000192,0.103926,-0.000277,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000019,0.000231,0.000000,0.000000,0.000189,0.103653,-0.000273,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000022,0.000019,0.000232,0.000000,0.000000,0.000185,0.103384,-0.000269,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000019,0.000233,0.000000,0.000000,0.000182,0.103118,-0.000266,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000233,0.000000,0.000000,0.000179,0.102857,-0.000262,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000018,0.000234,0.000000,0.000000,0.000175,0.102598,-0.000258,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000018,0.000235,0.000000,0.000000,0.000173,0.102344,-0.000255,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000215,0.000021,0.000018,0.000236,0.000093,0.000093,0.000170,0.102003,-0.000341,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000236,0.000321,0.000321,0.000166,0.101441,-0.000562,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000003,0.000000,0.000000,0.000000,0.000217,0.000020,0.000016,0.000237,0.000493,0.000493,0.000163,0.100719,-0.000722,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000004,0.000000,0.000000,0.000000,0.000218,0.000019,0.000015,0.000238,0.000621,0.000621,0.000159,0.099882,-0.000837,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000003,0.000000,0.000000,0.000000,0.000219,0.000019,0.000015,0.000238,0.000709,0.000709,0.000155,0.098968,-0.000914,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000221,0.000018,0.000014,0.000239,0.000646,0.000646,0.000151,0.098127,-0.000840,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000222,0.000018,0.000013,0.000239,0.000550,0.000550,0.000146,0.097393,-0.000734,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000013,0.000240,0.000480,0.000000,0.000142,0.097210,-0.000183,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000013,0.000240,0.000390,0.000000,0.000138,0.097030,-0.000180,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000013,0.000241,0.000299,0.000000,0.000134,0.096852,-0.000178,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000012,0.000242,0.000168,0.000000,0.000130,0.096677,-0.000175,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000012,0.000242,0.000030,0.000000,0.000127,0.096504,-0.000173,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000468,0.000016,0.000028,0.000016,0.000228,0.000015,0.000012,0.000259,0.000000,0.000000,0.000125,0.096767,0.000263,1.000000,0.000013 +195,2022-08-09 03:00:00,0.000147,0.000009,0.000003,0.000009,0.000229,0.000015,0.000012,0.000252,0.000000,0.000000,0.000122,0.096735,-0.000032,1.000000,0.000007 +196,2022-08-09 04:00:00,0.000000,0.000006,0.000000,0.000006,0.000230,0.000015,0.000012,0.000251,0.000000,0.000000,0.000120,0.096561,-0.000174,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000231,0.000014,0.000012,0.000246,0.000000,0.000000,0.000118,0.096390,-0.000171,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000012,0.000246,0.000000,0.000000,0.000116,0.096221,-0.000169,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000012,0.000247,0.000000,0.000000,0.000114,0.096055,-0.000166,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000014,0.000012,0.000247,0.000000,0.000000,0.000112,0.095891,-0.000164,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000110,0.095729,-0.000162,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000108,0.095569,-0.000160,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000106,0.095412,-0.000157,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000013,0.000011,0.000251,0.000000,0.000000,0.000104,0.095256,-0.000155,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000251,0.000000,0.000000,0.000103,0.095103,-0.000153,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000252,0.000104,0.000000,0.000101,0.094952,-0.000151,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620874.csv b/test/channel_loss/channel_forcing/et/cat-2620874.csv new file mode 100644 index 000000000..f1022fd1c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620874.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000064,0.000000,0.000000,0.000000,0.000000,0.001454,0.000241,0.001454,0.000169,0.000169,0.010384,0.426428,-0.004863,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001287,0.000238,0.001287,0.000044,0.000044,0.009335,0.421690,-0.004739,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001146,0.000235,0.001146,0.000000,0.000000,0.008424,0.417058,-0.004631,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001026,0.000231,0.001026,0.000000,0.000000,0.007630,0.412489,-0.004569,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000923,0.000228,0.000923,0.000000,0.000000,0.006935,0.407981,-0.004508,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000835,0.000225,0.000835,0.000000,0.000000,0.006326,0.403533,-0.004448,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000758,0.000222,0.000759,0.000000,0.000000,0.005790,0.399145,-0.004388,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000692,0.000219,0.000692,0.000000,0.000000,0.005318,0.394815,-0.004330,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000634,0.000216,0.000635,0.000000,0.000000,0.004901,0.390543,-0.004272,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000583,0.000213,0.000584,0.000000,0.000000,0.004531,0.386329,-0.004214,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000538,0.000211,0.000540,0.000000,0.000000,0.004204,0.382171,-0.004158,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000499,0.000208,0.000501,0.000000,0.000000,0.003913,0.378069,-0.004102,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000464,0.000205,0.000467,0.000000,0.000000,0.003654,0.374021,-0.004047,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000433,0.000202,0.000436,0.000000,0.000000,0.003422,0.370028,-0.003993,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000406,0.000199,0.000409,0.000121,0.000121,0.003216,0.365969,-0.004059,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000382,0.000197,0.000386,0.000345,0.000345,0.003031,0.361743,-0.004226,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000360,0.000194,0.000364,0.000516,0.000516,0.002864,0.357405,-0.004338,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000340,0.000191,0.000345,0.000651,0.000651,0.002715,0.352992,-0.004413,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000323,0.000188,0.000328,0.000635,0.000635,0.002579,0.348654,-0.004339,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000033,0.000000,0.000000,0.000000,0.000006,0.000307,0.000185,0.000313,0.000574,0.000574,0.002457,0.344466,-0.004187,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000038,0.000000,0.000000,0.000000,0.000007,0.000293,0.000182,0.000300,0.000483,0.000483,0.002346,0.340431,-0.004036,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000108,0.000000,0.000000,0.000000,0.000008,0.000280,0.000179,0.000287,0.000369,0.000369,0.002246,0.336630,-0.003801,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000038,0.000000,0.000000,0.000000,0.000008,0.000268,0.000177,0.000276,0.000292,0.000292,0.002155,0.332886,-0.003744,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000038,0.000000,0.000000,0.000000,0.000009,0.000257,0.000174,0.000266,0.000234,0.000234,0.002071,0.329249,-0.003636,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000920,0.000076,0.000138,0.000076,0.000010,0.000248,0.000172,0.000333,0.000149,0.000149,0.001996,0.326480,-0.002769,1.000000,0.000062 +25,2022-08-02 01:00:00,0.000568,0.000070,0.000064,0.000070,0.000011,0.000239,0.000170,0.000319,0.000058,0.000058,0.001927,0.323564,-0.002917,1.000000,0.000056 +26,2022-08-02 02:00:00,0.000555,0.000084,0.000074,0.000084,0.000011,0.000231,0.000168,0.000327,0.000000,0.000000,0.001865,0.320720,-0.002844,1.000000,0.000046 +27,2022-08-02 03:00:00,0.000239,0.000040,0.000015,0.000040,0.000012,0.000224,0.000166,0.000275,0.000000,0.000000,0.001807,0.317662,-0.003058,1.000000,0.000022 +28,2022-08-02 04:00:00,0.000222,0.000026,0.000013,0.000026,0.000013,0.000217,0.000164,0.000256,0.000000,0.000000,0.001754,0.314630,-0.003032,1.000000,0.000009 +29,2022-08-02 05:00:00,0.000158,0.000010,0.000007,0.000010,0.000014,0.000211,0.000162,0.000235,0.000000,0.000000,0.001705,0.311581,-0.003049,1.000000,0.000006 +30,2022-08-02 06:00:00,0.000228,0.000012,0.000013,0.000012,0.000015,0.000205,0.000160,0.000231,0.000000,0.000000,0.001660,0.308635,-0.002946,1.000000,0.000007 +31,2022-08-02 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000016,0.000200,0.000158,0.000220,0.000000,0.000000,0.001618,0.305517,-0.003118,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000017,0.000195,0.000156,0.000214,0.000000,0.000000,0.001579,0.302441,-0.003076,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000190,0.000154,0.000208,0.000000,0.000000,0.001543,0.299406,-0.003035,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000186,0.000152,0.000205,0.000000,0.000000,0.001508,0.296412,-0.002994,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000182,0.000150,0.000201,0.000000,0.000000,0.001476,0.293457,-0.002954,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000178,0.000148,0.000199,0.000000,0.000000,0.001446,0.290542,-0.002915,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000174,0.000146,0.000196,0.000000,0.000000,0.001417,0.287667,-0.002876,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000171,0.000144,0.000194,0.000104,0.000104,0.001389,0.284727,-0.002939,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000168,0.000142,0.000191,0.000325,0.000325,0.001363,0.281609,-0.003119,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000165,0.000139,0.000189,0.000486,0.000486,0.001338,0.278373,-0.003235,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000162,0.000137,0.000187,0.000623,0.000623,0.001313,0.275046,-0.003328,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000088,0.000000,0.000000,0.000000,0.000027,0.000159,0.000135,0.000186,0.000729,0.000729,0.001289,0.271745,-0.003301,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000156,0.000132,0.000184,0.000654,0.000654,0.001266,0.268476,-0.003269,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000153,0.000130,0.000182,0.000546,0.000546,0.001244,0.265356,-0.003119,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000150,0.000128,0.000181,0.000485,0.000485,0.001222,0.262340,-0.003017,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000147,0.000126,0.000179,0.000395,0.000395,0.001201,0.259452,-0.002888,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000145,0.000124,0.000178,0.000301,0.000301,0.001180,0.256695,-0.002757,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000142,0.000123,0.000177,0.000165,0.000165,0.001160,0.254110,-0.002585,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000140,0.000121,0.000175,0.000024,0.000024,0.001141,0.251698,-0.002411,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000138,0.000119,0.000174,0.000000,0.000000,0.001123,0.249343,-0.002356,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000136,0.000118,0.000173,0.000000,0.000000,0.001105,0.247019,-0.002324,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000133,0.000116,0.000173,0.000000,0.000000,0.001088,0.244726,-0.002293,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000131,0.000115,0.000172,0.000000,0.000000,0.001071,0.242463,-0.002262,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000129,0.000113,0.000171,0.000000,0.000000,0.001055,0.240231,-0.002232,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000127,0.000112,0.000170,0.000000,0.000000,0.001039,0.238029,-0.002202,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000125,0.000110,0.000170,0.000000,0.000000,0.001024,0.235856,-0.002173,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000124,0.000109,0.000169,0.000000,0.000000,0.001009,0.233713,-0.002144,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000122,0.000107,0.000169,0.000000,0.000000,0.000994,0.231598,-0.002115,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000120,0.000106,0.000168,0.000000,0.000000,0.000980,0.229511,-0.002087,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000118,0.000104,0.000168,0.000000,0.000000,0.000966,0.227452,-0.002059,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000117,0.000103,0.000168,0.000000,0.000000,0.000952,0.225421,-0.002031,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000115,0.000101,0.000167,0.000118,0.000118,0.000939,0.223301,-0.002120,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000113,0.000100,0.000167,0.000353,0.000353,0.000925,0.220977,-0.002323,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000112,0.000098,0.000167,0.000521,0.000521,0.000912,0.218519,-0.002458,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000110,0.000096,0.000166,0.000659,0.000659,0.000899,0.215957,-0.002562,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000108,0.000095,0.000166,0.000671,0.000671,0.000885,0.213418,-0.002539,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000107,0.000093,0.000166,0.000611,0.000611,0.000871,0.210972,-0.002446,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000268,0.000000,0.000000,0.000000,0.000061,0.000105,0.000092,0.000166,0.000499,0.000499,0.000858,0.208934,-0.002038,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000038,0.000000,0.000000,0.000000,0.000062,0.000103,0.000090,0.000165,0.000431,0.000431,0.000845,0.206763,-0.002171,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000014,0.000000,0.000000,0.000000,0.000064,0.000102,0.000089,0.000165,0.000356,0.000356,0.000832,0.204672,-0.002091,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000100,0.000087,0.000165,0.000261,0.000261,0.000819,0.202688,-0.001983,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000099,0.000086,0.000165,0.000152,0.000152,0.000807,0.200839,-0.001850,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000097,0.000085,0.000165,0.000034,0.000034,0.000794,0.199130,-0.001708,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000096,0.000084,0.000165,0.000000,0.000000,0.000782,0.197478,-0.001652,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000094,0.000083,0.000165,0.000000,0.000000,0.000771,0.195848,-0.001630,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000093,0.000081,0.000165,0.000000,0.000000,0.000760,0.194240,-0.001608,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000021,0.000000,0.000000,0.000000,0.000074,0.000091,0.000080,0.000165,0.000000,0.000000,0.000749,0.192674,-0.001566,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000090,0.000079,0.000165,0.000000,0.000000,0.000738,0.191109,-0.001566,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000089,0.000078,0.000166,0.000000,0.000000,0.000727,0.189564,-0.001545,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000087,0.000077,0.000166,0.000000,0.000000,0.000717,0.188040,-0.001524,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000086,0.000076,0.000166,0.000000,0.000000,0.000707,0.186537,-0.001504,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000085,0.000075,0.000166,0.000000,0.000000,0.000697,0.185053,-0.001483,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000084,0.000074,0.000167,0.000000,0.000000,0.000687,0.183590,-0.001464,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000083,0.000073,0.000167,0.000000,0.000000,0.000678,0.182146,-0.001444,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000082,0.000072,0.000167,0.000000,0.000000,0.000669,0.180721,-0.001425,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000080,0.000071,0.000168,0.000116,0.000116,0.000659,0.179201,-0.001520,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000079,0.000070,0.000168,0.000352,0.000352,0.000650,0.177469,-0.001732,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000078,0.000069,0.000168,0.000520,0.000520,0.000641,0.175595,-0.001875,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000077,0.000067,0.000169,0.000657,0.000657,0.000631,0.173609,-0.001985,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000076,0.000066,0.000169,0.000687,0.000687,0.000621,0.171621,-0.001988,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000074,0.000065,0.000169,0.000663,0.000663,0.000611,0.169684,-0.001937,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000073,0.000063,0.000169,0.000570,0.000570,0.000601,0.167863,-0.001821,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000072,0.000062,0.000170,0.000471,0.000471,0.000592,0.166165,-0.001699,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000071,0.000061,0.000170,0.000383,0.000383,0.000582,0.164576,-0.001589,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000164,0.000000,0.000000,0.000000,0.000101,0.000070,0.000060,0.000170,0.000299,0.000299,0.000572,0.163254,-0.001322,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000269,0.000001,0.000002,0.000001,0.000102,0.000069,0.000059,0.000172,0.000177,0.000177,0.000563,0.162171,-0.001082,1.000000,0.000001 +97,2022-08-05 01:00:00,0.000181,0.000003,0.000004,0.000003,0.000104,0.000067,0.000059,0.000174,0.000044,0.000044,0.000554,0.161146,-0.001026,1.000000,0.000002 +98,2022-08-05 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000105,0.000066,0.000058,0.000173,0.000000,0.000000,0.000546,0.160002,-0.001143,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000000,0.000001,0.000000,0.000001,0.000107,0.000065,0.000057,0.000173,0.000000,0.000000,0.000538,0.158874,-0.001128,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000064,0.000056,0.000173,0.000000,0.000000,0.000530,0.157761,-0.001113,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000063,0.000056,0.000173,0.000000,0.000000,0.000522,0.156663,-0.001098,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000063,0.000055,0.000174,0.000000,0.000000,0.000514,0.155579,-0.001083,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000062,0.000054,0.000174,0.000000,0.000000,0.000507,0.154510,-0.001069,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000061,0.000053,0.000175,0.000000,0.000000,0.000499,0.153456,-0.001055,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000060,0.000053,0.000176,0.000000,0.000000,0.000492,0.152415,-0.001041,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000059,0.000052,0.000176,0.000000,0.000000,0.000485,0.151389,-0.001027,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000058,0.000051,0.000177,0.000000,0.000000,0.000478,0.150376,-0.001013,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000057,0.000051,0.000178,0.000000,0.000000,0.000472,0.149376,-0.000999,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000057,0.000050,0.000178,0.000000,0.000000,0.000465,0.148391,-0.000986,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000056,0.000049,0.000179,0.000127,0.000127,0.000458,0.147293,-0.001098,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000055,0.000048,0.000180,0.000355,0.000355,0.000452,0.145984,-0.001309,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000054,0.000047,0.000180,0.000525,0.000525,0.000445,0.144526,-0.001458,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000053,0.000046,0.000181,0.000667,0.000667,0.000438,0.142947,-0.001579,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000052,0.000045,0.000182,0.000683,0.000683,0.000431,0.141373,-0.001574,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000016,0.000000,0.000000,0.000000,0.000131,0.000051,0.000044,0.000182,0.000610,0.000610,0.000423,0.139908,-0.001465,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000187,0.000000,0.000000,0.000000,0.000132,0.000051,0.000043,0.000183,0.000518,0.000518,0.000416,0.138723,-0.001185,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000196,0.000000,0.000000,0.000000,0.000134,0.000050,0.000043,0.000183,0.000418,0.000418,0.000409,0.137661,-0.001062,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000135,0.000049,0.000042,0.000184,0.000343,0.000343,0.000402,0.136536,-0.001125,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000038,0.000000,0.000000,0.000000,0.000137,0.000048,0.000041,0.000185,0.000269,0.000269,0.000395,0.135493,-0.001043,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000193,0.000000,0.000000,0.000000,0.000138,0.000047,0.000041,0.000186,0.000164,0.000164,0.000388,0.134722,-0.000771,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000442,0.000016,0.000029,0.000016,0.000140,0.000046,0.000040,0.000202,0.000056,0.000056,0.000382,0.134285,-0.000437,1.000000,0.000013 +122,2022-08-06 02:00:00,0.000147,0.000010,0.000004,0.000010,0.000141,0.000046,0.000040,0.000196,0.000000,0.000000,0.000376,0.133643,-0.000643,1.000000,0.000008 +123,2022-08-06 03:00:00,0.000493,0.000032,0.000046,0.000032,0.000143,0.000045,0.000040,0.000220,0.000000,0.000000,0.000371,0.133309,-0.000334,1.000000,0.000021 +124,2022-08-06 04:00:00,0.000123,0.000014,0.000003,0.000014,0.000144,0.000044,0.000039,0.000202,0.000000,0.000000,0.000366,0.132656,-0.000653,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000157,0.000013,0.000005,0.000013,0.000146,0.000044,0.000039,0.000202,0.000000,0.000000,0.000361,0.132044,-0.000612,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000138,0.000004,0.000004,0.000004,0.000147,0.000043,0.000038,0.000194,0.000000,0.000000,0.000356,0.131423,-0.000621,1.000000,0.000003 +127,2022-08-06 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000148,0.000043,0.000038,0.000193,0.000000,0.000000,0.000351,0.130677,-0.000746,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000150,0.000042,0.000037,0.000193,0.000000,0.000000,0.000346,0.129942,-0.000736,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000041,0.000037,0.000193,0.000000,0.000000,0.000341,0.129216,-0.000726,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000041,0.000036,0.000194,0.000000,0.000000,0.000337,0.128500,-0.000716,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000040,0.000036,0.000195,0.000000,0.000000,0.000332,0.127793,-0.000706,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000040,0.000035,0.000195,0.000000,0.000000,0.000328,0.127096,-0.000697,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000039,0.000035,0.000196,0.000000,0.000000,0.000323,0.126409,-0.000688,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000039,0.000034,0.000197,0.000110,0.000110,0.000319,0.125622,-0.000787,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000038,0.000034,0.000198,0.000335,0.000335,0.000314,0.124624,-0.000998,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000038,0.000033,0.000199,0.000507,0.000507,0.000310,0.123469,-0.001155,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000037,0.000032,0.000200,0.000646,0.000646,0.000305,0.122193,-0.001276,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000036,0.000031,0.000201,0.000727,0.000727,0.000299,0.120854,-0.001339,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000030,0.000201,0.000667,0.000667,0.000294,0.119592,-0.001262,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000035,0.000029,0.000202,0.000574,0.000574,0.000288,0.118439,-0.001153,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000034,0.000029,0.000203,0.000481,0.000481,0.000283,0.117393,-0.001047,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000034,0.000028,0.000203,0.000394,0.000394,0.000277,0.116446,-0.000946,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000033,0.000027,0.000204,0.000299,0.000299,0.000272,0.115606,-0.000840,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000032,0.000027,0.000205,0.000159,0.000159,0.000266,0.114916,-0.000691,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000032,0.000027,0.000206,0.000034,0.000034,0.000261,0.114357,-0.000558,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000031,0.000026,0.000206,0.000000,0.000000,0.000256,0.113840,-0.000517,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000030,0.000026,0.000207,0.000000,0.000000,0.000252,0.113330,-0.000510,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000030,0.000025,0.000208,0.000000,0.000000,0.000247,0.112826,-0.000503,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000029,0.000025,0.000209,0.000000,0.000000,0.000243,0.112330,-0.000497,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000029,0.000025,0.000210,0.000000,0.000000,0.000239,0.111840,-0.000490,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000028,0.000024,0.000211,0.000000,0.000000,0.000235,0.111356,-0.000483,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000028,0.000024,0.000211,0.000000,0.000000,0.000231,0.110879,-0.000477,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000028,0.000024,0.000212,0.000000,0.000000,0.000227,0.110409,-0.000471,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000027,0.000024,0.000213,0.000000,0.000000,0.000224,0.109945,-0.000464,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000027,0.000023,0.000214,0.000000,0.000000,0.000220,0.109487,-0.000458,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000026,0.000023,0.000215,0.000000,0.000000,0.000217,0.109035,-0.000452,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000026,0.000023,0.000216,0.000000,0.000000,0.000214,0.108589,-0.000446,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000025,0.000022,0.000217,0.000105,0.000105,0.000210,0.108045,-0.000543,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000025,0.000022,0.000218,0.000330,0.000330,0.000207,0.107287,-0.000759,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000025,0.000021,0.000219,0.000503,0.000503,0.000203,0.106368,-0.000918,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000024,0.000020,0.000219,0.000642,0.000642,0.000199,0.105325,-0.001043,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000024,0.000020,0.000220,0.000728,0.000728,0.000195,0.104210,-0.001114,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000023,0.000019,0.000221,0.000666,0.000666,0.000191,0.103172,-0.001039,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000018,0.000222,0.000561,0.000561,0.000187,0.102251,-0.000920,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000018,0.000222,0.000481,0.000481,0.000182,0.101422,-0.000829,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000022,0.000017,0.000223,0.000394,0.000394,0.000178,0.100689,-0.000733,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000021,0.000017,0.000224,0.000298,0.000298,0.000174,0.100061,-0.000628,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000016,0.000225,0.000138,0.000138,0.000169,0.099599,-0.000462,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000020,0.000016,0.000225,0.000005,0.000005,0.000166,0.099274,-0.000325,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000016,0.000226,0.000000,0.000000,0.000162,0.098959,-0.000315,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000227,0.000000,0.000000,0.000159,0.098648,-0.000311,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000016,0.000228,0.000000,0.000000,0.000155,0.098341,-0.000307,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000015,0.000229,0.000000,0.000000,0.000152,0.098039,-0.000303,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000018,0.000015,0.000229,0.000000,0.000000,0.000149,0.097740,-0.000299,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000018,0.000015,0.000230,0.000000,0.000000,0.000146,0.097445,-0.000295,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000015,0.000231,0.000000,0.000000,0.000144,0.097155,-0.000291,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000015,0.000232,0.000000,0.000000,0.000141,0.096868,-0.000287,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000017,0.000014,0.000233,0.000000,0.000000,0.000139,0.096585,-0.000283,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000014,0.000234,0.000000,0.000000,0.000136,0.096306,-0.000279,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000014,0.000235,0.000000,0.000000,0.000134,0.096030,-0.000275,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000016,0.000014,0.000236,0.000000,0.000000,0.000132,0.095758,-0.000272,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000016,0.000014,0.000237,0.000090,0.000000,0.000130,0.095490,-0.000268,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000015,0.000013,0.000237,0.000316,0.000000,0.000128,0.095226,-0.000265,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000015,0.000013,0.000238,0.000492,0.000000,0.000126,0.094965,-0.000261,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000015,0.000013,0.000239,0.000622,0.000000,0.000124,0.094707,-0.000258,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000015,0.000013,0.000240,0.000723,0.000000,0.000122,0.094453,-0.000254,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000015,0.000013,0.000241,0.000647,0.000000,0.000120,0.094202,-0.000251,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000014,0.000013,0.000242,0.000548,0.000000,0.000118,0.093955,-0.000247,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000243,0.000483,0.000000,0.000117,0.093711,-0.000244,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000012,0.000244,0.000390,0.000000,0.000115,0.093470,-0.000241,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000012,0.000245,0.000298,0.000000,0.000113,0.093233,-0.000238,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000012,0.000245,0.000168,0.000000,0.000112,0.092998,-0.000234,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000012,0.000246,0.000031,0.000000,0.000110,0.092767,-0.000231,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000183,0.000003,0.000006,0.000003,0.000234,0.000013,0.000012,0.000251,0.000000,0.000000,0.000109,0.092714,-0.000053,1.000000,0.000003 +195,2022-08-09 03:00:00,0.000045,0.000002,0.000000,0.000002,0.000235,0.000013,0.000012,0.000250,0.000000,0.000000,0.000107,0.092531,-0.000183,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000236,0.000013,0.000011,0.000250,0.000000,0.000000,0.000106,0.092306,-0.000225,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000104,0.092084,-0.000222,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000251,0.000000,0.000000,0.000103,0.091865,-0.000219,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000252,0.000000,0.000000,0.000102,0.091649,-0.000216,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000253,0.000000,0.000000,0.000100,0.091436,-0.000213,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000011,0.000253,0.000000,0.000000,0.000099,0.091226,-0.000210,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000011,0.000254,0.000000,0.000000,0.000098,0.091018,-0.000207,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000010,0.000255,0.000000,0.000000,0.000096,0.090813,-0.000205,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000012,0.000010,0.000256,0.000000,0.000000,0.000095,0.090612,-0.000202,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000011,0.000010,0.000257,0.000000,0.000000,0.000094,0.090412,-0.000199,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000258,0.000101,0.000000,0.000093,0.090216,-0.000197,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620875.csv b/test/channel_loss/channel_forcing/et/cat-2620875.csv new file mode 100644 index 000000000..b3aa28c34 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620875.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000228,0.000000,0.000001,0.000000,0.000000,0.001465,0.000325,0.001466,0.000170,0.000170,0.010456,0.432493,-0.004546,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000040,0.000000,0.000000,0.000000,0.000000,0.001308,0.000321,0.001308,0.000046,0.000046,0.009469,0.427949,-0.004545,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000040,0.000000,0.000000,0.000000,0.000000,0.001174,0.000316,0.001175,0.000000,0.000000,0.008611,0.423513,-0.004435,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000040,0.000000,0.000000,0.000000,0.000000,0.001061,0.000312,0.001061,0.000000,0.000000,0.007863,0.419140,-0.004373,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000040,0.000000,0.000000,0.000000,0.000000,0.000963,0.000307,0.000964,0.000000,0.000000,0.007207,0.414829,-0.004311,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000040,0.000000,0.000000,0.000000,0.000000,0.000879,0.000303,0.000879,0.000000,0.000000,0.006632,0.410578,-0.004251,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000040,0.000000,0.000000,0.000000,0.000001,0.000806,0.000299,0.000807,0.000000,0.000000,0.006125,0.406388,-0.004191,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000742,0.000295,0.000743,0.000000,0.000000,0.005677,0.402216,-0.004171,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000687,0.000291,0.000688,0.000000,0.000000,0.005281,0.398104,-0.004112,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000638,0.000286,0.000639,0.000000,0.000000,0.004930,0.394050,-0.004054,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000595,0.000282,0.000596,0.000000,0.000000,0.004618,0.390052,-0.003997,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000557,0.000278,0.000559,0.000000,0.000000,0.004340,0.386111,-0.003941,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000523,0.000275,0.000525,0.000000,0.000000,0.004091,0.382226,-0.003885,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000493,0.000271,0.000496,0.000000,0.000000,0.003869,0.378395,-0.003831,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000466,0.000267,0.000470,0.000122,0.000122,0.003670,0.374498,-0.003897,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000442,0.000263,0.000446,0.000353,0.000353,0.003490,0.370428,-0.004070,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000421,0.000258,0.000425,0.000527,0.000527,0.003327,0.366244,-0.004184,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000401,0.000254,0.000406,0.000660,0.000660,0.003180,0.361988,-0.004256,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000384,0.000250,0.000389,0.000632,0.000632,0.003046,0.357819,-0.004168,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000091,0.000000,0.000000,0.000000,0.000006,0.000368,0.000246,0.000374,0.000576,0.000576,0.002924,0.353854,-0.003966,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000142,0.000000,0.000000,0.000000,0.000006,0.000353,0.000242,0.000360,0.000481,0.000481,0.002813,0.350088,-0.003766,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000459,0.000001,0.000002,0.000001,0.000007,0.000340,0.000239,0.000348,0.000366,0.000366,0.002712,0.346800,-0.003287,1.000000,0.000001 +22,2022-08-01 22:00:00,0.000142,0.000000,0.000000,0.000000,0.000008,0.000328,0.000235,0.000336,0.000291,0.000291,0.002619,0.343322,-0.003478,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000142,0.000000,0.000000,0.000000,0.000008,0.000317,0.000232,0.000326,0.000232,0.000232,0.002534,0.339951,-0.003371,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001239,0.000099,0.000180,0.000099,0.000009,0.000307,0.000230,0.000415,0.000138,0.000138,0.002457,0.337623,-0.002328,1.000000,0.000081 +25,2022-08-02 01:00:00,0.000759,0.000089,0.000079,0.000089,0.000010,0.000298,0.000227,0.000396,0.000050,0.000050,0.002386,0.335042,-0.002581,1.000000,0.000072 +26,2022-08-02 02:00:00,0.000424,0.000072,0.000029,0.000072,0.000011,0.000289,0.000224,0.000372,0.000000,0.000000,0.002321,0.332265,-0.002777,1.000000,0.000029 +27,2022-08-02 03:00:00,0.000374,0.000036,0.000023,0.000036,0.000011,0.000282,0.000221,0.000329,0.000000,0.000000,0.002260,0.329484,-0.002781,1.000000,0.000016 +28,2022-08-02 04:00:00,0.000371,0.000024,0.000023,0.000024,0.000012,0.000274,0.000219,0.000311,0.000000,0.000000,0.002204,0.326740,-0.002744,1.000000,0.000015 +29,2022-08-02 05:00:00,0.000318,0.000019,0.000017,0.000019,0.000013,0.000268,0.000216,0.000300,0.000000,0.000000,0.002152,0.323987,-0.002752,1.000000,0.000012 +30,2022-08-02 06:00:00,0.000340,0.000019,0.000019,0.000019,0.000014,0.000262,0.000213,0.000294,0.000000,0.000000,0.002104,0.321294,-0.002694,1.000000,0.000012 +31,2022-08-02 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000015,0.000256,0.000210,0.000279,0.000000,0.000000,0.002058,0.318321,-0.002972,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000016,0.000250,0.000207,0.000270,0.000000,0.000000,0.002015,0.315391,-0.002930,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000245,0.000204,0.000262,0.000000,0.000000,0.001974,0.312502,-0.002889,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000240,0.000201,0.000258,0.000000,0.000000,0.001935,0.309653,-0.002848,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000235,0.000198,0.000254,0.000000,0.000000,0.001898,0.306845,-0.002808,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000231,0.000196,0.000250,0.000000,0.000000,0.001863,0.304076,-0.002769,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000227,0.000193,0.000247,0.000000,0.000000,0.001829,0.301347,-0.002730,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000222,0.000190,0.000244,0.000099,0.000099,0.001797,0.298558,-0.002789,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000218,0.000187,0.000241,0.000340,0.000340,0.001765,0.295570,-0.002988,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000215,0.000184,0.000238,0.000503,0.000503,0.001735,0.292464,-0.003106,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000211,0.000181,0.000235,0.000639,0.000639,0.001705,0.289268,-0.003196,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000140,0.000000,0.000000,0.000000,0.000025,0.000207,0.000178,0.000232,0.000738,0.000738,0.001675,0.286158,-0.003111,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000203,0.000174,0.000230,0.000669,0.000669,0.001646,0.283020,-0.003137,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000200,0.000171,0.000227,0.000556,0.000556,0.001618,0.280039,-0.002981,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000196,0.000168,0.000225,0.000499,0.000499,0.001590,0.277156,-0.002883,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000193,0.000166,0.000223,0.000405,0.000405,0.001563,0.274407,-0.002749,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000190,0.000163,0.000220,0.000307,0.000307,0.001536,0.271793,-0.002614,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000186,0.000161,0.000218,0.000169,0.000169,0.001510,0.269352,-0.002441,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000183,0.000158,0.000216,0.000024,0.000024,0.001486,0.267087,-0.002265,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000180,0.000156,0.000214,0.000000,0.000000,0.001462,0.264878,-0.002209,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000177,0.000154,0.000213,0.000000,0.000000,0.001438,0.262701,-0.002177,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000174,0.000152,0.000211,0.000000,0.000000,0.001416,0.260554,-0.002147,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000172,0.000150,0.000209,0.000000,0.000000,0.001394,0.258438,-0.002117,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000169,0.000147,0.000208,0.000000,0.000000,0.001372,0.256351,-0.002087,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000166,0.000145,0.000207,0.000000,0.000000,0.001351,0.254294,-0.002057,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000164,0.000143,0.000205,0.000000,0.000000,0.001331,0.252265,-0.002028,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000161,0.000141,0.000204,0.000000,0.000000,0.001311,0.250266,-0.002000,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000159,0.000139,0.000203,0.000000,0.000000,0.001291,0.248294,-0.001972,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000156,0.000137,0.000202,0.000000,0.000000,0.001272,0.246350,-0.001944,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000047,0.000154,0.000135,0.000201,0.000000,0.000000,0.001254,0.244434,-0.001916,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000152,0.000134,0.000200,0.000000,0.000000,0.001235,0.242545,-0.001889,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000150,0.000132,0.000199,0.000122,0.000122,0.001217,0.240562,-0.001983,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000147,0.000129,0.000198,0.000368,0.000368,0.001199,0.238364,-0.002198,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000145,0.000127,0.000197,0.000539,0.000539,0.001181,0.236029,-0.002335,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000143,0.000124,0.000196,0.000676,0.000676,0.001163,0.233591,-0.002437,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000140,0.000122,0.000195,0.000680,0.000680,0.001145,0.231184,-0.002407,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000138,0.000120,0.000194,0.000600,0.000600,0.001126,0.228890,-0.002295,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000233,0.000000,0.000000,0.000000,0.000057,0.000136,0.000118,0.000193,0.000514,0.000514,0.001108,0.226942,-0.001947,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000059,0.000000,0.000000,0.000000,0.000058,0.000134,0.000116,0.000192,0.000457,0.000457,0.001090,0.224907,-0.002035,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000486,0.000001,0.000002,0.000001,0.000060,0.000132,0.000114,0.000192,0.000365,0.000365,0.001073,0.223410,-0.001497,1.000000,0.000001 +71,2022-08-03 23:00:00,0.000141,0.000001,0.000000,0.000001,0.000061,0.000129,0.000112,0.000191,0.000269,0.000269,0.001056,0.221691,-0.001719,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000127,0.000111,0.000190,0.000149,0.000149,0.001039,0.219975,-0.001716,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000125,0.000109,0.000189,0.000034,0.000034,0.001023,0.218397,-0.001578,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000123,0.000108,0.000188,0.000000,0.000000,0.001007,0.216874,-0.001523,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000121,0.000106,0.000188,0.000000,0.000000,0.000992,0.215373,-0.001501,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000120,0.000105,0.000187,0.000000,0.000000,0.000977,0.213893,-0.001480,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000040,0.000000,0.000000,0.000000,0.000069,0.000118,0.000103,0.000187,0.000000,0.000000,0.000962,0.212474,-0.001420,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000116,0.000102,0.000186,0.000000,0.000000,0.000948,0.211034,-0.001439,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000114,0.000100,0.000186,0.000000,0.000000,0.000934,0.209616,-0.001419,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000113,0.000099,0.000186,0.000000,0.000000,0.000920,0.208217,-0.001399,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000074,0.000111,0.000097,0.000185,0.000000,0.000000,0.000907,0.206838,-0.001379,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000076,0.000109,0.000096,0.000185,0.000000,0.000000,0.000893,0.205480,-0.001358,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000077,0.000108,0.000095,0.000185,0.000000,0.000000,0.000881,0.204140,-0.001339,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000106,0.000093,0.000185,0.000000,0.000000,0.000868,0.202819,-0.001321,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000105,0.000092,0.000185,0.000000,0.000000,0.000855,0.201516,-0.001303,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000103,0.000091,0.000184,0.000120,0.000120,0.000843,0.200113,-0.001403,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000101,0.000089,0.000184,0.000368,0.000368,0.000831,0.198485,-0.001628,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000100,0.000087,0.000184,0.000538,0.000538,0.000818,0.196713,-0.001772,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000098,0.000085,0.000184,0.000674,0.000674,0.000805,0.194831,-0.001881,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000097,0.000083,0.000184,0.000693,0.000693,0.000792,0.192957,-0.001874,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000091,0.000000,0.000000,0.000000,0.000088,0.000095,0.000082,0.000183,0.000671,0.000671,0.000778,0.191221,-0.001737,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000040,0.000000,0.000000,0.000000,0.000090,0.000093,0.000080,0.000183,0.000588,0.000588,0.000765,0.189541,-0.001679,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000092,0.000078,0.000183,0.000468,0.000468,0.000752,0.187964,-0.001577,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000090,0.000077,0.000183,0.000380,0.000380,0.000738,0.186495,-0.001469,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000096,0.000000,0.000000,0.000000,0.000094,0.000089,0.000076,0.000182,0.000292,0.000292,0.000725,0.185229,-0.001266,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000282,0.000001,0.000001,0.000001,0.000095,0.000087,0.000075,0.000183,0.000178,0.000178,0.000713,0.184276,-0.000954,1.000000,0.000001 +97,2022-08-05 01:00:00,0.000411,0.000010,0.000017,0.000010,0.000097,0.000086,0.000074,0.000192,0.000047,0.000047,0.000702,0.183575,-0.000701,1.000000,0.000008 +98,2022-08-05 02:00:00,0.000087,0.000005,0.000001,0.000005,0.000098,0.000084,0.000073,0.000187,0.000000,0.000000,0.000690,0.182628,-0.000948,1.000000,0.000004 +99,2022-08-05 03:00:00,0.000068,0.000004,0.000001,0.000004,0.000099,0.000083,0.000072,0.000186,0.000000,0.000000,0.000680,0.181675,-0.000952,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000068,0.000001,0.000001,0.000001,0.000101,0.000082,0.000071,0.000183,0.000000,0.000000,0.000669,0.180737,-0.000939,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000068,0.000001,0.000001,0.000001,0.000102,0.000080,0.000070,0.000183,0.000000,0.000000,0.000659,0.179811,-0.000926,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000068,0.000001,0.000001,0.000001,0.000104,0.000079,0.000069,0.000183,0.000000,0.000000,0.000649,0.178899,-0.000913,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000078,0.000068,0.000183,0.000000,0.000000,0.000639,0.177932,-0.000966,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000077,0.000067,0.000183,0.000000,0.000000,0.000630,0.176980,-0.000953,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000076,0.000066,0.000183,0.000000,0.000000,0.000621,0.176041,-0.000939,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000075,0.000065,0.000184,0.000000,0.000000,0.000612,0.175115,-0.000926,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000073,0.000064,0.000184,0.000000,0.000000,0.000603,0.174202,-0.000913,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000072,0.000064,0.000184,0.000000,0.000000,0.000594,0.173302,-0.000900,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000071,0.000063,0.000185,0.000000,0.000000,0.000585,0.172415,-0.000887,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000070,0.000062,0.000185,0.000128,0.000128,0.000577,0.171414,-0.001001,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000069,0.000060,0.000185,0.000366,0.000366,0.000568,0.170192,-0.001222,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000068,0.000059,0.000186,0.000537,0.000537,0.000559,0.168819,-0.001373,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000067,0.000058,0.000186,0.000680,0.000680,0.000550,0.167324,-0.001495,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000066,0.000056,0.000186,0.000666,0.000666,0.000540,0.165864,-0.001460,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000040,0.000000,0.000000,0.000000,0.000122,0.000065,0.000055,0.000186,0.000593,0.000593,0.000530,0.164537,-0.001327,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000169,0.000000,0.000000,0.000000,0.000123,0.000063,0.000054,0.000186,0.000506,0.000506,0.000521,0.163441,-0.001096,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000200,0.000000,0.000000,0.000000,0.000124,0.000062,0.000053,0.000187,0.000420,0.000420,0.000511,0.162476,-0.000965,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000091,0.000000,0.000000,0.000000,0.000126,0.000061,0.000052,0.000187,0.000338,0.000338,0.000502,0.161497,-0.000979,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000091,0.000000,0.000000,0.000000,0.000127,0.000060,0.000051,0.000187,0.000262,0.000262,0.000493,0.160607,-0.000890,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000356,0.000003,0.000005,0.000003,0.000128,0.000059,0.000050,0.000190,0.000166,0.000166,0.000484,0.160081,-0.000526,1.000000,0.000002 +121,2022-08-06 01:00:00,0.000700,0.000029,0.000051,0.000029,0.000130,0.000058,0.000050,0.000217,0.000054,0.000054,0.000476,0.159967,-0.000115,1.000000,0.000024 +122,2022-08-06 02:00:00,0.000320,0.000021,0.000013,0.000021,0.000131,0.000057,0.000050,0.000209,0.000000,0.000000,0.000469,0.159570,-0.000397,1.000000,0.000016 +123,2022-08-06 03:00:00,0.000384,0.000024,0.000019,0.000024,0.000132,0.000056,0.000049,0.000212,0.000000,0.000000,0.000462,0.159236,-0.000334,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000228,0.000011,0.000007,0.000011,0.000134,0.000055,0.000049,0.000200,0.000000,0.000000,0.000456,0.158765,-0.000471,1.000000,0.000007 +125,2022-08-06 05:00:00,0.000227,0.000009,0.000007,0.000009,0.000135,0.000055,0.000048,0.000199,0.000000,0.000000,0.000449,0.158300,-0.000465,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000211,0.000006,0.000006,0.000006,0.000136,0.000054,0.000048,0.000197,0.000000,0.000000,0.000443,0.157827,-0.000474,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000138,0.000053,0.000047,0.000194,0.000000,0.000000,0.000438,0.157158,-0.000669,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000139,0.000052,0.000047,0.000193,0.000000,0.000000,0.000432,0.156498,-0.000660,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000052,0.000046,0.000192,0.000000,0.000000,0.000426,0.155847,-0.000651,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000051,0.000045,0.000193,0.000000,0.000000,0.000420,0.155206,-0.000641,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000050,0.000045,0.000193,0.000000,0.000000,0.000415,0.154574,-0.000632,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000144,0.000050,0.000044,0.000194,0.000000,0.000000,0.000409,0.153951,-0.000623,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000049,0.000043,0.000195,0.000000,0.000000,0.000403,0.153336,-0.000615,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000048,0.000043,0.000195,0.000112,0.000112,0.000398,0.152620,-0.000717,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000048,0.000042,0.000196,0.000351,0.000351,0.000392,0.151678,-0.000942,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000047,0.000041,0.000196,0.000527,0.000527,0.000386,0.150576,-0.001102,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000046,0.000039,0.000197,0.000664,0.000664,0.000379,0.149355,-0.001222,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000045,0.000038,0.000197,0.000728,0.000728,0.000372,0.148087,-0.001268,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000044,0.000037,0.000198,0.000665,0.000665,0.000365,0.146899,-0.001187,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000043,0.000036,0.000198,0.000578,0.000578,0.000357,0.145814,-0.001085,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000042,0.000035,0.000198,0.000472,0.000472,0.000350,0.144849,-0.000966,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000042,0.000034,0.000199,0.000380,0.000380,0.000342,0.143987,-0.000861,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000041,0.000033,0.000199,0.000290,0.000290,0.000335,0.143227,-0.000760,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000040,0.000033,0.000200,0.000151,0.000151,0.000328,0.142614,-0.000612,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000039,0.000032,0.000200,0.000034,0.000034,0.000321,0.142126,-0.000488,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000038,0.000032,0.000200,0.000000,0.000000,0.000314,0.141678,-0.000448,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000031,0.000201,0.000000,0.000000,0.000308,0.141236,-0.000442,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000037,0.000031,0.000202,0.000000,0.000000,0.000302,0.140801,-0.000436,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000036,0.000030,0.000202,0.000000,0.000000,0.000297,0.140372,-0.000429,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000035,0.000030,0.000203,0.000000,0.000000,0.000291,0.139948,-0.000423,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000035,0.000029,0.000203,0.000000,0.000000,0.000286,0.139531,-0.000417,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000034,0.000029,0.000204,0.000000,0.000000,0.000281,0.139119,-0.000411,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000033,0.000029,0.000204,0.000000,0.000000,0.000276,0.138714,-0.000406,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000033,0.000028,0.000205,0.000000,0.000000,0.000271,0.138314,-0.000400,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000032,0.000028,0.000206,0.000000,0.000000,0.000267,0.137919,-0.000394,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000175,0.000032,0.000027,0.000206,0.000000,0.000000,0.000263,0.137532,-0.000387,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000031,0.000027,0.000207,0.000000,0.000000,0.000258,0.137149,-0.000383,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000031,0.000027,0.000208,0.000109,0.000109,0.000254,0.136664,-0.000485,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000030,0.000026,0.000208,0.000346,0.000346,0.000250,0.135951,-0.000712,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000030,0.000025,0.000209,0.000520,0.000520,0.000245,0.135078,-0.000874,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000029,0.000024,0.000210,0.000658,0.000658,0.000240,0.134080,-0.000997,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000028,0.000023,0.000210,0.000729,0.000729,0.000234,0.133027,-0.001053,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000028,0.000022,0.000211,0.000664,0.000664,0.000229,0.132053,-0.000974,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000027,0.000021,0.000211,0.000562,0.000562,0.000223,0.131193,-0.000860,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000026,0.000020,0.000211,0.000479,0.000479,0.000217,0.130426,-0.000767,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000026,0.000020,0.000212,0.000391,0.000391,0.000211,0.129757,-0.000669,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000025,0.000019,0.000212,0.000299,0.000299,0.000205,0.129189,-0.000568,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000024,0.000019,0.000213,0.000143,0.000143,0.000200,0.128782,-0.000406,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000024,0.000000,0.000000,0.000000,0.000190,0.000024,0.000018,0.000213,0.000004,0.000004,0.000194,0.128543,-0.000240,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000182,0.000002,0.000004,0.000002,0.000191,0.000023,0.000018,0.000216,0.000000,0.000000,0.000190,0.128461,-0.000082,1.000000,0.000002 +171,2022-08-08 03:00:00,0.000024,0.000001,0.000000,0.000001,0.000192,0.000022,0.000018,0.000215,0.000000,0.000000,0.000185,0.128229,-0.000232,1.000000,0.000001 +172,2022-08-08 04:00:00,0.000024,0.000001,0.000000,0.000001,0.000193,0.000022,0.000018,0.000216,0.000000,0.000000,0.000181,0.128001,-0.000228,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000024,0.000000,0.000000,0.000000,0.000194,0.000021,0.000018,0.000216,0.000000,0.000000,0.000177,0.127776,-0.000225,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000027,0.000000,0.000000,0.000000,0.000195,0.000021,0.000017,0.000216,0.000000,0.000000,0.000174,0.127557,-0.000219,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000021,0.000017,0.000217,0.000000,0.000000,0.000170,0.127314,-0.000243,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000020,0.000017,0.000218,0.000000,0.000000,0.000167,0.127074,-0.000239,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000004,0.000000,0.000000,0.000000,0.000198,0.000020,0.000017,0.000218,0.000000,0.000000,0.000164,0.126842,-0.000232,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000199,0.000019,0.000016,0.000219,0.000000,0.000000,0.000161,0.126611,-0.000232,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000200,0.000019,0.000016,0.000220,0.000000,0.000000,0.000158,0.126382,-0.000228,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000202,0.000019,0.000016,0.000220,0.000000,0.000000,0.000155,0.126158,-0.000225,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000016,0.000221,0.000000,0.000000,0.000152,0.125934,-0.000223,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000018,0.000015,0.000222,0.000094,0.000094,0.000150,0.125622,-0.000312,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000015,0.000222,0.000333,0.000333,0.000147,0.125078,-0.000544,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000014,0.000223,0.000512,0.000512,0.000144,0.124365,-0.000713,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000013,0.000224,0.000641,0.000641,0.000140,0.123536,-0.000829,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000016,0.000012,0.000224,0.000729,0.000729,0.000136,0.122631,-0.000905,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000016,0.000012,0.000225,0.000662,0.000662,0.000132,0.121805,-0.000826,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000015,0.000011,0.000225,0.000560,0.000560,0.000127,0.121091,-0.000714,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000015,0.000010,0.000226,0.000489,0.000489,0.000123,0.120457,-0.000634,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000014,0.000010,0.000226,0.000396,0.000396,0.000118,0.119924,-0.000533,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000014,0.000009,0.000226,0.000300,0.000300,0.000113,0.119494,-0.000431,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000013,0.000009,0.000227,0.000167,0.000167,0.000109,0.119200,-0.000294,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000013,0.000009,0.000227,0.000029,0.000029,0.000105,0.119046,-0.000154,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000351,0.000008,0.000015,0.000008,0.000216,0.000012,0.000009,0.000236,0.000000,0.000000,0.000102,0.119254,0.000208,1.000000,0.000007 +195,2022-08-09 03:00:00,0.000091,0.000004,0.000001,0.000004,0.000217,0.000012,0.000009,0.000233,0.000000,0.000000,0.000099,0.119217,-0.000038,1.000000,0.000003 +196,2022-08-09 04:00:00,0.000006,0.000003,0.000000,0.000003,0.000218,0.000012,0.000009,0.000232,0.000000,0.000000,0.000096,0.119098,-0.000119,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000218,0.000011,0.000009,0.000230,0.000000,0.000000,0.000094,0.118975,-0.000123,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000219,0.000011,0.000009,0.000230,0.000000,0.000000,0.000091,0.118854,-0.000121,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000011,0.000008,0.000231,0.000000,0.000000,0.000089,0.118733,-0.000120,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000010,0.000008,0.000232,0.000000,0.000000,0.000087,0.118615,-0.000118,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000010,0.000008,0.000232,0.000000,0.000000,0.000085,0.118498,-0.000117,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000010,0.000008,0.000233,0.000000,0.000000,0.000083,0.118383,-0.000115,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000010,0.000008,0.000234,0.000000,0.000000,0.000081,0.118270,-0.000113,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000010,0.000008,0.000235,0.000000,0.000000,0.000079,0.118158,-0.000112,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000009,0.000008,0.000235,0.000000,0.000000,0.000078,0.118048,-0.000110,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000009,0.000008,0.000236,0.000103,0.000103,0.000076,0.117837,-0.000211,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620876.csv b/test/channel_loss/channel_forcing/et/cat-2620876.csv new file mode 100644 index 000000000..99575b4ea --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620876.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000000,0.001508,0.000629,0.001508,0.000167,0.000167,0.010717,0.427178,-0.004853,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001384,0.000619,0.001384,0.000044,0.000044,0.009952,0.422450,-0.004729,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001278,0.000609,0.001278,0.000000,0.000000,0.009283,0.417838,-0.004611,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001187,0.000600,0.001187,0.000000,0.000000,0.008695,0.413299,-0.004539,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001108,0.000590,0.001108,0.000000,0.000000,0.008177,0.408831,-0.004468,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000000,0.001039,0.000581,0.001039,0.000000,0.000000,0.007719,0.404433,-0.004398,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000001,0.000979,0.000572,0.000979,0.000000,0.000000,0.007312,0.400103,-0.004330,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000925,0.000563,0.000926,0.000000,0.000000,0.006950,0.395830,-0.004273,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000878,0.000554,0.000879,0.000000,0.000000,0.006627,0.391623,-0.004207,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000836,0.000546,0.000837,0.000000,0.000000,0.006336,0.387482,-0.004141,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000799,0.000537,0.000800,0.000000,0.000000,0.006075,0.383406,-0.004076,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000765,0.000529,0.000767,0.000000,0.000000,0.005838,0.379394,-0.004013,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000735,0.000520,0.000737,0.000000,0.000000,0.005624,0.375444,-0.003950,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000707,0.000512,0.000710,0.000000,0.000000,0.005429,0.371556,-0.003888,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000682,0.000504,0.000685,0.000121,0.000121,0.005251,0.367609,-0.003946,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000659,0.000495,0.000663,0.000344,0.000344,0.005087,0.363505,-0.004104,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000638,0.000487,0.000642,0.000511,0.000511,0.004935,0.359300,-0.004205,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000619,0.000478,0.000623,0.000644,0.000644,0.004794,0.355030,-0.004270,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000601,0.000469,0.000606,0.000621,0.000621,0.004663,0.350849,-0.004181,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000027,0.000000,0.000000,0.000000,0.000006,0.000584,0.000461,0.000590,0.000568,0.000568,0.004539,0.346811,-0.004037,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000035,0.000000,0.000000,0.000000,0.000006,0.000568,0.000453,0.000574,0.000474,0.000474,0.004424,0.342938,-0.003874,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000212,0.000000,0.000000,0.000000,0.000007,0.000553,0.000445,0.000560,0.000361,0.000361,0.004315,0.339411,-0.003527,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000039,0.000000,0.000000,0.000000,0.000007,0.000540,0.000438,0.000547,0.000283,0.000283,0.004214,0.335845,-0.003565,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000035,0.000000,0.000000,0.000000,0.000008,0.000527,0.000430,0.000535,0.000228,0.000228,0.004118,0.332385,-0.003460,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001017,0.000039,0.000070,0.000039,0.000009,0.000514,0.000425,0.000562,0.000138,0.000138,0.004029,0.329966,-0.002419,1.000000,0.000032 +25,2022-08-02 01:00:00,0.000740,0.000041,0.000043,0.000041,0.000009,0.000503,0.000420,0.000554,0.000052,0.000052,0.003945,0.327423,-0.002544,1.000000,0.000034 +26,2022-08-02 02:00:00,0.000380,0.000032,0.000014,0.000032,0.000010,0.000493,0.000414,0.000535,0.000000,0.000000,0.003867,0.324645,-0.002778,1.000000,0.000015 +27,2022-08-02 03:00:00,0.000211,0.000014,0.000004,0.000014,0.000011,0.000483,0.000408,0.000508,0.000000,0.000000,0.003792,0.321754,-0.002891,1.000000,0.000005 +28,2022-08-02 04:00:00,0.000205,0.000006,0.000004,0.000006,0.000012,0.000473,0.000402,0.000491,0.000000,0.000000,0.003721,0.318902,-0.002852,1.000000,0.000003 +29,2022-08-02 05:00:00,0.000168,0.000003,0.000003,0.000003,0.000012,0.000464,0.000396,0.000480,0.000000,0.000000,0.003654,0.316059,-0.002842,1.000000,0.000002 +30,2022-08-02 06:00:00,0.000230,0.000004,0.000005,0.000004,0.000013,0.000455,0.000391,0.000473,0.000000,0.000000,0.003589,0.313320,-0.002739,1.000000,0.000003 +31,2022-08-02 07:00:00,0.000000,0.000002,0.000000,0.000002,0.000014,0.000447,0.000385,0.000463,0.000000,0.000000,0.003526,0.310402,-0.002918,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000015,0.000439,0.000379,0.000455,0.000000,0.000000,0.003465,0.307530,-0.002873,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000431,0.000373,0.000447,0.000000,0.000000,0.003407,0.304702,-0.002828,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000424,0.000367,0.000440,0.000000,0.000000,0.003350,0.301918,-0.002784,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000416,0.000361,0.000434,0.000000,0.000000,0.003294,0.299178,-0.002740,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000409,0.000355,0.000428,0.000000,0.000000,0.003241,0.296481,-0.002697,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000402,0.000350,0.000422,0.000000,0.000000,0.003188,0.293825,-0.002655,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000396,0.000344,0.000416,0.000100,0.000100,0.003137,0.291113,-0.002712,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000389,0.000338,0.000410,0.000328,0.000328,0.003086,0.288219,-0.002894,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000382,0.000332,0.000404,0.000487,0.000487,0.003035,0.285213,-0.003006,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000376,0.000325,0.000399,0.000621,0.000621,0.002985,0.282123,-0.003090,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000057,0.000000,0.000000,0.000000,0.000024,0.000369,0.000319,0.000393,0.000721,0.000721,0.002935,0.279038,-0.003085,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000363,0.000313,0.000388,0.000651,0.000651,0.002885,0.276014,-0.003023,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000356,0.000307,0.000382,0.000539,0.000539,0.002835,0.273148,-0.002866,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000350,0.000301,0.000377,0.000489,0.000489,0.002787,0.270376,-0.002773,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000343,0.000295,0.000372,0.000394,0.000394,0.002738,0.267740,-0.002636,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000337,0.000290,0.000367,0.000299,0.000299,0.002691,0.265240,-0.002500,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000331,0.000285,0.000362,0.000165,0.000165,0.002645,0.262910,-0.002330,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000326,0.000281,0.000357,0.000024,0.000024,0.002600,0.260756,-0.002154,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000320,0.000276,0.000352,0.000000,0.000000,0.002557,0.258658,-0.002097,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000314,0.000272,0.000348,0.000000,0.000000,0.002514,0.256593,-0.002065,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000309,0.000268,0.000344,0.000000,0.000000,0.002473,0.254561,-0.002032,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000304,0.000264,0.000340,0.000000,0.000000,0.002433,0.252560,-0.002001,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000299,0.000260,0.000336,0.000000,0.000000,0.002394,0.250591,-0.001969,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000294,0.000255,0.000332,0.000000,0.000000,0.002355,0.248652,-0.001939,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000289,0.000251,0.000328,0.000000,0.000000,0.002318,0.246744,-0.001908,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000284,0.000248,0.000325,0.000000,0.000000,0.002281,0.244865,-0.001879,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000280,0.000244,0.000321,0.000000,0.000000,0.002245,0.243016,-0.001849,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000275,0.000240,0.000318,0.000000,0.000000,0.002210,0.241195,-0.001820,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000271,0.000236,0.000314,0.000000,0.000000,0.002175,0.239403,-0.001792,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000266,0.000232,0.000311,0.000000,0.000000,0.002141,0.237639,-0.001764,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000262,0.000229,0.000308,0.000119,0.000119,0.002108,0.235786,-0.001854,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000258,0.000224,0.000305,0.000356,0.000356,0.002074,0.233727,-0.002058,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000253,0.000220,0.000302,0.000520,0.000520,0.002040,0.231540,-0.002188,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000249,0.000215,0.000299,0.000656,0.000656,0.002006,0.229252,-0.002287,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000245,0.000210,0.000296,0.000664,0.000664,0.001972,0.226993,-0.002259,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000240,0.000206,0.000292,0.000595,0.000595,0.001937,0.224837,-0.002156,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000119,0.000000,0.000000,0.000000,0.000053,0.000236,0.000202,0.000289,0.000497,0.000497,0.001903,0.222928,-0.001909,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000027,0.000000,0.000000,0.000000,0.000055,0.000232,0.000198,0.000286,0.000440,0.000440,0.001869,0.221015,-0.001913,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000115,0.000000,0.000000,0.000000,0.000056,0.000227,0.000194,0.000283,0.000355,0.000355,0.001836,0.219302,-0.001713,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000078,0.000000,0.000000,0.000000,0.000057,0.000223,0.000191,0.000280,0.000259,0.000259,0.001803,0.217674,-0.001628,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000219,0.000187,0.000277,0.000147,0.000147,0.001771,0.216104,-0.001570,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000215,0.000184,0.000275,0.000033,0.000033,0.001740,0.214672,-0.001433,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000212,0.000182,0.000272,0.000000,0.000000,0.001710,0.213294,-0.001378,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000208,0.000179,0.000270,0.000000,0.000000,0.001681,0.211937,-0.001356,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000204,0.000176,0.000267,0.000000,0.000000,0.001653,0.210602,-0.001335,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000011,0.000000,0.000000,0.000000,0.000064,0.000201,0.000173,0.000265,0.000000,0.000000,0.001625,0.209299,-0.001303,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000197,0.000170,0.000263,0.000000,0.000000,0.001598,0.208005,-0.001294,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000194,0.000168,0.000261,0.000000,0.000000,0.001572,0.206731,-0.001274,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000191,0.000165,0.000259,0.000000,0.000000,0.001547,0.205477,-0.001254,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000188,0.000163,0.000257,0.000000,0.000000,0.001522,0.204243,-0.001234,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000185,0.000160,0.000255,0.000000,0.000000,0.001497,0.203028,-0.001215,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000182,0.000158,0.000254,0.000000,0.000000,0.001473,0.201832,-0.001196,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000179,0.000155,0.000252,0.000000,0.000000,0.001450,0.200654,-0.001177,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000176,0.000153,0.000250,0.000000,0.000000,0.001427,0.199495,-0.001159,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000173,0.000150,0.000249,0.000118,0.000118,0.001404,0.198239,-0.001257,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000170,0.000147,0.000247,0.000354,0.000354,0.001381,0.196769,-0.001470,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000167,0.000144,0.000245,0.000518,0.000518,0.001357,0.195160,-0.001609,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000164,0.000140,0.000244,0.000653,0.000653,0.001333,0.193444,-0.001716,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000161,0.000136,0.000242,0.000676,0.000676,0.001309,0.191733,-0.001711,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000027,0.000000,0.000000,0.000000,0.000082,0.000158,0.000133,0.000240,0.000654,0.000654,0.001284,0.190095,-0.001638,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000011,0.000000,0.000000,0.000000,0.000083,0.000155,0.000130,0.000238,0.000568,0.000568,0.001259,0.188552,-0.001543,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000152,0.000127,0.000236,0.000460,0.000460,0.001234,0.187130,-0.001423,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000149,0.000124,0.000234,0.000375,0.000375,0.001210,0.185813,-0.001317,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000112,0.000000,0.000000,0.000000,0.000087,0.000146,0.000122,0.000233,0.000287,0.000287,0.001186,0.184714,-0.001099,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000293,0.000001,0.000001,0.000001,0.000088,0.000143,0.000120,0.000232,0.000174,0.000174,0.001163,0.183920,-0.000794,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000261,0.000002,0.000004,0.000002,0.000090,0.000140,0.000119,0.000232,0.000045,0.000045,0.001142,0.183231,-0.000689,1.000000,0.000002 +98,2022-08-05 02:00:00,0.000002,0.000001,0.000000,0.000001,0.000091,0.000138,0.000117,0.000229,0.000000,0.000000,0.001121,0.182346,-0.000885,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000001,0.000001,0.000000,0.000001,0.000092,0.000135,0.000115,0.000228,0.000000,0.000000,0.001101,0.181474,-0.000872,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000093,0.000133,0.000113,0.000226,0.000000,0.000000,0.001082,0.180615,-0.000858,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000095,0.000130,0.000111,0.000225,0.000000,0.000000,0.001063,0.179771,-0.000845,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000001,0.000000,0.000000,0.000000,0.000096,0.000128,0.000110,0.000224,0.000000,0.000000,0.001045,0.178939,-0.000832,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000126,0.000108,0.000223,0.000000,0.000000,0.001027,0.178119,-0.000820,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000124,0.000106,0.000222,0.000000,0.000000,0.001010,0.177312,-0.000807,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000122,0.000105,0.000221,0.000000,0.000000,0.000993,0.176517,-0.000795,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000120,0.000103,0.000220,0.000000,0.000000,0.000976,0.175735,-0.000782,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000118,0.000101,0.000220,0.000000,0.000000,0.000960,0.174965,-0.000770,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000116,0.000100,0.000219,0.000000,0.000000,0.000945,0.174207,-0.000758,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000114,0.000098,0.000218,0.000000,0.000000,0.000929,0.173461,-0.000746,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000112,0.000097,0.000218,0.000126,0.000126,0.000914,0.172603,-0.000859,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000110,0.000094,0.000217,0.000355,0.000355,0.000898,0.171532,-0.001070,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000108,0.000092,0.000216,0.000521,0.000521,0.000882,0.170314,-0.001218,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000106,0.000089,0.000215,0.000662,0.000662,0.000865,0.168977,-0.001337,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000104,0.000086,0.000214,0.000662,0.000662,0.000848,0.167662,-0.001316,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000011,0.000000,0.000000,0.000000,0.000112,0.000101,0.000084,0.000213,0.000586,0.000586,0.000830,0.166452,-0.001210,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000194,0.000000,0.000000,0.000000,0.000113,0.000099,0.000082,0.000212,0.000498,0.000498,0.000813,0.165528,-0.000924,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000152,0.000000,0.000000,0.000000,0.000114,0.000097,0.000080,0.000211,0.000412,0.000412,0.000795,0.164662,-0.000866,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000027,0.000000,0.000000,0.000000,0.000116,0.000095,0.000078,0.000211,0.000334,0.000334,0.000778,0.163763,-0.000899,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000027,0.000000,0.000000,0.000000,0.000117,0.000093,0.000076,0.000210,0.000261,0.000261,0.000762,0.162950,-0.000813,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000257,0.000000,0.000001,0.000000,0.000118,0.000091,0.000075,0.000209,0.000162,0.000162,0.000746,0.162472,-0.000477,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000450,0.000006,0.000011,0.000006,0.000119,0.000089,0.000075,0.000215,0.000053,0.000053,0.000732,0.162288,-0.000184,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000129,0.000004,0.000001,0.000004,0.000120,0.000088,0.000074,0.000212,0.000000,0.000000,0.000718,0.161854,-0.000434,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000292,0.000006,0.000006,0.000006,0.000122,0.000086,0.000073,0.000214,0.000000,0.000000,0.000706,0.161583,-0.000272,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000119,0.000002,0.000001,0.000002,0.000123,0.000085,0.000073,0.000210,0.000000,0.000000,0.000694,0.161150,-0.000433,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000127,0.000002,0.000001,0.000002,0.000124,0.000083,0.000072,0.000209,0.000000,0.000000,0.000682,0.160731,-0.000419,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000112,0.000001,0.000001,0.000001,0.000125,0.000082,0.000071,0.000208,0.000000,0.000000,0.000671,0.160305,-0.000426,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000080,0.000070,0.000207,0.000000,0.000000,0.000660,0.159776,-0.000529,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000079,0.000069,0.000207,0.000000,0.000000,0.000650,0.159255,-0.000521,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000078,0.000068,0.000207,0.000000,0.000000,0.000639,0.158743,-0.000513,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000077,0.000066,0.000206,0.000000,0.000000,0.000629,0.158238,-0.000505,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000075,0.000065,0.000206,0.000000,0.000000,0.000619,0.157741,-0.000497,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000074,0.000064,0.000206,0.000000,0.000000,0.000609,0.157252,-0.000489,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000073,0.000063,0.000206,0.000000,0.000000,0.000600,0.156771,-0.000481,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000072,0.000062,0.000206,0.000111,0.000111,0.000590,0.156188,-0.000583,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000071,0.000061,0.000206,0.000337,0.000337,0.000580,0.155392,-0.000797,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000069,0.000059,0.000206,0.000510,0.000510,0.000569,0.154437,-0.000954,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000068,0.000056,0.000206,0.000644,0.000644,0.000558,0.153366,-0.001071,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000066,0.000054,0.000205,0.000713,0.000713,0.000545,0.152243,-0.001123,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000065,0.000052,0.000205,0.000654,0.000654,0.000532,0.151196,-0.001047,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000063,0.000050,0.000204,0.000567,0.000567,0.000519,0.150252,-0.000945,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000061,0.000048,0.000204,0.000469,0.000469,0.000505,0.149418,-0.000834,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000060,0.000047,0.000203,0.000381,0.000381,0.000492,0.148684,-0.000734,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000058,0.000045,0.000203,0.000288,0.000288,0.000479,0.148053,-0.000631,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000057,0.000044,0.000202,0.000152,0.000152,0.000467,0.147566,-0.000487,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000055,0.000043,0.000202,0.000033,0.000033,0.000455,0.147203,-0.000363,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000054,0.000043,0.000202,0.000000,0.000000,0.000444,0.146878,-0.000324,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000053,0.000042,0.000201,0.000000,0.000000,0.000433,0.146559,-0.000319,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000051,0.000041,0.000201,0.000000,0.000000,0.000423,0.146245,-0.000314,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000050,0.000041,0.000201,0.000000,0.000000,0.000414,0.145935,-0.000309,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000049,0.000040,0.000201,0.000000,0.000000,0.000405,0.145631,-0.000305,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000048,0.000040,0.000201,0.000000,0.000000,0.000396,0.145331,-0.000300,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000047,0.000039,0.000201,0.000000,0.000000,0.000388,0.145036,-0.000295,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000046,0.000038,0.000201,0.000000,0.000000,0.000380,0.144745,-0.000291,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000045,0.000038,0.000202,0.000000,0.000000,0.000372,0.144459,-0.000286,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000044,0.000037,0.000202,0.000000,0.000000,0.000365,0.144177,-0.000282,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000037,0.000202,0.000000,0.000000,0.000358,0.143900,-0.000277,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000043,0.000036,0.000202,0.000000,0.000000,0.000351,0.143627,-0.000273,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000042,0.000035,0.000202,0.000106,0.000106,0.000345,0.143254,-0.000373,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000041,0.000034,0.000202,0.000332,0.000332,0.000338,0.142665,-0.000590,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000040,0.000032,0.000203,0.000503,0.000503,0.000330,0.141916,-0.000748,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000039,0.000031,0.000202,0.000639,0.000639,0.000322,0.141046,-0.000871,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000038,0.000029,0.000202,0.000717,0.000717,0.000312,0.140112,-0.000934,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000037,0.000027,0.000202,0.000652,0.000652,0.000302,0.139256,-0.000856,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000035,0.000025,0.000202,0.000551,0.000551,0.000292,0.138513,-0.000743,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000034,0.000024,0.000202,0.000471,0.000471,0.000282,0.137861,-0.000652,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000033,0.000023,0.000201,0.000385,0.000385,0.000272,0.137304,-0.000557,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000032,0.000022,0.000201,0.000292,0.000292,0.000262,0.136846,-0.000457,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000031,0.000021,0.000201,0.000138,0.000138,0.000252,0.136548,-0.000299,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000030,0.000021,0.000201,0.000004,0.000004,0.000244,0.136386,-0.000162,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000031,0.000000,0.000000,0.000000,0.000172,0.000029,0.000021,0.000201,0.000000,0.000000,0.000236,0.136261,-0.000125,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000028,0.000020,0.000201,0.000000,0.000000,0.000228,0.136107,-0.000154,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000027,0.000020,0.000201,0.000000,0.000000,0.000221,0.135956,-0.000151,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000026,0.000020,0.000201,0.000000,0.000000,0.000215,0.135807,-0.000149,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000025,0.000019,0.000201,0.000000,0.000000,0.000209,0.135661,-0.000146,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000025,0.000019,0.000202,0.000000,0.000000,0.000203,0.135517,-0.000144,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000024,0.000019,0.000202,0.000000,0.000000,0.000198,0.135375,-0.000142,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000023,0.000018,0.000202,0.000000,0.000000,0.000193,0.135235,-0.000140,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000023,0.000018,0.000203,0.000000,0.000000,0.000188,0.135097,-0.000138,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000022,0.000018,0.000203,0.000000,0.000000,0.000184,0.134962,-0.000135,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000022,0.000018,0.000203,0.000000,0.000000,0.000180,0.134829,-0.000133,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000021,0.000017,0.000204,0.000000,0.000000,0.000176,0.134697,-0.000131,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000021,0.000017,0.000204,0.000092,0.000092,0.000172,0.134478,-0.000219,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000020,0.000016,0.000204,0.000320,0.000320,0.000167,0.134038,-0.000440,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000020,0.000015,0.000205,0.000494,0.000494,0.000162,0.133433,-0.000605,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000019,0.000013,0.000205,0.000622,0.000622,0.000157,0.132711,-0.000722,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000018,0.000011,0.000205,0.000714,0.000714,0.000150,0.131910,-0.000801,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000017,0.000010,0.000205,0.000647,0.000647,0.000143,0.131188,-0.000722,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000016,0.000009,0.000205,0.000547,0.000547,0.000135,0.130575,-0.000613,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000015,0.000008,0.000205,0.000479,0.000479,0.000127,0.130039,-0.000536,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000014,0.000007,0.000205,0.000386,0.000386,0.000119,0.129603,-0.000436,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000014,0.000006,0.000204,0.000294,0.000294,0.000112,0.129264,-0.000339,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000013,0.000006,0.000204,0.000164,0.000164,0.000105,0.129058,-0.000206,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000012,0.000005,0.000204,0.000029,0.000029,0.000098,0.128988,-0.000070,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000146,0.000001,0.000001,0.000001,0.000193,0.000011,0.000006,0.000205,0.000000,0.000000,0.000092,0.129090,0.000102,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000027,0.000000,0.000000,0.000000,0.000194,0.000011,0.000006,0.000205,0.000000,0.000000,0.000087,0.129075,-0.000015,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000010,0.000005,0.000205,0.000000,0.000000,0.000083,0.129033,-0.000041,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000010,0.000005,0.000205,0.000000,0.000000,0.000079,0.128993,-0.000041,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000009,0.000005,0.000206,0.000000,0.000000,0.000075,0.128953,-0.000040,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000009,0.000005,0.000206,0.000000,0.000000,0.000071,0.128913,-0.000039,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000008,0.000005,0.000206,0.000000,0.000000,0.000068,0.128874,-0.000039,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000008,0.000005,0.000207,0.000000,0.000000,0.000065,0.128836,-0.000038,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000008,0.000005,0.000207,0.000000,0.000000,0.000063,0.128798,-0.000038,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000007,0.000005,0.000208,0.000000,0.000000,0.000060,0.128761,-0.000037,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000007,0.000005,0.000208,0.000000,0.000000,0.000058,0.128725,-0.000036,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000007,0.000005,0.000209,0.000000,0.000000,0.000056,0.128689,-0.000036,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000007,0.000004,0.000209,0.000103,0.000103,0.000054,0.128552,-0.000137,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620877.csv b/test/channel_loss/channel_forcing/et/cat-2620877.csv new file mode 100644 index 000000000..d1fcc578d --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620877.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001469,0.000354,0.001469,0.000169,0.000169,0.010481,0.431191,-0.004735,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001315,0.000349,0.001315,0.000043,0.000043,0.009515,0.426648,-0.004543,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001184,0.000344,0.001184,0.000000,0.000000,0.008675,0.422213,-0.004435,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001072,0.000339,0.001073,0.000000,0.000000,0.007941,0.417841,-0.004371,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000976,0.000334,0.000977,0.000000,0.000000,0.007299,0.413533,-0.004308,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000894,0.000329,0.000894,0.000000,0.000000,0.006734,0.409286,-0.004247,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000822,0.000324,0.000822,0.000000,0.000000,0.006237,0.405101,-0.004185,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000759,0.000320,0.000760,0.000000,0.000000,0.005797,0.400976,-0.004125,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000704,0.000315,0.000705,0.000000,0.000000,0.005408,0.396910,-0.004066,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000656,0.000311,0.000657,0.000000,0.000000,0.005063,0.392902,-0.004007,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000614,0.000306,0.000615,0.000000,0.000000,0.004755,0.388953,-0.003950,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000576,0.000302,0.000578,0.000000,0.000000,0.004481,0.385060,-0.003893,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000543,0.000297,0.000545,0.000000,0.000000,0.004236,0.381223,-0.003837,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000513,0.000293,0.000516,0.000000,0.000000,0.004016,0.377441,-0.003782,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000486,0.000289,0.000489,0.000122,0.000122,0.003819,0.373594,-0.003848,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000462,0.000284,0.000466,0.000353,0.000353,0.003640,0.369574,-0.004020,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000441,0.000280,0.000445,0.000531,0.000531,0.003479,0.365436,-0.004138,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000421,0.000275,0.000426,0.000667,0.000667,0.003332,0.361224,-0.004212,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000404,0.000270,0.000409,0.000648,0.000648,0.003199,0.357092,-0.004132,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000388,0.000266,0.000393,0.000591,0.000591,0.003076,0.353075,-0.004017,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000006,0.000373,0.000261,0.000379,0.000486,0.000486,0.002965,0.349236,-0.003839,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000196,0.000000,0.000000,0.000000,0.000007,0.000360,0.000257,0.000367,0.000370,0.000370,0.002862,0.345744,-0.003492,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000347,0.000253,0.000355,0.000290,0.000290,0.002768,0.342188,-0.003557,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000336,0.000249,0.000344,0.000226,0.000226,0.002681,0.338745,-0.003443,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001475,0.000135,0.000245,0.000135,0.000009,0.000326,0.000247,0.000470,0.000136,0.000136,0.002602,0.336652,-0.002093,1.000000,0.000110 +25,2022-08-02 01:00:00,0.000539,0.000082,0.000037,0.000082,0.000010,0.000316,0.000244,0.000408,0.000050,0.000050,0.002530,0.333957,-0.002695,1.000000,0.000066 +26,2022-08-02 02:00:00,0.000219,0.000062,0.000008,0.000062,0.000010,0.000308,0.000241,0.000381,0.000000,0.000000,0.002463,0.331063,-0.002893,1.000000,0.000011 +27,2022-08-02 03:00:00,0.000000,0.000009,0.000000,0.000009,0.000011,0.000300,0.000237,0.000320,0.000000,0.000000,0.002400,0.328003,-0.003060,1.000000,0.000002 +28,2022-08-02 04:00:00,0.000000,0.000002,0.000000,0.000002,0.000012,0.000292,0.000234,0.000306,0.000000,0.000000,0.002342,0.324987,-0.003016,1.000000,0.000000 +29,2022-08-02 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000013,0.000285,0.000230,0.000298,0.000000,0.000000,0.002287,0.322015,-0.002973,1.000000,0.000000 +30,2022-08-02 06:00:00,0.000096,0.000001,0.000001,0.000001,0.000014,0.000279,0.000227,0.000293,0.000000,0.000000,0.002236,0.319178,-0.002837,1.000000,0.000001 +31,2022-08-02 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000272,0.000224,0.000287,0.000000,0.000000,0.002188,0.316289,-0.002889,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000266,0.000221,0.000282,0.000000,0.000000,0.002142,0.313441,-0.002847,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000261,0.000218,0.000277,0.000000,0.000000,0.002098,0.310635,-0.002807,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000256,0.000214,0.000273,0.000000,0.000000,0.002057,0.307869,-0.002766,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000251,0.000211,0.000269,0.000000,0.000000,0.002018,0.305142,-0.002726,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000246,0.000208,0.000265,0.000000,0.000000,0.001980,0.302455,-0.002687,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000241,0.000205,0.000261,0.000000,0.000000,0.001944,0.299807,-0.002648,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000237,0.000202,0.000258,0.000101,0.000101,0.001910,0.297097,-0.002710,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000233,0.000199,0.000254,0.000338,0.000338,0.001876,0.294193,-0.002904,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000228,0.000195,0.000251,0.000505,0.000505,0.001843,0.291166,-0.003027,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000224,0.000192,0.000248,0.000648,0.000648,0.001811,0.288041,-0.003125,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000220,0.000188,0.000245,0.000754,0.000754,0.001779,0.284857,-0.003184,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000216,0.000185,0.000242,0.000674,0.000674,0.001748,0.281797,-0.003059,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000212,0.000182,0.000239,0.000553,0.000553,0.001717,0.278901,-0.002896,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000209,0.000178,0.000237,0.000506,0.000506,0.001687,0.276093,-0.002809,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000205,0.000175,0.000234,0.000407,0.000407,0.001657,0.273422,-0.002671,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000201,0.000173,0.000231,0.000304,0.000304,0.001629,0.270892,-0.002530,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000198,0.000170,0.000229,0.000167,0.000167,0.001601,0.268533,-0.002359,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000194,0.000167,0.000227,0.000023,0.000023,0.001574,0.266350,-0.002183,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000191,0.000165,0.000225,0.000000,0.000000,0.001548,0.264221,-0.002129,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000188,0.000163,0.000223,0.000000,0.000000,0.001523,0.262122,-0.002098,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000185,0.000160,0.000221,0.000000,0.000000,0.001498,0.260054,-0.002068,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000182,0.000158,0.000219,0.000000,0.000000,0.001475,0.258015,-0.002038,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000179,0.000156,0.000217,0.000000,0.000000,0.001452,0.256006,-0.002009,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000176,0.000153,0.000215,0.000000,0.000000,0.001429,0.254026,-0.001980,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000173,0.000151,0.000214,0.000000,0.000000,0.001407,0.252074,-0.001952,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000171,0.000149,0.000212,0.000000,0.000000,0.001385,0.250151,-0.001924,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000168,0.000147,0.000211,0.000000,0.000000,0.001364,0.248255,-0.001896,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000165,0.000145,0.000210,0.000000,0.000000,0.001344,0.246386,-0.001869,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000163,0.000143,0.000208,0.000000,0.000000,0.001324,0.244544,-0.001842,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000160,0.000141,0.000207,0.000000,0.000000,0.001304,0.242729,-0.001815,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000158,0.000139,0.000206,0.000122,0.000122,0.001285,0.240819,-0.001910,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000156,0.000136,0.000205,0.000369,0.000369,0.001265,0.238694,-0.002126,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000153,0.000134,0.000203,0.000543,0.000543,0.001246,0.236428,-0.002266,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000151,0.000131,0.000202,0.000685,0.000685,0.001226,0.234054,-0.002374,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000148,0.000128,0.000201,0.000687,0.000687,0.001206,0.231713,-0.002342,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000146,0.000126,0.000200,0.000619,0.000619,0.001186,0.229471,-0.002241,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000143,0.000123,0.000199,0.000510,0.000510,0.001166,0.227370,-0.002101,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000141,0.000121,0.000197,0.000452,0.000452,0.001147,0.225357,-0.002013,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000308,0.000000,0.000000,0.000000,0.000058,0.000138,0.000119,0.000196,0.000357,0.000357,0.001128,0.223768,-0.001588,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000103,0.000000,0.000000,0.000000,0.000059,0.000136,0.000117,0.000195,0.000255,0.000255,0.001109,0.222103,-0.001666,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000134,0.000116,0.000194,0.000148,0.000148,0.001091,0.220464,-0.001638,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000132,0.000114,0.000193,0.000033,0.000033,0.001073,0.218963,-0.001501,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000129,0.000112,0.000193,0.000000,0.000000,0.001056,0.217516,-0.001447,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000127,0.000111,0.000192,0.000000,0.000000,0.001039,0.216089,-0.001426,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000125,0.000109,0.000191,0.000000,0.000000,0.001023,0.214683,-0.001406,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000123,0.000107,0.000190,0.000000,0.000000,0.001007,0.213298,-0.001386,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000121,0.000106,0.000190,0.000000,0.000000,0.000991,0.211932,-0.001366,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000120,0.000104,0.000189,0.000000,0.000000,0.000976,0.210586,-0.001346,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000118,0.000103,0.000189,0.000000,0.000000,0.000961,0.209259,-0.001327,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000116,0.000101,0.000188,0.000000,0.000000,0.000947,0.207951,-0.001308,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000114,0.000100,0.000188,0.000000,0.000000,0.000933,0.206662,-0.001289,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000112,0.000098,0.000187,0.000000,0.000000,0.000919,0.205392,-0.001270,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000111,0.000097,0.000187,0.000000,0.000000,0.000905,0.204140,-0.001252,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000109,0.000096,0.000187,0.000000,0.000000,0.000892,0.202906,-0.001234,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000107,0.000094,0.000187,0.000118,0.000118,0.000878,0.201573,-0.001333,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000106,0.000092,0.000186,0.000365,0.000365,0.000865,0.200016,-0.001557,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000104,0.000090,0.000186,0.000537,0.000537,0.000851,0.198312,-0.001704,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000102,0.000088,0.000185,0.000676,0.000676,0.000837,0.196495,-0.001817,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000101,0.000086,0.000185,0.000675,0.000675,0.000823,0.194706,-0.001789,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000099,0.000084,0.000185,0.000670,0.000670,0.000809,0.192947,-0.001759,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000097,0.000083,0.000184,0.000585,0.000585,0.000794,0.191297,-0.001650,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000095,0.000081,0.000184,0.000475,0.000475,0.000780,0.189780,-0.001517,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000093,0.000079,0.000183,0.000384,0.000384,0.000766,0.188374,-0.001406,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000286,0.000000,0.000000,0.000000,0.000091,0.000092,0.000078,0.000183,0.000292,0.000292,0.000752,0.187361,-0.001013,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000420,0.000004,0.000007,0.000004,0.000093,0.000090,0.000077,0.000187,0.000177,0.000177,0.000739,0.186600,-0.000761,1.000000,0.000003 +97,2022-08-05 01:00:00,0.000401,0.000010,0.000016,0.000010,0.000094,0.000089,0.000076,0.000193,0.000046,0.000046,0.000727,0.185953,-0.000647,1.000000,0.000009 +98,2022-08-05 02:00:00,0.000000,0.000005,0.000000,0.000005,0.000095,0.000087,0.000075,0.000188,0.000000,0.000000,0.000715,0.184980,-0.000972,1.000000,0.000003 +99,2022-08-05 03:00:00,0.000000,0.000003,0.000000,0.000003,0.000097,0.000086,0.000074,0.000186,0.000000,0.000000,0.000703,0.184022,-0.000958,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000084,0.000073,0.000182,0.000000,0.000000,0.000692,0.183077,-0.000945,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000083,0.000072,0.000182,0.000000,0.000000,0.000681,0.182146,-0.000931,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000082,0.000071,0.000182,0.000000,0.000000,0.000671,0.181229,-0.000918,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000080,0.000070,0.000182,0.000000,0.000000,0.000660,0.180324,-0.000904,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000079,0.000069,0.000183,0.000000,0.000000,0.000650,0.179433,-0.000891,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000078,0.000068,0.000183,0.000000,0.000000,0.000640,0.178554,-0.000879,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000077,0.000067,0.000183,0.000000,0.000000,0.000630,0.177688,-0.000866,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000076,0.000066,0.000183,0.000000,0.000000,0.000621,0.176835,-0.000853,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000075,0.000065,0.000183,0.000000,0.000000,0.000612,0.175994,-0.000841,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000073,0.000064,0.000183,0.000000,0.000000,0.000603,0.175164,-0.000829,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000072,0.000063,0.000184,0.000130,0.000130,0.000593,0.174219,-0.000945,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000071,0.000062,0.000184,0.000369,0.000369,0.000584,0.173052,-0.001167,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000070,0.000060,0.000184,0.000544,0.000544,0.000575,0.171730,-0.001323,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000069,0.000059,0.000184,0.000689,0.000689,0.000565,0.170283,-0.001447,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000067,0.000057,0.000184,0.000691,0.000691,0.000554,0.168855,-0.001428,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000066,0.000056,0.000184,0.000603,0.000603,0.000544,0.167534,-0.001321,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000236,0.000000,0.000000,0.000000,0.000119,0.000065,0.000055,0.000184,0.000513,0.000513,0.000533,0.166554,-0.000980,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000199,0.000000,0.000000,0.000000,0.000120,0.000064,0.000053,0.000184,0.000426,0.000426,0.000523,0.165637,-0.000917,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000062,0.000052,0.000184,0.000344,0.000344,0.000513,0.164618,-0.001019,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000061,0.000051,0.000184,0.000266,0.000266,0.000503,0.163690,-0.000928,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000288,0.000001,0.000002,0.000001,0.000124,0.000060,0.000051,0.000185,0.000164,0.000164,0.000494,0.163158,-0.000532,1.000000,0.000001 +121,2022-08-06 01:00:00,0.000555,0.000017,0.000030,0.000017,0.000126,0.000059,0.000050,0.000202,0.000053,0.000053,0.000485,0.162979,-0.000179,1.000000,0.000014 +122,2022-08-06 02:00:00,0.000000,0.000008,0.000000,0.000008,0.000127,0.000058,0.000050,0.000193,0.000000,0.000000,0.000477,0.162337,-0.000642,1.000000,0.000006 +123,2022-08-06 03:00:00,0.000277,0.000011,0.000009,0.000011,0.000128,0.000057,0.000049,0.000196,0.000000,0.000000,0.000469,0.161969,-0.000368,1.000000,0.000004 +124,2022-08-06 04:00:00,0.000000,0.000002,0.000000,0.000002,0.000130,0.000056,0.000049,0.000188,0.000000,0.000000,0.000462,0.161342,-0.000627,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000131,0.000055,0.000048,0.000188,0.000000,0.000000,0.000454,0.160723,-0.000618,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000054,0.000047,0.000186,0.000000,0.000000,0.000447,0.160114,-0.000609,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000054,0.000047,0.000187,0.000000,0.000000,0.000440,0.159513,-0.000601,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000053,0.000046,0.000187,0.000000,0.000000,0.000434,0.158921,-0.000592,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000052,0.000045,0.000188,0.000000,0.000000,0.000427,0.158338,-0.000584,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000051,0.000045,0.000188,0.000000,0.000000,0.000420,0.157763,-0.000575,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000050,0.000044,0.000189,0.000000,0.000000,0.000414,0.157196,-0.000567,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000050,0.000043,0.000189,0.000000,0.000000,0.000408,0.156637,-0.000559,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000049,0.000043,0.000190,0.000000,0.000000,0.000402,0.156086,-0.000551,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000048,0.000042,0.000190,0.000114,0.000114,0.000396,0.155432,-0.000655,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000047,0.000041,0.000191,0.000348,0.000348,0.000389,0.154555,-0.000877,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000046,0.000040,0.000191,0.000532,0.000532,0.000383,0.153510,-0.001045,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000046,0.000038,0.000191,0.000671,0.000671,0.000375,0.152343,-0.001167,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000045,0.000037,0.000192,0.000743,0.000743,0.000368,0.151122,-0.001221,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000044,0.000036,0.000192,0.000673,0.000673,0.000360,0.149988,-0.001135,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000043,0.000035,0.000192,0.000586,0.000586,0.000352,0.148955,-0.001033,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000042,0.000034,0.000192,0.000485,0.000485,0.000344,0.148037,-0.000918,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000041,0.000033,0.000193,0.000392,0.000392,0.000336,0.147224,-0.000813,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000040,0.000032,0.000193,0.000293,0.000293,0.000328,0.146520,-0.000704,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000039,0.000031,0.000193,0.000154,0.000154,0.000320,0.145963,-0.000557,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000038,0.000031,0.000194,0.000033,0.000033,0.000313,0.145533,-0.000430,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000037,0.000030,0.000194,0.000000,0.000000,0.000306,0.145142,-0.000391,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000036,0.000030,0.000194,0.000000,0.000000,0.000300,0.144757,-0.000385,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000036,0.000029,0.000195,0.000000,0.000000,0.000293,0.144377,-0.000380,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000035,0.000029,0.000195,0.000000,0.000000,0.000288,0.144003,-0.000374,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000034,0.000029,0.000196,0.000000,0.000000,0.000282,0.143634,-0.000369,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000034,0.000028,0.000196,0.000000,0.000000,0.000277,0.143270,-0.000364,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000033,0.000028,0.000197,0.000000,0.000000,0.000271,0.142912,-0.000358,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000032,0.000027,0.000197,0.000000,0.000000,0.000266,0.142559,-0.000353,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000032,0.000027,0.000198,0.000000,0.000000,0.000262,0.142211,-0.000348,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000031,0.000027,0.000198,0.000000,0.000000,0.000257,0.141868,-0.000343,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000031,0.000026,0.000199,0.000000,0.000000,0.000253,0.141529,-0.000338,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000030,0.000026,0.000200,0.000000,0.000000,0.000248,0.141196,-0.000333,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000030,0.000025,0.000200,0.000109,0.000109,0.000244,0.140760,-0.000436,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000029,0.000025,0.000201,0.000346,0.000346,0.000240,0.140097,-0.000663,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000028,0.000024,0.000201,0.000524,0.000524,0.000235,0.139268,-0.000829,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000028,0.000023,0.000202,0.000663,0.000663,0.000230,0.138314,-0.000955,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000027,0.000021,0.000202,0.000745,0.000745,0.000224,0.137293,-0.001021,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000026,0.000020,0.000203,0.000675,0.000675,0.000218,0.136355,-0.000938,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000026,0.000019,0.000203,0.000566,0.000566,0.000212,0.135538,-0.000817,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000025,0.000019,0.000203,0.000485,0.000485,0.000205,0.134813,-0.000725,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000024,0.000018,0.000204,0.000395,0.000395,0.000199,0.134186,-0.000626,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000023,0.000017,0.000204,0.000294,0.000294,0.000193,0.133669,-0.000518,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000023,0.000017,0.000204,0.000139,0.000139,0.000187,0.133311,-0.000357,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000022,0.000017,0.000205,0.000004,0.000004,0.000182,0.133092,-0.000219,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000051,0.000000,0.000000,0.000000,0.000184,0.000021,0.000016,0.000205,0.000000,0.000000,0.000177,0.132930,-0.000162,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000021,0.000016,0.000206,0.000000,0.000000,0.000172,0.132721,-0.000210,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000020,0.000016,0.000206,0.000000,0.000000,0.000168,0.132514,-0.000207,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000020,0.000016,0.000207,0.000000,0.000000,0.000164,0.132311,-0.000204,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000019,0.000016,0.000207,0.000000,0.000000,0.000160,0.132110,-0.000201,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000019,0.000015,0.000208,0.000000,0.000000,0.000156,0.131912,-0.000198,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000019,0.000015,0.000208,0.000000,0.000000,0.000153,0.131717,-0.000195,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000018,0.000015,0.000209,0.000000,0.000000,0.000150,0.131525,-0.000192,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000018,0.000015,0.000210,0.000000,0.000000,0.000147,0.131336,-0.000189,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000017,0.000014,0.000210,0.000000,0.000000,0.000144,0.131149,-0.000187,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000017,0.000014,0.000211,0.000000,0.000000,0.000141,0.130965,-0.000184,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000017,0.000014,0.000212,0.000000,0.000000,0.000138,0.130784,-0.000181,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000016,0.000014,0.000212,0.000094,0.000094,0.000136,0.130513,-0.000271,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000016,0.000013,0.000213,0.000331,0.000331,0.000133,0.130012,-0.000501,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000016,0.000012,0.000213,0.000518,0.000518,0.000129,0.129334,-0.000678,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000015,0.000012,0.000214,0.000646,0.000646,0.000126,0.128539,-0.000794,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000015,0.000011,0.000214,0.000746,0.000746,0.000122,0.127658,-0.000882,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000014,0.000010,0.000215,0.000671,0.000671,0.000117,0.126863,-0.000795,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000014,0.000009,0.000215,0.000561,0.000561,0.000112,0.126188,-0.000676,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000013,0.000008,0.000216,0.000498,0.000498,0.000107,0.125584,-0.000603,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000012,0.000008,0.000216,0.000397,0.000397,0.000103,0.125089,-0.000495,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000012,0.000007,0.000216,0.000298,0.000298,0.000098,0.124699,-0.000390,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000011,0.000007,0.000217,0.000165,0.000165,0.000094,0.124445,-0.000254,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000011,0.000007,0.000217,0.000030,0.000030,0.000089,0.124329,-0.000117,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000010,0.000007,0.000217,0.000000,0.000000,0.000086,0.124243,-0.000086,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000010,0.000007,0.000218,0.000000,0.000000,0.000082,0.124158,-0.000085,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000010,0.000006,0.000218,0.000000,0.000000,0.000079,0.124075,-0.000083,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000009,0.000006,0.000219,0.000000,0.000000,0.000076,0.123993,-0.000082,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000009,0.000006,0.000220,0.000000,0.000000,0.000074,0.123912,-0.000081,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000009,0.000006,0.000220,0.000000,0.000000,0.000071,0.123832,-0.000080,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000008,0.000006,0.000221,0.000000,0.000000,0.000069,0.123753,-0.000079,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000008,0.000006,0.000221,0.000000,0.000000,0.000067,0.123675,-0.000078,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000008,0.000006,0.000222,0.000000,0.000000,0.000065,0.123599,-0.000076,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000008,0.000006,0.000223,0.000000,0.000000,0.000063,0.123524,-0.000075,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000007,0.000006,0.000223,0.000000,0.000000,0.000062,0.123449,-0.000074,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000007,0.000006,0.000224,0.000000,0.000000,0.000060,0.123376,-0.000073,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000007,0.000005,0.000225,0.000104,0.000104,0.000058,0.123202,-0.000175,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620878.csv b/test/channel_loss/channel_forcing/et/cat-2620878.csv new file mode 100644 index 000000000..ebad690f0 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620878.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000020,0.000000,0.000000,0.000000,0.000000,0.001502,0.000588,0.001502,0.000167,0.000167,0.010682,0.430522,-0.004734,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001374,0.000578,0.001374,0.000042,0.000042,0.009887,0.425966,-0.004556,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001264,0.000569,0.001264,0.000000,0.000000,0.009192,0.421522,-0.004443,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001170,0.000560,0.001170,0.000000,0.000000,0.008582,0.417149,-0.004373,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001088,0.000551,0.001088,0.000000,0.000000,0.008045,0.412845,-0.004304,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001017,0.000543,0.001017,0.000000,0.000000,0.007571,0.408609,-0.004236,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000955,0.000534,0.000955,0.000000,0.000000,0.007150,0.404440,-0.004169,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000900,0.000526,0.000901,0.000000,0.000000,0.006776,0.400337,-0.004103,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000851,0.000517,0.000852,0.000000,0.000000,0.006442,0.396299,-0.004038,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000808,0.000509,0.000810,0.000000,0.000000,0.006143,0.392325,-0.003974,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000770,0.000501,0.000772,0.000000,0.000000,0.005874,0.388413,-0.003912,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000736,0.000493,0.000738,0.000000,0.000000,0.005631,0.384563,-0.003850,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000705,0.000485,0.000707,0.000000,0.000000,0.005412,0.380774,-0.003789,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000677,0.000478,0.000680,0.000000,0.000000,0.005213,0.377045,-0.003729,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000652,0.000470,0.000655,0.000121,0.000121,0.005031,0.373256,-0.003789,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000629,0.000462,0.000632,0.000344,0.000344,0.004864,0.369307,-0.003948,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000607,0.000453,0.000611,0.000514,0.000514,0.004710,0.365254,-0.004054,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000588,0.000445,0.000592,0.000655,0.000655,0.004568,0.361125,-0.004128,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000570,0.000437,0.000574,0.000643,0.000643,0.004435,0.357074,-0.004051,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000005,0.000553,0.000429,0.000558,0.000567,0.000567,0.004310,0.353167,-0.003907,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000268,0.000000,0.000000,0.000000,0.000006,0.000537,0.000421,0.000543,0.000484,0.000484,0.004195,0.349661,-0.003506,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000118,0.000000,0.000000,0.000000,0.000007,0.000522,0.000414,0.000529,0.000373,0.000373,0.004087,0.346174,-0.003488,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000011,0.000000,0.000000,0.000000,0.000007,0.000509,0.000407,0.000516,0.000303,0.000303,0.003985,0.342704,-0.003470,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000043,0.000000,0.000000,0.000000,0.000008,0.000496,0.000400,0.000504,0.000232,0.000232,0.003890,0.339390,-0.003313,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000977,0.000034,0.000062,0.000034,0.000008,0.000484,0.000395,0.000527,0.000149,0.000149,0.003801,0.337069,-0.002321,1.000000,0.000028 +25,2022-08-02 01:00:00,0.000741,0.000039,0.000043,0.000039,0.000009,0.000473,0.000390,0.000521,0.000056,0.000056,0.003719,0.334662,-0.002407,1.000000,0.000032 +26,2022-08-02 02:00:00,0.000695,0.000048,0.000044,0.000048,0.000010,0.000463,0.000386,0.000520,0.000000,0.000000,0.003642,0.332302,-0.002360,1.000000,0.000028 +27,2022-08-02 03:00:00,0.000210,0.000022,0.000004,0.000022,0.000011,0.000453,0.000380,0.000485,0.000000,0.000000,0.003569,0.329542,-0.002760,1.000000,0.000011 +28,2022-08-02 04:00:00,0.000152,0.000011,0.000002,0.000011,0.000011,0.000444,0.000374,0.000466,0.000000,0.000000,0.003500,0.326770,-0.002772,1.000000,0.000002 +29,2022-08-02 05:00:00,0.000075,0.000002,0.000001,0.000002,0.000012,0.000435,0.000369,0.000449,0.000000,0.000000,0.003433,0.323968,-0.002802,1.000000,0.000001 +30,2022-08-02 06:00:00,0.000153,0.000002,0.000002,0.000002,0.000013,0.000426,0.000363,0.000441,0.000000,0.000000,0.003370,0.321285,-0.002683,1.000000,0.000001 +31,2022-08-02 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000014,0.000418,0.000357,0.000433,0.000000,0.000000,0.003309,0.318496,-0.002789,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000411,0.000352,0.000425,0.000000,0.000000,0.003250,0.315752,-0.002745,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000403,0.000346,0.000418,0.000000,0.000000,0.003193,0.313050,-0.002701,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000396,0.000341,0.000412,0.000000,0.000000,0.003138,0.310391,-0.002659,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000389,0.000335,0.000406,0.000000,0.000000,0.003084,0.307775,-0.002617,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000382,0.000330,0.000400,0.000000,0.000000,0.003032,0.305199,-0.002575,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000375,0.000325,0.000394,0.000000,0.000000,0.002982,0.302665,-0.002535,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000369,0.000319,0.000388,0.000104,0.000104,0.002932,0.300068,-0.002597,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000362,0.000314,0.000383,0.000323,0.000323,0.002883,0.297296,-0.002772,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000356,0.000308,0.000377,0.000484,0.000484,0.002835,0.294410,-0.002886,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000350,0.000302,0.000372,0.000625,0.000625,0.002787,0.291431,-0.002979,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000037,0.000000,0.000000,0.000000,0.000023,0.000344,0.000295,0.000367,0.000733,0.000733,0.002739,0.288429,-0.003002,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000337,0.000289,0.000361,0.000656,0.000656,0.002691,0.285514,-0.002916,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000331,0.000284,0.000356,0.000549,0.000549,0.002643,0.282750,-0.002764,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000325,0.000278,0.000351,0.000480,0.000480,0.002597,0.280097,-0.002653,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000319,0.000273,0.000346,0.000393,0.000393,0.002551,0.277572,-0.002525,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000313,0.000268,0.000341,0.000299,0.000299,0.002505,0.275180,-0.002392,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000308,0.000264,0.000337,0.000163,0.000163,0.002461,0.272960,-0.002221,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000302,0.000259,0.000332,0.000023,0.000023,0.002419,0.270912,-0.002047,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000297,0.000255,0.000328,0.000000,0.000000,0.002377,0.268919,-0.001993,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000292,0.000251,0.000324,0.000000,0.000000,0.002337,0.266958,-0.001961,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000286,0.000247,0.000320,0.000000,0.000000,0.002298,0.265028,-0.001930,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000282,0.000243,0.000316,0.000000,0.000000,0.002260,0.263128,-0.001900,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000277,0.000240,0.000312,0.000000,0.000000,0.002222,0.261259,-0.001870,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000272,0.000236,0.000309,0.000000,0.000000,0.002186,0.259418,-0.001840,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000268,0.000232,0.000305,0.000000,0.000000,0.002150,0.257607,-0.001811,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000263,0.000228,0.000302,0.000000,0.000000,0.002116,0.255825,-0.001782,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000259,0.000225,0.000299,0.000000,0.000000,0.002082,0.254071,-0.001754,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000254,0.000221,0.000295,0.000000,0.000000,0.002048,0.252344,-0.001727,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000250,0.000218,0.000292,0.000000,0.000000,0.002016,0.250645,-0.001699,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000246,0.000214,0.000289,0.000000,0.000000,0.001984,0.248972,-0.001672,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000242,0.000211,0.000287,0.000117,0.000117,0.001952,0.247211,-0.001761,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000238,0.000207,0.000284,0.000349,0.000349,0.001920,0.245250,-0.001961,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000234,0.000202,0.000281,0.000516,0.000516,0.001889,0.243154,-0.002095,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000230,0.000198,0.000278,0.000658,0.000658,0.001856,0.240953,-0.002201,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000226,0.000193,0.000275,0.000665,0.000665,0.001824,0.238779,-0.002174,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000222,0.000189,0.000272,0.000602,0.000602,0.001791,0.236702,-0.002077,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000190,0.000000,0.000000,0.000000,0.000051,0.000218,0.000185,0.000269,0.000493,0.000493,0.001759,0.234952,-0.001750,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000020,0.000000,0.000000,0.000000,0.000052,0.000214,0.000182,0.000266,0.000420,0.000420,0.001727,0.233134,-0.001818,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000006,0.000000,0.000000,0.000000,0.000054,0.000210,0.000178,0.000263,0.000350,0.000350,0.001695,0.231400,-0.001734,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000011,0.000000,0.000000,0.000000,0.000055,0.000206,0.000175,0.000260,0.000257,0.000257,0.001664,0.229789,-0.001610,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000202,0.000172,0.000258,0.000150,0.000150,0.001634,0.228299,-0.001490,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000198,0.000169,0.000255,0.000033,0.000033,0.001605,0.226947,-0.001352,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000195,0.000166,0.000253,0.000000,0.000000,0.001577,0.225649,-0.001298,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000031,0.000000,0.000000,0.000000,0.000060,0.000191,0.000164,0.000251,0.000000,0.000000,0.001549,0.224402,-0.001247,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000061,0.000188,0.000161,0.000249,0.000000,0.000000,0.001522,0.223156,-0.001247,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000020,0.000000,0.000000,0.000000,0.000062,0.000185,0.000159,0.000246,0.000000,0.000000,0.001497,0.221938,-0.001218,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000181,0.000156,0.000244,0.000000,0.000000,0.001471,0.220719,-0.001219,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000178,0.000154,0.000243,0.000000,0.000000,0.001447,0.219520,-0.001199,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000175,0.000151,0.000241,0.000000,0.000000,0.001423,0.218339,-0.001180,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000172,0.000149,0.000239,0.000000,0.000000,0.001399,0.217177,-0.001162,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000169,0.000146,0.000237,0.000000,0.000000,0.001376,0.216034,-0.001143,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000167,0.000144,0.000236,0.000000,0.000000,0.001354,0.214908,-0.001125,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000164,0.000142,0.000234,0.000000,0.000000,0.001332,0.213801,-0.001108,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000161,0.000140,0.000233,0.000000,0.000000,0.001310,0.212711,-0.001090,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000158,0.000137,0.000231,0.000116,0.000116,0.001289,0.211523,-0.001187,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000156,0.000134,0.000230,0.000349,0.000349,0.001268,0.210126,-0.001398,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000153,0.000131,0.000228,0.000520,0.000520,0.001246,0.208582,-0.001544,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000150,0.000128,0.000227,0.000661,0.000661,0.001223,0.206924,-0.001658,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000147,0.000124,0.000225,0.000700,0.000700,0.001200,0.205253,-0.001671,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000144,0.000121,0.000223,0.000657,0.000657,0.001177,0.203652,-0.001602,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000142,0.000118,0.000221,0.000563,0.000563,0.001153,0.202168,-0.001484,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000139,0.000115,0.000220,0.000470,0.000470,0.001130,0.200799,-0.001369,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000136,0.000113,0.000218,0.000382,0.000382,0.001106,0.199539,-0.001260,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000184,0.000000,0.000000,0.000000,0.000084,0.000133,0.000111,0.000217,0.000295,0.000295,0.001084,0.198565,-0.000974,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000256,0.000000,0.000001,0.000000,0.000085,0.000130,0.000109,0.000215,0.000175,0.000175,0.001063,0.197795,-0.000770,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000190,0.000001,0.000002,0.000001,0.000086,0.000128,0.000108,0.000215,0.000043,0.000043,0.001043,0.197101,-0.000694,1.000000,0.000001 +98,2022-08-05 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000087,0.000125,0.000106,0.000213,0.000000,0.000000,0.001023,0.196275,-0.000826,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000123,0.000104,0.000212,0.000000,0.000000,0.001004,0.195462,-0.000813,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000121,0.000103,0.000210,0.000000,0.000000,0.000986,0.194661,-0.000800,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000119,0.000101,0.000209,0.000000,0.000000,0.000968,0.193874,-0.000788,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000116,0.000099,0.000208,0.000000,0.000000,0.000951,0.193099,-0.000775,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000114,0.000098,0.000208,0.000000,0.000000,0.000935,0.192336,-0.000763,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000112,0.000096,0.000207,0.000000,0.000000,0.000918,0.191585,-0.000751,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000110,0.000095,0.000206,0.000000,0.000000,0.000903,0.190846,-0.000739,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000109,0.000093,0.000205,0.000000,0.000000,0.000887,0.190118,-0.000727,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000107,0.000092,0.000205,0.000000,0.000000,0.000872,0.189403,-0.000716,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000105,0.000090,0.000204,0.000000,0.000000,0.000858,0.188698,-0.000705,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000103,0.000089,0.000203,0.000000,0.000000,0.000844,0.188005,-0.000693,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000101,0.000087,0.000203,0.000126,0.000126,0.000829,0.187198,-0.000807,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000100,0.000085,0.000202,0.000352,0.000352,0.000815,0.186182,-0.001016,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000098,0.000083,0.000202,0.000521,0.000521,0.000800,0.185015,-0.001167,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000096,0.000080,0.000201,0.000667,0.000667,0.000784,0.183723,-0.001292,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000094,0.000077,0.000200,0.000689,0.000689,0.000768,0.182431,-0.001292,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000107,0.000092,0.000075,0.000199,0.000613,0.000613,0.000751,0.181239,-0.001192,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000262,0.000000,0.000000,0.000000,0.000108,0.000090,0.000073,0.000198,0.000520,0.000520,0.000735,0.180410,-0.000829,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000289,0.000000,0.000000,0.000000,0.000110,0.000088,0.000072,0.000197,0.000420,0.000420,0.000719,0.179719,-0.000691,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000022,0.000000,0.000000,0.000000,0.000111,0.000086,0.000070,0.000197,0.000343,0.000343,0.000703,0.178851,-0.000868,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000011,0.000000,0.000000,0.000000,0.000112,0.000084,0.000068,0.000196,0.000269,0.000269,0.000687,0.178060,-0.000791,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000175,0.000000,0.000000,0.000000,0.000113,0.000082,0.000067,0.000195,0.000161,0.000161,0.000673,0.177548,-0.000512,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000446,0.000006,0.000011,0.000006,0.000114,0.000080,0.000067,0.000201,0.000054,0.000054,0.000659,0.177405,-0.000143,1.000000,0.000005 +122,2022-08-06 02:00:00,0.000074,0.000003,0.000000,0.000003,0.000115,0.000079,0.000066,0.000197,0.000000,0.000000,0.000647,0.176963,-0.000442,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000315,0.000006,0.000007,0.000006,0.000117,0.000077,0.000066,0.000200,0.000000,0.000000,0.000635,0.176758,-0.000205,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000040,0.000002,0.000000,0.000002,0.000118,0.000076,0.000065,0.000196,0.000000,0.000000,0.000624,0.176292,-0.000466,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000028,0.000002,0.000000,0.000002,0.000119,0.000075,0.000064,0.000195,0.000000,0.000000,0.000613,0.175822,-0.000470,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000047,0.000000,0.000000,0.000000,0.000120,0.000073,0.000063,0.000193,0.000000,0.000000,0.000602,0.175378,-0.000444,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000072,0.000062,0.000193,0.000000,0.000000,0.000592,0.174895,-0.000483,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000071,0.000061,0.000193,0.000000,0.000000,0.000582,0.174420,-0.000475,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000070,0.000060,0.000193,0.000000,0.000000,0.000572,0.173952,-0.000468,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000069,0.000059,0.000193,0.000000,0.000000,0.000563,0.173492,-0.000460,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000067,0.000058,0.000193,0.000000,0.000000,0.000553,0.173039,-0.000453,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000066,0.000057,0.000193,0.000000,0.000000,0.000544,0.172593,-0.000446,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000065,0.000056,0.000193,0.000000,0.000000,0.000535,0.172154,-0.000439,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000064,0.000055,0.000193,0.000110,0.000110,0.000526,0.171614,-0.000540,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000063,0.000054,0.000193,0.000333,0.000333,0.000517,0.170863,-0.000751,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000062,0.000052,0.000193,0.000504,0.000504,0.000507,0.169956,-0.000907,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000060,0.000050,0.000192,0.000645,0.000645,0.000496,0.168924,-0.001032,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000059,0.000047,0.000192,0.000729,0.000729,0.000485,0.167825,-0.001099,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000057,0.000045,0.000192,0.000667,0.000667,0.000472,0.166805,-0.001020,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000056,0.000043,0.000191,0.000570,0.000570,0.000460,0.165898,-0.000908,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000054,0.000042,0.000191,0.000481,0.000481,0.000447,0.165091,-0.000807,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000053,0.000040,0.000190,0.000393,0.000393,0.000435,0.164384,-0.000707,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000051,0.000039,0.000190,0.000298,0.000298,0.000422,0.163782,-0.000602,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000050,0.000038,0.000189,0.000159,0.000159,0.000410,0.163325,-0.000456,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000049,0.000037,0.000189,0.000033,0.000033,0.000399,0.163000,-0.000325,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000047,0.000037,0.000189,0.000000,0.000000,0.000389,0.162713,-0.000287,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000046,0.000036,0.000189,0.000000,0.000000,0.000379,0.162430,-0.000283,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000045,0.000036,0.000188,0.000000,0.000000,0.000370,0.162152,-0.000278,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000044,0.000035,0.000188,0.000000,0.000000,0.000361,0.161878,-0.000274,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000043,0.000035,0.000188,0.000000,0.000000,0.000353,0.161609,-0.000270,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000042,0.000034,0.000188,0.000000,0.000000,0.000345,0.161344,-0.000265,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000041,0.000033,0.000189,0.000000,0.000000,0.000337,0.161083,-0.000261,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000040,0.000033,0.000189,0.000000,0.000000,0.000330,0.160826,-0.000257,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000039,0.000032,0.000189,0.000000,0.000000,0.000323,0.160573,-0.000253,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000038,0.000032,0.000189,0.000000,0.000000,0.000317,0.160324,-0.000249,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000038,0.000031,0.000189,0.000000,0.000000,0.000311,0.160079,-0.000245,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000037,0.000031,0.000189,0.000000,0.000000,0.000304,0.159838,-0.000241,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000036,0.000030,0.000190,0.000104,0.000104,0.000298,0.159498,-0.000340,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000035,0.000029,0.000190,0.000326,0.000326,0.000292,0.158945,-0.000552,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000035,0.000028,0.000190,0.000497,0.000497,0.000285,0.158233,-0.000712,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000034,0.000026,0.000190,0.000639,0.000639,0.000277,0.157392,-0.000841,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000033,0.000024,0.000190,0.000725,0.000725,0.000269,0.156480,-0.000912,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000031,0.000022,0.000190,0.000662,0.000662,0.000259,0.155645,-0.000835,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000030,0.000021,0.000190,0.000559,0.000559,0.000250,0.154924,-0.000721,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000029,0.000019,0.000189,0.000479,0.000479,0.000240,0.154293,-0.000631,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000028,0.000018,0.000189,0.000390,0.000390,0.000231,0.153759,-0.000533,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000027,0.000017,0.000189,0.000290,0.000290,0.000221,0.153333,-0.000427,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000026,0.000017,0.000189,0.000135,0.000135,0.000213,0.153066,-0.000267,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000025,0.000017,0.000189,0.000006,0.000006,0.000204,0.152930,-0.000136,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000024,0.000016,0.000189,0.000000,0.000000,0.000197,0.152802,-0.000128,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000023,0.000016,0.000189,0.000000,0.000000,0.000190,0.152676,-0.000126,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000022,0.000016,0.000189,0.000000,0.000000,0.000184,0.152552,-0.000124,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000022,0.000016,0.000189,0.000000,0.000000,0.000178,0.152430,-0.000122,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000021,0.000015,0.000189,0.000000,0.000000,0.000172,0.152310,-0.000120,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000020,0.000015,0.000189,0.000000,0.000000,0.000167,0.152191,-0.000118,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000020,0.000015,0.000190,0.000000,0.000000,0.000163,0.152075,-0.000116,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000019,0.000015,0.000190,0.000000,0.000000,0.000158,0.151960,-0.000115,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000019,0.000014,0.000190,0.000000,0.000000,0.000154,0.151848,-0.000113,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000018,0.000014,0.000191,0.000000,0.000000,0.000150,0.151737,-0.000111,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000018,0.000014,0.000191,0.000000,0.000000,0.000146,0.151627,-0.000109,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000017,0.000014,0.000192,0.000000,0.000000,0.000143,0.151520,-0.000107,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000017,0.000013,0.000192,0.000091,0.000091,0.000139,0.151325,-0.000195,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000016,0.000013,0.000192,0.000314,0.000314,0.000135,0.150913,-0.000412,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000016,0.000011,0.000193,0.000489,0.000489,0.000131,0.150336,-0.000577,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000015,0.000010,0.000193,0.000626,0.000626,0.000126,0.149633,-0.000703,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000014,0.000008,0.000193,0.000724,0.000724,0.000119,0.148845,-0.000789,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000014,0.000007,0.000193,0.000640,0.000640,0.000113,0.148151,-0.000694,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000013,0.000006,0.000193,0.000546,0.000546,0.000105,0.147561,-0.000590,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000012,0.000005,0.000193,0.000479,0.000479,0.000098,0.147047,-0.000514,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000011,0.000004,0.000193,0.000388,0.000388,0.000091,0.146629,-0.000417,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000010,0.000003,0.000193,0.000295,0.000295,0.000084,0.146311,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000009,0.000003,0.000192,0.000166,0.000166,0.000077,0.146124,-0.000187,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000009,0.000003,0.000193,0.000030,0.000030,0.000071,0.146074,-0.000050,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000144,0.000001,0.000001,0.000001,0.000185,0.000008,0.000003,0.000193,0.000000,0.000000,0.000066,0.146194,0.000120,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000050,0.000000,0.000000,0.000000,0.000185,0.000007,0.000003,0.000193,0.000000,0.000000,0.000061,0.146221,0.000028,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000007,0.000003,0.000193,0.000000,0.000000,0.000057,0.146199,-0.000022,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000006,0.000003,0.000193,0.000000,0.000000,0.000054,0.146178,-0.000022,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000006,0.000003,0.000194,0.000000,0.000000,0.000050,0.146156,-0.000021,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000006,0.000003,0.000194,0.000000,0.000000,0.000047,0.146135,-0.000021,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000005,0.000003,0.000195,0.000000,0.000000,0.000045,0.146114,-0.000021,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000005,0.000003,0.000195,0.000000,0.000000,0.000042,0.146094,-0.000020,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000006,0.000000,0.000000,0.000000,0.000191,0.000005,0.000003,0.000195,0.000000,0.000000,0.000040,0.146080,-0.000015,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000005,0.000003,0.000196,0.000000,0.000000,0.000038,0.146060,-0.000020,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000004,0.000002,0.000196,0.000000,0.000000,0.000036,0.146040,-0.000019,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000004,0.000002,0.000197,0.000000,0.000000,0.000034,0.146021,-0.000019,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000004,0.000002,0.000197,0.000101,0.000101,0.000033,0.145902,-0.000119,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620879.csv b/test/channel_loss/channel_forcing/et/cat-2620879.csv new file mode 100644 index 000000000..2b9688064 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620879.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001468,0.000342,0.001468,0.000169,0.000169,0.010471,0.430123,-0.004498,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001312,0.000337,0.001312,0.000042,0.000042,0.009495,0.425819,-0.004305,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001180,0.000332,0.001180,0.000000,0.000000,0.008647,0.421620,-0.004199,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001067,0.000327,0.001067,0.000000,0.000000,0.007906,0.417483,-0.004136,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000970,0.000322,0.000971,0.000000,0.000000,0.007258,0.413410,-0.004074,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000887,0.000317,0.000887,0.000000,0.000000,0.006688,0.409397,-0.004013,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000814,0.000312,0.000815,0.000000,0.000000,0.006185,0.405444,-0.003953,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000751,0.000307,0.000752,0.000000,0.000000,0.005741,0.401551,-0.003893,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000696,0.000303,0.000697,0.000000,0.000000,0.005348,0.397716,-0.003835,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000647,0.000298,0.000648,0.000000,0.000000,0.004999,0.393939,-0.003777,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000604,0.000294,0.000606,0.000000,0.000000,0.004689,0.390219,-0.003720,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000566,0.000289,0.000568,0.000000,0.000000,0.004411,0.386554,-0.003665,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000533,0.000285,0.000535,0.000000,0.000000,0.004164,0.382945,-0.003610,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000281,0.000505,0.000000,0.000000,0.003942,0.379389,-0.003555,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000476,0.000276,0.000479,0.000125,0.000125,0.003742,0.375765,-0.003625,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000452,0.000272,0.000455,0.000362,0.000362,0.003562,0.371961,-0.003804,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000430,0.000267,0.000434,0.000545,0.000545,0.003399,0.368034,-0.003927,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000411,0.000262,0.000415,0.000683,0.000683,0.003250,0.364030,-0.004004,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000393,0.000257,0.000398,0.000672,0.000672,0.003115,0.360096,-0.003934,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000377,0.000253,0.000382,0.000615,0.000615,0.002991,0.356278,-0.003818,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000077,0.000000,0.000000,0.000000,0.000006,0.000362,0.000249,0.000368,0.000497,0.000497,0.002878,0.352709,-0.003569,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000124,0.000000,0.000000,0.000000,0.000007,0.000348,0.000245,0.000355,0.000377,0.000377,0.002774,0.349359,-0.003350,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000007,0.000336,0.000241,0.000343,0.000293,0.000293,0.002679,0.346020,-0.003339,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000008,0.000324,0.000237,0.000332,0.000225,0.000225,0.002591,0.342797,-0.003223,1.000000,0.000000 +24,2022-08-02 00:00:00,0.001281,0.000105,0.000191,0.000105,0.000008,0.000314,0.000234,0.000428,0.000135,0.000135,0.002512,0.340785,-0.002012,1.000000,0.000086 +25,2022-08-02 01:00:00,0.000709,0.000085,0.000068,0.000085,0.000009,0.000305,0.000231,0.000399,0.000050,0.000050,0.002438,0.338446,-0.002340,1.000000,0.000069 +26,2022-08-02 02:00:00,0.000294,0.000063,0.000014,0.000063,0.000010,0.000296,0.000228,0.000369,0.000000,0.000000,0.002371,0.335834,-0.002612,1.000000,0.000020 +27,2022-08-02 03:00:00,0.000000,0.000017,0.000000,0.000017,0.000011,0.000288,0.000225,0.000315,0.000000,0.000000,0.002308,0.332986,-0.002848,1.000000,0.000003 +28,2022-08-02 04:00:00,0.000000,0.000003,0.000000,0.000003,0.000011,0.000280,0.000221,0.000294,0.000000,0.000000,0.002249,0.330181,-0.002805,1.000000,0.000000 +29,2022-08-02 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000012,0.000273,0.000218,0.000285,0.000000,0.000000,0.002194,0.327418,-0.002763,1.000000,0.000000 +30,2022-08-02 06:00:00,0.000100,0.000001,0.000002,0.000001,0.000013,0.000267,0.000215,0.000280,0.000000,0.000000,0.002143,0.324793,-0.002625,1.000000,0.000001 +31,2022-08-02 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000260,0.000212,0.000274,0.000000,0.000000,0.002094,0.322111,-0.002682,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000014,0.000254,0.000209,0.000269,0.000000,0.000000,0.002048,0.319469,-0.002642,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000249,0.000205,0.000264,0.000000,0.000000,0.002005,0.316867,-0.002602,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000244,0.000202,0.000260,0.000000,0.000000,0.001963,0.314303,-0.002563,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000239,0.000199,0.000256,0.000000,0.000000,0.001924,0.311779,-0.002525,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000234,0.000196,0.000252,0.000000,0.000000,0.001886,0.309292,-0.002487,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000229,0.000193,0.000248,0.000000,0.000000,0.001851,0.306842,-0.002449,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000225,0.000190,0.000245,0.000103,0.000103,0.001816,0.304328,-0.002514,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000221,0.000187,0.000241,0.000343,0.000343,0.001782,0.301615,-0.002713,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000216,0.000184,0.000238,0.000515,0.000515,0.001750,0.298774,-0.002841,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000212,0.000180,0.000235,0.000664,0.000664,0.001717,0.295828,-0.002946,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000208,0.000176,0.000232,0.000775,0.000775,0.001685,0.292818,-0.003010,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000204,0.000173,0.000229,0.000689,0.000689,0.001654,0.289937,-0.002881,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000201,0.000170,0.000226,0.000562,0.000562,0.001623,0.287224,-0.002713,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000197,0.000167,0.000223,0.000518,0.000518,0.001593,0.284597,-0.002628,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000193,0.000164,0.000220,0.000416,0.000416,0.001564,0.282108,-0.002488,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000189,0.000161,0.000218,0.000307,0.000307,0.001535,0.279765,-0.002344,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000186,0.000158,0.000215,0.000168,0.000168,0.001507,0.277593,-0.002171,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000183,0.000156,0.000213,0.000023,0.000023,0.001481,0.275598,-0.001996,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000179,0.000153,0.000211,0.000000,0.000000,0.001455,0.273654,-0.001944,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000176,0.000151,0.000209,0.000000,0.000000,0.001430,0.271740,-0.001914,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000173,0.000149,0.000207,0.000000,0.000000,0.001406,0.269854,-0.001886,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000170,0.000147,0.000205,0.000000,0.000000,0.001382,0.267997,-0.001857,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000167,0.000144,0.000203,0.000000,0.000000,0.001359,0.266167,-0.001829,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000164,0.000142,0.000201,0.000000,0.000000,0.001337,0.264366,-0.001802,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000162,0.000140,0.000200,0.000000,0.000000,0.001315,0.262591,-0.001775,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000159,0.000138,0.000198,0.000000,0.000000,0.001294,0.260842,-0.001748,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000157,0.000136,0.000197,0.000000,0.000000,0.001274,0.259121,-0.001722,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000154,0.000134,0.000195,0.000000,0.000000,0.001253,0.257424,-0.001696,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000152,0.000132,0.000194,0.000000,0.000000,0.001234,0.255754,-0.001671,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000149,0.000130,0.000193,0.000000,0.000000,0.001214,0.254108,-0.001646,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000147,0.000128,0.000192,0.000124,0.000124,0.001196,0.252365,-0.001743,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000144,0.000125,0.000190,0.000375,0.000375,0.001177,0.250401,-0.001964,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000142,0.000123,0.000189,0.000555,0.000555,0.001157,0.248289,-0.002112,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000140,0.000120,0.000188,0.000703,0.000703,0.001138,0.246063,-0.002225,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000137,0.000118,0.000187,0.000701,0.000701,0.001118,0.243872,-0.002191,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000135,0.000115,0.000185,0.000629,0.000629,0.001099,0.241786,-0.002087,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000132,0.000113,0.000184,0.000517,0.000517,0.001079,0.239841,-0.001945,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000130,0.000111,0.000183,0.000456,0.000456,0.001060,0.237985,-0.001856,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000349,0.000000,0.000000,0.000000,0.000054,0.000128,0.000109,0.000182,0.000354,0.000354,0.001041,0.236602,-0.001383,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000132,0.000000,0.000000,0.000000,0.000055,0.000125,0.000107,0.000181,0.000251,0.000251,0.001023,0.235127,-0.001475,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000123,0.000105,0.000180,0.000149,0.000149,0.001005,0.233644,-0.001482,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000121,0.000104,0.000179,0.000032,0.000032,0.000988,0.232299,-0.001345,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000119,0.000102,0.000178,0.000000,0.000000,0.000971,0.231006,-0.001293,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000117,0.000101,0.000177,0.000000,0.000000,0.000955,0.229732,-0.001274,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000041,0.000000,0.000000,0.000000,0.000061,0.000115,0.000099,0.000176,0.000000,0.000000,0.000939,0.228517,-0.001215,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000113,0.000098,0.000176,0.000000,0.000000,0.000924,0.227281,-0.001237,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000111,0.000096,0.000175,0.000000,0.000000,0.000909,0.226062,-0.001218,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000109,0.000095,0.000174,0.000000,0.000000,0.000894,0.224863,-0.001200,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000108,0.000093,0.000174,0.000000,0.000000,0.000880,0.223681,-0.001182,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000106,0.000092,0.000173,0.000000,0.000000,0.000866,0.222517,-0.001164,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000104,0.000091,0.000173,0.000000,0.000000,0.000852,0.221371,-0.001147,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000102,0.000089,0.000172,0.000000,0.000000,0.000839,0.220241,-0.001129,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000101,0.000088,0.000172,0.000000,0.000000,0.000826,0.219129,-0.001112,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000099,0.000086,0.000172,0.000000,0.000000,0.000813,0.218033,-0.001096,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000098,0.000085,0.000171,0.000119,0.000119,0.000800,0.216836,-0.001197,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000096,0.000083,0.000171,0.000369,0.000369,0.000787,0.215412,-0.001425,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000095,0.000081,0.000171,0.000548,0.000548,0.000774,0.213832,-0.001579,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000093,0.000079,0.000170,0.000690,0.000690,0.000761,0.212137,-0.001696,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000091,0.000077,0.000170,0.000672,0.000672,0.000747,0.210484,-0.001652,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000089,0.000075,0.000169,0.000677,0.000677,0.000733,0.208852,-0.001633,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000088,0.000074,0.000169,0.000594,0.000594,0.000719,0.207326,-0.001526,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000086,0.000072,0.000168,0.000485,0.000485,0.000705,0.205930,-0.001396,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000084,0.000070,0.000168,0.000390,0.000390,0.000691,0.204648,-0.001282,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000565,0.000005,0.000010,0.000005,0.000085,0.000083,0.000070,0.000173,0.000297,0.000297,0.000678,0.204024,-0.000624,1.000000,0.000004 +96,2022-08-05 00:00:00,0.000641,0.000018,0.000028,0.000018,0.000086,0.000081,0.000069,0.000185,0.000178,0.000178,0.000666,0.203584,-0.000440,1.000000,0.000014 +97,2022-08-05 01:00:00,0.000682,0.000037,0.000051,0.000037,0.000087,0.000080,0.000069,0.000204,0.000046,0.000046,0.000655,0.203298,-0.000286,1.000000,0.000029 +98,2022-08-05 02:00:00,0.000000,0.000018,0.000000,0.000018,0.000088,0.000078,0.000068,0.000185,0.000000,0.000000,0.000644,0.202440,-0.000858,1.000000,0.000010 +99,2022-08-05 03:00:00,0.000000,0.000010,0.000000,0.000010,0.000090,0.000077,0.000067,0.000177,0.000000,0.000000,0.000634,0.201595,-0.000845,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000076,0.000066,0.000167,0.000000,0.000000,0.000623,0.200762,-0.000832,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000075,0.000065,0.000167,0.000000,0.000000,0.000613,0.199943,-0.000820,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000074,0.000064,0.000167,0.000000,0.000000,0.000604,0.199135,-0.000808,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000072,0.000063,0.000167,0.000000,0.000000,0.000594,0.198340,-0.000795,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000071,0.000062,0.000167,0.000000,0.000000,0.000585,0.197556,-0.000783,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000070,0.000061,0.000167,0.000000,0.000000,0.000576,0.196784,-0.000772,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000069,0.000060,0.000167,0.000000,0.000000,0.000567,0.196024,-0.000760,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000068,0.000059,0.000167,0.000000,0.000000,0.000558,0.195276,-0.000749,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000067,0.000058,0.000168,0.000000,0.000000,0.000549,0.194538,-0.000737,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000066,0.000057,0.000168,0.000000,0.000000,0.000541,0.193812,-0.000726,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000065,0.000056,0.000168,0.000133,0.000133,0.000532,0.192966,-0.000846,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000064,0.000055,0.000168,0.000376,0.000376,0.000524,0.191892,-0.001074,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000063,0.000054,0.000168,0.000558,0.000558,0.000515,0.190656,-0.001236,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000061,0.000052,0.000168,0.000707,0.000707,0.000505,0.189292,-0.001364,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000060,0.000050,0.000168,0.000716,0.000716,0.000495,0.187939,-0.001352,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000059,0.000049,0.000168,0.000612,0.000612,0.000485,0.186709,-0.001231,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000370,0.000000,0.000000,0.000000,0.000110,0.000058,0.000048,0.000168,0.000524,0.000524,0.000475,0.185948,-0.000760,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000266,0.000000,0.000000,0.000000,0.000112,0.000057,0.000047,0.000168,0.000433,0.000433,0.000465,0.185186,-0.000762,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000055,0.000046,0.000168,0.000352,0.000352,0.000456,0.184253,-0.000933,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000054,0.000045,0.000168,0.000270,0.000270,0.000446,0.183416,-0.000838,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000248,0.000000,0.000001,0.000000,0.000115,0.000053,0.000044,0.000169,0.000165,0.000165,0.000437,0.182937,-0.000479,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000649,0.000025,0.000044,0.000025,0.000116,0.000052,0.000044,0.000193,0.000052,0.000052,0.000430,0.182929,-0.000008,1.000000,0.000020 +122,2022-08-06 02:00:00,0.000000,0.000011,0.000000,0.000011,0.000117,0.000051,0.000044,0.000180,0.000000,0.000000,0.000422,0.182377,-0.000552,1.000000,0.000009 +123,2022-08-06 03:00:00,0.000292,0.000015,0.000011,0.000015,0.000119,0.000050,0.000043,0.000184,0.000000,0.000000,0.000415,0.182110,-0.000267,1.000000,0.000005 +124,2022-08-06 04:00:00,0.000000,0.000003,0.000000,0.000003,0.000120,0.000050,0.000043,0.000172,0.000000,0.000000,0.000408,0.181571,-0.000540,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000000,0.000002,0.000000,0.000002,0.000121,0.000049,0.000042,0.000172,0.000000,0.000000,0.000401,0.181039,-0.000532,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000048,0.000041,0.000170,0.000000,0.000000,0.000395,0.180515,-0.000524,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000047,0.000041,0.000170,0.000000,0.000000,0.000388,0.179999,-0.000516,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000046,0.000040,0.000171,0.000000,0.000000,0.000382,0.179491,-0.000508,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000046,0.000040,0.000171,0.000000,0.000000,0.000376,0.178991,-0.000500,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000045,0.000039,0.000172,0.000000,0.000000,0.000370,0.178498,-0.000493,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000044,0.000038,0.000172,0.000000,0.000000,0.000364,0.178012,-0.000486,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000043,0.000038,0.000173,0.000000,0.000000,0.000358,0.177534,-0.000478,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000043,0.000037,0.000173,0.000000,0.000000,0.000353,0.177063,-0.000471,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000042,0.000036,0.000173,0.000116,0.000116,0.000347,0.176485,-0.000578,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000041,0.000036,0.000174,0.000354,0.000354,0.000341,0.175681,-0.000804,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000041,0.000034,0.000174,0.000544,0.000544,0.000335,0.174702,-0.000979,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000040,0.000033,0.000175,0.000690,0.000690,0.000328,0.173594,-0.001108,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000039,0.000032,0.000175,0.000766,0.000766,0.000321,0.172427,-0.001167,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000038,0.000030,0.000175,0.000684,0.000684,0.000313,0.171359,-0.001068,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000037,0.000029,0.000175,0.000597,0.000597,0.000305,0.170393,-0.000967,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000036,0.000028,0.000175,0.000496,0.000496,0.000297,0.169540,-0.000853,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000035,0.000027,0.000175,0.000402,0.000402,0.000289,0.168793,-0.000747,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000034,0.000026,0.000176,0.000297,0.000297,0.000282,0.168161,-0.000633,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000033,0.000026,0.000176,0.000157,0.000157,0.000274,0.167676,-0.000485,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000032,0.000025,0.000176,0.000033,0.000033,0.000267,0.167321,-0.000355,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000032,0.000025,0.000176,0.000000,0.000000,0.000261,0.167003,-0.000318,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000031,0.000025,0.000177,0.000000,0.000000,0.000255,0.166690,-0.000313,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000030,0.000024,0.000177,0.000000,0.000000,0.000249,0.166382,-0.000308,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000029,0.000024,0.000177,0.000000,0.000000,0.000243,0.166078,-0.000304,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000029,0.000024,0.000178,0.000000,0.000000,0.000238,0.165779,-0.000299,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000028,0.000023,0.000178,0.000000,0.000000,0.000233,0.165484,-0.000295,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000028,0.000023,0.000179,0.000000,0.000000,0.000228,0.165194,-0.000290,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000027,0.000023,0.000179,0.000000,0.000000,0.000224,0.164908,-0.000286,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000027,0.000022,0.000180,0.000000,0.000000,0.000219,0.164627,-0.000282,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000026,0.000022,0.000180,0.000000,0.000000,0.000215,0.164350,-0.000277,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000026,0.000022,0.000181,0.000000,0.000000,0.000211,0.164077,-0.000273,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000025,0.000021,0.000181,0.000000,0.000000,0.000207,0.163808,-0.000269,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000025,0.000021,0.000182,0.000111,0.000111,0.000203,0.163433,-0.000374,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000024,0.000020,0.000182,0.000353,0.000353,0.000199,0.162826,-0.000607,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000024,0.000019,0.000183,0.000536,0.000536,0.000195,0.162047,-0.000778,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000023,0.000018,0.000183,0.000680,0.000680,0.000190,0.161139,-0.000908,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000022,0.000017,0.000184,0.000765,0.000765,0.000184,0.160161,-0.000978,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000022,0.000016,0.000184,0.000693,0.000693,0.000179,0.159268,-0.000893,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000021,0.000015,0.000184,0.000577,0.000577,0.000173,0.158504,-0.000765,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000020,0.000014,0.000184,0.000494,0.000494,0.000166,0.157831,-0.000672,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000019,0.000013,0.000185,0.000400,0.000400,0.000160,0.157262,-0.000569,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000019,0.000013,0.000185,0.000293,0.000293,0.000154,0.156807,-0.000456,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000018,0.000012,0.000185,0.000140,0.000140,0.000149,0.156509,-0.000297,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000017,0.000012,0.000185,0.000004,0.000004,0.000144,0.156350,-0.000160,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000031,0.000000,0.000000,0.000000,0.000169,0.000017,0.000012,0.000186,0.000000,0.000000,0.000139,0.156227,-0.000123,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000016,0.000012,0.000186,0.000000,0.000000,0.000135,0.156076,-0.000151,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000016,0.000012,0.000187,0.000000,0.000000,0.000131,0.155927,-0.000149,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000015,0.000012,0.000187,0.000000,0.000000,0.000127,0.155781,-0.000147,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000015,0.000011,0.000188,0.000000,0.000000,0.000123,0.155636,-0.000144,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000015,0.000011,0.000188,0.000000,0.000000,0.000120,0.155494,-0.000142,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000014,0.000011,0.000189,0.000000,0.000000,0.000117,0.155354,-0.000140,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000014,0.000011,0.000189,0.000000,0.000000,0.000114,0.155216,-0.000138,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000013,0.000011,0.000190,0.000000,0.000000,0.000111,0.155080,-0.000136,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000013,0.000011,0.000190,0.000000,0.000000,0.000109,0.154946,-0.000134,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000013,0.000010,0.000191,0.000000,0.000000,0.000106,0.154814,-0.000132,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000013,0.000010,0.000192,0.000000,0.000000,0.000104,0.154684,-0.000130,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000012,0.000010,0.000192,0.000095,0.000095,0.000102,0.154462,-0.000222,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000012,0.000009,0.000193,0.000337,0.000337,0.000099,0.154005,-0.000457,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000012,0.000009,0.000193,0.000532,0.000532,0.000096,0.153364,-0.000642,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000011,0.000008,0.000194,0.000662,0.000662,0.000093,0.152604,-0.000760,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000011,0.000007,0.000194,0.000769,0.000769,0.000089,0.151750,-0.000854,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000010,0.000006,0.000194,0.000690,0.000690,0.000084,0.150987,-0.000763,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000010,0.000005,0.000195,0.000571,0.000571,0.000080,0.150352,-0.000635,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000009,0.000004,0.000195,0.000510,0.000510,0.000075,0.149787,-0.000565,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000009,0.000004,0.000195,0.000404,0.000404,0.000070,0.149335,-0.000452,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000008,0.000003,0.000195,0.000300,0.000300,0.000066,0.148992,-0.000343,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000007,0.000003,0.000196,0.000166,0.000166,0.000061,0.148786,-0.000206,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000007,0.000003,0.000196,0.000030,0.000030,0.000058,0.148717,-0.000069,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000007,0.000003,0.000196,0.000000,0.000000,0.000054,0.148678,-0.000038,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000008,0.000000,0.000000,0.000000,0.000191,0.000006,0.000003,0.000197,0.000000,0.000000,0.000051,0.148648,-0.000030,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000006,0.000000,0.000000,0.000000,0.000192,0.000006,0.000003,0.000197,0.000000,0.000000,0.000048,0.148617,-0.000031,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000002,0.000000,0.000000,0.000000,0.000192,0.000005,0.000003,0.000198,0.000000,0.000000,0.000045,0.148582,-0.000034,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000193,0.000005,0.000003,0.000198,0.000000,0.000000,0.000043,0.148549,-0.000033,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000005,0.000003,0.000199,0.000000,0.000000,0.000041,0.148513,-0.000036,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000005,0.000003,0.000199,0.000000,0.000000,0.000039,0.148478,-0.000035,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000005,0.000003,0.000200,0.000000,0.000000,0.000037,0.148443,-0.000035,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000004,0.000003,0.000200,0.000000,0.000000,0.000036,0.148409,-0.000034,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000004,0.000003,0.000201,0.000000,0.000000,0.000034,0.148375,-0.000034,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000004,0.000003,0.000202,0.000000,0.000000,0.000033,0.148342,-0.000033,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000004,0.000003,0.000202,0.000000,0.000000,0.000032,0.148309,-0.000033,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000004,0.000002,0.000203,0.000106,0.000106,0.000030,0.148173,-0.000136,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620880.csv b/test/channel_loss/channel_forcing/et/cat-2620880.csv new file mode 100644 index 000000000..523b44e1c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620880.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000273,0.000001,0.000001,0.000001,0.000000,0.001486,0.000473,0.001487,0.000187,0.000187,0.010583,0.426261,-0.004765,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001345,0.000466,0.001345,0.000056,0.000056,0.009704,0.421426,-0.004835,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001225,0.000459,0.001225,0.000000,0.000000,0.008938,0.416716,-0.004710,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001122,0.000452,0.001122,0.000000,0.000000,0.008269,0.412075,-0.004642,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001033,0.000446,0.001034,0.000000,0.000000,0.007681,0.407500,-0.004574,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000957,0.000439,0.000957,0.000000,0.000000,0.007164,0.402992,-0.004508,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000890,0.000433,0.000890,0.000000,0.000000,0.006707,0.398549,-0.004443,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000831,0.000427,0.000832,0.000000,0.000000,0.006303,0.394170,-0.004379,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000780,0.000421,0.000781,0.000000,0.000000,0.005943,0.389855,-0.004316,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000735,0.000414,0.000736,0.000000,0.000000,0.005623,0.385601,-0.004253,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000694,0.000408,0.000696,0.000000,0.000000,0.005337,0.381410,-0.004192,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000659,0.000403,0.000661,0.000000,0.000000,0.005081,0.377279,-0.004131,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000627,0.000397,0.000629,0.000000,0.000000,0.004851,0.373207,-0.004071,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000598,0.000391,0.000601,0.000000,0.000000,0.004644,0.369195,-0.004013,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000573,0.000385,0.000576,0.000130,0.000130,0.004457,0.365112,-0.004083,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000549,0.000379,0.000553,0.000370,0.000370,0.004286,0.360852,-0.004260,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000528,0.000373,0.000533,0.000533,0.000533,0.004131,0.356493,-0.004359,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000509,0.000367,0.000514,0.000651,0.000651,0.003989,0.352081,-0.004412,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000491,0.000360,0.000497,0.000612,0.000612,0.003857,0.347771,-0.004310,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000162,0.000000,0.000000,0.000000,0.000006,0.000475,0.000355,0.000481,0.000545,0.000545,0.003737,0.343749,-0.004022,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000131,0.000000,0.000000,0.000000,0.000007,0.000460,0.000349,0.000467,0.000479,0.000479,0.003625,0.339820,-0.003929,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000314,0.000000,0.000000,0.000000,0.000007,0.000447,0.000344,0.000454,0.000392,0.000392,0.003523,0.336214,-0.003606,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000131,0.000000,0.000000,0.000000,0.000008,0.000434,0.000339,0.000442,0.000333,0.000333,0.003427,0.332538,-0.003677,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000422,0.000334,0.000431,0.000266,0.000266,0.003339,0.329038,-0.003500,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000131,0.000000,0.000000,0.000000,0.000009,0.000411,0.000329,0.000421,0.000170,0.000170,0.003256,0.325625,-0.003412,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000527,0.000015,0.000027,0.000015,0.000010,0.000401,0.000325,0.000426,0.000073,0.000073,0.003179,0.322721,-0.002904,1.000000,0.000012 +26,2022-08-02 02:00:00,0.000816,0.000052,0.000083,0.000052,0.000011,0.000392,0.000321,0.000455,0.000000,0.000000,0.003108,0.320161,-0.002560,1.000000,0.000043 +27,2022-08-02 03:00:00,0.000847,0.000075,0.000088,0.000075,0.000012,0.000383,0.000317,0.000470,0.000000,0.000000,0.003043,0.317663,-0.002498,1.000000,0.000056 +28,2022-08-02 04:00:00,0.000938,0.000097,0.000107,0.000097,0.000012,0.000375,0.000314,0.000485,0.000000,0.000000,0.002981,0.315272,-0.002391,1.000000,0.000066 +29,2022-08-02 05:00:00,0.000660,0.000074,0.000054,0.000074,0.000013,0.000368,0.000310,0.000455,0.000000,0.000000,0.002924,0.312694,-0.002578,1.000000,0.000046 +30,2022-08-02 06:00:00,0.000617,0.000061,0.000048,0.000061,0.000014,0.000361,0.000307,0.000436,0.000000,0.000000,0.002870,0.310118,-0.002576,1.000000,0.000032 +31,2022-08-02 07:00:00,0.000000,0.000023,0.000000,0.000023,0.000015,0.000354,0.000302,0.000392,0.000000,0.000000,0.002818,0.307017,-0.003100,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000016,0.000347,0.000298,0.000373,0.000000,0.000000,0.002768,0.303962,-0.003056,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000341,0.000293,0.000358,0.000000,0.000000,0.002721,0.300950,-0.003011,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000335,0.000289,0.000353,0.000000,0.000000,0.002675,0.297982,-0.002968,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000329,0.000285,0.000348,0.000000,0.000000,0.002630,0.295057,-0.002925,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000324,0.000281,0.000344,0.000000,0.000000,0.002587,0.292175,-0.002883,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000318,0.000277,0.000339,0.000000,0.000000,0.002546,0.289334,-0.002841,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000313,0.000273,0.000335,0.000116,0.000116,0.002505,0.286420,-0.002914,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000308,0.000268,0.000331,0.000340,0.000340,0.002465,0.283327,-0.003093,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000303,0.000264,0.000327,0.000492,0.000492,0.002426,0.280129,-0.003198,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000298,0.000259,0.000323,0.000602,0.000602,0.002387,0.276869,-0.003260,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000391,0.000000,0.000000,0.000000,0.000026,0.000293,0.000255,0.000319,0.000692,0.000692,0.002349,0.273952,-0.002917,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000033,0.000000,0.000000,0.000000,0.000027,0.000288,0.000250,0.000315,0.000627,0.000627,0.002311,0.270788,-0.003164,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000283,0.000246,0.000311,0.000550,0.000550,0.002274,0.267714,-0.003074,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000279,0.000242,0.000308,0.000513,0.000513,0.002237,0.264721,-0.002993,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000274,0.000238,0.000304,0.000431,0.000431,0.002200,0.261852,-0.002868,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000269,0.000234,0.000301,0.000333,0.000333,0.002165,0.259121,-0.002731,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000265,0.000230,0.000298,0.000185,0.000185,0.002130,0.256576,-0.002545,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000261,0.000227,0.000294,0.000035,0.000035,0.002096,0.254215,-0.002361,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000256,0.000223,0.000291,0.000000,0.000000,0.002063,0.251923,-0.002292,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000252,0.000220,0.000288,0.000000,0.000000,0.002031,0.249664,-0.002259,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000248,0.000217,0.000286,0.000000,0.000000,0.002000,0.247437,-0.002226,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000244,0.000214,0.000283,0.000000,0.000000,0.001969,0.245243,-0.002194,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000241,0.000211,0.000280,0.000000,0.000000,0.001939,0.243080,-0.002163,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000237,0.000208,0.000278,0.000000,0.000000,0.001910,0.240949,-0.002131,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000233,0.000205,0.000275,0.000000,0.000000,0.001882,0.238849,-0.002100,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000230,0.000202,0.000273,0.000000,0.000000,0.001854,0.236779,-0.002070,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000226,0.000199,0.000271,0.000000,0.000000,0.001826,0.234738,-0.002040,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000223,0.000196,0.000269,0.000000,0.000000,0.001799,0.232728,-0.002011,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000219,0.000193,0.000267,0.000000,0.000000,0.001773,0.230746,-0.001982,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000216,0.000190,0.000265,0.000000,0.000000,0.001747,0.228793,-0.001953,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000213,0.000187,0.000263,0.000126,0.000126,0.001722,0.226744,-0.002049,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000210,0.000184,0.000261,0.000374,0.000374,0.001696,0.224481,-0.002263,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000206,0.000181,0.000259,0.000537,0.000537,0.001670,0.222089,-0.002392,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000203,0.000177,0.000257,0.000649,0.000649,0.001644,0.219621,-0.002467,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000200,0.000174,0.000255,0.000653,0.000653,0.001618,0.217185,-0.002436,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000197,0.000170,0.000253,0.000587,0.000587,0.001592,0.214850,-0.002335,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001350,0.000041,0.000074,0.000041,0.000058,0.000193,0.000169,0.000292,0.000509,0.000509,0.001568,0.213883,-0.000967,1.000000,0.000033 +69,2022-08-03 21:00:00,0.000189,0.000019,0.000000,0.000019,0.000059,0.000190,0.000166,0.000268,0.000478,0.000478,0.001543,0.211889,-0.001994,1.000000,0.000015 +70,2022-08-03 22:00:00,0.000000,0.000015,0.000000,0.000015,0.000060,0.000187,0.000163,0.000263,0.000396,0.000396,0.001519,0.209819,-0.002070,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000024,0.000000,0.000000,0.000000,0.000062,0.000184,0.000160,0.000246,0.000302,0.000302,0.001495,0.207895,-0.001924,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000181,0.000158,0.000245,0.000183,0.000183,0.001472,0.206092,-0.001803,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000179,0.000156,0.000243,0.000047,0.000047,0.001449,0.204449,-0.001643,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000176,0.000153,0.000242,0.000000,0.000000,0.001426,0.202877,-0.001573,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000173,0.000151,0.000240,0.000000,0.000000,0.001404,0.201326,-0.001550,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000170,0.000149,0.000239,0.000000,0.000000,0.001383,0.199799,-0.001528,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000035,0.000000,0.000000,0.000000,0.000070,0.000168,0.000147,0.000238,0.000000,0.000000,0.001362,0.198328,-0.001471,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000165,0.000145,0.000237,0.000000,0.000000,0.001342,0.196844,-0.001484,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000163,0.000143,0.000235,0.000000,0.000000,0.001322,0.195381,-0.001463,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000160,0.000140,0.000234,0.000000,0.000000,0.001302,0.193939,-0.001442,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000158,0.000138,0.000233,0.000000,0.000000,0.001283,0.192518,-0.001421,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000155,0.000136,0.000232,0.000000,0.000000,0.001264,0.191118,-0.001400,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000153,0.000134,0.000231,0.000000,0.000000,0.001245,0.189738,-0.001380,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000151,0.000133,0.000231,0.000000,0.000000,0.001227,0.188378,-0.001360,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000149,0.000131,0.000230,0.000000,0.000000,0.001209,0.187037,-0.001340,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000146,0.000129,0.000229,0.000122,0.000122,0.001192,0.185596,-0.001441,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000144,0.000126,0.000228,0.000365,0.000365,0.001174,0.183936,-0.001660,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000142,0.000124,0.000227,0.000535,0.000535,0.001155,0.182133,-0.001803,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000139,0.000121,0.000226,0.000655,0.000655,0.001137,0.180237,-0.001896,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000137,0.000118,0.000225,0.000716,0.000716,0.001118,0.178309,-0.001928,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000135,0.000116,0.000224,0.000647,0.000647,0.001099,0.176477,-0.001832,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000132,0.000113,0.000223,0.000573,0.000573,0.001079,0.174743,-0.001733,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000130,0.000111,0.000222,0.000512,0.000512,0.001060,0.173095,-0.001648,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000128,0.000108,0.000221,0.000425,0.000425,0.001041,0.171557,-0.001539,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000125,0.000106,0.000220,0.000334,0.000334,0.001022,0.170131,-0.001426,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000123,0.000105,0.000220,0.000195,0.000195,0.001004,0.168861,-0.001269,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000121,0.000103,0.000219,0.000056,0.000056,0.000986,0.167748,-0.001113,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000119,0.000102,0.000218,0.000000,0.000000,0.000969,0.166706,-0.001042,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000117,0.000100,0.000217,0.000000,0.000000,0.000953,0.165679,-0.001027,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000115,0.000099,0.000217,0.000000,0.000000,0.000937,0.164667,-0.001012,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000113,0.000097,0.000216,0.000000,0.000000,0.000921,0.163669,-0.000998,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000111,0.000096,0.000216,0.000000,0.000000,0.000906,0.162686,-0.000983,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000109,0.000094,0.000216,0.000000,0.000000,0.000892,0.161717,-0.000969,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000107,0.000093,0.000215,0.000000,0.000000,0.000877,0.160762,-0.000955,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000106,0.000092,0.000215,0.000000,0.000000,0.000864,0.159821,-0.000941,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000104,0.000090,0.000215,0.000000,0.000000,0.000850,0.158893,-0.000928,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000102,0.000089,0.000214,0.000000,0.000000,0.000837,0.157979,-0.000914,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000101,0.000088,0.000214,0.000000,0.000000,0.000824,0.157078,-0.000901,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000099,0.000087,0.000214,0.000000,0.000000,0.000811,0.156190,-0.000888,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000098,0.000085,0.000214,0.000137,0.000137,0.000799,0.155180,-0.001010,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000096,0.000083,0.000214,0.000381,0.000381,0.000786,0.153945,-0.001236,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000094,0.000081,0.000213,0.000541,0.000541,0.000773,0.152569,-0.001376,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000093,0.000079,0.000213,0.000657,0.000657,0.000760,0.151098,-0.001470,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000091,0.000077,0.000213,0.000663,0.000663,0.000746,0.149643,-0.001455,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000064,0.000000,0.000000,0.000000,0.000123,0.000089,0.000075,0.000212,0.000596,0.000596,0.000732,0.148338,-0.001305,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000069,0.000000,0.000000,0.000000,0.000125,0.000088,0.000074,0.000212,0.000521,0.000521,0.000718,0.147131,-0.001207,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000067,0.000000,0.000000,0.000000,0.000126,0.000086,0.000072,0.000212,0.000461,0.000461,0.000704,0.145998,-0.001133,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000127,0.000084,0.000071,0.000211,0.000386,0.000386,0.000690,0.145015,-0.000984,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000129,0.000083,0.000069,0.000211,0.000302,0.000302,0.000677,0.144191,-0.000824,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000101,0.000000,0.000000,0.000000,0.000130,0.000081,0.000068,0.000211,0.000186,0.000186,0.000664,0.143405,-0.000786,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000603,0.000015,0.000028,0.000015,0.000131,0.000080,0.000068,0.000226,0.000070,0.000070,0.000653,0.143212,-0.000193,1.000000,0.000013 +122,2022-08-06 02:00:00,0.001088,0.000068,0.000110,0.000068,0.000133,0.000078,0.000068,0.000279,0.000000,0.000000,0.000643,0.143488,0.000276,1.000000,0.000055 +123,2022-08-06 03:00:00,0.000788,0.000066,0.000060,0.000066,0.000134,0.000077,0.000068,0.000277,0.000000,0.000000,0.000634,0.143515,0.000026,1.000000,0.000049 +124,2022-08-06 04:00:00,0.000644,0.000059,0.000040,0.000059,0.000135,0.000076,0.000068,0.000271,0.000000,0.000000,0.000626,0.143417,-0.000097,1.000000,0.000030 +125,2022-08-06 05:00:00,0.000654,0.000045,0.000042,0.000045,0.000137,0.000075,0.000068,0.000257,0.000000,0.000000,0.000619,0.143330,-0.000087,1.000000,0.000027 +126,2022-08-06 06:00:00,0.000677,0.000043,0.000044,0.000043,0.000138,0.000075,0.000068,0.000256,0.000000,0.000000,0.000612,0.143264,-0.000066,1.000000,0.000028 +127,2022-08-06 07:00:00,0.000000,0.000019,0.000000,0.000019,0.000139,0.000074,0.000067,0.000233,0.000000,0.000000,0.000606,0.142576,-0.000688,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000141,0.000073,0.000066,0.000223,0.000000,0.000000,0.000599,0.141898,-0.000678,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000072,0.000065,0.000214,0.000000,0.000000,0.000592,0.141229,-0.000668,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000071,0.000064,0.000215,0.000000,0.000000,0.000585,0.140570,-0.000659,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000070,0.000063,0.000215,0.000000,0.000000,0.000578,0.139921,-0.000649,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000069,0.000062,0.000216,0.000000,0.000000,0.000571,0.139281,-0.000640,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000069,0.000061,0.000216,0.000000,0.000000,0.000563,0.138651,-0.000631,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000068,0.000060,0.000216,0.000117,0.000117,0.000556,0.137914,-0.000737,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000067,0.000059,0.000217,0.000354,0.000354,0.000548,0.136954,-0.000960,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000066,0.000057,0.000217,0.000515,0.000515,0.000540,0.135850,-0.001104,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000065,0.000056,0.000217,0.000634,0.000634,0.000531,0.134644,-0.001206,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000063,0.000054,0.000217,0.000711,0.000711,0.000522,0.133380,-0.001264,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000062,0.000052,0.000217,0.000654,0.000654,0.000512,0.132190,-0.001190,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000061,0.000051,0.000217,0.000573,0.000573,0.000501,0.131097,-0.001093,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000060,0.000049,0.000217,0.000520,0.000520,0.000491,0.130072,-0.001025,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000058,0.000048,0.000217,0.000430,0.000430,0.000480,0.129150,-0.000921,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000057,0.000047,0.000217,0.000334,0.000334,0.000470,0.128337,-0.000813,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000046,0.000217,0.000185,0.000185,0.000460,0.127682,-0.000655,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000045,0.000218,0.000047,0.000047,0.000450,0.127173,-0.000509,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000044,0.000218,0.000000,0.000000,0.000441,0.126718,-0.000456,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000044,0.000218,0.000000,0.000000,0.000432,0.126269,-0.000449,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000051,0.000043,0.000218,0.000000,0.000000,0.000424,0.125826,-0.000443,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000051,0.000043,0.000218,0.000000,0.000000,0.000416,0.125390,-0.000436,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000042,0.000219,0.000000,0.000000,0.000408,0.124960,-0.000430,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000041,0.000219,0.000000,0.000000,0.000401,0.124537,-0.000424,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000041,0.000219,0.000000,0.000000,0.000394,0.124119,-0.000417,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000040,0.000220,0.000000,0.000000,0.000387,0.123708,-0.000411,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000040,0.000220,0.000000,0.000000,0.000380,0.123302,-0.000405,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000039,0.000221,0.000000,0.000000,0.000374,0.122903,-0.000400,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000038,0.000221,0.000000,0.000000,0.000367,0.122509,-0.000394,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000038,0.000221,0.000000,0.000000,0.000361,0.122121,-0.000388,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000037,0.000222,0.000114,0.000114,0.000355,0.121625,-0.000495,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000042,0.000036,0.000222,0.000354,0.000354,0.000349,0.120901,-0.000725,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000035,0.000223,0.000517,0.000517,0.000342,0.120026,-0.000875,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000033,0.000223,0.000634,0.000634,0.000335,0.119049,-0.000977,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000032,0.000223,0.000707,0.000707,0.000327,0.118014,-0.001035,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000039,0.000031,0.000223,0.000649,0.000649,0.000319,0.117051,-0.000963,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000029,0.000223,0.000566,0.000566,0.000311,0.116185,-0.000867,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000028,0.000224,0.000512,0.000512,0.000302,0.115384,-0.000801,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000036,0.000027,0.000224,0.000431,0.000431,0.000294,0.114674,-0.000710,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000035,0.000026,0.000224,0.000327,0.000327,0.000286,0.114076,-0.000597,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000026,0.000224,0.000158,0.000158,0.000278,0.113655,-0.000422,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000025,0.000224,0.000015,0.000015,0.000270,0.113380,-0.000275,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000032,0.000025,0.000224,0.000000,0.000000,0.000263,0.113123,-0.000256,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000031,0.000025,0.000225,0.000000,0.000000,0.000257,0.112871,-0.000252,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000024,0.000225,0.000000,0.000000,0.000251,0.112622,-0.000249,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000024,0.000226,0.000000,0.000000,0.000245,0.112377,-0.000245,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000024,0.000226,0.000000,0.000000,0.000239,0.112135,-0.000242,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000234,0.111897,-0.000238,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000023,0.000227,0.000000,0.000000,0.000229,0.111662,-0.000235,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000023,0.000227,0.000000,0.000000,0.000225,0.111431,-0.000231,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000228,0.000000,0.000000,0.000220,0.111203,-0.000228,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000000,0.000000,0.000216,0.110978,-0.000225,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000022,0.000229,0.000000,0.000000,0.000212,0.110757,-0.000221,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000230,0.000000,0.000000,0.000208,0.110539,-0.000218,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000099,0.000099,0.000204,0.110226,-0.000312,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000340,0.000340,0.000200,0.109680,-0.000546,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000019,0.000231,0.000506,0.000506,0.000195,0.108979,-0.000701,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000018,0.000232,0.000618,0.000618,0.000190,0.108177,-0.000802,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000017,0.000232,0.000704,0.000704,0.000184,0.107302,-0.000875,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000016,0.000232,0.000631,0.000631,0.000178,0.106512,-0.000790,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000015,0.000232,0.000553,0.000553,0.000172,0.105810,-0.000701,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000014,0.000233,0.000518,0.000518,0.000166,0.105153,-0.000658,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000013,0.000233,0.000429,0.000429,0.000159,0.104593,-0.000560,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000012,0.000233,0.000330,0.000330,0.000153,0.104139,-0.000454,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000018,0.000012,0.000233,0.000189,0.000189,0.000147,0.103830,-0.000309,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000011,0.000234,0.000040,0.000040,0.000141,0.103672,-0.000157,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000323,0.000005,0.000010,0.000005,0.000217,0.000016,0.000012,0.000239,0.000000,0.000000,0.000136,0.103865,0.000193,1.000000,0.000004 +195,2022-08-09 03:00:00,0.000121,0.000003,0.000001,0.000003,0.000218,0.000016,0.000012,0.000238,0.000000,0.000000,0.000132,0.103865,-0.000001,1.000000,0.000003 +196,2022-08-09 04:00:00,0.000000,0.000002,0.000000,0.000002,0.000219,0.000015,0.000012,0.000237,0.000000,0.000000,0.000128,0.103746,-0.000119,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000011,0.000236,0.000000,0.000000,0.000124,0.103629,-0.000117,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000011,0.000236,0.000000,0.000000,0.000121,0.103514,-0.000115,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000014,0.000011,0.000236,0.000000,0.000000,0.000118,0.103400,-0.000114,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000011,0.000237,0.000000,0.000000,0.000115,0.103288,-0.000112,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000011,0.000238,0.000000,0.000000,0.000112,0.103178,-0.000110,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000011,0.000238,0.000000,0.000000,0.000109,0.103069,-0.000109,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000013,0.000010,0.000239,0.000000,0.000000,0.000107,0.102962,-0.000107,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000010,0.000239,0.000000,0.000000,0.000105,0.102857,-0.000106,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000012,0.000010,0.000240,0.000000,0.000000,0.000102,0.102753,-0.000104,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000012,0.000010,0.000241,0.000105,0.000105,0.000100,0.102546,-0.000206,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620881.csv b/test/channel_loss/channel_forcing/et/cat-2620881.csv new file mode 100644 index 000000000..3642131b2 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620881.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000257,0.000001,0.000001,0.000001,0.000000,0.001462,0.000303,0.001463,0.000186,0.000186,0.010437,0.474785,-0.004748,1.000000,0.000001 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001302,0.000299,0.001302,0.000055,0.000055,0.009434,0.469971,-0.004813,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001167,0.000296,0.001167,0.000000,0.000000,0.008563,0.465271,-0.004700,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001052,0.000292,0.001052,0.000000,0.000000,0.007803,0.460629,-0.004643,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000953,0.000288,0.000953,0.000000,0.000000,0.007139,0.456043,-0.004586,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000868,0.000285,0.000868,0.000000,0.000000,0.006556,0.451513,-0.004530,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000794,0.000281,0.000795,0.000000,0.000000,0.006043,0.447038,-0.004475,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000730,0.000278,0.000731,0.000000,0.000000,0.005591,0.442618,-0.004420,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000674,0.000275,0.000675,0.000000,0.000000,0.005192,0.438252,-0.004366,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000625,0.000271,0.000626,0.000000,0.000000,0.004838,0.433940,-0.004313,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000582,0.000268,0.000584,0.000000,0.000000,0.004524,0.429680,-0.004260,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000544,0.000265,0.000546,0.000000,0.000000,0.004245,0.425472,-0.004208,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000510,0.000261,0.000513,0.000000,0.000000,0.003996,0.421315,-0.004157,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000480,0.000258,0.000483,0.000000,0.000000,0.003774,0.417209,-0.004106,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000454,0.000255,0.000457,0.000129,0.000129,0.003575,0.413025,-0.004184,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000430,0.000252,0.000434,0.000367,0.000367,0.003397,0.408658,-0.004367,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000409,0.000248,0.000413,0.000531,0.000531,0.003236,0.404182,-0.004476,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000390,0.000245,0.000395,0.000648,0.000648,0.003091,0.399645,-0.004536,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000372,0.000241,0.000378,0.000606,0.000606,0.002960,0.395205,-0.004440,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000159,0.000000,0.000000,0.000000,0.000006,0.000357,0.000238,0.000363,0.000537,0.000537,0.002841,0.391044,-0.004161,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000121,0.000000,0.000000,0.000000,0.000007,0.000343,0.000235,0.000350,0.000474,0.000474,0.002733,0.386960,-0.004085,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000375,0.000000,0.000000,0.000000,0.000008,0.000330,0.000232,0.000338,0.000390,0.000390,0.002635,0.383258,-0.003702,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000121,0.000000,0.000000,0.000000,0.000008,0.000318,0.000229,0.000327,0.000336,0.000336,0.002545,0.379405,-0.003853,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000308,0.000226,0.000317,0.000266,0.000266,0.002463,0.375735,-0.003670,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000121,0.000000,0.000000,0.000000,0.000010,0.000298,0.000223,0.000308,0.000172,0.000172,0.002388,0.372136,-0.003599,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000628,0.000031,0.000056,0.000031,0.000011,0.000289,0.000221,0.000331,0.000074,0.000074,0.002320,0.369122,-0.003014,1.000000,0.000025 +26,2022-08-02 02:00:00,0.000982,0.000104,0.000163,0.000104,0.000011,0.000281,0.000219,0.000396,0.000000,0.000000,0.002257,0.366462,-0.002660,1.000000,0.000085 +27,2022-08-02 03:00:00,0.000881,0.000125,0.000133,0.000125,0.000012,0.000274,0.000217,0.000411,0.000000,0.000000,0.002200,0.363764,-0.002698,1.000000,0.000092 +28,2022-08-02 04:00:00,0.001017,0.000161,0.000173,0.000161,0.000013,0.000267,0.000215,0.000441,0.000000,0.000000,0.002147,0.361195,-0.002569,1.000000,0.000104 +29,2022-08-02 05:00:00,0.000661,0.000112,0.000077,0.000112,0.000014,0.000261,0.000212,0.000387,0.000000,0.000000,0.002099,0.358400,-0.002795,1.000000,0.000069 +30,2022-08-02 06:00:00,0.000583,0.000087,0.000061,0.000087,0.000015,0.000255,0.000210,0.000357,0.000000,0.000000,0.002054,0.355578,-0.002822,1.000000,0.000043 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000016,0.000250,0.000208,0.000296,0.000000,0.000000,0.002012,0.352275,-0.003303,1.000000,0.000012 +32,2022-08-02 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000017,0.000245,0.000205,0.000274,0.000000,0.000000,0.001972,0.349012,-0.003263,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000240,0.000203,0.000258,0.000000,0.000000,0.001935,0.345789,-0.003223,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000236,0.000200,0.000254,0.000000,0.000000,0.001900,0.342605,-0.003184,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000231,0.000198,0.000251,0.000000,0.000000,0.001866,0.339460,-0.003145,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000227,0.000195,0.000248,0.000000,0.000000,0.001834,0.336353,-0.003107,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000223,0.000193,0.000245,0.000000,0.000000,0.001804,0.333284,-0.003069,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000220,0.000191,0.000243,0.000116,0.000116,0.001775,0.330138,-0.003146,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000216,0.000188,0.000240,0.000337,0.000337,0.001747,0.326813,-0.003325,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000213,0.000185,0.000238,0.000486,0.000486,0.001719,0.323381,-0.003432,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000209,0.000183,0.000236,0.000592,0.000592,0.001692,0.319886,-0.003495,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000420,0.000000,0.000000,0.000000,0.000027,0.000206,0.000180,0.000233,0.000680,0.000680,0.001667,0.316761,-0.003124,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000029,0.000203,0.000178,0.000231,0.000613,0.000613,0.001641,0.313425,-0.003337,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000200,0.000175,0.000229,0.000547,0.000547,0.001617,0.310096,-0.003329,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000197,0.000172,0.000228,0.000516,0.000516,0.001592,0.306838,-0.003258,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000194,0.000170,0.000226,0.000435,0.000435,0.001569,0.303700,-0.003138,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000191,0.000168,0.000224,0.000334,0.000334,0.001546,0.300700,-0.003000,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000188,0.000165,0.000223,0.000185,0.000185,0.001523,0.297884,-0.002816,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000185,0.000163,0.000221,0.000035,0.000035,0.001502,0.295250,-0.002634,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000182,0.000161,0.000220,0.000000,0.000000,0.001480,0.292684,-0.002567,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000180,0.000159,0.000219,0.000000,0.000000,0.001460,0.290148,-0.002536,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000177,0.000157,0.000217,0.000000,0.000000,0.001440,0.287643,-0.002505,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000175,0.000156,0.000216,0.000000,0.000000,0.001421,0.285169,-0.002474,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000173,0.000154,0.000215,0.000000,0.000000,0.001402,0.282726,-0.002444,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000170,0.000152,0.000214,0.000000,0.000000,0.001383,0.280312,-0.002414,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000168,0.000150,0.000213,0.000000,0.000000,0.001365,0.277927,-0.002385,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000166,0.000148,0.000212,0.000000,0.000000,0.001347,0.275572,-0.002355,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000164,0.000146,0.000212,0.000000,0.000000,0.001330,0.273245,-0.002327,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000162,0.000145,0.000211,0.000000,0.000000,0.001313,0.270947,-0.002298,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000159,0.000143,0.000210,0.000000,0.000000,0.001296,0.268677,-0.002270,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000157,0.000141,0.000210,0.000000,0.000000,0.001280,0.266434,-0.002242,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000155,0.000139,0.000209,0.000126,0.000126,0.001264,0.264095,-0.002339,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000153,0.000137,0.000208,0.000373,0.000373,0.001248,0.261540,-0.002555,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000151,0.000135,0.000208,0.000537,0.000537,0.001232,0.258854,-0.002686,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000149,0.000133,0.000207,0.000645,0.000645,0.001215,0.256095,-0.002760,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000147,0.000131,0.000207,0.000649,0.000649,0.001199,0.253365,-0.002730,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000145,0.000129,0.000206,0.000577,0.000577,0.001183,0.250739,-0.002626,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002012,0.000168,0.000305,0.000168,0.000062,0.000143,0.000128,0.000373,0.000507,0.000507,0.001167,0.249901,-0.000838,1.000000,0.000137 +69,2022-08-03 21:00:00,0.000194,0.000076,0.000000,0.000076,0.000064,0.000141,0.000126,0.000282,0.000479,0.000479,0.001152,0.247606,-0.002295,1.000000,0.000061 +70,2022-08-03 22:00:00,0.000000,0.000061,0.000000,0.000061,0.000065,0.000140,0.000125,0.000266,0.000397,0.000397,0.001137,0.245228,-0.002378,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000067,0.000138,0.000123,0.000205,0.000308,0.000308,0.001122,0.243030,-0.002198,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000136,0.000121,0.000204,0.000186,0.000186,0.001108,0.240917,-0.002113,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000134,0.000120,0.000204,0.000047,0.000047,0.001093,0.238967,-0.001950,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000132,0.000118,0.000204,0.000000,0.000000,0.001079,0.237088,-0.001880,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000131,0.000117,0.000204,0.000000,0.000000,0.001065,0.235231,-0.001857,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000129,0.000115,0.000203,0.000000,0.000000,0.001052,0.233397,-0.001834,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000025,0.000000,0.000000,0.000000,0.000076,0.000127,0.000114,0.000203,0.000000,0.000000,0.001039,0.231609,-0.001787,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000126,0.000113,0.000203,0.000000,0.000000,0.001025,0.229819,-0.001790,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000124,0.000111,0.000203,0.000000,0.000000,0.001013,0.228051,-0.001768,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000122,0.000110,0.000203,0.000000,0.000000,0.001000,0.226305,-0.001746,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000121,0.000108,0.000203,0.000000,0.000000,0.000988,0.224580,-0.001725,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000119,0.000107,0.000203,0.000000,0.000000,0.000975,0.222876,-0.001704,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000118,0.000106,0.000203,0.000000,0.000000,0.000963,0.221192,-0.001683,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000116,0.000105,0.000203,0.000000,0.000000,0.000951,0.219530,-0.001663,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000115,0.000103,0.000203,0.000000,0.000000,0.000940,0.217887,-0.001642,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000114,0.000102,0.000204,0.000122,0.000122,0.000928,0.216144,-0.001743,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000112,0.000100,0.000204,0.000366,0.000366,0.000916,0.214181,-0.001963,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000111,0.000099,0.000204,0.000535,0.000535,0.000904,0.212076,-0.002106,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000109,0.000097,0.000204,0.000652,0.000652,0.000892,0.209880,-0.002196,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000108,0.000095,0.000204,0.000710,0.000710,0.000880,0.207654,-0.002226,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000106,0.000094,0.000204,0.000636,0.000636,0.000868,0.205528,-0.002126,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000105,0.000092,0.000204,0.000573,0.000573,0.000855,0.203491,-0.002038,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000103,0.000091,0.000204,0.000519,0.000519,0.000843,0.201531,-0.001959,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000101,0.000089,0.000204,0.000432,0.000432,0.000830,0.199682,-0.001849,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000100,0.000088,0.000204,0.000337,0.000337,0.000818,0.197949,-0.001733,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000098,0.000087,0.000205,0.000196,0.000196,0.000806,0.196377,-0.001572,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000097,0.000085,0.000205,0.000054,0.000054,0.000795,0.194964,-0.001413,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000096,0.000084,0.000205,0.000000,0.000000,0.000784,0.193621,-0.001343,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000094,0.000083,0.000205,0.000000,0.000000,0.000773,0.192295,-0.001326,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000093,0.000082,0.000205,0.000000,0.000000,0.000762,0.190985,-0.001310,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000092,0.000081,0.000206,0.000000,0.000000,0.000752,0.189691,-0.001294,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000090,0.000080,0.000206,0.000000,0.000000,0.000741,0.188413,-0.001278,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000089,0.000079,0.000207,0.000000,0.000000,0.000732,0.187150,-0.001263,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000088,0.000078,0.000207,0.000000,0.000000,0.000722,0.185903,-0.001247,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000087,0.000077,0.000207,0.000000,0.000000,0.000712,0.184671,-0.001232,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000086,0.000077,0.000208,0.000000,0.000000,0.000703,0.183454,-0.001217,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000085,0.000076,0.000208,0.000000,0.000000,0.000694,0.182252,-0.001202,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000084,0.000075,0.000209,0.000000,0.000000,0.000685,0.181065,-0.001187,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000082,0.000074,0.000209,0.000000,0.000000,0.000677,0.179892,-0.001173,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000081,0.000073,0.000210,0.000137,0.000137,0.000668,0.178599,-0.001294,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000080,0.000072,0.000211,0.000382,0.000382,0.000659,0.177079,-0.001520,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000079,0.000070,0.000211,0.000542,0.000542,0.000650,0.175419,-0.001660,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000078,0.000069,0.000212,0.000654,0.000654,0.000641,0.173669,-0.001750,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000077,0.000068,0.000212,0.000660,0.000660,0.000632,0.171935,-0.001734,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000065,0.000000,0.000000,0.000000,0.000137,0.000076,0.000066,0.000212,0.000592,0.000592,0.000622,0.170353,-0.001581,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000065,0.000000,0.000000,0.000000,0.000138,0.000075,0.000065,0.000213,0.000525,0.000525,0.000613,0.168857,-0.001496,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000069,0.000000,0.000000,0.000000,0.000140,0.000073,0.000064,0.000213,0.000468,0.000468,0.000603,0.167439,-0.001419,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000121,0.000000,0.000000,0.000000,0.000141,0.000072,0.000063,0.000214,0.000393,0.000393,0.000594,0.166163,-0.001275,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000190,0.000000,0.000000,0.000000,0.000143,0.000071,0.000062,0.000214,0.000304,0.000304,0.000585,0.165060,-0.001104,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000105,0.000000,0.000000,0.000000,0.000145,0.000070,0.000061,0.000215,0.000187,0.000187,0.000576,0.164001,-0.001058,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000845,0.000045,0.000081,0.000045,0.000146,0.000069,0.000061,0.000260,0.000070,0.000070,0.000568,0.163723,-0.000278,1.000000,0.000036 +122,2022-08-06 02:00:00,0.001350,0.000146,0.000228,0.000146,0.000148,0.000068,0.000061,0.000362,0.000000,0.000000,0.000561,0.163870,0.000147,1.000000,0.000119 +123,2022-08-06 03:00:00,0.000824,0.000123,0.000091,0.000123,0.000149,0.000068,0.000061,0.000340,0.000000,0.000000,0.000555,0.163631,-0.000239,1.000000,0.000086 +124,2022-08-06 04:00:00,0.000635,0.000099,0.000055,0.000099,0.000151,0.000067,0.000061,0.000316,0.000000,0.000000,0.000549,0.163244,-0.000387,1.000000,0.000043 +125,2022-08-06 05:00:00,0.000651,0.000064,0.000058,0.000064,0.000153,0.000066,0.000061,0.000283,0.000000,0.000000,0.000543,0.162874,-0.000370,1.000000,0.000037 +126,2022-08-06 06:00:00,0.000717,0.000064,0.000070,0.000064,0.000154,0.000065,0.000060,0.000284,0.000000,0.000000,0.000538,0.162563,-0.000311,1.000000,0.000043 +127,2022-08-06 07:00:00,0.000000,0.000029,0.000000,0.000029,0.000156,0.000065,0.000060,0.000250,0.000000,0.000000,0.000533,0.161616,-0.000947,1.000000,0.000014 +128,2022-08-06 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000157,0.000064,0.000059,0.000235,0.000000,0.000000,0.000527,0.160680,-0.000935,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000064,0.000058,0.000222,0.000000,0.000000,0.000522,0.159756,-0.000924,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000063,0.000057,0.000223,0.000000,0.000000,0.000517,0.158844,-0.000913,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000062,0.000057,0.000224,0.000000,0.000000,0.000511,0.157942,-0.000902,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000061,0.000056,0.000225,0.000000,0.000000,0.000506,0.157051,-0.000891,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000061,0.000055,0.000226,0.000000,0.000000,0.000500,0.156172,-0.000880,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000060,0.000055,0.000227,0.000116,0.000116,0.000494,0.155189,-0.000983,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000059,0.000054,0.000228,0.000352,0.000352,0.000489,0.153984,-0.001205,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000059,0.000053,0.000228,0.000511,0.000511,0.000483,0.152637,-0.001347,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000058,0.000051,0.000229,0.000630,0.000630,0.000476,0.151189,-0.001448,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000050,0.000230,0.000705,0.000705,0.000469,0.149684,-0.001505,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000056,0.000049,0.000231,0.000649,0.000649,0.000462,0.148254,-0.001430,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000055,0.000048,0.000231,0.000574,0.000574,0.000455,0.146915,-0.001339,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000054,0.000047,0.000232,0.000528,0.000528,0.000448,0.145638,-0.001277,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000054,0.000046,0.000232,0.000437,0.000437,0.000440,0.144466,-0.001172,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000053,0.000045,0.000233,0.000337,0.000337,0.000433,0.143408,-0.001059,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000052,0.000045,0.000234,0.000188,0.000188,0.000426,0.142509,-0.000898,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000051,0.000044,0.000234,0.000047,0.000047,0.000419,0.141761,-0.000748,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000050,0.000044,0.000235,0.000000,0.000000,0.000413,0.141068,-0.000693,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000049,0.000043,0.000236,0.000000,0.000000,0.000406,0.140383,-0.000685,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000049,0.000043,0.000237,0.000000,0.000000,0.000400,0.139707,-0.000676,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000048,0.000042,0.000237,0.000000,0.000000,0.000394,0.139039,-0.000668,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000047,0.000041,0.000238,0.000000,0.000000,0.000389,0.138379,-0.000660,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000047,0.000041,0.000239,0.000000,0.000000,0.000383,0.137728,-0.000652,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000046,0.000040,0.000240,0.000000,0.000000,0.000378,0.137084,-0.000644,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000045,0.000040,0.000241,0.000000,0.000000,0.000372,0.136448,-0.000636,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000045,0.000039,0.000241,0.000000,0.000000,0.000367,0.135820,-0.000628,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000044,0.000039,0.000242,0.000000,0.000000,0.000362,0.135199,-0.000620,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000043,0.000039,0.000243,0.000000,0.000000,0.000358,0.134586,-0.000613,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000043,0.000038,0.000244,0.000000,0.000000,0.000353,0.133981,-0.000605,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000042,0.000038,0.000245,0.000114,0.000114,0.000348,0.133270,-0.000711,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000042,0.000037,0.000246,0.000356,0.000356,0.000343,0.132329,-0.000941,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000041,0.000036,0.000247,0.000518,0.000518,0.000338,0.131239,-0.001089,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000040,0.000035,0.000247,0.000629,0.000629,0.000333,0.130053,-0.001186,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000040,0.000034,0.000248,0.000701,0.000701,0.000327,0.128810,-0.001243,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000039,0.000033,0.000249,0.000643,0.000643,0.000321,0.127640,-0.001170,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000038,0.000032,0.000249,0.000565,0.000565,0.000315,0.126561,-0.001079,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000038,0.000032,0.000250,0.000519,0.000519,0.000309,0.125542,-0.001020,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000037,0.000031,0.000251,0.000437,0.000437,0.000303,0.124615,-0.000927,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000036,0.000030,0.000251,0.000330,0.000330,0.000297,0.123805,-0.000810,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000035,0.000030,0.000252,0.000158,0.000158,0.000292,0.123175,-0.000630,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000035,0.000029,0.000253,0.000016,0.000016,0.000286,0.122693,-0.000482,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000034,0.000029,0.000254,0.000000,0.000000,0.000281,0.122233,-0.000460,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000033,0.000029,0.000254,0.000000,0.000000,0.000276,0.121778,-0.000455,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000033,0.000028,0.000255,0.000000,0.000000,0.000272,0.121329,-0.000449,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000032,0.000028,0.000256,0.000000,0.000000,0.000267,0.120885,-0.000444,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000032,0.000028,0.000257,0.000000,0.000000,0.000263,0.120447,-0.000438,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000031,0.000027,0.000258,0.000000,0.000000,0.000259,0.120014,-0.000433,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000031,0.000027,0.000258,0.000000,0.000000,0.000255,0.119587,-0.000428,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000030,0.000027,0.000259,0.000000,0.000000,0.000251,0.119165,-0.000422,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000030,0.000026,0.000260,0.000000,0.000000,0.000247,0.118747,-0.000417,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000030,0.000026,0.000261,0.000000,0.000000,0.000243,0.118335,-0.000412,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000029,0.000026,0.000262,0.000000,0.000000,0.000240,0.117928,-0.000407,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000234,0.000029,0.000025,0.000263,0.000000,0.000000,0.000237,0.117527,-0.000401,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000235,0.000028,0.000025,0.000264,0.000099,0.000099,0.000233,0.117035,-0.000492,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000237,0.000028,0.000024,0.000265,0.000342,0.000342,0.000230,0.116307,-0.000728,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000027,0.000024,0.000265,0.000507,0.000507,0.000226,0.115424,-0.000883,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000027,0.000023,0.000266,0.000614,0.000614,0.000222,0.114446,-0.000978,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000026,0.000022,0.000267,0.000700,0.000700,0.000218,0.113395,-0.001051,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000026,0.000021,0.000268,0.000622,0.000622,0.000213,0.112434,-0.000961,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000025,0.000021,0.000268,0.000551,0.000551,0.000209,0.111555,-0.000879,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000025,0.000020,0.000269,0.000523,0.000523,0.000204,0.110714,-0.000841,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000024,0.000019,0.000270,0.000434,0.000434,0.000199,0.109971,-0.000743,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000024,0.000019,0.000270,0.000332,0.000332,0.000194,0.109338,-0.000633,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000023,0.000019,0.000271,0.000190,0.000190,0.000190,0.108854,-0.000485,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000023,0.000018,0.000272,0.000039,0.000039,0.000186,0.108523,-0.000330,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000184,0.000003,0.000005,0.000003,0.000251,0.000022,0.000018,0.000275,0.000000,0.000000,0.000182,0.108413,-0.000110,1.000000,0.000002 +195,2022-08-09 03:00:00,0.000074,0.000002,0.000001,0.000002,0.000252,0.000022,0.000018,0.000275,0.000000,0.000000,0.000178,0.108200,-0.000214,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000253,0.000021,0.000018,0.000275,0.000000,0.000000,0.000175,0.107916,-0.000283,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000021,0.000018,0.000275,0.000000,0.000000,0.000172,0.107636,-0.000280,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000020,0.000017,0.000276,0.000000,0.000000,0.000169,0.107360,-0.000276,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000020,0.000017,0.000277,0.000000,0.000000,0.000166,0.107087,-0.000273,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000020,0.000017,0.000277,0.000000,0.000000,0.000163,0.106817,-0.000270,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000019,0.000017,0.000278,0.000000,0.000000,0.000160,0.106551,-0.000266,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000019,0.000017,0.000279,0.000000,0.000000,0.000158,0.106288,-0.000263,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000019,0.000016,0.000280,0.000000,0.000000,0.000155,0.106028,-0.000260,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000019,0.000016,0.000281,0.000000,0.000000,0.000153,0.105771,-0.000257,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000018,0.000016,0.000282,0.000000,0.000000,0.000151,0.105517,-0.000254,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000018,0.000016,0.000282,0.000104,0.000104,0.000148,0.105164,-0.000354,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620882.csv b/test/channel_loss/channel_forcing/et/cat-2620882.csv new file mode 100644 index 000000000..84ffc3f3c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620882.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000025,0.000000,0.000000,0.000000,0.000000,0.001454,0.000246,0.001454,0.000149,0.000149,0.010388,0.430666,-0.004773,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001288,0.000242,0.001288,0.000028,0.000028,0.009343,0.426052,-0.004614,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001147,0.000239,0.001147,0.000000,0.000000,0.008435,0.421529,-0.004523,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001028,0.000236,0.001028,0.000000,0.000000,0.007643,0.417067,-0.004462,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000925,0.000233,0.000925,0.000000,0.000000,0.006950,0.412666,-0.004401,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000837,0.000230,0.000837,0.000000,0.000000,0.006343,0.408324,-0.004342,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000226,0.000761,0.000000,0.000000,0.005808,0.404041,-0.004283,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000694,0.000223,0.000695,0.000000,0.000000,0.005337,0.399816,-0.004225,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000636,0.000220,0.000638,0.000000,0.000000,0.004921,0.395649,-0.004167,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000586,0.000217,0.000587,0.000000,0.000000,0.004553,0.391538,-0.004111,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000541,0.000214,0.000543,0.000000,0.000000,0.004226,0.387483,-0.004055,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000502,0.000211,0.000504,0.000000,0.000000,0.003936,0.383483,-0.004000,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000467,0.000209,0.000470,0.000000,0.000000,0.003677,0.379537,-0.003946,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000437,0.000206,0.000439,0.000000,0.000000,0.003446,0.375645,-0.003892,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000409,0.000203,0.000413,0.000108,0.000108,0.003240,0.371698,-0.003946,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000385,0.000200,0.000389,0.000328,0.000328,0.003055,0.367589,-0.004109,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000363,0.000197,0.000367,0.000496,0.000496,0.002889,0.363370,-0.004219,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000344,0.000194,0.000348,0.000632,0.000632,0.002739,0.359074,-0.004296,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000326,0.000191,0.000331,0.000634,0.000634,0.002603,0.354834,-0.004240,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000310,0.000188,0.000316,0.000548,0.000548,0.002481,0.350736,-0.004098,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000064,0.000000,0.000000,0.000000,0.000007,0.000296,0.000185,0.000302,0.000484,0.000484,0.002370,0.346820,-0.003915,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000089,0.000000,0.000000,0.000000,0.000007,0.000283,0.000182,0.000290,0.000370,0.000370,0.002269,0.343096,-0.003725,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000108,0.000000,0.000000,0.000000,0.000008,0.000271,0.000179,0.000279,0.000302,0.000302,0.002178,0.339506,-0.003589,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000899,0.000054,0.000099,0.000054,0.000009,0.000260,0.000177,0.000323,0.000228,0.000228,0.002095,0.336722,-0.002784,1.000000,0.000044 +24,2022-08-02 00:00:00,0.001056,0.000116,0.000167,0.000116,0.000009,0.000251,0.000176,0.000377,0.000159,0.000159,0.002020,0.334131,-0.002591,1.000000,0.000095 +25,2022-08-02 01:00:00,0.001058,0.000172,0.000202,0.000172,0.000010,0.000242,0.000174,0.000425,0.000060,0.000060,0.001951,0.331641,-0.002490,1.000000,0.000124 +26,2022-08-02 02:00:00,0.001569,0.000328,0.000445,0.000328,0.000011,0.000234,0.000172,0.000574,0.000000,0.000000,0.001889,0.329508,-0.002134,1.000000,0.000240 +27,2022-08-02 03:00:00,0.001588,0.000401,0.000453,0.000401,0.000012,0.000227,0.000171,0.000639,0.000000,0.000000,0.001833,0.327414,-0.002094,1.000000,0.000293 +28,2022-08-02 04:00:00,0.001270,0.000371,0.000306,0.000371,0.000013,0.000221,0.000169,0.000604,0.000000,0.000000,0.001781,0.325179,-0.002235,1.000000,0.000228 +29,2022-08-02 05:00:00,0.000298,0.000178,0.000021,0.000178,0.000013,0.000214,0.000167,0.000406,0.000000,0.000000,0.001734,0.322298,-0.002882,1.000000,0.000070 +30,2022-08-02 06:00:00,0.000098,0.000068,0.000002,0.000068,0.000014,0.000209,0.000165,0.000291,0.000000,0.000000,0.001690,0.319276,-0.003022,1.000000,0.000005 +31,2022-08-02 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000015,0.000204,0.000163,0.000224,0.000000,0.000000,0.001649,0.316201,-0.003075,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000199,0.000160,0.000215,0.000000,0.000000,0.001610,0.313168,-0.003033,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000194,0.000158,0.000211,0.000000,0.000000,0.001574,0.310176,-0.002992,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000190,0.000156,0.000208,0.000000,0.000000,0.001540,0.307225,-0.002951,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000186,0.000154,0.000205,0.000000,0.000000,0.001508,0.304314,-0.002911,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000182,0.000152,0.000202,0.000000,0.000000,0.001478,0.301442,-0.002872,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000179,0.000150,0.000200,0.000000,0.000000,0.001449,0.298609,-0.002833,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000175,0.000148,0.000197,0.000104,0.000104,0.001421,0.295712,-0.002897,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000172,0.000145,0.000195,0.000308,0.000308,0.001395,0.292653,-0.003059,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000169,0.000143,0.000193,0.000470,0.000470,0.001370,0.289476,-0.003177,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000165,0.000141,0.000191,0.000603,0.000603,0.001345,0.286211,-0.003266,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000184,0.000000,0.000000,0.000000,0.000026,0.000162,0.000138,0.000189,0.000705,0.000705,0.001321,0.283070,-0.003141,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000050,0.000000,0.000000,0.000000,0.000027,0.000160,0.000136,0.000187,0.000618,0.000618,0.001297,0.279926,-0.003144,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000067,0.000000,0.000000,0.000000,0.000029,0.000157,0.000134,0.000185,0.000530,0.000530,0.001275,0.276928,-0.002997,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000154,0.000132,0.000184,0.000472,0.000472,0.001253,0.273963,-0.002966,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000151,0.000130,0.000182,0.000381,0.000381,0.001231,0.271127,-0.002836,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000149,0.000128,0.000181,0.000278,0.000278,0.001210,0.268431,-0.002696,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000146,0.000126,0.000179,0.000149,0.000149,0.001190,0.265899,-0.002532,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000144,0.000124,0.000178,0.000010,0.000010,0.001171,0.263539,-0.002360,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000141,0.000123,0.000177,0.000000,0.000000,0.001152,0.261220,-0.002319,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000139,0.000121,0.000176,0.000000,0.000000,0.001134,0.258933,-0.002287,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000137,0.000119,0.000175,0.000000,0.000000,0.001116,0.256677,-0.002256,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000135,0.000118,0.000174,0.000000,0.000000,0.001099,0.254451,-0.002226,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000133,0.000116,0.000173,0.000000,0.000000,0.001082,0.252256,-0.002195,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000131,0.000114,0.000173,0.000000,0.000000,0.001066,0.250091,-0.002166,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000129,0.000113,0.000172,0.000000,0.000000,0.001050,0.247954,-0.002136,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000127,0.000111,0.000171,0.000000,0.000000,0.001035,0.245847,-0.002107,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000125,0.000110,0.000171,0.000000,0.000000,0.001020,0.243769,-0.002079,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000123,0.000108,0.000170,0.000000,0.000000,0.001005,0.241718,-0.002050,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000121,0.000107,0.000170,0.000000,0.000000,0.000991,0.239696,-0.002023,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000120,0.000105,0.000169,0.000000,0.000000,0.000977,0.237701,-0.001995,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000118,0.000104,0.000169,0.000101,0.000101,0.000963,0.235633,-0.002068,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000116,0.000102,0.000169,0.000325,0.000325,0.000949,0.233372,-0.002260,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000114,0.000101,0.000168,0.000491,0.000491,0.000935,0.230979,-0.002394,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000113,0.000099,0.000168,0.000626,0.000626,0.000921,0.228484,-0.002495,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000111,0.000097,0.000168,0.000644,0.000644,0.000907,0.226006,-0.002478,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000109,0.000095,0.000167,0.000556,0.000556,0.000893,0.223648,-0.002358,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000641,0.000002,0.000004,0.000002,0.000059,0.000108,0.000094,0.000169,0.000495,0.000495,0.000880,0.222010,-0.001638,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000082,0.000001,0.000000,0.000001,0.000061,0.000106,0.000093,0.000168,0.000429,0.000429,0.000866,0.219913,-0.002097,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000019,0.000001,0.000000,0.000001,0.000062,0.000104,0.000091,0.000167,0.000346,0.000346,0.000853,0.217864,-0.002049,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000025,0.000000,0.000000,0.000000,0.000064,0.000103,0.000090,0.000166,0.000255,0.000255,0.000840,0.215938,-0.001926,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000101,0.000088,0.000166,0.000154,0.000154,0.000827,0.214113,-0.001825,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000100,0.000087,0.000166,0.000020,0.000020,0.000815,0.212446,-0.001668,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000107,0.000001,0.000002,0.000001,0.000068,0.000098,0.000086,0.000167,0.000000,0.000000,0.000803,0.210923,-0.001522,1.000000,0.000001 +75,2022-08-04 03:00:00,0.000000,0.000001,0.000000,0.000001,0.000069,0.000097,0.000085,0.000166,0.000000,0.000000,0.000791,0.209319,-0.001605,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000025,0.000001,0.000000,0.000001,0.000071,0.000095,0.000084,0.000166,0.000000,0.000000,0.000780,0.207760,-0.001558,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000051,0.000000,0.000001,0.000000,0.000072,0.000094,0.000083,0.000166,0.000000,0.000000,0.000768,0.206248,-0.001512,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000092,0.000081,0.000166,0.000000,0.000000,0.000757,0.204707,-0.001541,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000091,0.000080,0.000166,0.000000,0.000000,0.000747,0.203186,-0.001520,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000090,0.000079,0.000166,0.000000,0.000000,0.000736,0.201687,-0.001500,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000089,0.000078,0.000166,0.000000,0.000000,0.000726,0.200207,-0.001479,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000087,0.000077,0.000167,0.000000,0.000000,0.000716,0.198748,-0.001459,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000086,0.000076,0.000167,0.000000,0.000000,0.000706,0.197308,-0.001440,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000085,0.000075,0.000167,0.000000,0.000000,0.000696,0.195888,-0.001420,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000084,0.000074,0.000167,0.000000,0.000000,0.000686,0.194487,-0.001401,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000083,0.000073,0.000168,0.000102,0.000102,0.000677,0.193005,-0.001483,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000081,0.000072,0.000168,0.000331,0.000331,0.000667,0.191317,-0.001688,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000080,0.000070,0.000168,0.000503,0.000503,0.000657,0.189482,-0.001835,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000079,0.000069,0.000168,0.000641,0.000641,0.000647,0.187536,-0.001946,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000078,0.000068,0.000169,0.000698,0.000698,0.000637,0.185559,-0.001977,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000076,0.000066,0.000169,0.000616,0.000616,0.000627,0.183691,-0.001868,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000075,0.000065,0.000169,0.000535,0.000535,0.000617,0.181928,-0.001763,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000074,0.000064,0.000169,0.000477,0.000477,0.000607,0.180246,-0.001682,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000073,0.000063,0.000170,0.000385,0.000385,0.000597,0.178677,-0.001569,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000037,0.000000,0.000000,0.000000,0.000098,0.000071,0.000062,0.000170,0.000283,0.000283,0.000587,0.177267,-0.001410,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000070,0.000061,0.000170,0.000159,0.000159,0.000577,0.175962,-0.001305,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000158,0.000002,0.000004,0.000002,0.000101,0.000069,0.000060,0.000172,0.000020,0.000020,0.000568,0.174964,-0.000998,1.000000,0.000002 +98,2022-08-05 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000103,0.000068,0.000059,0.000172,0.000000,0.000000,0.000559,0.173847,-0.001117,1.000000,0.000001 +99,2022-08-05 03:00:00,0.000000,0.000001,0.000000,0.000001,0.000104,0.000067,0.000058,0.000172,0.000000,0.000000,0.000550,0.172746,-0.001102,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000066,0.000057,0.000172,0.000000,0.000000,0.000542,0.171659,-0.001087,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000065,0.000057,0.000172,0.000000,0.000000,0.000533,0.170587,-0.001072,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000064,0.000056,0.000173,0.000000,0.000000,0.000525,0.169529,-0.001058,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000063,0.000055,0.000173,0.000000,0.000000,0.000518,0.168486,-0.001043,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000062,0.000054,0.000174,0.000000,0.000000,0.000510,0.167457,-0.001029,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000061,0.000054,0.000174,0.000000,0.000000,0.000502,0.166442,-0.001015,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000060,0.000053,0.000175,0.000000,0.000000,0.000495,0.165440,-0.001001,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000059,0.000052,0.000175,0.000000,0.000000,0.000488,0.164453,-0.000988,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000058,0.000052,0.000176,0.000000,0.000000,0.000481,0.163478,-0.000974,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000058,0.000051,0.000177,0.000000,0.000000,0.000474,0.162517,-0.000961,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000057,0.000050,0.000177,0.000111,0.000111,0.000467,0.161459,-0.001058,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000056,0.000049,0.000178,0.000333,0.000333,0.000461,0.160197,-0.001262,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000055,0.000048,0.000179,0.000502,0.000502,0.000453,0.158785,-0.001412,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000054,0.000047,0.000179,0.000643,0.000643,0.000446,0.157253,-0.001532,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000053,0.000046,0.000180,0.000709,0.000709,0.000439,0.155677,-0.001576,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000052,0.000045,0.000180,0.000625,0.000625,0.000431,0.154205,-0.001471,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000051,0.000044,0.000181,0.000548,0.000548,0.000423,0.152829,-0.001376,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000051,0.000043,0.000181,0.000421,0.000421,0.000416,0.151598,-0.001232,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000056,0.000000,0.000000,0.000000,0.000132,0.000050,0.000042,0.000182,0.000340,0.000340,0.000408,0.150517,-0.001080,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000112,0.000000,0.000000,0.000000,0.000134,0.000049,0.000041,0.000182,0.000258,0.000258,0.000401,0.149588,-0.000930,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000048,0.000041,0.000183,0.000148,0.000148,0.000394,0.148669,-0.000918,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000487,0.000019,0.000034,0.000019,0.000137,0.000047,0.000040,0.000202,0.000046,0.000046,0.000387,0.148311,-0.000359,1.000000,0.000015 +122,2022-08-06 02:00:00,0.000300,0.000017,0.000016,0.000017,0.000138,0.000046,0.000040,0.000202,0.000000,0.000000,0.000381,0.147836,-0.000475,1.000000,0.000014 +123,2022-08-06 03:00:00,0.000560,0.000040,0.000053,0.000040,0.000139,0.000046,0.000040,0.000225,0.000000,0.000000,0.000376,0.147587,-0.000249,1.000000,0.000027 +124,2022-08-06 04:00:00,0.000429,0.000034,0.000032,0.000034,0.000141,0.000045,0.000040,0.000220,0.000000,0.000000,0.000370,0.147233,-0.000353,1.000000,0.000025 +125,2022-08-06 05:00:00,0.000040,0.000019,0.000000,0.000019,0.000142,0.000044,0.000039,0.000205,0.000000,0.000000,0.000365,0.146532,-0.000702,1.000000,0.000007 +126,2022-08-06 06:00:00,0.000089,0.000007,0.000001,0.000007,0.000144,0.000044,0.000039,0.000195,0.000000,0.000000,0.000360,0.145887,-0.000645,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000043,0.000038,0.000189,0.000000,0.000000,0.000355,0.145164,-0.000722,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000043,0.000038,0.000189,0.000000,0.000000,0.000350,0.144452,-0.000713,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000042,0.000037,0.000190,0.000000,0.000000,0.000346,0.143749,-0.000703,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000041,0.000037,0.000191,0.000000,0.000000,0.000341,0.143055,-0.000693,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000041,0.000036,0.000192,0.000000,0.000000,0.000336,0.142371,-0.000684,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000040,0.000036,0.000192,0.000000,0.000000,0.000332,0.141696,-0.000675,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000040,0.000035,0.000193,0.000000,0.000000,0.000327,0.141031,-0.000666,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000039,0.000035,0.000194,0.000095,0.000095,0.000323,0.140281,-0.000750,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000039,0.000034,0.000195,0.000308,0.000308,0.000318,0.139330,-0.000950,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000038,0.000033,0.000196,0.000472,0.000472,0.000313,0.138231,-0.001099,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000037,0.000032,0.000196,0.000609,0.000609,0.000308,0.137012,-0.001219,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000037,0.000031,0.000197,0.000723,0.000723,0.000303,0.135697,-0.001316,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000036,0.000030,0.000198,0.000643,0.000643,0.000297,0.134479,-0.001218,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000035,0.000030,0.000199,0.000566,0.000566,0.000291,0.133353,-0.001126,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000035,0.000029,0.000199,0.000495,0.000495,0.000286,0.132312,-0.001041,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000034,0.000028,0.000200,0.000401,0.000401,0.000280,0.131378,-0.000934,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000033,0.000028,0.000201,0.000292,0.000292,0.000274,0.130564,-0.000814,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000033,0.000027,0.000201,0.000156,0.000156,0.000269,0.129896,-0.000668,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000032,0.000027,0.000202,0.000018,0.000018,0.000263,0.129373,-0.000523,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000031,0.000026,0.000203,0.000000,0.000000,0.000258,0.128874,-0.000498,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000031,0.000026,0.000203,0.000000,0.000000,0.000254,0.128383,-0.000492,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000030,0.000026,0.000204,0.000000,0.000000,0.000249,0.127898,-0.000485,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000030,0.000025,0.000205,0.000000,0.000000,0.000245,0.127419,-0.000478,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000029,0.000025,0.000206,0.000000,0.000000,0.000241,0.126947,-0.000472,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000029,0.000025,0.000207,0.000000,0.000000,0.000236,0.126482,-0.000466,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000028,0.000024,0.000207,0.000000,0.000000,0.000233,0.126023,-0.000459,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000028,0.000024,0.000208,0.000000,0.000000,0.000229,0.125570,-0.000453,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000027,0.000024,0.000209,0.000000,0.000000,0.000225,0.125123,-0.000447,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000027,0.000023,0.000210,0.000000,0.000000,0.000222,0.124682,-0.000441,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000026,0.000023,0.000211,0.000000,0.000000,0.000218,0.124247,-0.000435,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000026,0.000023,0.000212,0.000000,0.000000,0.000215,0.123818,-0.000429,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000026,0.000022,0.000213,0.000091,0.000091,0.000211,0.123306,-0.000512,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000025,0.000022,0.000213,0.000308,0.000308,0.000208,0.122586,-0.000720,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000025,0.000021,0.000214,0.000476,0.000476,0.000204,0.121710,-0.000876,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000024,0.000020,0.000215,0.000615,0.000615,0.000201,0.120708,-0.001001,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000024,0.000020,0.000216,0.000724,0.000724,0.000196,0.119613,-0.001095,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000023,0.000019,0.000217,0.000643,0.000643,0.000192,0.118613,-0.001000,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000023,0.000018,0.000217,0.000560,0.000560,0.000188,0.117709,-0.000905,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000022,0.000018,0.000218,0.000478,0.000478,0.000183,0.116897,-0.000811,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000022,0.000017,0.000219,0.000387,0.000387,0.000178,0.116187,-0.000711,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000198,0.000021,0.000017,0.000219,0.000274,0.000274,0.000174,0.115652,-0.000534,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000265,0.000002,0.000004,0.000002,0.000199,0.000021,0.000017,0.000222,0.000120,0.000120,0.000170,0.115479,-0.000173,1.000000,0.000002 +169,2022-08-08 01:00:00,0.000000,0.000001,0.000000,0.000001,0.000201,0.000020,0.000016,0.000222,0.000000,0.000000,0.000166,0.115169,-0.000310,1.000000,0.000001 +170,2022-08-08 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000202,0.000020,0.000016,0.000222,0.000000,0.000000,0.000163,0.114864,-0.000306,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000025,0.000000,0.000000,0.000000,0.000203,0.000019,0.000016,0.000222,0.000000,0.000000,0.000159,0.114587,-0.000277,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000019,0.000016,0.000223,0.000000,0.000000,0.000156,0.114289,-0.000298,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000019,0.000016,0.000224,0.000000,0.000000,0.000153,0.113995,-0.000294,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000018,0.000015,0.000225,0.000000,0.000000,0.000150,0.113705,-0.000290,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000018,0.000015,0.000226,0.000000,0.000000,0.000148,0.113420,-0.000286,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000018,0.000015,0.000226,0.000000,0.000000,0.000145,0.113138,-0.000282,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000017,0.000015,0.000227,0.000000,0.000000,0.000142,0.112859,-0.000278,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000015,0.000228,0.000000,0.000000,0.000140,0.112585,-0.000274,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000017,0.000014,0.000229,0.000000,0.000000,0.000138,0.112314,-0.000271,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000014,0.000230,0.000000,0.000000,0.000135,0.112047,-0.000267,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000014,0.000231,0.000000,0.000000,0.000133,0.111784,-0.000263,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000216,0.000016,0.000014,0.000232,0.000076,0.000002,0.000131,0.111524,-0.000260,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000217,0.000016,0.000014,0.000232,0.000294,0.000002,0.000129,0.111268,-0.000256,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000002,0.000000,0.000000,0.000000,0.000218,0.000015,0.000013,0.000233,0.000463,0.000002,0.000127,0.111015,-0.000253,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000003,0.000000,0.000000,0.000000,0.000219,0.000015,0.000013,0.000234,0.000595,0.000003,0.000125,0.110766,-0.000249,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000005,0.000000,0.000000,0.000000,0.000220,0.000015,0.000013,0.000235,0.000699,0.000005,0.000123,0.110520,-0.000246,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000005,0.000000,0.000000,0.000000,0.000221,0.000015,0.000013,0.000236,0.000623,0.000005,0.000121,0.110277,-0.000243,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000003,0.000000,0.000000,0.000000,0.000222,0.000014,0.000013,0.000237,0.000534,0.000003,0.000119,0.110038,-0.000239,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000002,0.000000,0.000000,0.000000,0.000223,0.000014,0.000012,0.000238,0.000468,0.000002,0.000118,0.109802,-0.000236,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000224,0.000014,0.000012,0.000239,0.000379,0.000001,0.000116,0.109569,-0.000233,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000014,0.000012,0.000239,0.000273,0.000000,0.000114,0.109339,-0.000230,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000014,0.000012,0.000240,0.000160,0.000000,0.000113,0.109112,-0.000227,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000012,0.000241,0.000019,0.000000,0.000111,0.108889,-0.000224,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000462,0.000019,0.000035,0.000019,0.000229,0.000013,0.000012,0.000261,0.000000,0.000000,0.000110,0.109089,0.000200,1.000000,0.000016 +195,2022-08-09 03:00:00,0.000181,0.000012,0.000006,0.000012,0.000230,0.000013,0.000012,0.000255,0.000000,0.000000,0.000109,0.109039,-0.000050,1.000000,0.000010 +196,2022-08-09 04:00:00,0.000000,0.000008,0.000000,0.000008,0.000231,0.000013,0.000012,0.000252,0.000000,0.000000,0.000107,0.108816,-0.000223,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000232,0.000013,0.000012,0.000246,0.000000,0.000000,0.000106,0.108597,-0.000220,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000000,0.000000,0.000105,0.108380,-0.000217,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000246,0.000000,0.000000,0.000104,0.108167,-0.000214,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000012,0.000011,0.000247,0.000000,0.000000,0.000102,0.107956,-0.000211,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000011,0.000248,0.000000,0.000000,0.000101,0.107748,-0.000208,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000031,0.000000,0.000000,0.000000,0.000237,0.000012,0.000011,0.000249,0.000000,0.000000,0.000100,0.107573,-0.000175,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000000,0.000000,0.000099,0.107370,-0.000203,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000251,0.000000,0.000000,0.000097,0.107170,-0.000200,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000251,0.000000,0.000000,0.000096,0.106973,-0.000197,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000011,0.000010,0.000252,0.000084,0.000000,0.000095,0.106779,-0.000195,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620883.csv b/test/channel_loss/channel_forcing/et/cat-2620883.csv new file mode 100644 index 000000000..042597c91 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620883.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000000,0.001491,0.000510,0.001491,0.000156,0.000156,0.010616,0.426169,-0.004892,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001354,0.000503,0.001354,0.000033,0.000033,0.009764,0.421440,-0.004729,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001238,0.000495,0.001238,0.000000,0.000000,0.009022,0.416814,-0.004626,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001138,0.000488,0.001138,0.000000,0.000000,0.008372,0.412257,-0.004557,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001051,0.000481,0.001052,0.000000,0.000000,0.007801,0.407768,-0.004489,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000976,0.000473,0.000977,0.000000,0.000000,0.007298,0.403345,-0.004422,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000911,0.000466,0.000912,0.000000,0.000000,0.006854,0.398989,-0.004356,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000854,0.000459,0.000855,0.000000,0.000000,0.006459,0.394697,-0.004291,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000803,0.000453,0.000804,0.000000,0.000000,0.006108,0.390470,-0.004227,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000759,0.000446,0.000760,0.000000,0.000000,0.005795,0.386306,-0.004164,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000719,0.000439,0.000721,0.000000,0.000000,0.005515,0.382203,-0.004102,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000684,0.000433,0.000686,0.000000,0.000000,0.005264,0.378162,-0.004041,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000653,0.000426,0.000655,0.000000,0.000000,0.005037,0.374181,-0.003981,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000624,0.000420,0.000627,0.000000,0.000000,0.004833,0.370260,-0.003921,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000599,0.000413,0.000602,0.000112,0.000112,0.004648,0.366286,-0.003974,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000576,0.000407,0.000579,0.000334,0.000334,0.004479,0.362154,-0.004133,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000555,0.000400,0.000559,0.000507,0.000507,0.004324,0.357913,-0.004241,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000535,0.000393,0.000540,0.000638,0.000638,0.004182,0.353605,-0.004308,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000517,0.000386,0.000523,0.000630,0.000630,0.004050,0.349370,-0.004235,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000017,0.000000,0.000000,0.000000,0.000006,0.000501,0.000379,0.000507,0.000539,0.000539,0.003929,0.345305,-0.004066,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000110,0.000000,0.000000,0.000000,0.000006,0.000486,0.000373,0.000492,0.000474,0.000474,0.003816,0.341455,-0.003850,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000125,0.000000,0.000000,0.000000,0.000007,0.000472,0.000367,0.000479,0.000373,0.000373,0.003711,0.337777,-0.003678,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000124,0.000000,0.000000,0.000000,0.000008,0.000459,0.000361,0.000467,0.000307,0.000307,0.003614,0.334219,-0.003558,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000577,0.000008,0.000015,0.000008,0.000008,0.000447,0.000357,0.000463,0.000230,0.000230,0.003523,0.331220,-0.002998,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000696,0.000022,0.000034,0.000022,0.000009,0.000436,0.000352,0.000467,0.000160,0.000160,0.003440,0.328435,-0.002786,1.000000,0.000018 +25,2022-08-02 01:00:00,0.000767,0.000043,0.000058,0.000043,0.000010,0.000425,0.000348,0.000478,0.000062,0.000062,0.003362,0.325834,-0.002601,1.000000,0.000033 +26,2022-08-02 02:00:00,0.001308,0.000123,0.000184,0.000123,0.000011,0.000416,0.000344,0.000549,0.000000,0.000000,0.003291,0.323741,-0.002093,1.000000,0.000094 +27,2022-08-02 03:00:00,0.001291,0.000156,0.000179,0.000156,0.000011,0.000407,0.000341,0.000575,0.000000,0.000000,0.003225,0.321667,-0.002074,1.000000,0.000117 +28,2022-08-02 04:00:00,0.001089,0.000153,0.000130,0.000153,0.000012,0.000399,0.000337,0.000564,0.000000,0.000000,0.003163,0.319474,-0.002193,1.000000,0.000094 +29,2022-08-02 05:00:00,0.000314,0.000075,0.000012,0.000075,0.000013,0.000391,0.000333,0.000479,0.000000,0.000000,0.003104,0.316666,-0.002808,1.000000,0.000031 +30,2022-08-02 06:00:00,0.000154,0.000030,0.000003,0.000030,0.000014,0.000384,0.000328,0.000428,0.000000,0.000000,0.003049,0.313751,-0.002914,1.000000,0.000004 +31,2022-08-02 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000015,0.000377,0.000323,0.000395,0.000000,0.000000,0.002995,0.310731,-0.003020,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000015,0.000370,0.000319,0.000386,0.000000,0.000000,0.002943,0.307756,-0.002975,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000364,0.000314,0.000380,0.000000,0.000000,0.002893,0.304826,-0.002931,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000357,0.000309,0.000375,0.000000,0.000000,0.002845,0.301939,-0.002887,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000351,0.000304,0.000369,0.000000,0.000000,0.002798,0.299095,-0.002844,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000345,0.000300,0.000364,0.000000,0.000000,0.002753,0.296293,-0.002802,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000340,0.000295,0.000360,0.000000,0.000000,0.002709,0.293533,-0.002760,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000334,0.000291,0.000355,0.000105,0.000105,0.002665,0.290711,-0.002822,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000328,0.000286,0.000350,0.000310,0.000310,0.002623,0.287730,-0.002982,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000323,0.000281,0.000346,0.000468,0.000468,0.002581,0.284636,-0.003093,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000318,0.000276,0.000342,0.000601,0.000601,0.002539,0.281459,-0.003178,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000222,0.000000,0.000000,0.000000,0.000025,0.000312,0.000271,0.000337,0.000698,0.000698,0.002498,0.278452,-0.003007,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000075,0.000000,0.000000,0.000000,0.000026,0.000307,0.000266,0.000333,0.000605,0.000605,0.002457,0.275436,-0.003016,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000144,0.000000,0.000000,0.000000,0.000027,0.000302,0.000262,0.000329,0.000535,0.000535,0.002417,0.272602,-0.002834,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000297,0.000257,0.000325,0.000476,0.000476,0.002377,0.269727,-0.002875,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000292,0.000252,0.000321,0.000390,0.000390,0.002338,0.266979,-0.002748,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000287,0.000248,0.000317,0.000286,0.000286,0.002299,0.264374,-0.002605,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000282,0.000244,0.000313,0.000154,0.000154,0.002262,0.261939,-0.002435,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000277,0.000241,0.000310,0.000014,0.000014,0.002225,0.259678,-0.002261,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000273,0.000237,0.000306,0.000000,0.000000,0.002190,0.257465,-0.002214,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000268,0.000233,0.000303,0.000000,0.000000,0.002155,0.255284,-0.002181,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000264,0.000230,0.000300,0.000000,0.000000,0.002121,0.253136,-0.002148,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000260,0.000227,0.000297,0.000000,0.000000,0.002088,0.251020,-0.002116,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000255,0.000223,0.000294,0.000000,0.000000,0.002056,0.248935,-0.002085,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000251,0.000220,0.000291,0.000000,0.000000,0.002024,0.246882,-0.002053,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000247,0.000217,0.000288,0.000000,0.000000,0.001993,0.244859,-0.002023,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000244,0.000213,0.000286,0.000000,0.000000,0.001963,0.242867,-0.001993,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000240,0.000210,0.000283,0.000000,0.000000,0.001933,0.240904,-0.001963,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000236,0.000207,0.000281,0.000000,0.000000,0.001904,0.238970,-0.001934,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000232,0.000204,0.000278,0.000000,0.000000,0.001876,0.237065,-0.001905,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000229,0.000201,0.000276,0.000000,0.000000,0.001848,0.235189,-0.001876,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000225,0.000198,0.000274,0.000106,0.000106,0.001820,0.233236,-0.001953,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000222,0.000194,0.000271,0.000332,0.000332,0.001792,0.231089,-0.002147,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000218,0.000191,0.000269,0.000499,0.000499,0.001764,0.228810,-0.002279,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000215,0.000187,0.000267,0.000636,0.000636,0.001736,0.226431,-0.002379,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000211,0.000183,0.000264,0.000653,0.000653,0.001708,0.224070,-0.002361,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000208,0.000179,0.000262,0.000570,0.000570,0.001680,0.221826,-0.002244,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000756,0.000004,0.000007,0.000004,0.000056,0.000204,0.000177,0.000264,0.000500,0.000500,0.001652,0.220423,-0.001403,1.000000,0.000003 +69,2022-08-03 21:00:00,0.000108,0.000002,0.000000,0.000002,0.000057,0.000201,0.000174,0.000260,0.000436,0.000436,0.001625,0.218472,-0.001951,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000010,0.000001,0.000000,0.000001,0.000058,0.000197,0.000171,0.000257,0.000355,0.000355,0.001599,0.216532,-0.001940,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000031,0.000000,0.000000,0.000000,0.000060,0.000194,0.000168,0.000254,0.000265,0.000265,0.001572,0.214731,-0.001801,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000191,0.000165,0.000252,0.000160,0.000160,0.001546,0.213030,-0.001701,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000188,0.000162,0.000250,0.000024,0.000024,0.001521,0.211489,-0.001541,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000121,0.000001,0.000001,0.000001,0.000064,0.000185,0.000160,0.000249,0.000000,0.000000,0.001497,0.210112,-0.001377,1.000000,0.000001 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000182,0.000158,0.000247,0.000000,0.000000,0.001473,0.208637,-0.001474,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000021,0.000000,0.000000,0.000000,0.000066,0.000179,0.000156,0.000245,0.000000,0.000000,0.001450,0.207206,-0.001432,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000051,0.000000,0.000000,0.000000,0.000068,0.000176,0.000153,0.000244,0.000000,0.000000,0.001427,0.205824,-0.001382,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000173,0.000151,0.000242,0.000000,0.000000,0.001405,0.204414,-0.001410,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000170,0.000149,0.000241,0.000000,0.000000,0.001384,0.203024,-0.001389,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000168,0.000147,0.000239,0.000000,0.000000,0.001363,0.201656,-0.001369,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000165,0.000144,0.000238,0.000000,0.000000,0.001342,0.200307,-0.001348,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000163,0.000142,0.000237,0.000000,0.000000,0.001321,0.198979,-0.001328,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000160,0.000140,0.000236,0.000000,0.000000,0.001301,0.197671,-0.001308,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000158,0.000138,0.000235,0.000000,0.000000,0.001282,0.196382,-0.001289,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000155,0.000136,0.000233,0.000000,0.000000,0.001263,0.195113,-0.001270,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000153,0.000134,0.000232,0.000104,0.000104,0.001244,0.193759,-0.001354,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000150,0.000131,0.000231,0.000333,0.000333,0.001224,0.192201,-0.001558,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000148,0.000128,0.000230,0.000507,0.000507,0.001205,0.190494,-0.001706,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000145,0.000125,0.000229,0.000644,0.000644,0.001185,0.188678,-0.001816,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000143,0.000122,0.000228,0.000704,0.000704,0.001164,0.186829,-0.001848,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000140,0.000120,0.000227,0.000621,0.000621,0.001144,0.185091,-0.001738,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000138,0.000117,0.000225,0.000550,0.000550,0.001123,0.183448,-0.001643,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000135,0.000114,0.000224,0.000485,0.000485,0.001102,0.181894,-0.001554,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000133,0.000112,0.000223,0.000397,0.000397,0.001082,0.180450,-0.001444,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000130,0.000110,0.000222,0.000292,0.000292,0.001062,0.179130,-0.001320,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000128,0.000108,0.000221,0.000165,0.000165,0.001042,0.177955,-0.001175,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000130,0.000001,0.000001,0.000001,0.000094,0.000125,0.000107,0.000220,0.000025,0.000025,0.001023,0.177063,-0.000892,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000123,0.000105,0.000219,0.000000,0.000000,0.001005,0.176081,-0.000981,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000121,0.000104,0.000218,0.000000,0.000000,0.000988,0.175115,-0.000967,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000119,0.000102,0.000217,0.000000,0.000000,0.000971,0.174162,-0.000952,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000117,0.000100,0.000217,0.000000,0.000000,0.000955,0.173224,-0.000938,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000115,0.000099,0.000216,0.000000,0.000000,0.000939,0.172300,-0.000924,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000113,0.000097,0.000215,0.000000,0.000000,0.000923,0.171389,-0.000910,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000111,0.000096,0.000215,0.000000,0.000000,0.000908,0.170493,-0.000897,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000109,0.000095,0.000214,0.000000,0.000000,0.000893,0.169609,-0.000883,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000107,0.000093,0.000214,0.000000,0.000000,0.000879,0.168739,-0.000870,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000106,0.000092,0.000214,0.000000,0.000000,0.000865,0.167881,-0.000857,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000104,0.000090,0.000213,0.000000,0.000000,0.000851,0.167037,-0.000845,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000102,0.000089,0.000213,0.000000,0.000000,0.000838,0.166205,-0.000832,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000101,0.000088,0.000213,0.000115,0.000115,0.000825,0.165272,-0.000933,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000099,0.000086,0.000212,0.000336,0.000336,0.000811,0.164135,-0.001137,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000097,0.000084,0.000212,0.000507,0.000507,0.000798,0.162847,-0.001288,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000096,0.000081,0.000211,0.000645,0.000645,0.000783,0.161442,-0.001405,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000094,0.000079,0.000211,0.000700,0.000700,0.000769,0.160004,-0.001438,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000010,0.000000,0.000000,0.000000,0.000118,0.000092,0.000077,0.000210,0.000624,0.000624,0.000753,0.158673,-0.001332,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000120,0.000090,0.000075,0.000210,0.000547,0.000547,0.000738,0.157436,-0.001236,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000014,0.000000,0.000000,0.000000,0.000121,0.000088,0.000073,0.000209,0.000428,0.000428,0.000723,0.156340,-0.001096,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000053,0.000000,0.000000,0.000000,0.000122,0.000086,0.000072,0.000209,0.000347,0.000347,0.000708,0.155379,-0.000962,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000077,0.000000,0.000000,0.000000,0.000124,0.000085,0.000070,0.000208,0.000264,0.000264,0.000694,0.154536,-0.000843,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000010,0.000000,0.000000,0.000000,0.000125,0.000083,0.000069,0.000208,0.000153,0.000153,0.000680,0.153749,-0.000787,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000455,0.000008,0.000015,0.000008,0.000126,0.000081,0.000068,0.000216,0.000049,0.000049,0.000667,0.153501,-0.000248,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000328,0.000009,0.000010,0.000009,0.000128,0.000080,0.000068,0.000217,0.000000,0.000000,0.000655,0.153185,-0.000316,1.000000,0.000007 +123,2022-08-06 03:00:00,0.000476,0.000017,0.000021,0.000017,0.000129,0.000079,0.000068,0.000224,0.000000,0.000000,0.000644,0.153008,-0.000177,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000387,0.000015,0.000014,0.000015,0.000130,0.000077,0.000067,0.000222,0.000000,0.000000,0.000634,0.152753,-0.000255,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000084,0.000008,0.000001,0.000008,0.000131,0.000076,0.000066,0.000215,0.000000,0.000000,0.000624,0.152216,-0.000537,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000139,0.000004,0.000002,0.000004,0.000133,0.000075,0.000066,0.000212,0.000000,0.000000,0.000615,0.151740,-0.000476,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000134,0.000074,0.000065,0.000208,0.000000,0.000000,0.000606,0.151136,-0.000604,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000073,0.000064,0.000208,0.000000,0.000000,0.000597,0.150541,-0.000595,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000072,0.000063,0.000208,0.000000,0.000000,0.000588,0.149955,-0.000586,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000071,0.000062,0.000208,0.000000,0.000000,0.000579,0.149378,-0.000577,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000069,0.000061,0.000208,0.000000,0.000000,0.000571,0.148810,-0.000569,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000068,0.000060,0.000209,0.000000,0.000000,0.000562,0.148250,-0.000560,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000067,0.000059,0.000209,0.000000,0.000000,0.000554,0.147698,-0.000552,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000066,0.000058,0.000209,0.000097,0.000097,0.000545,0.147058,-0.000639,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000065,0.000057,0.000209,0.000311,0.000311,0.000537,0.146218,-0.000840,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000064,0.000055,0.000209,0.000477,0.000477,0.000528,0.145227,-0.000991,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000063,0.000053,0.000209,0.000613,0.000613,0.000518,0.144117,-0.001110,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000062,0.000051,0.000209,0.000722,0.000722,0.000508,0.142916,-0.001201,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000060,0.000050,0.000209,0.000643,0.000643,0.000497,0.141811,-0.001105,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000059,0.000048,0.000209,0.000569,0.000569,0.000485,0.140795,-0.001016,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000058,0.000046,0.000209,0.000498,0.000498,0.000474,0.139864,-0.000932,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000056,0.000045,0.000209,0.000409,0.000409,0.000463,0.139034,-0.000829,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000055,0.000044,0.000209,0.000299,0.000299,0.000452,0.138325,-0.000709,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000054,0.000043,0.000209,0.000159,0.000159,0.000441,0.137764,-0.000561,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000042,0.000209,0.000022,0.000022,0.000431,0.137347,-0.000417,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000051,0.000042,0.000209,0.000000,0.000000,0.000422,0.136958,-0.000389,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000050,0.000041,0.000209,0.000000,0.000000,0.000412,0.136575,-0.000383,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000049,0.000040,0.000209,0.000000,0.000000,0.000404,0.136197,-0.000378,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000048,0.000040,0.000209,0.000000,0.000000,0.000396,0.135825,-0.000372,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000047,0.000039,0.000209,0.000000,0.000000,0.000388,0.135459,-0.000366,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000039,0.000209,0.000000,0.000000,0.000380,0.135098,-0.000361,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000038,0.000210,0.000000,0.000000,0.000373,0.134742,-0.000356,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000044,0.000037,0.000210,0.000000,0.000000,0.000366,0.134392,-0.000350,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000044,0.000037,0.000210,0.000000,0.000000,0.000359,0.134047,-0.000345,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000036,0.000211,0.000000,0.000000,0.000353,0.133707,-0.000340,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000036,0.000211,0.000000,0.000000,0.000347,0.133372,-0.000335,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000041,0.000035,0.000211,0.000000,0.000000,0.000341,0.133043,-0.000330,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000035,0.000212,0.000094,0.000094,0.000335,0.132625,-0.000417,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000034,0.000212,0.000313,0.000313,0.000328,0.131999,-0.000627,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000039,0.000032,0.000212,0.000486,0.000486,0.000322,0.131211,-0.000788,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000038,0.000031,0.000213,0.000620,0.000620,0.000314,0.130302,-0.000908,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000037,0.000029,0.000213,0.000723,0.000723,0.000307,0.129306,-0.000997,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000036,0.000028,0.000213,0.000643,0.000643,0.000298,0.128403,-0.000903,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000035,0.000026,0.000213,0.000566,0.000566,0.000289,0.127590,-0.000813,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000034,0.000025,0.000213,0.000488,0.000488,0.000281,0.126866,-0.000724,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000024,0.000213,0.000396,0.000396,0.000272,0.126243,-0.000623,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000010,0.000000,0.000000,0.000000,0.000181,0.000032,0.000023,0.000213,0.000286,0.000286,0.000264,0.125747,-0.000496,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000160,0.000000,0.000000,0.000000,0.000182,0.000031,0.000023,0.000213,0.000127,0.000127,0.000256,0.125563,-0.000184,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000030,0.000023,0.000213,0.000000,0.000000,0.000248,0.125350,-0.000213,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000029,0.000023,0.000213,0.000000,0.000000,0.000242,0.125140,-0.000210,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000029,0.000022,0.000214,0.000000,0.000000,0.000235,0.124933,-0.000207,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000028,0.000022,0.000214,0.000000,0.000000,0.000229,0.124729,-0.000204,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000027,0.000022,0.000214,0.000000,0.000000,0.000224,0.124528,-0.000201,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000026,0.000021,0.000215,0.000000,0.000000,0.000218,0.124330,-0.000198,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000026,0.000021,0.000215,0.000000,0.000000,0.000213,0.124135,-0.000195,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000025,0.000021,0.000216,0.000000,0.000000,0.000209,0.123943,-0.000192,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000025,0.000020,0.000216,0.000000,0.000000,0.000204,0.123754,-0.000189,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000024,0.000020,0.000217,0.000000,0.000000,0.000200,0.123567,-0.000186,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000024,0.000020,0.000217,0.000000,0.000000,0.000196,0.123384,-0.000184,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000023,0.000019,0.000218,0.000000,0.000000,0.000192,0.123203,-0.000181,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000023,0.000019,0.000218,0.000000,0.000000,0.000188,0.123025,-0.000178,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000022,0.000019,0.000219,0.000079,0.000079,0.000185,0.122771,-0.000253,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000022,0.000018,0.000219,0.000297,0.000297,0.000181,0.122307,-0.000464,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000021,0.000017,0.000219,0.000470,0.000470,0.000176,0.121679,-0.000628,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000021,0.000016,0.000220,0.000607,0.000607,0.000171,0.120927,-0.000753,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000020,0.000014,0.000220,0.000701,0.000701,0.000165,0.120092,-0.000834,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000019,0.000013,0.000220,0.000621,0.000621,0.000159,0.119348,-0.000744,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000018,0.000012,0.000220,0.000542,0.000542,0.000153,0.118694,-0.000654,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000011,0.000221,0.000481,0.000481,0.000146,0.118109,-0.000585,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000017,0.000010,0.000221,0.000390,0.000390,0.000140,0.117623,-0.000486,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000016,0.000010,0.000221,0.000283,0.000283,0.000133,0.117250,-0.000373,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000015,0.000009,0.000221,0.000164,0.000164,0.000127,0.116999,-0.000251,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000015,0.000009,0.000221,0.000022,0.000022,0.000122,0.116892,-0.000107,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000267,0.000003,0.000006,0.000003,0.000207,0.000014,0.000009,0.000225,0.000000,0.000000,0.000117,0.117064,0.000172,1.000000,0.000003 +195,2022-08-09 03:00:00,0.000095,0.000002,0.000001,0.000002,0.000208,0.000014,0.000009,0.000224,0.000000,0.000000,0.000113,0.117071,0.000007,1.000000,0.000002 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000209,0.000013,0.000009,0.000224,0.000000,0.000000,0.000109,0.116984,-0.000087,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000013,0.000009,0.000223,0.000000,0.000000,0.000105,0.116899,-0.000085,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000012,0.000009,0.000223,0.000000,0.000000,0.000102,0.116815,-0.000084,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000012,0.000009,0.000224,0.000000,0.000000,0.000099,0.116732,-0.000083,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000009,0.000224,0.000000,0.000000,0.000096,0.116650,-0.000082,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000011,0.000009,0.000225,0.000000,0.000000,0.000093,0.116570,-0.000080,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000011,0.000000,0.000000,0.000000,0.000214,0.000011,0.000008,0.000225,0.000000,0.000000,0.000091,0.116501,-0.000068,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000011,0.000008,0.000226,0.000000,0.000000,0.000088,0.116423,-0.000078,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000010,0.000008,0.000226,0.000000,0.000000,0.000086,0.116346,-0.000077,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000010,0.000008,0.000227,0.000000,0.000000,0.000084,0.116270,-0.000076,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000010,0.000008,0.000228,0.000088,0.000088,0.000082,0.116109,-0.000162,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620884.csv b/test/channel_loss/channel_forcing/et/cat-2620884.csv new file mode 100644 index 000000000..566052f1e --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620884.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000113,0.000000,0.000000,0.000000,0.000000,0.001452,0.000227,0.001452,0.000167,0.000167,0.010372,0.425706,-0.004864,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001283,0.000224,0.001283,0.000039,0.000039,0.009313,0.420920,-0.004786,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001141,0.000221,0.001141,0.000000,0.000000,0.008394,0.416236,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001020,0.000218,0.001020,0.000000,0.000000,0.007592,0.411614,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000917,0.000216,0.000917,0.000000,0.000000,0.006891,0.407053,-0.004561,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000827,0.000213,0.000828,0.000000,0.000000,0.006276,0.402552,-0.004501,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000750,0.000210,0.000751,0.000000,0.000000,0.005736,0.398111,-0.004441,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000683,0.000207,0.000684,0.000000,0.000000,0.005260,0.393728,-0.004383,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000625,0.000204,0.000626,0.000000,0.000000,0.004839,0.389403,-0.004325,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000574,0.000202,0.000575,0.000000,0.000000,0.004467,0.385136,-0.004268,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000529,0.000199,0.000531,0.000000,0.000000,0.004137,0.380924,-0.004211,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000490,0.000196,0.000492,0.000000,0.000000,0.003843,0.376768,-0.004156,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000455,0.000194,0.000457,0.000000,0.000000,0.003583,0.372668,-0.004101,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000424,0.000191,0.000427,0.000000,0.000000,0.003350,0.368621,-0.004047,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000396,0.000189,0.000400,0.000118,0.000118,0.003142,0.364511,-0.004110,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000372,0.000186,0.000376,0.000343,0.000343,0.002956,0.360233,-0.004278,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000350,0.000183,0.000355,0.000518,0.000518,0.002789,0.355839,-0.004394,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000331,0.000180,0.000336,0.000650,0.000650,0.002639,0.351373,-0.004466,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000313,0.000178,0.000319,0.000627,0.000627,0.002504,0.346989,-0.004384,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000124,0.000000,0.000000,0.000000,0.000006,0.000297,0.000175,0.000304,0.000517,0.000517,0.002382,0.342893,-0.004096,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000072,0.000000,0.000000,0.000000,0.000007,0.000283,0.000172,0.000290,0.000475,0.000475,0.002271,0.338841,-0.004052,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000400,0.000000,0.000000,0.000000,0.000008,0.000270,0.000170,0.000278,0.000374,0.000374,0.002171,0.335266,-0.003575,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000086,0.000000,0.000000,0.000000,0.000008,0.000259,0.000168,0.000267,0.000316,0.000316,0.002080,0.331486,-0.003780,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000524,0.000012,0.000022,0.000012,0.000009,0.000248,0.000166,0.000270,0.000242,0.000242,0.001998,0.328239,-0.003247,1.000000,0.000010 +24,2022-08-02 00:00:00,0.000596,0.000033,0.000050,0.000033,0.000010,0.000239,0.000164,0.000282,0.000163,0.000163,0.001923,0.325157,-0.003082,1.000000,0.000027 +25,2022-08-02 01:00:00,0.001152,0.000165,0.000268,0.000165,0.000011,0.000230,0.000162,0.000405,0.000066,0.000066,0.001855,0.322545,-0.002612,1.000000,0.000131 +26,2022-08-02 02:00:00,0.001743,0.000406,0.000599,0.000406,0.000011,0.000222,0.000161,0.000640,0.000000,0.000000,0.001794,0.320289,-0.002256,1.000000,0.000323 +27,2022-08-02 03:00:00,0.001611,0.000491,0.000523,0.000491,0.000012,0.000215,0.000159,0.000719,0.000000,0.000000,0.001738,0.318007,-0.002282,1.000000,0.000355 +28,2022-08-02 04:00:00,0.001450,0.000491,0.000437,0.000491,0.000013,0.000209,0.000158,0.000713,0.000000,0.000000,0.001687,0.315681,-0.002326,1.000000,0.000301 +29,2022-08-02 05:00:00,0.000534,0.000254,0.000073,0.000254,0.000014,0.000203,0.000156,0.000471,0.000000,0.000000,0.001641,0.312842,-0.002839,1.000000,0.000120 +30,2022-08-02 06:00:00,0.000311,0.000120,0.000026,0.000120,0.000015,0.000197,0.000154,0.000332,0.000000,0.000000,0.001598,0.309866,-0.002976,1.000000,0.000026 +31,2022-08-02 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000192,0.000152,0.000229,0.000000,0.000000,0.001557,0.306648,-0.003218,1.000000,0.000005 +32,2022-08-02 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000017,0.000187,0.000150,0.000210,0.000000,0.000000,0.001520,0.303473,-0.003175,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000183,0.000148,0.000201,0.000000,0.000000,0.001485,0.300340,-0.003133,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000179,0.000146,0.000198,0.000000,0.000000,0.001452,0.297248,-0.003092,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000175,0.000144,0.000195,0.000000,0.000000,0.001421,0.294197,-0.003051,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000171,0.000142,0.000192,0.000000,0.000000,0.001392,0.291186,-0.003011,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000168,0.000140,0.000190,0.000000,0.000000,0.001365,0.288215,-0.002971,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000165,0.000138,0.000188,0.000109,0.000109,0.001338,0.285176,-0.003039,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000162,0.000136,0.000186,0.000313,0.000313,0.001313,0.281975,-0.003201,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000159,0.000134,0.000184,0.000465,0.000465,0.001289,0.278666,-0.003309,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000156,0.000132,0.000182,0.000590,0.000590,0.001266,0.275279,-0.003388,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000383,0.000000,0.000000,0.000000,0.000028,0.000153,0.000130,0.000180,0.000684,0.000684,0.001243,0.272221,-0.003058,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000150,0.000128,0.000179,0.000603,0.000603,0.001222,0.268968,-0.003253,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000023,0.000000,0.000000,0.000000,0.000030,0.000147,0.000126,0.000177,0.000537,0.000537,0.001200,0.265782,-0.003185,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000145,0.000124,0.000176,0.000489,0.000489,0.001180,0.262664,-0.003118,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000142,0.000122,0.000175,0.000411,0.000411,0.001160,0.259664,-0.003000,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000140,0.000121,0.000174,0.000303,0.000303,0.001140,0.256810,-0.002853,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000138,0.000119,0.000172,0.000164,0.000164,0.001122,0.254132,-0.002679,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000135,0.000117,0.000171,0.000020,0.000020,0.001104,0.251630,-0.002501,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000133,0.000116,0.000171,0.000000,0.000000,0.001086,0.249181,-0.002449,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000131,0.000114,0.000170,0.000000,0.000000,0.001069,0.246765,-0.002416,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000129,0.000113,0.000169,0.000000,0.000000,0.001053,0.244381,-0.002384,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000127,0.000111,0.000168,0.000000,0.000000,0.001037,0.242028,-0.002353,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000125,0.000110,0.000168,0.000000,0.000000,0.001022,0.239706,-0.002322,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000123,0.000108,0.000167,0.000000,0.000000,0.001007,0.237414,-0.002291,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000121,0.000107,0.000167,0.000000,0.000000,0.000992,0.235153,-0.002261,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000120,0.000105,0.000166,0.000000,0.000000,0.000978,0.232922,-0.002231,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000118,0.000104,0.000166,0.000000,0.000000,0.000964,0.230721,-0.002202,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000116,0.000103,0.000166,0.000000,0.000000,0.000950,0.228548,-0.002173,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000115,0.000101,0.000165,0.000000,0.000000,0.000937,0.226404,-0.002144,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000113,0.000100,0.000165,0.000000,0.000000,0.000924,0.224288,-0.002116,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000111,0.000099,0.000165,0.000116,0.000116,0.000911,0.222087,-0.002202,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000110,0.000097,0.000165,0.000352,0.000352,0.000898,0.219681,-0.002406,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000108,0.000095,0.000165,0.000522,0.000522,0.000886,0.217138,-0.002542,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000107,0.000094,0.000165,0.000649,0.000649,0.000873,0.214504,-0.002634,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000105,0.000092,0.000164,0.000659,0.000659,0.000860,0.211896,-0.002608,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000103,0.000091,0.000164,0.000572,0.000572,0.000847,0.209407,-0.002489,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003075,0.000551,0.001003,0.000551,0.000062,0.000102,0.000090,0.000716,0.000502,0.000502,0.000835,0.209066,-0.000341,1.000000,0.000451 +69,2022-08-03 21:00:00,0.000434,0.000251,0.000000,0.000251,0.000064,0.000101,0.000089,0.000415,0.000448,0.000448,0.000824,0.207166,-0.001900,1.000000,0.000201 +70,2022-08-03 22:00:00,0.000000,0.000201,0.000000,0.000201,0.000065,0.000099,0.000088,0.000365,0.000374,0.000374,0.000812,0.204935,-0.002231,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000093,0.000000,0.000000,0.000000,0.000067,0.000098,0.000086,0.000164,0.000285,0.000285,0.000801,0.202913,-0.002022,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000096,0.000085,0.000165,0.000172,0.000172,0.000790,0.200938,-0.001976,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000095,0.000084,0.000165,0.000031,0.000031,0.000779,0.199128,-0.001810,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000013,0.000000,0.000000,0.000000,0.000071,0.000094,0.000083,0.000165,0.000000,0.000000,0.000768,0.197385,-0.001743,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000092,0.000082,0.000165,0.000000,0.000000,0.000757,0.195653,-0.001733,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000091,0.000081,0.000165,0.000000,0.000000,0.000747,0.193943,-0.001710,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000013,0.000000,0.000000,0.000000,0.000076,0.000090,0.000080,0.000166,0.000000,0.000000,0.000737,0.192269,-0.001674,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000089,0.000079,0.000166,0.000000,0.000000,0.000727,0.190604,-0.001665,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000087,0.000078,0.000166,0.000000,0.000000,0.000717,0.188961,-0.001643,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000086,0.000077,0.000166,0.000000,0.000000,0.000707,0.187340,-0.001621,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000085,0.000076,0.000167,0.000000,0.000000,0.000698,0.185740,-0.001600,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000084,0.000075,0.000167,0.000000,0.000000,0.000689,0.184161,-0.001579,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000083,0.000074,0.000168,0.000000,0.000000,0.000679,0.182603,-0.001558,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000082,0.000073,0.000168,0.000000,0.000000,0.000670,0.181066,-0.001537,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000081,0.000072,0.000169,0.000000,0.000000,0.000661,0.179549,-0.001517,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000080,0.000071,0.000169,0.000112,0.000112,0.000652,0.177941,-0.001608,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000078,0.000070,0.000169,0.000347,0.000347,0.000644,0.176122,-0.001819,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000077,0.000068,0.000170,0.000520,0.000520,0.000635,0.174158,-0.001964,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000076,0.000067,0.000170,0.000652,0.000652,0.000625,0.172089,-0.002069,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000075,0.000066,0.000171,0.000707,0.000707,0.000616,0.169993,-0.002096,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000074,0.000064,0.000171,0.000629,0.000629,0.000606,0.168002,-0.001991,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000073,0.000063,0.000172,0.000570,0.000570,0.000597,0.166094,-0.001907,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000072,0.000062,0.000172,0.000505,0.000505,0.000587,0.164276,-0.001818,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000070,0.000061,0.000172,0.000413,0.000413,0.000578,0.162573,-0.001703,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000069,0.000060,0.000173,0.000309,0.000309,0.000569,0.160995,-0.001578,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000068,0.000059,0.000173,0.000176,0.000176,0.000560,0.159570,-0.001425,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000019,0.000000,0.000000,0.000000,0.000107,0.000067,0.000058,0.000174,0.000033,0.000033,0.000551,0.158323,-0.001247,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000066,0.000058,0.000174,0.000000,0.000000,0.000542,0.157106,-0.001217,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000065,0.000057,0.000175,0.000000,0.000000,0.000534,0.155905,-0.001201,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000064,0.000056,0.000175,0.000000,0.000000,0.000526,0.154720,-0.001185,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000063,0.000055,0.000176,0.000000,0.000000,0.000518,0.153551,-0.001169,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000062,0.000055,0.000177,0.000000,0.000000,0.000511,0.152397,-0.001154,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000061,0.000054,0.000177,0.000000,0.000000,0.000503,0.151259,-0.001139,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000060,0.000053,0.000178,0.000000,0.000000,0.000496,0.150135,-0.001124,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000059,0.000052,0.000179,0.000000,0.000000,0.000489,0.149027,-0.001109,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000059,0.000052,0.000179,0.000000,0.000000,0.000482,0.147932,-0.001094,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000058,0.000051,0.000180,0.000000,0.000000,0.000475,0.146853,-0.001080,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000057,0.000050,0.000181,0.000000,0.000000,0.000469,0.145788,-0.001065,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000056,0.000050,0.000182,0.000000,0.000000,0.000462,0.144736,-0.001051,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000055,0.000049,0.000182,0.000125,0.000125,0.000456,0.143576,-0.001161,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000055,0.000048,0.000183,0.000359,0.000359,0.000449,0.142199,-0.001376,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000054,0.000047,0.000184,0.000530,0.000530,0.000443,0.140672,-0.001527,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000053,0.000046,0.000185,0.000657,0.000657,0.000436,0.139041,-0.001632,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000052,0.000045,0.000185,0.000689,0.000689,0.000429,0.137398,-0.001642,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000051,0.000044,0.000186,0.000621,0.000621,0.000422,0.135907,-0.001491,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000050,0.000043,0.000187,0.000552,0.000552,0.000414,0.134504,-0.001403,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000049,0.000042,0.000187,0.000449,0.000449,0.000407,0.133221,-0.001283,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000049,0.000042,0.000188,0.000372,0.000372,0.000400,0.132030,-0.001190,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000196,0.000000,0.000000,0.000000,0.000141,0.000048,0.000041,0.000189,0.000279,0.000279,0.000394,0.131079,-0.000951,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000047,0.000040,0.000190,0.000166,0.000166,0.000387,0.130120,-0.000959,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000647,0.000038,0.000069,0.000038,0.000144,0.000046,0.000040,0.000228,0.000055,0.000055,0.000381,0.129793,-0.000327,1.000000,0.000031 +122,2022-08-06 02:00:00,0.001392,0.000197,0.000328,0.000197,0.000146,0.000046,0.000040,0.000389,0.000000,0.000000,0.000376,0.130003,0.000210,1.000000,0.000161 +123,2022-08-06 03:00:00,0.000800,0.000162,0.000120,0.000162,0.000147,0.000045,0.000040,0.000354,0.000000,0.000000,0.000371,0.129832,-0.000172,1.000000,0.000120 +124,2022-08-06 04:00:00,0.000303,0.000106,0.000019,0.000106,0.000149,0.000044,0.000040,0.000299,0.000000,0.000000,0.000366,0.129272,-0.000560,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000286,0.000038,0.000017,0.000038,0.000150,0.000044,0.000040,0.000232,0.000000,0.000000,0.000362,0.128704,-0.000568,1.000000,0.000011 +126,2022-08-06 06:00:00,0.000410,0.000027,0.000034,0.000027,0.000152,0.000043,0.000039,0.000222,0.000000,0.000000,0.000358,0.128249,-0.000455,1.000000,0.000019 +127,2022-08-06 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000153,0.000043,0.000039,0.000208,0.000000,0.000000,0.000354,0.127429,-0.000820,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000155,0.000042,0.000038,0.000204,0.000000,0.000000,0.000349,0.126621,-0.000809,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000042,0.000038,0.000198,0.000000,0.000000,0.000345,0.125822,-0.000798,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000041,0.000037,0.000199,0.000000,0.000000,0.000341,0.125035,-0.000788,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000041,0.000037,0.000200,0.000000,0.000000,0.000337,0.124257,-0.000777,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000040,0.000036,0.000201,0.000000,0.000000,0.000333,0.123490,-0.000767,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000040,0.000036,0.000202,0.000000,0.000000,0.000329,0.122734,-0.000757,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000039,0.000035,0.000203,0.000104,0.000104,0.000325,0.121884,-0.000849,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000039,0.000035,0.000204,0.000329,0.000329,0.000320,0.120824,-0.001061,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000038,0.000034,0.000205,0.000490,0.000490,0.000316,0.119618,-0.001206,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000038,0.000033,0.000206,0.000625,0.000625,0.000311,0.118295,-0.001323,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000037,0.000032,0.000207,0.000718,0.000718,0.000306,0.116899,-0.001396,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000036,0.000031,0.000208,0.000650,0.000650,0.000301,0.115587,-0.001312,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000036,0.000030,0.000208,0.000578,0.000578,0.000295,0.114364,-0.001223,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000035,0.000030,0.000209,0.000516,0.000516,0.000290,0.113218,-0.001146,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000035,0.000029,0.000210,0.000424,0.000424,0.000285,0.112179,-0.001040,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000034,0.000029,0.000211,0.000316,0.000316,0.000279,0.111259,-0.000920,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000033,0.000028,0.000212,0.000172,0.000172,0.000274,0.110494,-0.000765,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000028,0.000213,0.000029,0.000029,0.000269,0.109880,-0.000614,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000032,0.000027,0.000213,0.000000,0.000000,0.000264,0.109303,-0.000577,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000031,0.000027,0.000214,0.000000,0.000000,0.000260,0.108733,-0.000570,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000031,0.000027,0.000215,0.000000,0.000000,0.000255,0.108171,-0.000562,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000030,0.000026,0.000216,0.000000,0.000000,0.000251,0.107617,-0.000555,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000030,0.000026,0.000217,0.000000,0.000000,0.000247,0.107069,-0.000547,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000029,0.000026,0.000218,0.000000,0.000000,0.000243,0.106529,-0.000540,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000029,0.000025,0.000219,0.000000,0.000000,0.000239,0.105996,-0.000533,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000025,0.000220,0.000000,0.000000,0.000236,0.105470,-0.000526,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000028,0.000025,0.000221,0.000000,0.000000,0.000232,0.104951,-0.000519,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000028,0.000024,0.000222,0.000000,0.000000,0.000228,0.104439,-0.000512,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000027,0.000024,0.000223,0.000000,0.000000,0.000225,0.103934,-0.000505,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000027,0.000024,0.000224,0.000000,0.000000,0.000222,0.103435,-0.000499,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000026,0.000023,0.000225,0.000103,0.000103,0.000219,0.102841,-0.000594,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000026,0.000023,0.000226,0.000334,0.000334,0.000215,0.102027,-0.000814,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000227,0.000505,0.000505,0.000212,0.101055,-0.000972,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000025,0.000021,0.000227,0.000626,0.000626,0.000208,0.099977,-0.001079,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000021,0.000228,0.000719,0.000719,0.000204,0.098820,-0.001156,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000020,0.000229,0.000639,0.000639,0.000200,0.097758,-0.001062,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000019,0.000230,0.000567,0.000567,0.000195,0.096782,-0.000976,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000019,0.000231,0.000495,0.000495,0.000191,0.095889,-0.000893,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000018,0.000232,0.000412,0.000412,0.000187,0.095090,-0.000799,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000022,0.000018,0.000232,0.000305,0.000305,0.000182,0.094407,-0.000683,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000019,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000233,0.000137,0.000137,0.000178,0.093918,-0.000489,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000021,0.000017,0.000234,0.000004,0.000000,0.000175,0.093552,-0.000366,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000017,0.000235,0.000000,0.000000,0.000171,0.093190,-0.000362,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000020,0.000017,0.000236,0.000000,0.000000,0.000167,0.092833,-0.000357,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000017,0.000237,0.000000,0.000000,0.000164,0.092481,-0.000352,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000016,0.000238,0.000000,0.000000,0.000161,0.092134,-0.000347,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000019,0.000016,0.000238,0.000000,0.000000,0.000158,0.091791,-0.000343,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000016,0.000239,0.000000,0.000000,0.000155,0.091452,-0.000338,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000016,0.000240,0.000000,0.000000,0.000153,0.091118,-0.000334,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000016,0.000241,0.000000,0.000000,0.000150,0.090789,-0.000329,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000015,0.000242,0.000000,0.000000,0.000148,0.090464,-0.000325,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000015,0.000243,0.000000,0.000000,0.000145,0.090143,-0.000321,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000015,0.000244,0.000000,0.000000,0.000143,0.089826,-0.000317,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000015,0.000245,0.000000,0.000000,0.000141,0.089514,-0.000312,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000015,0.000246,0.000086,0.000000,0.000138,0.089206,-0.000308,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000247,0.000313,0.000000,0.000136,0.088902,-0.000304,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000248,0.000489,0.000000,0.000134,0.088601,-0.000300,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000014,0.000249,0.000614,0.000000,0.000132,0.088305,-0.000296,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000014,0.000250,0.000708,0.000000,0.000130,0.088013,-0.000292,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000014,0.000251,0.000612,0.000000,0.000128,0.087724,-0.000288,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000252,0.000546,0.000000,0.000127,0.087440,-0.000285,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000504,0.000000,0.000125,0.087159,-0.000281,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000013,0.000254,0.000415,0.000000,0.000123,0.086882,-0.000277,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000013,0.000255,0.000304,0.000000,0.000121,0.086608,-0.000274,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000013,0.000256,0.000173,0.000000,0.000119,0.086338,-0.000270,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000013,0.000256,0.000026,0.000000,0.000118,0.086072,-0.000266,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000092,0.000001,0.000002,0.000001,0.000243,0.000014,0.000012,0.000258,0.000000,0.000000,0.000116,0.085898,-0.000174,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000031,0.000001,0.000000,0.000001,0.000244,0.000014,0.000012,0.000259,0.000000,0.000000,0.000115,0.085667,-0.000230,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000012,0.000260,0.000000,0.000000,0.000113,0.085410,-0.000257,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000012,0.000260,0.000000,0.000000,0.000112,0.085156,-0.000254,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000012,0.000261,0.000000,0.000000,0.000110,0.084905,-0.000251,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000012,0.000262,0.000000,0.000000,0.000109,0.084658,-0.000247,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000013,0.000012,0.000263,0.000000,0.000000,0.000107,0.084414,-0.000244,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000011,0.000264,0.000000,0.000000,0.000106,0.084173,-0.000241,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000011,0.000265,0.000000,0.000000,0.000104,0.083935,-0.000238,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000266,0.000000,0.000000,0.000103,0.083700,-0.000235,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000267,0.000000,0.000000,0.000102,0.083469,-0.000232,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000011,0.000268,0.000000,0.000000,0.000100,0.083240,-0.000228,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000012,0.000011,0.000268,0.000096,0.000000,0.000099,0.083015,-0.000225,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620885.csv b/test/channel_loss/channel_forcing/et/cat-2620885.csv new file mode 100644 index 000000000..7a4c0a2ac --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620885.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000206,0.000000,0.000000,0.000000,0.000000,0.001472,0.000376,0.001472,0.000181,0.000181,0.010500,0.425766,-0.004803,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001321,0.000371,0.001321,0.000050,0.000050,0.009551,0.420957,-0.004810,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001192,0.000366,0.001192,0.000000,0.000000,0.008724,0.416263,-0.004694,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001082,0.000361,0.001082,0.000000,0.000000,0.008003,0.411635,-0.004628,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000987,0.000356,0.000988,0.000000,0.000000,0.007371,0.407072,-0.004563,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000906,0.000351,0.000906,0.000000,0.000000,0.006816,0.402573,-0.004499,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000835,0.000346,0.000835,0.000000,0.000000,0.006327,0.398136,-0.004437,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000773,0.000341,0.000774,0.000000,0.000000,0.005895,0.393762,-0.004375,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000719,0.000336,0.000720,0.000000,0.000000,0.005512,0.389448,-0.004313,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000671,0.000331,0.000673,0.000000,0.000000,0.005172,0.385195,-0.004253,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000629,0.000327,0.000631,0.000000,0.000000,0.004870,0.381001,-0.004194,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000592,0.000322,0.000594,0.000000,0.000000,0.004600,0.376866,-0.004135,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000559,0.000318,0.000562,0.000000,0.000000,0.004358,0.372789,-0.004077,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000530,0.000313,0.000533,0.000000,0.000000,0.004142,0.368768,-0.004020,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000503,0.000309,0.000507,0.000125,0.000125,0.003947,0.364680,-0.004088,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000480,0.000304,0.000484,0.000360,0.000360,0.003771,0.360418,-0.004262,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000459,0.000299,0.000463,0.000529,0.000529,0.003612,0.356049,-0.004369,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000439,0.000294,0.000444,0.000654,0.000654,0.003467,0.351618,-0.004431,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000422,0.000289,0.000427,0.000620,0.000620,0.003334,0.347282,-0.004335,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000124,0.000000,0.000000,0.000000,0.000006,0.000406,0.000285,0.000412,0.000540,0.000540,0.003214,0.343208,-0.004074,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000069,0.000000,0.000000,0.000000,0.000007,0.000391,0.000281,0.000398,0.000473,0.000473,0.003103,0.339203,-0.004005,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000428,0.000000,0.000000,0.000000,0.000007,0.000378,0.000277,0.000385,0.000386,0.000386,0.003002,0.335693,-0.003510,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000069,0.000000,0.000000,0.000000,0.000008,0.000366,0.000273,0.000374,0.000332,0.000332,0.002909,0.331931,-0.003762,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000235,0.000000,0.000000,0.000000,0.000009,0.000354,0.000269,0.000363,0.000262,0.000262,0.002823,0.328455,-0.003476,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000157,0.000000,0.000000,0.000000,0.000010,0.000344,0.000265,0.000354,0.000171,0.000171,0.002744,0.325041,-0.003414,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000594,0.000024,0.000044,0.000024,0.000010,0.000335,0.000262,0.000369,0.000071,0.000071,0.002671,0.322159,-0.002881,1.000000,0.000020 +26,2022-08-02 02:00:00,0.001150,0.000118,0.000194,0.000118,0.000011,0.000326,0.000259,0.000455,0.000000,0.000000,0.002604,0.319789,-0.002370,1.000000,0.000096 +27,2022-08-02 03:00:00,0.001129,0.000160,0.000187,0.000160,0.000012,0.000318,0.000257,0.000490,0.000000,0.000000,0.002542,0.317438,-0.002351,1.000000,0.000123 +28,2022-08-02 04:00:00,0.001231,0.000206,0.000218,0.000206,0.000013,0.000311,0.000254,0.000529,0.000000,0.000000,0.002486,0.315190,-0.002248,1.000000,0.000136 +29,2022-08-02 05:00:00,0.000602,0.000123,0.000057,0.000123,0.000014,0.000304,0.000251,0.000441,0.000000,0.000000,0.002433,0.312512,-0.002678,1.000000,0.000069 +30,2022-08-02 06:00:00,0.000451,0.000076,0.000033,0.000076,0.000014,0.000297,0.000248,0.000388,0.000000,0.000000,0.002383,0.309746,-0.002766,1.000000,0.000026 +31,2022-08-02 07:00:00,0.000000,0.000020,0.000000,0.000020,0.000015,0.000291,0.000245,0.000326,0.000000,0.000000,0.002337,0.306607,-0.003139,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000016,0.000286,0.000241,0.000309,0.000000,0.000000,0.002292,0.303511,-0.003096,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000280,0.000238,0.000297,0.000000,0.000000,0.002250,0.300459,-0.003052,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000275,0.000234,0.000293,0.000000,0.000000,0.002209,0.297449,-0.003010,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000270,0.000231,0.000289,0.000000,0.000000,0.002170,0.294482,-0.002968,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000265,0.000228,0.000285,0.000000,0.000000,0.002133,0.291556,-0.002926,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000261,0.000225,0.000282,0.000000,0.000000,0.002097,0.288671,-0.002885,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000256,0.000222,0.000278,0.000114,0.000114,0.002062,0.285714,-0.002957,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000252,0.000218,0.000275,0.000329,0.000329,0.002028,0.282585,-0.003128,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000248,0.000214,0.000272,0.000482,0.000482,0.001995,0.279351,-0.003235,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000244,0.000211,0.000269,0.000599,0.000599,0.001962,0.276045,-0.003305,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000504,0.000000,0.000000,0.000000,0.000026,0.000239,0.000208,0.000266,0.000692,0.000692,0.001931,0.273192,-0.002854,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000235,0.000204,0.000263,0.000621,0.000621,0.001899,0.270013,-0.003179,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000232,0.000201,0.000260,0.000553,0.000553,0.001868,0.266884,-0.003129,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000228,0.000197,0.000258,0.000509,0.000509,0.001838,0.263842,-0.003042,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000224,0.000194,0.000255,0.000429,0.000429,0.001808,0.260921,-0.002920,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000220,0.000191,0.000252,0.000324,0.000324,0.001779,0.258145,-0.002777,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000217,0.000188,0.000250,0.000178,0.000178,0.001751,0.255551,-0.002594,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000213,0.000186,0.000248,0.000029,0.000029,0.001723,0.253140,-0.002411,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000210,0.000183,0.000246,0.000000,0.000000,0.001696,0.250792,-0.002348,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000206,0.000180,0.000243,0.000000,0.000000,0.001670,0.248476,-0.002316,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000203,0.000178,0.000242,0.000000,0.000000,0.001645,0.246193,-0.002283,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000200,0.000175,0.000240,0.000000,0.000000,0.001620,0.243942,-0.002251,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000197,0.000173,0.000238,0.000000,0.000000,0.001596,0.241722,-0.002220,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000194,0.000171,0.000236,0.000000,0.000000,0.001572,0.239533,-0.002189,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000191,0.000168,0.000235,0.000000,0.000000,0.001549,0.237375,-0.002158,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000188,0.000166,0.000233,0.000000,0.000000,0.001527,0.235247,-0.002128,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000186,0.000163,0.000231,0.000000,0.000000,0.001505,0.233149,-0.002098,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000183,0.000161,0.000230,0.000000,0.000000,0.001483,0.231080,-0.002069,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000180,0.000159,0.000229,0.000000,0.000000,0.001462,0.229040,-0.002040,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000178,0.000157,0.000227,0.000000,0.000000,0.001441,0.227028,-0.002012,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000175,0.000154,0.000226,0.000122,0.000122,0.001420,0.224924,-0.002104,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000172,0.000152,0.000225,0.000364,0.000364,0.001400,0.222611,-0.002313,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000170,0.000149,0.000224,0.000535,0.000535,0.001379,0.220161,-0.002450,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000167,0.000146,0.000222,0.000652,0.000652,0.001358,0.217631,-0.002530,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000165,0.000144,0.000221,0.000655,0.000655,0.001337,0.215133,-0.002498,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000162,0.000141,0.000220,0.000579,0.000579,0.001316,0.212746,-0.002388,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002716,0.000297,0.000540,0.000297,0.000059,0.000160,0.000141,0.000516,0.000509,0.000509,0.001298,0.212605,-0.000140,1.000000,0.000243 +69,2022-08-03 21:00:00,0.000270,0.000135,0.000000,0.000135,0.000061,0.000157,0.000139,0.000353,0.000472,0.000472,0.001279,0.210625,-0.001981,1.000000,0.000108 +70,2022-08-03 22:00:00,0.000000,0.000108,0.000000,0.000108,0.000062,0.000155,0.000136,0.000325,0.000393,0.000393,0.001260,0.208484,-0.002141,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000153,0.000134,0.000216,0.000302,0.000302,0.001242,0.206524,-0.001960,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000150,0.000132,0.000215,0.000182,0.000182,0.001224,0.204648,-0.001876,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000148,0.000130,0.000214,0.000041,0.000041,0.001206,0.202937,-0.001711,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000146,0.000128,0.000214,0.000000,0.000000,0.001188,0.201290,-0.001647,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000144,0.000126,0.000213,0.000000,0.000000,0.001171,0.199667,-0.001624,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000142,0.000125,0.000212,0.000000,0.000000,0.001154,0.198066,-0.001601,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000032,0.000000,0.000000,0.000000,0.000072,0.000140,0.000123,0.000212,0.000000,0.000000,0.001137,0.196518,-0.001548,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000138,0.000121,0.000211,0.000000,0.000000,0.001121,0.194961,-0.001557,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000136,0.000120,0.000211,0.000000,0.000000,0.001105,0.193426,-0.001535,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000134,0.000118,0.000210,0.000000,0.000000,0.001090,0.191912,-0.001514,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000132,0.000116,0.000209,0.000000,0.000000,0.001074,0.190419,-0.001493,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000130,0.000115,0.000209,0.000000,0.000000,0.001059,0.188947,-0.001472,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000128,0.000113,0.000209,0.000000,0.000000,0.001044,0.187496,-0.001451,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000126,0.000111,0.000208,0.000000,0.000000,0.001029,0.186065,-0.001431,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000124,0.000110,0.000208,0.000000,0.000000,0.001015,0.184654,-0.001411,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000123,0.000108,0.000208,0.000119,0.000119,0.001001,0.183146,-0.001508,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000121,0.000106,0.000207,0.000362,0.000362,0.000986,0.181418,-0.001727,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000119,0.000104,0.000207,0.000534,0.000534,0.000972,0.179546,-0.001872,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000117,0.000102,0.000207,0.000660,0.000660,0.000957,0.177576,-0.001970,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000115,0.000100,0.000206,0.000715,0.000715,0.000941,0.175578,-0.001997,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000113,0.000098,0.000206,0.000639,0.000639,0.000926,0.173684,-0.001894,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000111,0.000096,0.000205,0.000575,0.000575,0.000910,0.171879,-0.001805,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000109,0.000094,0.000205,0.000517,0.000517,0.000895,0.170157,-0.001723,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000108,0.000092,0.000204,0.000428,0.000428,0.000879,0.168546,-0.001611,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000106,0.000090,0.000204,0.000328,0.000328,0.000864,0.167056,-0.001490,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000104,0.000089,0.000204,0.000189,0.000189,0.000850,0.165724,-0.001332,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000102,0.000088,0.000203,0.000046,0.000046,0.000835,0.164552,-0.001172,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000100,0.000087,0.000203,0.000000,0.000000,0.000821,0.163441,-0.001110,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000099,0.000085,0.000203,0.000000,0.000000,0.000808,0.162347,-0.001095,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000097,0.000084,0.000203,0.000000,0.000000,0.000795,0.161267,-0.001080,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000096,0.000083,0.000203,0.000000,0.000000,0.000782,0.160203,-0.001064,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000094,0.000082,0.000203,0.000000,0.000000,0.000770,0.159153,-0.001050,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000093,0.000081,0.000203,0.000000,0.000000,0.000758,0.158118,-0.001035,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000091,0.000079,0.000203,0.000000,0.000000,0.000747,0.157098,-0.001020,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000090,0.000078,0.000203,0.000000,0.000000,0.000735,0.156092,-0.001006,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000088,0.000077,0.000203,0.000000,0.000000,0.000724,0.155099,-0.000992,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000087,0.000076,0.000203,0.000000,0.000000,0.000713,0.154121,-0.000978,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000086,0.000075,0.000203,0.000000,0.000000,0.000703,0.153157,-0.000965,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000084,0.000074,0.000203,0.000000,0.000000,0.000692,0.152205,-0.000951,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000083,0.000073,0.000203,0.000133,0.000133,0.000682,0.151137,-0.001069,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000082,0.000071,0.000204,0.000376,0.000376,0.000672,0.149843,-0.001293,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000081,0.000070,0.000204,0.000541,0.000541,0.000661,0.148405,-0.001438,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000079,0.000068,0.000204,0.000660,0.000660,0.000650,0.146870,-0.001535,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000078,0.000067,0.000204,0.000677,0.000677,0.000639,0.145339,-0.001531,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000076,0.000065,0.000204,0.000607,0.000607,0.000627,0.143961,-0.001378,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000075,0.000064,0.000204,0.000542,0.000542,0.000616,0.142667,-0.001294,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000074,0.000062,0.000204,0.000463,0.000463,0.000604,0.141468,-0.001199,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000066,0.000000,0.000000,0.000000,0.000132,0.000072,0.000061,0.000204,0.000390,0.000390,0.000593,0.140361,-0.001108,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000200,0.000000,0.000000,0.000000,0.000133,0.000071,0.000060,0.000204,0.000297,0.000297,0.000582,0.139493,-0.000868,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000070,0.000059,0.000204,0.000180,0.000180,0.000572,0.138617,-0.000876,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000621,0.000021,0.000038,0.000021,0.000136,0.000068,0.000059,0.000225,0.000064,0.000064,0.000562,0.138380,-0.000237,1.000000,0.000017 +122,2022-08-06 02:00:00,0.001375,0.000125,0.000211,0.000125,0.000137,0.000067,0.000059,0.000330,0.000000,0.000000,0.000554,0.138784,0.000403,1.000000,0.000102 +123,2022-08-06 03:00:00,0.000811,0.000103,0.000078,0.000103,0.000139,0.000067,0.000059,0.000309,0.000000,0.000000,0.000547,0.138756,-0.000028,1.000000,0.000077 +124,2022-08-06 04:00:00,0.000494,0.000078,0.000030,0.000078,0.000140,0.000066,0.000059,0.000284,0.000000,0.000000,0.000540,0.138463,-0.000292,1.000000,0.000029 +125,2022-08-06 05:00:00,0.000485,0.000039,0.000029,0.000039,0.000142,0.000065,0.000059,0.000246,0.000000,0.000000,0.000534,0.138166,-0.000297,1.000000,0.000019 +126,2022-08-06 06:00:00,0.000613,0.000038,0.000046,0.000038,0.000143,0.000064,0.000058,0.000246,0.000000,0.000000,0.000528,0.137984,-0.000182,1.000000,0.000026 +127,2022-08-06 07:00:00,0.000000,0.000017,0.000000,0.000017,0.000145,0.000063,0.000058,0.000225,0.000000,0.000000,0.000522,0.137245,-0.000739,1.000000,0.000009 +128,2022-08-06 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000146,0.000063,0.000057,0.000218,0.000000,0.000000,0.000516,0.136516,-0.000729,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000062,0.000056,0.000209,0.000000,0.000000,0.000510,0.135798,-0.000719,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000061,0.000055,0.000210,0.000000,0.000000,0.000504,0.135089,-0.000709,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000061,0.000054,0.000211,0.000000,0.000000,0.000498,0.134390,-0.000699,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000060,0.000054,0.000211,0.000000,0.000000,0.000492,0.133702,-0.000689,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000059,0.000053,0.000212,0.000000,0.000000,0.000485,0.133022,-0.000679,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000058,0.000052,0.000213,0.000112,0.000112,0.000479,0.132243,-0.000780,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000057,0.000051,0.000213,0.000347,0.000347,0.000473,0.131242,-0.001001,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000057,0.000050,0.000214,0.000508,0.000508,0.000466,0.130096,-0.001146,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000056,0.000048,0.000214,0.000635,0.000635,0.000458,0.128841,-0.001255,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000055,0.000047,0.000214,0.000716,0.000716,0.000450,0.127524,-0.001317,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000054,0.000045,0.000215,0.000655,0.000655,0.000442,0.126285,-0.001239,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000053,0.000044,0.000215,0.000580,0.000580,0.000434,0.125138,-0.001147,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000052,0.000043,0.000215,0.000526,0.000526,0.000425,0.124059,-0.001079,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000051,0.000042,0.000216,0.000434,0.000434,0.000416,0.123087,-0.000972,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000050,0.000041,0.000216,0.000330,0.000330,0.000408,0.122230,-0.000856,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000049,0.000040,0.000216,0.000182,0.000182,0.000400,0.121532,-0.000698,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000040,0.000217,0.000040,0.000040,0.000392,0.120984,-0.000549,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000039,0.000217,0.000000,0.000000,0.000384,0.120482,-0.000501,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000218,0.000000,0.000000,0.000377,0.119988,-0.000494,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000038,0.000218,0.000000,0.000000,0.000370,0.119500,-0.000488,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000037,0.000219,0.000000,0.000000,0.000363,0.119019,-0.000481,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000037,0.000219,0.000000,0.000000,0.000357,0.118545,-0.000474,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000043,0.000036,0.000220,0.000000,0.000000,0.000351,0.118078,-0.000467,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000036,0.000220,0.000000,0.000000,0.000345,0.117617,-0.000461,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000035,0.000221,0.000000,0.000000,0.000339,0.117163,-0.000454,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000040,0.000035,0.000221,0.000000,0.000000,0.000333,0.116715,-0.000448,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000034,0.000222,0.000000,0.000000,0.000328,0.116273,-0.000442,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000034,0.000223,0.000000,0.000000,0.000323,0.115837,-0.000436,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000039,0.000033,0.000223,0.000000,0.000000,0.000318,0.115407,-0.000430,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000224,0.000111,0.000111,0.000313,0.114875,-0.000533,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000032,0.000224,0.000350,0.000350,0.000307,0.114114,-0.000761,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000037,0.000031,0.000225,0.000516,0.000516,0.000302,0.113200,-0.000914,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000030,0.000226,0.000634,0.000634,0.000296,0.112182,-0.001018,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000029,0.000226,0.000713,0.000713,0.000289,0.111100,-0.001082,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000028,0.000226,0.000650,0.000650,0.000283,0.110095,-0.001005,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000027,0.000227,0.000571,0.000571,0.000276,0.109183,-0.000913,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000026,0.000227,0.000516,0.000516,0.000269,0.108338,-0.000845,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000025,0.000228,0.000430,0.000430,0.000262,0.107589,-0.000748,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000024,0.000228,0.000324,0.000324,0.000255,0.106955,-0.000634,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000228,0.000151,0.000151,0.000249,0.106501,-0.000454,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000023,0.000229,0.000011,0.000011,0.000243,0.106191,-0.000310,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000029,0.000023,0.000229,0.000000,0.000000,0.000237,0.105896,-0.000295,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000230,0.000000,0.000000,0.000231,0.105605,-0.000291,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000022,0.000230,0.000000,0.000000,0.000226,0.105319,-0.000287,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000231,0.000000,0.000000,0.000222,0.105036,-0.000283,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000232,0.000000,0.000000,0.000217,0.104757,-0.000279,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000000,0.000000,0.000213,0.104483,-0.000275,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000021,0.000233,0.000000,0.000000,0.000208,0.104212,-0.000271,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000025,0.000021,0.000233,0.000000,0.000000,0.000204,0.103945,-0.000267,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000021,0.000234,0.000000,0.000000,0.000201,0.103681,-0.000263,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000235,0.000000,0.000000,0.000197,0.103422,-0.000260,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000020,0.000236,0.000000,0.000000,0.000194,0.103165,-0.000256,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000020,0.000236,0.000000,0.000000,0.000190,0.102913,-0.000252,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000023,0.000019,0.000237,0.000095,0.000095,0.000187,0.102570,-0.000343,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000238,0.000336,0.000336,0.000183,0.101995,-0.000575,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000018,0.000238,0.000507,0.000507,0.000179,0.101260,-0.000736,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000017,0.000239,0.000621,0.000621,0.000175,0.100421,-0.000839,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000016,0.000239,0.000710,0.000710,0.000170,0.099507,-0.000914,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000015,0.000240,0.000626,0.000626,0.000165,0.098688,-0.000819,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000014,0.000240,0.000556,0.000556,0.000160,0.097950,-0.000738,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000013,0.000241,0.000517,0.000517,0.000155,0.097260,-0.000690,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000013,0.000241,0.000428,0.000428,0.000150,0.096668,-0.000592,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000012,0.000241,0.000323,0.000323,0.000144,0.096188,-0.000480,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000012,0.000242,0.000184,0.000184,0.000139,0.095851,-0.000337,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000012,0.000242,0.000034,0.000034,0.000135,0.095667,-0.000184,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000194,0.000003,0.000005,0.000003,0.000227,0.000016,0.000012,0.000245,0.000000,0.000000,0.000131,0.095706,0.000039,1.000000,0.000002 +195,2022-08-09 03:00:00,0.000066,0.000001,0.000001,0.000001,0.000228,0.000015,0.000012,0.000245,0.000000,0.000000,0.000127,0.095623,-0.000083,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000229,0.000015,0.000011,0.000245,0.000000,0.000000,0.000123,0.095476,-0.000147,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000015,0.000011,0.000245,0.000000,0.000000,0.000120,0.095330,-0.000145,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000011,0.000245,0.000000,0.000000,0.000117,0.095187,-0.000143,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000014,0.000011,0.000246,0.000000,0.000000,0.000114,0.095046,-0.000141,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000014,0.000011,0.000247,0.000000,0.000000,0.000112,0.094907,-0.000139,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000247,0.000000,0.000000,0.000109,0.094770,-0.000137,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000107,0.094635,-0.000135,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000010,0.000249,0.000000,0.000000,0.000104,0.094502,-0.000133,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000010,0.000249,0.000000,0.000000,0.000102,0.094370,-0.000131,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000010,0.000250,0.000000,0.000000,0.000100,0.094241,-0.000130,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000010,0.000251,0.000101,0.000101,0.000098,0.094014,-0.000227,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620886.csv b/test/channel_loss/channel_forcing/et/cat-2620886.csv new file mode 100644 index 000000000..efc036339 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620886.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000234,0.000000,0.000001,0.000000,0.000000,0.001463,0.000312,0.001464,0.000181,0.000181,0.010445,0.575011,-0.004766,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001305,0.000309,0.001305,0.000054,0.000054,0.009450,0.570188,-0.004823,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001170,0.000306,0.001170,0.000000,0.000000,0.008585,0.565468,-0.004721,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001056,0.000303,0.001056,0.000000,0.000000,0.007832,0.560795,-0.004673,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000958,0.000300,0.000958,0.000000,0.000000,0.007174,0.556169,-0.004625,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000297,0.000874,0.000000,0.000000,0.006597,0.551591,-0.004579,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000801,0.000294,0.000801,0.000000,0.000000,0.006090,0.547059,-0.004532,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000291,0.000738,0.000000,0.000000,0.005643,0.542572,-0.004486,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000682,0.000288,0.000683,0.000000,0.000000,0.005249,0.538132,-0.004441,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000634,0.000285,0.000635,0.000000,0.000000,0.004900,0.533736,-0.004396,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000591,0.000282,0.000593,0.000000,0.000000,0.004591,0.529384,-0.004351,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000554,0.000279,0.000556,0.000000,0.000000,0.004317,0.525077,-0.004307,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000520,0.000276,0.000523,0.000000,0.000000,0.004073,0.520814,-0.004264,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000491,0.000273,0.000494,0.000000,0.000000,0.003855,0.516593,-0.004220,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000465,0.000271,0.000469,0.000128,0.000128,0.003660,0.512289,-0.004304,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000442,0.000268,0.000446,0.000356,0.000356,0.003486,0.507803,-0.004486,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000421,0.000265,0.000426,0.000520,0.000520,0.003330,0.503200,-0.004603,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000402,0.000261,0.000408,0.000633,0.000633,0.003189,0.498531,-0.004668,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000386,0.000258,0.000391,0.000589,0.000589,0.003061,0.493954,-0.004578,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000143,0.000000,0.000000,0.000000,0.000006,0.000371,0.000256,0.000377,0.000524,0.000524,0.002946,0.489628,-0.004326,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000116,0.000000,0.000000,0.000000,0.000007,0.000357,0.000253,0.000364,0.000471,0.000471,0.002842,0.485371,-0.004257,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000381,0.000000,0.000000,0.000000,0.000008,0.000345,0.000250,0.000352,0.000382,0.000382,0.002748,0.481509,-0.003862,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000116,0.000000,0.000000,0.000000,0.000008,0.000334,0.000248,0.000342,0.000333,0.000333,0.002662,0.477472,-0.004037,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000323,0.000245,0.000332,0.000257,0.000257,0.002583,0.473624,-0.003848,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000116,0.000000,0.000000,0.000000,0.000010,0.000314,0.000242,0.000324,0.000167,0.000167,0.002512,0.469831,-0.003793,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000549,0.000019,0.000035,0.000019,0.000011,0.000306,0.000240,0.000336,0.000072,0.000072,0.002446,0.466564,-0.003267,1.000000,0.000016 +26,2022-08-02 02:00:00,0.000893,0.000073,0.000116,0.000073,0.000012,0.000298,0.000238,0.000382,0.000000,0.000000,0.002387,0.463663,-0.002901,1.000000,0.000059 +27,2022-08-02 03:00:00,0.000895,0.000100,0.000116,0.000100,0.000012,0.000291,0.000236,0.000403,0.000000,0.000000,0.002332,0.460793,-0.002870,1.000000,0.000075 +28,2022-08-02 04:00:00,0.001099,0.000145,0.000169,0.000145,0.000013,0.000285,0.000235,0.000443,0.000000,0.000000,0.002283,0.458100,-0.002692,1.000000,0.000099 +29,2022-08-02 05:00:00,0.000671,0.000102,0.000067,0.000102,0.000014,0.000279,0.000233,0.000395,0.000000,0.000000,0.002237,0.455114,-0.002987,1.000000,0.000064 +30,2022-08-02 06:00:00,0.000533,0.000074,0.000043,0.000074,0.000015,0.000273,0.000231,0.000363,0.000000,0.000000,0.002194,0.452044,-0.003070,1.000000,0.000033 +31,2022-08-02 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000016,0.000268,0.000228,0.000308,0.000000,0.000000,0.002154,0.448521,-0.003523,1.000000,0.000009 +32,2022-08-02 08:00:00,0.000000,0.000009,0.000000,0.000009,0.000017,0.000263,0.000226,0.000289,0.000000,0.000000,0.002117,0.445033,-0.003488,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000259,0.000224,0.000277,0.000000,0.000000,0.002082,0.441581,-0.003452,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000255,0.000221,0.000274,0.000000,0.000000,0.002049,0.438163,-0.003417,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000251,0.000219,0.000271,0.000000,0.000000,0.002018,0.434780,-0.003383,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000247,0.000217,0.000268,0.000000,0.000000,0.001988,0.431432,-0.003349,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000243,0.000215,0.000266,0.000000,0.000000,0.001959,0.428117,-0.003315,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000240,0.000213,0.000263,0.000116,0.000116,0.001932,0.424721,-0.003396,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000236,0.000210,0.000261,0.000327,0.000327,0.001906,0.421151,-0.003570,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000233,0.000208,0.000259,0.000464,0.000464,0.001881,0.417481,-0.003670,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000230,0.000205,0.000257,0.000564,0.000564,0.001856,0.413749,-0.003731,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000315,0.000000,0.000000,0.000000,0.000028,0.000227,0.000203,0.000255,0.000647,0.000647,0.001832,0.410285,-0.003464,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000224,0.000201,0.000253,0.000585,0.000585,0.001809,0.406668,-0.003617,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000221,0.000198,0.000252,0.000537,0.000537,0.001786,0.403073,-0.003596,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000218,0.000196,0.000250,0.000517,0.000517,0.001763,0.399534,-0.003539,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000215,0.000194,0.000249,0.000440,0.000440,0.001741,0.396108,-0.003427,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000213,0.000191,0.000247,0.000331,0.000331,0.001720,0.392823,-0.003285,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000210,0.000189,0.000246,0.000183,0.000183,0.001699,0.389718,-0.003105,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000208,0.000187,0.000245,0.000035,0.000035,0.001679,0.386792,-0.002927,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000205,0.000185,0.000243,0.000000,0.000000,0.001659,0.383929,-0.002862,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000203,0.000184,0.000242,0.000000,0.000000,0.001640,0.381096,-0.002833,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000200,0.000182,0.000241,0.000000,0.000000,0.001622,0.378292,-0.002805,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000198,0.000180,0.000241,0.000000,0.000000,0.001604,0.375516,-0.002776,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000196,0.000178,0.000240,0.000000,0.000000,0.001586,0.372768,-0.002748,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000194,0.000176,0.000239,0.000000,0.000000,0.001569,0.370048,-0.002720,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000191,0.000174,0.000238,0.000000,0.000000,0.001552,0.367355,-0.002693,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000189,0.000173,0.000238,0.000000,0.000000,0.001535,0.364690,-0.002665,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000187,0.000171,0.000237,0.000000,0.000000,0.001519,0.362051,-0.002638,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000185,0.000169,0.000236,0.000000,0.000000,0.001503,0.359440,-0.002612,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000183,0.000168,0.000236,0.000000,0.000000,0.001487,0.356855,-0.002585,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000181,0.000166,0.000235,0.000000,0.000000,0.001471,0.354296,-0.002559,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000179,0.000164,0.000235,0.000125,0.000125,0.001456,0.351639,-0.002656,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000177,0.000162,0.000235,0.000370,0.000370,0.001441,0.348767,-0.002872,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000176,0.000160,0.000234,0.000531,0.000531,0.001425,0.345765,-0.003002,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000174,0.000158,0.000234,0.000638,0.000638,0.001410,0.342687,-0.003078,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000172,0.000156,0.000233,0.000638,0.000638,0.001394,0.339640,-0.003046,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000170,0.000154,0.000233,0.000567,0.000567,0.001379,0.336695,-0.002945,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002229,0.000185,0.000336,0.000185,0.000065,0.000168,0.000153,0.000418,0.000508,0.000508,0.001364,0.335711,-0.000983,1.000000,0.000151 +69,2022-08-03 21:00:00,0.000239,0.000084,0.000000,0.000084,0.000067,0.000166,0.000152,0.000317,0.000481,0.000481,0.001350,0.333127,-0.002584,1.000000,0.000067 +70,2022-08-03 22:00:00,0.000000,0.000067,0.000000,0.000067,0.000068,0.000164,0.000150,0.000300,0.000401,0.000401,0.001335,0.330411,-0.002716,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000163,0.000148,0.000232,0.000306,0.000306,0.001321,0.327880,-0.002531,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000161,0.000147,0.000232,0.000186,0.000186,0.001307,0.325430,-0.002450,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000159,0.000145,0.000232,0.000047,0.000047,0.001293,0.323143,-0.002287,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000157,0.000144,0.000232,0.000000,0.000000,0.001280,0.320926,-0.002217,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000156,0.000142,0.000232,0.000000,0.000000,0.001266,0.318731,-0.002195,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000154,0.000141,0.000232,0.000000,0.000000,0.001253,0.316558,-0.002173,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000152,0.000139,0.000232,0.000000,0.000000,0.001240,0.314408,-0.002151,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000151,0.000138,0.000232,0.000000,0.000000,0.001227,0.312279,-0.002129,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000149,0.000137,0.000232,0.000000,0.000000,0.001215,0.310172,-0.002107,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000148,0.000135,0.000232,0.000000,0.000000,0.001202,0.308086,-0.002086,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000146,0.000134,0.000232,0.000000,0.000000,0.001190,0.306022,-0.002065,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000145,0.000132,0.000233,0.000000,0.000000,0.001178,0.303978,-0.002044,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000143,0.000131,0.000233,0.000000,0.000000,0.001166,0.301955,-0.002023,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000142,0.000130,0.000233,0.000000,0.000000,0.001154,0.299952,-0.002003,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000140,0.000128,0.000233,0.000000,0.000000,0.001142,0.297970,-0.001982,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000139,0.000127,0.000234,0.000122,0.000122,0.001130,0.295886,-0.002083,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000137,0.000126,0.000234,0.000364,0.000364,0.001119,0.293585,-0.002302,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000136,0.000124,0.000234,0.000529,0.000529,0.001107,0.291144,-0.002441,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000134,0.000122,0.000234,0.000642,0.000642,0.001095,0.288615,-0.002529,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000133,0.000121,0.000234,0.000703,0.000703,0.001083,0.286052,-0.002563,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000131,0.000119,0.000235,0.000628,0.000628,0.001070,0.283588,-0.002463,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000130,0.000117,0.000235,0.000569,0.000569,0.001058,0.281208,-0.002380,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000128,0.000116,0.000235,0.000528,0.000528,0.001046,0.278893,-0.002315,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000127,0.000114,0.000235,0.000440,0.000440,0.001033,0.276688,-0.002205,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000125,0.000113,0.000236,0.000339,0.000339,0.001021,0.274606,-0.002082,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000124,0.000112,0.000236,0.000195,0.000195,0.001009,0.272688,-0.001918,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000122,0.000111,0.000236,0.000052,0.000052,0.000998,0.270931,-0.001757,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000121,0.000109,0.000237,0.000000,0.000000,0.000986,0.269242,-0.001688,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000119,0.000108,0.000237,0.000000,0.000000,0.000975,0.267571,-0.001671,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000118,0.000107,0.000237,0.000000,0.000000,0.000964,0.265917,-0.001654,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000117,0.000106,0.000238,0.000000,0.000000,0.000954,0.264280,-0.001637,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000115,0.000105,0.000238,0.000000,0.000000,0.000943,0.262659,-0.001621,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000114,0.000104,0.000239,0.000000,0.000000,0.000933,0.261055,-0.001604,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000113,0.000103,0.000239,0.000000,0.000000,0.000923,0.259467,-0.001588,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000112,0.000102,0.000240,0.000000,0.000000,0.000913,0.257894,-0.001572,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000111,0.000101,0.000241,0.000000,0.000000,0.000904,0.256338,-0.001556,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000109,0.000100,0.000241,0.000000,0.000000,0.000894,0.254798,-0.001540,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000108,0.000099,0.000242,0.000000,0.000000,0.000885,0.253273,-0.001525,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000107,0.000098,0.000242,0.000000,0.000000,0.000875,0.251764,-0.001509,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000106,0.000097,0.000243,0.000135,0.000135,0.000866,0.250137,-0.001628,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000105,0.000095,0.000244,0.000379,0.000379,0.000857,0.248284,-0.001853,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000104,0.000094,0.000244,0.000539,0.000539,0.000848,0.246291,-0.001993,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000102,0.000093,0.000245,0.000652,0.000652,0.000838,0.244208,-0.002083,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000101,0.000091,0.000246,0.000644,0.000644,0.000828,0.242153,-0.002054,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000066,0.000000,0.000000,0.000000,0.000146,0.000100,0.000090,0.000246,0.000582,0.000582,0.000818,0.240246,-0.001907,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000066,0.000000,0.000000,0.000000,0.000148,0.000099,0.000089,0.000247,0.000524,0.000524,0.000809,0.238415,-0.001831,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000075,0.000000,0.000000,0.000000,0.000150,0.000098,0.000088,0.000247,0.000475,0.000475,0.000799,0.236660,-0.001755,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000082,0.000000,0.000000,0.000000,0.000151,0.000096,0.000087,0.000248,0.000401,0.000401,0.000789,0.235003,-0.001657,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000229,0.000000,0.000000,0.000000,0.000153,0.000095,0.000086,0.000248,0.000307,0.000307,0.000780,0.233601,-0.001402,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000082,0.000000,0.000000,0.000000,0.000155,0.000094,0.000085,0.000249,0.000187,0.000187,0.000770,0.232188,-0.001414,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000694,0.000025,0.000045,0.000025,0.000157,0.000093,0.000084,0.000275,0.000067,0.000067,0.000762,0.231467,-0.000721,1.000000,0.000020 +122,2022-08-06 02:00:00,0.001386,0.000124,0.000204,0.000124,0.000159,0.000092,0.000084,0.000374,0.000000,0.000000,0.000754,0.231348,-0.000119,1.000000,0.000101 +123,2022-08-06 03:00:00,0.000833,0.000103,0.000079,0.000103,0.000160,0.000091,0.000084,0.000355,0.000000,0.000000,0.000747,0.230808,-0.000540,1.000000,0.000076 +124,2022-08-06 04:00:00,0.000622,0.000085,0.000045,0.000085,0.000162,0.000090,0.000083,0.000338,0.000000,0.000000,0.000740,0.230098,-0.000710,1.000000,0.000036 +125,2022-08-06 05:00:00,0.000622,0.000052,0.000045,0.000052,0.000164,0.000089,0.000083,0.000305,0.000000,0.000000,0.000733,0.229395,-0.000703,1.000000,0.000029 +126,2022-08-06 06:00:00,0.000729,0.000054,0.000061,0.000054,0.000166,0.000089,0.000083,0.000308,0.000000,0.000000,0.000727,0.228789,-0.000605,1.000000,0.000036 +127,2022-08-06 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000168,0.000088,0.000082,0.000280,0.000000,0.000000,0.000721,0.227528,-0.001261,1.000000,0.000012 +128,2022-08-06 08:00:00,0.000000,0.000012,0.000000,0.000012,0.000169,0.000087,0.000081,0.000269,0.000000,0.000000,0.000715,0.226280,-0.001248,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000086,0.000080,0.000258,0.000000,0.000000,0.000708,0.225044,-0.001236,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000086,0.000079,0.000259,0.000000,0.000000,0.000702,0.223821,-0.001223,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000085,0.000078,0.000260,0.000000,0.000000,0.000696,0.222610,-0.001211,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000084,0.000078,0.000260,0.000000,0.000000,0.000689,0.221412,-0.001199,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000083,0.000077,0.000261,0.000000,0.000000,0.000683,0.220225,-0.001186,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000082,0.000076,0.000262,0.000114,0.000114,0.000676,0.218938,-0.001287,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000082,0.000075,0.000263,0.000342,0.000342,0.000670,0.217439,-0.001500,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000081,0.000074,0.000264,0.000490,0.000490,0.000663,0.215807,-0.001631,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000080,0.000073,0.000265,0.000612,0.000612,0.000656,0.214072,-0.001735,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000079,0.000072,0.000266,0.000692,0.000692,0.000648,0.212276,-0.001797,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000078,0.000070,0.000267,0.000638,0.000638,0.000641,0.210550,-0.001726,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000077,0.000069,0.000268,0.000571,0.000571,0.000633,0.208908,-0.001642,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000076,0.000068,0.000268,0.000534,0.000534,0.000625,0.207321,-0.001588,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000075,0.000067,0.000269,0.000440,0.000440,0.000617,0.205841,-0.001480,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000074,0.000066,0.000270,0.000337,0.000337,0.000609,0.204479,-0.001362,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000073,0.000066,0.000271,0.000191,0.000191,0.000602,0.203276,-0.001203,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000072,0.000065,0.000272,0.000046,0.000046,0.000594,0.202227,-0.001048,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000071,0.000064,0.000272,0.000000,0.000000,0.000587,0.201235,-0.000992,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000071,0.000064,0.000273,0.000000,0.000000,0.000580,0.200253,-0.000982,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000070,0.000063,0.000274,0.000000,0.000000,0.000573,0.199281,-0.000972,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000069,0.000062,0.000275,0.000000,0.000000,0.000567,0.198319,-0.000962,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000068,0.000062,0.000276,0.000000,0.000000,0.000560,0.197367,-0.000952,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000067,0.000061,0.000277,0.000000,0.000000,0.000554,0.196424,-0.000943,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000067,0.000060,0.000278,0.000000,0.000000,0.000548,0.195491,-0.000933,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000066,0.000060,0.000279,0.000000,0.000000,0.000542,0.194567,-0.000924,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000065,0.000059,0.000280,0.000000,0.000000,0.000536,0.193653,-0.000914,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000064,0.000059,0.000281,0.000000,0.000000,0.000530,0.192748,-0.000905,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000064,0.000058,0.000282,0.000000,0.000000,0.000524,0.191852,-0.000896,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000063,0.000057,0.000283,0.000000,0.000000,0.000518,0.190965,-0.000887,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000062,0.000057,0.000284,0.000113,0.000113,0.000513,0.189975,-0.000989,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000062,0.000056,0.000285,0.000356,0.000356,0.000507,0.188755,-0.001220,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000061,0.000055,0.000286,0.000513,0.000513,0.000501,0.187391,-0.001364,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000060,0.000054,0.000287,0.000621,0.000621,0.000495,0.185935,-0.001456,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000059,0.000053,0.000288,0.000691,0.000691,0.000489,0.184424,-0.001511,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000059,0.000052,0.000288,0.000633,0.000633,0.000482,0.182986,-0.001438,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000058,0.000051,0.000289,0.000564,0.000564,0.000476,0.181630,-0.001356,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000057,0.000050,0.000290,0.000529,0.000529,0.000469,0.180324,-0.001306,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000056,0.000050,0.000291,0.000441,0.000441,0.000463,0.179117,-0.001207,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000055,0.000049,0.000292,0.000332,0.000332,0.000456,0.178031,-0.001086,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000055,0.000048,0.000293,0.000159,0.000159,0.000450,0.177127,-0.000904,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000054,0.000048,0.000294,0.000017,0.000017,0.000444,0.176373,-0.000754,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000053,0.000047,0.000294,0.000000,0.000000,0.000438,0.175643,-0.000730,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000052,0.000047,0.000295,0.000000,0.000000,0.000432,0.174920,-0.000723,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000052,0.000046,0.000296,0.000000,0.000000,0.000426,0.174205,-0.000715,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000051,0.000046,0.000297,0.000000,0.000000,0.000421,0.173497,-0.000708,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000051,0.000045,0.000298,0.000000,0.000000,0.000416,0.172796,-0.000701,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000050,0.000045,0.000299,0.000000,0.000000,0.000411,0.172102,-0.000694,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000049,0.000044,0.000300,0.000000,0.000000,0.000406,0.171416,-0.000687,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000049,0.000044,0.000301,0.000000,0.000000,0.000401,0.170736,-0.000680,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000048,0.000044,0.000302,0.000000,0.000000,0.000397,0.170063,-0.000673,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000048,0.000043,0.000303,0.000000,0.000000,0.000392,0.169397,-0.000666,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000047,0.000043,0.000304,0.000000,0.000000,0.000388,0.168738,-0.000659,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000047,0.000042,0.000305,0.000000,0.000000,0.000384,0.168085,-0.000653,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000260,0.000046,0.000042,0.000306,0.000097,0.000097,0.000379,0.167344,-0.000741,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000046,0.000041,0.000307,0.000340,0.000340,0.000375,0.166368,-0.000975,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000045,0.000040,0.000308,0.000503,0.000503,0.000370,0.165242,-0.001126,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000044,0.000040,0.000309,0.000599,0.000599,0.000366,0.164032,-0.001210,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000044,0.000039,0.000310,0.000680,0.000680,0.000361,0.162753,-0.001278,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000268,0.000043,0.000038,0.000311,0.000610,0.000610,0.000355,0.161557,-0.001196,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000269,0.000043,0.000037,0.000312,0.000550,0.000550,0.000350,0.160433,-0.001124,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000271,0.000042,0.000036,0.000313,0.000525,0.000525,0.000345,0.159345,-0.001088,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000272,0.000041,0.000036,0.000314,0.000438,0.000438,0.000339,0.158353,-0.000991,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000274,0.000041,0.000035,0.000314,0.000332,0.000332,0.000334,0.157477,-0.000876,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000275,0.000040,0.000035,0.000315,0.000190,0.000190,0.000329,0.156751,-0.000726,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000277,0.000039,0.000034,0.000316,0.000038,0.000038,0.000324,0.156182,-0.000569,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000014,0.000000,0.000000,0.000000,0.000278,0.000039,0.000034,0.000317,0.000000,0.000000,0.000319,0.155670,-0.000512,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000280,0.000038,0.000034,0.000318,0.000000,0.000000,0.000315,0.155151,-0.000519,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000281,0.000038,0.000033,0.000319,0.000000,0.000000,0.000311,0.154636,-0.000515,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000283,0.000037,0.000033,0.000320,0.000000,0.000000,0.000306,0.154126,-0.000510,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000284,0.000037,0.000033,0.000321,0.000000,0.000000,0.000302,0.153621,-0.000505,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000286,0.000036,0.000032,0.000322,0.000000,0.000000,0.000299,0.153122,-0.000499,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000287,0.000036,0.000032,0.000323,0.000000,0.000000,0.000295,0.152627,-0.000494,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000288,0.000035,0.000032,0.000324,0.000000,0.000000,0.000291,0.152138,-0.000489,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000290,0.000035,0.000031,0.000325,0.000000,0.000000,0.000288,0.151654,-0.000484,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000291,0.000034,0.000031,0.000326,0.000000,0.000000,0.000284,0.151174,-0.000480,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000293,0.000034,0.000031,0.000327,0.000000,0.000000,0.000281,0.150699,-0.000475,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000294,0.000034,0.000030,0.000328,0.000000,0.000000,0.000278,0.150230,-0.000470,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000295,0.000033,0.000030,0.000329,0.000104,0.000104,0.000275,0.149661,-0.000568,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620887.csv b/test/channel_loss/channel_forcing/et/cat-2620887.csv new file mode 100644 index 000000000..1d867f163 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620887.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000189,0.000000,0.000000,0.000000,0.000000,0.001465,0.000324,0.001465,0.000184,0.000184,0.010455,0.425755,-0.004815,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001307,0.000319,0.001307,0.000053,0.000053,0.009467,0.420949,-0.004805,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001174,0.000315,0.001174,0.000000,0.000000,0.008608,0.416262,-0.004687,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001060,0.000310,0.001060,0.000000,0.000000,0.007858,0.411639,-0.004623,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000962,0.000306,0.000962,0.000000,0.000000,0.007202,0.407079,-0.004560,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000878,0.000302,0.000878,0.000000,0.000000,0.006626,0.402581,-0.004497,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000805,0.000298,0.000805,0.000000,0.000000,0.006119,0.398145,-0.004436,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000741,0.000294,0.000742,0.000000,0.000000,0.005671,0.393770,-0.004375,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000686,0.000290,0.000687,0.000000,0.000000,0.005275,0.389455,-0.004315,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000637,0.000286,0.000638,0.000000,0.000000,0.004924,0.385199,-0.004256,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000594,0.000282,0.000596,0.000000,0.000000,0.004612,0.381002,-0.004198,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000556,0.000278,0.000558,0.000000,0.000000,0.004334,0.376862,-0.004140,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000522,0.000274,0.000525,0.000000,0.000000,0.004086,0.372778,-0.004083,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000492,0.000270,0.000495,0.000000,0.000000,0.003864,0.368751,-0.004027,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000466,0.000267,0.000469,0.000128,0.000128,0.003665,0.364653,-0.004098,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000442,0.000263,0.000446,0.000366,0.000366,0.003486,0.360376,-0.004277,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000420,0.000258,0.000425,0.000533,0.000533,0.003324,0.355993,-0.004383,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000401,0.000254,0.000406,0.000649,0.000649,0.003177,0.351555,-0.004437,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000383,0.000250,0.000389,0.000605,0.000605,0.003044,0.347222,-0.004333,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000368,0.000246,0.000374,0.000532,0.000532,0.002923,0.343145,-0.004077,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000065,0.000000,0.000000,0.000000,0.000007,0.000353,0.000243,0.000360,0.000462,0.000462,0.002812,0.339132,-0.004013,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000440,0.000000,0.000001,0.000000,0.000008,0.000340,0.000239,0.000348,0.000390,0.000390,0.002712,0.335614,-0.003517,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000072,0.000000,0.000000,0.000000,0.000008,0.000328,0.000236,0.000336,0.000338,0.000338,0.002620,0.331833,-0.003781,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000192,0.000000,0.000000,0.000000,0.000009,0.000317,0.000233,0.000326,0.000266,0.000266,0.002535,0.328294,-0.003540,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000010,0.000307,0.000229,0.000317,0.000174,0.000174,0.002457,0.324829,-0.003465,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000623,0.000031,0.000056,0.000031,0.000010,0.000298,0.000227,0.000339,0.000075,0.000075,0.002386,0.321944,-0.002885,1.000000,0.000025 +26,2022-08-02 02:00:00,0.001088,0.000124,0.000200,0.000124,0.000011,0.000289,0.000224,0.000425,0.000000,0.000000,0.002321,0.319489,-0.002455,1.000000,0.000101 +27,2022-08-02 03:00:00,0.001003,0.000156,0.000172,0.000156,0.000012,0.000282,0.000222,0.000450,0.000000,0.000000,0.002262,0.317012,-0.002477,1.000000,0.000117 +28,2022-08-02 04:00:00,0.001214,0.000216,0.000242,0.000216,0.000013,0.000275,0.000220,0.000504,0.000000,0.000000,0.002207,0.314707,-0.002305,1.000000,0.000143 +29,2022-08-02 05:00:00,0.000596,0.000130,0.000065,0.000130,0.000014,0.000268,0.000217,0.000412,0.000000,0.000000,0.002156,0.312000,-0.002707,1.000000,0.000078 +30,2022-08-02 06:00:00,0.000435,0.000084,0.000035,0.000084,0.000015,0.000262,0.000215,0.000361,0.000000,0.000000,0.002108,0.309199,-0.002800,1.000000,0.000029 +31,2022-08-02 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000016,0.000256,0.000212,0.000294,0.000000,0.000000,0.002064,0.306043,-0.003156,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000016,0.000251,0.000209,0.000275,0.000000,0.000000,0.002022,0.302930,-0.003113,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000246,0.000206,0.000263,0.000000,0.000000,0.001982,0.299860,-0.003070,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000241,0.000203,0.000260,0.000000,0.000000,0.001944,0.296832,-0.003028,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000237,0.000200,0.000256,0.000000,0.000000,0.001908,0.293845,-0.002987,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000232,0.000198,0.000253,0.000000,0.000000,0.001873,0.290899,-0.002946,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000228,0.000195,0.000249,0.000000,0.000000,0.001840,0.287994,-0.002905,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000224,0.000192,0.000246,0.000117,0.000117,0.001809,0.285013,-0.002981,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000220,0.000189,0.000244,0.000334,0.000334,0.001778,0.281859,-0.003154,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000216,0.000186,0.000241,0.000485,0.000485,0.001748,0.278599,-0.003260,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000213,0.000183,0.000238,0.000594,0.000594,0.001719,0.275276,-0.003323,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000366,0.000000,0.000000,0.000000,0.000027,0.000209,0.000180,0.000236,0.000679,0.000679,0.001690,0.272276,-0.003000,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000205,0.000177,0.000233,0.000610,0.000610,0.001662,0.269087,-0.003189,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000202,0.000174,0.000231,0.000547,0.000547,0.001634,0.265941,-0.003146,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000199,0.000172,0.000229,0.000517,0.000517,0.001608,0.262867,-0.003074,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000195,0.000169,0.000227,0.000438,0.000438,0.001581,0.259913,-0.002954,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000192,0.000166,0.000225,0.000332,0.000332,0.001555,0.257105,-0.002808,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000189,0.000164,0.000223,0.000183,0.000183,0.001530,0.254483,-0.002623,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000186,0.000161,0.000221,0.000033,0.000033,0.001506,0.252044,-0.002439,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000183,0.000159,0.000219,0.000000,0.000000,0.001483,0.249671,-0.002373,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000180,0.000157,0.000217,0.000000,0.000000,0.001460,0.247331,-0.002340,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000177,0.000155,0.000216,0.000000,0.000000,0.001438,0.245023,-0.002308,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000174,0.000153,0.000214,0.000000,0.000000,0.001416,0.242746,-0.002277,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000172,0.000151,0.000213,0.000000,0.000000,0.001395,0.240500,-0.002246,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000169,0.000149,0.000212,0.000000,0.000000,0.001375,0.238286,-0.002215,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000167,0.000147,0.000211,0.000000,0.000000,0.001354,0.236101,-0.002184,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000164,0.000145,0.000209,0.000000,0.000000,0.001335,0.233947,-0.002154,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000162,0.000143,0.000208,0.000000,0.000000,0.001316,0.231822,-0.002125,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000159,0.000141,0.000207,0.000000,0.000000,0.001297,0.229726,-0.002096,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000157,0.000139,0.000206,0.000000,0.000000,0.001278,0.227659,-0.002067,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000155,0.000137,0.000206,0.000000,0.000000,0.001260,0.225620,-0.002039,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000153,0.000135,0.000205,0.000125,0.000125,0.001243,0.223486,-0.002134,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000150,0.000133,0.000204,0.000368,0.000368,0.001225,0.221142,-0.002344,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000148,0.000130,0.000203,0.000538,0.000538,0.001207,0.218662,-0.002480,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000146,0.000128,0.000202,0.000643,0.000643,0.001189,0.216112,-0.002550,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000144,0.000126,0.000201,0.000641,0.000641,0.001171,0.213599,-0.002513,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000141,0.000123,0.000200,0.000564,0.000564,0.001153,0.211197,-0.002402,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002940,0.000395,0.000718,0.000395,0.000060,0.000139,0.000123,0.000594,0.000506,0.000506,0.001137,0.211077,-0.000120,1.000000,0.000323 +69,2022-08-03 21:00:00,0.000321,0.000179,0.000000,0.000179,0.000062,0.000137,0.000121,0.000379,0.000480,0.000480,0.001121,0.209109,-0.001968,1.000000,0.000144 +70,2022-08-03 22:00:00,0.000000,0.000144,0.000000,0.000144,0.000063,0.000135,0.000119,0.000342,0.000400,0.000400,0.001105,0.206930,-0.002179,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000133,0.000118,0.000198,0.000310,0.000310,0.001089,0.204932,-0.001998,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000132,0.000116,0.000197,0.000186,0.000186,0.001073,0.203021,-0.001911,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000130,0.000114,0.000197,0.000044,0.000044,0.001057,0.201276,-0.001745,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000128,0.000113,0.000197,0.000000,0.000000,0.001042,0.199599,-0.001677,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000126,0.000111,0.000196,0.000000,0.000000,0.001027,0.197945,-0.001654,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000124,0.000110,0.000196,0.000000,0.000000,0.001013,0.196313,-0.001632,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000122,0.000108,0.000195,0.000000,0.000000,0.000999,0.194704,-0.001609,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000121,0.000107,0.000195,0.000000,0.000000,0.000985,0.193117,-0.001587,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000119,0.000105,0.000195,0.000000,0.000000,0.000971,0.191551,-0.001565,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000117,0.000104,0.000195,0.000000,0.000000,0.000957,0.190007,-0.001544,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000116,0.000102,0.000195,0.000000,0.000000,0.000944,0.188484,-0.001523,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000114,0.000101,0.000194,0.000000,0.000000,0.000931,0.186982,-0.001502,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000112,0.000099,0.000194,0.000000,0.000000,0.000918,0.185501,-0.001481,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000111,0.000098,0.000194,0.000000,0.000000,0.000905,0.184040,-0.001461,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000109,0.000097,0.000194,0.000000,0.000000,0.000893,0.182599,-0.001441,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000108,0.000095,0.000194,0.000121,0.000121,0.000881,0.181058,-0.001541,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000106,0.000094,0.000194,0.000366,0.000366,0.000868,0.179297,-0.001761,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000105,0.000092,0.000194,0.000536,0.000536,0.000855,0.177393,-0.001905,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000090,0.000194,0.000652,0.000652,0.000842,0.175400,-0.001993,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000101,0.000088,0.000194,0.000705,0.000705,0.000829,0.173381,-0.002018,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000100,0.000086,0.000194,0.000627,0.000627,0.000816,0.171468,-0.001914,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000098,0.000085,0.000193,0.000572,0.000572,0.000803,0.169634,-0.001833,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000096,0.000083,0.000193,0.000525,0.000525,0.000789,0.167873,-0.001761,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000095,0.000081,0.000193,0.000440,0.000440,0.000776,0.166220,-0.001653,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000093,0.000080,0.000193,0.000336,0.000336,0.000763,0.164692,-0.001528,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000092,0.000079,0.000193,0.000194,0.000194,0.000750,0.163325,-0.001367,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000090,0.000078,0.000193,0.000050,0.000050,0.000738,0.162118,-0.001206,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000089,0.000077,0.000193,0.000000,0.000000,0.000726,0.160978,-0.001141,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000087,0.000076,0.000193,0.000000,0.000000,0.000714,0.159853,-0.001125,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000086,0.000074,0.000193,0.000000,0.000000,0.000703,0.158743,-0.001110,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000084,0.000073,0.000193,0.000000,0.000000,0.000692,0.157649,-0.001094,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000083,0.000072,0.000193,0.000000,0.000000,0.000681,0.156569,-0.001079,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000082,0.000071,0.000194,0.000000,0.000000,0.000671,0.155505,-0.001065,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000081,0.000070,0.000194,0.000000,0.000000,0.000661,0.154455,-0.001050,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000079,0.000070,0.000194,0.000000,0.000000,0.000651,0.153419,-0.001036,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000078,0.000069,0.000195,0.000000,0.000000,0.000641,0.152397,-0.001021,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000077,0.000068,0.000195,0.000000,0.000000,0.000632,0.151390,-0.001007,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000076,0.000067,0.000195,0.000000,0.000000,0.000623,0.150396,-0.000994,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000075,0.000066,0.000196,0.000000,0.000000,0.000614,0.149416,-0.000980,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000074,0.000065,0.000196,0.000135,0.000135,0.000605,0.148316,-0.001100,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000073,0.000064,0.000196,0.000381,0.000381,0.000596,0.146989,-0.001327,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000071,0.000062,0.000197,0.000542,0.000542,0.000587,0.145521,-0.001468,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000070,0.000061,0.000197,0.000651,0.000651,0.000577,0.143966,-0.001556,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000069,0.000059,0.000197,0.000666,0.000666,0.000567,0.142417,-0.001549,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000068,0.000058,0.000198,0.000594,0.000594,0.000557,0.141022,-0.001395,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000067,0.000057,0.000198,0.000534,0.000534,0.000547,0.139707,-0.001316,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000065,0.000056,0.000198,0.000472,0.000472,0.000538,0.138470,-0.001237,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000064,0.000055,0.000198,0.000399,0.000399,0.000528,0.137322,-0.001148,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000241,0.000000,0.000000,0.000000,0.000136,0.000063,0.000054,0.000199,0.000304,0.000304,0.000518,0.136458,-0.000864,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000062,0.000053,0.000199,0.000186,0.000186,0.000509,0.135548,-0.000910,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000675,0.000029,0.000052,0.000029,0.000139,0.000061,0.000053,0.000228,0.000068,0.000068,0.000501,0.135319,-0.000229,1.000000,0.000023 +122,2022-08-06 02:00:00,0.001536,0.000174,0.000294,0.000174,0.000140,0.000060,0.000053,0.000374,0.000000,0.000000,0.000494,0.135771,0.000452,1.000000,0.000142 +123,2022-08-06 03:00:00,0.000814,0.000134,0.000091,0.000134,0.000141,0.000059,0.000053,0.000334,0.000000,0.000000,0.000488,0.135705,-0.000066,1.000000,0.000099 +124,2022-08-06 04:00:00,0.000539,0.000104,0.000041,0.000104,0.000143,0.000059,0.000053,0.000306,0.000000,0.000000,0.000482,0.135417,-0.000288,1.000000,0.000037 +125,2022-08-06 05:00:00,0.000538,0.000051,0.000041,0.000051,0.000144,0.000058,0.000052,0.000253,0.000000,0.000000,0.000476,0.135133,-0.000284,1.000000,0.000027 +126,2022-08-06 06:00:00,0.000675,0.000053,0.000063,0.000053,0.000146,0.000057,0.000052,0.000257,0.000000,0.000000,0.000471,0.134965,-0.000168,1.000000,0.000037 +127,2022-08-06 07:00:00,0.000000,0.000024,0.000000,0.000024,0.000147,0.000057,0.000052,0.000228,0.000000,0.000000,0.000466,0.134197,-0.000769,1.000000,0.000013 +128,2022-08-06 08:00:00,0.000000,0.000013,0.000000,0.000013,0.000149,0.000056,0.000051,0.000217,0.000000,0.000000,0.000461,0.133439,-0.000758,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000055,0.000050,0.000205,0.000000,0.000000,0.000456,0.132691,-0.000748,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000055,0.000049,0.000206,0.000000,0.000000,0.000451,0.131954,-0.000737,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000054,0.000049,0.000207,0.000000,0.000000,0.000445,0.131226,-0.000727,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000053,0.000048,0.000208,0.000000,0.000000,0.000440,0.130509,-0.000717,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000053,0.000047,0.000209,0.000000,0.000000,0.000435,0.129801,-0.000708,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000052,0.000047,0.000209,0.000114,0.000114,0.000429,0.128991,-0.000811,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000051,0.000046,0.000210,0.000352,0.000352,0.000424,0.127957,-0.001034,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000051,0.000045,0.000211,0.000512,0.000512,0.000417,0.126779,-0.001177,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000050,0.000043,0.000211,0.000631,0.000631,0.000411,0.125500,-0.001279,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000049,0.000042,0.000212,0.000707,0.000707,0.000404,0.124164,-0.001336,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000048,0.000041,0.000212,0.000647,0.000647,0.000397,0.122905,-0.001258,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000047,0.000040,0.000213,0.000577,0.000577,0.000390,0.121733,-0.001172,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000046,0.000039,0.000213,0.000534,0.000534,0.000382,0.120620,-0.001114,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000045,0.000038,0.000214,0.000445,0.000445,0.000375,0.119609,-0.001011,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000045,0.000037,0.000214,0.000337,0.000337,0.000367,0.118718,-0.000891,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000044,0.000036,0.000215,0.000186,0.000186,0.000360,0.117989,-0.000729,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000036,0.000215,0.000044,0.000044,0.000353,0.117410,-0.000579,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000042,0.000035,0.000216,0.000000,0.000000,0.000346,0.116882,-0.000528,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000041,0.000035,0.000216,0.000000,0.000000,0.000340,0.116361,-0.000521,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000041,0.000034,0.000217,0.000000,0.000000,0.000334,0.115847,-0.000514,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000040,0.000034,0.000218,0.000000,0.000000,0.000328,0.115341,-0.000507,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000034,0.000218,0.000000,0.000000,0.000323,0.114841,-0.000500,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000033,0.000219,0.000000,0.000000,0.000317,0.114348,-0.000493,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000038,0.000033,0.000220,0.000000,0.000000,0.000312,0.113862,-0.000486,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000037,0.000032,0.000220,0.000000,0.000000,0.000307,0.113383,-0.000479,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000037,0.000032,0.000221,0.000000,0.000000,0.000302,0.112910,-0.000473,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000031,0.000222,0.000000,0.000000,0.000297,0.112444,-0.000466,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000031,0.000223,0.000000,0.000000,0.000293,0.111984,-0.000460,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000035,0.000030,0.000223,0.000000,0.000000,0.000288,0.111530,-0.000454,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000030,0.000224,0.000113,0.000113,0.000284,0.110971,-0.000559,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000034,0.000029,0.000225,0.000356,0.000356,0.000279,0.110181,-0.000790,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000028,0.000226,0.000519,0.000519,0.000274,0.109240,-0.000940,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000027,0.000226,0.000629,0.000629,0.000269,0.108204,-0.001037,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000026,0.000227,0.000701,0.000701,0.000263,0.107111,-0.001093,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000031,0.000025,0.000227,0.000638,0.000638,0.000257,0.106094,-0.001016,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000030,0.000025,0.000228,0.000566,0.000566,0.000251,0.105164,-0.000931,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000228,0.000524,0.000524,0.000245,0.104286,-0.000877,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000023,0.000229,0.000440,0.000440,0.000239,0.103505,-0.000782,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000022,0.000229,0.000331,0.000331,0.000233,0.102841,-0.000664,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000022,0.000230,0.000156,0.000156,0.000228,0.102359,-0.000482,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000022,0.000230,0.000015,0.000015,0.000222,0.102022,-0.000337,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000026,0.000021,0.000231,0.000000,0.000000,0.000217,0.101705,-0.000317,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000000,0.000000,0.000213,0.101392,-0.000313,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000025,0.000021,0.000232,0.000000,0.000000,0.000208,0.101084,-0.000309,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000025,0.000020,0.000233,0.000000,0.000000,0.000204,0.100779,-0.000304,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000024,0.000020,0.000234,0.000000,0.000000,0.000200,0.100479,-0.000300,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000024,0.000020,0.000234,0.000000,0.000000,0.000196,0.100183,-0.000296,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000020,0.000235,0.000000,0.000000,0.000192,0.099891,-0.000292,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000023,0.000019,0.000236,0.000000,0.000000,0.000189,0.099603,-0.000288,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000019,0.000237,0.000000,0.000000,0.000185,0.099319,-0.000284,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000022,0.000019,0.000238,0.000000,0.000000,0.000182,0.099039,-0.000280,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000019,0.000238,0.000000,0.000000,0.000179,0.098763,-0.000276,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000176,0.098490,-0.000272,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000021,0.000018,0.000240,0.000098,0.000098,0.000173,0.098126,-0.000365,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000021,0.000017,0.000241,0.000341,0.000341,0.000170,0.097526,-0.000600,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000020,0.000017,0.000241,0.000508,0.000508,0.000166,0.096769,-0.000757,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000020,0.000016,0.000242,0.000615,0.000615,0.000163,0.095918,-0.000851,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000019,0.000015,0.000243,0.000696,0.000696,0.000158,0.094998,-0.000920,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000019,0.000014,0.000243,0.000612,0.000612,0.000154,0.094173,-0.000824,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000014,0.000244,0.000552,0.000552,0.000149,0.093420,-0.000754,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000018,0.000013,0.000244,0.000526,0.000000,0.000145,0.093220,-0.000199,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000013,0.000245,0.000440,0.000000,0.000141,0.093024,-0.000197,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000013,0.000246,0.000330,0.000000,0.000138,0.092830,-0.000194,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000013,0.000246,0.000188,0.000000,0.000134,0.092639,-0.000191,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000013,0.000247,0.000037,0.000000,0.000131,0.092450,-0.000189,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000028,0.000000,0.000000,0.000000,0.000232,0.000015,0.000013,0.000248,0.000000,0.000000,0.000128,0.092292,-0.000158,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000006,0.000000,0.000000,0.000000,0.000233,0.000015,0.000012,0.000248,0.000000,0.000000,0.000125,0.092114,-0.000178,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000012,0.000249,0.000000,0.000000,0.000123,0.091933,-0.000181,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000012,0.000250,0.000000,0.000000,0.000120,0.091754,-0.000179,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000014,0.000012,0.000251,0.000000,0.000000,0.000118,0.091577,-0.000176,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000012,0.000251,0.000000,0.000000,0.000115,0.091403,-0.000174,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000012,0.000252,0.000000,0.000000,0.000113,0.091232,-0.000172,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000013,0.000011,0.000253,0.000000,0.000000,0.000111,0.091063,-0.000169,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000013,0.000011,0.000254,0.000000,0.000000,0.000109,0.090896,-0.000167,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000013,0.000011,0.000254,0.000000,0.000000,0.000107,0.090731,-0.000165,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000011,0.000255,0.000000,0.000000,0.000105,0.090569,-0.000162,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000011,0.000256,0.000000,0.000000,0.000104,0.090408,-0.000160,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000012,0.000011,0.000257,0.000102,0.000000,0.000102,0.090250,-0.000158,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620888.csv b/test/channel_loss/channel_forcing/et/cat-2620888.csv new file mode 100644 index 000000000..06fd266f1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620888.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000143,0.000000,0.000000,0.000000,0.000000,0.001484,0.000456,0.001484,0.000170,0.000170,0.010569,0.427989,-0.004773,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001341,0.000449,0.001341,0.000045,0.000045,0.009677,0.423269,-0.004720,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001219,0.000442,0.001219,0.000000,0.000000,0.008901,0.418662,-0.004607,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001115,0.000436,0.001115,0.000000,0.000000,0.008222,0.414123,-0.004539,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001025,0.000430,0.001025,0.000000,0.000000,0.007626,0.409650,-0.004473,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000948,0.000423,0.000948,0.000000,0.000000,0.007102,0.405242,-0.004408,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000880,0.000417,0.000880,0.000000,0.000000,0.006639,0.400898,-0.004344,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000821,0.000411,0.000822,0.000000,0.000000,0.006230,0.396618,-0.004280,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000769,0.000405,0.000770,0.000000,0.000000,0.005866,0.392400,-0.004218,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000723,0.000399,0.000724,0.000000,0.000000,0.005542,0.388244,-0.004156,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000682,0.000393,0.000684,0.000000,0.000000,0.005253,0.384149,-0.004095,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000646,0.000388,0.000648,0.000000,0.000000,0.004994,0.380113,-0.004036,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000614,0.000382,0.000617,0.000000,0.000000,0.004761,0.376136,-0.003977,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000586,0.000376,0.000588,0.000000,0.000000,0.004552,0.372218,-0.003919,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000560,0.000371,0.000563,0.000121,0.000121,0.004363,0.368237,-0.003981,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000536,0.000365,0.000540,0.000345,0.000345,0.004191,0.364094,-0.004143,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000515,0.000359,0.000520,0.000515,0.000515,0.004035,0.359843,-0.004250,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000496,0.000353,0.000501,0.000654,0.000654,0.003891,0.355518,-0.004325,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000478,0.000347,0.000484,0.000636,0.000636,0.003760,0.351273,-0.004245,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000081,0.000000,0.000000,0.000000,0.000006,0.000462,0.000341,0.000468,0.000567,0.000567,0.003638,0.347239,-0.004035,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000084,0.000000,0.000000,0.000000,0.000006,0.000447,0.000335,0.000454,0.000487,0.000487,0.003526,0.343344,-0.003895,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000215,0.000000,0.000000,0.000000,0.000007,0.000433,0.000330,0.000441,0.000372,0.000372,0.003423,0.339750,-0.003594,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000086,0.000000,0.000000,0.000000,0.000008,0.000421,0.000325,0.000429,0.000304,0.000304,0.003327,0.336148,-0.003602,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000115,0.000000,0.000000,0.000000,0.000008,0.000409,0.000320,0.000417,0.000243,0.000243,0.003238,0.332686,-0.003461,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000432,0.000006,0.000010,0.000006,0.000009,0.000398,0.000316,0.000413,0.000155,0.000155,0.003156,0.329664,-0.003022,1.000000,0.000005 +25,2022-08-02 01:00:00,0.000542,0.000019,0.000030,0.000019,0.000010,0.000388,0.000312,0.000417,0.000061,0.000061,0.003080,0.326868,-0.002796,1.000000,0.000016 +26,2022-08-02 02:00:00,0.000776,0.000051,0.000076,0.000051,0.000011,0.000379,0.000308,0.000441,0.000000,0.000000,0.003009,0.324359,-0.002509,1.000000,0.000040 +27,2022-08-02 03:00:00,0.000647,0.000054,0.000053,0.000054,0.000011,0.000370,0.000305,0.000436,0.000000,0.000000,0.002943,0.321781,-0.002578,1.000000,0.000039 +28,2022-08-02 04:00:00,0.000597,0.000053,0.000045,0.000053,0.000012,0.000362,0.000301,0.000428,0.000000,0.000000,0.002882,0.319200,-0.002582,1.000000,0.000031 +29,2022-08-02 05:00:00,0.000397,0.000033,0.000021,0.000033,0.000013,0.000355,0.000297,0.000401,0.000000,0.000000,0.002824,0.316483,-0.002716,1.000000,0.000018 +30,2022-08-02 06:00:00,0.000358,0.000023,0.000017,0.000023,0.000014,0.000348,0.000293,0.000385,0.000000,0.000000,0.002770,0.313771,-0.002712,1.000000,0.000012 +31,2022-08-02 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000015,0.000341,0.000289,0.000364,0.000000,0.000000,0.002718,0.310763,-0.003008,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000016,0.000334,0.000285,0.000353,0.000000,0.000000,0.002668,0.307799,-0.002964,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000328,0.000281,0.000345,0.000000,0.000000,0.002621,0.304878,-0.002921,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000322,0.000276,0.000340,0.000000,0.000000,0.002575,0.301999,-0.002879,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000317,0.000272,0.000335,0.000000,0.000000,0.002531,0.299163,-0.002837,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000311,0.000268,0.000330,0.000000,0.000000,0.002488,0.296367,-0.002795,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000306,0.000265,0.000326,0.000000,0.000000,0.002447,0.293613,-0.002754,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000301,0.000261,0.000322,0.000105,0.000105,0.002407,0.290796,-0.002817,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000295,0.000256,0.000318,0.000324,0.000324,0.002368,0.287804,-0.002992,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000290,0.000252,0.000314,0.000483,0.000483,0.002329,0.284698,-0.003105,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000286,0.000247,0.000310,0.000619,0.000619,0.002291,0.281505,-0.003194,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000256,0.000000,0.000000,0.000000,0.000025,0.000281,0.000243,0.000306,0.000725,0.000725,0.002253,0.278505,-0.003000,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000026,0.000276,0.000239,0.000302,0.000655,0.000655,0.002216,0.275367,-0.003138,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000271,0.000234,0.000299,0.000552,0.000552,0.002179,0.272375,-0.002992,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000267,0.000230,0.000295,0.000485,0.000485,0.002143,0.269494,-0.002882,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000262,0.000226,0.000292,0.000398,0.000398,0.002107,0.266739,-0.002754,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000258,0.000223,0.000288,0.000304,0.000304,0.002072,0.264118,-0.002621,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000253,0.000219,0.000285,0.000166,0.000166,0.002038,0.261671,-0.002447,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000249,0.000216,0.000282,0.000024,0.000024,0.002005,0.259399,-0.002271,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000245,0.000213,0.000279,0.000000,0.000000,0.001973,0.257185,-0.002215,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000241,0.000210,0.000276,0.000000,0.000000,0.001941,0.255002,-0.002182,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000237,0.000207,0.000273,0.000000,0.000000,0.001911,0.252852,-0.002150,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000233,0.000204,0.000271,0.000000,0.000000,0.001881,0.250733,-0.002119,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000230,0.000201,0.000268,0.000000,0.000000,0.001852,0.248645,-0.002088,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000226,0.000198,0.000266,0.000000,0.000000,0.001824,0.246587,-0.002058,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000222,0.000195,0.000264,0.000000,0.000000,0.001796,0.244559,-0.002028,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000219,0.000192,0.000261,0.000000,0.000000,0.001769,0.242561,-0.001998,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000216,0.000189,0.000259,0.000000,0.000000,0.001743,0.240592,-0.001969,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000212,0.000186,0.000257,0.000000,0.000000,0.001717,0.238652,-0.001940,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000209,0.000184,0.000255,0.000000,0.000000,0.001691,0.236740,-0.001912,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000206,0.000181,0.000253,0.000000,0.000000,0.001666,0.234857,-0.001884,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000203,0.000178,0.000252,0.000118,0.000118,0.001642,0.232884,-0.001972,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000200,0.000175,0.000250,0.000351,0.000351,0.001617,0.230711,-0.002173,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000197,0.000172,0.000248,0.000519,0.000519,0.001592,0.228404,-0.002307,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000193,0.000168,0.000246,0.000655,0.000655,0.001567,0.225996,-0.002408,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000190,0.000165,0.000244,0.000668,0.000668,0.001542,0.223611,-0.002385,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000187,0.000162,0.000242,0.000606,0.000606,0.001516,0.221321,-0.002290,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000837,0.000007,0.000013,0.000007,0.000056,0.000184,0.000160,0.000247,0.000501,0.000501,0.001492,0.219980,-0.001341,1.000000,0.000006 +69,2022-08-03 21:00:00,0.000121,0.000003,0.000000,0.000003,0.000058,0.000181,0.000157,0.000242,0.000433,0.000433,0.001468,0.218034,-0.001946,1.000000,0.000003 +70,2022-08-03 22:00:00,0.000053,0.000003,0.000000,0.000003,0.000059,0.000178,0.000154,0.000240,0.000360,0.000360,0.001444,0.216121,-0.001913,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000029,0.000000,0.000000,0.000000,0.000060,0.000175,0.000152,0.000235,0.000269,0.000269,0.001421,0.214302,-0.001819,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000172,0.000149,0.000234,0.000157,0.000157,0.001398,0.212590,-0.001711,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000169,0.000147,0.000232,0.000034,0.000034,0.001376,0.211025,-0.001565,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000167,0.000145,0.000231,0.000000,0.000000,0.001354,0.209517,-0.001509,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000164,0.000143,0.000230,0.000000,0.000000,0.001333,0.208030,-0.001487,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000011,0.000000,0.000000,0.000000,0.000067,0.000161,0.000141,0.000228,0.000000,0.000000,0.001312,0.206576,-0.001454,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000072,0.000000,0.000001,0.000000,0.000068,0.000159,0.000139,0.000227,0.000000,0.000000,0.001292,0.205203,-0.001373,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000156,0.000137,0.000226,0.000000,0.000000,0.001272,0.203780,-0.001424,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000154,0.000135,0.000225,0.000000,0.000000,0.001253,0.202377,-0.001403,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000152,0.000133,0.000224,0.000000,0.000000,0.001234,0.200995,-0.001382,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000149,0.000131,0.000223,0.000000,0.000000,0.001216,0.199632,-0.001362,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000147,0.000129,0.000222,0.000000,0.000000,0.001198,0.198290,-0.001342,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000145,0.000127,0.000221,0.000000,0.000000,0.001180,0.196968,-0.001323,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000143,0.000125,0.000220,0.000000,0.000000,0.001162,0.195664,-0.001303,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000141,0.000123,0.000220,0.000000,0.000000,0.001145,0.194380,-0.001284,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000138,0.000121,0.000219,0.000115,0.000115,0.001128,0.193001,-0.001379,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000136,0.000119,0.000218,0.000350,0.000350,0.001111,0.191411,-0.001590,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000134,0.000117,0.000217,0.000520,0.000520,0.001093,0.189675,-0.001735,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000132,0.000114,0.000216,0.000660,0.000660,0.001076,0.187828,-0.001847,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000130,0.000111,0.000216,0.000706,0.000706,0.001057,0.185962,-0.001866,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000127,0.000109,0.000215,0.000661,0.000661,0.001039,0.184169,-0.001794,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000125,0.000106,0.000214,0.000568,0.000568,0.001020,0.182492,-0.001677,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000123,0.000104,0.000213,0.000476,0.000476,0.001002,0.180931,-0.001561,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000120,0.000102,0.000212,0.000387,0.000387,0.000984,0.179481,-0.001450,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000077,0.000000,0.000000,0.000000,0.000093,0.000118,0.000100,0.000211,0.000302,0.000302,0.000966,0.178212,-0.001270,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000119,0.000000,0.000000,0.000000,0.000094,0.000116,0.000099,0.000210,0.000178,0.000178,0.000948,0.177124,-0.001088,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000082,0.000000,0.000000,0.000000,0.000096,0.000114,0.000097,0.000210,0.000043,0.000043,0.000932,0.176149,-0.000975,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000112,0.000096,0.000209,0.000000,0.000000,0.000916,0.175149,-0.000999,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000110,0.000095,0.000208,0.000000,0.000000,0.000900,0.174165,-0.000985,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000108,0.000093,0.000208,0.000000,0.000000,0.000885,0.173194,-0.000970,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000106,0.000092,0.000207,0.000000,0.000000,0.000871,0.172238,-0.000956,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000105,0.000091,0.000207,0.000000,0.000000,0.000856,0.171296,-0.000942,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000103,0.000089,0.000207,0.000000,0.000000,0.000843,0.170367,-0.000929,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000101,0.000088,0.000206,0.000000,0.000000,0.000829,0.169452,-0.000915,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000100,0.000087,0.000206,0.000000,0.000000,0.000816,0.168550,-0.000902,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000098,0.000085,0.000206,0.000000,0.000000,0.000803,0.167662,-0.000889,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000097,0.000084,0.000206,0.000000,0.000000,0.000791,0.166786,-0.000876,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000095,0.000083,0.000206,0.000000,0.000000,0.000779,0.165923,-0.000863,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000094,0.000082,0.000205,0.000000,0.000000,0.000767,0.165073,-0.000850,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000092,0.000080,0.000205,0.000126,0.000126,0.000755,0.164111,-0.000962,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000091,0.000079,0.000205,0.000355,0.000355,0.000743,0.162937,-0.001173,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000089,0.000077,0.000205,0.000524,0.000524,0.000730,0.161614,-0.001323,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000088,0.000075,0.000205,0.000665,0.000665,0.000718,0.160172,-0.001443,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000086,0.000073,0.000204,0.000684,0.000684,0.000704,0.158731,-0.001440,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000120,0.000084,0.000071,0.000204,0.000618,0.000618,0.000691,0.157434,-0.001297,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000139,0.000000,0.000000,0.000000,0.000121,0.000083,0.000069,0.000204,0.000526,0.000526,0.000677,0.156327,-0.001107,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000132,0.000000,0.000000,0.000000,0.000123,0.000081,0.000068,0.000204,0.000423,0.000423,0.000664,0.155331,-0.000997,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000111,0.000000,0.000000,0.000000,0.000124,0.000079,0.000066,0.000203,0.000349,0.000349,0.000651,0.154400,-0.000930,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000100,0.000000,0.000000,0.000000,0.000125,0.000078,0.000065,0.000203,0.000273,0.000273,0.000639,0.153547,-0.000853,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000126,0.000000,0.000000,0.000000,0.000127,0.000076,0.000064,0.000203,0.000166,0.000166,0.000627,0.152839,-0.000708,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000437,0.000008,0.000015,0.000008,0.000128,0.000075,0.000064,0.000211,0.000057,0.000057,0.000615,0.152539,-0.000300,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000448,0.000015,0.000020,0.000015,0.000129,0.000074,0.000063,0.000218,0.000000,0.000000,0.000605,0.152306,-0.000233,1.000000,0.000012 +123,2022-08-06 03:00:00,0.000580,0.000026,0.000033,0.000026,0.000130,0.000073,0.000063,0.000229,0.000000,0.000000,0.000596,0.152194,-0.000113,1.000000,0.000019 +124,2022-08-06 04:00:00,0.000270,0.000016,0.000007,0.000016,0.000132,0.000072,0.000063,0.000220,0.000000,0.000000,0.000587,0.151803,-0.000391,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000288,0.000013,0.000008,0.000013,0.000133,0.000070,0.000062,0.000217,0.000000,0.000000,0.000579,0.151434,-0.000368,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000302,0.000009,0.000009,0.000009,0.000134,0.000070,0.000062,0.000213,0.000000,0.000000,0.000571,0.151084,-0.000350,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000136,0.000069,0.000061,0.000208,0.000000,0.000000,0.000563,0.150451,-0.000634,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000137,0.000068,0.000060,0.000206,0.000000,0.000000,0.000556,0.149826,-0.000624,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000067,0.000059,0.000205,0.000000,0.000000,0.000548,0.149211,-0.000615,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000066,0.000058,0.000205,0.000000,0.000000,0.000541,0.148605,-0.000606,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000065,0.000057,0.000206,0.000000,0.000000,0.000533,0.148008,-0.000597,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000064,0.000057,0.000206,0.000000,0.000000,0.000526,0.147419,-0.000589,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000063,0.000056,0.000206,0.000000,0.000000,0.000518,0.146839,-0.000580,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000062,0.000055,0.000207,0.000109,0.000109,0.000511,0.146160,-0.000679,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000061,0.000053,0.000207,0.000334,0.000334,0.000503,0.145269,-0.000891,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000060,0.000052,0.000207,0.000502,0.000502,0.000495,0.144225,-0.001044,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000059,0.000050,0.000208,0.000642,0.000642,0.000486,0.143059,-0.001166,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000058,0.000049,0.000208,0.000726,0.000726,0.000477,0.141827,-0.001232,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000057,0.000047,0.000208,0.000668,0.000668,0.000467,0.140671,-0.001156,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000056,0.000045,0.000208,0.000572,0.000572,0.000457,0.139626,-0.001045,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000054,0.000044,0.000208,0.000486,0.000486,0.000447,0.138681,-0.000945,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000053,0.000043,0.000208,0.000396,0.000396,0.000436,0.137838,-0.000843,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000042,0.000208,0.000303,0.000303,0.000427,0.137100,-0.000739,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000051,0.000041,0.000208,0.000163,0.000163,0.000417,0.136510,-0.000590,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000050,0.000040,0.000208,0.000034,0.000034,0.000408,0.136055,-0.000455,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000048,0.000040,0.000208,0.000000,0.000000,0.000399,0.135641,-0.000414,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000039,0.000208,0.000000,0.000000,0.000391,0.135233,-0.000408,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000046,0.000039,0.000208,0.000000,0.000000,0.000383,0.134831,-0.000402,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000038,0.000209,0.000000,0.000000,0.000375,0.134435,-0.000396,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000038,0.000209,0.000000,0.000000,0.000368,0.134044,-0.000391,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000044,0.000037,0.000209,0.000000,0.000000,0.000361,0.133659,-0.000385,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000043,0.000036,0.000210,0.000000,0.000000,0.000355,0.133280,-0.000379,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000042,0.000036,0.000210,0.000000,0.000000,0.000348,0.132906,-0.000374,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000035,0.000210,0.000000,0.000000,0.000342,0.132538,-0.000368,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000041,0.000035,0.000211,0.000000,0.000000,0.000336,0.132175,-0.000363,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000040,0.000034,0.000211,0.000000,0.000000,0.000330,0.131818,-0.000358,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000039,0.000034,0.000212,0.000000,0.000000,0.000325,0.131466,-0.000352,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000039,0.000033,0.000212,0.000105,0.000105,0.000319,0.131015,-0.000450,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000038,0.000032,0.000213,0.000329,0.000329,0.000313,0.130350,-0.000665,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000037,0.000031,0.000213,0.000500,0.000500,0.000307,0.129527,-0.000824,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000036,0.000030,0.000213,0.000639,0.000639,0.000301,0.128578,-0.000948,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000036,0.000028,0.000214,0.000726,0.000726,0.000293,0.127558,-0.001020,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000035,0.000027,0.000214,0.000666,0.000666,0.000286,0.126612,-0.000946,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000026,0.000214,0.000564,0.000564,0.000278,0.125780,-0.000832,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000033,0.000025,0.000214,0.000483,0.000483,0.000270,0.125040,-0.000740,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000032,0.000024,0.000214,0.000397,0.000397,0.000262,0.124396,-0.000644,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000031,0.000023,0.000214,0.000300,0.000300,0.000254,0.123856,-0.000540,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000030,0.000022,0.000215,0.000139,0.000139,0.000247,0.123483,-0.000373,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000029,0.000022,0.000215,0.000005,0.000005,0.000240,0.123247,-0.000236,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000022,0.000215,0.000000,0.000000,0.000233,0.123020,-0.000227,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000022,0.000215,0.000000,0.000000,0.000227,0.122796,-0.000224,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000027,0.000021,0.000216,0.000000,0.000000,0.000221,0.122575,-0.000221,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000026,0.000021,0.000216,0.000000,0.000000,0.000216,0.122358,-0.000217,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000026,0.000021,0.000217,0.000000,0.000000,0.000211,0.122144,-0.000214,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000025,0.000020,0.000217,0.000000,0.000000,0.000206,0.121933,-0.000211,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000024,0.000020,0.000218,0.000000,0.000000,0.000202,0.121725,-0.000208,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000024,0.000020,0.000218,0.000000,0.000000,0.000198,0.121520,-0.000205,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000023,0.000019,0.000219,0.000000,0.000000,0.000194,0.121318,-0.000202,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000023,0.000019,0.000219,0.000000,0.000000,0.000190,0.121119,-0.000199,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000023,0.000019,0.000220,0.000000,0.000000,0.000186,0.120922,-0.000196,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000022,0.000019,0.000220,0.000000,0.000000,0.000183,0.120729,-0.000193,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000022,0.000018,0.000221,0.000090,0.000090,0.000179,0.120450,-0.000279,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000021,0.000017,0.000221,0.000316,0.000316,0.000175,0.119953,-0.000497,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000021,0.000017,0.000222,0.000489,0.000489,0.000171,0.119292,-0.000661,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000020,0.000015,0.000222,0.000622,0.000622,0.000166,0.118509,-0.000783,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000019,0.000014,0.000223,0.000722,0.000722,0.000161,0.117639,-0.000870,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000019,0.000013,0.000223,0.000643,0.000643,0.000155,0.116861,-0.000779,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000012,0.000223,0.000551,0.000551,0.000149,0.116184,-0.000677,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000011,0.000223,0.000484,0.000484,0.000143,0.115583,-0.000601,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000017,0.000011,0.000224,0.000393,0.000393,0.000137,0.115081,-0.000503,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000016,0.000010,0.000224,0.000300,0.000300,0.000131,0.114677,-0.000404,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000015,0.000010,0.000224,0.000171,0.000171,0.000126,0.114406,-0.000271,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000015,0.000009,0.000224,0.000031,0.000031,0.000120,0.114277,-0.000129,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000516,0.000014,0.000025,0.000014,0.000211,0.000014,0.000010,0.000239,0.000000,0.000000,0.000116,0.114665,0.000388,1.000000,0.000011 +195,2022-08-09 03:00:00,0.000182,0.000008,0.000003,0.000008,0.000212,0.000014,0.000010,0.000233,0.000000,0.000000,0.000113,0.114739,0.000074,1.000000,0.000007 +196,2022-08-09 04:00:00,0.000000,0.000006,0.000000,0.000006,0.000213,0.000013,0.000010,0.000232,0.000000,0.000000,0.000109,0.114636,-0.000103,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000214,0.000013,0.000010,0.000227,0.000000,0.000000,0.000106,0.114534,-0.000102,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000013,0.000010,0.000227,0.000000,0.000000,0.000103,0.114434,-0.000100,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000012,0.000009,0.000227,0.000000,0.000000,0.000101,0.114336,-0.000099,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000012,0.000009,0.000228,0.000000,0.000000,0.000098,0.114239,-0.000097,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000012,0.000009,0.000229,0.000000,0.000000,0.000096,0.114143,-0.000096,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000019,0.000000,0.000000,0.000000,0.000218,0.000011,0.000009,0.000229,0.000000,0.000000,0.000093,0.114067,-0.000076,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000011,0.000009,0.000230,0.000000,0.000000,0.000091,0.113974,-0.000093,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000011,0.000009,0.000230,0.000000,0.000000,0.000089,0.113882,-0.000092,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000011,0.000009,0.000231,0.000000,0.000000,0.000087,0.113791,-0.000091,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000010,0.000008,0.000232,0.000101,0.000101,0.000086,0.113603,-0.000188,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620889.csv b/test/channel_loss/channel_forcing/et/cat-2620889.csv new file mode 100644 index 000000000..91ba720c8 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620889.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000245,0.000001,0.000001,0.000001,0.000000,0.001464,0.000317,0.001465,0.000182,0.000182,0.010449,0.425812,-0.004757,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001306,0.000312,0.001306,0.000051,0.000051,0.009456,0.421009,-0.004804,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001171,0.000308,0.001172,0.000000,0.000000,0.008593,0.416321,-0.004688,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001057,0.000304,0.001057,0.000000,0.000000,0.007840,0.411697,-0.004624,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000959,0.000300,0.000959,0.000000,0.000000,0.007180,0.407137,-0.004560,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000296,0.000875,0.000000,0.000000,0.006602,0.402639,-0.004498,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000801,0.000292,0.000802,0.000000,0.000000,0.006092,0.398202,-0.004437,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000288,0.000738,0.000000,0.000000,0.005643,0.393826,-0.004376,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000681,0.000284,0.000683,0.000000,0.000000,0.005245,0.389510,-0.004316,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000632,0.000280,0.000634,0.000000,0.000000,0.004893,0.385253,-0.004257,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000589,0.000276,0.000591,0.000000,0.000000,0.004579,0.381054,-0.004199,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000551,0.000272,0.000553,0.000000,0.000000,0.004300,0.376912,-0.004142,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000518,0.000269,0.000520,0.000000,0.000000,0.004051,0.372827,-0.004085,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000488,0.000265,0.000491,0.000000,0.000000,0.003829,0.368798,-0.004029,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000261,0.000464,0.000126,0.000126,0.003629,0.364699,-0.004099,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000257,0.000441,0.000359,0.000359,0.003449,0.360427,-0.004272,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000415,0.000253,0.000420,0.000529,0.000529,0.003287,0.356046,-0.004381,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000396,0.000249,0.000401,0.000659,0.000659,0.003140,0.351596,-0.004450,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000379,0.000245,0.000384,0.000628,0.000628,0.003007,0.347237,-0.004358,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000117,0.000000,0.000000,0.000000,0.000006,0.000363,0.000242,0.000369,0.000558,0.000558,0.002886,0.343123,-0.004114,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000115,0.000000,0.000000,0.000000,0.000007,0.000348,0.000238,0.000355,0.000489,0.000489,0.002775,0.339131,-0.003992,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000350,0.000000,0.000000,0.000000,0.000008,0.000335,0.000235,0.000343,0.000387,0.000387,0.002675,0.335527,-0.003604,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000115,0.000000,0.000000,0.000000,0.000008,0.000323,0.000231,0.000331,0.000326,0.000326,0.002583,0.331799,-0.003728,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000009,0.000312,0.000228,0.000321,0.000260,0.000260,0.002498,0.328261,-0.003538,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000115,0.000000,0.000000,0.000000,0.000010,0.000302,0.000225,0.000312,0.000167,0.000167,0.002421,0.324789,-0.003472,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000568,0.000026,0.000048,0.000026,0.000010,0.000293,0.000222,0.000330,0.000069,0.000069,0.002350,0.321862,-0.002927,1.000000,0.000022 +26,2022-08-02 02:00:00,0.000951,0.000100,0.000159,0.000100,0.000011,0.000285,0.000220,0.000396,0.000000,0.000000,0.002285,0.319311,-0.002551,1.000000,0.000081 +27,2022-08-02 03:00:00,0.000938,0.000135,0.000155,0.000135,0.000012,0.000277,0.000218,0.000424,0.000000,0.000000,0.002225,0.316786,-0.002525,1.000000,0.000102 +28,2022-08-02 04:00:00,0.001000,0.000166,0.000173,0.000166,0.000013,0.000270,0.000215,0.000449,0.000000,0.000000,0.002170,0.314338,-0.002448,1.000000,0.000109 +29,2022-08-02 05:00:00,0.000600,0.000111,0.000067,0.000111,0.000014,0.000264,0.000213,0.000388,0.000000,0.000000,0.002120,0.311634,-0.002704,1.000000,0.000065 +30,2022-08-02 06:00:00,0.000508,0.000078,0.000049,0.000078,0.000015,0.000258,0.000210,0.000350,0.000000,0.000000,0.002072,0.308895,-0.002739,1.000000,0.000035 +31,2022-08-02 07:00:00,0.000000,0.000025,0.000000,0.000025,0.000016,0.000252,0.000207,0.000293,0.000000,0.000000,0.002028,0.305740,-0.003155,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000017,0.000247,0.000205,0.000273,0.000000,0.000000,0.001986,0.302628,-0.003112,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000241,0.000202,0.000259,0.000000,0.000000,0.001946,0.299558,-0.003070,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000237,0.000199,0.000255,0.000000,0.000000,0.001909,0.296530,-0.003028,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000232,0.000196,0.000252,0.000000,0.000000,0.001873,0.293544,-0.002986,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000228,0.000194,0.000248,0.000000,0.000000,0.001839,0.290599,-0.002945,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000224,0.000191,0.000245,0.000000,0.000000,0.001806,0.287693,-0.002905,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000220,0.000188,0.000242,0.000112,0.000112,0.001775,0.284718,-0.002976,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000216,0.000185,0.000239,0.000332,0.000332,0.001744,0.281566,-0.003152,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000212,0.000182,0.000237,0.000487,0.000487,0.001715,0.278304,-0.003262,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000208,0.000179,0.000234,0.000610,0.000610,0.001686,0.274965,-0.003338,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000447,0.000000,0.000000,0.000000,0.000027,0.000205,0.000177,0.000232,0.000707,0.000707,0.001658,0.272017,-0.002948,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000058,0.000000,0.000000,0.000000,0.000028,0.000201,0.000174,0.000229,0.000640,0.000640,0.001630,0.268792,-0.003225,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000198,0.000171,0.000227,0.000558,0.000558,0.001603,0.265634,-0.003158,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000195,0.000168,0.000225,0.000505,0.000505,0.001577,0.262572,-0.003062,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000191,0.000165,0.000223,0.000421,0.000421,0.001551,0.259635,-0.002937,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000188,0.000163,0.000221,0.000323,0.000323,0.001525,0.256834,-0.002801,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000185,0.000161,0.000219,0.000178,0.000178,0.001501,0.254215,-0.002619,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000182,0.000158,0.000217,0.000030,0.000030,0.001477,0.251778,-0.002437,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000179,0.000156,0.000216,0.000000,0.000000,0.001454,0.249403,-0.002375,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000176,0.000154,0.000214,0.000000,0.000000,0.001432,0.247061,-0.002342,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000174,0.000152,0.000213,0.000000,0.000000,0.001410,0.244751,-0.002310,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000171,0.000150,0.000211,0.000000,0.000000,0.001389,0.242472,-0.002279,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000168,0.000148,0.000210,0.000000,0.000000,0.001368,0.240225,-0.002247,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000166,0.000146,0.000209,0.000000,0.000000,0.001348,0.238008,-0.002217,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000163,0.000144,0.000207,0.000000,0.000000,0.001328,0.235822,-0.002186,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000161,0.000142,0.000206,0.000000,0.000000,0.001309,0.233666,-0.002156,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000159,0.000140,0.000205,0.000000,0.000000,0.001290,0.231539,-0.002127,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000156,0.000138,0.000204,0.000000,0.000000,0.001272,0.229441,-0.002098,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000154,0.000136,0.000203,0.000000,0.000000,0.001254,0.227371,-0.002069,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000152,0.000134,0.000203,0.000000,0.000000,0.001236,0.225331,-0.002041,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000150,0.000132,0.000202,0.000123,0.000123,0.001219,0.223196,-0.002135,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000148,0.000130,0.000201,0.000366,0.000366,0.001201,0.220851,-0.002345,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000145,0.000128,0.000200,0.000535,0.000535,0.001184,0.218372,-0.002479,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000143,0.000126,0.000199,0.000657,0.000657,0.001166,0.215805,-0.002566,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000141,0.000123,0.000198,0.000666,0.000666,0.001148,0.213266,-0.002539,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000139,0.000121,0.000198,0.000597,0.000597,0.001131,0.210829,-0.002437,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001752,0.000122,0.000222,0.000122,0.000060,0.000137,0.000120,0.000319,0.000510,0.000510,0.001114,0.210020,-0.000809,1.000000,0.000100 +69,2022-08-03 21:00:00,0.000203,0.000056,0.000000,0.000056,0.000062,0.000135,0.000118,0.000252,0.000467,0.000467,0.001098,0.207957,-0.002063,1.000000,0.000044 +70,2022-08-03 22:00:00,0.000008,0.000044,0.000000,0.000044,0.000063,0.000133,0.000116,0.000240,0.000385,0.000385,0.001082,0.205809,-0.002147,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000049,0.000000,0.000000,0.000000,0.000065,0.000131,0.000115,0.000195,0.000291,0.000291,0.001066,0.203824,-0.001985,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000129,0.000113,0.000195,0.000176,0.000176,0.001050,0.201931,-0.001893,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000127,0.000111,0.000194,0.000041,0.000041,0.001034,0.200198,-0.001734,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000125,0.000110,0.000194,0.000000,0.000000,0.001019,0.198528,-0.001670,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000123,0.000108,0.000193,0.000000,0.000000,0.001005,0.196881,-0.001647,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000121,0.000107,0.000193,0.000000,0.000000,0.000990,0.195257,-0.001624,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000063,0.000000,0.000001,0.000000,0.000073,0.000119,0.000105,0.000193,0.000000,0.000000,0.000976,0.193717,-0.001540,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000118,0.000104,0.000193,0.000000,0.000000,0.000962,0.192136,-0.001581,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000116,0.000103,0.000192,0.000000,0.000000,0.000949,0.190577,-0.001559,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000114,0.000101,0.000192,0.000000,0.000000,0.000935,0.189039,-0.001538,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000113,0.000100,0.000192,0.000000,0.000000,0.000922,0.187522,-0.001517,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000111,0.000098,0.000192,0.000000,0.000000,0.000909,0.186025,-0.001496,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000110,0.000097,0.000192,0.000000,0.000000,0.000897,0.184550,-0.001476,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000108,0.000096,0.000192,0.000000,0.000000,0.000884,0.183094,-0.001456,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000107,0.000094,0.000192,0.000000,0.000000,0.000872,0.181658,-0.001436,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000105,0.000093,0.000192,0.000119,0.000119,0.000860,0.180125,-0.001534,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000104,0.000091,0.000192,0.000361,0.000361,0.000848,0.178373,-0.001751,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000102,0.000090,0.000192,0.000533,0.000533,0.000835,0.176476,-0.001897,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000101,0.000088,0.000192,0.000665,0.000665,0.000823,0.174475,-0.002001,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000099,0.000086,0.000191,0.000723,0.000723,0.000810,0.172444,-0.002031,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000097,0.000084,0.000191,0.000655,0.000655,0.000797,0.170508,-0.001936,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000096,0.000083,0.000191,0.000576,0.000576,0.000784,0.168676,-0.001832,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000094,0.000081,0.000191,0.000503,0.000503,0.000771,0.166941,-0.001735,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000092,0.000080,0.000191,0.000414,0.000414,0.000758,0.165318,-0.001623,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000091,0.000078,0.000191,0.000324,0.000324,0.000745,0.163805,-0.001512,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000089,0.000077,0.000191,0.000188,0.000188,0.000732,0.162448,-0.001358,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000088,0.000076,0.000191,0.000049,0.000049,0.000720,0.161246,-0.001202,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000086,0.000075,0.000191,0.000000,0.000000,0.000709,0.160109,-0.001137,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000085,0.000074,0.000191,0.000000,0.000000,0.000697,0.158987,-0.001122,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000084,0.000073,0.000191,0.000000,0.000000,0.000686,0.157881,-0.001106,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000082,0.000072,0.000191,0.000000,0.000000,0.000676,0.156790,-0.001091,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000081,0.000071,0.000192,0.000000,0.000000,0.000665,0.155714,-0.001076,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000080,0.000070,0.000192,0.000000,0.000000,0.000655,0.154652,-0.001061,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000079,0.000069,0.000192,0.000000,0.000000,0.000645,0.153605,-0.001047,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000077,0.000068,0.000193,0.000000,0.000000,0.000636,0.152573,-0.001033,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000076,0.000067,0.000193,0.000000,0.000000,0.000626,0.151554,-0.001019,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000075,0.000066,0.000193,0.000000,0.000000,0.000617,0.150549,-0.001005,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000074,0.000065,0.000194,0.000000,0.000000,0.000608,0.149559,-0.000991,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000073,0.000064,0.000194,0.000000,0.000000,0.000600,0.148581,-0.000977,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000072,0.000063,0.000194,0.000133,0.000133,0.000591,0.147486,-0.001095,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000071,0.000062,0.000195,0.000373,0.000373,0.000582,0.146169,-0.001317,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000070,0.000061,0.000195,0.000540,0.000540,0.000573,0.144706,-0.001463,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000069,0.000059,0.000196,0.000666,0.000666,0.000564,0.143138,-0.001568,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000067,0.000058,0.000196,0.000678,0.000678,0.000554,0.141580,-0.001559,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000066,0.000057,0.000196,0.000613,0.000613,0.000544,0.140169,-0.001411,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000085,0.000000,0.000000,0.000000,0.000131,0.000065,0.000055,0.000196,0.000533,0.000533,0.000535,0.138878,-0.001291,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000064,0.000054,0.000197,0.000451,0.000451,0.000525,0.137664,-0.001214,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000118,0.000000,0.000000,0.000000,0.000134,0.000063,0.000053,0.000197,0.000377,0.000377,0.000516,0.136594,-0.001070,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000136,0.000062,0.000053,0.000197,0.000293,0.000293,0.000507,0.135692,-0.000902,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000061,0.000052,0.000198,0.000179,0.000179,0.000498,0.134789,-0.000902,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000536,0.000018,0.000033,0.000018,0.000139,0.000060,0.000051,0.000216,0.000064,0.000064,0.000490,0.134447,-0.000342,1.000000,0.000015 +122,2022-08-06 02:00:00,0.001002,0.000083,0.000136,0.000083,0.000140,0.000059,0.000051,0.000282,0.000000,0.000000,0.000482,0.134530,0.000083,1.000000,0.000068 +123,2022-08-06 03:00:00,0.000733,0.000082,0.000076,0.000082,0.000142,0.000058,0.000051,0.000282,0.000000,0.000000,0.000476,0.134407,-0.000123,1.000000,0.000061 +124,2022-08-06 04:00:00,0.000514,0.000067,0.000038,0.000067,0.000143,0.000057,0.000051,0.000267,0.000000,0.000000,0.000470,0.134106,-0.000301,1.000000,0.000032 +125,2022-08-06 05:00:00,0.000519,0.000046,0.000039,0.000046,0.000145,0.000056,0.000051,0.000247,0.000000,0.000000,0.000464,0.133813,-0.000293,1.000000,0.000025 +126,2022-08-06 06:00:00,0.000600,0.000046,0.000052,0.000046,0.000146,0.000056,0.000051,0.000248,0.000000,0.000000,0.000459,0.133592,-0.000221,1.000000,0.000031 +127,2022-08-06 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000147,0.000055,0.000050,0.000223,0.000000,0.000000,0.000454,0.132833,-0.000759,1.000000,0.000010 +128,2022-08-06 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000149,0.000055,0.000049,0.000214,0.000000,0.000000,0.000448,0.132084,-0.000749,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000054,0.000049,0.000204,0.000000,0.000000,0.000443,0.131345,-0.000738,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000053,0.000048,0.000205,0.000000,0.000000,0.000438,0.130617,-0.000728,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000053,0.000047,0.000206,0.000000,0.000000,0.000433,0.129899,-0.000718,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000052,0.000047,0.000206,0.000000,0.000000,0.000427,0.129190,-0.000709,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000051,0.000046,0.000207,0.000000,0.000000,0.000422,0.128491,-0.000699,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000051,0.000045,0.000208,0.000113,0.000113,0.000417,0.127690,-0.000801,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000050,0.000044,0.000209,0.000347,0.000347,0.000411,0.126670,-0.001020,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000049,0.000043,0.000209,0.000509,0.000509,0.000405,0.125503,-0.001167,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000048,0.000042,0.000210,0.000641,0.000641,0.000399,0.124222,-0.001281,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000048,0.000041,0.000211,0.000722,0.000722,0.000392,0.122878,-0.001343,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000047,0.000040,0.000211,0.000665,0.000665,0.000385,0.121609,-0.001269,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000046,0.000039,0.000212,0.000579,0.000579,0.000378,0.120443,-0.001166,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000045,0.000038,0.000212,0.000513,0.000513,0.000370,0.119358,-0.001085,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000044,0.000037,0.000213,0.000420,0.000420,0.000363,0.118379,-0.000979,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000036,0.000213,0.000325,0.000325,0.000356,0.117508,-0.000871,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000042,0.000035,0.000214,0.000178,0.000178,0.000349,0.116793,-0.000715,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000214,0.000041,0.000041,0.000342,0.116223,-0.000570,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000041,0.000034,0.000215,0.000000,0.000000,0.000336,0.115702,-0.000522,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000040,0.000034,0.000215,0.000000,0.000000,0.000329,0.115187,-0.000515,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000039,0.000033,0.000216,0.000000,0.000000,0.000323,0.114680,-0.000508,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000039,0.000033,0.000217,0.000000,0.000000,0.000318,0.114179,-0.000501,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000032,0.000217,0.000000,0.000000,0.000312,0.113685,-0.000494,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000037,0.000032,0.000218,0.000000,0.000000,0.000307,0.113198,-0.000487,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000037,0.000032,0.000219,0.000000,0.000000,0.000302,0.112718,-0.000480,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000031,0.000219,0.000000,0.000000,0.000297,0.112244,-0.000474,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000035,0.000031,0.000220,0.000000,0.000000,0.000292,0.111777,-0.000467,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000035,0.000030,0.000221,0.000000,0.000000,0.000288,0.111316,-0.000461,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000030,0.000222,0.000000,0.000000,0.000283,0.110861,-0.000455,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000034,0.000029,0.000222,0.000000,0.000000,0.000279,0.110413,-0.000448,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000029,0.000223,0.000111,0.000111,0.000275,0.109861,-0.000552,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000028,0.000224,0.000347,0.000347,0.000270,0.109085,-0.000777,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000027,0.000225,0.000514,0.000514,0.000265,0.108153,-0.000931,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000026,0.000225,0.000641,0.000641,0.000260,0.107110,-0.001044,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000025,0.000226,0.000721,0.000721,0.000255,0.106001,-0.001108,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000025,0.000226,0.000662,0.000662,0.000249,0.104967,-0.001035,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000024,0.000227,0.000572,0.000572,0.000243,0.104035,-0.000932,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000029,0.000023,0.000228,0.000503,0.000503,0.000237,0.103184,-0.000851,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000028,0.000022,0.000228,0.000421,0.000421,0.000232,0.102425,-0.000759,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000027,0.000022,0.000229,0.000320,0.000320,0.000226,0.101776,-0.000648,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000021,0.000229,0.000151,0.000151,0.000220,0.101304,-0.000473,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000026,0.000021,0.000230,0.000011,0.000011,0.000215,0.100975,-0.000328,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000021,0.000230,0.000000,0.000000,0.000210,0.100662,-0.000313,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000025,0.000020,0.000231,0.000000,0.000000,0.000206,0.100353,-0.000309,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000232,0.000000,0.000000,0.000201,0.100048,-0.000305,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000024,0.000020,0.000232,0.000000,0.000000,0.000197,0.099748,-0.000301,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000000,0.000000,0.000193,0.099451,-0.000297,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000023,0.000019,0.000234,0.000000,0.000000,0.000190,0.099159,-0.000292,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000023,0.000019,0.000235,0.000000,0.000000,0.000186,0.098870,-0.000288,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000235,0.000000,0.000000,0.000183,0.098586,-0.000285,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000018,0.000236,0.000000,0.000000,0.000179,0.098305,-0.000281,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000176,0.098028,-0.000277,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000021,0.000018,0.000238,0.000000,0.000000,0.000173,0.097755,-0.000273,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000018,0.000239,0.000000,0.000000,0.000170,0.097486,-0.000269,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000239,0.000095,0.000095,0.000167,0.097127,-0.000360,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000020,0.000017,0.000240,0.000334,0.000334,0.000164,0.096537,-0.000590,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000016,0.000241,0.000505,0.000505,0.000161,0.095786,-0.000751,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000015,0.000241,0.000628,0.000628,0.000157,0.094924,-0.000862,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000019,0.000015,0.000242,0.000718,0.000718,0.000153,0.093985,-0.000939,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000014,0.000243,0.000645,0.000000,0.000149,0.093767,-0.000218,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000014,0.000243,0.000557,0.000000,0.000146,0.093552,-0.000215,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000014,0.000244,0.000509,0.000000,0.000143,0.093341,-0.000212,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000014,0.000245,0.000419,0.000000,0.000139,0.093132,-0.000209,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000017,0.000014,0.000246,0.000320,0.000000,0.000136,0.092926,-0.000206,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000013,0.000246,0.000184,0.000000,0.000134,0.092722,-0.000203,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000016,0.000013,0.000247,0.000036,0.000000,0.000131,0.092522,-0.000200,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000516,0.000020,0.000037,0.000020,0.000232,0.000016,0.000013,0.000268,0.000000,0.000000,0.000129,0.092797,0.000275,1.000000,0.000017 +195,2022-08-09 03:00:00,0.000205,0.000013,0.000006,0.000013,0.000233,0.000015,0.000013,0.000261,0.000000,0.000000,0.000127,0.092792,-0.000006,1.000000,0.000010 +196,2022-08-09 04:00:00,0.000000,0.000009,0.000000,0.000009,0.000234,0.000015,0.000013,0.000258,0.000000,0.000000,0.000125,0.092590,-0.000201,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000235,0.000015,0.000013,0.000251,0.000000,0.000000,0.000123,0.092392,-0.000199,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000000,0.000000,0.000121,0.092196,-0.000196,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000252,0.000000,0.000000,0.000120,0.092002,-0.000193,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000014,0.000013,0.000253,0.000000,0.000000,0.000118,0.091812,-0.000191,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000012,0.000254,0.000000,0.000000,0.000116,0.091624,-0.000188,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000000,0.000000,0.000115,0.091438,-0.000185,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000255,0.000000,0.000000,0.000113,0.091256,-0.000183,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000013,0.000012,0.000256,0.000000,0.000000,0.000111,0.091075,-0.000180,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000013,0.000012,0.000257,0.000000,0.000000,0.000110,0.090897,-0.000178,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000013,0.000012,0.000258,0.000103,0.000000,0.000108,0.090722,-0.000176,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620890.csv b/test/channel_loss/channel_forcing/et/cat-2620890.csv new file mode 100644 index 000000000..d2e5778be --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620890.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000178,0.000000,0.000000,0.000000,0.000000,0.001529,0.000780,0.001529,0.000175,0.000175,0.010848,0.426171,-0.004851,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001423,0.000767,0.001423,0.000045,0.000045,0.010193,0.421352,-0.004819,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001331,0.000755,0.001331,0.000000,0.000000,0.009616,0.416656,-0.004696,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001251,0.000742,0.001251,0.000000,0.000000,0.009108,0.412037,-0.004619,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001181,0.000730,0.001182,0.000000,0.000000,0.008657,0.407494,-0.004543,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001120,0.000718,0.001120,0.000000,0.000000,0.008255,0.403025,-0.004469,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001066,0.000707,0.001066,0.000000,0.000000,0.007896,0.398630,-0.004396,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001017,0.000695,0.001018,0.000000,0.000000,0.007574,0.394306,-0.004324,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000974,0.000684,0.000975,0.000000,0.000000,0.007283,0.390053,-0.004253,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000935,0.000672,0.000937,0.000000,0.000000,0.007020,0.385870,-0.004183,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000901,0.000661,0.000902,0.000000,0.000000,0.006781,0.381755,-0.004115,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000869,0.000651,0.000871,0.000000,0.000000,0.006563,0.377708,-0.004047,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000840,0.000640,0.000842,0.000000,0.000000,0.006363,0.373727,-0.003981,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000813,0.000629,0.000816,0.000000,0.000000,0.006179,0.369812,-0.003916,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000789,0.000619,0.000792,0.000122,0.000122,0.006009,0.365841,-0.003971,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000767,0.000608,0.000770,0.000348,0.000348,0.005850,0.361711,-0.004129,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000745,0.000596,0.000749,0.000520,0.000520,0.005701,0.357481,-0.004230,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000726,0.000585,0.000730,0.000660,0.000660,0.005560,0.353183,-0.004298,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000707,0.000574,0.000712,0.000639,0.000639,0.005427,0.348975,-0.004208,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000080,0.000000,0.000000,0.000000,0.000006,0.000689,0.000563,0.000695,0.000563,0.000563,0.005301,0.344989,-0.003986,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000080,0.000000,0.000000,0.000000,0.000006,0.000672,0.000553,0.000679,0.000494,0.000494,0.005181,0.341136,-0.003852,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000315,0.000000,0.000000,0.000000,0.000007,0.000657,0.000543,0.000663,0.000379,0.000379,0.005068,0.337692,-0.003445,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000082,0.000000,0.000000,0.000000,0.000007,0.000642,0.000534,0.000649,0.000318,0.000318,0.004960,0.334134,-0.003558,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000169,0.000000,0.000000,0.000000,0.000008,0.000628,0.000525,0.000636,0.000252,0.000252,0.004857,0.330786,-0.003348,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000140,0.000000,0.000000,0.000000,0.000009,0.000614,0.000516,0.000623,0.000163,0.000163,0.004759,0.327551,-0.003235,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000548,0.000010,0.000018,0.000010,0.000009,0.000601,0.000509,0.000620,0.000064,0.000064,0.004667,0.324850,-0.002700,1.000000,0.000008 +26,2022-08-02 02:00:00,0.000983,0.000043,0.000071,0.000043,0.000010,0.000590,0.000503,0.000643,0.000000,0.000000,0.004581,0.322633,-0.002217,1.000000,0.000035 +27,2022-08-02 03:00:00,0.000934,0.000056,0.000064,0.000056,0.000011,0.000578,0.000497,0.000645,0.000000,0.000000,0.004499,0.320410,-0.002223,1.000000,0.000043 +28,2022-08-02 04:00:00,0.000950,0.000066,0.000066,0.000066,0.000011,0.000568,0.000491,0.000645,0.000000,0.000000,0.004423,0.318238,-0.002172,1.000000,0.000042 +29,2022-08-02 05:00:00,0.000566,0.000042,0.000024,0.000042,0.000012,0.000558,0.000485,0.000612,0.000000,0.000000,0.004350,0.315765,-0.002473,1.000000,0.000024 +30,2022-08-02 06:00:00,0.000466,0.000028,0.000016,0.000028,0.000013,0.000548,0.000478,0.000589,0.000000,0.000000,0.004279,0.313241,-0.002524,1.000000,0.000012 +31,2022-08-02 07:00:00,0.000000,0.000009,0.000000,0.000009,0.000014,0.000539,0.000470,0.000562,0.000000,0.000000,0.004210,0.310316,-0.002925,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000015,0.000530,0.000462,0.000548,0.000000,0.000000,0.004143,0.307440,-0.002877,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000521,0.000455,0.000536,0.000000,0.000000,0.004077,0.304610,-0.002830,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000512,0.000447,0.000528,0.000000,0.000000,0.004012,0.301827,-0.002783,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000504,0.000440,0.000521,0.000000,0.000000,0.003948,0.299089,-0.002738,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000495,0.000433,0.000513,0.000000,0.000000,0.003886,0.296396,-0.002693,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000487,0.000426,0.000506,0.000000,0.000000,0.003825,0.293747,-0.002649,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000479,0.000419,0.000499,0.000107,0.000107,0.003764,0.291037,-0.002711,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000471,0.000411,0.000492,0.000324,0.000324,0.003704,0.288157,-0.002879,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000463,0.000403,0.000484,0.000481,0.000481,0.003644,0.285170,-0.002987,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000455,0.000395,0.000477,0.000614,0.000614,0.003584,0.282102,-0.003069,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000426,0.000000,0.000000,0.000000,0.000024,0.000447,0.000387,0.000470,0.000719,0.000719,0.003524,0.279399,-0.002703,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000072,0.000000,0.000000,0.000000,0.000024,0.000439,0.000380,0.000464,0.000650,0.000650,0.003465,0.276460,-0.002939,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000431,0.000372,0.000457,0.000561,0.000561,0.003405,0.273586,-0.002874,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000423,0.000364,0.000450,0.000493,0.000493,0.003347,0.270827,-0.002760,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000416,0.000357,0.000443,0.000407,0.000407,0.003288,0.268196,-0.002631,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000408,0.000351,0.000437,0.000310,0.000310,0.003231,0.265704,-0.002491,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000401,0.000345,0.000430,0.000170,0.000170,0.003175,0.263391,-0.002313,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000393,0.000339,0.000424,0.000024,0.000024,0.003120,0.261260,-0.002132,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000386,0.000333,0.000418,0.000000,0.000000,0.003067,0.259187,-0.002073,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000380,0.000328,0.000412,0.000000,0.000000,0.003015,0.257147,-0.002039,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000373,0.000322,0.000407,0.000000,0.000000,0.002965,0.255142,-0.002006,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000367,0.000317,0.000401,0.000000,0.000000,0.002915,0.253169,-0.001973,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000360,0.000312,0.000396,0.000000,0.000000,0.002867,0.251228,-0.001941,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000354,0.000307,0.000391,0.000000,0.000000,0.002820,0.249319,-0.001909,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000348,0.000302,0.000386,0.000000,0.000000,0.002773,0.247442,-0.001878,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000342,0.000297,0.000381,0.000000,0.000000,0.002728,0.245595,-0.001847,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000336,0.000292,0.000377,0.000000,0.000000,0.002684,0.243778,-0.001817,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000331,0.000287,0.000372,0.000000,0.000000,0.002640,0.241991,-0.001787,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000325,0.000283,0.000368,0.000000,0.000000,0.002598,0.240234,-0.001758,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000320,0.000278,0.000363,0.000000,0.000000,0.002556,0.238505,-0.001729,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000314,0.000273,0.000359,0.000118,0.000118,0.002514,0.236688,-0.001817,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000309,0.000268,0.000355,0.000355,0.000355,0.002473,0.234668,-0.002020,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000304,0.000262,0.000351,0.000526,0.000526,0.002431,0.232514,-0.002155,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000298,0.000256,0.000346,0.000659,0.000659,0.002389,0.230263,-0.002251,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000293,0.000250,0.000342,0.000671,0.000671,0.002346,0.228037,-0.002226,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000287,0.000244,0.000338,0.000603,0.000603,0.002303,0.225915,-0.002122,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001778,0.000054,0.000099,0.000054,0.000052,0.000282,0.000243,0.000388,0.000509,0.000509,0.002264,0.225572,-0.000343,1.000000,0.000044 +69,2022-08-03 21:00:00,0.000209,0.000025,0.000000,0.000025,0.000053,0.000277,0.000239,0.000355,0.000449,0.000449,0.002226,0.223848,-0.001724,1.000000,0.000020 +70,2022-08-03 22:00:00,0.000023,0.000020,0.000000,0.000020,0.000054,0.000272,0.000234,0.000346,0.000371,0.000371,0.002187,0.222045,-0.001803,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000055,0.000267,0.000229,0.000323,0.000280,0.000280,0.002149,0.220401,-0.001644,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000263,0.000225,0.000319,0.000167,0.000167,0.002112,0.218833,-0.001568,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000258,0.000221,0.000316,0.000035,0.000035,0.002075,0.217421,-0.001413,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000253,0.000218,0.000312,0.000000,0.000000,0.002040,0.216066,-0.001355,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000249,0.000214,0.000309,0.000000,0.000000,0.002005,0.214733,-0.001333,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000010,0.000000,0.000000,0.000000,0.000061,0.000245,0.000211,0.000306,0.000000,0.000000,0.001971,0.213432,-0.001301,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000076,0.000000,0.000000,0.000000,0.000062,0.000240,0.000208,0.000303,0.000000,0.000000,0.001938,0.212217,-0.001215,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000236,0.000204,0.000300,0.000000,0.000000,0.001906,0.210947,-0.001270,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000232,0.000201,0.000297,0.000000,0.000000,0.001874,0.209698,-0.001249,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000228,0.000197,0.000295,0.000000,0.000000,0.001844,0.208470,-0.001228,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000225,0.000194,0.000292,0.000000,0.000000,0.001813,0.207261,-0.001208,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000221,0.000191,0.000289,0.000000,0.000000,0.001783,0.206073,-0.001189,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000217,0.000188,0.000287,0.000000,0.000000,0.001754,0.204904,-0.001169,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000213,0.000185,0.000284,0.000000,0.000000,0.001726,0.203754,-0.001150,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000210,0.000182,0.000282,0.000000,0.000000,0.001698,0.202623,-0.001131,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000206,0.000179,0.000280,0.000115,0.000115,0.001670,0.201397,-0.001226,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000203,0.000175,0.000277,0.000353,0.000353,0.001642,0.199957,-0.001440,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000199,0.000170,0.000275,0.000527,0.000527,0.001613,0.198369,-0.001588,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000195,0.000166,0.000272,0.000667,0.000667,0.001583,0.196670,-0.001699,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000192,0.000161,0.000270,0.000724,0.000724,0.001553,0.194943,-0.001727,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000188,0.000157,0.000267,0.000659,0.000659,0.001522,0.193308,-0.001635,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000184,0.000153,0.000264,0.000573,0.000573,0.001491,0.191784,-0.001524,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000180,0.000149,0.000262,0.000490,0.000490,0.001460,0.190366,-0.001417,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000176,0.000146,0.000259,0.000399,0.000399,0.001430,0.189062,-0.001305,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000006,0.000000,0.000000,0.000000,0.000084,0.000172,0.000142,0.000257,0.000311,0.000311,0.001400,0.187872,-0.001190,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000015,0.000000,0.000000,0.000000,0.000086,0.000169,0.000140,0.000254,0.000181,0.000181,0.001370,0.186838,-0.001033,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000006,0.000000,0.000000,0.000000,0.000087,0.000165,0.000137,0.000252,0.000042,0.000042,0.001342,0.185949,-0.000889,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000162,0.000135,0.000250,0.000000,0.000000,0.001316,0.185110,-0.000839,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000159,0.000133,0.000248,0.000000,0.000000,0.001290,0.184284,-0.000826,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000155,0.000131,0.000246,0.000000,0.000000,0.001265,0.183472,-0.000812,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000152,0.000128,0.000244,0.000000,0.000000,0.001241,0.182673,-0.000799,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000150,0.000126,0.000242,0.000000,0.000000,0.001218,0.181888,-0.000786,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000147,0.000124,0.000241,0.000000,0.000000,0.001195,0.181115,-0.000773,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000144,0.000122,0.000239,0.000000,0.000000,0.001173,0.180355,-0.000760,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000141,0.000120,0.000238,0.000000,0.000000,0.001152,0.179607,-0.000748,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000139,0.000118,0.000236,0.000000,0.000000,0.001131,0.178871,-0.000736,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000136,0.000116,0.000235,0.000000,0.000000,0.001111,0.178148,-0.000723,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000134,0.000114,0.000234,0.000000,0.000000,0.001092,0.177436,-0.000712,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000132,0.000113,0.000233,0.000000,0.000000,0.001073,0.176736,-0.000700,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000129,0.000110,0.000231,0.000127,0.000127,0.001054,0.175923,-0.000814,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000127,0.000108,0.000230,0.000361,0.000361,0.001035,0.174892,-0.001031,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000124,0.000104,0.000229,0.000532,0.000532,0.001015,0.173711,-0.001181,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000122,0.000101,0.000228,0.000669,0.000669,0.000994,0.172414,-0.001297,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000119,0.000097,0.000226,0.000689,0.000689,0.000973,0.171119,-0.001296,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000108,0.000116,0.000094,0.000224,0.000624,0.000624,0.000951,0.169970,-0.001148,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000101,0.000000,0.000000,0.000000,0.000109,0.000114,0.000092,0.000223,0.000540,0.000540,0.000929,0.168961,-0.001009,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000079,0.000000,0.000000,0.000000,0.000110,0.000111,0.000089,0.000221,0.000436,0.000436,0.000907,0.168049,-0.000913,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000112,0.000108,0.000087,0.000220,0.000362,0.000362,0.000886,0.167270,-0.000779,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000161,0.000000,0.000000,0.000000,0.000113,0.000106,0.000085,0.000219,0.000281,0.000281,0.000865,0.166619,-0.000651,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000074,0.000000,0.000000,0.000000,0.000114,0.000103,0.000084,0.000217,0.000170,0.000170,0.000846,0.166002,-0.000617,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000463,0.000005,0.000010,0.000005,0.000115,0.000101,0.000083,0.000222,0.000059,0.000059,0.000828,0.165878,-0.000124,1.000000,0.000004 +122,2022-08-06 02:00:00,0.000834,0.000025,0.000040,0.000025,0.000116,0.000099,0.000084,0.000240,0.000000,0.000000,0.000813,0.166148,0.000270,1.000000,0.000020 +123,2022-08-06 03:00:00,0.000709,0.000028,0.000029,0.000028,0.000117,0.000098,0.000085,0.000243,0.000000,0.000000,0.000800,0.166302,0.000153,1.000000,0.000021 +124,2022-08-06 04:00:00,0.000384,0.000020,0.000009,0.000020,0.000118,0.000096,0.000084,0.000235,0.000000,0.000000,0.000788,0.166153,-0.000148,1.000000,0.000010 +125,2022-08-06 05:00:00,0.000376,0.000013,0.000008,0.000013,0.000120,0.000095,0.000084,0.000227,0.000000,0.000000,0.000777,0.166000,-0.000154,1.000000,0.000006 +126,2022-08-06 06:00:00,0.000476,0.000011,0.000013,0.000011,0.000121,0.000094,0.000084,0.000226,0.000000,0.000000,0.000767,0.165942,-0.000058,1.000000,0.000008 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000122,0.000092,0.000082,0.000219,0.000000,0.000000,0.000757,0.165430,-0.000512,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000123,0.000091,0.000081,0.000217,0.000000,0.000000,0.000746,0.164927,-0.000503,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000090,0.000080,0.000214,0.000000,0.000000,0.000736,0.164432,-0.000495,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000089,0.000078,0.000214,0.000000,0.000000,0.000726,0.163945,-0.000487,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000087,0.000077,0.000214,0.000000,0.000000,0.000716,0.163466,-0.000479,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000086,0.000076,0.000213,0.000000,0.000000,0.000705,0.162995,-0.000471,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000085,0.000074,0.000213,0.000000,0.000000,0.000695,0.162532,-0.000463,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000083,0.000073,0.000213,0.000109,0.000109,0.000685,0.161969,-0.000563,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000082,0.000071,0.000213,0.000337,0.000337,0.000673,0.161191,-0.000778,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000081,0.000068,0.000212,0.000502,0.000502,0.000661,0.160263,-0.000927,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000079,0.000066,0.000212,0.000643,0.000643,0.000648,0.159212,-0.001051,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000077,0.000063,0.000211,0.000729,0.000729,0.000633,0.158094,-0.001118,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000075,0.000060,0.000210,0.000670,0.000670,0.000618,0.157052,-0.001042,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000073,0.000057,0.000209,0.000579,0.000579,0.000602,0.156116,-0.000935,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000071,0.000055,0.000208,0.000501,0.000501,0.000586,0.155273,-0.000843,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000069,0.000053,0.000207,0.000407,0.000407,0.000569,0.154536,-0.000737,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000067,0.000051,0.000207,0.000312,0.000312,0.000553,0.153904,-0.000632,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000065,0.000050,0.000206,0.000169,0.000169,0.000538,0.153423,-0.000481,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000064,0.000049,0.000205,0.000034,0.000034,0.000523,0.153083,-0.000340,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000062,0.000048,0.000204,0.000000,0.000000,0.000510,0.152782,-0.000301,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000060,0.000048,0.000204,0.000000,0.000000,0.000497,0.152486,-0.000296,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000059,0.000047,0.000203,0.000000,0.000000,0.000485,0.152195,-0.000291,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000058,0.000046,0.000203,0.000000,0.000000,0.000473,0.151908,-0.000286,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000056,0.000045,0.000203,0.000000,0.000000,0.000462,0.151627,-0.000282,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000055,0.000045,0.000202,0.000000,0.000000,0.000452,0.151349,-0.000277,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000054,0.000044,0.000202,0.000000,0.000000,0.000442,0.151077,-0.000273,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000053,0.000043,0.000202,0.000000,0.000000,0.000433,0.150809,-0.000268,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000051,0.000042,0.000202,0.000000,0.000000,0.000424,0.150545,-0.000264,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000050,0.000042,0.000202,0.000000,0.000000,0.000415,0.150286,-0.000259,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000049,0.000041,0.000202,0.000000,0.000000,0.000406,0.150030,-0.000255,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000048,0.000040,0.000202,0.000000,0.000000,0.000398,0.149780,-0.000251,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000047,0.000039,0.000202,0.000106,0.000106,0.000390,0.149429,-0.000351,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000046,0.000038,0.000202,0.000335,0.000335,0.000382,0.148858,-0.000570,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000045,0.000036,0.000202,0.000506,0.000506,0.000373,0.148129,-0.000729,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000044,0.000034,0.000201,0.000641,0.000641,0.000362,0.147279,-0.000850,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000031,0.000201,0.000731,0.000731,0.000351,0.146354,-0.000925,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000041,0.000029,0.000200,0.000669,0.000669,0.000339,0.145505,-0.000848,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000040,0.000027,0.000200,0.000574,0.000574,0.000326,0.144764,-0.000741,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000038,0.000025,0.000199,0.000495,0.000495,0.000313,0.144113,-0.000652,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000036,0.000024,0.000198,0.000408,0.000408,0.000300,0.143558,-0.000555,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000035,0.000022,0.000198,0.000309,0.000309,0.000288,0.143109,-0.000448,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000033,0.000022,0.000197,0.000142,0.000142,0.000276,0.142832,-0.000277,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000032,0.000021,0.000197,0.000006,0.000006,0.000265,0.142694,-0.000138,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000031,0.000021,0.000197,0.000000,0.000000,0.000255,0.142563,-0.000131,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000030,0.000021,0.000196,0.000000,0.000000,0.000246,0.142434,-0.000129,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000029,0.000020,0.000196,0.000000,0.000000,0.000238,0.142308,-0.000127,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000028,0.000020,0.000196,0.000000,0.000000,0.000230,0.142183,-0.000124,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000027,0.000020,0.000196,0.000000,0.000000,0.000223,0.142061,-0.000122,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000026,0.000019,0.000196,0.000000,0.000000,0.000216,0.141940,-0.000120,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000025,0.000019,0.000196,0.000000,0.000000,0.000210,0.141822,-0.000118,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000025,0.000019,0.000196,0.000000,0.000000,0.000204,0.141705,-0.000116,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000024,0.000018,0.000197,0.000000,0.000000,0.000198,0.141591,-0.000115,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000023,0.000018,0.000197,0.000000,0.000000,0.000193,0.141478,-0.000113,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000023,0.000018,0.000197,0.000000,0.000000,0.000188,0.141367,-0.000111,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000022,0.000018,0.000197,0.000000,0.000000,0.000183,0.141258,-0.000109,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000022,0.000017,0.000198,0.000091,0.000091,0.000179,0.141062,-0.000196,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000021,0.000016,0.000198,0.000322,0.000322,0.000173,0.140641,-0.000420,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000020,0.000014,0.000198,0.000495,0.000495,0.000167,0.140057,-0.000584,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000019,0.000012,0.000198,0.000629,0.000629,0.000160,0.139351,-0.000706,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000018,0.000010,0.000198,0.000726,0.000726,0.000152,0.138561,-0.000790,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000017,0.000008,0.000198,0.000644,0.000644,0.000143,0.137864,-0.000697,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000016,0.000007,0.000197,0.000557,0.000557,0.000134,0.137264,-0.000600,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000015,0.000005,0.000197,0.000496,0.000496,0.000124,0.136735,-0.000529,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000014,0.000004,0.000196,0.000404,0.000404,0.000115,0.136305,-0.000431,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000013,0.000003,0.000196,0.000307,0.000307,0.000105,0.135977,-0.000328,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000012,0.000003,0.000196,0.000176,0.000176,0.000097,0.135783,-0.000194,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000011,0.000003,0.000196,0.000031,0.000031,0.000089,0.135735,-0.000048,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000661,0.000013,0.000025,0.000013,0.000186,0.000010,0.000004,0.000209,0.000000,0.000000,0.000083,0.136345,0.000610,1.000000,0.000011 +195,2022-08-09 03:00:00,0.000286,0.000009,0.000005,0.000009,0.000186,0.000009,0.000005,0.000205,0.000000,0.000000,0.000079,0.136595,0.000250,1.000000,0.000007 +196,2022-08-09 04:00:00,0.000000,0.000006,0.000000,0.000006,0.000187,0.000009,0.000005,0.000202,0.000000,0.000000,0.000074,0.136564,-0.000031,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000188,0.000009,0.000005,0.000197,0.000000,0.000000,0.000071,0.136534,-0.000030,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000008,0.000005,0.000197,0.000000,0.000000,0.000067,0.136504,-0.000030,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000008,0.000005,0.000197,0.000000,0.000000,0.000064,0.136474,-0.000029,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000007,0.000005,0.000198,0.000000,0.000000,0.000062,0.136446,-0.000029,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000007,0.000005,0.000198,0.000000,0.000000,0.000059,0.136417,-0.000028,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000080,0.000000,0.000000,0.000000,0.000192,0.000007,0.000005,0.000199,0.000000,0.000000,0.000057,0.136467,0.000050,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000007,0.000005,0.000199,0.000000,0.000000,0.000055,0.136439,-0.000029,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000006,0.000005,0.000199,0.000000,0.000000,0.000053,0.136410,-0.000028,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000006,0.000004,0.000200,0.000000,0.000000,0.000051,0.136382,-0.000028,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000006,0.000004,0.000200,0.000100,0.000100,0.000049,0.136257,-0.000126,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620891.csv b/test/channel_loss/channel_forcing/et/cat-2620891.csv new file mode 100644 index 000000000..ec1330579 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620891.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000134,0.000000,0.000000,0.000000,0.000000,0.001466,0.000327,0.001466,0.000171,0.000171,0.010458,0.425961,-0.004831,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001308,0.000322,0.001308,0.000041,0.000041,0.009472,0.421192,-0.004769,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001175,0.000318,0.001175,0.000000,0.000000,0.008615,0.416529,-0.004663,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001061,0.000313,0.001061,0.000000,0.000000,0.007867,0.411930,-0.004599,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000964,0.000309,0.000964,0.000000,0.000000,0.007212,0.407395,-0.004535,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000880,0.000305,0.000880,0.000000,0.000000,0.006637,0.402922,-0.004473,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000807,0.000301,0.000807,0.000000,0.000000,0.006131,0.398510,-0.004411,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000743,0.000296,0.000744,0.000000,0.000000,0.005685,0.394160,-0.004350,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000688,0.000292,0.000689,0.000000,0.000000,0.005289,0.389869,-0.004291,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000639,0.000288,0.000640,0.000000,0.000000,0.004939,0.385638,-0.004231,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000596,0.000284,0.000598,0.000000,0.000000,0.004627,0.381465,-0.004173,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000558,0.000280,0.000560,0.000000,0.000000,0.004350,0.377349,-0.004116,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000524,0.000277,0.000527,0.000000,0.000000,0.004102,0.373290,-0.004059,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000494,0.000273,0.000497,0.000000,0.000000,0.003880,0.369287,-0.004003,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000468,0.000269,0.000471,0.000119,0.000119,0.003681,0.365222,-0.004065,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000444,0.000265,0.000448,0.000343,0.000343,0.003502,0.360992,-0.004230,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000422,0.000261,0.000427,0.000520,0.000520,0.003340,0.356646,-0.004346,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000403,0.000257,0.000408,0.000659,0.000659,0.003194,0.352223,-0.004423,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000386,0.000252,0.000391,0.000640,0.000640,0.003060,0.347879,-0.004344,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000097,0.000000,0.000000,0.000000,0.000006,0.000370,0.000248,0.000376,0.000542,0.000542,0.002939,0.343787,-0.004092,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000064,0.000000,0.000000,0.000000,0.000007,0.000355,0.000245,0.000362,0.000485,0.000485,0.002829,0.339776,-0.004011,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000354,0.000000,0.000000,0.000000,0.000007,0.000342,0.000241,0.000350,0.000377,0.000377,0.002728,0.336212,-0.003564,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000065,0.000000,0.000000,0.000000,0.000008,0.000330,0.000238,0.000338,0.000318,0.000318,0.002635,0.332470,-0.003741,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000303,0.000000,0.000001,0.000000,0.000009,0.000319,0.000234,0.000328,0.000247,0.000247,0.002551,0.329084,-0.003386,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000229,0.000001,0.000001,0.000001,0.000010,0.000309,0.000231,0.000319,0.000164,0.000164,0.002473,0.325754,-0.003331,1.000000,0.000001 +25,2022-08-02 01:00:00,0.000628,0.000032,0.000058,0.000032,0.000010,0.000300,0.000229,0.000343,0.000065,0.000065,0.002402,0.322904,-0.002850,1.000000,0.000026 +26,2022-08-02 02:00:00,0.001449,0.000196,0.000330,0.000196,0.000011,0.000291,0.000227,0.000499,0.000000,0.000000,0.002337,0.320698,-0.002206,1.000000,0.000160 +27,2022-08-02 03:00:00,0.001439,0.000273,0.000325,0.000273,0.000012,0.000284,0.000224,0.000569,0.000000,0.000000,0.002277,0.318518,-0.002180,1.000000,0.000212 +28,2022-08-02 04:00:00,0.001257,0.000287,0.000255,0.000287,0.000013,0.000277,0.000222,0.000577,0.000000,0.000000,0.002223,0.316257,-0.002260,1.000000,0.000180 +29,2022-08-02 05:00:00,0.000488,0.000153,0.000044,0.000153,0.000014,0.000270,0.000220,0.000437,0.000000,0.000000,0.002172,0.313478,-0.002779,1.000000,0.000071 +30,2022-08-02 06:00:00,0.000327,0.000073,0.000020,0.000073,0.000015,0.000264,0.000217,0.000352,0.000000,0.000000,0.002125,0.310602,-0.002876,1.000000,0.000018 +31,2022-08-02 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000015,0.000259,0.000214,0.000288,0.000000,0.000000,0.002080,0.307463,-0.003139,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000016,0.000253,0.000211,0.000274,0.000000,0.000000,0.002038,0.304367,-0.003096,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000248,0.000208,0.000265,0.000000,0.000000,0.001998,0.301314,-0.003053,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000243,0.000205,0.000261,0.000000,0.000000,0.001960,0.298303,-0.003011,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000239,0.000202,0.000258,0.000000,0.000000,0.001924,0.295333,-0.002970,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000234,0.000200,0.000254,0.000000,0.000000,0.001889,0.292404,-0.002929,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000230,0.000197,0.000251,0.000000,0.000000,0.001856,0.289516,-0.002888,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000226,0.000194,0.000248,0.000107,0.000107,0.001824,0.286562,-0.002954,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000222,0.000191,0.000245,0.000316,0.000316,0.001793,0.283442,-0.003120,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000218,0.000188,0.000243,0.000473,0.000473,0.001763,0.280211,-0.003231,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000214,0.000185,0.000240,0.000603,0.000603,0.001733,0.276896,-0.003315,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000536,0.000000,0.000000,0.000000,0.000027,0.000211,0.000182,0.000237,0.000705,0.000705,0.001705,0.274054,-0.002842,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000028,0.000207,0.000179,0.000235,0.000624,0.000624,0.001676,0.270901,-0.003153,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000002,0.000000,0.000000,0.000000,0.000029,0.000204,0.000176,0.000233,0.000552,0.000552,0.001649,0.267767,-0.003134,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000200,0.000173,0.000230,0.000490,0.000490,0.001622,0.264736,-0.003032,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000197,0.000170,0.000228,0.000409,0.000409,0.001595,0.261825,-0.002911,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000194,0.000168,0.000226,0.000305,0.000305,0.001569,0.259057,-0.002768,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000191,0.000165,0.000224,0.000166,0.000166,0.001544,0.256464,-0.002593,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000187,0.000163,0.000222,0.000021,0.000021,0.001520,0.254050,-0.002414,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000184,0.000161,0.000221,0.000000,0.000000,0.001496,0.251690,-0.002360,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000182,0.000159,0.000219,0.000000,0.000000,0.001473,0.249362,-0.002327,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000179,0.000156,0.000217,0.000000,0.000000,0.001451,0.247067,-0.002295,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000176,0.000154,0.000216,0.000000,0.000000,0.001429,0.244803,-0.002264,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000173,0.000152,0.000214,0.000000,0.000000,0.001408,0.242571,-0.002233,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000171,0.000150,0.000213,0.000000,0.000000,0.001387,0.240369,-0.002202,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000168,0.000148,0.000212,0.000000,0.000000,0.001367,0.238198,-0.002171,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000166,0.000146,0.000211,0.000000,0.000000,0.001347,0.236056,-0.002141,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000163,0.000144,0.000210,0.000000,0.000000,0.001328,0.233944,-0.002112,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000161,0.000142,0.000209,0.000000,0.000000,0.001309,0.231861,-0.002083,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000159,0.000140,0.000208,0.000000,0.000000,0.001290,0.229807,-0.002054,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000156,0.000138,0.000207,0.000000,0.000000,0.001272,0.227781,-0.002026,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000154,0.000136,0.000206,0.000116,0.000116,0.001254,0.225669,-0.002112,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000152,0.000134,0.000205,0.000352,0.000352,0.001236,0.223353,-0.002316,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000150,0.000131,0.000204,0.000525,0.000525,0.001218,0.220897,-0.002455,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000147,0.000129,0.000203,0.000658,0.000658,0.001199,0.218345,-0.002552,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000145,0.000127,0.000202,0.000671,0.000671,0.001181,0.215816,-0.002529,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000143,0.000124,0.000201,0.000585,0.000585,0.001163,0.213406,-0.002410,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002590,0.000299,0.000543,0.000299,0.000060,0.000141,0.000124,0.000499,0.000509,0.000509,0.001146,0.213123,-0.000282,1.000000,0.000244 +69,2022-08-03 21:00:00,0.000252,0.000136,0.000000,0.000136,0.000061,0.000139,0.000122,0.000336,0.000453,0.000453,0.001130,0.211129,-0.001995,1.000000,0.000109 +70,2022-08-03 22:00:00,0.000000,0.000109,0.000000,0.000109,0.000063,0.000137,0.000120,0.000308,0.000372,0.000372,0.001113,0.208993,-0.002136,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000064,0.000135,0.000118,0.000199,0.000286,0.000286,0.001097,0.207035,-0.001959,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000133,0.000117,0.000198,0.000171,0.000171,0.001081,0.205154,-0.001881,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000131,0.000115,0.000198,0.000032,0.000032,0.001065,0.203436,-0.001718,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000001,0.000000,0.000000,0.000000,0.000068,0.000129,0.000113,0.000197,0.000000,0.000000,0.001050,0.201774,-0.001662,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000127,0.000112,0.000197,0.000000,0.000000,0.001035,0.200135,-0.001640,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000047,0.000000,0.000000,0.000000,0.000071,0.000125,0.000110,0.000196,0.000000,0.000000,0.001020,0.198564,-0.001571,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000108,0.000001,0.000002,0.000001,0.000073,0.000123,0.000109,0.000197,0.000000,0.000000,0.001006,0.197073,-0.001491,1.000000,0.000001 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000074,0.000121,0.000107,0.000196,0.000000,0.000000,0.000992,0.195498,-0.001575,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000120,0.000106,0.000196,0.000000,0.000000,0.000978,0.193945,-0.001553,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000118,0.000104,0.000195,0.000000,0.000000,0.000964,0.192413,-0.001532,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000116,0.000103,0.000195,0.000000,0.000000,0.000951,0.190903,-0.001511,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000115,0.000102,0.000195,0.000000,0.000000,0.000937,0.189413,-0.001490,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000113,0.000100,0.000195,0.000000,0.000000,0.000924,0.187943,-0.001469,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000112,0.000099,0.000194,0.000000,0.000000,0.000912,0.186494,-0.001449,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000110,0.000097,0.000194,0.000000,0.000000,0.000899,0.185065,-0.001429,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000108,0.000096,0.000194,0.000113,0.000113,0.000887,0.183544,-0.001521,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000107,0.000094,0.000194,0.000351,0.000351,0.000874,0.181809,-0.001735,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000105,0.000092,0.000194,0.000527,0.000527,0.000861,0.179925,-0.001885,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000104,0.000091,0.000194,0.000668,0.000668,0.000848,0.177928,-0.001997,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000102,0.000089,0.000194,0.000720,0.000720,0.000835,0.175907,-0.002021,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000100,0.000087,0.000194,0.000643,0.000643,0.000821,0.173989,-0.001918,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000099,0.000085,0.000193,0.000575,0.000575,0.000808,0.172165,-0.001824,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000097,0.000083,0.000193,0.000502,0.000502,0.000794,0.170438,-0.001727,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000095,0.000082,0.000193,0.000408,0.000408,0.000781,0.168828,-0.001610,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000094,0.000080,0.000193,0.000311,0.000311,0.000768,0.167336,-0.001492,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000092,0.000079,0.000193,0.000178,0.000178,0.000755,0.165996,-0.001341,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000002,0.000000,0.000000,0.000000,0.000102,0.000091,0.000078,0.000193,0.000036,0.000036,0.000742,0.164815,-0.001180,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000089,0.000077,0.000193,0.000000,0.000000,0.000730,0.163685,-0.001130,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000088,0.000076,0.000193,0.000000,0.000000,0.000718,0.162570,-0.001115,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000086,0.000075,0.000193,0.000000,0.000000,0.000707,0.161471,-0.001099,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000085,0.000074,0.000193,0.000000,0.000000,0.000696,0.160387,-0.001084,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000084,0.000073,0.000193,0.000000,0.000000,0.000685,0.159317,-0.001069,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000082,0.000072,0.000193,0.000000,0.000000,0.000675,0.158263,-0.001055,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000081,0.000071,0.000194,0.000000,0.000000,0.000665,0.157223,-0.001040,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000080,0.000070,0.000194,0.000000,0.000000,0.000655,0.156197,-0.001026,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000079,0.000069,0.000194,0.000000,0.000000,0.000645,0.155185,-0.001012,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000077,0.000068,0.000194,0.000000,0.000000,0.000636,0.154188,-0.000998,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000076,0.000067,0.000195,0.000000,0.000000,0.000626,0.153204,-0.000984,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000075,0.000066,0.000195,0.000000,0.000000,0.000617,0.152233,-0.000970,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000074,0.000065,0.000196,0.000126,0.000126,0.000608,0.151153,-0.001081,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000073,0.000064,0.000196,0.000360,0.000360,0.000599,0.149855,-0.001297,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000072,0.000062,0.000196,0.000534,0.000534,0.000590,0.148405,-0.001451,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000071,0.000061,0.000197,0.000666,0.000666,0.000580,0.146843,-0.001561,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000069,0.000059,0.000197,0.000697,0.000697,0.000570,0.145274,-0.001570,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000068,0.000058,0.000197,0.000629,0.000629,0.000560,0.143854,-0.001419,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000130,0.000067,0.000057,0.000197,0.000554,0.000554,0.000550,0.142529,-0.001326,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000132,0.000066,0.000056,0.000197,0.000444,0.000444,0.000540,0.141329,-0.001199,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000094,0.000000,0.000000,0.000000,0.000133,0.000065,0.000055,0.000198,0.000370,0.000370,0.000530,0.140250,-0.001079,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000135,0.000063,0.000054,0.000198,0.000280,0.000280,0.000521,0.139369,-0.000882,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000062,0.000053,0.000198,0.000167,0.000167,0.000512,0.138486,-0.000882,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000514,0.000016,0.000030,0.000016,0.000138,0.000061,0.000053,0.000215,0.000056,0.000056,0.000503,0.138141,-0.000345,1.000000,0.000013 +122,2022-08-06 02:00:00,0.001096,0.000094,0.000156,0.000094,0.000139,0.000060,0.000053,0.000293,0.000000,0.000000,0.000496,0.138306,0.000164,1.000000,0.000076 +123,2022-08-06 03:00:00,0.000779,0.000090,0.000082,0.000090,0.000140,0.000059,0.000053,0.000290,0.000000,0.000000,0.000489,0.138227,-0.000078,1.000000,0.000068 +124,2022-08-06 04:00:00,0.000314,0.000060,0.000014,0.000060,0.000142,0.000059,0.000052,0.000260,0.000000,0.000000,0.000483,0.137759,-0.000468,1.000000,0.000023 +125,2022-08-06 05:00:00,0.000325,0.000028,0.000015,0.000028,0.000143,0.000058,0.000052,0.000230,0.000000,0.000000,0.000477,0.137307,-0.000452,1.000000,0.000010 +126,2022-08-06 06:00:00,0.000436,0.000022,0.000027,0.000022,0.000145,0.000057,0.000052,0.000224,0.000000,0.000000,0.000471,0.136959,-0.000348,1.000000,0.000015 +127,2022-08-06 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000146,0.000057,0.000051,0.000213,0.000000,0.000000,0.000465,0.136212,-0.000747,1.000000,0.000005 +128,2022-08-06 08:00:00,0.000000,0.000005,0.000000,0.000005,0.000148,0.000056,0.000050,0.000209,0.000000,0.000000,0.000460,0.135476,-0.000736,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000055,0.000049,0.000204,0.000000,0.000000,0.000454,0.134750,-0.000726,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000054,0.000049,0.000205,0.000000,0.000000,0.000448,0.134034,-0.000716,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000054,0.000048,0.000206,0.000000,0.000000,0.000442,0.133328,-0.000706,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000053,0.000047,0.000206,0.000000,0.000000,0.000437,0.132631,-0.000696,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000052,0.000047,0.000207,0.000000,0.000000,0.000431,0.131944,-0.000687,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000046,0.000208,0.000105,0.000105,0.000426,0.131164,-0.000781,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000051,0.000045,0.000208,0.000332,0.000332,0.000420,0.130170,-0.000994,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000050,0.000044,0.000209,0.000496,0.000496,0.000414,0.129028,-0.001142,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000049,0.000043,0.000210,0.000637,0.000637,0.000407,0.127763,-0.001265,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000049,0.000042,0.000210,0.000728,0.000728,0.000400,0.126425,-0.001338,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000048,0.000040,0.000211,0.000666,0.000666,0.000393,0.125167,-0.001258,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000047,0.000039,0.000211,0.000583,0.000583,0.000385,0.124008,-0.001159,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000046,0.000038,0.000212,0.000514,0.000514,0.000377,0.122933,-0.001075,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000045,0.000037,0.000212,0.000417,0.000417,0.000370,0.121969,-0.000964,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000044,0.000036,0.000212,0.000316,0.000316,0.000362,0.121117,-0.000851,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000036,0.000213,0.000171,0.000171,0.000355,0.120420,-0.000697,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000042,0.000035,0.000213,0.000031,0.000031,0.000348,0.119871,-0.000549,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000041,0.000035,0.000214,0.000000,0.000000,0.000341,0.119360,-0.000511,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000041,0.000034,0.000215,0.000000,0.000000,0.000335,0.118856,-0.000504,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000040,0.000034,0.000215,0.000000,0.000000,0.000329,0.118359,-0.000497,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000039,0.000033,0.000216,0.000000,0.000000,0.000323,0.117869,-0.000490,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000039,0.000033,0.000216,0.000000,0.000000,0.000318,0.117386,-0.000483,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000038,0.000032,0.000217,0.000000,0.000000,0.000312,0.116909,-0.000477,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000037,0.000032,0.000218,0.000000,0.000000,0.000307,0.116438,-0.000470,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000037,0.000032,0.000218,0.000000,0.000000,0.000302,0.115975,-0.000464,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000031,0.000219,0.000000,0.000000,0.000297,0.115517,-0.000457,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000031,0.000220,0.000000,0.000000,0.000292,0.115066,-0.000451,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000035,0.000030,0.000221,0.000000,0.000000,0.000288,0.114621,-0.000445,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000034,0.000030,0.000221,0.000000,0.000000,0.000283,0.114183,-0.000439,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000029,0.000222,0.000104,0.000104,0.000279,0.113648,-0.000535,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000033,0.000029,0.000223,0.000336,0.000336,0.000274,0.112891,-0.000757,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000028,0.000223,0.000509,0.000509,0.000269,0.111974,-0.000917,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000027,0.000224,0.000636,0.000636,0.000264,0.110945,-0.001030,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000026,0.000225,0.000733,0.000733,0.000259,0.109834,-0.001111,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000025,0.000225,0.000664,0.000664,0.000253,0.108806,-0.001028,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000030,0.000024,0.000226,0.000579,0.000579,0.000247,0.107877,-0.000930,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000023,0.000226,0.000501,0.000501,0.000241,0.107037,-0.000840,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000022,0.000227,0.000409,0.000409,0.000235,0.106299,-0.000738,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000028,0.000022,0.000227,0.000307,0.000307,0.000229,0.105672,-0.000627,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000002,0.000000,0.000000,0.000000,0.000201,0.000027,0.000021,0.000228,0.000139,0.000139,0.000223,0.105221,-0.000451,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000021,0.000228,0.000004,0.000004,0.000218,0.104908,-0.000313,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000021,0.000229,0.000000,0.000000,0.000213,0.104603,-0.000305,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000020,0.000230,0.000000,0.000000,0.000208,0.104302,-0.000301,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000020,0.000230,0.000000,0.000000,0.000204,0.104006,-0.000297,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000020,0.000231,0.000000,0.000000,0.000199,0.103713,-0.000292,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000024,0.000020,0.000232,0.000000,0.000000,0.000195,0.103425,-0.000288,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000023,0.000019,0.000232,0.000000,0.000000,0.000192,0.103141,-0.000284,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000019,0.000233,0.000000,0.000000,0.000188,0.102860,-0.000281,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000019,0.000234,0.000000,0.000000,0.000184,0.102583,-0.000277,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000022,0.000019,0.000234,0.000000,0.000000,0.000181,0.102311,-0.000273,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000022,0.000018,0.000235,0.000000,0.000000,0.000178,0.102041,-0.000269,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000021,0.000018,0.000236,0.000000,0.000000,0.000175,0.101776,-0.000265,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000021,0.000018,0.000237,0.000000,0.000000,0.000172,0.101514,-0.000262,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000018,0.000238,0.000088,0.000088,0.000169,0.101169,-0.000345,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000020,0.000017,0.000238,0.000319,0.000319,0.000166,0.100601,-0.000568,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000016,0.000239,0.000497,0.000497,0.000162,0.099866,-0.000736,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000015,0.000240,0.000629,0.000629,0.000159,0.099010,-0.000855,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000015,0.000240,0.000727,0.000727,0.000154,0.098070,-0.000940,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000018,0.000014,0.000241,0.000634,0.000634,0.000150,0.097234,-0.000836,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000013,0.000241,0.000555,0.000555,0.000145,0.096488,-0.000747,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000012,0.000242,0.000502,0.000502,0.000141,0.095804,-0.000684,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000012,0.000242,0.000409,0.000409,0.000136,0.095221,-0.000583,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000016,0.000012,0.000243,0.000305,0.000000,0.000132,0.095050,-0.000171,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000012,0.000243,0.000175,0.000000,0.000128,0.094881,-0.000169,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000011,0.000244,0.000028,0.000000,0.000124,0.094714,-0.000167,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000486,0.000017,0.000032,0.000017,0.000230,0.000015,0.000012,0.000262,0.000000,0.000000,0.000121,0.094998,0.000284,1.000000,0.000014 +195,2022-08-09 03:00:00,0.000200,0.000011,0.000006,0.000011,0.000231,0.000014,0.000012,0.000256,0.000000,0.000000,0.000119,0.095022,0.000024,1.000000,0.000009 +196,2022-08-09 04:00:00,0.000000,0.000008,0.000000,0.000008,0.000232,0.000014,0.000011,0.000254,0.000000,0.000000,0.000116,0.094853,-0.000169,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000233,0.000014,0.000011,0.000248,0.000000,0.000000,0.000114,0.094687,-0.000166,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000013,0.000011,0.000248,0.000000,0.000000,0.000111,0.094523,-0.000164,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000248,0.000000,0.000000,0.000109,0.094361,-0.000162,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000249,0.000000,0.000000,0.000107,0.094201,-0.000160,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000013,0.000011,0.000250,0.000000,0.000000,0.000105,0.094044,-0.000157,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000251,0.000000,0.000000,0.000103,0.093889,-0.000155,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000010,0.000251,0.000000,0.000000,0.000101,0.093736,-0.000153,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000010,0.000252,0.000000,0.000000,0.000100,0.093585,-0.000151,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000253,0.000000,0.000000,0.000098,0.093436,-0.000149,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000012,0.000010,0.000254,0.000097,0.000000,0.000096,0.093289,-0.000147,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620892.csv b/test/channel_loss/channel_forcing/et/cat-2620892.csv new file mode 100644 index 000000000..69457fc02 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620892.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000080,0.000000,0.000000,0.000000,0.000000,0.001439,0.000137,0.001439,0.000164,0.000164,0.010295,0.426242,-0.004865,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001261,0.000136,0.001261,0.000037,0.000037,0.009170,0.421486,-0.004756,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001110,0.000134,0.001111,0.000000,0.000000,0.008193,0.416827,-0.004658,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000983,0.000132,0.000983,0.000000,0.000000,0.007342,0.412228,-0.004599,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000131,0.000874,0.000000,0.000000,0.006599,0.407688,-0.004540,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000780,0.000129,0.000781,0.000000,0.000000,0.005947,0.403206,-0.004482,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000700,0.000127,0.000700,0.000000,0.000000,0.005375,0.398782,-0.004425,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000630,0.000126,0.000630,0.000000,0.000000,0.004871,0.394414,-0.004368,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000568,0.000124,0.000570,0.000000,0.000000,0.004427,0.390101,-0.004312,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000515,0.000122,0.000517,0.000000,0.000000,0.004034,0.385844,-0.004257,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000469,0.000121,0.000470,0.000000,0.000000,0.003686,0.381642,-0.004203,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000427,0.000119,0.000430,0.000000,0.000000,0.003378,0.377493,-0.004149,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000391,0.000118,0.000394,0.000000,0.000000,0.003104,0.373397,-0.004096,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000359,0.000116,0.000363,0.000000,0.000000,0.002861,0.369354,-0.004043,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000331,0.000115,0.000335,0.000116,0.000116,0.002645,0.365248,-0.004106,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000306,0.000113,0.000310,0.000337,0.000337,0.002451,0.360976,-0.004271,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000284,0.000112,0.000289,0.000513,0.000513,0.002279,0.356585,-0.004391,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000264,0.000110,0.000269,0.000648,0.000648,0.002124,0.352117,-0.004468,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000247,0.000108,0.000252,0.000633,0.000633,0.001986,0.347721,-0.004396,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000084,0.000000,0.000000,0.000000,0.000006,0.000231,0.000107,0.000237,0.000534,0.000534,0.001862,0.343562,-0.004159,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000096,0.000000,0.000000,0.000000,0.000007,0.000217,0.000105,0.000224,0.000477,0.000477,0.001751,0.339524,-0.004038,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000290,0.000000,0.000000,0.000000,0.000008,0.000204,0.000104,0.000212,0.000374,0.000374,0.001650,0.335831,-0.003693,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000117,0.000000,0.000000,0.000000,0.000009,0.000193,0.000102,0.000201,0.000311,0.000311,0.001560,0.332076,-0.003754,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000432,0.000010,0.000017,0.000010,0.000009,0.000182,0.000101,0.000201,0.000238,0.000238,0.001479,0.328736,-0.003341,1.000000,0.000008 +24,2022-08-02 00:00:00,0.000414,0.000020,0.000029,0.000020,0.000010,0.000173,0.000100,0.000203,0.000162,0.000162,0.001406,0.325484,-0.003251,1.000000,0.000016 +25,2022-08-02 01:00:00,0.000693,0.000094,0.000152,0.000094,0.000011,0.000165,0.000099,0.000270,0.000064,0.000064,0.001340,0.322526,-0.002959,1.000000,0.000074 +26,2022-08-02 02:00:00,0.001496,0.000396,0.000641,0.000396,0.000012,0.000157,0.000098,0.000566,0.000000,0.000000,0.001280,0.319977,-0.002549,1.000000,0.000319 +27,2022-08-02 03:00:00,0.001462,0.000530,0.000617,0.000530,0.000013,0.000151,0.000097,0.000693,0.000000,0.000000,0.001227,0.317451,-0.002526,1.000000,0.000406 +28,2022-08-02 04:00:00,0.001243,0.000543,0.000474,0.000543,0.000013,0.000145,0.000096,0.000701,0.000000,0.000000,0.001178,0.314882,-0.002569,1.000000,0.000337 +29,2022-08-02 05:00:00,0.000408,0.000280,0.000068,0.000280,0.000014,0.000139,0.000095,0.000433,0.000000,0.000000,0.001134,0.311922,-0.002960,1.000000,0.000126 +30,2022-08-02 06:00:00,0.000259,0.000128,0.000029,0.000128,0.000015,0.000134,0.000094,0.000277,0.000000,0.000000,0.001093,0.308892,-0.003030,1.000000,0.000027 +31,2022-08-02 07:00:00,0.000000,0.000021,0.000000,0.000021,0.000016,0.000129,0.000093,0.000167,0.000000,0.000000,0.001056,0.305674,-0.003218,1.000000,0.000006 +32,2022-08-02 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000017,0.000125,0.000091,0.000148,0.000000,0.000000,0.001022,0.302497,-0.003177,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000121,0.000090,0.000140,0.000000,0.000000,0.000991,0.299360,-0.003136,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000118,0.000089,0.000137,0.000000,0.000000,0.000962,0.296264,-0.003096,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000115,0.000088,0.000135,0.000000,0.000000,0.000936,0.293207,-0.003057,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000111,0.000087,0.000133,0.000000,0.000000,0.000911,0.290190,-0.003018,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000109,0.000086,0.000131,0.000000,0.000000,0.000888,0.287211,-0.002979,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000106,0.000085,0.000129,0.000106,0.000106,0.000867,0.284165,-0.003045,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000103,0.000083,0.000128,0.000310,0.000310,0.000847,0.280957,-0.003208,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000101,0.000082,0.000127,0.000466,0.000466,0.000828,0.277636,-0.003321,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000099,0.000081,0.000126,0.000597,0.000597,0.000810,0.274228,-0.003408,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000444,0.000000,0.000000,0.000000,0.000028,0.000097,0.000080,0.000125,0.000696,0.000696,0.000792,0.271205,-0.003023,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000029,0.000095,0.000078,0.000124,0.000607,0.000607,0.000776,0.267968,-0.003237,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000093,0.000077,0.000123,0.000540,0.000540,0.000761,0.264801,-0.003166,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000091,0.000076,0.000123,0.000482,0.000482,0.000746,0.261672,-0.003130,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000089,0.000075,0.000122,0.000401,0.000401,0.000732,0.258661,-0.003010,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000088,0.000074,0.000122,0.000296,0.000296,0.000718,0.255793,-0.002868,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000086,0.000073,0.000121,0.000160,0.000160,0.000705,0.253096,-0.002697,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000084,0.000072,0.000121,0.000018,0.000018,0.000692,0.250574,-0.002522,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000083,0.000071,0.000121,0.000000,0.000000,0.000681,0.248101,-0.002472,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000082,0.000070,0.000121,0.000000,0.000000,0.000669,0.245661,-0.002441,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000080,0.000069,0.000121,0.000000,0.000000,0.000658,0.243251,-0.002409,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000079,0.000068,0.000121,0.000000,0.000000,0.000648,0.240873,-0.002379,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000078,0.000068,0.000121,0.000000,0.000000,0.000637,0.238524,-0.002348,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000076,0.000067,0.000121,0.000000,0.000000,0.000628,0.236206,-0.002318,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000075,0.000066,0.000121,0.000000,0.000000,0.000618,0.233918,-0.002289,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000074,0.000065,0.000122,0.000000,0.000000,0.000609,0.231659,-0.002259,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000073,0.000064,0.000122,0.000000,0.000000,0.000600,0.229428,-0.002230,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000072,0.000063,0.000122,0.000000,0.000000,0.000591,0.227226,-0.002202,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000071,0.000062,0.000123,0.000000,0.000000,0.000583,0.225053,-0.002174,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000070,0.000062,0.000123,0.000000,0.000000,0.000575,0.222907,-0.002146,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000069,0.000061,0.000124,0.000112,0.000112,0.000566,0.220678,-0.002229,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000068,0.000060,0.000124,0.000342,0.000342,0.000558,0.218250,-0.002428,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000067,0.000059,0.000124,0.000513,0.000513,0.000550,0.215685,-0.002565,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000066,0.000058,0.000125,0.000648,0.000648,0.000542,0.213020,-0.002666,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000065,0.000057,0.000125,0.000663,0.000663,0.000534,0.210373,-0.002646,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000064,0.000056,0.000126,0.000576,0.000576,0.000526,0.207847,-0.002527,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002138,0.000363,0.000660,0.000363,0.000063,0.000063,0.000056,0.000489,0.000503,0.000503,0.000519,0.206884,-0.000963,1.000000,0.000297 +69,2022-08-03 21:00:00,0.000216,0.000165,0.000000,0.000165,0.000065,0.000062,0.000055,0.000292,0.000444,0.000444,0.000512,0.204746,-0.002138,1.000000,0.000132 +70,2022-08-03 22:00:00,0.000000,0.000132,0.000000,0.000132,0.000066,0.000061,0.000054,0.000260,0.000364,0.000364,0.000504,0.202500,-0.002245,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000068,0.000060,0.000053,0.000128,0.000277,0.000277,0.000497,0.200431,-0.002069,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000060,0.000053,0.000129,0.000167,0.000167,0.000490,0.198436,-0.001996,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000059,0.000052,0.000130,0.000028,0.000028,0.000483,0.196602,-0.001833,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000040,0.000000,0.000001,0.000000,0.000073,0.000058,0.000051,0.000131,0.000000,0.000000,0.000477,0.194859,-0.001743,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000057,0.000051,0.000131,0.000000,0.000000,0.000470,0.193099,-0.001760,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000052,0.000001,0.000001,0.000001,0.000076,0.000056,0.000050,0.000133,0.000000,0.000000,0.000464,0.191412,-0.001687,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000086,0.000002,0.000003,0.000002,0.000077,0.000056,0.000049,0.000135,0.000000,0.000000,0.000457,0.189779,-0.001633,1.000000,0.000002 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000079,0.000055,0.000049,0.000134,0.000000,0.000000,0.000451,0.188084,-0.001695,1.000000,0.000001 +79,2022-08-04 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000080,0.000054,0.000048,0.000135,0.000000,0.000000,0.000445,0.186411,-0.001673,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000053,0.000047,0.000135,0.000000,0.000000,0.000439,0.184760,-0.001652,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000053,0.000047,0.000136,0.000000,0.000000,0.000434,0.183130,-0.001630,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000052,0.000046,0.000137,0.000000,0.000000,0.000428,0.181520,-0.001610,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000051,0.000046,0.000138,0.000000,0.000000,0.000422,0.179931,-0.001589,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000051,0.000045,0.000139,0.000000,0.000000,0.000417,0.178362,-0.001569,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000050,0.000045,0.000140,0.000000,0.000000,0.000411,0.176814,-0.001549,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000049,0.000044,0.000141,0.000109,0.000109,0.000406,0.175177,-0.001637,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000049,0.000043,0.000142,0.000341,0.000341,0.000400,0.173333,-0.001844,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000048,0.000042,0.000142,0.000517,0.000517,0.000395,0.171338,-0.001994,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000047,0.000042,0.000143,0.000656,0.000656,0.000389,0.169232,-0.002106,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000047,0.000041,0.000144,0.000711,0.000711,0.000384,0.167099,-0.002134,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000046,0.000040,0.000145,0.000631,0.000631,0.000378,0.165071,-0.002028,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000045,0.000039,0.000146,0.000566,0.000566,0.000372,0.163134,-0.001937,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000044,0.000039,0.000147,0.000496,0.000496,0.000366,0.161291,-0.001843,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000044,0.000038,0.000148,0.000404,0.000404,0.000361,0.159562,-0.001729,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000043,0.000037,0.000149,0.000303,0.000303,0.000355,0.157954,-0.001608,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000042,0.000037,0.000150,0.000172,0.000172,0.000350,0.156497,-0.001457,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000047,0.000000,0.000000,0.000000,0.000109,0.000042,0.000036,0.000151,0.000031,0.000031,0.000344,0.155244,-0.001253,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000041,0.000036,0.000152,0.000000,0.000000,0.000339,0.153991,-0.001253,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000041,0.000036,0.000153,0.000000,0.000000,0.000334,0.152754,-0.001237,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000040,0.000035,0.000154,0.000000,0.000000,0.000329,0.151533,-0.001221,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000039,0.000035,0.000155,0.000000,0.000000,0.000325,0.150328,-0.001205,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000039,0.000034,0.000156,0.000000,0.000000,0.000320,0.149138,-0.001190,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000038,0.000034,0.000157,0.000000,0.000000,0.000315,0.147963,-0.001175,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000038,0.000033,0.000158,0.000000,0.000000,0.000311,0.146803,-0.001160,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000037,0.000033,0.000159,0.000000,0.000000,0.000307,0.145658,-0.001145,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000037,0.000032,0.000160,0.000000,0.000000,0.000303,0.144528,-0.001130,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000036,0.000032,0.000161,0.000000,0.000000,0.000298,0.143412,-0.001116,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000036,0.000032,0.000162,0.000000,0.000000,0.000294,0.142311,-0.001102,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000035,0.000031,0.000164,0.000000,0.000000,0.000290,0.141223,-0.001087,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000035,0.000031,0.000165,0.000121,0.000121,0.000287,0.140030,-0.001193,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000034,0.000030,0.000166,0.000348,0.000348,0.000283,0.138628,-0.001402,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000034,0.000030,0.000167,0.000521,0.000521,0.000279,0.137073,-0.001555,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000033,0.000029,0.000168,0.000655,0.000655,0.000274,0.135406,-0.001667,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000033,0.000028,0.000169,0.000695,0.000695,0.000270,0.133720,-0.001685,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000062,0.000000,0.000000,0.000000,0.000138,0.000032,0.000028,0.000170,0.000627,0.000627,0.000266,0.132185,-0.001535,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000062,0.000000,0.000000,0.000000,0.000140,0.000032,0.000027,0.000171,0.000551,0.000551,0.000261,0.130744,-0.001441,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000031,0.000027,0.000172,0.000438,0.000438,0.000257,0.129434,-0.001310,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000065,0.000000,0.000000,0.000000,0.000143,0.000031,0.000026,0.000173,0.000360,0.000360,0.000253,0.128221,-0.001214,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000155,0.000000,0.000000,0.000000,0.000144,0.000030,0.000026,0.000174,0.000273,0.000273,0.000249,0.127197,-0.001024,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000146,0.000030,0.000026,0.000176,0.000161,0.000161,0.000245,0.126205,-0.000992,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000506,0.000036,0.000065,0.000036,0.000147,0.000029,0.000025,0.000212,0.000053,0.000053,0.000241,0.125707,-0.000498,1.000000,0.000029 +122,2022-08-06 02:00:00,0.000867,0.000131,0.000209,0.000131,0.000149,0.000029,0.000025,0.000309,0.000000,0.000000,0.000238,0.125481,-0.000226,1.000000,0.000107 +123,2022-08-06 03:00:00,0.000697,0.000143,0.000142,0.000143,0.000151,0.000028,0.000025,0.000322,0.000000,0.000000,0.000234,0.125156,-0.000324,1.000000,0.000106 +124,2022-08-06 04:00:00,0.000309,0.000095,0.000031,0.000095,0.000152,0.000028,0.000025,0.000275,0.000000,0.000000,0.000232,0.124562,-0.000594,1.000000,0.000043 +125,2022-08-06 05:00:00,0.000230,0.000046,0.000018,0.000046,0.000154,0.000028,0.000025,0.000228,0.000000,0.000000,0.000229,0.123911,-0.000651,1.000000,0.000014 +126,2022-08-06 06:00:00,0.000312,0.000028,0.000032,0.000028,0.000155,0.000027,0.000025,0.000211,0.000000,0.000000,0.000226,0.123336,-0.000576,1.000000,0.000018 +127,2022-08-06 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000157,0.000027,0.000024,0.000196,0.000000,0.000000,0.000223,0.122491,-0.000845,1.000000,0.000006 +128,2022-08-06 08:00:00,0.000000,0.000006,0.000000,0.000006,0.000158,0.000027,0.000024,0.000192,0.000000,0.000000,0.000220,0.121657,-0.000834,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000026,0.000024,0.000186,0.000000,0.000000,0.000218,0.120834,-0.000823,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000026,0.000023,0.000188,0.000000,0.000000,0.000215,0.120021,-0.000813,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000026,0.000023,0.000189,0.000000,0.000000,0.000212,0.119219,-0.000802,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000025,0.000023,0.000190,0.000000,0.000000,0.000210,0.118427,-0.000792,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000025,0.000022,0.000191,0.000000,0.000000,0.000207,0.117645,-0.000782,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000025,0.000022,0.000193,0.000101,0.000101,0.000204,0.116773,-0.000872,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000024,0.000022,0.000194,0.000321,0.000321,0.000202,0.115696,-0.001077,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000024,0.000021,0.000195,0.000485,0.000485,0.000199,0.114469,-0.001226,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000024,0.000021,0.000196,0.000624,0.000624,0.000196,0.113122,-0.001348,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000023,0.000020,0.000197,0.000722,0.000722,0.000193,0.111695,-0.001427,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000023,0.000020,0.000198,0.000654,0.000654,0.000190,0.110353,-0.001341,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000023,0.000019,0.000200,0.000576,0.000576,0.000186,0.109106,-0.001248,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000022,0.000019,0.000201,0.000508,0.000508,0.000183,0.107942,-0.001164,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000022,0.000018,0.000202,0.000415,0.000415,0.000180,0.106885,-0.001057,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000021,0.000018,0.000203,0.000309,0.000309,0.000177,0.105946,-0.000939,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000021,0.000018,0.000204,0.000166,0.000166,0.000173,0.105159,-0.000786,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000021,0.000018,0.000205,0.000027,0.000027,0.000170,0.104521,-0.000639,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000020,0.000017,0.000206,0.000000,0.000000,0.000167,0.103917,-0.000604,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000020,0.000017,0.000207,0.000000,0.000000,0.000165,0.103320,-0.000596,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000020,0.000017,0.000208,0.000000,0.000000,0.000162,0.102732,-0.000589,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000019,0.000017,0.000210,0.000000,0.000000,0.000159,0.102150,-0.000581,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000019,0.000016,0.000211,0.000000,0.000000,0.000157,0.101577,-0.000574,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000019,0.000016,0.000212,0.000000,0.000000,0.000154,0.101010,-0.000566,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000018,0.000016,0.000213,0.000000,0.000000,0.000152,0.100451,-0.000559,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000018,0.000016,0.000214,0.000000,0.000000,0.000150,0.099899,-0.000552,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000018,0.000016,0.000215,0.000000,0.000000,0.000148,0.099354,-0.000545,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000018,0.000015,0.000217,0.000000,0.000000,0.000146,0.098816,-0.000538,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000017,0.000015,0.000218,0.000000,0.000000,0.000143,0.098285,-0.000531,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000017,0.000015,0.000219,0.000000,0.000000,0.000141,0.097761,-0.000524,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000017,0.000015,0.000220,0.000099,0.000000,0.000139,0.097243,-0.000518,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000017,0.000015,0.000221,0.000324,0.000000,0.000137,0.096732,-0.000511,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000016,0.000015,0.000223,0.000499,0.000000,0.000136,0.096228,-0.000504,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000016,0.000014,0.000224,0.000627,0.000000,0.000134,0.095730,-0.000498,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000016,0.000014,0.000225,0.000727,0.000000,0.000132,0.095238,-0.000492,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000016,0.000014,0.000226,0.000652,0.000000,0.000130,0.094753,-0.000485,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000014,0.000227,0.000573,0.000000,0.000128,0.094274,-0.000479,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000015,0.000014,0.000228,0.000495,0.000000,0.000127,0.093801,-0.000473,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000013,0.000230,0.000403,0.000000,0.000125,0.093334,-0.000467,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000015,0.000013,0.000231,0.000298,0.000000,0.000123,0.092873,-0.000461,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000054,0.000000,0.000000,0.000000,0.000217,0.000015,0.000013,0.000232,0.000134,0.000054,0.000122,0.092418,-0.000455,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000013,0.000233,0.000001,0.000000,0.000120,0.091969,-0.000449,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000014,0.000013,0.000234,0.000000,0.000000,0.000118,0.091525,-0.000443,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000014,0.000013,0.000235,0.000000,0.000000,0.000117,0.091087,-0.000438,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000012,0.000237,0.000000,0.000000,0.000115,0.090655,-0.000432,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000012,0.000238,0.000000,0.000000,0.000114,0.090229,-0.000427,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000014,0.000012,0.000239,0.000000,0.000000,0.000112,0.089807,-0.000421,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000012,0.000240,0.000000,0.000000,0.000111,0.089391,-0.000416,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000013,0.000012,0.000241,0.000000,0.000000,0.000109,0.088981,-0.000411,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000013,0.000012,0.000242,0.000000,0.000000,0.000108,0.088576,-0.000405,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000013,0.000012,0.000243,0.000000,0.000000,0.000107,0.088176,-0.000400,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000011,0.000244,0.000000,0.000000,0.000105,0.087781,-0.000395,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000000,0.000000,0.000104,0.087391,-0.000390,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000012,0.000011,0.000247,0.000000,0.000000,0.000103,0.087006,-0.000385,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000012,0.000011,0.000248,0.000084,0.000000,0.000101,0.086626,-0.000380,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000011,0.000249,0.000307,0.000000,0.000100,0.086251,-0.000375,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000483,0.000000,0.000099,0.085880,-0.000370,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000251,0.000618,0.000000,0.000097,0.085515,-0.000366,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000252,0.000716,0.000000,0.000096,0.085154,-0.000361,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000011,0.000010,0.000253,0.000623,0.000000,0.000095,0.084797,-0.000356,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000011,0.000010,0.000254,0.000549,0.000000,0.000094,0.084446,-0.000352,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000011,0.000010,0.000256,0.000495,0.000000,0.000092,0.084098,-0.000347,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000011,0.000010,0.000257,0.000402,0.000000,0.000091,0.083756,-0.000343,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000258,0.000296,0.000000,0.000090,0.083417,-0.000338,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000011,0.000010,0.000259,0.000170,0.000000,0.000089,0.083083,-0.000334,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000009,0.000260,0.000025,0.000000,0.000088,0.082753,-0.000330,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000357,0.000022,0.000039,0.000022,0.000250,0.000010,0.000009,0.000283,0.000000,0.000000,0.000087,0.082741,-0.000012,1.000000,0.000018 +195,2022-08-09 03:00:00,0.000141,0.000013,0.000007,0.000013,0.000252,0.000010,0.000009,0.000275,0.000000,0.000000,0.000086,0.082549,-0.000193,1.000000,0.000011 +196,2022-08-09 04:00:00,0.000000,0.000010,0.000000,0.000010,0.000253,0.000010,0.000009,0.000273,0.000000,0.000000,0.000085,0.082226,-0.000323,1.000000,0.000001 +197,2022-08-09 05:00:00,0.000000,0.000001,0.000000,0.000001,0.000254,0.000010,0.000009,0.000265,0.000000,0.000000,0.000084,0.081907,-0.000319,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000010,0.000009,0.000265,0.000000,0.000000,0.000083,0.081592,-0.000315,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000010,0.000009,0.000266,0.000000,0.000000,0.000082,0.081281,-0.000311,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000010,0.000009,0.000267,0.000000,0.000000,0.000081,0.080975,-0.000307,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000010,0.000009,0.000268,0.000000,0.000000,0.000080,0.080672,-0.000303,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000010,0.000009,0.000269,0.000000,0.000000,0.000079,0.080373,-0.000299,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000009,0.000008,0.000270,0.000000,0.000000,0.000078,0.080078,-0.000295,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000009,0.000008,0.000271,0.000000,0.000000,0.000077,0.079786,-0.000291,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000009,0.000008,0.000272,0.000000,0.000000,0.000076,0.079499,-0.000288,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000009,0.000008,0.000273,0.000093,0.000000,0.000075,0.079215,-0.000284,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620893.csv b/test/channel_loss/channel_forcing/et/cat-2620893.csv new file mode 100644 index 000000000..a92b91262 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620893.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000136,0.000000,0.000000,0.000000,0.000000,0.001450,0.000217,0.001450,0.000172,0.000172,0.010363,0.425723,-0.004847,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001281,0.000214,0.001281,0.000041,0.000041,0.009297,0.420934,-0.004788,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001138,0.000212,0.001138,0.000000,0.000000,0.008371,0.416250,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001016,0.000209,0.001016,0.000000,0.000000,0.007564,0.411627,-0.004623,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000912,0.000206,0.000912,0.000000,0.000000,0.006858,0.407065,-0.004562,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000822,0.000203,0.000823,0.000000,0.000000,0.006239,0.402563,-0.004502,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000745,0.000201,0.000745,0.000000,0.000000,0.005695,0.398120,-0.004443,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000677,0.000198,0.000678,0.000000,0.000000,0.005216,0.393735,-0.004384,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000619,0.000195,0.000620,0.000000,0.000000,0.004793,0.389408,-0.004327,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000567,0.000193,0.000569,0.000000,0.000000,0.004418,0.385139,-0.004270,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000522,0.000190,0.000524,0.000000,0.000000,0.004086,0.380925,-0.004214,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000483,0.000188,0.000485,0.000000,0.000000,0.003791,0.376766,-0.004158,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000448,0.000185,0.000450,0.000000,0.000000,0.003529,0.372663,-0.004104,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000417,0.000183,0.000420,0.000000,0.000000,0.003295,0.368613,-0.004050,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000389,0.000180,0.000393,0.000119,0.000119,0.003087,0.364499,-0.004114,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000365,0.000178,0.000369,0.000344,0.000344,0.002900,0.360217,-0.004282,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000343,0.000175,0.000347,0.000522,0.000522,0.002733,0.355816,-0.004401,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000323,0.000172,0.000328,0.000665,0.000665,0.002582,0.351331,-0.004484,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000306,0.000170,0.000311,0.000648,0.000648,0.002446,0.346922,-0.004409,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000071,0.000000,0.000000,0.000000,0.000006,0.000290,0.000167,0.000296,0.000554,0.000554,0.002324,0.342734,-0.004188,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000276,0.000165,0.000283,0.000497,0.000497,0.002213,0.338650,-0.004084,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000338,0.000000,0.000000,0.000000,0.000008,0.000263,0.000163,0.000270,0.000380,0.000380,0.002113,0.335006,-0.003644,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000251,0.000160,0.000260,0.000319,0.000319,0.002022,0.331199,-0.003807,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000253,0.000000,0.000000,0.000000,0.000009,0.000241,0.000158,0.000250,0.000248,0.000248,0.001940,0.327699,-0.003500,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000182,0.000000,0.000000,0.000000,0.000010,0.000231,0.000156,0.000241,0.000165,0.000165,0.001865,0.324257,-0.003442,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000604,0.000043,0.000079,0.000043,0.000011,0.000222,0.000154,0.000276,0.000064,0.000064,0.001797,0.321299,-0.002958,1.000000,0.000035 +26,2022-08-02 02:00:00,0.001336,0.000237,0.000395,0.000237,0.000012,0.000215,0.000153,0.000463,0.000000,0.000000,0.001735,0.318854,-0.002445,1.000000,0.000193 +27,2022-08-02 03:00:00,0.001337,0.000331,0.000394,0.000331,0.000012,0.000208,0.000151,0.000551,0.000000,0.000000,0.001679,0.316442,-0.002412,1.000000,0.000256 +28,2022-08-02 04:00:00,0.001177,0.000351,0.000316,0.000351,0.000013,0.000201,0.000150,0.000565,0.000000,0.000000,0.001628,0.313981,-0.002460,1.000000,0.000221 +29,2022-08-02 05:00:00,0.000481,0.000192,0.000063,0.000192,0.000014,0.000195,0.000148,0.000401,0.000000,0.000000,0.001581,0.311116,-0.002865,1.000000,0.000091 +30,2022-08-02 06:00:00,0.000368,0.000099,0.000037,0.000099,0.000015,0.000190,0.000147,0.000304,0.000000,0.000000,0.001538,0.308202,-0.002914,1.000000,0.000029 +31,2022-08-02 07:00:00,0.000000,0.000022,0.000000,0.000022,0.000016,0.000185,0.000145,0.000223,0.000000,0.000000,0.001498,0.305000,-0.003202,1.000000,0.000007 +32,2022-08-02 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000017,0.000180,0.000143,0.000204,0.000000,0.000000,0.001460,0.301840,-0.003160,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000176,0.000141,0.000194,0.000000,0.000000,0.001426,0.298722,-0.003118,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000172,0.000139,0.000190,0.000000,0.000000,0.001393,0.295644,-0.003077,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000168,0.000137,0.000188,0.000000,0.000000,0.001363,0.292607,-0.003037,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000164,0.000135,0.000185,0.000000,0.000000,0.001334,0.289610,-0.002997,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000161,0.000134,0.000183,0.000000,0.000000,0.001307,0.286652,-0.002958,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000157,0.000132,0.000181,0.000107,0.000107,0.001281,0.283628,-0.003024,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000154,0.000130,0.000179,0.000318,0.000318,0.001256,0.280436,-0.003193,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000151,0.000128,0.000177,0.000475,0.000475,0.001233,0.277129,-0.003306,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000149,0.000126,0.000175,0.000609,0.000609,0.001210,0.273735,-0.003395,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000508,0.000000,0.000000,0.000000,0.000028,0.000146,0.000124,0.000173,0.000715,0.000715,0.001188,0.270782,-0.002952,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000029,0.000143,0.000122,0.000172,0.000635,0.000635,0.001167,0.267544,-0.003238,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000141,0.000120,0.000171,0.000560,0.000560,0.001146,0.264324,-0.003220,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000138,0.000118,0.000169,0.000491,0.000491,0.001126,0.261214,-0.003110,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000136,0.000116,0.000168,0.000410,0.000410,0.001107,0.258225,-0.002989,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000133,0.000115,0.000167,0.000306,0.000306,0.001088,0.255378,-0.002847,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000131,0.000113,0.000166,0.000167,0.000167,0.001070,0.252705,-0.002672,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000129,0.000112,0.000165,0.000021,0.000021,0.001053,0.250212,-0.002493,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000127,0.000110,0.000164,0.000000,0.000000,0.001036,0.247773,-0.002440,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000125,0.000109,0.000164,0.000000,0.000000,0.001020,0.245365,-0.002407,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000123,0.000107,0.000163,0.000000,0.000000,0.001004,0.242989,-0.002376,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000121,0.000106,0.000162,0.000000,0.000000,0.000989,0.240645,-0.002345,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000119,0.000104,0.000162,0.000000,0.000000,0.000974,0.238331,-0.002314,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000117,0.000103,0.000161,0.000000,0.000000,0.000960,0.236048,-0.002283,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000116,0.000102,0.000161,0.000000,0.000000,0.000946,0.233794,-0.002253,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000114,0.000100,0.000161,0.000000,0.000000,0.000932,0.231571,-0.002224,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000112,0.000099,0.000160,0.000000,0.000000,0.000919,0.229376,-0.002194,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000111,0.000098,0.000160,0.000000,0.000000,0.000906,0.227211,-0.002166,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000109,0.000097,0.000160,0.000000,0.000000,0.000893,0.225074,-0.002137,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000108,0.000095,0.000160,0.000000,0.000000,0.000881,0.222965,-0.002109,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000106,0.000094,0.000160,0.000116,0.000116,0.000868,0.220768,-0.002196,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000105,0.000092,0.000160,0.000354,0.000354,0.000856,0.218366,-0.002402,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000103,0.000091,0.000160,0.000529,0.000529,0.000844,0.215824,-0.002543,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000102,0.000089,0.000160,0.000665,0.000665,0.000832,0.213180,-0.002644,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000100,0.000088,0.000159,0.000678,0.000678,0.000819,0.210558,-0.002622,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000099,0.000086,0.000159,0.000596,0.000596,0.000807,0.208051,-0.002506,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002396,0.000340,0.000618,0.000340,0.000062,0.000097,0.000086,0.000499,0.000513,0.000513,0.000796,0.207414,-0.000637,1.000000,0.000278 +69,2022-08-03 21:00:00,0.000253,0.000155,0.000000,0.000155,0.000064,0.000096,0.000085,0.000314,0.000455,0.000455,0.000785,0.205337,-0.002077,1.000000,0.000124 +70,2022-08-03 22:00:00,0.000000,0.000124,0.000000,0.000124,0.000065,0.000094,0.000083,0.000283,0.000372,0.000372,0.000774,0.203121,-0.002217,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000067,0.000093,0.000082,0.000160,0.000285,0.000285,0.000762,0.201081,-0.002039,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000092,0.000081,0.000160,0.000171,0.000171,0.000752,0.199119,-0.001962,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000090,0.000080,0.000160,0.000032,0.000032,0.000741,0.197320,-0.001799,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000089,0.000079,0.000160,0.000000,0.000000,0.000731,0.195576,-0.001744,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000088,0.000078,0.000161,0.000000,0.000000,0.000720,0.193855,-0.001721,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000051,0.000000,0.000001,0.000000,0.000074,0.000087,0.000077,0.000161,0.000000,0.000000,0.000711,0.192207,-0.001648,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000119,0.000002,0.000003,0.000002,0.000076,0.000085,0.000076,0.000163,0.000000,0.000000,0.000701,0.190643,-0.001563,1.000000,0.000002 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000077,0.000084,0.000075,0.000163,0.000000,0.000000,0.000691,0.188987,-0.001656,1.000000,0.000001 +79,2022-08-04 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000079,0.000083,0.000074,0.000163,0.000000,0.000000,0.000682,0.187353,-0.001634,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000082,0.000073,0.000162,0.000000,0.000000,0.000673,0.185740,-0.001613,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000081,0.000072,0.000163,0.000000,0.000000,0.000664,0.184148,-0.001592,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000080,0.000071,0.000163,0.000000,0.000000,0.000655,0.182577,-0.001571,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000079,0.000070,0.000164,0.000000,0.000000,0.000646,0.181027,-0.001550,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000078,0.000069,0.000164,0.000000,0.000000,0.000638,0.179497,-0.001530,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000077,0.000068,0.000165,0.000000,0.000000,0.000629,0.177987,-0.001510,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000076,0.000067,0.000165,0.000113,0.000113,0.000621,0.176386,-0.001601,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000075,0.000066,0.000166,0.000352,0.000352,0.000612,0.174570,-0.001816,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000074,0.000065,0.000166,0.000531,0.000531,0.000604,0.172601,-0.001969,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000072,0.000064,0.000167,0.000674,0.000674,0.000595,0.170517,-0.002084,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000071,0.000062,0.000167,0.000728,0.000728,0.000586,0.168407,-0.002110,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000070,0.000061,0.000168,0.000652,0.000652,0.000577,0.166400,-0.002007,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000069,0.000060,0.000168,0.000578,0.000578,0.000568,0.164492,-0.001908,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000068,0.000059,0.000168,0.000501,0.000501,0.000559,0.162685,-0.001807,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000067,0.000058,0.000169,0.000406,0.000406,0.000550,0.160996,-0.001689,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000066,0.000057,0.000169,0.000311,0.000311,0.000541,0.159422,-0.001573,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000065,0.000056,0.000170,0.000179,0.000179,0.000532,0.158000,-0.001422,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000064,0.000055,0.000170,0.000036,0.000036,0.000524,0.156738,-0.001263,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000063,0.000055,0.000171,0.000000,0.000000,0.000516,0.155527,-0.001210,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000062,0.000054,0.000172,0.000000,0.000000,0.000508,0.154333,-0.001195,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000061,0.000053,0.000172,0.000000,0.000000,0.000500,0.153154,-0.001179,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000060,0.000053,0.000173,0.000000,0.000000,0.000493,0.151991,-0.001163,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000059,0.000052,0.000174,0.000000,0.000000,0.000486,0.150843,-0.001148,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000058,0.000051,0.000174,0.000000,0.000000,0.000479,0.149710,-0.001133,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000057,0.000050,0.000175,0.000000,0.000000,0.000472,0.148592,-0.001118,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000057,0.000050,0.000176,0.000000,0.000000,0.000465,0.147488,-0.001103,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000056,0.000049,0.000177,0.000000,0.000000,0.000459,0.146400,-0.001089,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000055,0.000049,0.000177,0.000000,0.000000,0.000452,0.145325,-0.001074,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000054,0.000048,0.000178,0.000000,0.000000,0.000446,0.144265,-0.001060,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000053,0.000047,0.000179,0.000000,0.000000,0.000440,0.143218,-0.001046,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000053,0.000047,0.000180,0.000126,0.000126,0.000433,0.142062,-0.001157,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000052,0.000046,0.000181,0.000361,0.000361,0.000427,0.140687,-0.001374,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000051,0.000045,0.000181,0.000537,0.000537,0.000421,0.139159,-0.001529,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000050,0.000044,0.000182,0.000673,0.000673,0.000414,0.137515,-0.001644,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000050,0.000043,0.000183,0.000702,0.000702,0.000408,0.135865,-0.001650,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000049,0.000042,0.000184,0.000637,0.000637,0.000401,0.134363,-0.001502,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000048,0.000041,0.000184,0.000557,0.000557,0.000394,0.132960,-0.001403,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000047,0.000040,0.000185,0.000443,0.000443,0.000387,0.131687,-0.001273,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000139,0.000046,0.000040,0.000186,0.000369,0.000369,0.000381,0.130566,-0.001121,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000141,0.000045,0.000039,0.000186,0.000280,0.000280,0.000374,0.129610,-0.000956,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000143,0.000045,0.000038,0.000187,0.000168,0.000168,0.000368,0.128653,-0.000957,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000477,0.000021,0.000037,0.000021,0.000144,0.000044,0.000038,0.000209,0.000056,0.000056,0.000362,0.128191,-0.000463,1.000000,0.000017 +122,2022-08-06 02:00:00,0.000996,0.000112,0.000187,0.000112,0.000146,0.000043,0.000038,0.000301,0.000000,0.000000,0.000357,0.128155,-0.000036,1.000000,0.000091 +123,2022-08-06 03:00:00,0.000767,0.000118,0.000116,0.000118,0.000147,0.000043,0.000038,0.000308,0.000000,0.000000,0.000353,0.127963,-0.000192,1.000000,0.000089 +124,2022-08-06 04:00:00,0.000312,0.000078,0.000021,0.000078,0.000149,0.000042,0.000038,0.000269,0.000000,0.000000,0.000348,0.127418,-0.000545,1.000000,0.000033 +125,2022-08-06 05:00:00,0.000316,0.000040,0.000021,0.000040,0.000150,0.000042,0.000037,0.000232,0.000000,0.000000,0.000344,0.126883,-0.000535,1.000000,0.000014 +126,2022-08-06 06:00:00,0.000434,0.000031,0.000040,0.000031,0.000152,0.000041,0.000037,0.000224,0.000000,0.000000,0.000340,0.126455,-0.000429,1.000000,0.000022 +127,2022-08-06 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000153,0.000041,0.000037,0.000208,0.000000,0.000000,0.000336,0.125643,-0.000812,1.000000,0.000008 +128,2022-08-06 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000155,0.000040,0.000036,0.000203,0.000000,0.000000,0.000332,0.124841,-0.000802,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000040,0.000036,0.000196,0.000000,0.000000,0.000328,0.124050,-0.000791,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000039,0.000035,0.000197,0.000000,0.000000,0.000324,0.123270,-0.000781,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000039,0.000035,0.000198,0.000000,0.000000,0.000320,0.122499,-0.000770,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000038,0.000034,0.000199,0.000000,0.000000,0.000316,0.121739,-0.000760,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000038,0.000034,0.000200,0.000000,0.000000,0.000312,0.120989,-0.000750,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000037,0.000033,0.000201,0.000105,0.000105,0.000308,0.120145,-0.000844,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000037,0.000033,0.000202,0.000333,0.000333,0.000304,0.119086,-0.001058,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000036,0.000032,0.000203,0.000499,0.000499,0.000299,0.117879,-0.001208,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000036,0.000031,0.000204,0.000644,0.000644,0.000295,0.116544,-0.001335,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000035,0.000030,0.000205,0.000735,0.000735,0.000290,0.115136,-0.001408,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000035,0.000030,0.000206,0.000673,0.000673,0.000285,0.113809,-0.001327,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000034,0.000029,0.000207,0.000587,0.000587,0.000280,0.112584,-0.001225,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000033,0.000028,0.000207,0.000513,0.000513,0.000275,0.111448,-0.001136,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000033,0.000028,0.000208,0.000415,0.000415,0.000269,0.110424,-0.001025,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000032,0.000027,0.000209,0.000316,0.000316,0.000264,0.109511,-0.000913,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000031,0.000027,0.000210,0.000171,0.000171,0.000259,0.108752,-0.000758,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000031,0.000026,0.000211,0.000031,0.000031,0.000255,0.108143,-0.000610,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000026,0.000212,0.000000,0.000000,0.000250,0.107571,-0.000571,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000030,0.000025,0.000213,0.000000,0.000000,0.000246,0.107007,-0.000564,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000029,0.000025,0.000213,0.000000,0.000000,0.000242,0.106451,-0.000556,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000029,0.000025,0.000214,0.000000,0.000000,0.000238,0.105902,-0.000549,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000028,0.000024,0.000215,0.000000,0.000000,0.000234,0.105360,-0.000542,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000024,0.000216,0.000000,0.000000,0.000230,0.104825,-0.000535,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000024,0.000217,0.000000,0.000000,0.000226,0.104297,-0.000528,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000024,0.000218,0.000000,0.000000,0.000223,0.103776,-0.000521,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000027,0.000023,0.000219,0.000000,0.000000,0.000220,0.103262,-0.000514,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000026,0.000023,0.000220,0.000000,0.000000,0.000216,0.102755,-0.000507,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000023,0.000221,0.000000,0.000000,0.000213,0.102254,-0.000501,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000022,0.000222,0.000000,0.000000,0.000210,0.101760,-0.000494,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000025,0.000022,0.000223,0.000104,0.000104,0.000207,0.101170,-0.000590,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000025,0.000021,0.000224,0.000337,0.000337,0.000204,0.100358,-0.000812,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000024,0.000021,0.000225,0.000512,0.000512,0.000200,0.099384,-0.000974,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000024,0.000020,0.000226,0.000642,0.000642,0.000197,0.098294,-0.001090,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000023,0.000020,0.000227,0.000742,0.000742,0.000193,0.097120,-0.001174,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000019,0.000228,0.000673,0.000673,0.000189,0.096029,-0.001091,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000018,0.000229,0.000584,0.000584,0.000185,0.095041,-0.000988,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000022,0.000018,0.000229,0.000502,0.000502,0.000181,0.094146,-0.000895,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000021,0.000017,0.000230,0.000411,0.000411,0.000176,0.093353,-0.000793,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000021,0.000017,0.000231,0.000308,0.000000,0.000173,0.092976,-0.000377,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000020,0.000017,0.000232,0.000140,0.000000,0.000169,0.092604,-0.000372,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000017,0.000233,0.000003,0.000000,0.000165,0.092237,-0.000367,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000020,0.000016,0.000234,0.000000,0.000000,0.000162,0.091874,-0.000362,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000019,0.000016,0.000235,0.000000,0.000000,0.000159,0.091517,-0.000358,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000019,0.000016,0.000236,0.000000,0.000000,0.000156,0.091164,-0.000353,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000019,0.000016,0.000236,0.000000,0.000000,0.000153,0.090816,-0.000348,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000018,0.000016,0.000237,0.000000,0.000000,0.000151,0.090472,-0.000344,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000018,0.000015,0.000238,0.000000,0.000000,0.000148,0.090133,-0.000339,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000015,0.000239,0.000000,0.000000,0.000145,0.089799,-0.000335,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000015,0.000240,0.000000,0.000000,0.000143,0.089468,-0.000330,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000015,0.000241,0.000000,0.000000,0.000141,0.089143,-0.000326,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000017,0.000015,0.000242,0.000000,0.000000,0.000138,0.088821,-0.000322,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000014,0.000243,0.000000,0.000000,0.000136,0.088504,-0.000317,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000016,0.000014,0.000244,0.000000,0.000000,0.000134,0.088190,-0.000313,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000016,0.000014,0.000245,0.000088,0.000000,0.000132,0.087881,-0.000309,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000016,0.000014,0.000246,0.000320,0.000000,0.000130,0.087576,-0.000305,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000247,0.000499,0.000000,0.000128,0.087275,-0.000301,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000015,0.000013,0.000248,0.000633,0.000000,0.000126,0.086978,-0.000297,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000015,0.000013,0.000249,0.000735,0.000000,0.000125,0.086685,-0.000293,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000015,0.000013,0.000250,0.000641,0.000000,0.000123,0.086396,-0.000289,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000015,0.000013,0.000251,0.000560,0.000000,0.000121,0.086111,-0.000285,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000014,0.000013,0.000252,0.000503,0.000000,0.000119,0.085829,-0.000282,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000014,0.000013,0.000253,0.000409,0.000000,0.000118,0.085551,-0.000278,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000014,0.000012,0.000254,0.000305,0.000000,0.000116,0.085276,-0.000274,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000014,0.000012,0.000255,0.000175,0.000000,0.000114,0.085006,-0.000271,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000014,0.000012,0.000256,0.000028,0.000000,0.000113,0.084739,-0.000267,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000605,0.000039,0.000071,0.000039,0.000243,0.000013,0.000012,0.000296,0.000000,0.000000,0.000112,0.085002,0.000264,1.000000,0.000032 +195,2022-08-09 03:00:00,0.000281,0.000027,0.000016,0.000027,0.000244,0.000013,0.000012,0.000284,0.000000,0.000000,0.000110,0.084996,-0.000006,1.000000,0.000021 +196,2022-08-09 04:00:00,0.000000,0.000018,0.000000,0.000018,0.000245,0.000013,0.000012,0.000277,0.000000,0.000000,0.000109,0.084729,-0.000267,1.000000,0.000003 +197,2022-08-09 05:00:00,0.000000,0.000003,0.000000,0.000003,0.000247,0.000013,0.000012,0.000263,0.000000,0.000000,0.000108,0.084466,-0.000264,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000012,0.000261,0.000000,0.000000,0.000107,0.084206,-0.000260,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000012,0.000262,0.000000,0.000000,0.000106,0.083949,-0.000257,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000013,0.000011,0.000263,0.000000,0.000000,0.000104,0.083696,-0.000253,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000012,0.000011,0.000263,0.000000,0.000000,0.000103,0.083446,-0.000250,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000027,0.000000,0.000000,0.000000,0.000252,0.000012,0.000011,0.000264,0.000000,0.000000,0.000102,0.083226,-0.000220,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000012,0.000011,0.000265,0.000000,0.000000,0.000101,0.082982,-0.000244,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000266,0.000000,0.000000,0.000100,0.082742,-0.000241,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000012,0.000011,0.000267,0.000000,0.000000,0.000098,0.082504,-0.000237,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000012,0.000011,0.000268,0.000097,0.000000,0.000097,0.082270,-0.000234,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620894.csv b/test/channel_loss/channel_forcing/et/cat-2620894.csv new file mode 100644 index 000000000..c4e73a46b --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620894.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000135,0.000000,0.000000,0.000000,0.000000,0.001478,0.000417,0.001478,0.000169,0.000169,0.010535,0.429890,-0.004753,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001331,0.000411,0.001331,0.000039,0.000039,0.009615,0.425200,-0.004690,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001206,0.000405,0.001206,0.000000,0.000000,0.008815,0.420616,-0.004584,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001099,0.000399,0.001099,0.000000,0.000000,0.008115,0.416099,-0.004518,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001007,0.000393,0.001007,0.000000,0.000000,0.007502,0.411646,-0.004453,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000927,0.000388,0.000927,0.000000,0.000000,0.006963,0.407257,-0.004389,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000858,0.000382,0.000858,0.000000,0.000000,0.006487,0.402932,-0.004326,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000797,0.000377,0.000798,0.000000,0.000000,0.006066,0.398669,-0.004263,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000744,0.000371,0.000745,0.000000,0.000000,0.005693,0.394466,-0.004202,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000698,0.000366,0.000699,0.000000,0.000000,0.005361,0.390325,-0.004142,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000656,0.000361,0.000658,0.000000,0.000000,0.005066,0.386243,-0.004082,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000620,0.000355,0.000622,0.000000,0.000000,0.004801,0.382219,-0.004023,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000587,0.000350,0.000590,0.000000,0.000000,0.004564,0.378254,-0.003966,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000558,0.000345,0.000561,0.000000,0.000000,0.004351,0.374345,-0.003908,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000532,0.000340,0.000535,0.000117,0.000117,0.004159,0.370378,-0.003968,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000509,0.000335,0.000512,0.000343,0.000343,0.003986,0.366244,-0.004133,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000487,0.000329,0.000492,0.000521,0.000521,0.003828,0.361995,-0.004249,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000468,0.000324,0.000473,0.000666,0.000666,0.003683,0.357664,-0.004331,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000450,0.000318,0.000456,0.000655,0.000655,0.003551,0.353406,-0.004258,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000064,0.000000,0.000000,0.000000,0.000006,0.000434,0.000313,0.000440,0.000561,0.000561,0.003430,0.349365,-0.004041,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000420,0.000308,0.000426,0.000502,0.000502,0.003318,0.345439,-0.003926,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000340,0.000000,0.000000,0.000000,0.000007,0.000406,0.000304,0.000413,0.000381,0.000381,0.003216,0.341962,-0.003477,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000394,0.000299,0.000401,0.000317,0.000317,0.003121,0.338325,-0.003637,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000212,0.000000,0.000000,0.000000,0.000008,0.000382,0.000295,0.000391,0.000246,0.000246,0.003034,0.334958,-0.003367,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000132,0.000000,0.000000,0.000000,0.000009,0.000371,0.000290,0.000381,0.000163,0.000163,0.002953,0.331641,-0.003317,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000562,0.000019,0.000034,0.000019,0.000010,0.000362,0.000287,0.000390,0.000062,0.000062,0.002878,0.328862,-0.002780,1.000000,0.000015 +26,2022-08-02 02:00:00,0.001192,0.000105,0.000176,0.000105,0.000011,0.000353,0.000284,0.000469,0.000000,0.000000,0.002809,0.326664,-0.002197,1.000000,0.000086 +27,2022-08-02 03:00:00,0.001177,0.000145,0.000172,0.000145,0.000011,0.000344,0.000281,0.000501,0.000000,0.000000,0.002745,0.324488,-0.002176,1.000000,0.000113 +28,2022-08-02 04:00:00,0.001064,0.000156,0.000142,0.000156,0.000012,0.000337,0.000278,0.000505,0.000000,0.000000,0.002687,0.322262,-0.002226,1.000000,0.000098 +29,2022-08-02 05:00:00,0.000499,0.000088,0.000033,0.000088,0.000013,0.000330,0.000275,0.000431,0.000000,0.000000,0.002632,0.319618,-0.002644,1.000000,0.000043 +30,2022-08-02 06:00:00,0.000372,0.000047,0.000019,0.000047,0.000014,0.000323,0.000271,0.000384,0.000000,0.000000,0.002580,0.316901,-0.002717,1.000000,0.000015 +31,2022-08-02 07:00:00,0.000000,0.000011,0.000000,0.000011,0.000015,0.000317,0.000267,0.000343,0.000000,0.000000,0.002531,0.313875,-0.003026,1.000000,0.000004 +32,2022-08-02 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000016,0.000310,0.000264,0.000330,0.000000,0.000000,0.002484,0.310892,-0.002983,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000305,0.000260,0.000321,0.000000,0.000000,0.002439,0.307952,-0.002940,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000299,0.000256,0.000317,0.000000,0.000000,0.002396,0.305054,-0.002898,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000294,0.000252,0.000312,0.000000,0.000000,0.002355,0.302198,-0.002856,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000289,0.000249,0.000308,0.000000,0.000000,0.002315,0.299383,-0.002815,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000284,0.000245,0.000304,0.000000,0.000000,0.002276,0.296609,-0.002774,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000279,0.000241,0.000300,0.000105,0.000105,0.002239,0.293771,-0.002838,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000274,0.000238,0.000297,0.000319,0.000319,0.002202,0.290763,-0.003008,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000270,0.000234,0.000293,0.000481,0.000481,0.002166,0.287638,-0.003125,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000265,0.000229,0.000289,0.000621,0.000621,0.002131,0.284421,-0.003217,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000489,0.000000,0.000000,0.000000,0.000025,0.000261,0.000226,0.000286,0.000728,0.000728,0.002096,0.281626,-0.002795,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000100,0.000000,0.000000,0.000000,0.000027,0.000256,0.000222,0.000283,0.000647,0.000647,0.002062,0.278568,-0.003059,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000028,0.000252,0.000218,0.000279,0.000560,0.000560,0.002028,0.275541,-0.003026,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000248,0.000214,0.000276,0.000489,0.000489,0.001994,0.272628,-0.002914,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000243,0.000211,0.000273,0.000403,0.000403,0.001961,0.269841,-0.002787,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000239,0.000207,0.000270,0.000302,0.000302,0.001929,0.267193,-0.002647,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000235,0.000204,0.000267,0.000164,0.000164,0.001898,0.264720,-0.002473,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000231,0.000201,0.000265,0.000019,0.000019,0.001868,0.262425,-0.002295,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000228,0.000198,0.000262,0.000000,0.000000,0.001838,0.260182,-0.002243,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000224,0.000195,0.000260,0.000000,0.000000,0.001809,0.257972,-0.002211,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000221,0.000193,0.000257,0.000000,0.000000,0.001781,0.255793,-0.002179,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000217,0.000190,0.000255,0.000000,0.000000,0.001754,0.253645,-0.002148,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000214,0.000187,0.000253,0.000000,0.000000,0.001727,0.251529,-0.002117,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000210,0.000184,0.000251,0.000000,0.000000,0.001701,0.249442,-0.002086,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000207,0.000182,0.000249,0.000000,0.000000,0.001676,0.247386,-0.002056,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000204,0.000179,0.000247,0.000000,0.000000,0.001651,0.245359,-0.002027,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000201,0.000176,0.000245,0.000000,0.000000,0.001627,0.243362,-0.001998,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000198,0.000174,0.000243,0.000000,0.000000,0.001603,0.241393,-0.001969,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000195,0.000171,0.000241,0.000000,0.000000,0.001579,0.239452,-0.001941,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000192,0.000169,0.000240,0.000000,0.000000,0.001556,0.237540,-0.001913,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000189,0.000166,0.000238,0.000114,0.000114,0.001533,0.235542,-0.001997,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000186,0.000164,0.000237,0.000349,0.000349,0.001511,0.233342,-0.002201,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000183,0.000161,0.000235,0.000524,0.000524,0.001488,0.231001,-0.002341,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000181,0.000157,0.000233,0.000665,0.000665,0.001465,0.228554,-0.002447,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000178,0.000154,0.000232,0.000680,0.000680,0.001441,0.226127,-0.002426,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000175,0.000151,0.000230,0.000599,0.000599,0.001418,0.223816,-0.002311,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002169,0.000153,0.000279,0.000153,0.000057,0.000172,0.000151,0.000382,0.000511,0.000511,0.001397,0.223487,-0.000329,1.000000,0.000125 +69,2022-08-03 21:00:00,0.000231,0.000070,0.000000,0.000070,0.000058,0.000169,0.000148,0.000297,0.000448,0.000448,0.001376,0.221590,-0.001897,1.000000,0.000056 +70,2022-08-03 22:00:00,0.000031,0.000056,0.000000,0.000056,0.000060,0.000167,0.000146,0.000282,0.000365,0.000365,0.001355,0.219605,-0.001985,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000061,0.000164,0.000143,0.000225,0.000278,0.000278,0.001334,0.217765,-0.001839,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000162,0.000141,0.000224,0.000166,0.000166,0.001314,0.216002,-0.001764,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000159,0.000139,0.000223,0.000029,0.000029,0.001294,0.214397,-0.001604,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000157,0.000137,0.000222,0.000000,0.000000,0.001274,0.212845,-0.001552,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000154,0.000135,0.000221,0.000000,0.000000,0.001255,0.211315,-0.001530,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000052,0.000000,0.000000,0.000000,0.000068,0.000152,0.000133,0.000220,0.000000,0.000000,0.001237,0.209857,-0.001458,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000137,0.000001,0.000002,0.000001,0.000069,0.000150,0.000132,0.000220,0.000000,0.000000,0.001219,0.208503,-0.001354,1.000000,0.000001 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000070,0.000147,0.000130,0.000218,0.000000,0.000000,0.001201,0.207036,-0.001468,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000145,0.000128,0.000217,0.000000,0.000000,0.001183,0.205589,-0.001447,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000143,0.000126,0.000216,0.000000,0.000000,0.001166,0.204164,-0.001426,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000141,0.000124,0.000215,0.000000,0.000000,0.001149,0.202758,-0.001405,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000139,0.000122,0.000215,0.000000,0.000000,0.001133,0.201373,-0.001385,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000137,0.000121,0.000214,0.000000,0.000000,0.001116,0.200008,-0.001365,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000135,0.000119,0.000214,0.000000,0.000000,0.001100,0.198663,-0.001345,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000133,0.000117,0.000213,0.000000,0.000000,0.001084,0.197337,-0.001326,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000131,0.000115,0.000212,0.000110,0.000110,0.001069,0.195921,-0.001416,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000129,0.000113,0.000212,0.000346,0.000346,0.001053,0.194294,-0.001627,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000127,0.000111,0.000211,0.000527,0.000527,0.001037,0.192511,-0.001783,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000125,0.000108,0.000210,0.000674,0.000674,0.001020,0.190608,-0.001902,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000123,0.000106,0.000210,0.000731,0.000731,0.001003,0.188678,-0.001930,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000121,0.000104,0.000209,0.000655,0.000655,0.000986,0.186850,-0.001828,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000119,0.000101,0.000208,0.000575,0.000575,0.000969,0.185127,-0.001723,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000117,0.000099,0.000208,0.000494,0.000494,0.000952,0.183508,-0.001618,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000114,0.000097,0.000207,0.000399,0.000399,0.000935,0.182007,-0.001501,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000112,0.000096,0.000206,0.000305,0.000305,0.000918,0.180620,-0.001387,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000110,0.000094,0.000206,0.000176,0.000176,0.000902,0.179380,-0.001240,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000108,0.000093,0.000205,0.000034,0.000034,0.000886,0.178298,-0.001082,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000106,0.000091,0.000205,0.000000,0.000000,0.000871,0.177265,-0.001033,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000105,0.000090,0.000204,0.000000,0.000000,0.000856,0.176246,-0.001018,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000103,0.000089,0.000204,0.000000,0.000000,0.000842,0.175242,-0.001004,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000101,0.000087,0.000203,0.000000,0.000000,0.000828,0.174253,-0.000989,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000100,0.000086,0.000203,0.000000,0.000000,0.000815,0.173278,-0.000975,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000098,0.000085,0.000203,0.000000,0.000000,0.000802,0.172317,-0.000961,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000096,0.000084,0.000203,0.000000,0.000000,0.000789,0.171370,-0.000947,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000095,0.000082,0.000203,0.000000,0.000000,0.000777,0.170436,-0.000934,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000093,0.000081,0.000202,0.000000,0.000000,0.000765,0.169516,-0.000920,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000092,0.000080,0.000202,0.000000,0.000000,0.000753,0.168609,-0.000907,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000090,0.000079,0.000202,0.000000,0.000000,0.000742,0.167715,-0.000894,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000089,0.000078,0.000202,0.000000,0.000000,0.000730,0.166834,-0.000881,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000088,0.000077,0.000202,0.000123,0.000123,0.000719,0.165844,-0.000989,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000086,0.000075,0.000202,0.000355,0.000355,0.000708,0.164640,-0.001204,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000085,0.000073,0.000202,0.000531,0.000531,0.000696,0.163280,-0.001360,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000083,0.000071,0.000202,0.000674,0.000674,0.000684,0.161799,-0.001482,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000082,0.000069,0.000202,0.000709,0.000709,0.000672,0.160304,-0.001495,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000054,0.000000,0.000000,0.000000,0.000121,0.000080,0.000068,0.000202,0.000642,0.000642,0.000659,0.158950,-0.001354,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000079,0.000066,0.000202,0.000556,0.000556,0.000646,0.157709,-0.001241,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000124,0.000077,0.000065,0.000201,0.000435,0.000435,0.000634,0.156595,-0.001113,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000126,0.000000,0.000000,0.000000,0.000126,0.000076,0.000063,0.000201,0.000361,0.000361,0.000621,0.155643,-0.000952,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000154,0.000000,0.000000,0.000000,0.000127,0.000074,0.000062,0.000201,0.000275,0.000275,0.000610,0.154816,-0.000827,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000054,0.000000,0.000000,0.000000,0.000128,0.000073,0.000061,0.000201,0.000164,0.000164,0.000598,0.154012,-0.000804,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000431,0.000008,0.000015,0.000008,0.000130,0.000072,0.000061,0.000209,0.000054,0.000054,0.000587,0.153685,-0.000327,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000812,0.000040,0.000067,0.000040,0.000131,0.000070,0.000061,0.000242,0.000000,0.000000,0.000578,0.153740,0.000055,1.000000,0.000033 +123,2022-08-06 03:00:00,0.000690,0.000046,0.000049,0.000046,0.000132,0.000069,0.000061,0.000248,0.000000,0.000000,0.000570,0.153692,-0.000048,1.000000,0.000035 +124,2022-08-06 04:00:00,0.000278,0.000030,0.000008,0.000030,0.000134,0.000068,0.000060,0.000232,0.000000,0.000000,0.000562,0.153279,-0.000413,1.000000,0.000013 +125,2022-08-06 05:00:00,0.000298,0.000017,0.000009,0.000017,0.000135,0.000067,0.000060,0.000219,0.000000,0.000000,0.000554,0.152889,-0.000389,1.000000,0.000006 +126,2022-08-06 06:00:00,0.000410,0.000014,0.000018,0.000014,0.000136,0.000067,0.000060,0.000217,0.000000,0.000000,0.000547,0.152608,-0.000281,1.000000,0.000010 +127,2022-08-06 07:00:00,0.000000,0.000006,0.000000,0.000006,0.000138,0.000066,0.000059,0.000210,0.000000,0.000000,0.000540,0.151944,-0.000664,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000139,0.000065,0.000058,0.000207,0.000000,0.000000,0.000533,0.151290,-0.000654,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000064,0.000057,0.000204,0.000000,0.000000,0.000526,0.150645,-0.000645,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000063,0.000056,0.000205,0.000000,0.000000,0.000519,0.150009,-0.000636,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000062,0.000055,0.000205,0.000000,0.000000,0.000512,0.149383,-0.000627,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000061,0.000055,0.000206,0.000000,0.000000,0.000505,0.148765,-0.000617,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000061,0.000054,0.000206,0.000000,0.000000,0.000498,0.148156,-0.000609,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000060,0.000053,0.000207,0.000104,0.000104,0.000491,0.147454,-0.000702,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000059,0.000052,0.000207,0.000330,0.000330,0.000484,0.146539,-0.000915,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000058,0.000050,0.000207,0.000499,0.000499,0.000477,0.145470,-0.001069,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000057,0.000049,0.000208,0.000647,0.000647,0.000468,0.144271,-0.001199,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000056,0.000047,0.000208,0.000742,0.000742,0.000460,0.142996,-0.001276,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000055,0.000046,0.000208,0.000676,0.000676,0.000450,0.141804,-0.001192,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000054,0.000044,0.000208,0.000586,0.000586,0.000441,0.140718,-0.001086,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000052,0.000043,0.000208,0.000505,0.000505,0.000431,0.139727,-0.000991,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000051,0.000042,0.000208,0.000409,0.000409,0.000422,0.138845,-0.000881,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000050,0.000041,0.000208,0.000310,0.000310,0.000413,0.138074,-0.000771,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000049,0.000040,0.000209,0.000167,0.000167,0.000404,0.137455,-0.000619,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000048,0.000039,0.000209,0.000028,0.000028,0.000395,0.136981,-0.000474,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000047,0.000039,0.000209,0.000000,0.000000,0.000387,0.136541,-0.000439,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000046,0.000038,0.000209,0.000000,0.000000,0.000379,0.136109,-0.000433,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000045,0.000038,0.000210,0.000000,0.000000,0.000372,0.135682,-0.000427,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000044,0.000037,0.000210,0.000000,0.000000,0.000364,0.135261,-0.000420,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000043,0.000037,0.000210,0.000000,0.000000,0.000358,0.134847,-0.000414,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000043,0.000036,0.000211,0.000000,0.000000,0.000351,0.134439,-0.000408,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000042,0.000036,0.000211,0.000000,0.000000,0.000345,0.134036,-0.000403,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000041,0.000035,0.000212,0.000000,0.000000,0.000339,0.133639,-0.000397,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000040,0.000035,0.000212,0.000000,0.000000,0.000333,0.133248,-0.000391,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000040,0.000034,0.000213,0.000000,0.000000,0.000327,0.132862,-0.000385,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000039,0.000034,0.000213,0.000000,0.000000,0.000322,0.132483,-0.000380,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000038,0.000033,0.000214,0.000000,0.000000,0.000316,0.132108,-0.000374,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000038,0.000032,0.000214,0.000101,0.000101,0.000311,0.131639,-0.000469,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000037,0.000032,0.000215,0.000330,0.000330,0.000306,0.130951,-0.000688,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000036,0.000030,0.000215,0.000508,0.000508,0.000300,0.130098,-0.000853,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000036,0.000029,0.000216,0.000646,0.000646,0.000293,0.129122,-0.000977,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000035,0.000028,0.000216,0.000748,0.000748,0.000287,0.128059,-0.001063,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000034,0.000027,0.000216,0.000676,0.000676,0.000279,0.127082,-0.000977,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000033,0.000025,0.000216,0.000583,0.000583,0.000272,0.126210,-0.000872,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000024,0.000217,0.000497,0.000497,0.000264,0.125436,-0.000774,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000031,0.000024,0.000217,0.000406,0.000406,0.000257,0.124763,-0.000673,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000030,0.000023,0.000217,0.000302,0.000302,0.000249,0.124202,-0.000561,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000029,0.000022,0.000217,0.000136,0.000136,0.000242,0.123812,-0.000390,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000029,0.000022,0.000218,0.000001,0.000001,0.000236,0.123561,-0.000251,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000028,0.000022,0.000218,0.000000,0.000000,0.000230,0.123315,-0.000246,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000027,0.000021,0.000218,0.000000,0.000000,0.000224,0.123072,-0.000243,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000027,0.000021,0.000219,0.000000,0.000000,0.000219,0.122833,-0.000239,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000026,0.000021,0.000219,0.000000,0.000000,0.000214,0.122598,-0.000236,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000025,0.000021,0.000220,0.000000,0.000000,0.000209,0.122365,-0.000232,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000025,0.000020,0.000220,0.000000,0.000000,0.000204,0.122136,-0.000229,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000024,0.000020,0.000221,0.000000,0.000000,0.000200,0.121910,-0.000226,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000024,0.000020,0.000221,0.000000,0.000000,0.000196,0.121688,-0.000222,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000019,0.000222,0.000000,0.000000,0.000192,0.121469,-0.000219,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000023,0.000019,0.000223,0.000000,0.000000,0.000188,0.121253,-0.000216,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000022,0.000019,0.000223,0.000000,0.000000,0.000185,0.121040,-0.000213,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000022,0.000019,0.000224,0.000000,0.000000,0.000181,0.120830,-0.000210,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000022,0.000018,0.000224,0.000086,0.000086,0.000178,0.120538,-0.000291,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000018,0.000225,0.000313,0.000313,0.000174,0.120027,-0.000511,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000021,0.000017,0.000226,0.000491,0.000491,0.000170,0.119347,-0.000680,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000016,0.000226,0.000632,0.000632,0.000166,0.118538,-0.000809,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000019,0.000014,0.000226,0.000737,0.000737,0.000161,0.117638,-0.000900,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000013,0.000227,0.000643,0.000643,0.000155,0.116843,-0.000795,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000018,0.000013,0.000227,0.000560,0.000560,0.000150,0.116141,-0.000702,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000017,0.000012,0.000227,0.000496,0.000496,0.000144,0.115512,-0.000629,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000011,0.000228,0.000401,0.000401,0.000138,0.114987,-0.000526,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000010,0.000228,0.000299,0.000299,0.000133,0.114569,-0.000417,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000015,0.000010,0.000228,0.000172,0.000172,0.000127,0.114283,-0.000286,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000010,0.000229,0.000027,0.000027,0.000123,0.114144,-0.000139,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000805,0.000034,0.000062,0.000034,0.000215,0.000014,0.000011,0.000263,0.000000,0.000000,0.000119,0.114765,0.000621,1.000000,0.000028 +195,2022-08-09 03:00:00,0.000388,0.000024,0.000015,0.000024,0.000216,0.000014,0.000011,0.000254,0.000000,0.000000,0.000116,0.115013,0.000248,1.000000,0.000019 +196,2022-08-09 04:00:00,0.000000,0.000016,0.000000,0.000016,0.000217,0.000014,0.000011,0.000247,0.000000,0.000000,0.000113,0.114889,-0.000123,1.000000,0.000003 +197,2022-08-09 05:00:00,0.000000,0.000003,0.000000,0.000003,0.000218,0.000013,0.000011,0.000234,0.000000,0.000000,0.000110,0.114768,-0.000122,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000013,0.000011,0.000232,0.000000,0.000000,0.000108,0.114648,-0.000120,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000013,0.000010,0.000232,0.000000,0.000000,0.000106,0.114530,-0.000118,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000013,0.000010,0.000233,0.000000,0.000000,0.000103,0.114414,-0.000116,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000012,0.000010,0.000233,0.000000,0.000000,0.000101,0.114299,-0.000115,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000088,0.000000,0.000001,0.000000,0.000222,0.000012,0.000010,0.000235,0.000000,0.000000,0.000099,0.114272,-0.000027,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000010,0.000235,0.000000,0.000000,0.000098,0.114160,-0.000113,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000012,0.000010,0.000236,0.000000,0.000000,0.000096,0.114049,-0.000111,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000011,0.000010,0.000236,0.000000,0.000000,0.000094,0.113939,-0.000109,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000011,0.000009,0.000237,0.000095,0.000095,0.000092,0.113738,-0.000201,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620895.csv b/test/channel_loss/channel_forcing/et/cat-2620895.csv new file mode 100644 index 000000000..ad5282aad --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620895.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000171,0.000000,0.000000,0.000000,0.000000,0.001454,0.000243,0.001454,0.000177,0.000177,0.010386,0.425752,-0.004817,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001287,0.000240,0.001287,0.000046,0.000046,0.009339,0.420959,-0.004794,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001146,0.000237,0.001146,0.000000,0.000000,0.008429,0.416275,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001027,0.000234,0.001027,0.000000,0.000000,0.007636,0.411653,-0.004622,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000924,0.000231,0.000924,0.000000,0.000000,0.006943,0.407092,-0.004560,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000836,0.000228,0.000836,0.000000,0.000000,0.006334,0.402593,-0.004500,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000759,0.000225,0.000760,0.000000,0.000000,0.005800,0.398153,-0.004440,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000693,0.000222,0.000694,0.000000,0.000000,0.005328,0.393772,-0.004381,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000635,0.000219,0.000636,0.000000,0.000000,0.004912,0.389449,-0.004323,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000584,0.000216,0.000586,0.000000,0.000000,0.004543,0.385183,-0.004265,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000540,0.000213,0.000542,0.000000,0.000000,0.004216,0.380975,-0.004209,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000501,0.000210,0.000503,0.000000,0.000000,0.003925,0.376822,-0.004153,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000466,0.000207,0.000468,0.000000,0.000000,0.003667,0.372724,-0.004098,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000435,0.000204,0.000438,0.000000,0.000000,0.003436,0.368681,-0.004043,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000408,0.000202,0.000411,0.000124,0.000124,0.003230,0.364570,-0.004111,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000384,0.000199,0.000388,0.000356,0.000356,0.003045,0.360284,-0.004286,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000362,0.000196,0.000366,0.000527,0.000527,0.002879,0.355886,-0.004398,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000342,0.000193,0.000347,0.000656,0.000656,0.002729,0.351419,-0.004467,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000325,0.000190,0.000330,0.000626,0.000626,0.002594,0.347041,-0.004378,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000309,0.000187,0.000315,0.000538,0.000538,0.002472,0.342934,-0.004108,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000007,0.000295,0.000184,0.000302,0.000475,0.000475,0.002362,0.338880,-0.004054,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000442,0.000001,0.000001,0.000001,0.000008,0.000282,0.000182,0.000290,0.000383,0.000383,0.002262,0.335344,-0.003536,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000270,0.000179,0.000279,0.000329,0.000329,0.002171,0.331535,-0.003809,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000350,0.000001,0.000002,0.000001,0.000009,0.000260,0.000177,0.000270,0.000258,0.000258,0.002088,0.328127,-0.003408,1.000000,0.000001 +24,2022-08-02 00:00:00,0.000300,0.000003,0.000005,0.000003,0.000010,0.000250,0.000175,0.000263,0.000170,0.000170,0.002013,0.324801,-0.003326,1.000000,0.000003 +25,2022-08-02 01:00:00,0.000968,0.000101,0.000181,0.000101,0.000011,0.000241,0.000173,0.000353,0.000070,0.000070,0.001944,0.322102,-0.002699,1.000000,0.000082 +26,2022-08-02 02:00:00,0.001524,0.000297,0.000455,0.000297,0.000011,0.000233,0.000171,0.000541,0.000000,0.000000,0.001882,0.319786,-0.002316,1.000000,0.000241 +27,2022-08-02 03:00:00,0.001419,0.000371,0.000402,0.000371,0.000012,0.000226,0.000170,0.000609,0.000000,0.000000,0.001825,0.317450,-0.002336,1.000000,0.000272 +28,2022-08-02 04:00:00,0.001369,0.000399,0.000376,0.000399,0.000013,0.000220,0.000168,0.000631,0.000000,0.000000,0.001774,0.315121,-0.002329,1.000000,0.000250 +29,2022-08-02 05:00:00,0.000600,0.000221,0.000085,0.000221,0.000014,0.000214,0.000166,0.000449,0.000000,0.000000,0.001726,0.312351,-0.002770,1.000000,0.000114 +30,2022-08-02 06:00:00,0.000390,0.000117,0.000038,0.000117,0.000015,0.000208,0.000164,0.000340,0.000000,0.000000,0.001683,0.309457,-0.002894,1.000000,0.000034 +31,2022-08-02 07:00:00,0.000000,0.000026,0.000000,0.000026,0.000016,0.000203,0.000162,0.000245,0.000000,0.000000,0.001642,0.306255,-0.003203,1.000000,0.000008 +32,2022-08-02 08:00:00,0.000000,0.000008,0.000000,0.000008,0.000017,0.000198,0.000160,0.000222,0.000000,0.000000,0.001603,0.303095,-0.003160,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000193,0.000158,0.000211,0.000000,0.000000,0.001568,0.299977,-0.003118,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000189,0.000156,0.000208,0.000000,0.000000,0.001534,0.296900,-0.003077,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000185,0.000154,0.000205,0.000000,0.000000,0.001502,0.293865,-0.003036,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000181,0.000151,0.000202,0.000000,0.000000,0.001472,0.290869,-0.002995,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000178,0.000149,0.000200,0.000000,0.000000,0.001444,0.287914,-0.002956,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000174,0.000147,0.000197,0.000113,0.000113,0.001417,0.284886,-0.003028,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000171,0.000145,0.000195,0.000325,0.000325,0.001391,0.281689,-0.003197,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000168,0.000143,0.000193,0.000478,0.000478,0.001366,0.278384,-0.003305,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000165,0.000141,0.000191,0.000599,0.000599,0.001341,0.275004,-0.003380,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000411,0.000000,0.000000,0.000000,0.000027,0.000162,0.000139,0.000190,0.000693,0.000693,0.001318,0.271981,-0.003023,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000159,0.000136,0.000188,0.000622,0.000622,0.001295,0.268724,-0.003256,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000156,0.000134,0.000186,0.000554,0.000554,0.001273,0.265517,-0.003208,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000154,0.000132,0.000185,0.000505,0.000505,0.001251,0.262399,-0.003117,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000151,0.000130,0.000183,0.000426,0.000426,0.001230,0.259402,-0.002997,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000149,0.000128,0.000182,0.000318,0.000318,0.001209,0.256550,-0.002852,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000146,0.000126,0.000181,0.000174,0.000174,0.001190,0.253879,-0.002672,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000144,0.000125,0.000180,0.000026,0.000026,0.001171,0.251389,-0.002490,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000141,0.000123,0.000179,0.000000,0.000000,0.001152,0.248958,-0.002431,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000139,0.000121,0.000178,0.000000,0.000000,0.001134,0.246559,-0.002399,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000137,0.000120,0.000177,0.000000,0.000000,0.001117,0.244192,-0.002367,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000135,0.000118,0.000176,0.000000,0.000000,0.001100,0.241857,-0.002335,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000133,0.000117,0.000175,0.000000,0.000000,0.001084,0.239552,-0.002304,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000131,0.000115,0.000175,0.000000,0.000000,0.001068,0.237279,-0.002274,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000129,0.000113,0.000174,0.000000,0.000000,0.001052,0.235035,-0.002244,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000127,0.000112,0.000173,0.000000,0.000000,0.001037,0.232821,-0.002214,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000125,0.000110,0.000173,0.000000,0.000000,0.001022,0.230637,-0.002184,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000123,0.000109,0.000173,0.000000,0.000000,0.001008,0.228482,-0.002155,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000122,0.000108,0.000172,0.000000,0.000000,0.000994,0.226355,-0.002127,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000120,0.000106,0.000172,0.000000,0.000000,0.000980,0.224257,-0.002098,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000118,0.000105,0.000172,0.000121,0.000121,0.000966,0.222067,-0.002190,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000117,0.000103,0.000171,0.000362,0.000362,0.000953,0.219669,-0.002398,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000115,0.000101,0.000171,0.000534,0.000534,0.000939,0.217132,-0.002537,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000113,0.000099,0.000171,0.000655,0.000655,0.000925,0.214510,-0.002622,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000111,0.000098,0.000170,0.000658,0.000658,0.000911,0.211919,-0.002591,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000110,0.000096,0.000170,0.000581,0.000581,0.000898,0.209439,-0.002480,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003226,0.000576,0.001047,0.000576,0.000062,0.000108,0.000096,0.000746,0.000510,0.000510,0.000885,0.209212,-0.000228,1.000000,0.000471 +69,2022-08-03 21:00:00,0.000454,0.000262,0.000000,0.000262,0.000063,0.000107,0.000095,0.000432,0.000467,0.000467,0.000873,0.207328,-0.001883,1.000000,0.000209 +70,2022-08-03 22:00:00,0.000000,0.000209,0.000000,0.000209,0.000065,0.000105,0.000093,0.000379,0.000390,0.000390,0.000861,0.205098,-0.002230,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000084,0.000000,0.000000,0.000000,0.000066,0.000104,0.000092,0.000170,0.000298,0.000298,0.000849,0.203071,-0.002027,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000102,0.000090,0.000170,0.000179,0.000179,0.000837,0.201105,-0.001966,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000101,0.000089,0.000170,0.000037,0.000037,0.000825,0.199305,-0.001800,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000099,0.000088,0.000170,0.000000,0.000000,0.000814,0.197566,-0.001739,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000098,0.000087,0.000170,0.000000,0.000000,0.000803,0.195851,-0.001716,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000097,0.000086,0.000170,0.000000,0.000000,0.000791,0.194157,-0.001693,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000010,0.000000,0.000000,0.000000,0.000075,0.000095,0.000084,0.000170,0.000000,0.000000,0.000781,0.192496,-0.001661,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000094,0.000083,0.000171,0.000000,0.000000,0.000770,0.190848,-0.001649,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000093,0.000082,0.000171,0.000000,0.000000,0.000760,0.189221,-0.001627,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000091,0.000081,0.000171,0.000000,0.000000,0.000749,0.187616,-0.001605,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000090,0.000080,0.000171,0.000000,0.000000,0.000739,0.186032,-0.001584,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000089,0.000079,0.000172,0.000000,0.000000,0.000729,0.184470,-0.001563,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000088,0.000078,0.000172,0.000000,0.000000,0.000719,0.182928,-0.001542,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000087,0.000077,0.000172,0.000000,0.000000,0.000710,0.181406,-0.001521,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000085,0.000076,0.000173,0.000000,0.000000,0.000700,0.179905,-0.001501,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000084,0.000075,0.000173,0.000118,0.000118,0.000691,0.178308,-0.001597,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000083,0.000074,0.000173,0.000360,0.000360,0.000681,0.176492,-0.001816,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000082,0.000072,0.000174,0.000533,0.000533,0.000672,0.174530,-0.001962,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000081,0.000071,0.000174,0.000663,0.000663,0.000662,0.172466,-0.002064,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000079,0.000069,0.000174,0.000717,0.000717,0.000652,0.170376,-0.002090,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000078,0.000068,0.000175,0.000640,0.000640,0.000642,0.168390,-0.001986,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000077,0.000067,0.000175,0.000576,0.000576,0.000632,0.166493,-0.001897,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000076,0.000066,0.000175,0.000517,0.000517,0.000621,0.164680,-0.001813,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000074,0.000064,0.000176,0.000427,0.000427,0.000611,0.162980,-0.001700,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000073,0.000063,0.000176,0.000324,0.000324,0.000601,0.161404,-0.001576,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000072,0.000062,0.000176,0.000186,0.000186,0.000592,0.159985,-0.001419,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000071,0.000061,0.000177,0.000042,0.000042,0.000582,0.158728,-0.001258,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000070,0.000061,0.000177,0.000000,0.000000,0.000573,0.157528,-0.001200,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000069,0.000060,0.000178,0.000000,0.000000,0.000564,0.156344,-0.001184,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000068,0.000059,0.000178,0.000000,0.000000,0.000556,0.155176,-0.001168,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000067,0.000058,0.000179,0.000000,0.000000,0.000547,0.154023,-0.001153,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000066,0.000058,0.000179,0.000000,0.000000,0.000539,0.152886,-0.001137,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000065,0.000057,0.000180,0.000000,0.000000,0.000531,0.151763,-0.001122,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000064,0.000056,0.000181,0.000000,0.000000,0.000524,0.150656,-0.001107,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000063,0.000055,0.000181,0.000000,0.000000,0.000516,0.149563,-0.001093,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000062,0.000055,0.000182,0.000000,0.000000,0.000509,0.148485,-0.001078,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000061,0.000054,0.000182,0.000000,0.000000,0.000502,0.147422,-0.001064,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000060,0.000053,0.000183,0.000000,0.000000,0.000494,0.146372,-0.001050,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000059,0.000052,0.000184,0.000000,0.000000,0.000488,0.145336,-0.001036,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000058,0.000052,0.000185,0.000131,0.000131,0.000481,0.144185,-0.001151,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000058,0.000051,0.000185,0.000374,0.000374,0.000474,0.142810,-0.001375,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000057,0.000050,0.000186,0.000541,0.000541,0.000467,0.141288,-0.001522,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000056,0.000049,0.000187,0.000663,0.000663,0.000459,0.139665,-0.001623,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000055,0.000047,0.000187,0.000685,0.000685,0.000452,0.138042,-0.001622,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000054,0.000046,0.000188,0.000615,0.000615,0.000444,0.136573,-0.001469,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000135,0.000053,0.000045,0.000188,0.000551,0.000551,0.000437,0.135187,-0.001387,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000052,0.000045,0.000189,0.000461,0.000461,0.000429,0.133907,-0.001280,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000051,0.000044,0.000190,0.000389,0.000389,0.000422,0.132715,-0.001192,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000208,0.000000,0.000000,0.000000,0.000140,0.000050,0.000043,0.000190,0.000294,0.000294,0.000414,0.131777,-0.000938,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000141,0.000049,0.000042,0.000191,0.000177,0.000177,0.000407,0.130823,-0.000954,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000665,0.000037,0.000067,0.000037,0.000143,0.000049,0.000042,0.000228,0.000061,0.000061,0.000401,0.130523,-0.000300,1.000000,0.000030 +122,2022-08-06 02:00:00,0.001528,0.000218,0.000366,0.000218,0.000145,0.000048,0.000043,0.000411,0.000000,0.000000,0.000395,0.130844,0.000321,1.000000,0.000178 +123,2022-08-06 03:00:00,0.000817,0.000170,0.000118,0.000170,0.000146,0.000047,0.000042,0.000363,0.000000,0.000000,0.000390,0.130705,-0.000139,1.000000,0.000126 +124,2022-08-06 04:00:00,0.000401,0.000120,0.000031,0.000120,0.000148,0.000047,0.000042,0.000314,0.000000,0.000000,0.000386,0.130243,-0.000462,1.000000,0.000037 +125,2022-08-06 05:00:00,0.000401,0.000048,0.000031,0.000048,0.000149,0.000046,0.000042,0.000243,0.000000,0.000000,0.000381,0.129787,-0.000456,1.000000,0.000020 +126,2022-08-06 06:00:00,0.000534,0.000043,0.000053,0.000043,0.000151,0.000046,0.000042,0.000239,0.000000,0.000000,0.000377,0.129447,-0.000341,1.000000,0.000030 +127,2022-08-06 07:00:00,0.000000,0.000019,0.000000,0.000019,0.000152,0.000045,0.000041,0.000217,0.000000,0.000000,0.000373,0.128636,-0.000811,1.000000,0.000011 +128,2022-08-06 08:00:00,0.000000,0.000011,0.000000,0.000011,0.000154,0.000045,0.000040,0.000209,0.000000,0.000000,0.000368,0.127836,-0.000800,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000044,0.000040,0.000199,0.000000,0.000000,0.000364,0.127046,-0.000789,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000044,0.000039,0.000200,0.000000,0.000000,0.000360,0.126267,-0.000779,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000039,0.000201,0.000000,0.000000,0.000356,0.125499,-0.000769,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000043,0.000038,0.000202,0.000000,0.000000,0.000351,0.124741,-0.000758,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000042,0.000038,0.000203,0.000000,0.000000,0.000347,0.123992,-0.000748,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000042,0.000037,0.000204,0.000110,0.000110,0.000343,0.123146,-0.000846,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000041,0.000037,0.000205,0.000344,0.000344,0.000338,0.122080,-0.001066,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000040,0.000036,0.000206,0.000505,0.000505,0.000333,0.120869,-0.001211,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000040,0.000035,0.000207,0.000637,0.000637,0.000328,0.119544,-0.001325,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000039,0.000034,0.000208,0.000720,0.000720,0.000323,0.118154,-0.001390,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000039,0.000033,0.000208,0.000658,0.000658,0.000317,0.116844,-0.001310,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000032,0.000209,0.000583,0.000583,0.000312,0.115625,-0.001218,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000037,0.000031,0.000210,0.000527,0.000527,0.000306,0.114478,-0.001147,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000036,0.000031,0.000211,0.000433,0.000433,0.000300,0.113439,-0.001039,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000036,0.000030,0.000211,0.000327,0.000327,0.000295,0.112519,-0.000921,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000035,0.000030,0.000212,0.000179,0.000179,0.000289,0.111756,-0.000763,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000034,0.000029,0.000213,0.000036,0.000036,0.000284,0.111144,-0.000612,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000034,0.000029,0.000214,0.000000,0.000000,0.000279,0.110577,-0.000568,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000033,0.000028,0.000214,0.000000,0.000000,0.000274,0.110017,-0.000560,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000033,0.000028,0.000215,0.000000,0.000000,0.000269,0.109464,-0.000553,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000032,0.000028,0.000216,0.000000,0.000000,0.000265,0.108919,-0.000545,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000032,0.000027,0.000217,0.000000,0.000000,0.000260,0.108381,-0.000538,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000031,0.000027,0.000218,0.000000,0.000000,0.000256,0.107850,-0.000531,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000031,0.000026,0.000219,0.000000,0.000000,0.000252,0.107326,-0.000524,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000030,0.000026,0.000220,0.000000,0.000000,0.000248,0.106809,-0.000517,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000030,0.000026,0.000221,0.000000,0.000000,0.000244,0.106299,-0.000510,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000029,0.000025,0.000222,0.000000,0.000000,0.000241,0.105796,-0.000503,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000029,0.000025,0.000223,0.000000,0.000000,0.000237,0.105299,-0.000497,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000028,0.000025,0.000223,0.000000,0.000000,0.000233,0.104809,-0.000490,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000028,0.000024,0.000224,0.000109,0.000109,0.000230,0.104218,-0.000591,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000027,0.000024,0.000225,0.000347,0.000347,0.000226,0.103400,-0.000818,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000023,0.000226,0.000514,0.000514,0.000222,0.102428,-0.000972,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000227,0.000635,0.000635,0.000218,0.101349,-0.001079,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000022,0.000228,0.000719,0.000719,0.000214,0.100202,-0.001147,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000021,0.000229,0.000653,0.000653,0.000210,0.099135,-0.001067,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000025,0.000020,0.000229,0.000575,0.000575,0.000205,0.098160,-0.000975,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000024,0.000020,0.000230,0.000514,0.000514,0.000200,0.097258,-0.000902,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000024,0.000019,0.000231,0.000426,0.000426,0.000196,0.096455,-0.000803,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000023,0.000019,0.000232,0.000320,0.000320,0.000191,0.095766,-0.000688,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000018,0.000232,0.000147,0.000147,0.000187,0.095258,-0.000509,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000018,0.000233,0.000009,0.000009,0.000183,0.094892,-0.000365,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000022,0.000018,0.000234,0.000000,0.000000,0.000179,0.094541,-0.000352,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000021,0.000018,0.000235,0.000000,0.000000,0.000175,0.094194,-0.000347,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000021,0.000017,0.000236,0.000000,0.000000,0.000172,0.093851,-0.000342,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000020,0.000017,0.000237,0.000000,0.000000,0.000168,0.093513,-0.000338,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000020,0.000017,0.000237,0.000000,0.000000,0.000165,0.093180,-0.000333,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000017,0.000238,0.000000,0.000000,0.000162,0.092851,-0.000329,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000016,0.000239,0.000000,0.000000,0.000159,0.092526,-0.000325,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000019,0.000016,0.000240,0.000000,0.000000,0.000157,0.092206,-0.000320,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000019,0.000016,0.000241,0.000000,0.000000,0.000154,0.091890,-0.000316,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000018,0.000016,0.000242,0.000000,0.000000,0.000151,0.091578,-0.000312,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000018,0.000016,0.000243,0.000000,0.000000,0.000149,0.091271,-0.000308,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000018,0.000015,0.000244,0.000000,0.000000,0.000147,0.090967,-0.000304,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000017,0.000015,0.000245,0.000093,0.000000,0.000144,0.090668,-0.000300,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000017,0.000015,0.000246,0.000332,0.000000,0.000142,0.090372,-0.000296,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000017,0.000015,0.000247,0.000506,0.000000,0.000140,0.090080,-0.000292,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000017,0.000015,0.000247,0.000624,0.000000,0.000138,0.089793,-0.000288,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000016,0.000014,0.000248,0.000716,0.000000,0.000136,0.089509,-0.000284,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000016,0.000014,0.000249,0.000628,0.000000,0.000134,0.089229,-0.000280,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000016,0.000014,0.000250,0.000559,0.000000,0.000132,0.088952,-0.000276,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000016,0.000014,0.000251,0.000515,0.000000,0.000130,0.088679,-0.000273,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000015,0.000014,0.000252,0.000425,0.000000,0.000128,0.088410,-0.000269,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000015,0.000013,0.000253,0.000318,0.000000,0.000126,0.088145,-0.000266,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000015,0.000013,0.000254,0.000182,0.000000,0.000124,0.087883,-0.000262,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000015,0.000013,0.000255,0.000032,0.000000,0.000123,0.087624,-0.000259,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000115,0.000001,0.000003,0.000001,0.000241,0.000015,0.000013,0.000257,0.000000,0.000000,0.000121,0.087480,-0.000144,1.000000,0.000001 +195,2022-08-09 03:00:00,0.000037,0.000001,0.000000,0.000001,0.000242,0.000014,0.000013,0.000257,0.000000,0.000000,0.000119,0.087263,-0.000217,1.000000,0.000001 +196,2022-08-09 04:00:00,0.000000,0.000001,0.000000,0.000001,0.000243,0.000014,0.000013,0.000258,0.000000,0.000000,0.000118,0.087013,-0.000250,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000014,0.000012,0.000259,0.000000,0.000000,0.000116,0.086766,-0.000247,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000014,0.000012,0.000259,0.000000,0.000000,0.000115,0.086522,-0.000244,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000014,0.000012,0.000260,0.000000,0.000000,0.000113,0.086281,-0.000240,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000013,0.000012,0.000261,0.000000,0.000000,0.000112,0.086044,-0.000237,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000013,0.000012,0.000262,0.000000,0.000000,0.000110,0.085810,-0.000234,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000013,0.000012,0.000263,0.000000,0.000000,0.000109,0.085579,-0.000231,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000013,0.000012,0.000264,0.000000,0.000000,0.000107,0.085351,-0.000228,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000013,0.000011,0.000265,0.000000,0.000000,0.000106,0.085126,-0.000225,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000013,0.000011,0.000266,0.000000,0.000000,0.000104,0.084904,-0.000222,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000012,0.000011,0.000267,0.000099,0.000000,0.000103,0.084685,-0.000219,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620896.csv b/test/channel_loss/channel_forcing/et/cat-2620896.csv new file mode 100644 index 000000000..b8c92ce09 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620896.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000133,0.000000,0.000000,0.000000,0.000000,0.001499,0.000568,0.001499,0.000172,0.000172,0.010665,0.425658,-0.004911,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001369,0.000559,0.001369,0.000043,0.000043,0.009856,0.420816,-0.004842,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001258,0.000551,0.001258,0.000000,0.000000,0.009149,0.416089,-0.004727,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001162,0.000543,0.001162,0.000000,0.000000,0.008530,0.411432,-0.004657,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001079,0.000535,0.001079,0.000000,0.000000,0.007986,0.406846,-0.004587,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001007,0.000527,0.001008,0.000000,0.000000,0.007505,0.402327,-0.004518,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000944,0.000519,0.000945,0.000000,0.000000,0.007080,0.397877,-0.004450,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000889,0.000511,0.000890,0.000000,0.000000,0.006702,0.393493,-0.004384,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000840,0.000503,0.000841,0.000000,0.000000,0.006365,0.389175,-0.004318,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000797,0.000496,0.000798,0.000000,0.000000,0.006064,0.384921,-0.004254,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000759,0.000488,0.000760,0.000000,0.000000,0.005794,0.380731,-0.004190,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000724,0.000481,0.000726,0.000000,0.000000,0.005550,0.376604,-0.004127,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000693,0.000474,0.000696,0.000000,0.000000,0.005331,0.372539,-0.004065,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000666,0.000467,0.000668,0.000000,0.000000,0.005132,0.368534,-0.004005,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000641,0.000460,0.000644,0.000121,0.000121,0.004951,0.364470,-0.004064,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000618,0.000452,0.000621,0.000348,0.000348,0.004785,0.360243,-0.004227,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000597,0.000444,0.000601,0.000522,0.000522,0.004633,0.355909,-0.004334,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000577,0.000437,0.000582,0.000655,0.000655,0.004492,0.351508,-0.004401,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000560,0.000429,0.000565,0.000628,0.000628,0.004362,0.347200,-0.004308,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000543,0.000422,0.000549,0.000527,0.000527,0.004240,0.343180,-0.004020,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000006,0.000528,0.000415,0.000534,0.000479,0.000479,0.004127,0.339206,-0.003974,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000454,0.000000,0.000001,0.000000,0.000007,0.000514,0.000409,0.000521,0.000376,0.000376,0.004022,0.335776,-0.003430,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000008,0.000500,0.000402,0.000508,0.000324,0.000324,0.003924,0.332065,-0.003711,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000471,0.000003,0.000005,0.000003,0.000008,0.000488,0.000397,0.000500,0.000251,0.000251,0.003833,0.328878,-0.003187,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000451,0.000006,0.000009,0.000006,0.000009,0.000477,0.000391,0.000492,0.000166,0.000166,0.003747,0.325799,-0.003079,1.000000,0.000005 +25,2022-08-02 01:00:00,0.001092,0.000062,0.000107,0.000062,0.000010,0.000466,0.000387,0.000538,0.000067,0.000067,0.003668,0.323397,-0.002401,1.000000,0.000050 +26,2022-08-02 02:00:00,0.001740,0.000187,0.000287,0.000187,0.000011,0.000456,0.000384,0.000654,0.000000,0.000000,0.003595,0.321560,-0.001838,1.000000,0.000151 +27,2022-08-02 03:00:00,0.001619,0.000231,0.000251,0.000231,0.000011,0.000447,0.000380,0.000690,0.000000,0.000000,0.003528,0.319666,-0.001894,1.000000,0.000170 +28,2022-08-02 04:00:00,0.001501,0.000240,0.000217,0.000240,0.000012,0.000439,0.000377,0.000691,0.000000,0.000000,0.003465,0.317718,-0.001948,1.000000,0.000148 +29,2022-08-02 05:00:00,0.000598,0.000125,0.000038,0.000125,0.000013,0.000431,0.000372,0.000570,0.000000,0.000000,0.003406,0.315086,-0.002631,1.000000,0.000060 +30,2022-08-02 06:00:00,0.000372,0.000061,0.000015,0.000061,0.000014,0.000424,0.000367,0.000499,0.000000,0.000000,0.003350,0.312294,-0.002792,1.000000,0.000014 +31,2022-08-02 07:00:00,0.000000,0.000011,0.000000,0.000011,0.000015,0.000416,0.000362,0.000442,0.000000,0.000000,0.003295,0.309191,-0.003103,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000016,0.000409,0.000356,0.000428,0.000000,0.000000,0.003242,0.306135,-0.003056,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000403,0.000351,0.000419,0.000000,0.000000,0.003190,0.303125,-0.003010,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000396,0.000346,0.000413,0.000000,0.000000,0.003140,0.300159,-0.002965,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000390,0.000340,0.000408,0.000000,0.000000,0.003090,0.297239,-0.002921,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000383,0.000335,0.000403,0.000000,0.000000,0.003043,0.294361,-0.002877,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000377,0.000330,0.000397,0.000000,0.000000,0.002996,0.291527,-0.002834,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000371,0.000325,0.000392,0.000111,0.000111,0.002950,0.288626,-0.002901,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000365,0.000320,0.000387,0.000318,0.000318,0.002905,0.285565,-0.003061,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000359,0.000314,0.000383,0.000467,0.000467,0.002859,0.282402,-0.003162,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000353,0.000308,0.000378,0.000589,0.000589,0.002815,0.279167,-0.003235,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000453,0.000000,0.000000,0.000000,0.000025,0.000348,0.000303,0.000373,0.000685,0.000685,0.002770,0.276332,-0.002835,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000026,0.000342,0.000298,0.000368,0.000612,0.000612,0.002726,0.273227,-0.003105,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000336,0.000293,0.000364,0.000548,0.000548,0.002683,0.270169,-0.003058,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000331,0.000287,0.000359,0.000500,0.000500,0.002639,0.267205,-0.002964,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000325,0.000282,0.000355,0.000422,0.000422,0.002596,0.264361,-0.002844,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000320,0.000277,0.000350,0.000312,0.000312,0.002554,0.261669,-0.002692,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000314,0.000273,0.000346,0.000170,0.000170,0.002513,0.259157,-0.002512,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000309,0.000269,0.000342,0.000023,0.000023,0.002473,0.256827,-0.002330,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000304,0.000265,0.000338,0.000000,0.000000,0.002434,0.254555,-0.002272,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000299,0.000261,0.000334,0.000000,0.000000,0.002396,0.252317,-0.002238,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000294,0.000257,0.000331,0.000000,0.000000,0.002358,0.250112,-0.002205,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000290,0.000253,0.000327,0.000000,0.000000,0.002322,0.247941,-0.002172,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000285,0.000249,0.000324,0.000000,0.000000,0.002286,0.245802,-0.002139,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000281,0.000246,0.000321,0.000000,0.000000,0.002251,0.243694,-0.002107,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000276,0.000242,0.000317,0.000000,0.000000,0.002217,0.241619,-0.002076,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000272,0.000238,0.000314,0.000000,0.000000,0.002184,0.239574,-0.002045,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000268,0.000235,0.000311,0.000000,0.000000,0.002151,0.237560,-0.002014,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000263,0.000231,0.000308,0.000000,0.000000,0.002119,0.235577,-0.001984,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000259,0.000228,0.000306,0.000000,0.000000,0.002087,0.233623,-0.001954,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000255,0.000224,0.000303,0.000000,0.000000,0.002056,0.231698,-0.001925,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000252,0.000221,0.000300,0.000119,0.000119,0.002025,0.229685,-0.002013,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000248,0.000217,0.000298,0.000359,0.000359,0.001994,0.227465,-0.002219,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000244,0.000213,0.000295,0.000533,0.000533,0.001963,0.225108,-0.002357,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000240,0.000208,0.000292,0.000656,0.000656,0.001932,0.222665,-0.002443,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000236,0.000204,0.000290,0.000660,0.000660,0.001901,0.220254,-0.002411,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000232,0.000200,0.000287,0.000578,0.000578,0.001869,0.217960,-0.002294,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003594,0.000385,0.000699,0.000385,0.000056,0.000228,0.000201,0.000669,0.000509,0.000509,0.001842,0.218620,0.000660,1.000000,0.000315 +69,2022-08-03 21:00:00,0.000497,0.000175,0.000000,0.000175,0.000058,0.000225,0.000198,0.000457,0.000459,0.000459,0.001815,0.216957,-0.001663,1.000000,0.000140 +70,2022-08-03 22:00:00,0.000000,0.000140,0.000000,0.000140,0.000059,0.000221,0.000195,0.000420,0.000385,0.000385,0.001789,0.214903,-0.002054,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000088,0.000000,0.000000,0.000000,0.000060,0.000218,0.000191,0.000278,0.000293,0.000293,0.001762,0.213056,-0.001846,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000215,0.000188,0.000276,0.000177,0.000177,0.001735,0.211265,-0.001792,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000211,0.000185,0.000274,0.000034,0.000034,0.001709,0.209641,-0.001624,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000208,0.000183,0.000273,0.000000,0.000000,0.001684,0.208075,-0.001566,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000205,0.000180,0.000271,0.000000,0.000000,0.001658,0.206533,-0.001542,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000202,0.000177,0.000269,0.000000,0.000000,0.001634,0.205014,-0.001519,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000068,0.000199,0.000174,0.000267,0.000000,0.000000,0.001609,0.203518,-0.001496,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000196,0.000172,0.000265,0.000000,0.000000,0.001586,0.202044,-0.001474,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000193,0.000169,0.000264,0.000000,0.000000,0.001562,0.200592,-0.001452,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000190,0.000167,0.000262,0.000000,0.000000,0.001539,0.199162,-0.001430,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000187,0.000164,0.000261,0.000000,0.000000,0.001516,0.197753,-0.001409,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000184,0.000162,0.000259,0.000000,0.000000,0.001494,0.196365,-0.001388,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000181,0.000159,0.000258,0.000000,0.000000,0.001472,0.194998,-0.001367,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000179,0.000157,0.000257,0.000000,0.000000,0.001450,0.193652,-0.001347,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000176,0.000155,0.000255,0.000000,0.000000,0.001429,0.192325,-0.001326,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000173,0.000152,0.000254,0.000117,0.000117,0.001407,0.190904,-0.001421,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000171,0.000149,0.000253,0.000357,0.000357,0.001386,0.189267,-0.001637,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000168,0.000146,0.000251,0.000530,0.000530,0.001364,0.187484,-0.001783,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000165,0.000143,0.000250,0.000662,0.000662,0.001342,0.185598,-0.001886,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000162,0.000139,0.000248,0.000714,0.000714,0.001319,0.183689,-0.001909,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000159,0.000136,0.000247,0.000635,0.000635,0.001296,0.181886,-0.001803,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000156,0.000133,0.000245,0.000577,0.000577,0.001272,0.180167,-0.001719,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000153,0.000130,0.000244,0.000517,0.000517,0.001249,0.178533,-0.001634,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000151,0.000127,0.000242,0.000424,0.000424,0.001226,0.177015,-0.001518,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000148,0.000125,0.000241,0.000318,0.000318,0.001203,0.175625,-0.001391,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000145,0.000123,0.000239,0.000182,0.000182,0.001181,0.174389,-0.001236,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000142,0.000121,0.000238,0.000037,0.000037,0.001160,0.173315,-0.001074,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000140,0.000119,0.000237,0.000000,0.000000,0.001139,0.172293,-0.001022,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000137,0.000117,0.000236,0.000000,0.000000,0.001119,0.171286,-0.001007,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000135,0.000116,0.000235,0.000000,0.000000,0.001100,0.170295,-0.000992,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000133,0.000114,0.000234,0.000000,0.000000,0.001081,0.169318,-0.000977,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000130,0.000112,0.000233,0.000000,0.000000,0.001063,0.168356,-0.000962,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000128,0.000110,0.000232,0.000000,0.000000,0.001045,0.167408,-0.000948,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000126,0.000109,0.000231,0.000000,0.000000,0.001028,0.166475,-0.000933,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000124,0.000107,0.000231,0.000000,0.000000,0.001011,0.165555,-0.000920,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000122,0.000106,0.000230,0.000000,0.000000,0.000995,0.164650,-0.000906,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000120,0.000104,0.000229,0.000000,0.000000,0.000979,0.163757,-0.000892,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000118,0.000102,0.000229,0.000000,0.000000,0.000964,0.162879,-0.000879,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000116,0.000101,0.000228,0.000000,0.000000,0.000949,0.162013,-0.000866,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000114,0.000099,0.000228,0.000129,0.000129,0.000933,0.161033,-0.000980,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000112,0.000097,0.000227,0.000371,0.000371,0.000918,0.159829,-0.001203,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000110,0.000095,0.000227,0.000541,0.000541,0.000902,0.158477,-0.001353,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000108,0.000092,0.000226,0.000665,0.000665,0.000886,0.157022,-0.001455,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000106,0.000089,0.000225,0.000688,0.000688,0.000869,0.155566,-0.001456,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000120,0.000104,0.000087,0.000224,0.000620,0.000620,0.000852,0.154261,-0.001305,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000121,0.000102,0.000085,0.000224,0.000557,0.000557,0.000835,0.153038,-0.001223,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000123,0.000100,0.000083,0.000223,0.000460,0.000460,0.000818,0.151929,-0.001109,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000098,0.000081,0.000222,0.000388,0.000388,0.000802,0.150907,-0.001021,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000240,0.000000,0.000000,0.000000,0.000125,0.000096,0.000080,0.000221,0.000289,0.000289,0.000786,0.150172,-0.000735,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000127,0.000094,0.000079,0.000221,0.000173,0.000173,0.000770,0.149389,-0.000783,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000704,0.000019,0.000034,0.000019,0.000128,0.000092,0.000078,0.000239,0.000058,0.000058,0.000756,0.149329,-0.000060,1.000000,0.000015 +122,2022-08-06 02:00:00,0.001608,0.000116,0.000195,0.000116,0.000129,0.000091,0.000080,0.000336,0.000000,0.000000,0.000745,0.150058,0.000729,1.000000,0.000095 +123,2022-08-06 03:00:00,0.000872,0.000089,0.000061,0.000089,0.000131,0.000090,0.000080,0.000310,0.000000,0.000000,0.000735,0.150183,0.000126,1.000000,0.000066 +124,2022-08-06 04:00:00,0.000325,0.000059,0.000009,0.000059,0.000132,0.000089,0.000079,0.000280,0.000000,0.000000,0.000726,0.149820,-0.000364,1.000000,0.000016 +125,2022-08-06 05:00:00,0.000325,0.000019,0.000009,0.000019,0.000133,0.000087,0.000079,0.000240,0.000000,0.000000,0.000717,0.149461,-0.000358,1.000000,0.000006 +126,2022-08-06 06:00:00,0.000498,0.000015,0.000020,0.000015,0.000135,0.000086,0.000078,0.000236,0.000000,0.000000,0.000709,0.149267,-0.000194,1.000000,0.000011 +127,2022-08-06 07:00:00,0.000000,0.000007,0.000000,0.000007,0.000136,0.000085,0.000077,0.000228,0.000000,0.000000,0.000701,0.148605,-0.000662,1.000000,0.000004 +128,2022-08-06 08:00:00,0.000000,0.000004,0.000000,0.000004,0.000137,0.000084,0.000076,0.000226,0.000000,0.000000,0.000692,0.147953,-0.000652,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000083,0.000075,0.000222,0.000000,0.000000,0.000684,0.147311,-0.000642,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000082,0.000074,0.000222,0.000000,0.000000,0.000675,0.146678,-0.000633,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000081,0.000073,0.000222,0.000000,0.000000,0.000667,0.146055,-0.000623,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000080,0.000072,0.000223,0.000000,0.000000,0.000658,0.145441,-0.000614,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000079,0.000070,0.000223,0.000000,0.000000,0.000649,0.144837,-0.000605,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000078,0.000069,0.000223,0.000107,0.000107,0.000640,0.144136,-0.000701,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000077,0.000068,0.000223,0.000338,0.000338,0.000631,0.143218,-0.000918,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000076,0.000066,0.000223,0.000497,0.000497,0.000621,0.142157,-0.001060,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000074,0.000064,0.000223,0.000633,0.000633,0.000610,0.140979,-0.001179,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000073,0.000061,0.000223,0.000719,0.000719,0.000599,0.139733,-0.001246,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000071,0.000059,0.000223,0.000657,0.000657,0.000587,0.138566,-0.001167,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000070,0.000057,0.000222,0.000584,0.000584,0.000574,0.137490,-0.001076,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000068,0.000056,0.000222,0.000527,0.000527,0.000562,0.136485,-0.001005,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000067,0.000054,0.000222,0.000431,0.000431,0.000549,0.135590,-0.000895,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000065,0.000053,0.000221,0.000324,0.000324,0.000536,0.134814,-0.000776,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000064,0.000052,0.000221,0.000178,0.000178,0.000524,0.134193,-0.000621,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000062,0.000051,0.000221,0.000033,0.000033,0.000513,0.133724,-0.000469,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000050,0.000221,0.000000,0.000000,0.000502,0.133295,-0.000429,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000060,0.000049,0.000221,0.000000,0.000000,0.000491,0.132872,-0.000423,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000059,0.000049,0.000221,0.000000,0.000000,0.000481,0.132456,-0.000416,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000048,0.000221,0.000000,0.000000,0.000472,0.132046,-0.000410,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000047,0.000221,0.000000,0.000000,0.000463,0.131642,-0.000404,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000055,0.000046,0.000221,0.000000,0.000000,0.000454,0.131244,-0.000398,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000054,0.000046,0.000221,0.000000,0.000000,0.000445,0.130852,-0.000392,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000053,0.000045,0.000221,0.000000,0.000000,0.000437,0.130465,-0.000386,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000052,0.000044,0.000222,0.000000,0.000000,0.000429,0.130085,-0.000380,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000051,0.000044,0.000222,0.000000,0.000000,0.000422,0.129710,-0.000375,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000050,0.000043,0.000222,0.000000,0.000000,0.000414,0.129341,-0.000369,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000049,0.000042,0.000222,0.000000,0.000000,0.000407,0.128978,-0.000364,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000049,0.000042,0.000223,0.000107,0.000107,0.000400,0.128514,-0.000464,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000048,0.000040,0.000223,0.000344,0.000344,0.000393,0.127823,-0.000690,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000047,0.000039,0.000223,0.000513,0.000513,0.000385,0.126978,-0.000846,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000046,0.000037,0.000223,0.000632,0.000632,0.000376,0.126027,-0.000951,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000045,0.000035,0.000223,0.000721,0.000721,0.000367,0.125003,-0.001024,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000043,0.000034,0.000223,0.000651,0.000651,0.000357,0.124063,-0.000940,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000032,0.000223,0.000575,0.000575,0.000347,0.123212,-0.000851,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000031,0.000223,0.000508,0.000508,0.000337,0.122439,-0.000773,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000040,0.000030,0.000223,0.000421,0.000421,0.000327,0.121764,-0.000675,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000029,0.000223,0.000315,0.000315,0.000317,0.121203,-0.000560,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000037,0.000028,0.000223,0.000143,0.000143,0.000308,0.120821,-0.000383,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000036,0.000027,0.000223,0.000007,0.000007,0.000299,0.120578,-0.000243,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000027,0.000223,0.000000,0.000000,0.000291,0.120346,-0.000232,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000034,0.000027,0.000223,0.000000,0.000000,0.000283,0.120117,-0.000229,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000033,0.000026,0.000223,0.000000,0.000000,0.000276,0.119891,-0.000225,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000026,0.000223,0.000000,0.000000,0.000269,0.119669,-0.000222,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000032,0.000026,0.000223,0.000000,0.000000,0.000263,0.119451,-0.000219,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000031,0.000025,0.000224,0.000000,0.000000,0.000257,0.119235,-0.000216,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000030,0.000025,0.000224,0.000000,0.000000,0.000251,0.119023,-0.000212,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000030,0.000024,0.000225,0.000000,0.000000,0.000246,0.118814,-0.000209,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000029,0.000024,0.000225,0.000000,0.000000,0.000241,0.118608,-0.000206,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000029,0.000024,0.000225,0.000000,0.000000,0.000236,0.118405,-0.000203,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000028,0.000023,0.000226,0.000000,0.000000,0.000231,0.118205,-0.000200,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000027,0.000023,0.000226,0.000000,0.000000,0.000226,0.118008,-0.000197,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000027,0.000022,0.000227,0.000090,0.000090,0.000222,0.117725,-0.000283,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000026,0.000022,0.000227,0.000327,0.000327,0.000217,0.117214,-0.000511,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000026,0.000020,0.000227,0.000503,0.000503,0.000212,0.116537,-0.000677,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000025,0.000019,0.000228,0.000621,0.000621,0.000206,0.115753,-0.000784,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000024,0.000017,0.000228,0.000715,0.000715,0.000199,0.114888,-0.000865,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000023,0.000016,0.000228,0.000622,0.000622,0.000192,0.114128,-0.000760,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000022,0.000015,0.000228,0.000556,0.000556,0.000185,0.113444,-0.000683,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000021,0.000014,0.000228,0.000514,0.000514,0.000177,0.112812,-0.000632,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000020,0.000013,0.000228,0.000424,0.000424,0.000169,0.112278,-0.000534,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000020,0.000012,0.000228,0.000313,0.000313,0.000162,0.111862,-0.000417,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000019,0.000012,0.000228,0.000179,0.000179,0.000155,0.111584,-0.000278,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000011,0.000228,0.000029,0.000029,0.000148,0.111457,-0.000126,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000021,0.000000,0.000000,0.000000,0.000211,0.000017,0.000011,0.000229,0.000000,0.000000,0.000142,0.111382,-0.000075,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000013,0.000000,0.000000,0.000000,0.000212,0.000017,0.000011,0.000229,0.000000,0.000000,0.000137,0.111300,-0.000082,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000011,0.000229,0.000000,0.000000,0.000131,0.111206,-0.000093,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000011,0.000229,0.000000,0.000000,0.000127,0.111114,-0.000092,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000015,0.000011,0.000230,0.000000,0.000000,0.000123,0.111024,-0.000091,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000010,0.000230,0.000000,0.000000,0.000119,0.110934,-0.000089,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000014,0.000010,0.000231,0.000000,0.000000,0.000115,0.110846,-0.000088,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000014,0.000010,0.000231,0.000000,0.000000,0.000112,0.110760,-0.000087,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000013,0.000010,0.000232,0.000000,0.000000,0.000108,0.110674,-0.000085,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000013,0.000010,0.000232,0.000000,0.000000,0.000105,0.110590,-0.000084,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000012,0.000010,0.000233,0.000000,0.000000,0.000103,0.110507,-0.000083,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000012,0.000010,0.000233,0.000000,0.000000,0.000100,0.110426,-0.000082,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000012,0.000009,0.000234,0.000098,0.000098,0.000098,0.110248,-0.000177,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620897.csv b/test/channel_loss/channel_forcing/et/cat-2620897.csv new file mode 100644 index 000000000..a0901ddea --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620897.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000000,0.001469,0.000355,0.001469,0.000150,0.000150,0.010482,0.429348,-0.004840,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001315,0.000350,0.001315,0.000031,0.000031,0.009517,0.424691,-0.004657,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001185,0.000345,0.001185,0.000000,0.000000,0.008678,0.420130,-0.004561,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001073,0.000340,0.001073,0.000000,0.000000,0.007945,0.415633,-0.004497,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000977,0.000335,0.000977,0.000000,0.000000,0.007303,0.411199,-0.004433,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000894,0.000331,0.000895,0.000000,0.000000,0.006739,0.406828,-0.004371,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000823,0.000326,0.000823,0.000000,0.000000,0.006243,0.402519,-0.004309,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000760,0.000321,0.000761,0.000000,0.000000,0.005804,0.398270,-0.004249,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000705,0.000317,0.000706,0.000000,0.000000,0.005416,0.394082,-0.004189,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000657,0.000312,0.000659,0.000000,0.000000,0.005071,0.389952,-0.004130,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000615,0.000308,0.000616,0.000000,0.000000,0.004764,0.385881,-0.004071,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000577,0.000304,0.000579,0.000000,0.000000,0.004491,0.381867,-0.004014,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000544,0.000299,0.000546,0.000000,0.000000,0.004246,0.377910,-0.003957,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000514,0.000295,0.000517,0.000000,0.000000,0.004027,0.374008,-0.003901,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000488,0.000291,0.000491,0.000112,0.000112,0.003830,0.370051,-0.003957,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000464,0.000286,0.000468,0.000335,0.000335,0.003653,0.365930,-0.004121,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000443,0.000282,0.000447,0.000504,0.000504,0.003492,0.361701,-0.004229,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000423,0.000277,0.000428,0.000630,0.000630,0.003346,0.357407,-0.004294,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000406,0.000273,0.000411,0.000616,0.000616,0.003213,0.353188,-0.004219,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000012,0.000000,0.000000,0.000000,0.000006,0.000390,0.000268,0.000396,0.000540,0.000540,0.003092,0.349115,-0.004073,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000056,0.000000,0.000000,0.000000,0.000007,0.000375,0.000264,0.000382,0.000476,0.000476,0.002981,0.345206,-0.003909,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000064,0.000000,0.000000,0.000000,0.000007,0.000362,0.000260,0.000369,0.000374,0.000374,0.002879,0.341460,-0.003747,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000169,0.000000,0.000000,0.000000,0.000008,0.000350,0.000256,0.000357,0.000308,0.000308,0.002785,0.337935,-0.003524,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000818,0.000031,0.000056,0.000031,0.000009,0.000338,0.000253,0.000378,0.000230,0.000230,0.002700,0.335121,-0.002814,1.000000,0.000025 +24,2022-08-02 00:00:00,0.001071,0.000084,0.000128,0.000084,0.000009,0.000328,0.000250,0.000422,0.000160,0.000160,0.002622,0.332596,-0.002526,1.000000,0.000069 +25,2022-08-02 01:00:00,0.000911,0.000104,0.000111,0.000104,0.000010,0.000319,0.000248,0.000434,0.000062,0.000062,0.002551,0.330060,-0.002536,1.000000,0.000076 +26,2022-08-02 02:00:00,0.001494,0.000225,0.000313,0.000225,0.000011,0.000311,0.000245,0.000547,0.000000,0.000000,0.002485,0.327998,-0.002062,1.000000,0.000163 +27,2022-08-02 03:00:00,0.001560,0.000286,0.000337,0.000286,0.000012,0.000303,0.000243,0.000600,0.000000,0.000000,0.002426,0.326006,-0.001992,1.000000,0.000214 +28,2022-08-02 04:00:00,0.001262,0.000273,0.000229,0.000273,0.000012,0.000296,0.000241,0.000581,0.000000,0.000000,0.002371,0.323855,-0.002151,1.000000,0.000171 +29,2022-08-02 05:00:00,0.000304,0.000133,0.000015,0.000133,0.000013,0.000289,0.000238,0.000436,0.000000,0.000000,0.002319,0.321000,-0.002854,1.000000,0.000053 +30,2022-08-02 06:00:00,0.000133,0.000051,0.000003,0.000051,0.000014,0.000283,0.000235,0.000348,0.000000,0.000000,0.002271,0.318030,-0.002971,1.000000,0.000004 +31,2022-08-02 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000015,0.000277,0.000231,0.000296,0.000000,0.000000,0.002225,0.314973,-0.003057,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000016,0.000272,0.000228,0.000288,0.000000,0.000000,0.002182,0.311959,-0.003014,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000266,0.000225,0.000283,0.000000,0.000000,0.002140,0.308988,-0.002971,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000261,0.000222,0.000279,0.000000,0.000000,0.002101,0.306058,-0.002929,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000256,0.000219,0.000275,0.000000,0.000000,0.002063,0.303170,-0.002888,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000252,0.000215,0.000271,0.000000,0.000000,0.002027,0.300323,-0.002847,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000247,0.000212,0.000268,0.000000,0.000000,0.001992,0.297515,-0.002807,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000243,0.000209,0.000265,0.000108,0.000108,0.001958,0.294641,-0.002874,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000239,0.000206,0.000261,0.000313,0.000313,0.001925,0.291606,-0.003035,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000235,0.000203,0.000258,0.000471,0.000471,0.001893,0.288457,-0.003149,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000231,0.000199,0.000255,0.000598,0.000598,0.001862,0.285228,-0.003229,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000068,0.000000,0.000000,0.000000,0.000026,0.000227,0.000196,0.000253,0.000689,0.000689,0.001831,0.282022,-0.003206,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000046,0.000000,0.000000,0.000000,0.000027,0.000223,0.000192,0.000250,0.000606,0.000606,0.001800,0.278921,-0.003101,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000076,0.000000,0.000000,0.000000,0.000028,0.000219,0.000189,0.000247,0.000528,0.000528,0.001770,0.275969,-0.002951,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000215,0.000186,0.000244,0.000480,0.000480,0.001741,0.273032,-0.002937,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000212,0.000183,0.000242,0.000394,0.000394,0.001712,0.270221,-0.002811,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000208,0.000180,0.000239,0.000285,0.000285,0.001684,0.267557,-0.002664,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000205,0.000177,0.000237,0.000152,0.000152,0.001656,0.265062,-0.002495,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000201,0.000175,0.000235,0.000012,0.000012,0.001630,0.262740,-0.002322,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000198,0.000172,0.000233,0.000000,0.000000,0.001604,0.260463,-0.002277,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000195,0.000170,0.000231,0.000000,0.000000,0.001579,0.258218,-0.002245,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000192,0.000167,0.000229,0.000000,0.000000,0.001555,0.256004,-0.002213,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000189,0.000165,0.000227,0.000000,0.000000,0.001531,0.253822,-0.002182,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000186,0.000163,0.000226,0.000000,0.000000,0.001508,0.251671,-0.002151,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000183,0.000160,0.000224,0.000000,0.000000,0.001485,0.249550,-0.002121,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000180,0.000158,0.000223,0.000000,0.000000,0.001463,0.247459,-0.002091,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000178,0.000156,0.000221,0.000000,0.000000,0.001441,0.245397,-0.002062,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000175,0.000154,0.000220,0.000000,0.000000,0.001420,0.243364,-0.002033,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000172,0.000152,0.000218,0.000000,0.000000,0.001400,0.241360,-0.002004,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000170,0.000149,0.000217,0.000000,0.000000,0.001379,0.239385,-0.001976,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000167,0.000147,0.000216,0.000000,0.000000,0.001359,0.237437,-0.001948,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000165,0.000145,0.000215,0.000105,0.000105,0.001340,0.235413,-0.002024,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000162,0.000143,0.000214,0.000333,0.000333,0.001320,0.233193,-0.002220,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000160,0.000140,0.000212,0.000498,0.000498,0.001300,0.230842,-0.002352,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000157,0.000138,0.000211,0.000627,0.000627,0.001281,0.228396,-0.002445,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000155,0.000135,0.000210,0.000640,0.000640,0.001261,0.225972,-0.002424,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000152,0.000132,0.000209,0.000554,0.000554,0.001241,0.223667,-0.002305,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000316,0.000000,0.000000,0.000000,0.000058,0.000150,0.000130,0.000208,0.000497,0.000497,0.001221,0.221763,-0.001904,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000041,0.000000,0.000000,0.000000,0.000059,0.000148,0.000128,0.000207,0.000435,0.000435,0.001202,0.219674,-0.002089,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000145,0.000126,0.000206,0.000357,0.000357,0.001182,0.217652,-0.002022,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000062,0.000143,0.000124,0.000205,0.000263,0.000263,0.001164,0.215756,-0.001897,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000141,0.000122,0.000204,0.000158,0.000158,0.001145,0.213985,-0.001771,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000138,0.000120,0.000203,0.000022,0.000022,0.001127,0.212374,-0.001611,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000101,0.000001,0.000001,0.000001,0.000066,0.000136,0.000119,0.000203,0.000000,0.000000,0.001110,0.210905,-0.001469,1.000000,0.000001 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000134,0.000117,0.000202,0.000000,0.000000,0.001093,0.209359,-0.001546,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000132,0.000115,0.000201,0.000000,0.000000,0.001076,0.207834,-0.001524,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000130,0.000114,0.000200,0.000000,0.000000,0.001060,0.206332,-0.001503,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000128,0.000112,0.000199,0.000000,0.000000,0.001044,0.204850,-0.001482,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000126,0.000111,0.000199,0.000000,0.000000,0.001029,0.203389,-0.001461,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000124,0.000109,0.000198,0.000000,0.000000,0.001013,0.201949,-0.001440,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000122,0.000107,0.000198,0.000000,0.000000,0.000999,0.200529,-0.001420,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000120,0.000106,0.000198,0.000000,0.000000,0.000984,0.199129,-0.001400,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000119,0.000104,0.000197,0.000000,0.000000,0.000970,0.197749,-0.001380,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000117,0.000103,0.000197,0.000000,0.000000,0.000956,0.196389,-0.001361,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000102,0.000197,0.000000,0.000000,0.000942,0.195047,-0.001341,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000114,0.000100,0.000196,0.000105,0.000105,0.000928,0.193622,-0.001426,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000098,0.000196,0.000337,0.000337,0.000915,0.191987,-0.001635,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000110,0.000096,0.000196,0.000509,0.000509,0.000901,0.190205,-0.001781,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000108,0.000094,0.000195,0.000639,0.000639,0.000887,0.188321,-0.001884,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000107,0.000092,0.000195,0.000693,0.000693,0.000872,0.186410,-0.001911,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000105,0.000090,0.000195,0.000611,0.000611,0.000857,0.184607,-0.001803,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000103,0.000088,0.000194,0.000548,0.000548,0.000843,0.182892,-0.001715,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000101,0.000087,0.000194,0.000489,0.000489,0.000828,0.181259,-0.001633,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000099,0.000085,0.000194,0.000400,0.000400,0.000814,0.179736,-0.001523,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000003,0.000000,0.000000,0.000000,0.000096,0.000098,0.000083,0.000193,0.000291,0.000291,0.000800,0.178346,-0.001390,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000096,0.000082,0.000193,0.000163,0.000163,0.000786,0.177098,-0.001248,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000286,0.000005,0.000009,0.000005,0.000098,0.000094,0.000081,0.000198,0.000023,0.000023,0.000773,0.176279,-0.000819,1.000000,0.000004 +98,2022-08-05 02:00:00,0.000000,0.000002,0.000000,0.000002,0.000100,0.000093,0.000080,0.000195,0.000000,0.000000,0.000760,0.175221,-0.001058,1.000000,0.000002 +99,2022-08-05 03:00:00,0.000000,0.000002,0.000000,0.000002,0.000101,0.000091,0.000079,0.000194,0.000000,0.000000,0.000747,0.174178,-0.001043,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000090,0.000078,0.000192,0.000000,0.000000,0.000736,0.173150,-0.001028,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000088,0.000077,0.000192,0.000000,0.000000,0.000724,0.172136,-0.001014,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000087,0.000076,0.000192,0.000000,0.000000,0.000713,0.171137,-0.000999,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000086,0.000075,0.000193,0.000000,0.000000,0.000702,0.170152,-0.000985,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000084,0.000074,0.000193,0.000000,0.000000,0.000691,0.169180,-0.000971,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000083,0.000072,0.000193,0.000000,0.000000,0.000680,0.168223,-0.000958,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000082,0.000071,0.000193,0.000000,0.000000,0.000670,0.167278,-0.000944,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000080,0.000070,0.000193,0.000000,0.000000,0.000660,0.166347,-0.000931,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000079,0.000069,0.000193,0.000000,0.000000,0.000650,0.165430,-0.000918,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000078,0.000068,0.000194,0.000000,0.000000,0.000641,0.164525,-0.000905,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000077,0.000067,0.000194,0.000115,0.000115,0.000631,0.163519,-0.001006,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000076,0.000066,0.000194,0.000340,0.000340,0.000621,0.162306,-0.001213,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000075,0.000065,0.000194,0.000509,0.000509,0.000612,0.160943,-0.001363,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000073,0.000063,0.000194,0.000640,0.000640,0.000601,0.159470,-0.001473,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000072,0.000061,0.000194,0.000697,0.000697,0.000591,0.157962,-0.001508,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000003,0.000000,0.000000,0.000000,0.000124,0.000071,0.000060,0.000194,0.000621,0.000621,0.000580,0.156554,-0.001408,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000003,0.000000,0.000000,0.000000,0.000125,0.000069,0.000058,0.000195,0.000546,0.000546,0.000569,0.155239,-0.001315,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000004,0.000000,0.000000,0.000000,0.000127,0.000068,0.000057,0.000195,0.000433,0.000433,0.000558,0.154055,-0.001184,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000004,0.000000,0.000000,0.000000,0.000128,0.000067,0.000056,0.000195,0.000351,0.000351,0.000548,0.152969,-0.001087,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000122,0.000000,0.000000,0.000000,0.000129,0.000065,0.000055,0.000195,0.000266,0.000266,0.000537,0.152098,-0.000871,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000003,0.000000,0.000000,0.000000,0.000131,0.000064,0.000054,0.000195,0.000153,0.000153,0.000527,0.151233,-0.000865,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000481,0.000013,0.000024,0.000013,0.000132,0.000063,0.000054,0.000208,0.000048,0.000048,0.000518,0.150932,-0.000301,1.000000,0.000011 +122,2022-08-06 02:00:00,0.000122,0.000007,0.000002,0.000007,0.000134,0.000062,0.000053,0.000202,0.000000,0.000000,0.000509,0.150350,-0.000582,1.000000,0.000006 +123,2022-08-06 03:00:00,0.000425,0.000018,0.000023,0.000018,0.000135,0.000061,0.000053,0.000214,0.000000,0.000000,0.000501,0.150055,-0.000295,1.000000,0.000011 +124,2022-08-06 04:00:00,0.000426,0.000019,0.000023,0.000019,0.000136,0.000060,0.000052,0.000215,0.000000,0.000000,0.000493,0.149764,-0.000291,1.000000,0.000015 +125,2022-08-06 05:00:00,0.000021,0.000010,0.000000,0.000010,0.000138,0.000059,0.000052,0.000207,0.000000,0.000000,0.000486,0.149101,-0.000663,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000050,0.000005,0.000000,0.000005,0.000139,0.000058,0.000051,0.000202,0.000000,0.000000,0.000479,0.148475,-0.000626,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000057,0.000050,0.000198,0.000000,0.000000,0.000472,0.147809,-0.000666,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000057,0.000050,0.000198,0.000000,0.000000,0.000465,0.147153,-0.000656,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000056,0.000049,0.000199,0.000000,0.000000,0.000458,0.146506,-0.000647,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000055,0.000048,0.000199,0.000000,0.000000,0.000452,0.145868,-0.000638,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000054,0.000048,0.000200,0.000000,0.000000,0.000445,0.145239,-0.000629,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000053,0.000047,0.000200,0.000000,0.000000,0.000439,0.144619,-0.000620,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000053,0.000046,0.000201,0.000000,0.000000,0.000432,0.144008,-0.000611,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000052,0.000045,0.000202,0.000098,0.000098,0.000426,0.143309,-0.000699,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000051,0.000045,0.000202,0.000313,0.000313,0.000420,0.142407,-0.000902,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000050,0.000043,0.000203,0.000477,0.000477,0.000413,0.141357,-0.001050,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000049,0.000042,0.000203,0.000607,0.000607,0.000406,0.140193,-0.001164,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000048,0.000041,0.000203,0.000714,0.000714,0.000398,0.138940,-0.001253,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000047,0.000040,0.000204,0.000631,0.000631,0.000390,0.137787,-0.001154,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000046,0.000038,0.000204,0.000566,0.000566,0.000382,0.136713,-0.001073,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000045,0.000037,0.000204,0.000501,0.000501,0.000374,0.135720,-0.000993,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000044,0.000036,0.000205,0.000415,0.000415,0.000366,0.134825,-0.000895,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000043,0.000035,0.000205,0.000299,0.000299,0.000358,0.134058,-0.000768,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000043,0.000035,0.000205,0.000160,0.000160,0.000350,0.133438,-0.000620,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000042,0.000034,0.000206,0.000020,0.000020,0.000343,0.132964,-0.000474,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000041,0.000034,0.000206,0.000000,0.000000,0.000336,0.132517,-0.000447,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000040,0.000033,0.000207,0.000000,0.000000,0.000329,0.132076,-0.000441,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000039,0.000033,0.000207,0.000000,0.000000,0.000323,0.131642,-0.000434,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000038,0.000032,0.000208,0.000000,0.000000,0.000317,0.131214,-0.000428,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000038,0.000032,0.000208,0.000000,0.000000,0.000311,0.130791,-0.000422,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000037,0.000032,0.000209,0.000000,0.000000,0.000306,0.130375,-0.000416,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000036,0.000031,0.000209,0.000000,0.000000,0.000300,0.129965,-0.000410,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000036,0.000031,0.000210,0.000000,0.000000,0.000295,0.129560,-0.000405,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000035,0.000030,0.000211,0.000000,0.000000,0.000290,0.129161,-0.000399,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000035,0.000030,0.000211,0.000000,0.000000,0.000285,0.128768,-0.000393,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000034,0.000029,0.000212,0.000000,0.000000,0.000281,0.128380,-0.000388,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000033,0.000029,0.000212,0.000000,0.000000,0.000276,0.127998,-0.000382,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000033,0.000028,0.000213,0.000094,0.000094,0.000272,0.127529,-0.000469,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000032,0.000028,0.000214,0.000315,0.000315,0.000267,0.126848,-0.000681,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000032,0.000027,0.000214,0.000484,0.000484,0.000262,0.126010,-0.000838,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000031,0.000026,0.000215,0.000615,0.000615,0.000257,0.125055,-0.000955,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000030,0.000025,0.000215,0.000712,0.000712,0.000251,0.124017,-0.001038,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000030,0.000024,0.000216,0.000633,0.000633,0.000245,0.123072,-0.000945,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000029,0.000023,0.000216,0.000562,0.000562,0.000238,0.122211,-0.000861,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000022,0.000217,0.000488,0.000488,0.000232,0.121435,-0.000776,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000021,0.000217,0.000399,0.000399,0.000226,0.120757,-0.000678,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000155,0.000000,0.000000,0.000000,0.000191,0.000027,0.000021,0.000217,0.000284,0.000284,0.000220,0.120354,-0.000403,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000506,0.000010,0.000018,0.000010,0.000192,0.000026,0.000021,0.000228,0.000125,0.000125,0.000215,0.120444,0.000089,1.000000,0.000008 +169,2022-08-08 01:00:00,0.000000,0.000004,0.000000,0.000004,0.000193,0.000025,0.000020,0.000223,0.000000,0.000000,0.000210,0.120173,-0.000270,1.000000,0.000004 +170,2022-08-08 02:00:00,0.000000,0.000004,0.000000,0.000004,0.000194,0.000025,0.000020,0.000223,0.000000,0.000000,0.000205,0.119907,-0.000267,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000001,0.000000,0.000000,0.000000,0.000195,0.000024,0.000020,0.000220,0.000000,0.000000,0.000201,0.119645,-0.000262,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000024,0.000020,0.000220,0.000000,0.000000,0.000196,0.119386,-0.000259,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000023,0.000019,0.000221,0.000000,0.000000,0.000192,0.119131,-0.000255,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000019,0.000222,0.000000,0.000000,0.000189,0.118879,-0.000252,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000019,0.000222,0.000000,0.000000,0.000185,0.118631,-0.000248,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000022,0.000019,0.000223,0.000000,0.000000,0.000182,0.118386,-0.000245,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000022,0.000018,0.000224,0.000000,0.000000,0.000178,0.118144,-0.000241,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000021,0.000018,0.000224,0.000000,0.000000,0.000175,0.117906,-0.000238,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000021,0.000018,0.000225,0.000000,0.000000,0.000172,0.117672,-0.000235,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000020,0.000018,0.000226,0.000000,0.000000,0.000169,0.117441,-0.000231,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000017,0.000226,0.000000,0.000000,0.000166,0.117213,-0.000228,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000017,0.000227,0.000079,0.000079,0.000163,0.116910,-0.000303,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000228,0.000300,0.000300,0.000160,0.116393,-0.000517,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000016,0.000228,0.000469,0.000469,0.000157,0.115717,-0.000676,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000019,0.000015,0.000229,0.000595,0.000595,0.000153,0.114927,-0.000790,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000018,0.000014,0.000229,0.000692,0.000692,0.000149,0.114052,-0.000875,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000017,0.000013,0.000230,0.000618,0.000618,0.000144,0.113262,-0.000790,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000017,0.000012,0.000230,0.000537,0.000537,0.000140,0.112563,-0.000699,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000012,0.000231,0.000481,0.000481,0.000135,0.111930,-0.000634,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000016,0.000011,0.000231,0.000393,0.000393,0.000130,0.111392,-0.000538,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000015,0.000011,0.000232,0.000279,0.000279,0.000125,0.110974,-0.000418,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000010,0.000232,0.000162,0.000162,0.000121,0.110678,-0.000296,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000014,0.000010,0.000233,0.000019,0.000019,0.000117,0.110526,-0.000152,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000009,0.000000,0.000000,0.000000,0.000219,0.000014,0.000010,0.000233,0.000000,0.000000,0.000113,0.110404,-0.000121,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000002,0.000000,0.000000,0.000000,0.000220,0.000013,0.000010,0.000234,0.000000,0.000000,0.000110,0.110277,-0.000127,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000013,0.000010,0.000234,0.000000,0.000000,0.000106,0.110150,-0.000127,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000012,0.000009,0.000235,0.000000,0.000000,0.000103,0.110025,-0.000125,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000012,0.000009,0.000235,0.000000,0.000000,0.000100,0.109902,-0.000123,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000012,0.000009,0.000236,0.000000,0.000000,0.000098,0.109780,-0.000122,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000012,0.000009,0.000237,0.000000,0.000000,0.000095,0.109660,-0.000120,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000011,0.000009,0.000237,0.000000,0.000000,0.000093,0.109542,-0.000118,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000011,0.000009,0.000238,0.000000,0.000000,0.000091,0.109425,-0.000117,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000011,0.000009,0.000239,0.000000,0.000000,0.000089,0.109310,-0.000115,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000011,0.000009,0.000239,0.000000,0.000000,0.000087,0.109197,-0.000113,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000010,0.000008,0.000240,0.000000,0.000000,0.000085,0.109085,-0.000112,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000010,0.000008,0.000241,0.000087,0.000087,0.000083,0.108890,-0.000195,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620898.csv b/test/channel_loss/channel_forcing/et/cat-2620898.csv new file mode 100644 index 000000000..d49cace60 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620898.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000093,0.000000,0.000000,0.000000,0.000000,0.001460,0.000290,0.001460,0.000156,0.000156,0.010426,0.427361,-0.004760,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001299,0.000286,0.001299,0.000033,0.000033,0.009412,0.422696,-0.004665,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001162,0.000282,0.001162,0.000000,0.000000,0.008532,0.418128,-0.004568,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001046,0.000278,0.001046,0.000000,0.000000,0.007764,0.413623,-0.004505,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000946,0.000274,0.000946,0.000000,0.000000,0.007092,0.409180,-0.004443,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000860,0.000270,0.000860,0.000000,0.000000,0.006502,0.404799,-0.004382,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000785,0.000266,0.000786,0.000000,0.000000,0.005983,0.400477,-0.004321,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000721,0.000263,0.000721,0.000000,0.000000,0.005525,0.396216,-0.004262,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000664,0.000259,0.000665,0.000000,0.000000,0.005120,0.392013,-0.004203,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000614,0.000256,0.000616,0.000000,0.000000,0.004761,0.387868,-0.004145,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000571,0.000252,0.000572,0.000000,0.000000,0.004442,0.383780,-0.004088,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000532,0.000249,0.000534,0.000000,0.000000,0.004159,0.379749,-0.004031,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000498,0.000245,0.000500,0.000000,0.000000,0.003906,0.375773,-0.003976,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000468,0.000242,0.000471,0.000000,0.000000,0.003680,0.371852,-0.003921,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000441,0.000238,0.000444,0.000112,0.000112,0.003478,0.367875,-0.003977,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000417,0.000235,0.000420,0.000333,0.000333,0.003296,0.363735,-0.004140,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000395,0.000231,0.000399,0.000505,0.000505,0.003132,0.359482,-0.004253,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000376,0.000227,0.000380,0.000641,0.000641,0.002984,0.355153,-0.004328,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000358,0.000224,0.000363,0.000635,0.000635,0.002849,0.350891,-0.004262,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000048,0.000000,0.000000,0.000000,0.000006,0.000342,0.000220,0.000348,0.000542,0.000542,0.002727,0.346826,-0.004065,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000079,0.000000,0.000000,0.000000,0.000007,0.000328,0.000217,0.000334,0.000479,0.000479,0.002616,0.342910,-0.003916,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000245,0.000000,0.000000,0.000000,0.000007,0.000315,0.000214,0.000322,0.000372,0.000372,0.002516,0.339317,-0.003593,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000083,0.000000,0.000000,0.000000,0.000008,0.000303,0.000211,0.000311,0.000306,0.000306,0.002423,0.335679,-0.003639,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000386,0.000003,0.000005,0.000003,0.000009,0.000292,0.000208,0.000304,0.000230,0.000230,0.002339,0.332459,-0.003220,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000421,0.000010,0.000015,0.000010,0.000009,0.000282,0.000205,0.000301,0.000158,0.000158,0.002262,0.329380,-0.003079,1.000000,0.000008 +25,2022-08-02 01:00:00,0.000666,0.000045,0.000073,0.000045,0.000010,0.000273,0.000203,0.000328,0.000061,0.000061,0.002192,0.326623,-0.002757,1.000000,0.000036 +26,2022-08-02 02:00:00,0.001401,0.000207,0.000338,0.000207,0.000011,0.000265,0.000201,0.000483,0.000000,0.000000,0.002128,0.324427,-0.002195,1.000000,0.000167 +27,2022-08-02 03:00:00,0.001376,0.000279,0.000327,0.000279,0.000012,0.000257,0.000199,0.000548,0.000000,0.000000,0.002070,0.322249,-0.002178,1.000000,0.000215 +28,2022-08-02 04:00:00,0.001068,0.000263,0.000207,0.000263,0.000013,0.000250,0.000197,0.000526,0.000000,0.000000,0.002017,0.319916,-0.002334,1.000000,0.000159 +29,2022-08-02 05:00:00,0.000350,0.000131,0.000025,0.000131,0.000013,0.000244,0.000194,0.000389,0.000000,0.000000,0.001967,0.317085,-0.002831,1.000000,0.000053 +30,2022-08-02 06:00:00,0.000224,0.000054,0.000011,0.000054,0.000014,0.000238,0.000192,0.000306,0.000000,0.000000,0.001921,0.314184,-0.002901,1.000000,0.000010 +31,2022-08-02 07:00:00,0.000000,0.000008,0.000000,0.000008,0.000015,0.000233,0.000189,0.000256,0.000000,0.000000,0.001877,0.311112,-0.003072,1.000000,0.000002 +32,2022-08-02 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000016,0.000228,0.000187,0.000246,0.000000,0.000000,0.001837,0.308083,-0.003029,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000223,0.000184,0.000240,0.000000,0.000000,0.001798,0.305095,-0.002988,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000218,0.000182,0.000236,0.000000,0.000000,0.001762,0.302149,-0.002946,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000214,0.000179,0.000233,0.000000,0.000000,0.001727,0.299243,-0.002906,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000209,0.000177,0.000229,0.000000,0.000000,0.001694,0.296378,-0.002866,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000206,0.000174,0.000227,0.000000,0.000000,0.001663,0.293552,-0.002826,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000202,0.000172,0.000224,0.000103,0.000103,0.001633,0.290662,-0.002889,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000198,0.000169,0.000221,0.000310,0.000310,0.001604,0.287609,-0.003053,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000195,0.000166,0.000219,0.000470,0.000470,0.001576,0.284440,-0.003169,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000191,0.000164,0.000216,0.000606,0.000606,0.001548,0.281181,-0.003259,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000335,0.000000,0.000000,0.000000,0.000026,0.000188,0.000161,0.000214,0.000706,0.000706,0.001522,0.278198,-0.002983,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000027,0.000184,0.000158,0.000212,0.000613,0.000613,0.001496,0.275081,-0.003118,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000059,0.000000,0.000000,0.000000,0.000029,0.000181,0.000156,0.000210,0.000542,0.000542,0.001470,0.272073,-0.003008,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000178,0.000153,0.000208,0.000474,0.000474,0.001445,0.269114,-0.002959,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000175,0.000151,0.000206,0.000386,0.000386,0.001421,0.266283,-0.002831,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000172,0.000148,0.000204,0.000286,0.000286,0.001397,0.263590,-0.002693,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000169,0.000146,0.000202,0.000154,0.000154,0.001374,0.261064,-0.002526,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000166,0.000144,0.000201,0.000014,0.000014,0.001352,0.258712,-0.002353,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000164,0.000142,0.000199,0.000000,0.000000,0.001331,0.256405,-0.002307,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000161,0.000140,0.000198,0.000000,0.000000,0.001310,0.254130,-0.002275,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000159,0.000138,0.000197,0.000000,0.000000,0.001289,0.251886,-0.002244,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000156,0.000136,0.000195,0.000000,0.000000,0.001270,0.249674,-0.002213,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000154,0.000135,0.000194,0.000000,0.000000,0.001251,0.247492,-0.002182,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000151,0.000133,0.000193,0.000000,0.000000,0.001232,0.245340,-0.002152,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000149,0.000131,0.000192,0.000000,0.000000,0.001214,0.243217,-0.002122,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000147,0.000129,0.000191,0.000000,0.000000,0.001196,0.241124,-0.002093,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000145,0.000127,0.000190,0.000000,0.000000,0.001178,0.239060,-0.002064,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000143,0.000125,0.000189,0.000000,0.000000,0.001161,0.237025,-0.002036,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000140,0.000124,0.000189,0.000000,0.000000,0.001145,0.235017,-0.002008,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000138,0.000122,0.000188,0.000000,0.000000,0.001128,0.233037,-0.001980,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000136,0.000120,0.000187,0.000106,0.000106,0.001112,0.230980,-0.002057,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000134,0.000118,0.000187,0.000330,0.000330,0.001096,0.228730,-0.002250,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000132,0.000116,0.000186,0.000498,0.000498,0.001080,0.226346,-0.002384,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000130,0.000114,0.000185,0.000636,0.000636,0.001064,0.223858,-0.002488,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000128,0.000112,0.000185,0.000655,0.000655,0.001047,0.221386,-0.002472,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000126,0.000110,0.000184,0.000575,0.000575,0.001031,0.219027,-0.002359,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001587,0.000102,0.000186,0.000102,0.000059,0.000124,0.000109,0.000286,0.000499,0.000499,0.001016,0.218157,-0.000870,1.000000,0.000084 +69,2022-08-03 21:00:00,0.000180,0.000046,0.000000,0.000046,0.000060,0.000123,0.000108,0.000229,0.000434,0.000434,0.001001,0.216159,-0.001999,1.000000,0.000037 +70,2022-08-03 22:00:00,0.000030,0.000037,0.000000,0.000037,0.000062,0.000121,0.000106,0.000220,0.000352,0.000352,0.000986,0.214121,-0.002037,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000063,0.000119,0.000104,0.000182,0.000263,0.000263,0.000971,0.212232,-0.001890,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000117,0.000103,0.000182,0.000158,0.000158,0.000956,0.210410,-0.001821,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000115,0.000101,0.000181,0.000024,0.000024,0.000942,0.208746,-0.001664,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000047,0.000000,0.000000,0.000000,0.000067,0.000114,0.000100,0.000181,0.000000,0.000000,0.000928,0.207174,-0.001572,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000112,0.000098,0.000181,0.000000,0.000000,0.000915,0.205578,-0.001596,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000063,0.000000,0.000001,0.000000,0.000070,0.000110,0.000097,0.000181,0.000000,0.000000,0.000902,0.204065,-0.001513,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000118,0.000002,0.000003,0.000002,0.000072,0.000109,0.000096,0.000182,0.000000,0.000000,0.000889,0.202626,-0.001439,1.000000,0.000001 +78,2022-08-04 06:00:00,0.000000,0.000001,0.000000,0.000001,0.000073,0.000107,0.000095,0.000181,0.000000,0.000000,0.000876,0.201093,-0.001533,1.000000,0.000001 +79,2022-08-04 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000074,0.000106,0.000093,0.000181,0.000000,0.000000,0.000864,0.199581,-0.001512,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000104,0.000092,0.000180,0.000000,0.000000,0.000852,0.198090,-0.001491,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000103,0.000091,0.000180,0.000000,0.000000,0.000840,0.196619,-0.001471,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000101,0.000089,0.000180,0.000000,0.000000,0.000828,0.195168,-0.001450,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000100,0.000088,0.000180,0.000000,0.000000,0.000816,0.193738,-0.001430,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000098,0.000087,0.000180,0.000000,0.000000,0.000805,0.192327,-0.001411,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000097,0.000086,0.000180,0.000000,0.000000,0.000794,0.190936,-0.001391,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000096,0.000084,0.000180,0.000104,0.000104,0.000783,0.189461,-0.001475,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000094,0.000083,0.000180,0.000332,0.000332,0.000772,0.187782,-0.001679,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000093,0.000081,0.000180,0.000506,0.000506,0.000760,0.185955,-0.001827,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000091,0.000080,0.000180,0.000647,0.000647,0.000749,0.184014,-0.001941,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000090,0.000078,0.000180,0.000708,0.000708,0.000737,0.182039,-0.001974,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000088,0.000076,0.000180,0.000625,0.000625,0.000725,0.180174,-0.001865,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000087,0.000075,0.000180,0.000549,0.000549,0.000713,0.178409,-0.001765,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000085,0.000074,0.000180,0.000478,0.000478,0.000701,0.176738,-0.001671,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000084,0.000072,0.000180,0.000390,0.000390,0.000689,0.175177,-0.001561,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000083,0.000071,0.000180,0.000289,0.000289,0.000677,0.173737,-0.001440,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000081,0.000070,0.000180,0.000164,0.000164,0.000666,0.172440,-0.001297,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000050,0.000000,0.000000,0.000000,0.000101,0.000080,0.000069,0.000181,0.000027,0.000027,0.000655,0.171345,-0.001095,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000079,0.000068,0.000181,0.000000,0.000000,0.000644,0.170243,-0.001102,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000077,0.000067,0.000181,0.000000,0.000000,0.000634,0.169156,-0.001087,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000076,0.000066,0.000181,0.000000,0.000000,0.000624,0.168085,-0.001072,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000075,0.000065,0.000181,0.000000,0.000000,0.000614,0.167028,-0.001057,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000074,0.000064,0.000182,0.000000,0.000000,0.000605,0.165985,-0.001042,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000073,0.000063,0.000182,0.000000,0.000000,0.000596,0.164957,-0.001028,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000071,0.000062,0.000182,0.000000,0.000000,0.000587,0.163944,-0.001014,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000070,0.000062,0.000183,0.000000,0.000000,0.000578,0.162944,-0.001000,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000069,0.000061,0.000183,0.000000,0.000000,0.000570,0.161958,-0.000986,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000068,0.000060,0.000184,0.000000,0.000000,0.000561,0.160985,-0.000972,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000067,0.000059,0.000184,0.000000,0.000000,0.000553,0.160026,-0.000959,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000066,0.000058,0.000185,0.000000,0.000000,0.000545,0.159080,-0.000946,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000065,0.000057,0.000185,0.000115,0.000115,0.000537,0.158034,-0.001046,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000064,0.000056,0.000185,0.000335,0.000335,0.000529,0.156786,-0.001248,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000063,0.000055,0.000186,0.000505,0.000505,0.000521,0.155386,-0.001400,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000062,0.000054,0.000186,0.000647,0.000647,0.000512,0.153866,-0.001520,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000061,0.000052,0.000187,0.000700,0.000700,0.000503,0.152315,-0.001551,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000006,0.000000,0.000000,0.000000,0.000127,0.000060,0.000051,0.000187,0.000626,0.000626,0.000495,0.150864,-0.001451,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000006,0.000000,0.000000,0.000000,0.000128,0.000059,0.000050,0.000187,0.000544,0.000544,0.000486,0.149513,-0.001351,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000014,0.000000,0.000000,0.000000,0.000130,0.000058,0.000049,0.000188,0.000421,0.000421,0.000477,0.148310,-0.001203,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000107,0.000000,0.000000,0.000000,0.000131,0.000057,0.000048,0.000188,0.000343,0.000343,0.000468,0.147293,-0.001018,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000122,0.000000,0.000000,0.000000,0.000133,0.000056,0.000047,0.000188,0.000262,0.000262,0.000459,0.146385,-0.000908,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000006,0.000000,0.000000,0.000000,0.000134,0.000055,0.000047,0.000189,0.000153,0.000153,0.000451,0.145482,-0.000902,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000416,0.000012,0.000022,0.000012,0.000135,0.000054,0.000046,0.000201,0.000049,0.000049,0.000443,0.145078,-0.000404,1.000000,0.000010 +122,2022-08-06 02:00:00,0.000559,0.000032,0.000048,0.000032,0.000137,0.000053,0.000046,0.000222,0.000000,0.000000,0.000436,0.144842,-0.000236,1.000000,0.000026 +123,2022-08-06 03:00:00,0.000589,0.000046,0.000053,0.000046,0.000138,0.000052,0.000046,0.000236,0.000000,0.000000,0.000430,0.144633,-0.000209,1.000000,0.000034 +124,2022-08-06 04:00:00,0.000288,0.000030,0.000013,0.000030,0.000140,0.000052,0.000045,0.000222,0.000000,0.000000,0.000424,0.144170,-0.000463,1.000000,0.000017 +125,2022-08-06 05:00:00,0.000180,0.000017,0.000005,0.000017,0.000141,0.000051,0.000045,0.000209,0.000000,0.000000,0.000418,0.143615,-0.000555,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000247,0.000009,0.000010,0.000009,0.000143,0.000050,0.000045,0.000202,0.000000,0.000000,0.000413,0.143129,-0.000486,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000144,0.000049,0.000044,0.000197,0.000000,0.000000,0.000407,0.142417,-0.000713,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000145,0.000049,0.000043,0.000196,0.000000,0.000000,0.000402,0.141714,-0.000703,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000048,0.000043,0.000195,0.000000,0.000000,0.000396,0.141020,-0.000693,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000047,0.000042,0.000196,0.000000,0.000000,0.000391,0.140337,-0.000684,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000047,0.000042,0.000196,0.000000,0.000000,0.000386,0.139662,-0.000674,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000046,0.000041,0.000197,0.000000,0.000000,0.000380,0.138997,-0.000665,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000046,0.000040,0.000198,0.000000,0.000000,0.000375,0.138341,-0.000656,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000045,0.000040,0.000199,0.000097,0.000097,0.000370,0.137599,-0.000743,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000044,0.000039,0.000199,0.000310,0.000310,0.000365,0.136656,-0.000943,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000044,0.000038,0.000200,0.000476,0.000476,0.000359,0.135562,-0.001093,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000043,0.000037,0.000201,0.000615,0.000615,0.000353,0.134347,-0.001215,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000042,0.000036,0.000201,0.000724,0.000724,0.000347,0.133041,-0.001305,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000041,0.000035,0.000202,0.000647,0.000647,0.000341,0.131829,-0.001212,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000041,0.000034,0.000202,0.000568,0.000568,0.000334,0.130712,-0.001117,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000040,0.000033,0.000203,0.000492,0.000492,0.000327,0.129685,-0.001027,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000039,0.000032,0.000203,0.000401,0.000401,0.000320,0.128762,-0.000923,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000038,0.000031,0.000204,0.000297,0.000297,0.000314,0.127955,-0.000807,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000037,0.000031,0.000205,0.000157,0.000157,0.000307,0.127297,-0.000659,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000037,0.000030,0.000205,0.000023,0.000023,0.000301,0.126780,-0.000517,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000036,0.000030,0.000206,0.000000,0.000000,0.000296,0.126292,-0.000487,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000035,0.000030,0.000206,0.000000,0.000000,0.000290,0.125812,-0.000481,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000035,0.000029,0.000207,0.000000,0.000000,0.000285,0.125338,-0.000474,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000034,0.000029,0.000208,0.000000,0.000000,0.000280,0.124870,-0.000467,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000033,0.000028,0.000208,0.000000,0.000000,0.000275,0.124409,-0.000461,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000033,0.000028,0.000209,0.000000,0.000000,0.000270,0.123954,-0.000455,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000032,0.000028,0.000210,0.000000,0.000000,0.000265,0.123506,-0.000448,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000032,0.000027,0.000211,0.000000,0.000000,0.000261,0.123064,-0.000442,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000031,0.000027,0.000211,0.000000,0.000000,0.000257,0.122628,-0.000436,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000031,0.000027,0.000212,0.000000,0.000000,0.000253,0.122198,-0.000430,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000030,0.000026,0.000213,0.000000,0.000000,0.000249,0.121773,-0.000424,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000030,0.000026,0.000214,0.000000,0.000000,0.000245,0.121355,-0.000418,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000029,0.000025,0.000214,0.000094,0.000094,0.000241,0.120850,-0.000505,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000029,0.000025,0.000215,0.000311,0.000311,0.000237,0.120138,-0.000712,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000028,0.000024,0.000216,0.000484,0.000484,0.000233,0.119264,-0.000873,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000028,0.000023,0.000217,0.000622,0.000622,0.000228,0.118267,-0.000997,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000027,0.000022,0.000217,0.000727,0.000727,0.000223,0.117180,-0.001087,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000026,0.000021,0.000218,0.000649,0.000649,0.000218,0.116185,-0.000995,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000026,0.000021,0.000218,0.000567,0.000567,0.000213,0.115285,-0.000900,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000025,0.000020,0.000219,0.000484,0.000484,0.000208,0.114478,-0.000806,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000025,0.000019,0.000220,0.000391,0.000391,0.000202,0.113774,-0.000704,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000024,0.000019,0.000220,0.000284,0.000284,0.000197,0.113187,-0.000588,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000055,0.000000,0.000000,0.000000,0.000198,0.000023,0.000018,0.000221,0.000127,0.000127,0.000192,0.112815,-0.000371,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000018,0.000221,0.000000,0.000000,0.000188,0.112521,-0.000295,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000018,0.000222,0.000000,0.000000,0.000184,0.112230,-0.000291,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000022,0.000018,0.000223,0.000000,0.000000,0.000179,0.111943,-0.000287,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000021,0.000017,0.000223,0.000000,0.000000,0.000176,0.111660,-0.000283,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000021,0.000017,0.000224,0.000000,0.000000,0.000172,0.111382,-0.000279,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000020,0.000017,0.000225,0.000000,0.000000,0.000169,0.111106,-0.000275,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000020,0.000017,0.000226,0.000000,0.000000,0.000165,0.110835,-0.000271,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000020,0.000016,0.000226,0.000000,0.000000,0.000162,0.110568,-0.000267,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000019,0.000016,0.000227,0.000000,0.000000,0.000159,0.110304,-0.000264,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000016,0.000228,0.000000,0.000000,0.000156,0.110044,-0.000260,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000019,0.000016,0.000229,0.000000,0.000000,0.000153,0.109787,-0.000257,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000018,0.000016,0.000230,0.000000,0.000000,0.000151,0.109534,-0.000253,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000018,0.000015,0.000230,0.000000,0.000000,0.000148,0.109285,-0.000250,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000018,0.000015,0.000231,0.000079,0.000079,0.000146,0.108961,-0.000324,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000017,0.000015,0.000232,0.000296,0.000296,0.000143,0.108427,-0.000534,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000017,0.000014,0.000233,0.000469,0.000469,0.000140,0.107730,-0.000697,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000013,0.000233,0.000609,0.000609,0.000137,0.106904,-0.000825,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000016,0.000013,0.000234,0.000703,0.000703,0.000133,0.105998,-0.000907,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000016,0.000012,0.000235,0.000629,0.000629,0.000129,0.105177,-0.000821,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000012,0.000235,0.000543,0.000000,0.000126,0.104987,-0.000189,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000012,0.000236,0.000477,0.000000,0.000123,0.104800,-0.000187,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000014,0.000011,0.000237,0.000384,0.000000,0.000119,0.104616,-0.000184,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000011,0.000237,0.000281,0.000000,0.000117,0.104434,-0.000182,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000011,0.000238,0.000164,0.000000,0.000114,0.104255,-0.000179,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000011,0.000239,0.000022,0.000000,0.000111,0.104078,-0.000177,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000609,0.000030,0.000054,0.000030,0.000226,0.000013,0.000011,0.000269,0.000000,0.000000,0.000109,0.104451,0.000373,1.000000,0.000024 +195,2022-08-09 03:00:00,0.000290,0.000021,0.000013,0.000021,0.000227,0.000013,0.000011,0.000261,0.000000,0.000000,0.000108,0.104545,0.000094,1.000000,0.000017 +196,2022-08-09 04:00:00,0.000000,0.000014,0.000000,0.000014,0.000228,0.000013,0.000011,0.000255,0.000000,0.000000,0.000106,0.104364,-0.000181,1.000000,0.000003 +197,2022-08-09 05:00:00,0.000000,0.000003,0.000000,0.000003,0.000229,0.000013,0.000011,0.000245,0.000000,0.000000,0.000104,0.104186,-0.000178,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000012,0.000011,0.000243,0.000000,0.000000,0.000103,0.104010,-0.000176,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000012,0.000011,0.000244,0.000000,0.000000,0.000101,0.103837,-0.000173,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000012,0.000011,0.000244,0.000000,0.000000,0.000100,0.103666,-0.000171,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000012,0.000010,0.000245,0.000000,0.000000,0.000098,0.103497,-0.000169,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000047,0.000000,0.000000,0.000000,0.000234,0.000012,0.000010,0.000246,0.000000,0.000000,0.000097,0.103377,-0.000120,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000012,0.000010,0.000247,0.000000,0.000000,0.000095,0.103212,-0.000165,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000011,0.000010,0.000248,0.000000,0.000000,0.000094,0.103050,-0.000162,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000011,0.000010,0.000248,0.000000,0.000000,0.000093,0.102890,-0.000160,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000011,0.000010,0.000249,0.000089,0.000000,0.000091,0.102732,-0.000158,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620899.csv b/test/channel_loss/channel_forcing/et/cat-2620899.csv new file mode 100644 index 000000000..bb8fa462b --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620899.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001482,0.000445,0.001482,0.000146,0.000146,0.010529,0.433029,-0.004804,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001338,0.000439,0.001338,0.000030,0.000030,0.009631,0.428410,-0.004620,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001215,0.000432,0.001215,0.000000,0.000000,0.008848,0.423887,-0.004523,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001110,0.000426,0.001110,0.000000,0.000000,0.008164,0.419430,-0.004457,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001019,0.000420,0.001020,0.000000,0.000000,0.007565,0.415039,-0.004392,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000941,0.000414,0.000941,0.000000,0.000000,0.007038,0.410711,-0.004327,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000873,0.000408,0.000874,0.000000,0.000000,0.006572,0.406447,-0.004264,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000814,0.000402,0.000814,0.000000,0.000000,0.006161,0.402245,-0.004202,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000761,0.000396,0.000762,0.000000,0.000000,0.005795,0.398104,-0.004141,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000715,0.000390,0.000717,0.000000,0.000000,0.005470,0.394024,-0.004080,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000675,0.000384,0.000676,0.000000,0.000000,0.005180,0.390004,-0.004020,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000638,0.000379,0.000640,0.000000,0.000000,0.004921,0.386042,-0.003962,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000606,0.000373,0.000608,0.000000,0.000000,0.004688,0.382139,-0.003904,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000577,0.000368,0.000580,0.000000,0.000000,0.004478,0.378292,-0.003847,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000551,0.000362,0.000555,0.000113,0.000113,0.004289,0.374390,-0.003901,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000528,0.000357,0.000532,0.000330,0.000330,0.004117,0.370331,-0.004059,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000507,0.000351,0.000511,0.000498,0.000498,0.003961,0.366167,-0.004165,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000488,0.000345,0.000492,0.000610,0.000610,0.003818,0.361952,-0.004215,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000470,0.000339,0.000475,0.000580,0.000580,0.003687,0.357829,-0.004123,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000006,0.000454,0.000333,0.000460,0.000514,0.000514,0.003566,0.353833,-0.003996,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000006,0.000439,0.000328,0.000445,0.000465,0.000465,0.003455,0.349943,-0.003890,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000070,0.000000,0.000000,0.000000,0.000007,0.000425,0.000322,0.000432,0.000366,0.000366,0.003352,0.346275,-0.003668,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000144,0.000000,0.000000,0.000000,0.000008,0.000413,0.000318,0.000420,0.000303,0.000303,0.003257,0.342796,-0.003479,1.000000,0.000000 +23,2022-08-01 23:00:00,0.001065,0.000047,0.000086,0.000047,0.000008,0.000401,0.000314,0.000457,0.000225,0.000225,0.003169,0.340267,-0.002529,1.000000,0.000038 +24,2022-08-02 00:00:00,0.001313,0.000107,0.000156,0.000107,0.000009,0.000391,0.000311,0.000507,0.000154,0.000154,0.003090,0.338021,-0.002246,1.000000,0.000087 +25,2022-08-02 01:00:00,0.001149,0.000132,0.000138,0.000132,0.000010,0.000381,0.000308,0.000523,0.000062,0.000062,0.003016,0.335755,-0.002266,1.000000,0.000093 +26,2022-08-02 02:00:00,0.001996,0.000296,0.000419,0.000296,0.000010,0.000372,0.000305,0.000679,0.000000,0.000000,0.002949,0.334139,-0.001615,1.000000,0.000216 +27,2022-08-02 03:00:00,0.002088,0.000382,0.000453,0.000382,0.000011,0.000364,0.000303,0.000757,0.000000,0.000000,0.002888,0.332605,-0.001535,1.000000,0.000288 +28,2022-08-02 04:00:00,0.001296,0.000302,0.000190,0.000302,0.000012,0.000357,0.000300,0.000670,0.000000,0.000000,0.002832,0.330572,-0.002033,1.000000,0.000176 +29,2022-08-02 05:00:00,0.000297,0.000144,0.000011,0.000144,0.000013,0.000350,0.000296,0.000507,0.000000,0.000000,0.002778,0.327759,-0.002812,1.000000,0.000043 +30,2022-08-02 06:00:00,0.000111,0.000042,0.000002,0.000042,0.000014,0.000343,0.000292,0.000398,0.000000,0.000000,0.002727,0.324815,-0.002944,1.000000,0.000003 +31,2022-08-02 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000014,0.000337,0.000288,0.000354,0.000000,0.000000,0.002678,0.321806,-0.003009,1.000000,0.000000 +32,2022-08-02 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000015,0.000331,0.000284,0.000346,0.000000,0.000000,0.002631,0.318841,-0.002965,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000325,0.000279,0.000341,0.000000,0.000000,0.002586,0.315919,-0.002922,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000319,0.000275,0.000336,0.000000,0.000000,0.002542,0.313039,-0.002879,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000314,0.000271,0.000332,0.000000,0.000000,0.002500,0.310202,-0.002837,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000308,0.000267,0.000327,0.000000,0.000000,0.002459,0.307406,-0.002796,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000303,0.000263,0.000323,0.000000,0.000000,0.002420,0.304652,-0.002755,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000298,0.000259,0.000319,0.000109,0.000109,0.002381,0.301829,-0.002822,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000293,0.000255,0.000315,0.000307,0.000307,0.002343,0.298853,-0.002976,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000288,0.000251,0.000311,0.000460,0.000460,0.002305,0.295770,-0.003083,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000284,0.000246,0.000307,0.000577,0.000577,0.002268,0.292617,-0.003153,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000023,0.000000,0.000000,0.000000,0.000025,0.000279,0.000242,0.000304,0.000650,0.000650,0.002231,0.289460,-0.003157,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000102,0.000000,0.000000,0.000000,0.000026,0.000274,0.000238,0.000300,0.000573,0.000573,0.002195,0.286503,-0.002957,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000027,0.000269,0.000234,0.000296,0.000518,0.000518,0.002159,0.283543,-0.002960,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000265,0.000229,0.000293,0.000481,0.000481,0.002124,0.280662,-0.002881,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000260,0.000226,0.000290,0.000397,0.000397,0.002089,0.277907,-0.002755,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000256,0.000222,0.000286,0.000284,0.000284,0.002054,0.275303,-0.002604,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000252,0.000218,0.000283,0.000151,0.000151,0.002021,0.272868,-0.002435,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000248,0.000215,0.000280,0.000013,0.000013,0.001989,0.270605,-0.002263,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000244,0.000212,0.000277,0.000000,0.000000,0.001957,0.268388,-0.002217,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000240,0.000209,0.000274,0.000000,0.000000,0.001926,0.266203,-0.002185,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000236,0.000206,0.000272,0.000000,0.000000,0.001896,0.264050,-0.002153,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000232,0.000203,0.000269,0.000000,0.000000,0.001867,0.261928,-0.002121,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000228,0.000200,0.000267,0.000000,0.000000,0.001839,0.259838,-0.002090,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000225,0.000197,0.000264,0.000000,0.000000,0.001811,0.257778,-0.002060,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000221,0.000194,0.000262,0.000000,0.000000,0.001783,0.255748,-0.002030,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000218,0.000191,0.000260,0.000000,0.000000,0.001757,0.253748,-0.002000,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000215,0.000188,0.000258,0.000000,0.000000,0.001730,0.251777,-0.001971,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000211,0.000186,0.000256,0.000000,0.000000,0.001705,0.249835,-0.001942,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000208,0.000183,0.000254,0.000000,0.000000,0.001679,0.247921,-0.001914,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000205,0.000180,0.000252,0.000000,0.000000,0.001655,0.246036,-0.001886,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000202,0.000178,0.000250,0.000105,0.000105,0.001630,0.244074,-0.001961,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000199,0.000174,0.000248,0.000329,0.000329,0.001606,0.241921,-0.002153,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000196,0.000171,0.000246,0.000493,0.000493,0.001581,0.239637,-0.002283,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000193,0.000168,0.000245,0.000613,0.000613,0.001557,0.237269,-0.002369,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000190,0.000165,0.000243,0.000616,0.000616,0.001532,0.234932,-0.002337,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000186,0.000161,0.000241,0.000540,0.000540,0.001507,0.232704,-0.002228,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000106,0.000000,0.000000,0.000000,0.000056,0.000183,0.000159,0.000239,0.000488,0.000488,0.001482,0.230665,-0.002039,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000018,0.000000,0.000000,0.000000,0.000057,0.000180,0.000156,0.000237,0.000434,0.000434,0.001457,0.228622,-0.002043,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000177,0.000153,0.000235,0.000358,0.000358,0.001433,0.226666,-0.001956,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000174,0.000150,0.000234,0.000263,0.000263,0.001409,0.224832,-0.001834,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000171,0.000148,0.000232,0.000157,0.000157,0.001386,0.223128,-0.001703,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000168,0.000146,0.000231,0.000022,0.000022,0.001363,0.221583,-0.001546,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000013,0.000000,0.000000,0.000000,0.000064,0.000166,0.000144,0.000229,0.000000,0.000000,0.001341,0.220094,-0.001489,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000163,0.000141,0.000228,0.000000,0.000000,0.001320,0.218615,-0.001479,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000160,0.000139,0.000226,0.000000,0.000000,0.001299,0.217157,-0.001458,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000158,0.000137,0.000225,0.000000,0.000000,0.001279,0.215721,-0.001436,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000155,0.000135,0.000224,0.000000,0.000000,0.001259,0.214305,-0.001415,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000153,0.000133,0.000223,0.000000,0.000000,0.001240,0.212911,-0.001395,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000150,0.000131,0.000222,0.000000,0.000000,0.001221,0.211537,-0.001374,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000148,0.000129,0.000221,0.000000,0.000000,0.001202,0.210182,-0.001354,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000146,0.000128,0.000220,0.000000,0.000000,0.001184,0.208848,-0.001334,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000144,0.000126,0.000219,0.000000,0.000000,0.001166,0.207533,-0.001315,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000141,0.000124,0.000218,0.000000,0.000000,0.001149,0.206237,-0.001296,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000139,0.000122,0.000218,0.000000,0.000000,0.001131,0.204960,-0.001277,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000137,0.000120,0.000217,0.000104,0.000104,0.001114,0.203600,-0.001361,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000135,0.000118,0.000216,0.000337,0.000337,0.001097,0.202030,-0.001570,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000133,0.000116,0.000215,0.000506,0.000506,0.001080,0.200316,-0.001714,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000131,0.000113,0.000214,0.000625,0.000625,0.001062,0.198510,-0.001806,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000128,0.000110,0.000213,0.000668,0.000668,0.001044,0.196688,-0.001822,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000126,0.000108,0.000213,0.000597,0.000597,0.001026,0.194963,-0.001725,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000124,0.000106,0.000212,0.000547,0.000547,0.001008,0.193311,-0.001651,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000122,0.000103,0.000211,0.000492,0.000492,0.000990,0.191739,-0.001573,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000119,0.000101,0.000210,0.000406,0.000406,0.000972,0.190274,-0.001465,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000117,0.000099,0.000209,0.000292,0.000292,0.000954,0.188943,-0.001331,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000115,0.000098,0.000208,0.000163,0.000163,0.000937,0.187758,-0.001185,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000351,0.000006,0.000011,0.000006,0.000095,0.000113,0.000097,0.000213,0.000024,0.000024,0.000921,0.187063,-0.000695,1.000000,0.000005 +98,2022-08-05 02:00:00,0.000000,0.000003,0.000000,0.000003,0.000096,0.000111,0.000095,0.000210,0.000000,0.000000,0.000905,0.186067,-0.000997,1.000000,0.000002 +99,2022-08-05 03:00:00,0.000000,0.000002,0.000000,0.000002,0.000097,0.000109,0.000094,0.000209,0.000000,0.000000,0.000890,0.185084,-0.000982,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000107,0.000093,0.000206,0.000000,0.000000,0.000875,0.184117,-0.000968,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000106,0.000091,0.000206,0.000000,0.000000,0.000861,0.183163,-0.000954,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000104,0.000090,0.000205,0.000000,0.000000,0.000847,0.182223,-0.000940,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000102,0.000089,0.000205,0.000000,0.000000,0.000833,0.181298,-0.000926,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000100,0.000087,0.000205,0.000000,0.000000,0.000820,0.180385,-0.000912,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000099,0.000086,0.000204,0.000000,0.000000,0.000807,0.179486,-0.000899,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000097,0.000085,0.000204,0.000000,0.000000,0.000794,0.178600,-0.000886,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000096,0.000083,0.000204,0.000000,0.000000,0.000782,0.177727,-0.000873,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000094,0.000082,0.000204,0.000000,0.000000,0.000770,0.176867,-0.000860,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000093,0.000081,0.000204,0.000000,0.000000,0.000758,0.176019,-0.000848,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000091,0.000080,0.000204,0.000117,0.000117,0.000747,0.175068,-0.000951,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000090,0.000078,0.000203,0.000341,0.000341,0.000735,0.173911,-0.001158,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000088,0.000076,0.000203,0.000507,0.000507,0.000723,0.172606,-0.001304,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000087,0.000074,0.000203,0.000626,0.000626,0.000710,0.171204,-0.001402,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000085,0.000072,0.000203,0.000671,0.000671,0.000697,0.169778,-0.001426,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000084,0.000070,0.000202,0.000605,0.000605,0.000684,0.168438,-0.001341,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000082,0.000069,0.000202,0.000532,0.000532,0.000670,0.167189,-0.001249,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000080,0.000067,0.000202,0.000436,0.000436,0.000657,0.166053,-0.001136,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000123,0.000079,0.000065,0.000201,0.000357,0.000357,0.000644,0.165012,-0.001041,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000100,0.000000,0.000000,0.000000,0.000124,0.000077,0.000064,0.000201,0.000268,0.000268,0.000631,0.164171,-0.000841,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000076,0.000063,0.000201,0.000153,0.000153,0.000618,0.163358,-0.000813,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000459,0.000009,0.000016,0.000009,0.000127,0.000074,0.000063,0.000210,0.000048,0.000048,0.000607,0.163097,-0.000261,1.000000,0.000007 +122,2022-08-06 02:00:00,0.000043,0.000004,0.000000,0.000004,0.000128,0.000073,0.000062,0.000205,0.000000,0.000000,0.000596,0.162492,-0.000604,1.000000,0.000003 +123,2022-08-06 03:00:00,0.000387,0.000011,0.000015,0.000011,0.000129,0.000072,0.000061,0.000212,0.000000,0.000000,0.000586,0.162222,-0.000271,1.000000,0.000007 +124,2022-08-06 04:00:00,0.000253,0.000007,0.000006,0.000007,0.000131,0.000070,0.000061,0.000208,0.000000,0.000000,0.000576,0.161832,-0.000390,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000002,0.000004,0.000000,0.000004,0.000132,0.000069,0.000060,0.000206,0.000000,0.000000,0.000567,0.161206,-0.000626,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000027,0.000001,0.000000,0.000001,0.000133,0.000068,0.000059,0.000203,0.000000,0.000000,0.000558,0.160613,-0.000593,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000067,0.000058,0.000202,0.000000,0.000000,0.000550,0.160003,-0.000610,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000066,0.000057,0.000202,0.000000,0.000000,0.000541,0.159402,-0.000601,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000065,0.000057,0.000202,0.000000,0.000000,0.000533,0.158809,-0.000592,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000064,0.000056,0.000202,0.000000,0.000000,0.000524,0.158225,-0.000584,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000063,0.000055,0.000203,0.000000,0.000000,0.000516,0.157650,-0.000575,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000062,0.000054,0.000203,0.000000,0.000000,0.000509,0.157083,-0.000567,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000061,0.000053,0.000203,0.000000,0.000000,0.000501,0.156524,-0.000559,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000060,0.000053,0.000204,0.000098,0.000098,0.000493,0.155878,-0.000647,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000059,0.000051,0.000204,0.000311,0.000311,0.000485,0.155030,-0.000847,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000058,0.000050,0.000204,0.000471,0.000471,0.000477,0.154037,-0.000993,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000057,0.000048,0.000204,0.000592,0.000592,0.000468,0.152939,-0.001098,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000056,0.000047,0.000204,0.000689,0.000689,0.000459,0.151762,-0.001177,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000055,0.000045,0.000204,0.000612,0.000612,0.000449,0.150679,-0.001084,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000054,0.000044,0.000204,0.000561,0.000561,0.000439,0.149660,-0.001018,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000052,0.000042,0.000204,0.000498,0.000498,0.000429,0.148719,-0.000941,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000051,0.000041,0.000204,0.000421,0.000421,0.000419,0.147868,-0.000851,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000050,0.000040,0.000204,0.000299,0.000299,0.000410,0.147149,-0.000719,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000049,0.000039,0.000204,0.000161,0.000161,0.000400,0.146577,-0.000572,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000048,0.000039,0.000205,0.000021,0.000021,0.000391,0.146151,-0.000426,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000047,0.000038,0.000205,0.000000,0.000000,0.000383,0.145752,-0.000399,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000046,0.000038,0.000205,0.000000,0.000000,0.000375,0.145359,-0.000393,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000045,0.000037,0.000205,0.000000,0.000000,0.000367,0.144972,-0.000387,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000044,0.000036,0.000205,0.000000,0.000000,0.000360,0.144590,-0.000382,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000043,0.000036,0.000206,0.000000,0.000000,0.000353,0.144214,-0.000376,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000042,0.000035,0.000206,0.000000,0.000000,0.000346,0.143844,-0.000371,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000041,0.000035,0.000207,0.000000,0.000000,0.000340,0.143478,-0.000365,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000041,0.000034,0.000207,0.000000,0.000000,0.000333,0.143119,-0.000360,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000040,0.000034,0.000207,0.000000,0.000000,0.000328,0.142764,-0.000355,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000039,0.000033,0.000208,0.000000,0.000000,0.000322,0.142415,-0.000349,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000038,0.000033,0.000208,0.000000,0.000000,0.000316,0.142070,-0.000344,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000038,0.000032,0.000209,0.000000,0.000000,0.000311,0.141731,-0.000339,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000037,0.000032,0.000209,0.000094,0.000094,0.000306,0.141304,-0.000427,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000036,0.000031,0.000210,0.000313,0.000313,0.000300,0.140667,-0.000637,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000036,0.000030,0.000210,0.000483,0.000483,0.000294,0.139873,-0.000794,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000035,0.000029,0.000210,0.000603,0.000603,0.000288,0.138972,-0.000901,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000034,0.000027,0.000211,0.000685,0.000685,0.000281,0.138003,-0.000969,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000033,0.000026,0.000211,0.000612,0.000612,0.000273,0.137120,-0.000883,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000032,0.000025,0.000211,0.000552,0.000552,0.000266,0.136309,-0.000811,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000031,0.000024,0.000211,0.000485,0.000485,0.000258,0.135576,-0.000733,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000030,0.000023,0.000211,0.000402,0.000402,0.000250,0.134935,-0.000641,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000126,0.000000,0.000000,0.000000,0.000182,0.000030,0.000022,0.000212,0.000285,0.000285,0.000243,0.134543,-0.000392,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000475,0.000006,0.000011,0.000006,0.000183,0.000029,0.000022,0.000218,0.000126,0.000126,0.000237,0.134647,0.000103,1.000000,0.000005 +169,2022-08-08 01:00:00,0.000000,0.000003,0.000000,0.000003,0.000184,0.000028,0.000022,0.000215,0.000000,0.000000,0.000231,0.134416,-0.000231,1.000000,0.000002 +170,2022-08-08 02:00:00,0.000000,0.000002,0.000000,0.000002,0.000185,0.000027,0.000022,0.000215,0.000000,0.000000,0.000225,0.134188,-0.000227,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000027,0.000021,0.000213,0.000000,0.000000,0.000220,0.133964,-0.000224,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000026,0.000021,0.000213,0.000000,0.000000,0.000215,0.133743,-0.000221,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000026,0.000021,0.000214,0.000000,0.000000,0.000210,0.133526,-0.000218,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000025,0.000021,0.000214,0.000000,0.000000,0.000206,0.133311,-0.000214,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000024,0.000020,0.000215,0.000000,0.000000,0.000201,0.133100,-0.000211,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000024,0.000020,0.000215,0.000000,0.000000,0.000197,0.132892,-0.000208,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000024,0.000020,0.000216,0.000000,0.000000,0.000193,0.132687,-0.000205,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000023,0.000019,0.000217,0.000000,0.000000,0.000190,0.132484,-0.000202,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000023,0.000019,0.000217,0.000000,0.000000,0.000186,0.132285,-0.000199,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000022,0.000019,0.000218,0.000000,0.000000,0.000183,0.132089,-0.000196,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000022,0.000018,0.000218,0.000000,0.000000,0.000179,0.131895,-0.000193,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000021,0.000018,0.000219,0.000080,0.000080,0.000176,0.131626,-0.000269,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000021,0.000017,0.000219,0.000300,0.000300,0.000173,0.131144,-0.000482,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000020,0.000017,0.000220,0.000466,0.000466,0.000169,0.130505,-0.000639,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000020,0.000015,0.000220,0.000584,0.000584,0.000164,0.129760,-0.000745,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000019,0.000014,0.000221,0.000672,0.000672,0.000159,0.128938,-0.000822,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000019,0.000013,0.000221,0.000605,0.000605,0.000154,0.128194,-0.000744,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000012,0.000221,0.000536,0.000536,0.000148,0.127529,-0.000665,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000017,0.000011,0.000222,0.000487,0.000487,0.000142,0.126922,-0.000607,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000017,0.000011,0.000222,0.000397,0.000397,0.000136,0.126413,-0.000510,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000016,0.000010,0.000222,0.000279,0.000279,0.000131,0.126027,-0.000385,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000015,0.000010,0.000222,0.000158,0.000158,0.000125,0.125767,-0.000261,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000015,0.000010,0.000223,0.000017,0.000017,0.000120,0.125649,-0.000118,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000014,0.000010,0.000223,0.000000,0.000000,0.000116,0.125549,-0.000099,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000014,0.000009,0.000223,0.000000,0.000000,0.000112,0.125451,-0.000098,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000013,0.000009,0.000224,0.000000,0.000000,0.000108,0.125355,-0.000096,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000013,0.000009,0.000224,0.000000,0.000000,0.000104,0.125260,-0.000095,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000009,0.000225,0.000000,0.000000,0.000101,0.125166,-0.000094,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000012,0.000009,0.000225,0.000000,0.000000,0.000098,0.125074,-0.000092,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000012,0.000009,0.000226,0.000000,0.000000,0.000095,0.124983,-0.000091,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000011,0.000009,0.000226,0.000000,0.000000,0.000092,0.124893,-0.000090,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000011,0.000008,0.000227,0.000000,0.000000,0.000090,0.124805,-0.000088,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000011,0.000008,0.000227,0.000000,0.000000,0.000088,0.124718,-0.000087,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000010,0.000008,0.000228,0.000000,0.000000,0.000085,0.124632,-0.000086,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000010,0.000008,0.000229,0.000000,0.000000,0.000083,0.124548,-0.000085,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000010,0.000008,0.000229,0.000087,0.000087,0.000081,0.124378,-0.000169,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620900.csv b/test/channel_loss/channel_forcing/et/cat-2620900.csv new file mode 100644 index 000000000..ce68c31c3 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620900.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000033,0.000000,0.000000,0.000000,0.000000,0.001506,0.000619,0.001506,0.000150,0.000150,0.010709,0.425566,-0.005003,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001382,0.000610,0.001382,0.000033,0.000033,0.009937,0.420722,-0.004844,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001275,0.000601,0.001275,0.000000,0.000000,0.009263,0.415984,-0.004738,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001183,0.000591,0.001184,0.000000,0.000000,0.008671,0.411318,-0.004666,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001104,0.000582,0.001104,0.000000,0.000000,0.008149,0.406724,-0.004595,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001034,0.000574,0.001035,0.000000,0.000000,0.007688,0.402199,-0.004525,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000974,0.000565,0.000974,0.000000,0.000000,0.007280,0.397743,-0.004456,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000920,0.000556,0.000921,0.000000,0.000000,0.006916,0.393356,-0.004388,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000873,0.000548,0.000874,0.000000,0.000000,0.006591,0.389035,-0.004321,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000831,0.000539,0.000832,0.000000,0.000000,0.006299,0.384780,-0.004255,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000793,0.000531,0.000795,0.000000,0.000000,0.006037,0.380590,-0.004190,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000760,0.000523,0.000762,0.000000,0.000000,0.005801,0.376463,-0.004126,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000729,0.000515,0.000732,0.000000,0.000000,0.005586,0.372400,-0.004063,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000702,0.000507,0.000705,0.000000,0.000000,0.005392,0.368399,-0.004001,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000677,0.000499,0.000680,0.000114,0.000114,0.005214,0.364346,-0.004053,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000654,0.000491,0.000658,0.000332,0.000332,0.005051,0.360140,-0.004206,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000633,0.000483,0.000638,0.000501,0.000501,0.004900,0.355832,-0.004308,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000614,0.000474,0.000619,0.000618,0.000618,0.004760,0.351474,-0.004357,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000596,0.000466,0.000601,0.000587,0.000587,0.004629,0.347214,-0.004261,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000068,0.000000,0.000000,0.000000,0.000006,0.000579,0.000458,0.000585,0.000520,0.000520,0.004507,0.343151,-0.004062,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000056,0.000000,0.000000,0.000000,0.000006,0.000564,0.000450,0.000570,0.000459,0.000459,0.004393,0.339199,-0.003952,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000240,0.000000,0.000000,0.000000,0.000007,0.000549,0.000443,0.000556,0.000371,0.000371,0.004287,0.335575,-0.003624,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000131,0.000000,0.000000,0.000000,0.000008,0.000536,0.000436,0.000544,0.000308,0.000308,0.004186,0.331961,-0.003614,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000786,0.000017,0.000031,0.000017,0.000008,0.000523,0.000430,0.000549,0.000226,0.000226,0.004093,0.329097,-0.002864,1.000000,0.000014 +24,2022-08-02 00:00:00,0.001194,0.000064,0.000101,0.000064,0.000009,0.000512,0.000425,0.000584,0.000157,0.000157,0.004007,0.326677,-0.002420,1.000000,0.000052 +25,2022-08-02 01:00:00,0.001410,0.000123,0.000165,0.000123,0.000010,0.000501,0.000421,0.000633,0.000064,0.000064,0.003927,0.324536,-0.002142,1.000000,0.000095 +26,2022-08-02 02:00:00,0.001807,0.000218,0.000285,0.000218,0.000011,0.000491,0.000418,0.000720,0.000000,0.000000,0.003854,0.322763,-0.001773,1.000000,0.000161 +27,2022-08-02 03:00:00,0.001774,0.000255,0.000274,0.000255,0.000011,0.000482,0.000414,0.000748,0.000000,0.000000,0.003786,0.320994,-0.001769,1.000000,0.000180 +28,2022-08-02 04:00:00,0.001318,0.000212,0.000157,0.000212,0.000012,0.000473,0.000410,0.000698,0.000000,0.000000,0.003723,0.318919,-0.002075,1.000000,0.000126 +29,2022-08-02 05:00:00,0.000406,0.000103,0.000016,0.000103,0.000013,0.000465,0.000405,0.000581,0.000000,0.000000,0.003662,0.316117,-0.002802,1.000000,0.000039 +30,2022-08-02 06:00:00,0.000240,0.000039,0.000006,0.000039,0.000014,0.000458,0.000399,0.000510,0.000000,0.000000,0.003604,0.313204,-0.002913,1.000000,0.000006 +31,2022-08-02 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000015,0.000450,0.000393,0.000469,0.000000,0.000000,0.003547,0.310105,-0.003099,1.000000,0.000001 +32,2022-08-02 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000015,0.000443,0.000387,0.000459,0.000000,0.000000,0.003491,0.307053,-0.003052,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000435,0.000381,0.000452,0.000000,0.000000,0.003437,0.304048,-0.003005,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000428,0.000375,0.000445,0.000000,0.000000,0.003384,0.301088,-0.002959,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000421,0.000369,0.000439,0.000000,0.000000,0.003332,0.298174,-0.002914,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000415,0.000364,0.000434,0.000000,0.000000,0.003281,0.295304,-0.002870,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000408,0.000358,0.000428,0.000000,0.000000,0.003231,0.292478,-0.002826,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000402,0.000353,0.000423,0.000108,0.000108,0.003182,0.289588,-0.002890,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000395,0.000347,0.000417,0.000305,0.000305,0.003133,0.286549,-0.003040,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000389,0.000340,0.000412,0.000456,0.000456,0.003085,0.283407,-0.003142,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000382,0.000334,0.000406,0.000576,0.000576,0.003037,0.280195,-0.003212,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000212,0.000000,0.000000,0.000000,0.000025,0.000376,0.000328,0.000401,0.000654,0.000654,0.002989,0.277164,-0.003031,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000123,0.000000,0.000000,0.000000,0.000026,0.000370,0.000322,0.000396,0.000576,0.000576,0.002941,0.274167,-0.002996,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000034,0.000000,0.000000,0.000000,0.000027,0.000364,0.000316,0.000391,0.000511,0.000511,0.002894,0.271194,-0.002973,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000028,0.000358,0.000311,0.000386,0.000478,0.000478,0.002847,0.268265,-0.002929,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000352,0.000305,0.000381,0.000398,0.000398,0.002801,0.265460,-0.002806,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000346,0.000300,0.000376,0.000286,0.000286,0.002755,0.262806,-0.002653,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000340,0.000295,0.000371,0.000153,0.000153,0.002710,0.260325,-0.002482,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000334,0.000291,0.000367,0.000015,0.000015,0.002667,0.258017,-0.002308,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000329,0.000286,0.000362,0.000000,0.000000,0.002624,0.255759,-0.002258,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000323,0.000282,0.000358,0.000000,0.000000,0.002583,0.253536,-0.002223,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000318,0.000278,0.000354,0.000000,0.000000,0.002542,0.251346,-0.002189,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000313,0.000273,0.000350,0.000000,0.000000,0.002503,0.249190,-0.002156,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000308,0.000269,0.000346,0.000000,0.000000,0.002464,0.247067,-0.002123,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000303,0.000265,0.000343,0.000000,0.000000,0.002426,0.244976,-0.002091,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000298,0.000261,0.000339,0.000000,0.000000,0.002389,0.242917,-0.002059,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000293,0.000257,0.000336,0.000000,0.000000,0.002352,0.240890,-0.002028,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000289,0.000253,0.000332,0.000000,0.000000,0.002317,0.238893,-0.001997,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000284,0.000249,0.000329,0.000000,0.000000,0.002282,0.236927,-0.001966,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000280,0.000245,0.000326,0.000000,0.000000,0.002247,0.234990,-0.001936,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000276,0.000242,0.000323,0.000000,0.000000,0.002213,0.233084,-0.001907,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000271,0.000238,0.000319,0.000107,0.000107,0.002180,0.231100,-0.001983,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000267,0.000234,0.000316,0.000331,0.000331,0.002146,0.228927,-0.002173,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000263,0.000229,0.000313,0.000494,0.000494,0.002113,0.226627,-0.002300,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000258,0.000224,0.000310,0.000617,0.000617,0.002079,0.224240,-0.002387,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000254,0.000220,0.000307,0.000626,0.000626,0.002044,0.221880,-0.002360,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000250,0.000215,0.000304,0.000546,0.000546,0.002010,0.219636,-0.002245,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001506,0.000046,0.000083,0.000046,0.000056,0.000246,0.000214,0.000347,0.000486,0.000486,0.001978,0.218886,-0.000749,1.000000,0.000037 +69,2022-08-03 21:00:00,0.000235,0.000021,0.000000,0.000021,0.000057,0.000242,0.000210,0.000319,0.000434,0.000434,0.001947,0.217029,-0.001858,1.000000,0.000017 +70,2022-08-03 22:00:00,0.000000,0.000017,0.000000,0.000017,0.000058,0.000238,0.000206,0.000313,0.000361,0.000361,0.001916,0.215041,-0.001988,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000056,0.000000,0.000000,0.000000,0.000060,0.000234,0.000203,0.000293,0.000267,0.000267,0.001885,0.213231,-0.001810,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000230,0.000199,0.000291,0.000162,0.000162,0.001854,0.211496,-0.001734,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000226,0.000196,0.000288,0.000025,0.000025,0.001825,0.209923,-0.001573,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000039,0.000000,0.000000,0.000000,0.000064,0.000222,0.000193,0.000286,0.000000,0.000000,0.001796,0.208437,-0.001486,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000219,0.000190,0.000284,0.000000,0.000000,0.001767,0.206935,-0.001502,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000215,0.000187,0.000281,0.000000,0.000000,0.001740,0.205456,-0.001479,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000212,0.000185,0.000279,0.000000,0.000000,0.001712,0.203999,-0.001457,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000208,0.000182,0.000277,0.000000,0.000000,0.001686,0.202565,-0.001434,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000205,0.000179,0.000275,0.000000,0.000000,0.001660,0.201152,-0.001412,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000202,0.000176,0.000273,0.000000,0.000000,0.001634,0.199762,-0.001391,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000199,0.000174,0.000272,0.000000,0.000000,0.001609,0.198392,-0.001370,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000196,0.000171,0.000270,0.000000,0.000000,0.001585,0.197043,-0.001349,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000193,0.000168,0.000268,0.000000,0.000000,0.001560,0.195715,-0.001328,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000190,0.000166,0.000266,0.000000,0.000000,0.001537,0.194407,-0.001308,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000187,0.000163,0.000265,0.000000,0.000000,0.001513,0.193118,-0.001288,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000184,0.000161,0.000263,0.000106,0.000106,0.001490,0.191746,-0.001373,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000181,0.000157,0.000262,0.000333,0.000333,0.001467,0.190170,-0.001576,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000178,0.000154,0.000260,0.000502,0.000502,0.001443,0.188452,-0.001718,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000175,0.000151,0.000258,0.000626,0.000626,0.001419,0.186638,-0.001814,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000172,0.000147,0.000257,0.000675,0.000675,0.001394,0.184804,-0.001834,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000169,0.000144,0.000255,0.000598,0.000598,0.001369,0.183073,-0.001731,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000165,0.000140,0.000253,0.000546,0.000546,0.001344,0.181421,-0.001653,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000162,0.000137,0.000251,0.000492,0.000492,0.001319,0.179846,-0.001575,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000159,0.000134,0.000249,0.000407,0.000407,0.001294,0.178378,-0.001467,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000156,0.000132,0.000248,0.000294,0.000294,0.001270,0.177044,-0.001334,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000153,0.000129,0.000246,0.000166,0.000166,0.001246,0.175858,-0.001187,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000198,0.000001,0.000002,0.000001,0.000094,0.000150,0.000128,0.000246,0.000026,0.000026,0.001224,0.175020,-0.000838,1.000000,0.000001 +98,2022-08-05 02:00:00,0.000000,0.000001,0.000000,0.000001,0.000096,0.000148,0.000126,0.000244,0.000000,0.000000,0.001202,0.174027,-0.000993,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000145,0.000124,0.000242,0.000000,0.000000,0.001181,0.173050,-0.000977,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000142,0.000122,0.000241,0.000000,0.000000,0.001160,0.172087,-0.000963,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000140,0.000120,0.000240,0.000000,0.000000,0.001141,0.171140,-0.000948,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000138,0.000118,0.000239,0.000000,0.000000,0.001121,0.170206,-0.000933,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000135,0.000117,0.000238,0.000000,0.000000,0.001103,0.169287,-0.000919,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000133,0.000115,0.000237,0.000000,0.000000,0.001084,0.168382,-0.000905,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000131,0.000113,0.000236,0.000000,0.000000,0.001067,0.167490,-0.000891,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000129,0.000111,0.000235,0.000000,0.000000,0.001049,0.166613,-0.000878,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000126,0.000110,0.000234,0.000000,0.000000,0.001032,0.165748,-0.000864,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000124,0.000108,0.000233,0.000000,0.000000,0.001016,0.164897,-0.000851,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000122,0.000106,0.000233,0.000000,0.000000,0.001000,0.164059,-0.000838,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000120,0.000104,0.000232,0.000118,0.000118,0.000984,0.163117,-0.000942,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000118,0.000102,0.000231,0.000338,0.000338,0.000967,0.161973,-0.001144,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000116,0.000100,0.000231,0.000503,0.000503,0.000951,0.160683,-0.001289,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000114,0.000097,0.000230,0.000626,0.000626,0.000933,0.159292,-0.001391,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000112,0.000094,0.000229,0.000672,0.000672,0.000916,0.157878,-0.001414,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000022,0.000000,0.000000,0.000000,0.000118,0.000110,0.000092,0.000228,0.000606,0.000606,0.000897,0.156572,-0.001306,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000022,0.000000,0.000000,0.000000,0.000120,0.000107,0.000089,0.000227,0.000533,0.000533,0.000879,0.155357,-0.001215,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000041,0.000000,0.000000,0.000000,0.000121,0.000105,0.000087,0.000226,0.000436,0.000436,0.000861,0.154276,-0.001081,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000041,0.000000,0.000000,0.000000,0.000122,0.000103,0.000085,0.000225,0.000355,0.000355,0.000843,0.153290,-0.000986,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000148,0.000000,0.000000,0.000000,0.000124,0.000101,0.000084,0.000224,0.000270,0.000270,0.000826,0.152509,-0.000781,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000022,0.000000,0.000000,0.000000,0.000125,0.000099,0.000082,0.000224,0.000156,0.000156,0.000809,0.151728,-0.000781,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000535,0.000010,0.000018,0.000010,0.000126,0.000097,0.000082,0.000233,0.000050,0.000050,0.000794,0.151550,-0.000178,1.000000,0.000008 +122,2022-08-06 02:00:00,0.000667,0.000023,0.000033,0.000023,0.000127,0.000095,0.000082,0.000245,0.000000,0.000000,0.000780,0.151539,-0.000011,1.000000,0.000018 +123,2022-08-06 03:00:00,0.000621,0.000028,0.000029,0.000028,0.000129,0.000094,0.000082,0.000250,0.000000,0.000000,0.000768,0.151487,-0.000052,1.000000,0.000020 +124,2022-08-06 04:00:00,0.000282,0.000017,0.000006,0.000017,0.000130,0.000092,0.000081,0.000239,0.000000,0.000000,0.000757,0.151126,-0.000362,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000105,0.000008,0.000001,0.000008,0.000131,0.000091,0.000080,0.000230,0.000000,0.000000,0.000745,0.150600,-0.000526,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000195,0.000003,0.000003,0.000003,0.000132,0.000090,0.000079,0.000225,0.000000,0.000000,0.000735,0.150169,-0.000431,1.000000,0.000001 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000134,0.000088,0.000078,0.000223,0.000000,0.000000,0.000724,0.149555,-0.000614,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000135,0.000087,0.000077,0.000223,0.000000,0.000000,0.000714,0.148951,-0.000604,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000086,0.000075,0.000222,0.000000,0.000000,0.000703,0.148355,-0.000595,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000085,0.000074,0.000222,0.000000,0.000000,0.000693,0.147769,-0.000586,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000083,0.000073,0.000222,0.000000,0.000000,0.000683,0.147192,-0.000577,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000082,0.000072,0.000222,0.000000,0.000000,0.000673,0.146624,-0.000568,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000081,0.000071,0.000222,0.000000,0.000000,0.000663,0.146064,-0.000560,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000080,0.000070,0.000222,0.000098,0.000098,0.000653,0.145416,-0.000648,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000078,0.000068,0.000222,0.000308,0.000308,0.000643,0.144571,-0.000845,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000077,0.000066,0.000222,0.000469,0.000469,0.000632,0.143581,-0.000990,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000076,0.000064,0.000222,0.000593,0.000593,0.000620,0.142484,-0.001098,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000074,0.000062,0.000221,0.000693,0.000693,0.000608,0.141304,-0.001179,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000072,0.000059,0.000221,0.000613,0.000613,0.000595,0.140222,-0.001082,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000071,0.000058,0.000221,0.000559,0.000559,0.000582,0.139210,-0.001012,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000069,0.000056,0.000220,0.000496,0.000496,0.000568,0.138274,-0.000935,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000068,0.000054,0.000220,0.000422,0.000422,0.000555,0.137426,-0.000848,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000066,0.000053,0.000219,0.000302,0.000302,0.000541,0.136710,-0.000717,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000064,0.000051,0.000219,0.000162,0.000162,0.000528,0.136141,-0.000568,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000063,0.000051,0.000219,0.000023,0.000023,0.000516,0.135718,-0.000423,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000061,0.000050,0.000218,0.000000,0.000000,0.000505,0.135325,-0.000393,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000060,0.000049,0.000218,0.000000,0.000000,0.000494,0.134937,-0.000387,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000059,0.000048,0.000218,0.000000,0.000000,0.000483,0.134556,-0.000382,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000058,0.000048,0.000218,0.000000,0.000000,0.000473,0.134180,-0.000376,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000056,0.000047,0.000218,0.000000,0.000000,0.000464,0.133810,-0.000370,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000055,0.000046,0.000218,0.000000,0.000000,0.000455,0.133446,-0.000364,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000054,0.000045,0.000218,0.000000,0.000000,0.000446,0.133087,-0.000359,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000053,0.000045,0.000218,0.000000,0.000000,0.000438,0.132733,-0.000353,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000052,0.000044,0.000218,0.000000,0.000000,0.000430,0.132385,-0.000348,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000051,0.000043,0.000219,0.000000,0.000000,0.000422,0.132043,-0.000343,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000050,0.000043,0.000219,0.000000,0.000000,0.000414,0.131705,-0.000337,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000049,0.000042,0.000219,0.000000,0.000000,0.000407,0.131373,-0.000332,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000049,0.000041,0.000219,0.000095,0.000095,0.000400,0.130952,-0.000421,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000048,0.000040,0.000220,0.000311,0.000311,0.000392,0.130325,-0.000627,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000047,0.000039,0.000220,0.000481,0.000481,0.000384,0.129540,-0.000785,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000037,0.000220,0.000603,0.000603,0.000375,0.128647,-0.000893,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000044,0.000035,0.000220,0.000690,0.000690,0.000366,0.127682,-0.000965,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000033,0.000219,0.000615,0.000615,0.000356,0.126805,-0.000876,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000032,0.000219,0.000556,0.000556,0.000345,0.126001,-0.000805,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000041,0.000030,0.000219,0.000489,0.000489,0.000335,0.125274,-0.000727,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000029,0.000219,0.000405,0.000405,0.000324,0.124640,-0.000633,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000013,0.000000,0.000000,0.000000,0.000181,0.000038,0.000028,0.000219,0.000289,0.000289,0.000314,0.124144,-0.000496,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000173,0.000000,0.000000,0.000000,0.000182,0.000037,0.000028,0.000219,0.000129,0.000129,0.000305,0.123970,-0.000174,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000027,0.000219,0.000001,0.000001,0.000296,0.123755,-0.000215,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000027,0.000219,0.000000,0.000000,0.000288,0.123544,-0.000211,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000026,0.000219,0.000000,0.000000,0.000280,0.123336,-0.000208,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000026,0.000219,0.000000,0.000000,0.000273,0.123131,-0.000205,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000032,0.000026,0.000219,0.000000,0.000000,0.000266,0.122930,-0.000202,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000032,0.000025,0.000219,0.000000,0.000000,0.000260,0.122731,-0.000199,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000031,0.000025,0.000220,0.000000,0.000000,0.000254,0.122536,-0.000196,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000030,0.000024,0.000220,0.000000,0.000000,0.000248,0.122343,-0.000193,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000029,0.000024,0.000220,0.000000,0.000000,0.000243,0.122154,-0.000190,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000029,0.000024,0.000221,0.000000,0.000000,0.000238,0.121967,-0.000187,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000193,0.000028,0.000023,0.000221,0.000000,0.000000,0.000233,0.121785,-0.000182,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000194,0.000028,0.000023,0.000221,0.000000,0.000000,0.000228,0.121606,-0.000179,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000002,0.000000,0.000000,0.000000,0.000195,0.000027,0.000023,0.000222,0.000000,0.000000,0.000224,0.121429,-0.000176,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000196,0.000027,0.000022,0.000222,0.000080,0.000080,0.000219,0.121177,-0.000253,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000010,0.000000,0.000000,0.000000,0.000197,0.000026,0.000021,0.000223,0.000297,0.000297,0.000214,0.120723,-0.000454,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000009,0.000000,0.000000,0.000000,0.000198,0.000025,0.000020,0.000223,0.000464,0.000464,0.000209,0.120110,-0.000613,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000007,0.000000,0.000000,0.000000,0.000199,0.000025,0.000019,0.000223,0.000586,0.000586,0.000203,0.119384,-0.000726,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000005,0.000000,0.000000,0.000000,0.000200,0.000024,0.000017,0.000223,0.000676,0.000676,0.000196,0.118578,-0.000806,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000201,0.000023,0.000016,0.000223,0.000602,0.000602,0.000189,0.117856,-0.000723,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000201,0.000022,0.000014,0.000223,0.000532,0.000532,0.000181,0.117212,-0.000644,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000001,0.000000,0.000000,0.000000,0.000202,0.000021,0.000013,0.000223,0.000488,0.000488,0.000174,0.116620,-0.000591,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000020,0.000012,0.000223,0.000402,0.000402,0.000166,0.116122,-0.000498,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000019,0.000011,0.000223,0.000283,0.000283,0.000158,0.115748,-0.000374,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000011,0.000223,0.000162,0.000162,0.000151,0.115500,-0.000248,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000011,0.000223,0.000021,0.000021,0.000144,0.115395,-0.000106,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000004,0.000000,0.000000,0.000000,0.000207,0.000017,0.000011,0.000224,0.000000,0.000000,0.000138,0.115315,-0.000080,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000016,0.000010,0.000224,0.000000,0.000000,0.000132,0.115233,-0.000082,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000015,0.000010,0.000224,0.000000,0.000000,0.000127,0.115152,-0.000081,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000015,0.000010,0.000224,0.000000,0.000000,0.000123,0.115072,-0.000080,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000014,0.000010,0.000225,0.000000,0.000000,0.000118,0.114993,-0.000079,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000014,0.000010,0.000225,0.000000,0.000000,0.000114,0.114916,-0.000078,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000013,0.000010,0.000226,0.000000,0.000000,0.000111,0.114839,-0.000076,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000013,0.000010,0.000226,0.000000,0.000000,0.000107,0.114764,-0.000075,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000013,0.000009,0.000226,0.000000,0.000000,0.000104,0.114690,-0.000074,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000012,0.000009,0.000227,0.000000,0.000000,0.000101,0.114618,-0.000073,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000215,0.000012,0.000009,0.000227,0.000000,0.000000,0.000098,0.114546,-0.000071,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000216,0.000012,0.000009,0.000228,0.000000,0.000000,0.000096,0.114477,-0.000070,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000217,0.000011,0.000009,0.000228,0.000089,0.000089,0.000093,0.114320,-0.000157,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620901.csv b/test/channel_loss/channel_forcing/et/cat-2620901.csv new file mode 100644 index 000000000..a7a1c4f98 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620901.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000082,0.000000,0.000000,0.000000,0.000000,0.001493,0.000522,0.001493,0.000162,0.000162,0.010626,0.425631,-0.004939,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001357,0.000514,0.001357,0.000038,0.000038,0.009782,0.420806,-0.004825,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001242,0.000506,0.001242,0.000000,0.000000,0.009047,0.416089,-0.004717,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001143,0.000499,0.001143,0.000000,0.000000,0.008404,0.411441,-0.004648,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001057,0.000492,0.001057,0.000000,0.000000,0.007838,0.406862,-0.004579,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000983,0.000484,0.000983,0.000000,0.000000,0.007340,0.402350,-0.004512,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000918,0.000477,0.000918,0.000000,0.000000,0.006899,0.397905,-0.004445,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000861,0.000470,0.000862,0.000000,0.000000,0.006509,0.393526,-0.004380,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000811,0.000463,0.000812,0.000000,0.000000,0.006161,0.389210,-0.004315,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000767,0.000456,0.000768,0.000000,0.000000,0.005851,0.384959,-0.004252,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000727,0.000450,0.000729,0.000000,0.000000,0.005573,0.380770,-0.004189,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000692,0.000443,0.000694,0.000000,0.000000,0.005324,0.376642,-0.004127,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000661,0.000437,0.000664,0.000000,0.000000,0.005099,0.372576,-0.004067,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000633,0.000430,0.000636,0.000000,0.000000,0.004896,0.368569,-0.004007,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000608,0.000424,0.000611,0.000118,0.000118,0.004712,0.364506,-0.004064,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000585,0.000417,0.000588,0.000344,0.000344,0.004545,0.360279,-0.004226,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000564,0.000410,0.000568,0.000518,0.000518,0.004391,0.355943,-0.004336,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000544,0.000403,0.000549,0.000642,0.000642,0.004249,0.351549,-0.004394,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000527,0.000396,0.000532,0.000611,0.000611,0.004119,0.347250,-0.004299,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000126,0.000000,0.000000,0.000000,0.000006,0.000510,0.000389,0.000516,0.000523,0.000523,0.003998,0.343225,-0.004025,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000066,0.000000,0.000000,0.000000,0.000007,0.000495,0.000383,0.000502,0.000470,0.000470,0.003886,0.339253,-0.003972,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000425,0.000000,0.000000,0.000000,0.000007,0.000481,0.000378,0.000489,0.000380,0.000380,0.003782,0.335782,-0.003472,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000095,0.000000,0.000000,0.000000,0.000008,0.000468,0.000372,0.000476,0.000317,0.000317,0.003685,0.332098,-0.003684,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000592,0.000008,0.000015,0.000008,0.000009,0.000456,0.000367,0.000473,0.000237,0.000237,0.003596,0.329022,-0.003076,1.000000,0.000007 +24,2022-08-02 00:00:00,0.000671,0.000021,0.000031,0.000021,0.000009,0.000445,0.000362,0.000475,0.000162,0.000162,0.003512,0.326128,-0.002894,1.000000,0.000017 +25,2022-08-02 01:00:00,0.001248,0.000094,0.000152,0.000094,0.000010,0.000435,0.000358,0.000540,0.000066,0.000066,0.003435,0.323820,-0.002308,1.000000,0.000075 +26,2022-08-02 02:00:00,0.001886,0.000242,0.000359,0.000242,0.000011,0.000426,0.000355,0.000678,0.000000,0.000000,0.003365,0.322036,-0.001784,1.000000,0.000192 +27,2022-08-02 03:00:00,0.001733,0.000289,0.000307,0.000289,0.000012,0.000417,0.000353,0.000718,0.000000,0.000000,0.003300,0.320179,-0.001857,1.000000,0.000210 +28,2022-08-02 04:00:00,0.001513,0.000280,0.000239,0.000280,0.000012,0.000409,0.000349,0.000701,0.000000,0.000000,0.003240,0.318200,-0.001979,1.000000,0.000169 +29,2022-08-02 05:00:00,0.000551,0.000140,0.000035,0.000140,0.000013,0.000402,0.000345,0.000555,0.000000,0.000000,0.003184,0.315502,-0.002698,1.000000,0.000063 +30,2022-08-02 06:00:00,0.000333,0.000064,0.000013,0.000064,0.000014,0.000395,0.000340,0.000472,0.000000,0.000000,0.003129,0.312652,-0.002850,1.000000,0.000013 +31,2022-08-02 07:00:00,0.000000,0.000010,0.000000,0.000010,0.000015,0.000388,0.000335,0.000413,0.000000,0.000000,0.003077,0.309528,-0.003124,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000016,0.000381,0.000330,0.000400,0.000000,0.000000,0.003026,0.306450,-0.003078,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000375,0.000326,0.000391,0.000000,0.000000,0.002977,0.303417,-0.003033,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000368,0.000321,0.000386,0.000000,0.000000,0.002930,0.300429,-0.002988,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000362,0.000316,0.000381,0.000000,0.000000,0.002883,0.297485,-0.002944,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000356,0.000311,0.000376,0.000000,0.000000,0.002838,0.294585,-0.002901,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000351,0.000307,0.000371,0.000000,0.000000,0.002794,0.291727,-0.002858,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000345,0.000302,0.000367,0.000110,0.000110,0.002751,0.288802,-0.002924,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000340,0.000297,0.000362,0.000313,0.000313,0.002709,0.285721,-0.003081,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000334,0.000292,0.000358,0.000465,0.000465,0.002667,0.282535,-0.003186,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000329,0.000287,0.000353,0.000586,0.000586,0.002625,0.279278,-0.003258,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000422,0.000000,0.000000,0.000000,0.000026,0.000323,0.000282,0.000349,0.000672,0.000672,0.002584,0.276400,-0.002878,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000079,0.000000,0.000000,0.000000,0.000027,0.000318,0.000277,0.000345,0.000590,0.000590,0.002543,0.273306,-0.003094,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000016,0.000000,0.000000,0.000000,0.000028,0.000313,0.000272,0.000341,0.000524,0.000524,0.002502,0.270261,-0.003046,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000029,0.000308,0.000268,0.000337,0.000491,0.000491,0.002462,0.267278,-0.002983,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000303,0.000263,0.000333,0.000412,0.000412,0.002423,0.264416,-0.002861,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000298,0.000259,0.000329,0.000300,0.000300,0.002384,0.261708,-0.002709,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000293,0.000255,0.000325,0.000161,0.000161,0.002346,0.259175,-0.002533,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000288,0.000251,0.000321,0.000019,0.000019,0.002309,0.256820,-0.002355,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000283,0.000247,0.000318,0.000000,0.000000,0.002273,0.254518,-0.002302,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000279,0.000243,0.000314,0.000000,0.000000,0.002237,0.252251,-0.002268,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000274,0.000240,0.000311,0.000000,0.000000,0.002203,0.250016,-0.002234,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000270,0.000236,0.000308,0.000000,0.000000,0.002169,0.247815,-0.002201,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000266,0.000233,0.000305,0.000000,0.000000,0.002136,0.245646,-0.002169,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000262,0.000229,0.000302,0.000000,0.000000,0.002104,0.243509,-0.002137,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000258,0.000226,0.000299,0.000000,0.000000,0.002073,0.241403,-0.002106,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000254,0.000223,0.000297,0.000000,0.000000,0.002042,0.239329,-0.002075,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000250,0.000219,0.000294,0.000000,0.000000,0.002011,0.237285,-0.002044,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000246,0.000216,0.000292,0.000000,0.000000,0.001982,0.235271,-0.002014,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000242,0.000213,0.000289,0.000000,0.000000,0.001952,0.233287,-0.001984,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000239,0.000210,0.000287,0.000000,0.000000,0.001924,0.231332,-0.001955,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000235,0.000207,0.000284,0.000114,0.000114,0.001895,0.229294,-0.002038,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000231,0.000203,0.000282,0.000349,0.000349,0.001867,0.227054,-0.002240,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000228,0.000199,0.000280,0.000517,0.000517,0.001839,0.224681,-0.002373,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000224,0.000195,0.000277,0.000640,0.000640,0.001810,0.222222,-0.002459,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000220,0.000191,0.000275,0.000648,0.000648,0.001781,0.219792,-0.002430,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000217,0.000188,0.000273,0.000562,0.000562,0.001752,0.217481,-0.002310,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003540,0.000402,0.000732,0.000402,0.000057,0.000214,0.000189,0.000673,0.000497,0.000497,0.001727,0.218036,0.000555,1.000000,0.000329 +69,2022-08-03 21:00:00,0.000540,0.000183,0.000001,0.000183,0.000059,0.000210,0.000186,0.000452,0.000446,0.000446,0.001702,0.216398,-0.001638,1.000000,0.000147 +70,2022-08-03 22:00:00,0.000000,0.000147,0.000000,0.000147,0.000060,0.000207,0.000183,0.000414,0.000374,0.000374,0.001677,0.214323,-0.002075,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000096,0.000000,0.000000,0.000000,0.000061,0.000204,0.000180,0.000266,0.000282,0.000282,0.001653,0.212464,-0.001860,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000201,0.000177,0.000264,0.000171,0.000171,0.001628,0.210647,-0.001817,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000198,0.000174,0.000262,0.000029,0.000029,0.001604,0.208996,-0.001650,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000020,0.000000,0.000000,0.000000,0.000065,0.000195,0.000172,0.000260,0.000000,0.000000,0.001581,0.207419,-0.001578,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000192,0.000169,0.000259,0.000000,0.000000,0.001557,0.205845,-0.001574,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000189,0.000166,0.000257,0.000000,0.000000,0.001535,0.204294,-0.001551,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000186,0.000164,0.000256,0.000000,0.000000,0.001512,0.202766,-0.001528,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000184,0.000162,0.000254,0.000000,0.000000,0.001490,0.201260,-0.001505,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000181,0.000159,0.000253,0.000000,0.000000,0.001468,0.199777,-0.001483,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000178,0.000157,0.000252,0.000000,0.000000,0.001447,0.198316,-0.001461,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000176,0.000155,0.000251,0.000000,0.000000,0.001426,0.196876,-0.001440,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000173,0.000152,0.000249,0.000000,0.000000,0.001405,0.195457,-0.001419,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000170,0.000150,0.000248,0.000000,0.000000,0.001385,0.194059,-0.001398,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000168,0.000148,0.000247,0.000000,0.000000,0.001365,0.192682,-0.001377,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000165,0.000146,0.000246,0.000000,0.000000,0.001345,0.191325,-0.001357,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000163,0.000143,0.000245,0.000110,0.000110,0.001325,0.189880,-0.001445,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000161,0.000141,0.000244,0.000344,0.000344,0.001305,0.188226,-0.001654,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000158,0.000138,0.000243,0.000516,0.000516,0.001285,0.186426,-0.001800,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000155,0.000135,0.000241,0.000643,0.000643,0.001265,0.184527,-0.001899,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000153,0.000132,0.000240,0.000697,0.000697,0.001243,0.182604,-0.001924,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000150,0.000129,0.000239,0.000618,0.000618,0.001222,0.180786,-0.001817,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000147,0.000126,0.000238,0.000565,0.000565,0.001201,0.179048,-0.001738,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000145,0.000123,0.000236,0.000509,0.000509,0.001179,0.177391,-0.001657,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000142,0.000121,0.000235,0.000419,0.000419,0.001158,0.175846,-0.001545,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000140,0.000119,0.000234,0.000307,0.000307,0.001137,0.174434,-0.001412,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000137,0.000117,0.000233,0.000174,0.000174,0.001117,0.173175,-0.001260,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000042,0.000000,0.000000,0.000000,0.000097,0.000135,0.000115,0.000232,0.000031,0.000031,0.001097,0.172116,-0.001058,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000132,0.000113,0.000231,0.000000,0.000000,0.001078,0.171062,-0.001054,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000130,0.000111,0.000230,0.000000,0.000000,0.001060,0.170024,-0.001038,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000128,0.000110,0.000229,0.000000,0.000000,0.001042,0.169001,-0.001023,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000126,0.000108,0.000228,0.000000,0.000000,0.001024,0.167992,-0.001008,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000123,0.000107,0.000228,0.000000,0.000000,0.001008,0.166999,-0.000993,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000121,0.000105,0.000227,0.000000,0.000000,0.000991,0.166021,-0.000979,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000119,0.000104,0.000226,0.000000,0.000000,0.000975,0.165056,-0.000964,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000117,0.000102,0.000226,0.000000,0.000000,0.000960,0.164106,-0.000950,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000116,0.000100,0.000225,0.000000,0.000000,0.000945,0.163170,-0.000936,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000114,0.000099,0.000225,0.000000,0.000000,0.000930,0.162248,-0.000922,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000112,0.000098,0.000225,0.000000,0.000000,0.000916,0.161340,-0.000909,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000110,0.000096,0.000224,0.000000,0.000000,0.000901,0.160444,-0.000895,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000109,0.000095,0.000224,0.000123,0.000123,0.000887,0.159441,-0.001004,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000107,0.000093,0.000223,0.000355,0.000355,0.000873,0.158223,-0.001217,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000105,0.000090,0.000223,0.000525,0.000525,0.000859,0.156857,-0.001366,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000103,0.000088,0.000223,0.000648,0.000648,0.000844,0.155389,-0.001468,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000101,0.000086,0.000222,0.000683,0.000683,0.000828,0.153909,-0.001480,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000122,0.000099,0.000083,0.000221,0.000618,0.000618,0.000812,0.152577,-0.001332,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000124,0.000097,0.000081,0.000221,0.000547,0.000547,0.000797,0.151334,-0.001243,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000125,0.000095,0.000080,0.000220,0.000451,0.000451,0.000781,0.150204,-0.001130,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000126,0.000093,0.000078,0.000220,0.000372,0.000372,0.000765,0.149168,-0.001036,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000220,0.000000,0.000000,0.000000,0.000128,0.000092,0.000077,0.000219,0.000281,0.000281,0.000751,0.148392,-0.000776,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000129,0.000090,0.000075,0.000219,0.000165,0.000165,0.000736,0.147587,-0.000805,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000715,0.000021,0.000039,0.000021,0.000130,0.000088,0.000075,0.000240,0.000054,0.000054,0.000723,0.147507,-0.000080,1.000000,0.000017 +122,2022-08-06 02:00:00,0.001500,0.000111,0.000185,0.000111,0.000132,0.000087,0.000076,0.000330,0.000000,0.000000,0.000713,0.148111,0.000604,1.000000,0.000091 +123,2022-08-06 03:00:00,0.000818,0.000086,0.000058,0.000086,0.000133,0.000086,0.000076,0.000305,0.000000,0.000000,0.000703,0.148159,0.000048,1.000000,0.000063 +124,2022-08-06 04:00:00,0.000262,0.000055,0.000006,0.000055,0.000134,0.000085,0.000076,0.000274,0.000000,0.000000,0.000694,0.147710,-0.000449,1.000000,0.000015 +125,2022-08-06 05:00:00,0.000250,0.000016,0.000006,0.000016,0.000136,0.000084,0.000075,0.000236,0.000000,0.000000,0.000686,0.147257,-0.000454,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000428,0.000012,0.000017,0.000012,0.000137,0.000083,0.000074,0.000231,0.000000,0.000000,0.000678,0.146974,-0.000282,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000138,0.000082,0.000073,0.000225,0.000000,0.000000,0.000669,0.146291,-0.000684,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000140,0.000081,0.000072,0.000224,0.000000,0.000000,0.000661,0.145617,-0.000674,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000080,0.000071,0.000221,0.000000,0.000000,0.000653,0.144953,-0.000664,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000079,0.000070,0.000221,0.000000,0.000000,0.000644,0.144300,-0.000654,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000078,0.000069,0.000221,0.000000,0.000000,0.000636,0.143655,-0.000644,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000076,0.000068,0.000221,0.000000,0.000000,0.000628,0.143020,-0.000635,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000075,0.000067,0.000222,0.000000,0.000000,0.000619,0.142395,-0.000625,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000074,0.000066,0.000222,0.000102,0.000102,0.000611,0.141678,-0.000717,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000073,0.000065,0.000222,0.000326,0.000326,0.000602,0.140752,-0.000926,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000072,0.000063,0.000222,0.000487,0.000487,0.000593,0.139680,-0.001072,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000071,0.000061,0.000222,0.000616,0.000616,0.000583,0.138497,-0.001183,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000070,0.000059,0.000222,0.000710,0.000710,0.000572,0.137238,-0.001258,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000068,0.000057,0.000222,0.000634,0.000634,0.000561,0.136073,-0.001165,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000067,0.000055,0.000222,0.000572,0.000572,0.000549,0.134986,-0.001087,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000065,0.000054,0.000222,0.000513,0.000513,0.000537,0.133974,-0.001012,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000064,0.000052,0.000222,0.000430,0.000430,0.000526,0.133058,-0.000916,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000063,0.000051,0.000222,0.000314,0.000314,0.000514,0.132269,-0.000789,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000050,0.000221,0.000170,0.000170,0.000503,0.131634,-0.000635,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000060,0.000049,0.000221,0.000028,0.000028,0.000492,0.131149,-0.000485,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000059,0.000048,0.000221,0.000000,0.000000,0.000482,0.130698,-0.000451,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000057,0.000048,0.000221,0.000000,0.000000,0.000472,0.130254,-0.000444,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000047,0.000222,0.000000,0.000000,0.000463,0.129817,-0.000437,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000055,0.000046,0.000222,0.000000,0.000000,0.000454,0.129386,-0.000431,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000054,0.000046,0.000222,0.000000,0.000000,0.000445,0.128962,-0.000425,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000053,0.000045,0.000222,0.000000,0.000000,0.000437,0.128543,-0.000418,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000052,0.000044,0.000222,0.000000,0.000000,0.000429,0.128131,-0.000412,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000051,0.000044,0.000223,0.000000,0.000000,0.000422,0.127725,-0.000406,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000050,0.000043,0.000223,0.000000,0.000000,0.000414,0.127325,-0.000400,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000049,0.000042,0.000223,0.000000,0.000000,0.000407,0.126930,-0.000394,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000049,0.000042,0.000224,0.000000,0.000000,0.000400,0.126542,-0.000388,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000048,0.000041,0.000224,0.000000,0.000000,0.000393,0.126159,-0.000383,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000047,0.000040,0.000224,0.000101,0.000101,0.000387,0.125682,-0.000477,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000046,0.000039,0.000225,0.000330,0.000330,0.000380,0.124988,-0.000695,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000045,0.000038,0.000225,0.000501,0.000501,0.000373,0.124135,-0.000853,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000044,0.000036,0.000225,0.000620,0.000620,0.000365,0.123176,-0.000958,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000043,0.000035,0.000225,0.000709,0.000709,0.000356,0.122145,-0.001031,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000042,0.000033,0.000225,0.000628,0.000628,0.000347,0.121208,-0.000937,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000041,0.000032,0.000225,0.000564,0.000564,0.000338,0.120348,-0.000859,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000031,0.000225,0.000498,0.000498,0.000328,0.119566,-0.000782,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000029,0.000225,0.000417,0.000417,0.000319,0.118875,-0.000691,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000028,0.000225,0.000303,0.000303,0.000310,0.118307,-0.000568,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000031,0.000000,0.000000,0.000000,0.000189,0.000037,0.000028,0.000225,0.000136,0.000136,0.000301,0.117942,-0.000365,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000027,0.000226,0.000004,0.000004,0.000293,0.117682,-0.000260,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000035,0.000027,0.000226,0.000000,0.000000,0.000286,0.117430,-0.000252,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000034,0.000027,0.000226,0.000000,0.000000,0.000279,0.117182,-0.000249,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000033,0.000026,0.000226,0.000000,0.000000,0.000272,0.116937,-0.000245,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000026,0.000227,0.000000,0.000000,0.000266,0.116696,-0.000241,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000031,0.000026,0.000227,0.000000,0.000000,0.000260,0.116458,-0.000238,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000025,0.000227,0.000000,0.000000,0.000254,0.116224,-0.000234,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000030,0.000025,0.000228,0.000000,0.000000,0.000249,0.115993,-0.000231,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000228,0.000000,0.000000,0.000244,0.115766,-0.000227,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000024,0.000229,0.000000,0.000000,0.000239,0.115542,-0.000224,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000201,0.000028,0.000024,0.000229,0.000000,0.000000,0.000234,0.115322,-0.000220,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000028,0.000023,0.000230,0.000000,0.000000,0.000230,0.115105,-0.000217,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000027,0.000023,0.000230,0.000000,0.000000,0.000225,0.114891,-0.000214,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000027,0.000023,0.000231,0.000084,0.000084,0.000221,0.114597,-0.000294,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000005,0.000000,0.000000,0.000000,0.000205,0.000026,0.000022,0.000231,0.000310,0.000310,0.000216,0.114089,-0.000508,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000004,0.000000,0.000000,0.000000,0.000206,0.000026,0.000021,0.000232,0.000483,0.000483,0.000211,0.113418,-0.000671,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000003,0.000000,0.000000,0.000000,0.000207,0.000025,0.000019,0.000232,0.000607,0.000607,0.000206,0.112634,-0.000784,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000002,0.000000,0.000000,0.000000,0.000208,0.000024,0.000018,0.000232,0.000697,0.000697,0.000200,0.111772,-0.000862,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000001,0.000000,0.000000,0.000000,0.000209,0.000023,0.000017,0.000232,0.000610,0.000610,0.000193,0.111007,-0.000765,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000023,0.000016,0.000233,0.000544,0.000544,0.000186,0.110317,-0.000690,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000022,0.000015,0.000233,0.000507,0.000507,0.000179,0.109674,-0.000643,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000021,0.000014,0.000233,0.000418,0.000418,0.000172,0.109128,-0.000547,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000020,0.000013,0.000233,0.000299,0.000299,0.000165,0.108706,-0.000421,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000019,0.000013,0.000233,0.000171,0.000171,0.000159,0.108418,-0.000288,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000018,0.000012,0.000233,0.000025,0.000025,0.000152,0.108278,-0.000140,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000003,0.000000,0.000000,0.000000,0.000216,0.000018,0.000012,0.000234,0.000000,0.000000,0.000147,0.108167,-0.000111,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000017,0.000012,0.000234,0.000000,0.000000,0.000142,0.108055,-0.000112,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000017,0.000012,0.000234,0.000000,0.000000,0.000137,0.107945,-0.000110,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000016,0.000012,0.000235,0.000000,0.000000,0.000133,0.107836,-0.000109,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000016,0.000012,0.000235,0.000000,0.000000,0.000129,0.107729,-0.000107,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000015,0.000011,0.000236,0.000000,0.000000,0.000125,0.107623,-0.000106,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000015,0.000011,0.000236,0.000000,0.000000,0.000121,0.107519,-0.000104,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000014,0.000011,0.000237,0.000000,0.000000,0.000118,0.107417,-0.000103,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000014,0.000011,0.000237,0.000000,0.000000,0.000115,0.107316,-0.000101,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000014,0.000011,0.000238,0.000000,0.000000,0.000112,0.107216,-0.000100,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000013,0.000011,0.000238,0.000000,0.000000,0.000109,0.107118,-0.000098,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000013,0.000010,0.000239,0.000000,0.000000,0.000107,0.107022,-0.000097,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000013,0.000010,0.000239,0.000094,0.000094,0.000104,0.106834,-0.000188,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620902.csv b/test/channel_loss/channel_forcing/et/cat-2620902.csv new file mode 100644 index 000000000..50b675ed1 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620902.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001444,0.000173,0.001444,0.000143,0.000143,0.010313,0.430085,-0.004828,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001270,0.000171,0.001270,0.000031,0.000031,0.009215,0.425431,-0.004654,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001122,0.000169,0.001122,0.000000,0.000000,0.008261,0.420868,-0.004562,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000997,0.000166,0.000997,0.000000,0.000000,0.007430,0.416366,-0.004503,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000890,0.000164,0.000891,0.000000,0.000000,0.006704,0.411922,-0.004444,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000799,0.000162,0.000799,0.000000,0.000000,0.006068,0.407537,-0.004386,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000719,0.000160,0.000720,0.000000,0.000000,0.005508,0.403208,-0.004328,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000650,0.000158,0.000651,0.000000,0.000000,0.005016,0.398937,-0.004271,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000590,0.000156,0.000591,0.000000,0.000000,0.004581,0.394722,-0.004215,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000538,0.000154,0.000539,0.000000,0.000000,0.004197,0.390561,-0.004160,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000492,0.000152,0.000494,0.000000,0.000000,0.003857,0.386456,-0.004106,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000452,0.000150,0.000454,0.000000,0.000000,0.003555,0.382404,-0.004052,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000416,0.000148,0.000418,0.000000,0.000000,0.003287,0.378405,-0.003999,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000384,0.000146,0.000387,0.000000,0.000000,0.003048,0.374458,-0.003946,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000357,0.000144,0.000360,0.000113,0.000113,0.002836,0.370452,-0.004006,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000332,0.000142,0.000336,0.000331,0.000331,0.002646,0.366283,-0.004169,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000310,0.000140,0.000314,0.000499,0.000499,0.002476,0.362003,-0.004281,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000290,0.000138,0.000295,0.000607,0.000607,0.002323,0.357672,-0.004331,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000272,0.000136,0.000278,0.000567,0.000567,0.002186,0.353437,-0.004235,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000027,0.000000,0.000000,0.000000,0.000006,0.000257,0.000134,0.000263,0.000504,0.000504,0.002063,0.349347,-0.004090,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000023,0.000000,0.000000,0.000000,0.000007,0.000243,0.000132,0.000249,0.000459,0.000459,0.001952,0.345351,-0.003996,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000152,0.000000,0.000000,0.000000,0.000008,0.000230,0.000130,0.000237,0.000364,0.000364,0.001852,0.341629,-0.003722,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000156,0.000000,0.000000,0.000000,0.000008,0.000218,0.000128,0.000227,0.000305,0.000305,0.001762,0.338017,-0.003612,1.000000,0.000000 +23,2022-08-01 23:00:00,0.001097,0.000120,0.000219,0.000120,0.000009,0.000208,0.000127,0.000337,0.000224,0.000224,0.001681,0.335244,-0.002773,1.000000,0.000099 +24,2022-08-02 00:00:00,0.001634,0.000349,0.000536,0.000349,0.000010,0.000199,0.000125,0.000558,0.000153,0.000153,0.001607,0.332796,-0.002448,1.000000,0.000285 +25,2022-08-02 01:00:00,0.001683,0.000518,0.000618,0.000518,0.000011,0.000190,0.000124,0.000719,0.000062,0.000062,0.001541,0.330436,-0.002360,1.000000,0.000385 +26,2022-08-02 02:00:00,0.002128,0.000784,0.000950,0.000784,0.000011,0.000183,0.000123,0.000979,0.000000,0.000000,0.001482,0.328281,-0.002156,1.000000,0.000551 +27,2022-08-02 03:00:00,0.002197,0.000909,0.000996,0.000909,0.000012,0.000176,0.000122,0.001097,0.000000,0.000000,0.001428,0.326176,-0.002105,1.000000,0.000638 +28,2022-08-02 04:00:00,0.001356,0.000691,0.000458,0.000691,0.000013,0.000170,0.000121,0.000874,0.000000,0.000000,0.001379,0.323800,-0.002376,1.000000,0.000405 +29,2022-08-02 05:00:00,0.000371,0.000338,0.000045,0.000338,0.000014,0.000164,0.000120,0.000517,0.000000,0.000000,0.001334,0.320890,-0.002910,1.000000,0.000112 +30,2022-08-02 06:00:00,0.000199,0.000110,0.000014,0.000110,0.000015,0.000159,0.000118,0.000284,0.000000,0.000000,0.001293,0.317880,-0.003010,1.000000,0.000015 +31,2022-08-02 07:00:00,0.000000,0.000012,0.000000,0.000012,0.000016,0.000154,0.000117,0.000183,0.000000,0.000000,0.001255,0.314727,-0.003154,1.000000,0.000003 +32,2022-08-02 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000017,0.000150,0.000115,0.000169,0.000000,0.000000,0.001220,0.311614,-0.003112,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000146,0.000114,0.000164,0.000000,0.000000,0.001188,0.308543,-0.003072,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000142,0.000112,0.000161,0.000000,0.000000,0.001158,0.305512,-0.003031,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000139,0.000111,0.000158,0.000000,0.000000,0.001129,0.302520,-0.002992,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000135,0.000109,0.000156,0.000000,0.000000,0.001103,0.299568,-0.002952,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000132,0.000108,0.000154,0.000000,0.000000,0.001078,0.296654,-0.002914,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000129,0.000106,0.000152,0.000110,0.000110,0.001055,0.293670,-0.002984,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000004,0.000000,0.000000,0.000000,0.000024,0.000127,0.000105,0.000151,0.000307,0.000307,0.001033,0.290535,-0.003135,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000124,0.000103,0.000149,0.000458,0.000458,0.001012,0.287288,-0.003247,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000122,0.000101,0.000148,0.000571,0.000571,0.000992,0.283972,-0.003316,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000094,0.000000,0.000000,0.000000,0.000027,0.000119,0.000100,0.000146,0.000635,0.000635,0.000973,0.280728,-0.003243,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000142,0.000000,0.000000,0.000000,0.000028,0.000117,0.000098,0.000145,0.000563,0.000563,0.000954,0.277647,-0.003082,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000115,0.000097,0.000144,0.000513,0.000513,0.000936,0.274514,-0.003133,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000113,0.000095,0.000143,0.000483,0.000483,0.000919,0.271451,-0.003063,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000111,0.000094,0.000142,0.000402,0.000402,0.000902,0.268509,-0.002942,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000033,0.000109,0.000093,0.000142,0.000286,0.000286,0.000886,0.265720,-0.002789,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000107,0.000091,0.000141,0.000153,0.000153,0.000871,0.263099,-0.002621,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000105,0.000090,0.000140,0.000014,0.000014,0.000856,0.260649,-0.002450,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000103,0.000089,0.000140,0.000000,0.000000,0.000842,0.258245,-0.002404,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000038,0.000101,0.000088,0.000139,0.000000,0.000000,0.000829,0.255872,-0.002372,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000100,0.000087,0.000139,0.000000,0.000000,0.000815,0.253531,-0.002341,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000098,0.000085,0.000139,0.000000,0.000000,0.000803,0.251220,-0.002311,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000097,0.000084,0.000139,0.000000,0.000000,0.000790,0.248940,-0.002280,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000095,0.000083,0.000138,0.000000,0.000000,0.000778,0.246689,-0.002251,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000094,0.000082,0.000138,0.000000,0.000000,0.000767,0.244468,-0.002221,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000092,0.000081,0.000138,0.000000,0.000000,0.000755,0.242276,-0.002192,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000091,0.000080,0.000138,0.000000,0.000000,0.000744,0.240113,-0.002163,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000090,0.000079,0.000138,0.000000,0.000000,0.000734,0.237978,-0.002135,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000088,0.000078,0.000138,0.000000,0.000000,0.000723,0.235871,-0.002107,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000087,0.000077,0.000139,0.000000,0.000000,0.000713,0.233792,-0.002079,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000086,0.000076,0.000139,0.000105,0.000105,0.000703,0.231636,-0.002156,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000085,0.000075,0.000139,0.000330,0.000330,0.000693,0.229287,-0.002349,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000083,0.000073,0.000139,0.000493,0.000493,0.000683,0.226807,-0.002480,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000082,0.000072,0.000139,0.000611,0.000611,0.000673,0.224244,-0.002563,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000081,0.000071,0.000139,0.000611,0.000611,0.000663,0.221714,-0.002530,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000080,0.000070,0.000140,0.000539,0.000539,0.000653,0.219288,-0.002426,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000505,0.000000,0.000000,0.000000,0.000061,0.000079,0.000069,0.000140,0.000486,0.000486,0.000643,0.217444,-0.001843,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000074,0.000000,0.000000,0.000000,0.000063,0.000077,0.000068,0.000140,0.000438,0.000438,0.000634,0.215247,-0.002198,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000076,0.000067,0.000141,0.000362,0.000362,0.000624,0.213080,-0.002167,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000004,0.000000,0.000000,0.000000,0.000066,0.000075,0.000066,0.000141,0.000265,0.000265,0.000615,0.211043,-0.002038,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000074,0.000065,0.000141,0.000160,0.000160,0.000606,0.209131,-0.001912,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000073,0.000064,0.000142,0.000024,0.000024,0.000597,0.207378,-0.001752,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000072,0.000063,0.000142,0.000000,0.000000,0.000588,0.205672,-0.001706,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000071,0.000062,0.000142,0.000000,0.000000,0.000580,0.203988,-0.001684,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000070,0.000061,0.000143,0.000000,0.000000,0.000572,0.202327,-0.001662,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000069,0.000061,0.000143,0.000000,0.000000,0.000564,0.200687,-0.001640,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000068,0.000060,0.000144,0.000000,0.000000,0.000556,0.199068,-0.001618,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000067,0.000059,0.000144,0.000000,0.000000,0.000548,0.197471,-0.001597,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000066,0.000058,0.000145,0.000000,0.000000,0.000540,0.195895,-0.001576,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000065,0.000058,0.000146,0.000000,0.000000,0.000533,0.194339,-0.001556,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000064,0.000057,0.000146,0.000000,0.000000,0.000526,0.192804,-0.001535,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000063,0.000056,0.000147,0.000000,0.000000,0.000519,0.191289,-0.001515,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000062,0.000055,0.000148,0.000000,0.000000,0.000512,0.189793,-0.001495,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000061,0.000055,0.000148,0.000000,0.000000,0.000505,0.188318,-0.001476,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000061,0.000054,0.000149,0.000104,0.000104,0.000498,0.186758,-0.001559,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000060,0.000053,0.000150,0.000337,0.000337,0.000491,0.184989,-0.001769,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000059,0.000052,0.000150,0.000506,0.000506,0.000484,0.183077,-0.001912,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000058,0.000051,0.000151,0.000622,0.000622,0.000477,0.181076,-0.002001,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000057,0.000050,0.000152,0.000662,0.000662,0.000470,0.179061,-0.002015,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000056,0.000049,0.000152,0.000593,0.000593,0.000463,0.177141,-0.001921,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000055,0.000048,0.000153,0.000548,0.000548,0.000455,0.175290,-0.001851,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000055,0.000047,0.000154,0.000497,0.000497,0.000448,0.173513,-0.001776,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000054,0.000046,0.000154,0.000413,0.000413,0.000441,0.171843,-0.001670,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000053,0.000046,0.000155,0.000295,0.000295,0.000434,0.170312,-0.001532,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000052,0.000045,0.000156,0.000165,0.000165,0.000427,0.168928,-0.001384,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000307,0.000012,0.000021,0.000012,0.000105,0.000051,0.000045,0.000168,0.000025,0.000025,0.000420,0.167983,-0.000945,1.000000,0.000010 +98,2022-08-05 02:00:00,0.000000,0.000005,0.000000,0.000005,0.000107,0.000050,0.000044,0.000163,0.000000,0.000000,0.000414,0.166793,-0.001190,1.000000,0.000004 +99,2022-08-05 03:00:00,0.000000,0.000004,0.000000,0.000004,0.000108,0.000050,0.000043,0.000162,0.000000,0.000000,0.000408,0.165618,-0.001174,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000049,0.000043,0.000159,0.000000,0.000000,0.000402,0.164459,-0.001159,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000048,0.000042,0.000160,0.000000,0.000000,0.000396,0.163315,-0.001144,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000047,0.000042,0.000161,0.000000,0.000000,0.000390,0.162187,-0.001129,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000047,0.000041,0.000161,0.000000,0.000000,0.000385,0.161072,-0.001114,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000046,0.000041,0.000162,0.000000,0.000000,0.000379,0.159973,-0.001100,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000045,0.000040,0.000163,0.000000,0.000000,0.000374,0.158888,-0.001085,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000045,0.000040,0.000164,0.000000,0.000000,0.000369,0.157817,-0.001071,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000044,0.000039,0.000165,0.000000,0.000000,0.000364,0.156760,-0.001057,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000044,0.000039,0.000166,0.000000,0.000000,0.000358,0.155717,-0.001043,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000043,0.000038,0.000167,0.000000,0.000000,0.000354,0.154688,-0.001029,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000042,0.000037,0.000168,0.000118,0.000118,0.000349,0.153556,-0.001132,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000042,0.000037,0.000169,0.000342,0.000342,0.000344,0.152217,-0.001339,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000041,0.000036,0.000170,0.000506,0.000506,0.000339,0.150734,-0.001483,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000041,0.000035,0.000171,0.000622,0.000622,0.000334,0.149156,-0.001578,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000040,0.000035,0.000172,0.000662,0.000662,0.000328,0.147559,-0.001597,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000039,0.000034,0.000172,0.000601,0.000601,0.000323,0.146043,-0.001516,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000039,0.000033,0.000173,0.000528,0.000528,0.000317,0.144619,-0.001424,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000038,0.000032,0.000174,0.000440,0.000440,0.000312,0.143301,-0.001318,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000013,0.000000,0.000000,0.000000,0.000138,0.000037,0.000032,0.000175,0.000361,0.000361,0.000307,0.142091,-0.001210,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000096,0.000000,0.000000,0.000000,0.000139,0.000037,0.000031,0.000176,0.000272,0.000272,0.000301,0.141066,-0.001024,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000036,0.000031,0.000177,0.000156,0.000156,0.000296,0.140075,-0.000991,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000491,0.000027,0.000049,0.000027,0.000142,0.000035,0.000031,0.000205,0.000049,0.000049,0.000292,0.139639,-0.000436,1.000000,0.000022 +122,2022-08-06 02:00:00,0.000213,0.000019,0.000012,0.000019,0.000144,0.000035,0.000030,0.000197,0.000000,0.000000,0.000287,0.139018,-0.000621,1.000000,0.000015 +123,2022-08-06 03:00:00,0.000505,0.000047,0.000063,0.000047,0.000145,0.000034,0.000030,0.000227,0.000000,0.000000,0.000283,0.138644,-0.000374,1.000000,0.000031 +124,2022-08-06 04:00:00,0.000220,0.000025,0.000013,0.000025,0.000147,0.000034,0.000030,0.000206,0.000000,0.000000,0.000279,0.138043,-0.000601,1.000000,0.000018 +125,2022-08-06 05:00:00,0.000035,0.000016,0.000000,0.000016,0.000148,0.000033,0.000030,0.000198,0.000000,0.000000,0.000275,0.137279,-0.000764,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000055,0.000003,0.000001,0.000003,0.000150,0.000033,0.000029,0.000186,0.000000,0.000000,0.000271,0.136545,-0.000734,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000032,0.000029,0.000184,0.000000,0.000000,0.000268,0.135767,-0.000778,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000032,0.000028,0.000185,0.000000,0.000000,0.000264,0.134999,-0.000768,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000032,0.000028,0.000186,0.000000,0.000000,0.000260,0.134241,-0.000758,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000031,0.000028,0.000187,0.000000,0.000000,0.000257,0.133493,-0.000748,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000031,0.000027,0.000188,0.000000,0.000000,0.000253,0.132755,-0.000738,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000030,0.000027,0.000189,0.000000,0.000000,0.000250,0.132026,-0.000729,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000030,0.000027,0.000190,0.000000,0.000000,0.000247,0.131307,-0.000719,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000030,0.000026,0.000191,0.000098,0.000098,0.000243,0.130501,-0.000807,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000029,0.000026,0.000192,0.000310,0.000310,0.000240,0.129495,-0.001005,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000029,0.000025,0.000193,0.000471,0.000471,0.000236,0.128345,-0.001150,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000028,0.000025,0.000194,0.000590,0.000590,0.000233,0.127092,-0.001253,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000028,0.000024,0.000195,0.000683,0.000683,0.000229,0.125763,-0.001328,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000027,0.000023,0.000196,0.000607,0.000607,0.000225,0.124527,-0.001236,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000027,0.000023,0.000197,0.000562,0.000562,0.000221,0.123352,-0.001176,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000026,0.000022,0.000198,0.000500,0.000500,0.000216,0.122253,-0.001099,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000026,0.000022,0.000199,0.000428,0.000428,0.000212,0.121240,-0.001013,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000025,0.000021,0.000200,0.000303,0.000303,0.000208,0.120363,-0.000876,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000025,0.000021,0.000201,0.000163,0.000163,0.000204,0.119637,-0.000727,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000024,0.000021,0.000202,0.000022,0.000022,0.000201,0.119058,-0.000579,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000024,0.000020,0.000203,0.000000,0.000000,0.000197,0.118509,-0.000549,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000023,0.000020,0.000204,0.000000,0.000000,0.000194,0.117967,-0.000542,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000023,0.000020,0.000205,0.000000,0.000000,0.000190,0.117432,-0.000535,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000023,0.000020,0.000206,0.000000,0.000000,0.000187,0.116904,-0.000528,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000022,0.000019,0.000207,0.000000,0.000000,0.000184,0.116383,-0.000521,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000022,0.000019,0.000208,0.000000,0.000000,0.000181,0.115869,-0.000514,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000022,0.000019,0.000209,0.000000,0.000000,0.000178,0.115362,-0.000507,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000021,0.000019,0.000210,0.000000,0.000000,0.000175,0.114861,-0.000501,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000021,0.000018,0.000211,0.000000,0.000000,0.000173,0.114367,-0.000494,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000021,0.000018,0.000212,0.000000,0.000000,0.000170,0.113879,-0.000488,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000020,0.000018,0.000213,0.000000,0.000000,0.000168,0.113398,-0.000481,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000020,0.000018,0.000214,0.000000,0.000000,0.000165,0.112923,-0.000475,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000020,0.000017,0.000215,0.000094,0.000094,0.000163,0.112361,-0.000562,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000019,0.000017,0.000216,0.000313,0.000313,0.000160,0.111591,-0.000770,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000019,0.000016,0.000218,0.000483,0.000483,0.000158,0.110662,-0.000928,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000019,0.000016,0.000219,0.000601,0.000000,0.000155,0.110223,-0.000439,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000018,0.000016,0.000220,0.000678,0.000000,0.000153,0.109790,-0.000433,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000018,0.000016,0.000221,0.000607,0.000000,0.000150,0.109362,-0.000428,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000018,0.000016,0.000222,0.000553,0.000000,0.000148,0.108940,-0.000422,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000018,0.000015,0.000223,0.000490,0.000000,0.000146,0.108523,-0.000417,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000017,0.000015,0.000224,0.000408,0.000000,0.000143,0.108112,-0.000411,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000051,0.000000,0.000000,0.000000,0.000208,0.000017,0.000015,0.000225,0.000289,0.000051,0.000141,0.107707,-0.000406,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000306,0.000004,0.000008,0.000004,0.000209,0.000017,0.000015,0.000230,0.000129,0.000129,0.000139,0.107473,-0.000234,1.000000,0.000004 +169,2022-08-08 01:00:00,0.000000,0.000002,0.000000,0.000002,0.000210,0.000017,0.000015,0.000229,0.000000,0.000000,0.000137,0.107075,-0.000397,1.000000,0.000002 +170,2022-08-08 02:00:00,0.000000,0.000002,0.000000,0.000002,0.000211,0.000016,0.000014,0.000229,0.000000,0.000000,0.000135,0.106683,-0.000392,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000014,0.000229,0.000000,0.000000,0.000134,0.106296,-0.000387,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000016,0.000014,0.000230,0.000000,0.000000,0.000132,0.105914,-0.000382,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000016,0.000014,0.000231,0.000000,0.000000,0.000130,0.105537,-0.000377,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000016,0.000014,0.000232,0.000000,0.000000,0.000128,0.105165,-0.000372,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000015,0.000014,0.000233,0.000000,0.000000,0.000126,0.104798,-0.000367,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000015,0.000013,0.000234,0.000000,0.000000,0.000125,0.104436,-0.000362,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000220,0.000015,0.000013,0.000235,0.000000,0.000000,0.000123,0.104080,-0.000356,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000221,0.000015,0.000013,0.000236,0.000000,0.000000,0.000121,0.103729,-0.000351,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000223,0.000015,0.000013,0.000237,0.000000,0.000000,0.000120,0.103383,-0.000346,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000003,0.000000,0.000000,0.000000,0.000224,0.000014,0.000013,0.000238,0.000000,0.000000,0.000118,0.103042,-0.000341,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000003,0.000000,0.000000,0.000000,0.000225,0.000014,0.000013,0.000239,0.000000,0.000000,0.000117,0.102706,-0.000336,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000004,0.000000,0.000000,0.000000,0.000226,0.000014,0.000012,0.000240,0.000080,0.000004,0.000115,0.102371,-0.000335,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000012,0.000000,0.000000,0.000000,0.000228,0.000014,0.000012,0.000241,0.000301,0.000012,0.000113,0.102041,-0.000331,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000009,0.000000,0.000000,0.000000,0.000229,0.000014,0.000012,0.000242,0.000467,0.000009,0.000112,0.101714,-0.000326,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000006,0.000000,0.000000,0.000000,0.000230,0.000013,0.000012,0.000243,0.000582,0.000006,0.000110,0.101392,-0.000322,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000004,0.000000,0.000000,0.000000,0.000231,0.000013,0.000012,0.000244,0.000668,0.000004,0.000109,0.101075,-0.000318,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000002,0.000000,0.000000,0.000000,0.000232,0.000013,0.000012,0.000245,0.000602,0.000002,0.000108,0.100761,-0.000314,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000001,0.000000,0.000000,0.000000,0.000233,0.000013,0.000011,0.000246,0.000537,0.000001,0.000106,0.100452,-0.000309,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000013,0.000011,0.000247,0.000493,0.000000,0.000105,0.100146,-0.000305,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000013,0.000011,0.000248,0.000405,0.000000,0.000103,0.099845,-0.000301,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000012,0.000011,0.000249,0.000282,0.000000,0.000102,0.099547,-0.000297,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000012,0.000011,0.000250,0.000159,0.000000,0.000101,0.099254,-0.000294,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000012,0.000011,0.000251,0.000018,0.000000,0.000099,0.098964,-0.000290,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000012,0.000011,0.000252,0.000000,0.000000,0.000098,0.098678,-0.000286,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000012,0.000010,0.000253,0.000000,0.000000,0.000097,0.098396,-0.000282,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000012,0.000010,0.000254,0.000000,0.000000,0.000095,0.098118,-0.000278,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000011,0.000010,0.000255,0.000000,0.000000,0.000094,0.097843,-0.000275,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000011,0.000010,0.000256,0.000000,0.000000,0.000093,0.097572,-0.000271,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000011,0.000010,0.000257,0.000000,0.000000,0.000092,0.097304,-0.000268,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000011,0.000010,0.000258,0.000000,0.000000,0.000091,0.097040,-0.000264,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000011,0.000010,0.000259,0.000000,0.000000,0.000089,0.096779,-0.000260,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000011,0.000010,0.000260,0.000000,0.000000,0.000088,0.096522,-0.000257,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000011,0.000009,0.000261,0.000000,0.000000,0.000087,0.096269,-0.000254,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000251,0.000010,0.000009,0.000262,0.000000,0.000000,0.000086,0.096019,-0.000250,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000252,0.000010,0.000009,0.000263,0.000000,0.000000,0.000085,0.095772,-0.000246,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000253,0.000010,0.000009,0.000263,0.000088,0.000001,0.000084,0.095528,-0.000244,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620903.csv b/test/channel_loss/channel_forcing/et/cat-2620903.csv new file mode 100644 index 000000000..cf94eecb9 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620903.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000203,0.000000,0.000000,0.000000,0.000000,0.001460,0.000286,0.001460,0.000175,0.000175,0.010423,0.464459,-0.004787,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001298,0.000282,0.001298,0.000051,0.000051,0.009407,0.459653,-0.004806,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001161,0.000279,0.001161,0.000000,0.000000,0.008525,0.454957,-0.004696,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001045,0.000275,0.001045,0.000000,0.000000,0.007756,0.450320,-0.004638,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000945,0.000272,0.000945,0.000000,0.000000,0.007083,0.445739,-0.004580,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000859,0.000269,0.000859,0.000000,0.000000,0.006493,0.441216,-0.004523,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000784,0.000265,0.000785,0.000000,0.000000,0.005974,0.436749,-0.004467,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000719,0.000262,0.000720,0.000000,0.000000,0.005516,0.432337,-0.004412,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000663,0.000259,0.000664,0.000000,0.000000,0.005112,0.427979,-0.004357,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000613,0.000256,0.000615,0.000000,0.000000,0.004754,0.423676,-0.004303,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000570,0.000252,0.000572,0.000000,0.000000,0.004437,0.419426,-0.004250,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000532,0.000249,0.000534,0.000000,0.000000,0.004155,0.415229,-0.004197,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000498,0.000246,0.000500,0.000000,0.000000,0.003903,0.411083,-0.004145,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000468,0.000243,0.000470,0.000000,0.000000,0.003679,0.406990,-0.004094,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000441,0.000240,0.000444,0.000126,0.000126,0.003478,0.402822,-0.004167,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000417,0.000237,0.000421,0.000345,0.000345,0.003298,0.398490,-0.004333,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000396,0.000233,0.000400,0.000509,0.000509,0.003136,0.394049,-0.004440,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000376,0.000230,0.000381,0.000621,0.000621,0.002990,0.389553,-0.004496,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000359,0.000227,0.000365,0.000576,0.000576,0.002857,0.385157,-0.004396,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000129,0.000000,0.000000,0.000000,0.000006,0.000343,0.000224,0.000350,0.000513,0.000513,0.002738,0.381005,-0.004152,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000126,0.000000,0.000000,0.000000,0.000007,0.000329,0.000221,0.000336,0.000467,0.000467,0.002629,0.376948,-0.004057,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000428,0.000000,0.000001,0.000000,0.000008,0.000317,0.000218,0.000325,0.000371,0.000371,0.002531,0.373332,-0.003616,1.000000,0.000000 +22,2022-08-01 22:00:00,0.000158,0.000000,0.000000,0.000000,0.000008,0.000305,0.000215,0.000313,0.000326,0.000326,0.002441,0.369540,-0.003792,1.000000,0.000000 +23,2022-08-01 23:00:00,0.000262,0.000000,0.000000,0.000000,0.000009,0.000294,0.000213,0.000304,0.000245,0.000245,0.002359,0.365977,-0.003563,1.000000,0.000000 +24,2022-08-02 00:00:00,0.000183,0.000000,0.000000,0.000000,0.000010,0.000285,0.000210,0.000295,0.000162,0.000162,0.002284,0.362463,-0.003514,1.000000,0.000000 +25,2022-08-02 01:00:00,0.000867,0.000066,0.000120,0.000066,0.000011,0.000276,0.000208,0.000352,0.000069,0.000069,0.002216,0.359642,-0.002821,1.000000,0.000054 +26,2022-08-02 02:00:00,0.001071,0.000142,0.000204,0.000142,0.000011,0.000268,0.000206,0.000422,0.000000,0.000000,0.002154,0.357042,-0.002600,1.000000,0.000116 +27,2022-08-02 03:00:00,0.001027,0.000178,0.000188,0.000178,0.000012,0.000261,0.000204,0.000451,0.000000,0.000000,0.002097,0.354446,-0.002596,1.000000,0.000125 +28,2022-08-02 04:00:00,0.001178,0.000220,0.000240,0.000220,0.000013,0.000254,0.000202,0.000487,0.000000,0.000000,0.002045,0.351980,-0.002466,1.000000,0.000146 +29,2022-08-02 05:00:00,0.000695,0.000148,0.000091,0.000148,0.000014,0.000248,0.000200,0.000410,0.000000,0.000000,0.001997,0.349215,-0.002765,1.000000,0.000089 +30,2022-08-02 06:00:00,0.000517,0.000099,0.000052,0.000099,0.000015,0.000242,0.000198,0.000357,0.000000,0.000000,0.001953,0.346348,-0.002867,1.000000,0.000042 +31,2022-08-02 07:00:00,0.000000,0.000031,0.000000,0.000031,0.000016,0.000237,0.000195,0.000284,0.000000,0.000000,0.001911,0.343057,-0.003291,1.000000,0.000010 +32,2022-08-02 08:00:00,0.000000,0.000010,0.000000,0.000010,0.000017,0.000232,0.000193,0.000259,0.000000,0.000000,0.001872,0.339806,-0.003251,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000227,0.000191,0.000245,0.000000,0.000000,0.001836,0.336596,-0.003210,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000223,0.000188,0.000242,0.000000,0.000000,0.001801,0.333425,-0.003171,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000219,0.000186,0.000239,0.000000,0.000000,0.001768,0.330294,-0.003131,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000215,0.000184,0.000236,0.000000,0.000000,0.001737,0.327201,-0.003092,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000211,0.000181,0.000233,0.000000,0.000000,0.001707,0.324147,-0.003054,1.000000,0.000000 +38,2022-08-02 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000023,0.000207,0.000179,0.000230,0.000115,0.000115,0.001679,0.321017,-0.003130,1.000000,0.000000 +39,2022-08-02 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000024,0.000204,0.000177,0.000228,0.000316,0.000316,0.001651,0.317727,-0.003290,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000025,0.000201,0.000174,0.000226,0.000445,0.000445,0.001624,0.314352,-0.003376,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000026,0.000197,0.000171,0.000224,0.000543,0.000543,0.001599,0.310920,-0.003431,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000387,0.000000,0.000000,0.000000,0.000028,0.000194,0.000169,0.000222,0.000623,0.000623,0.001574,0.307835,-0.003086,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000191,0.000167,0.000220,0.000564,0.000564,0.001549,0.304526,-0.003309,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000030,0.000188,0.000164,0.000218,0.000529,0.000529,0.001525,0.301231,-0.003295,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000031,0.000185,0.000162,0.000216,0.000511,0.000511,0.001502,0.297994,-0.003237,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000032,0.000182,0.000160,0.000215,0.000436,0.000436,0.001479,0.294871,-0.003123,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000034,0.000180,0.000157,0.000213,0.000324,0.000324,0.001457,0.291897,-0.002974,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000035,0.000177,0.000155,0.000212,0.000178,0.000178,0.001435,0.289105,-0.002793,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000036,0.000174,0.000153,0.000210,0.000033,0.000033,0.001414,0.286490,-0.002614,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000037,0.000172,0.000151,0.000209,0.000000,0.000000,0.001394,0.283941,-0.002550,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000169,0.000150,0.000208,0.000000,0.000000,0.001374,0.281423,-0.002518,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000167,0.000148,0.000207,0.000000,0.000000,0.001355,0.278936,-0.002487,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000164,0.000146,0.000206,0.000000,0.000000,0.001337,0.276480,-0.002456,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000162,0.000144,0.000205,0.000000,0.000000,0.001319,0.274055,-0.002425,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000160,0.000142,0.000204,0.000000,0.000000,0.001301,0.271660,-0.002395,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000158,0.000140,0.000203,0.000000,0.000000,0.001283,0.269294,-0.002366,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000156,0.000139,0.000202,0.000000,0.000000,0.001267,0.266958,-0.002336,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000154,0.000137,0.000202,0.000000,0.000000,0.001250,0.264650,-0.002307,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000152,0.000135,0.000201,0.000000,0.000000,0.001234,0.262371,-0.002279,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000150,0.000134,0.000200,0.000000,0.000000,0.001218,0.260121,-0.002251,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000148,0.000132,0.000200,0.000000,0.000000,0.001202,0.257898,-0.002223,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000146,0.000130,0.000199,0.000123,0.000123,0.001187,0.255582,-0.002316,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000144,0.000128,0.000199,0.000364,0.000364,0.001171,0.253056,-0.002526,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000142,0.000126,0.000198,0.000523,0.000523,0.001156,0.250405,-0.002651,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000140,0.000124,0.000198,0.000633,0.000633,0.001140,0.247677,-0.002727,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000138,0.000122,0.000197,0.000627,0.000627,0.001125,0.244989,-0.002688,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000136,0.000120,0.000197,0.000556,0.000556,0.001109,0.242405,-0.002585,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002775,0.000366,0.000665,0.000366,0.000062,0.000134,0.000120,0.000563,0.000505,0.000505,0.001095,0.241986,-0.000418,1.000000,0.000299 +69,2022-08-03 21:00:00,0.000416,0.000166,0.000000,0.000166,0.000064,0.000133,0.000119,0.000363,0.000477,0.000477,0.001081,0.239929,-0.002057,1.000000,0.000133 +70,2022-08-03 22:00:00,0.000000,0.000133,0.000000,0.000133,0.000065,0.000131,0.000117,0.000329,0.000399,0.000399,0.001067,0.237563,-0.002366,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000093,0.000000,0.000000,0.000000,0.000067,0.000129,0.000115,0.000196,0.000299,0.000299,0.001053,0.235416,-0.002146,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000127,0.000114,0.000196,0.000184,0.000184,0.001039,0.233319,-0.002098,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000126,0.000112,0.000196,0.000045,0.000045,0.001026,0.231384,-0.001935,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000124,0.000111,0.000195,0.000000,0.000000,0.001013,0.229518,-0.001866,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000122,0.000109,0.000195,0.000000,0.000000,0.001000,0.227675,-0.001843,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000121,0.000108,0.000195,0.000000,0.000000,0.000987,0.225854,-0.001820,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000119,0.000107,0.000195,0.000000,0.000000,0.000974,0.224056,-0.001798,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000118,0.000105,0.000195,0.000000,0.000000,0.000962,0.222281,-0.001776,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000116,0.000104,0.000195,0.000000,0.000000,0.000950,0.220527,-0.001754,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000103,0.000195,0.000000,0.000000,0.000938,0.218795,-0.001732,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000113,0.000102,0.000196,0.000000,0.000000,0.000926,0.217085,-0.001710,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000100,0.000196,0.000000,0.000000,0.000915,0.215395,-0.001689,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000110,0.000099,0.000196,0.000000,0.000000,0.000903,0.213727,-0.001668,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000109,0.000098,0.000196,0.000000,0.000000,0.000892,0.212080,-0.001648,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000108,0.000097,0.000196,0.000000,0.000000,0.000881,0.210452,-0.001627,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000106,0.000095,0.000196,0.000121,0.000121,0.000870,0.208726,-0.001726,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000105,0.000094,0.000197,0.000360,0.000360,0.000859,0.206784,-0.001942,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000104,0.000092,0.000197,0.000521,0.000521,0.000848,0.204708,-0.002076,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000102,0.000091,0.000197,0.000635,0.000635,0.000836,0.202546,-0.002163,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000101,0.000089,0.000197,0.000697,0.000697,0.000825,0.200349,-0.002197,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000099,0.000088,0.000197,0.000623,0.000623,0.000813,0.198251,-0.002097,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000098,0.000086,0.000197,0.000565,0.000565,0.000801,0.196238,-0.002013,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000096,0.000085,0.000198,0.000528,0.000528,0.000789,0.194286,-0.001952,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000095,0.000083,0.000198,0.000440,0.000440,0.000777,0.192444,-0.001841,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000093,0.000082,0.000198,0.000336,0.000336,0.000766,0.190728,-0.001716,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000092,0.000081,0.000198,0.000191,0.000191,0.000755,0.189178,-0.001551,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000091,0.000080,0.000198,0.000048,0.000048,0.000744,0.187787,-0.001391,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000089,0.000079,0.000199,0.000000,0.000000,0.000733,0.186461,-0.001326,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000088,0.000078,0.000199,0.000000,0.000000,0.000722,0.185151,-0.001310,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000087,0.000077,0.000199,0.000000,0.000000,0.000712,0.183858,-0.001293,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000086,0.000076,0.000200,0.000000,0.000000,0.000703,0.182581,-0.001277,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000085,0.000075,0.000200,0.000000,0.000000,0.000693,0.181319,-0.001262,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000083,0.000074,0.000201,0.000000,0.000000,0.000684,0.180073,-0.001246,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000082,0.000073,0.000201,0.000000,0.000000,0.000674,0.178843,-0.001230,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000081,0.000072,0.000202,0.000000,0.000000,0.000665,0.177628,-0.001215,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000080,0.000071,0.000202,0.000000,0.000000,0.000657,0.176427,-0.001200,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000079,0.000070,0.000203,0.000000,0.000000,0.000648,0.175242,-0.001185,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000078,0.000070,0.000203,0.000000,0.000000,0.000640,0.174072,-0.001171,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000077,0.000069,0.000204,0.000000,0.000000,0.000631,0.172916,-0.001156,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000076,0.000068,0.000204,0.000132,0.000132,0.000623,0.171644,-0.001272,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000075,0.000067,0.000205,0.000374,0.000374,0.000615,0.170149,-0.001495,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000074,0.000065,0.000206,0.000534,0.000534,0.000606,0.168514,-0.001635,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000073,0.000064,0.000206,0.000648,0.000648,0.000598,0.166787,-0.001727,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000072,0.000063,0.000207,0.000632,0.000632,0.000589,0.165097,-0.001690,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000137,0.000071,0.000062,0.000207,0.000576,0.000576,0.000580,0.163546,-0.001551,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000138,0.000070,0.000061,0.000208,0.000522,0.000522,0.000571,0.162068,-0.001479,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000140,0.000068,0.000060,0.000208,0.000474,0.000474,0.000562,0.160655,-0.001413,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000064,0.000000,0.000000,0.000000,0.000141,0.000067,0.000059,0.000209,0.000402,0.000402,0.000553,0.159331,-0.001324,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000252,0.000000,0.000000,0.000000,0.000143,0.000066,0.000058,0.000209,0.000305,0.000305,0.000545,0.158306,-0.001025,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000064,0.000000,0.000000,0.000000,0.000144,0.000065,0.000057,0.000210,0.000184,0.000184,0.000536,0.157226,-0.001079,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000803,0.000044,0.000080,0.000044,0.000146,0.000064,0.000057,0.000254,0.000063,0.000063,0.000529,0.156932,-0.000295,1.000000,0.000036 +122,2022-08-06 02:00:00,0.001525,0.000187,0.000303,0.000187,0.000148,0.000064,0.000057,0.000398,0.000000,0.000000,0.000522,0.157195,0.000263,1.000000,0.000152 +123,2022-08-06 03:00:00,0.000815,0.000144,0.000096,0.000144,0.000149,0.000063,0.000057,0.000356,0.000000,0.000000,0.000516,0.156959,-0.000236,1.000000,0.000104 +124,2022-08-06 04:00:00,0.000548,0.000109,0.000045,0.000109,0.000151,0.000062,0.000056,0.000322,0.000000,0.000000,0.000510,0.156512,-0.000447,1.000000,0.000039 +125,2022-08-06 05:00:00,0.000552,0.000055,0.000045,0.000055,0.000152,0.000061,0.000056,0.000269,0.000000,0.000000,0.000505,0.156074,-0.000439,1.000000,0.000029 +126,2022-08-06 06:00:00,0.000693,0.000059,0.000070,0.000059,0.000154,0.000061,0.000056,0.000274,0.000000,0.000000,0.000500,0.155756,-0.000318,1.000000,0.000041 +127,2022-08-06 07:00:00,0.000000,0.000027,0.000000,0.000027,0.000156,0.000060,0.000055,0.000242,0.000000,0.000000,0.000495,0.154827,-0.000929,1.000000,0.000014 +128,2022-08-06 08:00:00,0.000000,0.000014,0.000000,0.000014,0.000157,0.000060,0.000054,0.000231,0.000000,0.000000,0.000490,0.153909,-0.000917,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000059,0.000054,0.000218,0.000000,0.000000,0.000485,0.153003,-0.000906,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000058,0.000053,0.000219,0.000000,0.000000,0.000480,0.152108,-0.000895,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000058,0.000052,0.000219,0.000000,0.000000,0.000474,0.151224,-0.000884,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000057,0.000052,0.000220,0.000000,0.000000,0.000469,0.150351,-0.000873,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000051,0.000221,0.000000,0.000000,0.000464,0.149489,-0.000862,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000056,0.000050,0.000222,0.000111,0.000111,0.000459,0.148529,-0.000961,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000055,0.000050,0.000223,0.000332,0.000332,0.000453,0.147362,-0.001167,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000054,0.000049,0.000224,0.000473,0.000473,0.000447,0.146070,-0.001292,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000054,0.000048,0.000225,0.000599,0.000599,0.000441,0.144669,-0.001401,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000053,0.000047,0.000225,0.000681,0.000681,0.000435,0.143205,-0.001464,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000052,0.000045,0.000226,0.000630,0.000630,0.000428,0.141809,-0.001396,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000051,0.000044,0.000227,0.000567,0.000567,0.000422,0.140493,-0.001316,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000050,0.000044,0.000228,0.000531,0.000531,0.000415,0.139229,-0.001264,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000050,0.000043,0.000228,0.000438,0.000438,0.000408,0.138072,-0.001156,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000049,0.000042,0.000229,0.000331,0.000331,0.000401,0.137036,-0.001037,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000048,0.000041,0.000230,0.000189,0.000189,0.000394,0.136152,-0.000883,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000047,0.000041,0.000230,0.000044,0.000044,0.000388,0.135423,-0.000729,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000046,0.000040,0.000231,0.000000,0.000000,0.000382,0.134746,-0.000677,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000046,0.000040,0.000232,0.000000,0.000000,0.000376,0.134078,-0.000669,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000045,0.000039,0.000233,0.000000,0.000000,0.000370,0.133417,-0.000660,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000044,0.000039,0.000233,0.000000,0.000000,0.000365,0.132765,-0.000652,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000044,0.000038,0.000234,0.000000,0.000000,0.000359,0.132121,-0.000644,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000043,0.000038,0.000235,0.000000,0.000000,0.000354,0.131485,-0.000636,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000042,0.000037,0.000236,0.000000,0.000000,0.000349,0.130857,-0.000628,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000042,0.000037,0.000237,0.000000,0.000000,0.000344,0.130237,-0.000620,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000041,0.000036,0.000238,0.000000,0.000000,0.000339,0.129624,-0.000613,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000041,0.000036,0.000239,0.000000,0.000000,0.000335,0.129019,-0.000605,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000040,0.000035,0.000239,0.000000,0.000000,0.000330,0.128421,-0.000598,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000040,0.000035,0.000240,0.000000,0.000000,0.000326,0.127831,-0.000590,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000039,0.000035,0.000241,0.000111,0.000111,0.000321,0.127139,-0.000692,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000038,0.000034,0.000242,0.000352,0.000352,0.000317,0.126217,-0.000922,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000038,0.000033,0.000243,0.000506,0.000506,0.000312,0.125154,-0.001063,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000037,0.000032,0.000244,0.000614,0.000614,0.000307,0.123998,-0.001156,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000037,0.000031,0.000245,0.000681,0.000681,0.000301,0.122790,-0.001208,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000036,0.000030,0.000245,0.000625,0.000625,0.000296,0.121652,-0.001138,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000035,0.000030,0.000246,0.000561,0.000561,0.000290,0.120592,-0.001061,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000035,0.000029,0.000247,0.000528,0.000528,0.000285,0.119578,-0.001014,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000034,0.000028,0.000247,0.000437,0.000437,0.000279,0.118665,-0.000912,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000033,0.000028,0.000248,0.000329,0.000329,0.000274,0.117871,-0.000794,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000033,0.000027,0.000249,0.000155,0.000155,0.000268,0.117258,-0.000613,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000032,0.000027,0.000250,0.000016,0.000016,0.000263,0.116791,-0.000467,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000031,0.000026,0.000250,0.000000,0.000000,0.000258,0.116345,-0.000446,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000031,0.000026,0.000251,0.000000,0.000000,0.000254,0.115905,-0.000440,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000030,0.000026,0.000252,0.000000,0.000000,0.000249,0.115470,-0.000435,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000030,0.000026,0.000253,0.000000,0.000000,0.000245,0.115040,-0.000430,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000029,0.000025,0.000254,0.000000,0.000000,0.000241,0.114616,-0.000424,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000226,0.000029,0.000025,0.000255,0.000000,0.000000,0.000237,0.114198,-0.000418,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000227,0.000028,0.000025,0.000255,0.000000,0.000000,0.000234,0.113785,-0.000413,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000028,0.000024,0.000256,0.000000,0.000000,0.000230,0.113376,-0.000409,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000230,0.000027,0.000024,0.000257,0.000000,0.000000,0.000226,0.112973,-0.000403,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000231,0.000027,0.000024,0.000258,0.000000,0.000000,0.000223,0.112576,-0.000397,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000232,0.000027,0.000023,0.000259,0.000000,0.000000,0.000220,0.112183,-0.000393,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000026,0.000023,0.000260,0.000000,0.000000,0.000217,0.111794,-0.000389,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000026,0.000023,0.000261,0.000095,0.000095,0.000214,0.111317,-0.000478,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000025,0.000022,0.000262,0.000335,0.000335,0.000210,0.110607,-0.000709,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000025,0.000022,0.000263,0.000497,0.000497,0.000207,0.109747,-0.000860,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000025,0.000021,0.000263,0.000589,0.000589,0.000203,0.108807,-0.000940,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000024,0.000020,0.000264,0.000664,0.000664,0.000199,0.107805,-0.001003,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000024,0.000019,0.000265,0.000605,0.000605,0.000195,0.106872,-0.000932,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000023,0.000019,0.000266,0.000548,0.000548,0.000191,0.106009,-0.000864,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000023,0.000018,0.000266,0.000520,0.000520,0.000186,0.105182,-0.000826,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000022,0.000018,0.000267,0.000436,0.000436,0.000182,0.104449,-0.000733,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000021,0.000017,0.000268,0.000328,0.000328,0.000177,0.103832,-0.000617,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000021,0.000017,0.000268,0.000186,0.000186,0.000173,0.103364,-0.000469,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000021,0.000017,0.000269,0.000035,0.000035,0.000169,0.103049,-0.000314,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000020,0.000016,0.000270,0.000000,0.000000,0.000166,0.102774,-0.000275,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000020,0.000016,0.000271,0.000000,0.000000,0.000162,0.102502,-0.000272,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000019,0.000016,0.000271,0.000000,0.000000,0.000159,0.102233,-0.000269,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000253,0.000019,0.000016,0.000272,0.000000,0.000000,0.000156,0.101968,-0.000265,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000019,0.000016,0.000273,0.000000,0.000000,0.000153,0.101706,-0.000262,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000256,0.000018,0.000015,0.000274,0.000000,0.000000,0.000150,0.101450,-0.000256,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000003,0.000000,0.000000,0.000000,0.000257,0.000018,0.000015,0.000275,0.000000,0.000000,0.000147,0.101197,-0.000253,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000258,0.000018,0.000015,0.000276,0.000000,0.000000,0.000145,0.100947,-0.000250,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000259,0.000017,0.000015,0.000276,0.000000,0.000000,0.000142,0.100698,-0.000249,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000017,0.000015,0.000277,0.000000,0.000000,0.000140,0.100452,-0.000247,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000262,0.000017,0.000014,0.000278,0.000000,0.000000,0.000138,0.100210,-0.000241,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000016,0.000014,0.000279,0.000000,0.000000,0.000136,0.099970,-0.000240,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000016,0.000014,0.000280,0.000103,0.000103,0.000134,0.099630,-0.000340,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620904.csv b/test/channel_loss/channel_forcing/et/cat-2620904.csv new file mode 100644 index 000000000..91048b42c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620904.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001493,0.000521,0.001493,0.000145,0.000145,0.010607,0.418466,-0.005435,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001357,0.000513,0.001357,0.000029,0.000029,0.009764,0.413220,-0.005246,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001241,0.000506,0.001241,0.000000,0.000000,0.009029,0.408074,-0.005146,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001142,0.000499,0.001142,0.000000,0.000000,0.008387,0.402999,-0.005076,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001057,0.000493,0.001057,0.000000,0.000000,0.007823,0.397993,-0.005006,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000982,0.000486,0.000983,0.000000,0.000000,0.007326,0.393055,-0.004938,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000918,0.000479,0.000918,0.000000,0.000000,0.006888,0.388185,-0.004870,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000861,0.000473,0.000862,0.000000,0.000000,0.006499,0.383381,-0.004803,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000811,0.000466,0.000813,0.000000,0.000000,0.006154,0.378644,-0.004738,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000767,0.000460,0.000769,0.000000,0.000000,0.005847,0.373971,-0.004673,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000729,0.000454,0.000730,0.000000,0.000000,0.005572,0.369362,-0.004609,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000694,0.000447,0.000696,0.000000,0.000000,0.005325,0.364816,-0.004546,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000663,0.000441,0.000666,0.000000,0.000000,0.005104,0.360332,-0.004484,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000635,0.000435,0.000638,0.000000,0.000000,0.004904,0.355909,-0.004422,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000610,0.000429,0.000614,0.000113,0.000113,0.004723,0.351436,-0.004474,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000587,0.000423,0.000592,0.000335,0.000335,0.004558,0.346805,-0.004631,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000567,0.000416,0.000572,0.000497,0.000497,0.004407,0.342077,-0.004727,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000548,0.000410,0.000553,0.000588,0.000588,0.004269,0.337325,-0.004753,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000531,0.000404,0.000537,0.000523,0.000523,0.004142,0.332701,-0.004624,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000573,0.000001,0.000001,0.000001,0.000007,0.000515,0.000398,0.000522,0.000482,0.000482,0.004025,0.328745,-0.003956,1.000000,0.000001 +20,2022-08-01 20:00:00,0.000627,0.000003,0.000005,0.000003,0.000007,0.000500,0.000393,0.000511,0.000438,0.000438,0.003918,0.324936,-0.003809,1.000000,0.000002 +21,2022-08-01 21:00:00,0.001083,0.000038,0.000067,0.000038,0.000008,0.000487,0.000388,0.000533,0.000356,0.000356,0.003819,0.321649,-0.003287,1.000000,0.000031 +22,2022-08-01 22:00:00,0.000666,0.000028,0.000018,0.000028,0.000009,0.000475,0.000384,0.000511,0.000299,0.000299,0.003728,0.318101,-0.003549,1.000000,0.000021 +23,2022-08-01 23:00:00,0.000862,0.000047,0.000053,0.000047,0.000009,0.000464,0.000379,0.000520,0.000213,0.000213,0.003643,0.314844,-0.003257,1.000000,0.000028 +24,2022-08-02 00:00:00,0.000812,0.000048,0.000057,0.000048,0.000010,0.000453,0.000375,0.000512,0.000138,0.000138,0.003565,0.311652,-0.003192,1.000000,0.000036 +25,2022-08-02 01:00:00,0.002214,0.000295,0.000491,0.000295,0.000011,0.000444,0.000372,0.000750,0.000054,0.000054,0.003493,0.309541,-0.002111,1.000000,0.000232 +26,2022-08-02 02:00:00,0.002809,0.000560,0.000775,0.000560,0.000012,0.000435,0.000370,0.001007,0.000000,0.000000,0.003428,0.307820,-0.001721,1.000000,0.000447 +27,2022-08-02 03:00:00,0.002722,0.000695,0.000733,0.000695,0.000013,0.000427,0.000367,0.001135,0.000000,0.000000,0.003368,0.306078,-0.001741,1.000000,0.000485 +28,2022-08-02 04:00:00,0.002754,0.000748,0.000746,0.000748,0.000014,0.000420,0.000365,0.001182,0.000000,0.000000,0.003313,0.304379,-0.001699,1.000000,0.000482 +29,2022-08-02 05:00:00,0.002281,0.000627,0.000535,0.000627,0.000015,0.000413,0.000362,0.001055,0.000000,0.000000,0.003263,0.302444,-0.001935,1.000000,0.000390 +30,2022-08-02 06:00:00,0.002052,0.000526,0.000442,0.000526,0.000016,0.000407,0.000359,0.000948,0.000000,0.000000,0.003216,0.300402,-0.002043,1.000000,0.000306 +31,2022-08-02 07:00:00,0.000000,0.000218,0.000000,0.000218,0.000017,0.000401,0.000355,0.000635,0.000000,0.000000,0.003169,0.296799,-0.003603,1.000000,0.000088 +32,2022-08-02 08:00:00,0.000000,0.000088,0.000000,0.000088,0.000018,0.000395,0.000350,0.000501,0.000000,0.000000,0.003124,0.293246,-0.003553,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000389,0.000345,0.000407,0.000000,0.000000,0.003080,0.289741,-0.003505,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000383,0.000340,0.000403,0.000000,0.000000,0.003037,0.286284,-0.003457,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000378,0.000336,0.000398,0.000000,0.000000,0.002995,0.282875,-0.003409,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000022,0.000372,0.000331,0.000394,0.000000,0.000000,0.002954,0.279512,-0.003363,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000221,0.000003,0.000006,0.000003,0.000023,0.000367,0.000327,0.000393,0.000000,0.000000,0.002914,0.276408,-0.003104,1.000000,0.000003 +38,2022-08-02 14:00:00,0.000221,0.000002,0.000002,0.000002,0.000024,0.000362,0.000322,0.000388,0.000112,0.000112,0.002874,0.273240,-0.003168,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000201,0.000002,0.000000,0.000002,0.000025,0.000357,0.000318,0.000383,0.000298,0.000298,0.002835,0.269914,-0.003326,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000201,0.000000,0.000000,0.000000,0.000026,0.000352,0.000313,0.000378,0.000431,0.000431,0.002797,0.266502,-0.003412,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000221,0.000000,0.000000,0.000000,0.000027,0.000347,0.000308,0.000374,0.000523,0.000523,0.002759,0.263066,-0.003436,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000657,0.000001,0.000001,0.000001,0.000029,0.000342,0.000304,0.000371,0.000568,0.000568,0.002721,0.260061,-0.003005,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000064,0.000000,0.000000,0.000000,0.000030,0.000337,0.000300,0.000367,0.000513,0.000513,0.002684,0.256568,-0.003493,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000061,0.000000,0.000000,0.000000,0.000031,0.000332,0.000295,0.000363,0.000483,0.000483,0.002647,0.253148,-0.003420,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000061,0.000000,0.000000,0.000000,0.000032,0.000327,0.000290,0.000360,0.000479,0.000479,0.002610,0.249779,-0.003369,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000061,0.000000,0.000000,0.000000,0.000034,0.000323,0.000286,0.000356,0.000412,0.000412,0.002573,0.246522,-0.003257,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000061,0.000000,0.000000,0.000000,0.000035,0.000318,0.000282,0.000353,0.000289,0.000289,0.002537,0.243432,-0.003090,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000061,0.000000,0.000000,0.000000,0.000036,0.000313,0.000278,0.000349,0.000152,0.000152,0.002501,0.240519,-0.002913,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000061,0.000000,0.000000,0.000000,0.000038,0.000309,0.000274,0.000346,0.000015,0.000015,0.002466,0.237781,-0.002738,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000061,0.000000,0.000000,0.000000,0.000039,0.000304,0.000270,0.000343,0.000000,0.000000,0.002432,0.235095,-0.002686,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000061,0.000000,0.000000,0.000000,0.000040,0.000300,0.000267,0.000341,0.000000,0.000000,0.002399,0.232445,-0.002650,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000061,0.000000,0.000000,0.000000,0.000042,0.000296,0.000263,0.000338,0.000000,0.000000,0.002366,0.229831,-0.002613,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000061,0.000000,0.000000,0.000000,0.000043,0.000292,0.000260,0.000335,0.000000,0.000000,0.002334,0.227254,-0.002578,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000062,0.000000,0.000000,0.000000,0.000044,0.000288,0.000256,0.000332,0.000000,0.000000,0.002303,0.224713,-0.002541,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000284,0.000253,0.000330,0.000000,0.000000,0.002272,0.222146,-0.002567,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000280,0.000249,0.000327,0.000000,0.000000,0.002241,0.219614,-0.002532,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000276,0.000246,0.000324,0.000000,0.000000,0.002211,0.217117,-0.002497,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000272,0.000242,0.000322,0.000000,0.000000,0.002182,0.214654,-0.002463,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000268,0.000239,0.000320,0.000000,0.000000,0.002152,0.212224,-0.002429,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000265,0.000236,0.000317,0.000000,0.000000,0.002124,0.209828,-0.002396,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000261,0.000233,0.000315,0.000000,0.000000,0.002095,0.207465,-0.002363,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000257,0.000229,0.000313,0.000109,0.000109,0.002067,0.205026,-0.002439,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000254,0.000226,0.000311,0.000342,0.000342,0.002039,0.202391,-0.002635,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000250,0.000222,0.000309,0.000495,0.000495,0.002011,0.199641,-0.002750,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000247,0.000218,0.000307,0.000597,0.000597,0.001983,0.196828,-0.002813,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000243,0.000214,0.000305,0.000581,0.000581,0.001954,0.194070,-0.002758,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000239,0.000211,0.000303,0.000522,0.000522,0.001925,0.191407,-0.002663,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002227,0.000157,0.000285,0.000157,0.000065,0.000236,0.000210,0.000458,0.000476,0.000476,0.001899,0.190741,-0.000666,1.000000,0.000128 +69,2022-08-03 21:00:00,0.000235,0.000071,0.000000,0.000071,0.000066,0.000233,0.000207,0.000370,0.000438,0.000438,0.001873,0.188438,-0.002303,1.000000,0.000057 +70,2022-08-03 22:00:00,0.000000,0.000057,0.000000,0.000057,0.000068,0.000229,0.000203,0.000354,0.000369,0.000369,0.001847,0.186003,-0.002435,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000070,0.000226,0.000200,0.000296,0.000271,0.000271,0.001822,0.183761,-0.002242,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000223,0.000197,0.000294,0.000162,0.000162,0.001796,0.181594,-0.002167,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000220,0.000195,0.000292,0.000024,0.000024,0.001771,0.179594,-0.002001,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000216,0.000192,0.000291,0.000000,0.000000,0.001746,0.177644,-0.001950,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000213,0.000189,0.000289,0.000000,0.000000,0.001722,0.175721,-0.001923,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000210,0.000187,0.000288,0.000000,0.000000,0.001699,0.173824,-0.001897,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000207,0.000184,0.000286,0.000000,0.000000,0.001675,0.171953,-0.001871,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000205,0.000182,0.000285,0.000000,0.000000,0.001652,0.170108,-0.001845,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000202,0.000179,0.000284,0.000000,0.000000,0.001630,0.168288,-0.001820,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000199,0.000177,0.000283,0.000000,0.000000,0.001608,0.166493,-0.001795,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000196,0.000174,0.000281,0.000000,0.000000,0.001586,0.164722,-0.001771,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000193,0.000172,0.000280,0.000000,0.000000,0.001564,0.162976,-0.001746,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000191,0.000170,0.000279,0.000000,0.000000,0.001543,0.161254,-0.001722,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000188,0.000167,0.000278,0.000000,0.000000,0.001522,0.159555,-0.001699,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000185,0.000165,0.000277,0.000000,0.000000,0.001502,0.157879,-0.001676,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000183,0.000163,0.000276,0.000104,0.000104,0.001481,0.156124,-0.001755,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000180,0.000160,0.000275,0.000336,0.000336,0.001461,0.154165,-0.001959,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000178,0.000157,0.000274,0.000503,0.000503,0.001440,0.152066,-0.002098,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000175,0.000154,0.000273,0.000607,0.000607,0.001419,0.149895,-0.002171,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000172,0.000151,0.000272,0.000656,0.000656,0.001398,0.147705,-0.002190,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000170,0.000148,0.000271,0.000601,0.000601,0.001376,0.145599,-0.002106,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000167,0.000145,0.000270,0.000562,0.000562,0.001354,0.143560,-0.002039,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000164,0.000143,0.000269,0.000519,0.000519,0.001333,0.141591,-0.001969,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000162,0.000140,0.000268,0.000436,0.000436,0.001311,0.139732,-0.001860,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000159,0.000138,0.000267,0.000310,0.000310,0.001290,0.138021,-0.001710,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000156,0.000136,0.000266,0.000170,0.000170,0.001270,0.136472,-0.001549,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000154,0.000134,0.000265,0.000027,0.000027,0.001250,0.135086,-0.001386,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000151,0.000132,0.000265,0.000000,0.000000,0.001230,0.133745,-0.001341,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000149,0.000130,0.000264,0.000000,0.000000,0.001211,0.132423,-0.001322,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000147,0.000128,0.000263,0.000000,0.000000,0.001193,0.131118,-0.001304,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000144,0.000127,0.000263,0.000000,0.000000,0.001175,0.129832,-0.001287,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000142,0.000125,0.000262,0.000000,0.000000,0.001158,0.128563,-0.001269,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000140,0.000123,0.000262,0.000000,0.000000,0.001141,0.127311,-0.001252,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000138,0.000121,0.000261,0.000000,0.000000,0.001124,0.126077,-0.001234,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000136,0.000120,0.000261,0.000000,0.000000,0.001108,0.124859,-0.001218,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000134,0.000118,0.000260,0.000000,0.000000,0.001092,0.123658,-0.001201,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000132,0.000117,0.000260,0.000000,0.000000,0.001076,0.122474,-0.001184,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000130,0.000115,0.000260,0.000000,0.000000,0.001061,0.121306,-0.001168,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000128,0.000113,0.000260,0.000000,0.000000,0.001046,0.120153,-0.001152,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000127,0.000112,0.000259,0.000119,0.000119,0.001031,0.118899,-0.001254,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000125,0.000110,0.000259,0.000349,0.000349,0.001016,0.117436,-0.001463,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000123,0.000108,0.000259,0.000508,0.000508,0.001001,0.115836,-0.001600,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000121,0.000105,0.000259,0.000606,0.000606,0.000985,0.114161,-0.001675,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000119,0.000103,0.000258,0.000616,0.000616,0.000969,0.112499,-0.001662,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000114,0.000000,0.000000,0.000000,0.000141,0.000117,0.000101,0.000258,0.000578,0.000578,0.000953,0.111009,-0.001490,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000114,0.000000,0.000000,0.000000,0.000143,0.000115,0.000099,0.000258,0.000526,0.000526,0.000937,0.109590,-0.001419,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000114,0.000000,0.000000,0.000000,0.000144,0.000113,0.000097,0.000257,0.000469,0.000469,0.000922,0.108247,-0.001343,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000114,0.000000,0.000000,0.000000,0.000146,0.000111,0.000095,0.000257,0.000395,0.000395,0.000906,0.106996,-0.001252,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000195,0.000000,0.000000,0.000000,0.000148,0.000109,0.000094,0.000257,0.000288,0.000288,0.000891,0.105948,-0.001048,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000114,0.000000,0.000000,0.000000,0.000149,0.000107,0.000093,0.000256,0.000159,0.000159,0.000876,0.104961,-0.000987,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000602,0.000016,0.000029,0.000016,0.000151,0.000106,0.000092,0.000272,0.000044,0.000044,0.000863,0.104554,-0.000407,1.000000,0.000013 +122,2022-08-06 02:00:00,0.001230,0.000080,0.000133,0.000080,0.000152,0.000104,0.000092,0.000337,0.000000,0.000000,0.000851,0.104713,0.000159,1.000000,0.000065 +123,2022-08-06 03:00:00,0.000764,0.000068,0.000053,0.000068,0.000154,0.000103,0.000092,0.000325,0.000000,0.000000,0.000840,0.104489,-0.000224,1.000000,0.000051 +124,2022-08-06 04:00:00,0.000507,0.000053,0.000024,0.000053,0.000156,0.000102,0.000091,0.000310,0.000000,0.000000,0.000830,0.104043,-0.000446,1.000000,0.000022 +125,2022-08-06 05:00:00,0.000510,0.000030,0.000024,0.000030,0.000157,0.000100,0.000091,0.000288,0.000000,0.000000,0.000820,0.103605,-0.000437,1.000000,0.000016 +126,2022-08-06 06:00:00,0.000593,0.000029,0.000033,0.000029,0.000159,0.000099,0.000090,0.000287,0.000000,0.000000,0.000811,0.103248,-0.000358,1.000000,0.000020 +127,2022-08-06 07:00:00,0.000000,0.000013,0.000000,0.000013,0.000160,0.000098,0.000089,0.000272,0.000000,0.000000,0.000802,0.102342,-0.000905,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000162,0.000097,0.000088,0.000265,0.000000,0.000000,0.000793,0.101449,-0.000893,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000096,0.000087,0.000259,0.000000,0.000000,0.000784,0.100569,-0.000881,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000095,0.000085,0.000260,0.000000,0.000000,0.000775,0.099700,-0.000869,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000094,0.000084,0.000260,0.000000,0.000000,0.000765,0.098844,-0.000857,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000092,0.000083,0.000261,0.000000,0.000000,0.000756,0.097999,-0.000845,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000091,0.000082,0.000261,0.000000,0.000000,0.000747,0.097165,-0.000833,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000090,0.000081,0.000262,0.000098,0.000098,0.000737,0.096247,-0.000918,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000089,0.000079,0.000262,0.000316,0.000316,0.000728,0.095126,-0.001121,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000175,0.000088,0.000078,0.000262,0.000471,0.000471,0.000718,0.093868,-0.001258,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000086,0.000076,0.000262,0.000577,0.000577,0.000707,0.092522,-0.001346,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000085,0.000074,0.000263,0.000644,0.000644,0.000696,0.091129,-0.001393,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000084,0.000072,0.000263,0.000602,0.000602,0.000684,0.089796,-0.001333,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000082,0.000070,0.000263,0.000562,0.000562,0.000672,0.088521,-0.001275,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000081,0.000069,0.000263,0.000515,0.000515,0.000660,0.087309,-0.001212,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000079,0.000067,0.000263,0.000437,0.000437,0.000648,0.086191,-0.001118,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000078,0.000066,0.000263,0.000308,0.000308,0.000636,0.085216,-0.000975,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000076,0.000065,0.000263,0.000165,0.000165,0.000625,0.084395,-0.000821,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000075,0.000064,0.000263,0.000023,0.000023,0.000613,0.083725,-0.000670,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000074,0.000063,0.000263,0.000000,0.000000,0.000603,0.083087,-0.000638,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000072,0.000062,0.000264,0.000000,0.000000,0.000592,0.082458,-0.000629,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000071,0.000061,0.000264,0.000000,0.000000,0.000582,0.081837,-0.000621,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000070,0.000060,0.000264,0.000000,0.000000,0.000573,0.081224,-0.000612,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000069,0.000059,0.000264,0.000000,0.000000,0.000563,0.080620,-0.000604,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000068,0.000059,0.000265,0.000000,0.000000,0.000555,0.080025,-0.000596,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000067,0.000058,0.000265,0.000000,0.000000,0.000546,0.079437,-0.000588,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000065,0.000057,0.000266,0.000000,0.000000,0.000537,0.078858,-0.000579,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000064,0.000056,0.000266,0.000000,0.000000,0.000529,0.078286,-0.000572,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000064,0.000055,0.000267,0.000000,0.000000,0.000521,0.077722,-0.000564,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000063,0.000055,0.000267,0.000000,0.000000,0.000513,0.077166,-0.000556,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000062,0.000054,0.000268,0.000000,0.000000,0.000506,0.076618,-0.000548,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000061,0.000053,0.000268,0.000096,0.000096,0.000498,0.075983,-0.000635,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000060,0.000052,0.000269,0.000324,0.000324,0.000490,0.075131,-0.000852,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000059,0.000051,0.000269,0.000490,0.000490,0.000482,0.074127,-0.001004,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000058,0.000049,0.000269,0.000581,0.000581,0.000474,0.073046,-0.001080,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000057,0.000048,0.000270,0.000635,0.000635,0.000465,0.071928,-0.001118,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000055,0.000046,0.000270,0.000590,0.000590,0.000455,0.070870,-0.001058,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000054,0.000045,0.000270,0.000543,0.000000,0.000446,0.070408,-0.000462,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000053,0.000045,0.000271,0.000495,0.000000,0.000438,0.069952,-0.000456,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000052,0.000044,0.000271,0.000415,0.000000,0.000430,0.069502,-0.000450,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000051,0.000044,0.000271,0.000290,0.000000,0.000422,0.069058,-0.000444,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000050,0.000043,0.000272,0.000130,0.000000,0.000415,0.068621,-0.000438,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000050,0.000042,0.000272,0.000002,0.000000,0.000408,0.068189,-0.000432,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000049,0.000042,0.000273,0.000000,0.000000,0.000401,0.067764,-0.000426,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000048,0.000041,0.000273,0.000000,0.000000,0.000394,0.067344,-0.000420,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000047,0.000041,0.000274,0.000000,0.000000,0.000388,0.066930,-0.000414,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000046,0.000040,0.000275,0.000000,0.000000,0.000381,0.066522,-0.000408,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000046,0.000040,0.000275,0.000000,0.000000,0.000375,0.066119,-0.000403,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000045,0.000039,0.000276,0.000000,0.000000,0.000370,0.065722,-0.000397,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000044,0.000039,0.000276,0.000000,0.000000,0.000364,0.065330,-0.000392,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000044,0.000038,0.000277,0.000000,0.000000,0.000358,0.064943,-0.000386,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000043,0.000038,0.000278,0.000000,0.000000,0.000353,0.064562,-0.000381,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000042,0.000037,0.000278,0.000000,0.000000,0.000348,0.064186,-0.000376,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000042,0.000036,0.000279,0.000000,0.000000,0.000343,0.063815,-0.000371,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000041,0.000036,0.000280,0.000000,0.000000,0.000337,0.063450,-0.000366,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000240,0.000040,0.000036,0.000280,0.000081,0.000003,0.000333,0.063089,-0.000361,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000004,0.000000,0.000000,0.000000,0.000241,0.000040,0.000035,0.000281,0.000309,0.000004,0.000328,0.062733,-0.000356,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000001,0.000000,0.000000,0.000000,0.000243,0.000039,0.000035,0.000282,0.000469,0.000001,0.000323,0.062382,-0.000351,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000039,0.000034,0.000282,0.000575,0.000000,0.000318,0.062036,-0.000346,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000038,0.000034,0.000283,0.000639,0.000000,0.000314,0.061694,-0.000341,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000038,0.000033,0.000284,0.000591,0.000000,0.000309,0.061358,-0.000337,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000037,0.000033,0.000285,0.000543,0.000000,0.000305,0.061026,-0.000332,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000037,0.000032,0.000285,0.000510,0.000000,0.000301,0.060698,-0.000328,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000036,0.000032,0.000286,0.000423,0.000000,0.000296,0.060375,-0.000323,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000036,0.000031,0.000287,0.000291,0.000000,0.000292,0.060056,-0.000319,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000035,0.000031,0.000287,0.000152,0.000000,0.000288,0.059742,-0.000314,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000035,0.000031,0.000288,0.000010,0.000000,0.000284,0.059432,-0.000310,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000034,0.000030,0.000289,0.000000,0.000000,0.000280,0.059126,-0.000306,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000034,0.000030,0.000290,0.000000,0.000000,0.000276,0.058824,-0.000302,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000033,0.000029,0.000290,0.000000,0.000000,0.000273,0.058527,-0.000297,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000033,0.000029,0.000291,0.000000,0.000000,0.000269,0.058233,-0.000293,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000032,0.000028,0.000292,0.000000,0.000000,0.000265,0.057944,-0.000289,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000261,0.000032,0.000028,0.000292,0.000000,0.000000,0.000261,0.057658,-0.000285,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000262,0.000031,0.000028,0.000293,0.000000,0.000000,0.000258,0.057377,-0.000282,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000263,0.000031,0.000027,0.000294,0.000000,0.000000,0.000254,0.057099,-0.000278,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000264,0.000030,0.000027,0.000295,0.000000,0.000000,0.000251,0.056825,-0.000274,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000265,0.000030,0.000027,0.000295,0.000000,0.000000,0.000247,0.056555,-0.000270,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000266,0.000030,0.000026,0.000296,0.000000,0.000000,0.000244,0.056289,-0.000266,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000267,0.000029,0.000026,0.000297,0.000000,0.000000,0.000241,0.056026,-0.000263,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000269,0.000029,0.000026,0.000297,0.000088,0.000000,0.000237,0.055767,-0.000259,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620905.csv b/test/channel_loss/channel_forcing/et/cat-2620905.csv new file mode 100644 index 000000000..9b62d82c4 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620905.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001491,0.000509,0.001491,0.000145,0.000145,0.010615,0.425624,-0.004984,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001354,0.000502,0.001354,0.000032,0.000032,0.009762,0.420824,-0.004800,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001237,0.000494,0.001237,0.000000,0.000000,0.009019,0.416126,-0.004698,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001137,0.000487,0.001137,0.000000,0.000000,0.008369,0.411497,-0.004629,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001051,0.000480,0.001051,0.000000,0.000000,0.007798,0.406937,-0.004561,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000976,0.000473,0.000976,0.000000,0.000000,0.007295,0.402443,-0.004494,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000911,0.000466,0.000911,0.000000,0.000000,0.006850,0.398016,-0.004427,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000853,0.000459,0.000854,0.000000,0.000000,0.006456,0.393653,-0.004362,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000803,0.000452,0.000804,0.000000,0.000000,0.006105,0.389355,-0.004298,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000758,0.000446,0.000760,0.000000,0.000000,0.005792,0.385120,-0.004235,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000719,0.000439,0.000721,0.000000,0.000000,0.005512,0.380947,-0.004173,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000684,0.000433,0.000686,0.000000,0.000000,0.005261,0.376836,-0.004111,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000652,0.000426,0.000655,0.000000,0.000000,0.005035,0.372785,-0.004051,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000624,0.000420,0.000627,0.000000,0.000000,0.004831,0.368794,-0.003991,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000599,0.000414,0.000602,0.000118,0.000118,0.004646,0.364745,-0.004049,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000575,0.000407,0.000579,0.000350,0.000350,0.004478,0.360528,-0.004218,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000554,0.000400,0.000559,0.000502,0.000502,0.004323,0.356222,-0.004306,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000535,0.000393,0.000540,0.000602,0.000602,0.004182,0.351881,-0.004340,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000517,0.000387,0.000523,0.000525,0.000525,0.004051,0.347680,-0.004201,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000566,0.000000,0.000001,0.000000,0.000006,0.000501,0.000381,0.000508,0.000484,0.000484,0.003931,0.344138,-0.003542,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000749,0.000007,0.000012,0.000007,0.000007,0.000486,0.000376,0.000500,0.000444,0.000444,0.003820,0.340857,-0.003281,1.000000,0.000006 +21,2022-08-01 21:00:00,0.001307,0.000062,0.000108,0.000062,0.000007,0.000473,0.000372,0.000542,0.000348,0.000348,0.003719,0.338175,-0.002682,1.000000,0.000051 +22,2022-08-01 22:00:00,0.000903,0.000053,0.000044,0.000053,0.000008,0.000460,0.000367,0.000522,0.000303,0.000303,0.003626,0.335240,-0.002934,1.000000,0.000041 +23,2022-08-01 23:00:00,0.000981,0.000070,0.000069,0.000070,0.000009,0.000449,0.000363,0.000528,0.000219,0.000219,0.003540,0.332485,-0.002756,1.000000,0.000040 +24,2022-08-02 00:00:00,0.000960,0.000069,0.000079,0.000069,0.000009,0.000438,0.000359,0.000517,0.000140,0.000140,0.003460,0.329816,-0.002668,1.000000,0.000049 +25,2022-08-02 01:00:00,0.002160,0.000280,0.000449,0.000280,0.000010,0.000429,0.000356,0.000719,0.000056,0.000056,0.003387,0.328088,-0.001728,1.000000,0.000218 +26,2022-08-02 02:00:00,0.002361,0.000430,0.000550,0.000430,0.000011,0.000420,0.000354,0.000861,0.000000,0.000000,0.003321,0.326539,-0.001549,1.000000,0.000337 +27,2022-08-02 03:00:00,0.002251,0.000504,0.000504,0.000504,0.000012,0.000412,0.000351,0.000928,0.000000,0.000000,0.003260,0.324950,-0.001590,1.000000,0.000337 +28,2022-08-02 04:00:00,0.002464,0.000560,0.000590,0.000560,0.000012,0.000405,0.000349,0.000977,0.000000,0.000000,0.003204,0.323509,-0.001441,1.000000,0.000366 +29,2022-08-02 05:00:00,0.001957,0.000463,0.000391,0.000463,0.000013,0.000398,0.000346,0.000874,0.000000,0.000000,0.003153,0.321786,-0.001723,1.000000,0.000294 +30,2022-08-02 06:00:00,0.001759,0.000392,0.000321,0.000392,0.000014,0.000391,0.000343,0.000798,0.000000,0.000000,0.003105,0.319962,-0.001824,1.000000,0.000223 +31,2022-08-02 07:00:00,0.000000,0.000158,0.000000,0.000158,0.000015,0.000385,0.000338,0.000559,0.000000,0.000000,0.003058,0.316748,-0.003214,1.000000,0.000064 +32,2022-08-02 08:00:00,0.000000,0.000064,0.000000,0.000064,0.000016,0.000379,0.000333,0.000459,0.000000,0.000000,0.003012,0.313581,-0.003167,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000373,0.000328,0.000390,0.000000,0.000000,0.002967,0.310460,-0.003120,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000368,0.000323,0.000385,0.000000,0.000000,0.002923,0.307386,-0.003074,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000362,0.000319,0.000380,0.000000,0.000000,0.002879,0.304357,-0.003029,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000356,0.000314,0.000376,0.000000,0.000000,0.002837,0.301372,-0.002985,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000336,0.000007,0.000013,0.000007,0.000020,0.000351,0.000310,0.000379,0.000000,0.000000,0.002796,0.298749,-0.002623,1.000000,0.000006 +38,2022-08-02 14:00:00,0.000333,0.000006,0.000006,0.000006,0.000022,0.000346,0.000306,0.000374,0.000116,0.000116,0.002756,0.296056,-0.002694,1.000000,0.000005 +39,2022-08-02 15:00:00,0.000288,0.000004,0.000000,0.000004,0.000023,0.000341,0.000301,0.000367,0.000309,0.000309,0.002716,0.293172,-0.002884,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000203,0.000001,0.000000,0.000001,0.000024,0.000336,0.000296,0.000360,0.000438,0.000438,0.002677,0.290121,-0.003051,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000210,0.000000,0.000000,0.000000,0.000025,0.000330,0.000292,0.000355,0.000524,0.000524,0.002638,0.287037,-0.003084,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000534,0.000000,0.000000,0.000000,0.000026,0.000325,0.000287,0.000351,0.000583,0.000583,0.002600,0.284258,-0.002779,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000148,0.000000,0.000000,0.000000,0.000027,0.000321,0.000282,0.000347,0.000521,0.000521,0.002562,0.281202,-0.003056,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000028,0.000316,0.000278,0.000343,0.000492,0.000492,0.002524,0.278136,-0.003067,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000029,0.000311,0.000273,0.000340,0.000480,0.000480,0.002486,0.275126,-0.003010,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000306,0.000268,0.000336,0.000420,0.000420,0.002448,0.272220,-0.002906,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000301,0.000264,0.000332,0.000297,0.000297,0.002411,0.269478,-0.002742,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000032,0.000296,0.000260,0.000329,0.000157,0.000157,0.002375,0.266913,-0.002564,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000292,0.000256,0.000326,0.000017,0.000017,0.002339,0.264525,-0.002389,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000287,0.000252,0.000322,0.000000,0.000000,0.002304,0.262188,-0.002337,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000283,0.000249,0.000319,0.000000,0.000000,0.002270,0.259885,-0.002303,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000000,0.000000,0.000000,0.000037,0.000279,0.000245,0.000316,0.000000,0.000000,0.002237,0.257617,-0.002269,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000072,0.000001,0.000001,0.000001,0.000038,0.000274,0.000242,0.000313,0.000000,0.000000,0.002204,0.255390,-0.002227,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000081,0.000001,0.000001,0.000001,0.000040,0.000270,0.000238,0.000311,0.000000,0.000000,0.002172,0.253205,-0.002185,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000266,0.000235,0.000307,0.000000,0.000000,0.002141,0.250973,-0.002232,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000262,0.000231,0.000305,0.000000,0.000000,0.002110,0.248773,-0.002199,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000258,0.000228,0.000302,0.000000,0.000000,0.002079,0.246606,-0.002167,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000255,0.000225,0.000299,0.000000,0.000000,0.002049,0.244471,-0.002135,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000251,0.000221,0.000297,0.000000,0.000000,0.002020,0.242367,-0.002104,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000247,0.000218,0.000294,0.000000,0.000000,0.001991,0.240295,-0.002073,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000243,0.000215,0.000292,0.000000,0.000000,0.001962,0.238252,-0.002042,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000240,0.000212,0.000290,0.000115,0.000115,0.001934,0.236127,-0.002125,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000236,0.000208,0.000287,0.000358,0.000358,0.001905,0.233794,-0.002333,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000233,0.000204,0.000285,0.000507,0.000507,0.001877,0.231348,-0.002446,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000229,0.000200,0.000283,0.000605,0.000605,0.001848,0.228841,-0.002507,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000225,0.000196,0.000280,0.000584,0.000584,0.001819,0.226392,-0.002449,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000222,0.000193,0.000278,0.000523,0.000523,0.001790,0.224039,-0.002353,1.000000,0.000000 +68,2022-08-03 20:00:00,0.002633,0.000222,0.000404,0.000222,0.000058,0.000218,0.000192,0.000498,0.000481,0.000481,0.001764,0.223958,-0.000082,1.000000,0.000182 +69,2022-08-03 21:00:00,0.000370,0.000101,0.000000,0.000101,0.000059,0.000215,0.000189,0.000375,0.000436,0.000436,0.001738,0.222090,-0.001868,1.000000,0.000081 +70,2022-08-03 22:00:00,0.000000,0.000081,0.000000,0.000081,0.000061,0.000212,0.000186,0.000353,0.000378,0.000378,0.001713,0.219944,-0.002147,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000084,0.000000,0.000000,0.000000,0.000062,0.000209,0.000183,0.000271,0.000273,0.000273,0.001687,0.218014,-0.001929,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000205,0.000180,0.000269,0.000168,0.000168,0.001662,0.216134,-0.001880,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000202,0.000177,0.000267,0.000027,0.000027,0.001637,0.214421,-0.001714,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000199,0.000175,0.000265,0.000000,0.000000,0.001613,0.212759,-0.001662,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000196,0.000172,0.000264,0.000000,0.000000,0.001589,0.211122,-0.001637,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000193,0.000170,0.000262,0.000000,0.000000,0.001565,0.209508,-0.001613,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000190,0.000167,0.000261,0.000000,0.000000,0.001542,0.207919,-0.001589,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000187,0.000165,0.000259,0.000000,0.000000,0.001520,0.206353,-0.001566,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000185,0.000162,0.000258,0.000000,0.000000,0.001497,0.204810,-0.001543,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000182,0.000160,0.000256,0.000000,0.000000,0.001475,0.203289,-0.001520,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000179,0.000158,0.000255,0.000000,0.000000,0.001454,0.201792,-0.001498,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000177,0.000155,0.000254,0.000000,0.000000,0.001433,0.200316,-0.001476,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000174,0.000153,0.000253,0.000000,0.000000,0.001412,0.198861,-0.001454,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000171,0.000151,0.000251,0.000000,0.000000,0.001391,0.197429,-0.001433,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000169,0.000149,0.000250,0.000000,0.000000,0.001371,0.196017,-0.001412,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000166,0.000146,0.000249,0.000108,0.000108,0.001351,0.194519,-0.001498,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000164,0.000143,0.000248,0.000346,0.000346,0.001331,0.192809,-0.001710,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000161,0.000141,0.000247,0.000510,0.000510,0.001310,0.190963,-0.001846,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000159,0.000138,0.000246,0.000615,0.000615,0.001289,0.189040,-0.001922,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000156,0.000135,0.000245,0.000668,0.000668,0.001268,0.187094,-0.001946,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000153,0.000132,0.000243,0.000613,0.000613,0.001246,0.185231,-0.001864,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000150,0.000129,0.000242,0.000557,0.000557,0.001225,0.183450,-0.001781,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000148,0.000126,0.000241,0.000521,0.000521,0.001203,0.181730,-0.001720,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000145,0.000124,0.000240,0.000441,0.000441,0.001182,0.180114,-0.001616,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000142,0.000121,0.000238,0.000318,0.000318,0.001160,0.178644,-0.001470,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000140,0.000119,0.000237,0.000173,0.000173,0.001140,0.177338,-0.001306,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000137,0.000117,0.000236,0.000029,0.000029,0.001120,0.176193,-0.001145,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000135,0.000116,0.000235,0.000000,0.000000,0.001100,0.175094,-0.001099,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000133,0.000114,0.000234,0.000000,0.000000,0.001082,0.174011,-0.001083,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000130,0.000112,0.000233,0.000000,0.000000,0.001064,0.172943,-0.001067,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000128,0.000111,0.000233,0.000000,0.000000,0.001046,0.171892,-0.001052,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000126,0.000109,0.000232,0.000000,0.000000,0.001029,0.170856,-0.001036,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000124,0.000107,0.000231,0.000000,0.000000,0.001012,0.169835,-0.001021,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000122,0.000106,0.000231,0.000000,0.000000,0.000996,0.168829,-0.001006,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000120,0.000104,0.000230,0.000000,0.000000,0.000981,0.167838,-0.000991,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000118,0.000103,0.000230,0.000000,0.000000,0.000965,0.166861,-0.000976,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000116,0.000101,0.000229,0.000000,0.000000,0.000950,0.165899,-0.000962,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000114,0.000100,0.000229,0.000000,0.000000,0.000935,0.164951,-0.000948,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000113,0.000098,0.000229,0.000000,0.000000,0.000921,0.164017,-0.000934,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000111,0.000097,0.000228,0.000122,0.000122,0.000907,0.162976,-0.001041,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000109,0.000095,0.000228,0.000361,0.000361,0.000892,0.161716,-0.001261,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000107,0.000092,0.000228,0.000517,0.000517,0.000877,0.160320,-0.001395,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000105,0.000090,0.000227,0.000622,0.000622,0.000862,0.158841,-0.001479,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000103,0.000088,0.000227,0.000621,0.000621,0.000847,0.157385,-0.001456,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000052,0.000000,0.000000,0.000000,0.000124,0.000102,0.000086,0.000226,0.000571,0.000571,0.000831,0.156051,-0.001334,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000052,0.000000,0.000000,0.000000,0.000126,0.000100,0.000084,0.000225,0.000534,0.000534,0.000815,0.154773,-0.001278,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000058,0.000000,0.000000,0.000000,0.000127,0.000098,0.000082,0.000225,0.000476,0.000476,0.000799,0.153577,-0.001196,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000055,0.000000,0.000000,0.000000,0.000129,0.000096,0.000080,0.000224,0.000412,0.000412,0.000784,0.152457,-0.001119,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000166,0.000000,0.000000,0.000000,0.000130,0.000094,0.000079,0.000224,0.000296,0.000296,0.000769,0.151579,-0.000878,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000048,0.000000,0.000000,0.000000,0.000131,0.000092,0.000077,0.000223,0.000167,0.000167,0.000754,0.150725,-0.000855,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000478,0.000010,0.000017,0.000010,0.000133,0.000090,0.000077,0.000233,0.000046,0.000046,0.000740,0.150409,-0.000316,1.000000,0.000008 +122,2022-08-06 02:00:00,0.001149,0.000067,0.000114,0.000067,0.000134,0.000089,0.000077,0.000290,0.000000,0.000000,0.000729,0.150708,0.000299,1.000000,0.000055 +123,2022-08-06 03:00:00,0.000470,0.000043,0.000020,0.000043,0.000136,0.000088,0.000077,0.000267,0.000000,0.000000,0.000718,0.150427,-0.000281,1.000000,0.000032 +124,2022-08-06 04:00:00,0.000248,0.000031,0.000006,0.000031,0.000137,0.000086,0.000076,0.000255,0.000000,0.000000,0.000708,0.149945,-0.000482,1.000000,0.000007 +125,2022-08-06 05:00:00,0.000254,0.000009,0.000006,0.000009,0.000138,0.000085,0.000075,0.000232,0.000000,0.000000,0.000698,0.149476,-0.000469,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000334,0.000008,0.000010,0.000008,0.000140,0.000084,0.000075,0.000232,0.000000,0.000000,0.000689,0.149089,-0.000387,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000141,0.000083,0.000074,0.000228,0.000000,0.000000,0.000680,0.148388,-0.000701,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000142,0.000082,0.000073,0.000226,0.000000,0.000000,0.000671,0.147698,-0.000690,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000081,0.000072,0.000225,0.000000,0.000000,0.000662,0.147018,-0.000680,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000080,0.000071,0.000225,0.000000,0.000000,0.000653,0.146347,-0.000670,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000078,0.000069,0.000225,0.000000,0.000000,0.000644,0.145687,-0.000660,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000077,0.000068,0.000225,0.000000,0.000000,0.000635,0.145036,-0.000651,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000076,0.000067,0.000226,0.000000,0.000000,0.000626,0.144395,-0.000641,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000075,0.000066,0.000226,0.000102,0.000102,0.000617,0.143663,-0.000732,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000074,0.000065,0.000226,0.000330,0.000330,0.000608,0.142718,-0.000946,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000073,0.000063,0.000226,0.000480,0.000480,0.000598,0.141638,-0.001080,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000072,0.000061,0.000226,0.000587,0.000587,0.000588,0.140469,-0.001169,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000070,0.000059,0.000226,0.000657,0.000657,0.000577,0.139248,-0.001222,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000069,0.000058,0.000226,0.000617,0.000617,0.000566,0.138084,-0.001164,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000067,0.000056,0.000226,0.000571,0.000571,0.000554,0.136982,-0.001102,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000066,0.000054,0.000226,0.000519,0.000519,0.000542,0.135948,-0.001034,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000065,0.000053,0.000226,0.000434,0.000434,0.000530,0.135013,-0.000935,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000063,0.000051,0.000226,0.000315,0.000315,0.000519,0.134210,-0.000804,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000062,0.000050,0.000225,0.000172,0.000172,0.000507,0.133558,-0.000651,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000060,0.000050,0.000225,0.000025,0.000025,0.000497,0.133061,-0.000497,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000059,0.000049,0.000225,0.000000,0.000000,0.000486,0.132596,-0.000465,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000058,0.000048,0.000226,0.000000,0.000000,0.000477,0.132138,-0.000458,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000057,0.000047,0.000226,0.000000,0.000000,0.000467,0.131687,-0.000451,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000056,0.000047,0.000226,0.000000,0.000000,0.000458,0.131242,-0.000445,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000055,0.000046,0.000226,0.000000,0.000000,0.000450,0.130804,-0.000438,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000054,0.000045,0.000226,0.000000,0.000000,0.000442,0.130372,-0.000432,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000053,0.000045,0.000227,0.000000,0.000000,0.000434,0.129947,-0.000425,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000052,0.000044,0.000227,0.000000,0.000000,0.000426,0.129528,-0.000419,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000051,0.000043,0.000227,0.000000,0.000000,0.000419,0.129115,-0.000413,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000050,0.000043,0.000228,0.000000,0.000000,0.000411,0.128708,-0.000407,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000049,0.000042,0.000228,0.000000,0.000000,0.000404,0.128307,-0.000401,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000048,0.000042,0.000228,0.000000,0.000000,0.000398,0.127912,-0.000395,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000047,0.000041,0.000229,0.000100,0.000100,0.000391,0.127424,-0.000488,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000047,0.000040,0.000229,0.000340,0.000340,0.000384,0.126707,-0.000717,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000046,0.000038,0.000229,0.000496,0.000496,0.000377,0.125847,-0.000860,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000045,0.000037,0.000230,0.000589,0.000589,0.000369,0.124908,-0.000940,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000044,0.000035,0.000230,0.000635,0.000635,0.000360,0.123937,-0.000971,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000043,0.000034,0.000230,0.000596,0.000596,0.000351,0.123020,-0.000918,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000042,0.000033,0.000230,0.000546,0.000546,0.000342,0.122164,-0.000855,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000040,0.000031,0.000230,0.000498,0.000498,0.000333,0.121369,-0.000795,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000039,0.000030,0.000230,0.000418,0.000418,0.000324,0.120665,-0.000704,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000038,0.000029,0.000230,0.000293,0.000293,0.000315,0.120094,-0.000571,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000037,0.000029,0.000230,0.000134,0.000134,0.000307,0.119688,-0.000406,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000028,0.000230,0.000006,0.000006,0.000299,0.119414,-0.000274,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000035,0.000028,0.000231,0.000000,0.000000,0.000291,0.119150,-0.000264,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000034,0.000027,0.000231,0.000000,0.000000,0.000284,0.118889,-0.000260,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000027,0.000231,0.000000,0.000000,0.000277,0.118633,-0.000256,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000033,0.000027,0.000232,0.000000,0.000000,0.000271,0.118380,-0.000253,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000026,0.000232,0.000000,0.000000,0.000265,0.118131,-0.000249,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000031,0.000026,0.000233,0.000000,0.000000,0.000259,0.117886,-0.000245,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000025,0.000233,0.000000,0.000000,0.000254,0.117644,-0.000242,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000030,0.000025,0.000233,0.000000,0.000000,0.000249,0.117406,-0.000238,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000025,0.000234,0.000000,0.000000,0.000244,0.117171,-0.000235,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000205,0.000029,0.000024,0.000234,0.000000,0.000000,0.000239,0.116941,-0.000230,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000024,0.000235,0.000000,0.000000,0.000235,0.116714,-0.000228,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000028,0.000024,0.000236,0.000000,0.000000,0.000231,0.116489,-0.000224,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000023,0.000236,0.000084,0.000084,0.000226,0.116185,-0.000304,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000022,0.000237,0.000320,0.000320,0.000222,0.115653,-0.000532,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000026,0.000021,0.000237,0.000482,0.000482,0.000217,0.114969,-0.000684,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000026,0.000020,0.000237,0.000578,0.000578,0.000211,0.114201,-0.000769,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000019,0.000238,0.000644,0.000644,0.000205,0.113378,-0.000822,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000018,0.000238,0.000603,0.000603,0.000199,0.112609,-0.000770,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000023,0.000016,0.000238,0.000553,0.000553,0.000192,0.111900,-0.000709,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000022,0.000015,0.000238,0.000504,0.000504,0.000185,0.111250,-0.000650,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000022,0.000015,0.000238,0.000426,0.000426,0.000178,0.110686,-0.000564,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000021,0.000014,0.000239,0.000299,0.000299,0.000171,0.110255,-0.000431,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000020,0.000013,0.000239,0.000158,0.000158,0.000164,0.109970,-0.000285,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000019,0.000013,0.000239,0.000011,0.000011,0.000158,0.109834,-0.000136,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000018,0.000013,0.000239,0.000000,0.000000,0.000153,0.109710,-0.000123,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000018,0.000013,0.000240,0.000000,0.000000,0.000148,0.109589,-0.000121,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000017,0.000013,0.000240,0.000000,0.000000,0.000143,0.109469,-0.000120,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000017,0.000012,0.000241,0.000000,0.000000,0.000139,0.109351,-0.000118,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000016,0.000012,0.000241,0.000000,0.000000,0.000135,0.109235,-0.000116,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000016,0.000012,0.000242,0.000000,0.000000,0.000131,0.109121,-0.000114,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000015,0.000012,0.000242,0.000000,0.000000,0.000127,0.109008,-0.000113,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000015,0.000012,0.000243,0.000000,0.000000,0.000124,0.108897,-0.000111,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000015,0.000012,0.000243,0.000000,0.000000,0.000121,0.108787,-0.000109,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000014,0.000011,0.000244,0.000000,0.000000,0.000118,0.108680,-0.000108,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000014,0.000011,0.000244,0.000000,0.000000,0.000115,0.108573,-0.000106,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000014,0.000011,0.000245,0.000000,0.000000,0.000113,0.108469,-0.000105,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000013,0.000011,0.000246,0.000093,0.000093,0.000110,0.108274,-0.000194,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620906.csv b/test/channel_loss/channel_forcing/et/cat-2620906.csv new file mode 100644 index 000000000..a107f438a --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620906.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000042,0.000000,0.000000,0.000000,0.000000,0.001455,0.000249,0.001455,0.000146,0.000146,0.010391,0.429322,-0.004406,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001289,0.000246,0.001289,0.000035,0.000035,0.009348,0.425048,-0.004274,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001148,0.000242,0.001148,0.000000,0.000000,0.008442,0.420871,-0.004177,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001029,0.000238,0.001029,0.000000,0.000000,0.007651,0.416754,-0.004117,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000927,0.000235,0.000927,0.000000,0.000000,0.006959,0.412697,-0.004057,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000838,0.000232,0.000839,0.000000,0.000000,0.006353,0.408700,-0.003998,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000762,0.000228,0.000763,0.000000,0.000000,0.005819,0.404760,-0.003940,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000696,0.000225,0.000697,0.000000,0.000000,0.005348,0.400878,-0.003882,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000638,0.000222,0.000639,0.000000,0.000000,0.004931,0.397052,-0.003826,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000587,0.000218,0.000588,0.000000,0.000000,0.004563,0.393282,-0.003770,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000542,0.000215,0.000544,0.000000,0.000000,0.004235,0.389567,-0.003715,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000503,0.000212,0.000505,0.000000,0.000000,0.003944,0.385906,-0.003661,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000468,0.000209,0.000471,0.000000,0.000000,0.003685,0.382298,-0.003608,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000437,0.000206,0.000440,0.000000,0.000000,0.003453,0.378743,-0.003555,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000410,0.000203,0.000413,0.000121,0.000121,0.003246,0.375120,-0.003623,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000386,0.000200,0.000389,0.000353,0.000353,0.003060,0.371321,-0.003799,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000364,0.000196,0.000368,0.000506,0.000506,0.002893,0.367427,-0.003894,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000344,0.000193,0.000348,0.000598,0.000598,0.002742,0.363499,-0.003928,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000326,0.000190,0.000331,0.000522,0.000522,0.002605,0.359703,-0.003796,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000451,0.000000,0.000000,0.000000,0.000006,0.000310,0.000187,0.000316,0.000482,0.000482,0.002482,0.356446,-0.003257,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000500,0.000001,0.000001,0.000001,0.000006,0.000296,0.000184,0.000303,0.000430,0.000430,0.002370,0.353335,-0.003111,1.000000,0.000001 +21,2022-08-01 21:00:00,0.001241,0.000093,0.000168,0.000093,0.000007,0.000283,0.000182,0.000382,0.000340,0.000340,0.002270,0.350923,-0.002411,1.000000,0.000076 +22,2022-08-01 22:00:00,0.000652,0.000058,0.000029,0.000058,0.000007,0.000271,0.000180,0.000337,0.000298,0.000298,0.002178,0.348145,-0.002779,1.000000,0.000047 +23,2022-08-01 23:00:00,0.000755,0.000076,0.000065,0.000076,0.000008,0.000260,0.000178,0.000345,0.000214,0.000214,0.002095,0.345555,-0.002589,1.000000,0.000035 +24,2022-08-02 00:00:00,0.000643,0.000053,0.000056,0.000053,0.000009,0.000251,0.000175,0.000312,0.000141,0.000141,0.002020,0.342974,-0.002581,1.000000,0.000038 +25,2022-08-02 01:00:00,0.001670,0.000281,0.000462,0.000281,0.000009,0.000242,0.000174,0.000532,0.000058,0.000058,0.001951,0.341125,-0.001849,1.000000,0.000219 +26,2022-08-02 02:00:00,0.001947,0.000475,0.000634,0.000475,0.000010,0.000234,0.000172,0.000720,0.000000,0.000000,0.001890,0.339463,-0.001662,1.000000,0.000378 +27,2022-08-02 03:00:00,0.001809,0.000558,0.000559,0.000558,0.000011,0.000227,0.000171,0.000796,0.000000,0.000000,0.001833,0.337762,-0.001700,1.000000,0.000378 +28,2022-08-02 04:00:00,0.002114,0.000665,0.000724,0.000665,0.000012,0.000221,0.000170,0.000897,0.000000,0.000000,0.001782,0.336225,-0.001538,1.000000,0.000438 +29,2022-08-02 05:00:00,0.001418,0.000494,0.000366,0.000494,0.000012,0.000215,0.000168,0.000721,0.000000,0.000000,0.001736,0.334376,-0.001849,1.000000,0.000310 +30,2022-08-02 06:00:00,0.001242,0.000396,0.000289,0.000396,0.000013,0.000209,0.000166,0.000618,0.000000,0.000000,0.001693,0.332456,-0.001920,1.000000,0.000204 +31,2022-08-02 07:00:00,0.000000,0.000146,0.000000,0.000146,0.000014,0.000204,0.000164,0.000364,0.000000,0.000000,0.001652,0.329626,-0.002830,1.000000,0.000058 +32,2022-08-02 08:00:00,0.000000,0.000058,0.000000,0.000058,0.000015,0.000199,0.000162,0.000272,0.000000,0.000000,0.001614,0.326837,-0.002789,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000195,0.000159,0.000210,0.000000,0.000000,0.001579,0.324089,-0.002748,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000191,0.000157,0.000207,0.000000,0.000000,0.001545,0.321380,-0.002708,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000187,0.000155,0.000204,0.000000,0.000000,0.001513,0.318711,-0.002669,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000183,0.000152,0.000201,0.000000,0.000000,0.001483,0.316081,-0.002630,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000256,0.000008,0.000015,0.000008,0.000019,0.000179,0.000150,0.000206,0.000000,0.000000,0.001454,0.313727,-0.002354,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000234,0.000005,0.000003,0.000005,0.000020,0.000176,0.000148,0.000201,0.000116,0.000116,0.001426,0.311283,-0.002444,1.000000,0.000004 +39,2022-08-02 15:00:00,0.000144,0.000004,0.000000,0.000004,0.000021,0.000172,0.000146,0.000197,0.000310,0.000310,0.001400,0.308596,-0.002686,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000144,0.000001,0.000000,0.000001,0.000022,0.000169,0.000144,0.000192,0.000436,0.000436,0.001374,0.305825,-0.002771,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000165,0.000000,0.000000,0.000000,0.000023,0.000166,0.000141,0.000189,0.000519,0.000519,0.001349,0.303034,-0.002792,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000588,0.000000,0.000000,0.000000,0.000024,0.000163,0.000139,0.000187,0.000577,0.000577,0.001325,0.300643,-0.002391,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000229,0.000000,0.000000,0.000000,0.000025,0.000160,0.000137,0.000185,0.000526,0.000526,0.001302,0.297983,-0.002660,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000071,0.000000,0.000000,0.000000,0.000026,0.000157,0.000135,0.000183,0.000492,0.000492,0.001279,0.295240,-0.002743,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000076,0.000000,0.000000,0.000000,0.000027,0.000155,0.000132,0.000182,0.000469,0.000469,0.001257,0.292564,-0.002676,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000073,0.000000,0.000000,0.000000,0.000028,0.000152,0.000130,0.000180,0.000416,0.000416,0.001235,0.289976,-0.002588,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000029,0.000149,0.000128,0.000178,0.000296,0.000296,0.001214,0.287546,-0.002430,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000076,0.000000,0.000000,0.000000,0.000030,0.000147,0.000126,0.000177,0.000158,0.000158,0.001194,0.285288,-0.002257,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000081,0.000000,0.000001,0.000000,0.000031,0.000144,0.000124,0.000176,0.000020,0.000020,0.001174,0.283204,-0.002084,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000085,0.000001,0.000002,0.000001,0.000033,0.000142,0.000122,0.000175,0.000000,0.000000,0.001155,0.281173,-0.002031,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000090,0.000002,0.000002,0.000002,0.000034,0.000139,0.000121,0.000175,0.000000,0.000000,0.001136,0.279177,-0.001997,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000096,0.000002,0.000002,0.000002,0.000035,0.000137,0.000119,0.000174,0.000000,0.000000,0.001118,0.277214,-0.001962,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000100,0.000002,0.000002,0.000002,0.000036,0.000135,0.000117,0.000173,0.000000,0.000000,0.001100,0.275284,-0.001930,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000100,0.000002,0.000002,0.000002,0.000037,0.000133,0.000116,0.000172,0.000000,0.000000,0.001083,0.273382,-0.001902,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000038,0.000131,0.000114,0.000170,0.000000,0.000000,0.001067,0.271412,-0.001971,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000039,0.000129,0.000112,0.000169,0.000000,0.000000,0.001050,0.269470,-0.001942,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000127,0.000111,0.000167,0.000000,0.000000,0.001035,0.267556,-0.001914,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000125,0.000109,0.000167,0.000000,0.000000,0.001019,0.265671,-0.001886,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000123,0.000108,0.000166,0.000000,0.000000,0.001004,0.263812,-0.001858,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000121,0.000106,0.000165,0.000000,0.000000,0.000989,0.261981,-0.001831,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000119,0.000105,0.000165,0.000000,0.000000,0.000974,0.260176,-0.001805,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000117,0.000103,0.000164,0.000115,0.000115,0.000959,0.258285,-0.001892,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000116,0.000101,0.000163,0.000358,0.000358,0.000945,0.256181,-0.002103,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000114,0.000099,0.000163,0.000503,0.000503,0.000930,0.253965,-0.002216,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000112,0.000097,0.000162,0.000604,0.000604,0.000916,0.251682,-0.002283,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000110,0.000095,0.000162,0.000584,0.000584,0.000901,0.249452,-0.002230,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000108,0.000094,0.000161,0.000522,0.000522,0.000886,0.247316,-0.002136,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003602,0.000679,0.001234,0.000679,0.000054,0.000107,0.000094,0.000840,0.000487,0.000487,0.000873,0.247579,0.000263,1.000000,0.000555 +69,2022-08-03 21:00:00,0.000537,0.000310,0.000002,0.000310,0.000055,0.000105,0.000092,0.000470,0.000440,0.000440,0.000860,0.246077,-0.001502,1.000000,0.000248 +70,2022-08-03 22:00:00,0.000000,0.000247,0.000000,0.000247,0.000057,0.000104,0.000091,0.000407,0.000377,0.000377,0.000848,0.244133,-0.001944,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000092,0.000000,0.000000,0.000000,0.000058,0.000102,0.000089,0.000160,0.000273,0.000273,0.000835,0.242410,-0.001723,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000100,0.000088,0.000160,0.000168,0.000168,0.000822,0.240724,-0.001685,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000099,0.000087,0.000159,0.000030,0.000030,0.000810,0.239200,-0.001525,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000097,0.000085,0.000159,0.000000,0.000000,0.000798,0.237727,-0.001473,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000096,0.000084,0.000159,0.000000,0.000000,0.000786,0.236275,-0.001452,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000095,0.000083,0.000159,0.000000,0.000000,0.000774,0.234844,-0.001431,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000093,0.000082,0.000159,0.000000,0.000000,0.000763,0.233434,-0.001410,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000092,0.000080,0.000159,0.000000,0.000000,0.000752,0.232045,-0.001389,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000090,0.000079,0.000159,0.000000,0.000000,0.000740,0.230676,-0.001369,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000089,0.000078,0.000159,0.000000,0.000000,0.000730,0.229327,-0.001349,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000088,0.000077,0.000159,0.000000,0.000000,0.000719,0.227998,-0.001329,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000086,0.000076,0.000159,0.000000,0.000000,0.000708,0.226687,-0.001310,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000085,0.000075,0.000159,0.000000,0.000000,0.000698,0.225396,-0.001291,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000084,0.000074,0.000159,0.000000,0.000000,0.000688,0.224124,-0.001272,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000083,0.000073,0.000159,0.000000,0.000000,0.000678,0.222870,-0.001254,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000081,0.000071,0.000159,0.000112,0.000112,0.000668,0.221524,-0.001346,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000080,0.000070,0.000159,0.000352,0.000352,0.000658,0.219962,-0.001562,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000079,0.000069,0.000159,0.000512,0.000512,0.000648,0.218264,-0.001697,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000078,0.000067,0.000159,0.000610,0.000610,0.000637,0.216494,-0.001770,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000076,0.000066,0.000159,0.000669,0.000669,0.000626,0.214692,-0.001802,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000075,0.000064,0.000159,0.000607,0.000607,0.000616,0.212978,-0.001714,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000074,0.000063,0.000159,0.000537,0.000537,0.000605,0.211356,-0.001621,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000072,0.000061,0.000159,0.000508,0.000508,0.000594,0.209788,-0.001569,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000071,0.000060,0.000159,0.000435,0.000435,0.000583,0.208314,-0.001474,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000070,0.000059,0.000159,0.000314,0.000314,0.000572,0.206980,-0.001333,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000068,0.000058,0.000159,0.000173,0.000173,0.000562,0.205805,-0.001175,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000067,0.000057,0.000159,0.000032,0.000032,0.000552,0.204787,-0.001018,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000066,0.000056,0.000160,0.000000,0.000000,0.000542,0.203814,-0.000972,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000065,0.000056,0.000160,0.000000,0.000000,0.000533,0.202856,-0.000958,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000064,0.000055,0.000160,0.000000,0.000000,0.000524,0.201912,-0.000944,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000063,0.000054,0.000160,0.000000,0.000000,0.000515,0.200981,-0.000931,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000062,0.000053,0.000161,0.000000,0.000000,0.000507,0.200064,-0.000917,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000061,0.000052,0.000161,0.000000,0.000000,0.000498,0.199160,-0.000904,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000060,0.000052,0.000161,0.000000,0.000000,0.000490,0.198270,-0.000891,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000059,0.000051,0.000162,0.000000,0.000000,0.000482,0.197392,-0.000878,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000058,0.000050,0.000162,0.000000,0.000000,0.000475,0.196527,-0.000865,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000057,0.000049,0.000162,0.000000,0.000000,0.000467,0.195675,-0.000852,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000056,0.000049,0.000163,0.000000,0.000000,0.000460,0.194835,-0.000840,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000055,0.000048,0.000163,0.000000,0.000000,0.000453,0.194008,-0.000828,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000054,0.000047,0.000164,0.000124,0.000124,0.000446,0.193070,-0.000938,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000053,0.000046,0.000164,0.000362,0.000362,0.000439,0.191911,-0.001159,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000052,0.000045,0.000165,0.000517,0.000517,0.000431,0.190617,-0.001294,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000051,0.000044,0.000165,0.000621,0.000621,0.000424,0.189238,-0.001379,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000051,0.000043,0.000165,0.000614,0.000614,0.000416,0.187887,-0.001351,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000057,0.000000,0.000000,0.000000,0.000116,0.000050,0.000042,0.000166,0.000562,0.000562,0.000408,0.186663,-0.001224,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000057,0.000000,0.000000,0.000000,0.000117,0.000049,0.000041,0.000166,0.000524,0.000524,0.000400,0.185495,-0.001168,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000119,0.000048,0.000040,0.000166,0.000467,0.000467,0.000392,0.184405,-0.001090,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000047,0.000039,0.000167,0.000404,0.000404,0.000384,0.183331,-0.001074,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000189,0.000000,0.000000,0.000000,0.000121,0.000046,0.000038,0.000167,0.000294,0.000294,0.000377,0.182567,-0.000763,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000045,0.000037,0.000168,0.000167,0.000167,0.000369,0.181753,-0.000814,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000523,0.000022,0.000039,0.000022,0.000124,0.000044,0.000037,0.000190,0.000048,0.000048,0.000363,0.181545,-0.000208,1.000000,0.000018 +122,2022-08-06 02:00:00,0.001428,0.000178,0.000305,0.000178,0.000125,0.000043,0.000038,0.000346,0.000000,0.000000,0.000357,0.182017,0.000472,1.000000,0.000145 +123,2022-08-06 03:00:00,0.000401,0.000100,0.000029,0.000100,0.000127,0.000043,0.000037,0.000269,0.000000,0.000000,0.000352,0.181743,-0.000274,1.000000,0.000074 +124,2022-08-06 04:00:00,0.000200,0.000072,0.000007,0.000072,0.000128,0.000042,0.000037,0.000242,0.000000,0.000000,0.000347,0.181296,-0.000447,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000203,0.000012,0.000008,0.000012,0.000129,0.000041,0.000037,0.000182,0.000000,0.000000,0.000342,0.180858,-0.000438,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000292,0.000012,0.000015,0.000012,0.000130,0.000041,0.000036,0.000183,0.000000,0.000000,0.000337,0.180507,-0.000351,1.000000,0.000008 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000132,0.000040,0.000036,0.000177,0.000000,0.000000,0.000333,0.179888,-0.000619,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000133,0.000040,0.000035,0.000176,0.000000,0.000000,0.000328,0.179278,-0.000610,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000039,0.000035,0.000174,0.000000,0.000000,0.000324,0.178676,-0.000601,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000039,0.000034,0.000174,0.000000,0.000000,0.000319,0.178084,-0.000592,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000038,0.000034,0.000175,0.000000,0.000000,0.000315,0.177500,-0.000584,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000038,0.000033,0.000176,0.000000,0.000000,0.000311,0.176925,-0.000575,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000037,0.000033,0.000176,0.000000,0.000000,0.000306,0.176358,-0.000567,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000037,0.000032,0.000177,0.000105,0.000105,0.000302,0.175695,-0.000662,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000036,0.000032,0.000178,0.000334,0.000334,0.000297,0.174817,-0.000878,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000035,0.000031,0.000178,0.000482,0.000482,0.000293,0.173806,-0.001012,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000035,0.000030,0.000179,0.000585,0.000585,0.000287,0.172708,-0.001098,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000034,0.000029,0.000180,0.000657,0.000657,0.000282,0.171555,-0.001153,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000034,0.000028,0.000180,0.000613,0.000613,0.000276,0.170462,-0.001093,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000033,0.000027,0.000181,0.000566,0.000566,0.000270,0.169432,-0.001030,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000032,0.000026,0.000181,0.000509,0.000509,0.000264,0.168472,-0.000959,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000031,0.000025,0.000182,0.000429,0.000429,0.000258,0.167605,-0.000867,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000031,0.000025,0.000182,0.000311,0.000311,0.000253,0.166867,-0.000738,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000030,0.000024,0.000183,0.000171,0.000171,0.000247,0.166277,-0.000590,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000029,0.000024,0.000183,0.000028,0.000028,0.000241,0.165837,-0.000440,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000029,0.000023,0.000184,0.000000,0.000000,0.000236,0.165431,-0.000406,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000028,0.000023,0.000184,0.000000,0.000000,0.000231,0.165032,-0.000400,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000027,0.000023,0.000185,0.000000,0.000000,0.000227,0.164638,-0.000394,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000027,0.000022,0.000186,0.000000,0.000000,0.000222,0.164249,-0.000388,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000026,0.000022,0.000186,0.000000,0.000000,0.000218,0.163867,-0.000383,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000026,0.000022,0.000187,0.000000,0.000000,0.000214,0.163490,-0.000377,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000025,0.000022,0.000188,0.000000,0.000000,0.000210,0.163118,-0.000372,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000025,0.000021,0.000188,0.000000,0.000000,0.000206,0.162752,-0.000366,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000025,0.000021,0.000189,0.000000,0.000000,0.000203,0.162392,-0.000361,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000024,0.000021,0.000190,0.000000,0.000000,0.000199,0.162036,-0.000356,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000024,0.000020,0.000191,0.000000,0.000000,0.000196,0.161686,-0.000350,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000023,0.000020,0.000191,0.000000,0.000000,0.000192,0.161340,-0.000345,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000023,0.000020,0.000192,0.000102,0.000102,0.000189,0.160899,-0.000441,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000022,0.000019,0.000193,0.000342,0.000342,0.000186,0.160229,-0.000670,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000022,0.000018,0.000193,0.000493,0.000493,0.000182,0.159419,-0.000810,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000022,0.000018,0.000194,0.000589,0.000589,0.000178,0.158527,-0.000892,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000021,0.000017,0.000195,0.000630,0.000630,0.000174,0.157607,-0.000920,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000021,0.000016,0.000195,0.000584,0.000584,0.000169,0.156745,-0.000861,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000020,0.000015,0.000196,0.000541,0.000541,0.000165,0.155939,-0.000807,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000019,0.000015,0.000196,0.000492,0.000492,0.000160,0.155192,-0.000747,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000019,0.000014,0.000197,0.000413,0.000413,0.000155,0.154533,-0.000658,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000018,0.000014,0.000197,0.000296,0.000296,0.000151,0.154000,-0.000533,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000018,0.000013,0.000198,0.000135,0.000135,0.000147,0.153633,-0.000367,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000017,0.000013,0.000198,0.000009,0.000009,0.000143,0.153396,-0.000237,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000017,0.000013,0.000199,0.000000,0.000000,0.000139,0.153172,-0.000225,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000016,0.000013,0.000200,0.000000,0.000000,0.000135,0.152950,-0.000221,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000016,0.000013,0.000200,0.000000,0.000000,0.000132,0.152732,-0.000218,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000016,0.000012,0.000201,0.000000,0.000000,0.000129,0.152517,-0.000215,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000015,0.000012,0.000202,0.000000,0.000000,0.000126,0.152305,-0.000212,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000187,0.000015,0.000012,0.000202,0.000000,0.000000,0.000123,0.152098,-0.000207,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000189,0.000015,0.000012,0.000203,0.000000,0.000000,0.000120,0.151894,-0.000204,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000190,0.000014,0.000012,0.000204,0.000000,0.000000,0.000118,0.151694,-0.000200,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000002,0.000000,0.000000,0.000000,0.000191,0.000014,0.000012,0.000205,0.000000,0.000000,0.000115,0.151496,-0.000198,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000001,0.000000,0.000000,0.000000,0.000192,0.000014,0.000011,0.000205,0.000000,0.000000,0.000113,0.151300,-0.000196,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000013,0.000011,0.000206,0.000000,0.000000,0.000111,0.151106,-0.000194,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000013,0.000011,0.000207,0.000000,0.000000,0.000109,0.150915,-0.000191,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000013,0.000011,0.000207,0.000086,0.000086,0.000107,0.150641,-0.000273,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000013,0.000010,0.000208,0.000325,0.000325,0.000105,0.150137,-0.000505,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000012,0.000010,0.000209,0.000480,0.000480,0.000102,0.149487,-0.000650,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000012,0.000009,0.000210,0.000573,0.000573,0.000099,0.148754,-0.000732,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000012,0.000009,0.000210,0.000624,0.000624,0.000096,0.147982,-0.000772,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000011,0.000008,0.000211,0.000591,0.000591,0.000093,0.147254,-0.000728,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000011,0.000007,0.000211,0.000534,0.000534,0.000089,0.146592,-0.000662,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000010,0.000007,0.000212,0.000485,0.000485,0.000086,0.145988,-0.000604,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000010,0.000006,0.000212,0.000421,0.000421,0.000082,0.145457,-0.000532,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000010,0.000006,0.000213,0.000298,0.000298,0.000079,0.145054,-0.000403,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000009,0.000006,0.000213,0.000159,0.000159,0.000076,0.144794,-0.000260,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000009,0.000006,0.000214,0.000015,0.000015,0.000073,0.144680,-0.000114,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000008,0.000006,0.000214,0.000000,0.000000,0.000070,0.144582,-0.000098,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000008,0.000006,0.000215,0.000000,0.000000,0.000067,0.144486,-0.000096,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000008,0.000006,0.000216,0.000000,0.000000,0.000065,0.144391,-0.000095,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000008,0.000005,0.000216,0.000000,0.000000,0.000063,0.144297,-0.000094,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000007,0.000005,0.000217,0.000000,0.000000,0.000061,0.144205,-0.000092,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000007,0.000005,0.000218,0.000000,0.000000,0.000059,0.144114,-0.000091,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000007,0.000005,0.000218,0.000000,0.000000,0.000057,0.144025,-0.000090,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000007,0.000005,0.000219,0.000000,0.000000,0.000056,0.143936,-0.000088,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000007,0.000005,0.000220,0.000000,0.000000,0.000054,0.143849,-0.000087,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000006,0.000005,0.000220,0.000000,0.000000,0.000053,0.143764,-0.000086,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000006,0.000005,0.000221,0.000000,0.000000,0.000051,0.143679,-0.000084,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000006,0.000005,0.000222,0.000000,0.000000,0.000050,0.143596,-0.000083,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000006,0.000005,0.000222,0.000095,0.000095,0.000049,0.143420,-0.000176,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620907.csv b/test/channel_loss/channel_forcing/et/cat-2620907.csv new file mode 100644 index 000000000..3283c219d --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620907.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001496,0.000547,0.001496,0.000147,0.000147,0.010648,0.425428,-0.005176,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001364,0.000539,0.001364,0.000036,0.000036,0.009823,0.420436,-0.004992,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001251,0.000532,0.001251,0.000000,0.000000,0.009104,0.415550,-0.004885,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001153,0.000524,0.001154,0.000000,0.000000,0.008475,0.410735,-0.004815,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001070,0.000517,0.001070,0.000000,0.000000,0.007922,0.405990,-0.004746,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000997,0.000509,0.000997,0.000000,0.000000,0.007435,0.401312,-0.004677,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000933,0.000502,0.000934,0.000000,0.000000,0.007003,0.396702,-0.004610,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000877,0.000495,0.000878,0.000000,0.000000,0.006621,0.392158,-0.004544,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000828,0.000487,0.000829,0.000000,0.000000,0.006280,0.387679,-0.004479,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000785,0.000480,0.000786,0.000000,0.000000,0.005976,0.383265,-0.004414,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000746,0.000474,0.000748,0.000000,0.000000,0.005704,0.378914,-0.004351,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000711,0.000467,0.000713,0.000000,0.000000,0.005459,0.374626,-0.004288,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000681,0.000460,0.000683,0.000000,0.000000,0.005239,0.370399,-0.004227,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000653,0.000453,0.000656,0.000000,0.000000,0.005039,0.366234,-0.004166,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000628,0.000447,0.000631,0.000121,0.000121,0.004858,0.362008,-0.004225,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000605,0.000440,0.000609,0.000352,0.000352,0.004693,0.357616,-0.004392,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000584,0.000433,0.000589,0.000503,0.000503,0.004541,0.353138,-0.004478,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000565,0.000425,0.000570,0.000601,0.000601,0.004402,0.348628,-0.004510,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000548,0.000419,0.000553,0.000532,0.000532,0.004273,0.344251,-0.004377,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000329,0.000000,0.000000,0.000000,0.000006,0.000531,0.000412,0.000538,0.000487,0.000487,0.004154,0.340304,-0.003946,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000323,0.000000,0.000000,0.000000,0.000007,0.000516,0.000406,0.000523,0.000441,0.000441,0.004043,0.336455,-0.003850,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000917,0.000021,0.000038,0.000021,0.000007,0.000503,0.000401,0.000531,0.000345,0.000345,0.003942,0.333302,-0.003153,1.000000,0.000017 +22,2022-08-01 22:00:00,0.000323,0.000010,0.000000,0.000010,0.000008,0.000490,0.000395,0.000508,0.000304,0.000304,0.003847,0.329689,-0.003614,1.000000,0.000008 +23,2022-08-01 23:00:00,0.000398,0.000010,0.000004,0.000010,0.000009,0.000478,0.000390,0.000497,0.000221,0.000221,0.003759,0.326279,-0.003410,1.000000,0.000002 +24,2022-08-02 00:00:00,0.000325,0.000003,0.000004,0.000003,0.000010,0.000467,0.000385,0.000480,0.000146,0.000146,0.003676,0.322920,-0.003359,1.000000,0.000003 +25,2022-08-02 01:00:00,0.001167,0.000074,0.000132,0.000074,0.000010,0.000457,0.000381,0.000542,0.000060,0.000060,0.003600,0.320397,-0.002523,1.000000,0.000060 +26,2022-08-02 02:00:00,0.001923,0.000235,0.000365,0.000235,0.000011,0.000448,0.000378,0.000694,0.000000,0.000000,0.003530,0.318485,-0.001912,1.000000,0.000191 +27,2022-08-02 03:00:00,0.001768,0.000290,0.000313,0.000290,0.000012,0.000439,0.000374,0.000741,0.000000,0.000000,0.003465,0.316500,-0.001986,1.000000,0.000214 +28,2022-08-02 04:00:00,0.002095,0.000384,0.000424,0.000384,0.000013,0.000431,0.000372,0.000828,0.000000,0.000000,0.003406,0.314756,-0.001744,1.000000,0.000253 +29,2022-08-02 05:00:00,0.001244,0.000258,0.000162,0.000258,0.000014,0.000424,0.000368,0.000695,0.000000,0.000000,0.003350,0.312456,-0.002300,1.000000,0.000158 +30,2022-08-02 06:00:00,0.000965,0.000181,0.000100,0.000181,0.000015,0.000417,0.000364,0.000612,0.000000,0.000000,0.003297,0.309975,-0.002480,1.000000,0.000078 +31,2022-08-02 07:00:00,0.000000,0.000058,0.000000,0.000058,0.000015,0.000410,0.000359,0.000483,0.000000,0.000000,0.003246,0.306678,-0.003297,1.000000,0.000020 +32,2022-08-02 08:00:00,0.000000,0.000020,0.000000,0.000020,0.000016,0.000403,0.000354,0.000440,0.000000,0.000000,0.003196,0.303428,-0.003250,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000397,0.000349,0.000414,0.000000,0.000000,0.003148,0.300225,-0.003203,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000391,0.000344,0.000409,0.000000,0.000000,0.003101,0.297068,-0.003157,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000385,0.000339,0.000404,0.000000,0.000000,0.003055,0.293956,-0.003112,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000379,0.000334,0.000399,0.000000,0.000000,0.003009,0.290889,-0.003067,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000187,0.000002,0.000004,0.000002,0.000021,0.000373,0.000329,0.000397,0.000000,0.000000,0.002966,0.288047,-0.002842,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000211,0.000002,0.000001,0.000002,0.000022,0.000368,0.000325,0.000391,0.000117,0.000117,0.002923,0.285156,-0.002890,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000196,0.000001,0.000000,0.000001,0.000023,0.000362,0.000320,0.000386,0.000314,0.000314,0.002881,0.282100,-0.003056,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000196,0.000000,0.000000,0.000000,0.000024,0.000357,0.000315,0.000381,0.000444,0.000444,0.002839,0.278959,-0.003141,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000211,0.000000,0.000000,0.000000,0.000026,0.000351,0.000310,0.000377,0.000530,0.000530,0.002798,0.275793,-0.003166,1.000000,0.000000 +42,2022-08-02 18:00:00,0.001077,0.000014,0.000025,0.000014,0.000027,0.000346,0.000306,0.000386,0.000591,0.000591,0.002758,0.273441,-0.002352,1.000000,0.000011 +43,2022-08-02 19:00:00,0.000300,0.000006,0.000000,0.000006,0.000028,0.000341,0.000301,0.000375,0.000537,0.000537,0.002718,0.270436,-0.003005,1.000000,0.000005 +44,2022-08-02 20:00:00,0.000075,0.000005,0.000000,0.000005,0.000029,0.000336,0.000296,0.000370,0.000497,0.000497,0.002679,0.267290,-0.003145,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000037,0.000000,0.000000,0.000000,0.000030,0.000331,0.000291,0.000361,0.000477,0.000477,0.002640,0.264173,-0.003118,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000037,0.000000,0.000000,0.000000,0.000031,0.000326,0.000287,0.000357,0.000419,0.000419,0.002601,0.261157,-0.003015,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000047,0.000000,0.000000,0.000000,0.000032,0.000321,0.000282,0.000353,0.000298,0.000298,0.002562,0.258314,-0.002843,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000037,0.000000,0.000000,0.000000,0.000034,0.000316,0.000278,0.000349,0.000160,0.000160,0.002524,0.255639,-0.002676,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000037,0.000000,0.000000,0.000000,0.000035,0.000311,0.000274,0.000346,0.000020,0.000020,0.002487,0.253139,-0.002499,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000037,0.000000,0.000000,0.000000,0.000036,0.000306,0.000270,0.000342,0.000000,0.000000,0.002451,0.250695,-0.002444,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000037,0.000000,0.000000,0.000000,0.000037,0.000302,0.000266,0.000339,0.000000,0.000000,0.002416,0.248286,-0.002409,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000037,0.000000,0.000000,0.000000,0.000038,0.000297,0.000262,0.000336,0.000000,0.000000,0.002381,0.245912,-0.002374,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000037,0.000000,0.000000,0.000000,0.000040,0.000293,0.000259,0.000333,0.000000,0.000000,0.002347,0.243572,-0.002340,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000047,0.000000,0.000000,0.000000,0.000041,0.000288,0.000255,0.000330,0.000000,0.000000,0.002313,0.241276,-0.002296,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000284,0.000251,0.000327,0.000000,0.000000,0.002280,0.238966,-0.002310,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000280,0.000248,0.000324,0.000000,0.000000,0.002248,0.236690,-0.002276,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000276,0.000244,0.000321,0.000000,0.000000,0.002216,0.234446,-0.002244,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000272,0.000241,0.000318,0.000000,0.000000,0.002185,0.232234,-0.002212,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000268,0.000237,0.000316,0.000000,0.000000,0.002154,0.230055,-0.002180,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000264,0.000234,0.000313,0.000000,0.000000,0.002124,0.227906,-0.002148,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000260,0.000230,0.000311,0.000000,0.000000,0.002094,0.225789,-0.002118,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000257,0.000227,0.000308,0.000116,0.000116,0.002065,0.223587,-0.002201,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000253,0.000223,0.000306,0.000356,0.000356,0.002035,0.221181,-0.002406,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000249,0.000219,0.000303,0.000506,0.000506,0.002005,0.218662,-0.002519,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000245,0.000215,0.000301,0.000605,0.000605,0.001975,0.216081,-0.002581,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000241,0.000211,0.000298,0.000587,0.000587,0.001945,0.213555,-0.002526,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000237,0.000207,0.000296,0.000522,0.000522,0.001915,0.211130,-0.002426,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004997,0.000780,0.001418,0.000780,0.000060,0.000234,0.000209,0.001074,0.000484,0.000484,0.001889,0.212304,0.001175,1.000000,0.000638 +69,2022-08-03 21:00:00,0.000562,0.000355,0.000001,0.000355,0.000061,0.000231,0.000206,0.000648,0.000441,0.000441,0.001865,0.210529,-0.001775,1.000000,0.000284 +70,2022-08-03 22:00:00,0.000000,0.000284,0.000000,0.000284,0.000063,0.000228,0.000203,0.000574,0.000378,0.000378,0.001839,0.208288,-0.002241,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000064,0.000225,0.000199,0.000289,0.000275,0.000275,0.001814,0.206255,-0.002033,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000221,0.000196,0.000287,0.000170,0.000170,0.001789,0.204281,-0.001974,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000218,0.000193,0.000285,0.000030,0.000030,0.001764,0.202473,-0.001808,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000215,0.000191,0.000284,0.000000,0.000000,0.001740,0.200721,-0.001752,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000212,0.000188,0.000282,0.000000,0.000000,0.001715,0.198995,-0.001727,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000209,0.000185,0.000280,0.000000,0.000000,0.001692,0.197293,-0.001702,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000206,0.000183,0.000279,0.000000,0.000000,0.001668,0.195615,-0.001677,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000203,0.000180,0.000277,0.000000,0.000000,0.001645,0.193962,-0.001653,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000200,0.000177,0.000276,0.000000,0.000000,0.001622,0.192333,-0.001630,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000197,0.000175,0.000274,0.000000,0.000000,0.001599,0.190726,-0.001606,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000195,0.000172,0.000273,0.000000,0.000000,0.001577,0.189143,-0.001583,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000192,0.000170,0.000272,0.000000,0.000000,0.001555,0.187583,-0.001560,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000189,0.000167,0.000271,0.000000,0.000000,0.001533,0.186045,-0.001538,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000186,0.000165,0.000269,0.000000,0.000000,0.001512,0.184530,-0.001516,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000184,0.000163,0.000268,0.000000,0.000000,0.001490,0.183036,-0.001494,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000181,0.000160,0.000267,0.000112,0.000112,0.001469,0.181453,-0.001583,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000178,0.000157,0.000266,0.000349,0.000349,0.001448,0.179659,-0.001794,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000176,0.000154,0.000265,0.000510,0.000510,0.001427,0.177732,-0.001927,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000173,0.000151,0.000263,0.000614,0.000614,0.001405,0.175730,-0.002002,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000170,0.000148,0.000262,0.000669,0.000669,0.001382,0.173704,-0.002027,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000167,0.000145,0.000261,0.000602,0.000602,0.001360,0.171772,-0.001932,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000164,0.000142,0.000259,0.000547,0.000547,0.001337,0.169922,-0.001850,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000162,0.000139,0.000258,0.000513,0.000513,0.001314,0.168133,-0.001789,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000159,0.000136,0.000257,0.000438,0.000438,0.001292,0.166443,-0.001690,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000156,0.000134,0.000255,0.000315,0.000315,0.001269,0.164899,-0.001545,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000153,0.000132,0.000254,0.000173,0.000173,0.001248,0.163516,-0.001383,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000151,0.000130,0.000253,0.000031,0.000031,0.001227,0.162293,-0.001222,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000148,0.000128,0.000252,0.000000,0.000000,0.001206,0.161119,-0.001174,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000146,0.000126,0.000251,0.000000,0.000000,0.001187,0.159962,-0.001157,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000143,0.000124,0.000250,0.000000,0.000000,0.001168,0.158821,-0.001141,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000141,0.000122,0.000249,0.000000,0.000000,0.001149,0.157697,-0.001124,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000139,0.000121,0.000248,0.000000,0.000000,0.001131,0.156588,-0.001108,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000137,0.000119,0.000248,0.000000,0.000000,0.001113,0.155496,-0.001092,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000134,0.000117,0.000247,0.000000,0.000000,0.001096,0.154419,-0.001077,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000132,0.000115,0.000246,0.000000,0.000000,0.001079,0.153358,-0.001061,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000130,0.000114,0.000246,0.000000,0.000000,0.001063,0.152312,-0.001046,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000128,0.000112,0.000245,0.000000,0.000000,0.001047,0.151282,-0.001031,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000126,0.000111,0.000245,0.000000,0.000000,0.001031,0.150266,-0.001016,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000124,0.000109,0.000244,0.000000,0.000000,0.001016,0.149264,-0.001001,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000122,0.000107,0.000244,0.000125,0.000125,0.001000,0.148154,-0.001110,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000121,0.000105,0.000244,0.000361,0.000361,0.000985,0.146827,-0.001327,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000119,0.000103,0.000243,0.000517,0.000517,0.000969,0.145366,-0.001461,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000117,0.000100,0.000242,0.000625,0.000625,0.000953,0.143819,-0.001547,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000115,0.000098,0.000242,0.000624,0.000624,0.000936,0.142296,-0.001524,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000033,0.000000,0.000000,0.000000,0.000129,0.000112,0.000096,0.000241,0.000566,0.000566,0.000919,0.140883,-0.001413,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000033,0.000000,0.000000,0.000000,0.000130,0.000110,0.000094,0.000241,0.000529,0.000529,0.000902,0.139528,-0.001355,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000047,0.000000,0.000000,0.000000,0.000132,0.000108,0.000092,0.000240,0.000465,0.000465,0.000886,0.138269,-0.001258,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000036,0.000000,0.000000,0.000000,0.000133,0.000106,0.000090,0.000239,0.000404,0.000404,0.000869,0.137077,-0.001192,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000227,0.000000,0.000000,0.000000,0.000135,0.000104,0.000088,0.000239,0.000293,0.000293,0.000853,0.136200,-0.000877,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000005,0.000000,0.000000,0.000000,0.000136,0.000102,0.000087,0.000238,0.000169,0.000169,0.000837,0.135239,-0.000961,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000608,0.000015,0.000027,0.000015,0.000138,0.000101,0.000086,0.000253,0.000050,0.000050,0.000823,0.134977,-0.000261,1.000000,0.000012 +122,2022-08-06 02:00:00,0.001717,0.000134,0.000232,0.000134,0.000139,0.000099,0.000087,0.000372,0.000000,0.000000,0.000812,0.135659,0.000682,1.000000,0.000110 +123,2022-08-06 03:00:00,0.000493,0.000075,0.000021,0.000075,0.000140,0.000098,0.000087,0.000313,0.000000,0.000000,0.000801,0.135333,-0.000326,1.000000,0.000056 +124,2022-08-06 04:00:00,0.000181,0.000053,0.000003,0.000053,0.000142,0.000096,0.000086,0.000292,0.000000,0.000000,0.000790,0.134721,-0.000612,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000196,0.000007,0.000003,0.000007,0.000143,0.000095,0.000085,0.000245,0.000000,0.000000,0.000780,0.134133,-0.000588,1.000000,0.000002 +126,2022-08-06 06:00:00,0.000342,0.000007,0.000010,0.000007,0.000145,0.000094,0.000084,0.000246,0.000000,0.000000,0.000770,0.133691,-0.000443,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000146,0.000093,0.000083,0.000242,0.000000,0.000000,0.000760,0.132928,-0.000763,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000148,0.000092,0.000082,0.000241,0.000000,0.000000,0.000751,0.132175,-0.000752,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000090,0.000081,0.000239,0.000000,0.000000,0.000741,0.131434,-0.000741,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000089,0.000080,0.000240,0.000000,0.000000,0.000731,0.130703,-0.000731,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000088,0.000078,0.000240,0.000000,0.000000,0.000722,0.129983,-0.000720,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000087,0.000077,0.000240,0.000000,0.000000,0.000712,0.129273,-0.000710,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000086,0.000076,0.000240,0.000000,0.000000,0.000702,0.128574,-0.000700,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000084,0.000075,0.000240,0.000105,0.000105,0.000693,0.127781,-0.000793,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000083,0.000073,0.000241,0.000330,0.000330,0.000683,0.126778,-0.001003,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000082,0.000071,0.000241,0.000479,0.000479,0.000672,0.125642,-0.001136,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000081,0.000070,0.000241,0.000586,0.000586,0.000661,0.124417,-0.001225,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000079,0.000068,0.000241,0.000663,0.000663,0.000650,0.123133,-0.001283,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000078,0.000066,0.000241,0.000612,0.000612,0.000638,0.121919,-0.001214,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000076,0.000064,0.000240,0.000565,0.000565,0.000625,0.120768,-0.001151,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000075,0.000062,0.000240,0.000512,0.000512,0.000613,0.119687,-0.001082,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000073,0.000060,0.000240,0.000429,0.000429,0.000600,0.118702,-0.000984,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000072,0.000059,0.000240,0.000313,0.000313,0.000588,0.117846,-0.000856,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000070,0.000058,0.000240,0.000173,0.000173,0.000575,0.117140,-0.000706,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000069,0.000057,0.000240,0.000028,0.000028,0.000564,0.116587,-0.000553,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000067,0.000056,0.000240,0.000000,0.000000,0.000553,0.116070,-0.000517,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000066,0.000055,0.000240,0.000000,0.000000,0.000542,0.115560,-0.000510,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000065,0.000055,0.000240,0.000000,0.000000,0.000532,0.115057,-0.000503,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000064,0.000054,0.000240,0.000000,0.000000,0.000523,0.114562,-0.000495,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000062,0.000053,0.000240,0.000000,0.000000,0.000513,0.114074,-0.000488,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000061,0.000052,0.000240,0.000000,0.000000,0.000504,0.113593,-0.000481,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000060,0.000052,0.000241,0.000000,0.000000,0.000496,0.113118,-0.000474,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000059,0.000051,0.000241,0.000000,0.000000,0.000487,0.112651,-0.000467,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000058,0.000050,0.000241,0.000000,0.000000,0.000479,0.112190,-0.000461,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000057,0.000049,0.000242,0.000000,0.000000,0.000471,0.111736,-0.000454,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000056,0.000049,0.000242,0.000000,0.000000,0.000464,0.111289,-0.000448,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000055,0.000048,0.000242,0.000000,0.000000,0.000456,0.110848,-0.000441,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000055,0.000047,0.000243,0.000102,0.000102,0.000449,0.110312,-0.000536,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000054,0.000046,0.000243,0.000339,0.000339,0.000441,0.109551,-0.000761,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000053,0.000045,0.000243,0.000491,0.000491,0.000433,0.108650,-0.000900,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000052,0.000043,0.000243,0.000590,0.000590,0.000424,0.107666,-0.000984,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000050,0.000041,0.000244,0.000637,0.000637,0.000415,0.106649,-0.001017,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000049,0.000040,0.000244,0.000593,0.000593,0.000406,0.105690,-0.000959,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000048,0.000038,0.000244,0.000543,0.000543,0.000396,0.104794,-0.000896,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000047,0.000037,0.000244,0.000497,0.000497,0.000386,0.103956,-0.000838,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000046,0.000036,0.000244,0.000413,0.000413,0.000376,0.103214,-0.000743,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000045,0.000035,0.000244,0.000297,0.000297,0.000367,0.102596,-0.000618,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000043,0.000034,0.000244,0.000137,0.000137,0.000358,0.102145,-0.000451,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000042,0.000034,0.000244,0.000009,0.000009,0.000349,0.101827,-0.000318,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000041,0.000033,0.000244,0.000000,0.000000,0.000341,0.101522,-0.000305,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000040,0.000033,0.000245,0.000000,0.000000,0.000333,0.101221,-0.000301,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000040,0.000032,0.000245,0.000000,0.000000,0.000326,0.100924,-0.000296,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000039,0.000032,0.000245,0.000000,0.000000,0.000319,0.100632,-0.000292,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000038,0.000031,0.000246,0.000000,0.000000,0.000312,0.100344,-0.000288,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000037,0.000031,0.000246,0.000000,0.000000,0.000306,0.100061,-0.000284,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000036,0.000030,0.000246,0.000000,0.000000,0.000300,0.099781,-0.000280,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000036,0.000030,0.000247,0.000000,0.000000,0.000294,0.099505,-0.000276,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000035,0.000030,0.000247,0.000000,0.000000,0.000289,0.099234,-0.000272,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000034,0.000029,0.000248,0.000000,0.000000,0.000284,0.098966,-0.000268,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000034,0.000029,0.000248,0.000000,0.000000,0.000279,0.098702,-0.000264,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000033,0.000028,0.000249,0.000000,0.000000,0.000274,0.098442,-0.000260,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000033,0.000028,0.000249,0.000086,0.000000,0.000269,0.098185,-0.000256,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000032,0.000028,0.000250,0.000322,0.000000,0.000264,0.097932,-0.000253,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000032,0.000027,0.000251,0.000481,0.000000,0.000260,0.097683,-0.000249,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000031,0.000027,0.000251,0.000575,0.000000,0.000256,0.097438,-0.000246,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000031,0.000026,0.000252,0.000640,0.000000,0.000252,0.097196,-0.000242,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000030,0.000026,0.000252,0.000597,0.000000,0.000248,0.096957,-0.000239,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000030,0.000026,0.000253,0.000543,0.000000,0.000244,0.096722,-0.000235,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000029,0.000025,0.000254,0.000494,0.000000,0.000240,0.096490,-0.000232,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000029,0.000025,0.000254,0.000422,0.000000,0.000236,0.096262,-0.000228,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000028,0.000024,0.000255,0.000299,0.000000,0.000232,0.096037,-0.000225,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000028,0.000024,0.000255,0.000163,0.000000,0.000229,0.095815,-0.000222,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000027,0.000024,0.000256,0.000017,0.000000,0.000225,0.095596,-0.000219,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000027,0.000023,0.000257,0.000000,0.000000,0.000222,0.095381,-0.000216,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000026,0.000023,0.000257,0.000000,0.000000,0.000219,0.095169,-0.000212,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000026,0.000023,0.000258,0.000000,0.000000,0.000215,0.094959,-0.000209,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000026,0.000022,0.000259,0.000000,0.000000,0.000212,0.094753,-0.000206,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000025,0.000022,0.000259,0.000000,0.000000,0.000209,0.094549,-0.000203,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000025,0.000022,0.000260,0.000000,0.000000,0.000206,0.094349,-0.000200,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000025,0.000022,0.000260,0.000000,0.000000,0.000203,0.094151,-0.000198,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000024,0.000021,0.000261,0.000000,0.000000,0.000200,0.093957,-0.000195,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000024,0.000021,0.000262,0.000000,0.000000,0.000197,0.093765,-0.000192,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000023,0.000021,0.000262,0.000000,0.000000,0.000194,0.093575,-0.000189,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000023,0.000020,0.000263,0.000000,0.000000,0.000191,0.093389,-0.000186,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000023,0.000020,0.000264,0.000000,0.000000,0.000188,0.093205,-0.000184,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000022,0.000020,0.000264,0.000095,0.000000,0.000185,0.093024,-0.000181,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620908.csv b/test/channel_loss/channel_forcing/et/cat-2620908.csv new file mode 100644 index 000000000..27bf778cc --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620908.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001473,0.000380,0.001473,0.000149,0.000149,0.010504,0.421733,-0.005117,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001322,0.000375,0.001322,0.000035,0.000035,0.009557,0.416800,-0.004934,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001193,0.000370,0.001193,0.000000,0.000000,0.008734,0.411968,-0.004831,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001083,0.000365,0.001084,0.000000,0.000000,0.008015,0.407203,-0.004765,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000989,0.000360,0.000990,0.000000,0.000000,0.007385,0.402503,-0.004700,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000908,0.000355,0.000908,0.000000,0.000000,0.006832,0.397868,-0.004635,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000837,0.000350,0.000838,0.000000,0.000000,0.006344,0.393297,-0.004572,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000776,0.000345,0.000776,0.000000,0.000000,0.005914,0.388788,-0.004509,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000722,0.000340,0.000723,0.000000,0.000000,0.005532,0.384341,-0.004447,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000674,0.000336,0.000676,0.000000,0.000000,0.005194,0.379955,-0.004386,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000632,0.000331,0.000634,0.000000,0.000000,0.004892,0.375629,-0.004326,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000595,0.000326,0.000598,0.000000,0.000000,0.004623,0.371363,-0.004266,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000563,0.000322,0.000565,0.000000,0.000000,0.004383,0.367155,-0.004208,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000533,0.000318,0.000536,0.000000,0.000000,0.004167,0.363005,-0.004150,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000507,0.000313,0.000510,0.000120,0.000120,0.003973,0.358794,-0.004211,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000483,0.000308,0.000487,0.000351,0.000351,0.003798,0.354413,-0.004381,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000462,0.000304,0.000467,0.000507,0.000507,0.003640,0.349937,-0.004475,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000443,0.000299,0.000448,0.000612,0.000612,0.003495,0.345420,-0.004518,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000426,0.000294,0.000431,0.000544,0.000544,0.003364,0.341032,-0.004388,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000340,0.000000,0.000000,0.000000,0.000006,0.000410,0.000290,0.000416,0.000497,0.000497,0.003244,0.337086,-0.003946,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000340,0.000000,0.000000,0.000000,0.000007,0.000395,0.000286,0.000402,0.000453,0.000453,0.003135,0.333237,-0.003849,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000924,0.000031,0.000056,0.000031,0.000008,0.000382,0.000282,0.000421,0.000348,0.000348,0.003035,0.330066,-0.003171,1.000000,0.000025 +22,2022-08-01 22:00:00,0.000340,0.000014,0.000000,0.000014,0.000008,0.000370,0.000279,0.000393,0.000307,0.000307,0.002943,0.326457,-0.003609,1.000000,0.000011 +23,2022-08-01 23:00:00,0.000431,0.000015,0.000008,0.000015,0.000009,0.000359,0.000275,0.000384,0.000224,0.000224,0.002859,0.323062,-0.003395,1.000000,0.000003 +24,2022-08-02 00:00:00,0.000355,0.000006,0.000008,0.000006,0.000010,0.000349,0.000271,0.000365,0.000146,0.000146,0.002781,0.319716,-0.003346,1.000000,0.000005 +25,2022-08-02 01:00:00,0.001276,0.000125,0.000220,0.000125,0.000011,0.000340,0.000269,0.000475,0.000060,0.000060,0.002710,0.317200,-0.002516,1.000000,0.000101 +26,2022-08-02 02:00:00,0.002048,0.000361,0.000553,0.000361,0.000011,0.000331,0.000267,0.000704,0.000000,0.000000,0.002646,0.315210,-0.001990,1.000000,0.000293 +27,2022-08-02 03:00:00,0.001907,0.000451,0.000488,0.000451,0.000012,0.000324,0.000264,0.000787,0.000000,0.000000,0.002586,0.313173,-0.002037,1.000000,0.000330 +28,2022-08-02 04:00:00,0.002180,0.000570,0.000613,0.000570,0.000013,0.000317,0.000263,0.000900,0.000000,0.000000,0.002532,0.311309,-0.001864,1.000000,0.000373 +29,2022-08-02 05:00:00,0.001335,0.000392,0.000257,0.000392,0.000014,0.000310,0.000260,0.000717,0.000000,0.000000,0.002482,0.308989,-0.002320,1.000000,0.000238 +30,2022-08-02 06:00:00,0.001044,0.000277,0.000164,0.000277,0.000015,0.000304,0.000257,0.000596,0.000000,0.000000,0.002435,0.306506,-0.002483,1.000000,0.000125 +31,2022-08-02 07:00:00,0.000000,0.000092,0.000000,0.000092,0.000016,0.000298,0.000254,0.000407,0.000000,0.000000,0.002391,0.303189,-0.003317,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000293,0.000250,0.000343,0.000000,0.000000,0.002348,0.299917,-0.003272,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000288,0.000247,0.000305,0.000000,0.000000,0.002307,0.296690,-0.003227,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000283,0.000244,0.000301,0.000000,0.000000,0.002268,0.293507,-0.003183,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000278,0.000240,0.000298,0.000000,0.000000,0.002231,0.290368,-0.003139,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000273,0.000237,0.000294,0.000000,0.000000,0.002194,0.287272,-0.003096,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000221,0.000004,0.000008,0.000004,0.000022,0.000269,0.000234,0.000295,0.000000,0.000000,0.002160,0.284428,-0.002844,1.000000,0.000004 +38,2022-08-02 14:00:00,0.000223,0.000003,0.000002,0.000003,0.000023,0.000264,0.000231,0.000290,0.000116,0.000116,0.002126,0.281517,-0.002911,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000203,0.000002,0.000000,0.000002,0.000024,0.000260,0.000227,0.000286,0.000311,0.000311,0.002093,0.278436,-0.003081,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000203,0.000000,0.000000,0.000000,0.000025,0.000256,0.000224,0.000282,0.000444,0.000444,0.002061,0.275267,-0.003169,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000223,0.000000,0.000000,0.000000,0.000026,0.000252,0.000221,0.000278,0.000534,0.000534,0.002030,0.272072,-0.003195,1.000000,0.000000 +42,2022-08-02 18:00:00,0.001065,0.000019,0.000034,0.000019,0.000027,0.000248,0.000218,0.000294,0.000598,0.000598,0.002000,0.269655,-0.002417,1.000000,0.000015 +43,2022-08-02 19:00:00,0.000297,0.000008,0.000000,0.000008,0.000029,0.000244,0.000215,0.000282,0.000533,0.000533,0.001970,0.266611,-0.003044,1.000000,0.000007 +44,2022-08-02 20:00:00,0.000086,0.000007,0.000000,0.000007,0.000030,0.000241,0.000212,0.000277,0.000500,0.000500,0.001941,0.263432,-0.003179,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000031,0.000237,0.000208,0.000268,0.000481,0.000481,0.001912,0.260284,-0.003148,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000054,0.000000,0.000000,0.000000,0.000032,0.000233,0.000205,0.000266,0.000423,0.000423,0.001883,0.257237,-0.003047,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000054,0.000000,0.000000,0.000000,0.000033,0.000230,0.000202,0.000263,0.000299,0.000299,0.001855,0.254354,-0.002883,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000054,0.000000,0.000000,0.000000,0.000035,0.000226,0.000199,0.000261,0.000160,0.000160,0.001828,0.251649,-0.002706,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000054,0.000000,0.000000,0.000000,0.000036,0.000223,0.000196,0.000259,0.000019,0.000019,0.001801,0.249119,-0.002530,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000054,0.000000,0.000000,0.000000,0.000037,0.000220,0.000194,0.000257,0.000000,0.000000,0.001775,0.246642,-0.002477,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000054,0.000000,0.000000,0.000000,0.000038,0.000216,0.000191,0.000255,0.000000,0.000000,0.001750,0.244199,-0.002443,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000054,0.000000,0.000000,0.000000,0.000040,0.000213,0.000188,0.000254,0.000000,0.000000,0.001725,0.241790,-0.002409,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000054,0.000000,0.000000,0.000000,0.000041,0.000210,0.000186,0.000252,0.000000,0.000000,0.001700,0.239413,-0.002376,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000054,0.000000,0.000000,0.000000,0.000042,0.000207,0.000183,0.000250,0.000000,0.000000,0.001677,0.237070,-0.002344,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000204,0.000181,0.000248,0.000000,0.000000,0.001653,0.234705,-0.002364,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000201,0.000178,0.000247,0.000000,0.000000,0.001630,0.232374,-0.002332,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000199,0.000176,0.000245,0.000000,0.000000,0.001608,0.230074,-0.002300,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000196,0.000174,0.000244,0.000000,0.000000,0.001586,0.227805,-0.002268,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000193,0.000171,0.000242,0.000000,0.000000,0.001564,0.225568,-0.002237,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000190,0.000169,0.000241,0.000000,0.000000,0.001542,0.223362,-0.002206,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000188,0.000167,0.000240,0.000000,0.000000,0.001521,0.221186,-0.002176,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000185,0.000164,0.000238,0.000117,0.000117,0.001500,0.218924,-0.002261,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000182,0.000161,0.000237,0.000360,0.000360,0.001479,0.216454,-0.002470,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000180,0.000159,0.000236,0.000515,0.000515,0.001458,0.213865,-0.002589,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000177,0.000156,0.000235,0.000615,0.000615,0.001437,0.211213,-0.002652,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000174,0.000153,0.000233,0.000597,0.000597,0.001416,0.208615,-0.002598,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000172,0.000150,0.000232,0.000529,0.000529,0.001395,0.206119,-0.002496,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004997,0.001000,0.001818,0.001000,0.000062,0.000169,0.000151,0.001232,0.000487,0.000487,0.001377,0.206834,0.000715,1.000000,0.000818 +69,2022-08-03 21:00:00,0.000519,0.000455,0.000001,0.000455,0.000063,0.000167,0.000149,0.000686,0.000442,0.000442,0.001359,0.204960,-0.001874,1.000000,0.000364 +70,2022-08-03 22:00:00,0.000000,0.000364,0.000000,0.000364,0.000065,0.000165,0.000147,0.000594,0.000380,0.000380,0.001340,0.202662,-0.002299,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000071,0.000000,0.000000,0.000000,0.000066,0.000163,0.000145,0.000229,0.000278,0.000278,0.001322,0.200566,-0.002095,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000160,0.000142,0.000228,0.000172,0.000172,0.001304,0.198534,-0.002033,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000158,0.000140,0.000228,0.000029,0.000029,0.001287,0.196669,-0.001864,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000156,0.000138,0.000227,0.000000,0.000000,0.001269,0.194860,-0.001810,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000154,0.000137,0.000226,0.000000,0.000000,0.001252,0.193075,-0.001785,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000152,0.000135,0.000226,0.000000,0.000000,0.001235,0.191314,-0.001760,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000150,0.000133,0.000225,0.000000,0.000000,0.001218,0.189578,-0.001736,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000148,0.000131,0.000224,0.000000,0.000000,0.001202,0.187866,-0.001712,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000146,0.000129,0.000224,0.000000,0.000000,0.001185,0.186177,-0.001689,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000144,0.000127,0.000223,0.000000,0.000000,0.001169,0.184511,-0.001666,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000142,0.000126,0.000223,0.000000,0.000000,0.001153,0.182868,-0.001643,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000140,0.000124,0.000223,0.000000,0.000000,0.001138,0.181248,-0.001620,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000138,0.000122,0.000222,0.000000,0.000000,0.001122,0.179650,-0.001598,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000136,0.000121,0.000222,0.000000,0.000000,0.001107,0.178074,-0.001576,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000134,0.000119,0.000222,0.000000,0.000000,0.001092,0.176519,-0.001555,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000132,0.000117,0.000221,0.000112,0.000112,0.001077,0.174875,-0.001644,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000130,0.000115,0.000221,0.000351,0.000351,0.001062,0.173019,-0.001856,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000128,0.000113,0.000221,0.000515,0.000515,0.001047,0.171025,-0.001993,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000126,0.000111,0.000220,0.000626,0.000626,0.001032,0.168951,-0.002075,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000124,0.000109,0.000220,0.000675,0.000675,0.001016,0.166855,-0.002095,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000122,0.000107,0.000219,0.000606,0.000606,0.001000,0.164857,-0.001998,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000120,0.000104,0.000219,0.000560,0.000560,0.000984,0.162932,-0.001925,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000118,0.000103,0.000219,0.000521,0.000521,0.000968,0.161072,-0.001860,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000117,0.000101,0.000218,0.000441,0.000441,0.000952,0.159316,-0.001756,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000115,0.000099,0.000218,0.000318,0.000318,0.000936,0.157706,-0.001610,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000113,0.000097,0.000217,0.000174,0.000174,0.000921,0.156259,-0.001447,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000111,0.000096,0.000217,0.000030,0.000030,0.000906,0.154975,-0.001284,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000109,0.000095,0.000217,0.000000,0.000000,0.000892,0.153738,-0.001237,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000107,0.000093,0.000217,0.000000,0.000000,0.000878,0.152517,-0.001220,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000106,0.000092,0.000217,0.000000,0.000000,0.000864,0.151314,-0.001204,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000104,0.000091,0.000217,0.000000,0.000000,0.000851,0.150126,-0.001187,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000102,0.000090,0.000217,0.000000,0.000000,0.000838,0.148956,-0.001171,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000101,0.000088,0.000217,0.000000,0.000000,0.000826,0.147801,-0.001155,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000099,0.000087,0.000217,0.000000,0.000000,0.000814,0.146662,-0.001139,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000098,0.000086,0.000217,0.000000,0.000000,0.000802,0.145538,-0.001123,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000096,0.000085,0.000217,0.000000,0.000000,0.000790,0.144431,-0.001108,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000095,0.000084,0.000217,0.000000,0.000000,0.000779,0.143338,-0.001093,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000094,0.000082,0.000217,0.000000,0.000000,0.000767,0.142260,-0.001078,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000092,0.000081,0.000217,0.000000,0.000000,0.000756,0.141197,-0.001063,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000091,0.000080,0.000218,0.000125,0.000125,0.000745,0.140025,-0.001172,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000090,0.000079,0.000218,0.000366,0.000366,0.000734,0.138632,-0.001393,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000088,0.000077,0.000218,0.000525,0.000525,0.000723,0.137101,-0.001531,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000087,0.000075,0.000218,0.000634,0.000634,0.000712,0.135484,-0.001617,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000085,0.000074,0.000218,0.000633,0.000633,0.000700,0.133890,-0.001595,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000054,0.000000,0.000000,0.000000,0.000134,0.000084,0.000072,0.000218,0.000580,0.000580,0.000688,0.132423,-0.001467,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000054,0.000000,0.000000,0.000000,0.000136,0.000082,0.000070,0.000218,0.000540,0.000540,0.000676,0.131016,-0.001407,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000054,0.000000,0.000000,0.000000,0.000137,0.000081,0.000069,0.000218,0.000468,0.000468,0.000664,0.129699,-0.001316,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000080,0.000068,0.000219,0.000409,0.000409,0.000652,0.128468,-0.001232,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000242,0.000000,0.000000,0.000000,0.000141,0.000078,0.000067,0.000219,0.000294,0.000294,0.000641,0.127543,-0.000925,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000052,0.000000,0.000000,0.000000,0.000142,0.000077,0.000066,0.000219,0.000170,0.000170,0.000630,0.126565,-0.000977,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000636,0.000023,0.000043,0.000023,0.000144,0.000076,0.000065,0.000243,0.000049,0.000049,0.000620,0.126254,-0.000311,1.000000,0.000019 +122,2022-08-06 02:00:00,0.001749,0.000192,0.000331,0.000192,0.000145,0.000074,0.000066,0.000412,0.000000,0.000000,0.000611,0.126810,0.000555,1.000000,0.000157 +123,2022-08-06 03:00:00,0.000503,0.000109,0.000032,0.000109,0.000147,0.000074,0.000066,0.000329,0.000000,0.000000,0.000604,0.126424,-0.000386,1.000000,0.000080 +124,2022-08-06 04:00:00,0.000195,0.000077,0.000005,0.000077,0.000148,0.000073,0.000065,0.000298,0.000000,0.000000,0.000596,0.125766,-0.000658,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000198,0.000010,0.000005,0.000010,0.000150,0.000072,0.000064,0.000232,0.000000,0.000000,0.000588,0.125119,-0.000647,1.000000,0.000003 +126,2022-08-06 06:00:00,0.000371,0.000012,0.000017,0.000012,0.000151,0.000071,0.000064,0.000234,0.000000,0.000000,0.000581,0.124640,-0.000479,1.000000,0.000009 +127,2022-08-06 07:00:00,0.000000,0.000005,0.000000,0.000005,0.000153,0.000070,0.000063,0.000228,0.000000,0.000000,0.000574,0.123819,-0.000821,1.000000,0.000003 +128,2022-08-06 08:00:00,0.000000,0.000003,0.000000,0.000003,0.000154,0.000069,0.000062,0.000227,0.000000,0.000000,0.000567,0.123009,-0.000810,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000068,0.000061,0.000224,0.000000,0.000000,0.000560,0.122211,-0.000799,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000067,0.000060,0.000225,0.000000,0.000000,0.000553,0.121423,-0.000788,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000066,0.000059,0.000225,0.000000,0.000000,0.000546,0.120646,-0.000777,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000066,0.000059,0.000226,0.000000,0.000000,0.000539,0.119880,-0.000766,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000065,0.000058,0.000226,0.000000,0.000000,0.000532,0.119124,-0.000756,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000064,0.000057,0.000227,0.000103,0.000103,0.000525,0.118277,-0.000847,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000063,0.000056,0.000228,0.000330,0.000330,0.000518,0.117218,-0.001059,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000062,0.000055,0.000228,0.000480,0.000480,0.000510,0.116026,-0.001192,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000061,0.000053,0.000229,0.000594,0.000594,0.000502,0.114737,-0.001289,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000060,0.000052,0.000229,0.000670,0.000670,0.000494,0.113391,-0.001346,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000059,0.000050,0.000230,0.000619,0.000619,0.000485,0.112113,-0.001278,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000058,0.000049,0.000230,0.000574,0.000574,0.000477,0.110898,-0.001216,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000048,0.000230,0.000519,0.000519,0.000468,0.109753,-0.001145,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000056,0.000047,0.000231,0.000431,0.000431,0.000459,0.108711,-0.001042,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000055,0.000046,0.000231,0.000317,0.000317,0.000450,0.107796,-0.000915,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000054,0.000045,0.000231,0.000175,0.000175,0.000441,0.107034,-0.000762,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000053,0.000044,0.000232,0.000027,0.000027,0.000433,0.106427,-0.000606,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000052,0.000044,0.000232,0.000000,0.000000,0.000425,0.105856,-0.000571,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000051,0.000043,0.000233,0.000000,0.000000,0.000417,0.105293,-0.000563,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000050,0.000043,0.000233,0.000000,0.000000,0.000410,0.104738,-0.000555,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000049,0.000042,0.000234,0.000000,0.000000,0.000403,0.104190,-0.000548,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000048,0.000041,0.000234,0.000000,0.000000,0.000396,0.103650,-0.000540,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000047,0.000041,0.000235,0.000000,0.000000,0.000390,0.103117,-0.000533,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000047,0.000040,0.000236,0.000000,0.000000,0.000383,0.102591,-0.000526,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000046,0.000040,0.000236,0.000000,0.000000,0.000377,0.102073,-0.000518,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000045,0.000039,0.000237,0.000000,0.000000,0.000371,0.101561,-0.000511,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000044,0.000039,0.000238,0.000000,0.000000,0.000365,0.101057,-0.000504,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000044,0.000038,0.000238,0.000000,0.000000,0.000360,0.100560,-0.000497,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000043,0.000038,0.000239,0.000000,0.000000,0.000354,0.100069,-0.000490,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000042,0.000037,0.000240,0.000103,0.000103,0.000349,0.099484,-0.000585,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000042,0.000036,0.000240,0.000343,0.000343,0.000343,0.098670,-0.000814,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000041,0.000035,0.000241,0.000499,0.000499,0.000337,0.097713,-0.000957,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000040,0.000034,0.000242,0.000596,0.000596,0.000331,0.096673,-0.001040,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000039,0.000033,0.000242,0.000647,0.000647,0.000324,0.095598,-0.001076,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000039,0.000032,0.000243,0.000605,0.000605,0.000318,0.094578,-0.001019,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000038,0.000031,0.000243,0.000552,0.000552,0.000311,0.093626,-0.000953,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000037,0.000030,0.000243,0.000500,0.000500,0.000304,0.092737,-0.000889,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000036,0.000029,0.000244,0.000419,0.000419,0.000296,0.091941,-0.000796,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000035,0.000028,0.000244,0.000299,0.000299,0.000289,0.091274,-0.000667,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000034,0.000028,0.000245,0.000137,0.000137,0.000283,0.090775,-0.000498,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000034,0.000027,0.000245,0.000008,0.000008,0.000277,0.090412,-0.000364,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000033,0.000027,0.000246,0.000000,0.000000,0.000271,0.090060,-0.000351,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000032,0.000027,0.000247,0.000000,0.000000,0.000265,0.089714,-0.000346,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000031,0.000026,0.000247,0.000000,0.000000,0.000260,0.089372,-0.000342,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000031,0.000026,0.000248,0.000000,0.000000,0.000255,0.089036,-0.000337,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000030,0.000025,0.000248,0.000000,0.000000,0.000250,0.088703,-0.000332,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000030,0.000025,0.000249,0.000000,0.000000,0.000245,0.088375,-0.000328,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000029,0.000025,0.000250,0.000000,0.000000,0.000241,0.088052,-0.000323,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000029,0.000024,0.000251,0.000000,0.000000,0.000236,0.087733,-0.000319,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000028,0.000024,0.000251,0.000000,0.000000,0.000232,0.087419,-0.000314,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000028,0.000024,0.000252,0.000000,0.000000,0.000228,0.087109,-0.000310,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000027,0.000023,0.000253,0.000000,0.000000,0.000225,0.086803,-0.000306,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000027,0.000023,0.000254,0.000000,0.000000,0.000221,0.086501,-0.000302,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000228,0.000026,0.000023,0.000254,0.000086,0.000086,0.000217,0.086120,-0.000382,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000229,0.000026,0.000022,0.000255,0.000324,0.000324,0.000213,0.085510,-0.000610,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000025,0.000021,0.000256,0.000489,0.000489,0.000209,0.084744,-0.000766,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000025,0.000020,0.000256,0.000585,0.000585,0.000205,0.083893,-0.000851,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000024,0.000019,0.000257,0.000657,0.000657,0.000200,0.082984,-0.000909,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000024,0.000019,0.000258,0.000604,0.000000,0.000195,0.082735,-0.000249,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000023,0.000019,0.000258,0.000552,0.000000,0.000191,0.082489,-0.000246,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000023,0.000019,0.000259,0.000505,0.000000,0.000187,0.082246,-0.000242,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000022,0.000018,0.000260,0.000429,0.000000,0.000183,0.082007,-0.000239,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000022,0.000018,0.000260,0.000303,0.000000,0.000179,0.081771,-0.000236,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000021,0.000018,0.000261,0.000164,0.000000,0.000176,0.081539,-0.000233,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000021,0.000018,0.000262,0.000016,0.000000,0.000173,0.081310,-0.000229,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000021,0.000017,0.000262,0.000000,0.000000,0.000169,0.081083,-0.000226,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000020,0.000017,0.000263,0.000000,0.000000,0.000166,0.080860,-0.000223,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000020,0.000017,0.000264,0.000000,0.000000,0.000163,0.080640,-0.000220,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000019,0.000017,0.000265,0.000000,0.000000,0.000161,0.080423,-0.000217,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000019,0.000016,0.000265,0.000000,0.000000,0.000158,0.080209,-0.000214,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000019,0.000016,0.000266,0.000000,0.000000,0.000155,0.079998,-0.000211,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000018,0.000016,0.000267,0.000000,0.000000,0.000153,0.079790,-0.000208,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000018,0.000016,0.000268,0.000000,0.000000,0.000150,0.079584,-0.000205,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000018,0.000016,0.000269,0.000000,0.000000,0.000148,0.079382,-0.000203,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000018,0.000015,0.000269,0.000000,0.000000,0.000145,0.079182,-0.000200,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000017,0.000015,0.000270,0.000000,0.000000,0.000143,0.078985,-0.000197,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000017,0.000015,0.000271,0.000000,0.000000,0.000141,0.078790,-0.000194,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000017,0.000015,0.000272,0.000095,0.000000,0.000139,0.078599,-0.000192,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620909.csv b/test/channel_loss/channel_forcing/et/cat-2620909.csv new file mode 100644 index 000000000..268fc1964 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620909.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001511,0.000649,0.001511,0.000151,0.000151,0.010735,0.418954,-0.005378,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001390,0.000640,0.001390,0.000033,0.000033,0.009985,0.413770,-0.005183,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001286,0.000630,0.001286,0.000000,0.000000,0.009330,0.408695,-0.005075,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001196,0.000621,0.001197,0.000000,0.000000,0.008755,0.403694,-0.005001,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001119,0.000612,0.001119,0.000000,0.000000,0.008248,0.398765,-0.004928,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001051,0.000603,0.001052,0.000000,0.000000,0.007800,0.393909,-0.004856,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000992,0.000594,0.000993,0.000000,0.000000,0.007403,0.389123,-0.004786,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000940,0.000586,0.000941,0.000000,0.000000,0.007049,0.384408,-0.004716,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000893,0.000577,0.000895,0.000000,0.000000,0.006733,0.379761,-0.004647,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000852,0.000569,0.000854,0.000000,0.000000,0.006449,0.375182,-0.004579,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000816,0.000561,0.000817,0.000000,0.000000,0.006194,0.370669,-0.004512,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000783,0.000552,0.000785,0.000000,0.000000,0.005963,0.366223,-0.004447,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000753,0.000544,0.000756,0.000000,0.000000,0.005755,0.361841,-0.004382,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000726,0.000536,0.000729,0.000000,0.000000,0.005565,0.357523,-0.004318,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000702,0.000528,0.000705,0.000119,0.000119,0.005391,0.353151,-0.004372,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000680,0.000520,0.000684,0.000351,0.000351,0.005232,0.348614,-0.004537,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000659,0.000511,0.000663,0.000511,0.000511,0.005084,0.343985,-0.004628,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000640,0.000503,0.000645,0.000621,0.000621,0.004947,0.339316,-0.004669,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000622,0.000495,0.000628,0.000550,0.000550,0.004819,0.334785,-0.004531,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000406,0.000000,0.000000,0.000000,0.000006,0.000606,0.000487,0.000612,0.000499,0.000499,0.004700,0.330770,-0.004015,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000425,0.000000,0.000000,0.000000,0.000007,0.000591,0.000480,0.000598,0.000459,0.000459,0.004590,0.326872,-0.003898,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000966,0.000021,0.000039,0.000021,0.000008,0.000577,0.000474,0.000606,0.000349,0.000349,0.004487,0.323635,-0.003238,1.000000,0.000018 +22,2022-08-01 22:00:00,0.000421,0.000010,0.000001,0.000010,0.000008,0.000564,0.000467,0.000582,0.000308,0.000308,0.004391,0.319984,-0.003651,1.000000,0.000008 +23,2022-08-01 23:00:00,0.000508,0.000013,0.000008,0.000013,0.000009,0.000551,0.000461,0.000573,0.000227,0.000227,0.004300,0.316545,-0.003439,1.000000,0.000004 +24,2022-08-02 00:00:00,0.000450,0.000008,0.000010,0.000008,0.000010,0.000540,0.000455,0.000557,0.000145,0.000145,0.004215,0.313180,-0.003365,1.000000,0.000006 +25,2022-08-02 01:00:00,0.001510,0.000111,0.000194,0.000111,0.000011,0.000529,0.000450,0.000651,0.000058,0.000058,0.004137,0.310812,-0.002368,1.000000,0.000089 +26,2022-08-02 02:00:00,0.002261,0.000290,0.000436,0.000290,0.000011,0.000519,0.000447,0.000821,0.000000,0.000000,0.004065,0.309036,-0.001775,1.000000,0.000235 +27,2022-08-02 03:00:00,0.002158,0.000368,0.000400,0.000368,0.000012,0.000510,0.000444,0.000891,0.000000,0.000000,0.003998,0.307222,-0.001815,1.000000,0.000267 +28,2022-08-02 04:00:00,0.002337,0.000441,0.000461,0.000441,0.000013,0.000502,0.000441,0.000956,0.000000,0.000000,0.003937,0.305549,-0.001672,1.000000,0.000287 +29,2022-08-02 05:00:00,0.001595,0.000321,0.000228,0.000321,0.000014,0.000494,0.000437,0.000829,0.000000,0.000000,0.003879,0.303399,-0.002150,1.000000,0.000195 +30,2022-08-02 06:00:00,0.001346,0.000240,0.000166,0.000240,0.000015,0.000487,0.000433,0.000742,0.000000,0.000000,0.003825,0.301097,-0.002302,1.000000,0.000120 +31,2022-08-02 07:00:00,0.000000,0.000087,0.000000,0.000087,0.000016,0.000480,0.000426,0.000583,0.000000,0.000000,0.003771,0.297666,-0.003432,1.000000,0.000033 +32,2022-08-02 08:00:00,0.000000,0.000033,0.000000,0.000033,0.000017,0.000473,0.000420,0.000523,0.000000,0.000000,0.003718,0.294284,-0.003382,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000466,0.000414,0.000483,0.000000,0.000000,0.003666,0.290951,-0.003332,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000459,0.000408,0.000478,0.000000,0.000000,0.003615,0.287667,-0.003284,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000452,0.000402,0.000472,0.000000,0.000000,0.003565,0.284431,-0.003236,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000446,0.000396,0.000466,0.000000,0.000000,0.003515,0.281243,-0.003189,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000228,0.000003,0.000005,0.000003,0.000022,0.000439,0.000391,0.000464,0.000000,0.000000,0.003467,0.278320,-0.002922,1.000000,0.000002 +38,2022-08-02 14:00:00,0.000252,0.000002,0.000002,0.000002,0.000023,0.000433,0.000385,0.000458,0.000115,0.000115,0.003419,0.275354,-0.002966,1.000000,0.000002 +39,2022-08-02 15:00:00,0.000212,0.000001,0.000000,0.000001,0.000024,0.000427,0.000379,0.000452,0.000309,0.000309,0.003372,0.272203,-0.003152,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000212,0.000000,0.000000,0.000000,0.000025,0.000420,0.000374,0.000446,0.000444,0.000444,0.003325,0.268964,-0.003239,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000252,0.000000,0.000000,0.000000,0.000026,0.000414,0.000368,0.000440,0.000533,0.000533,0.003278,0.265724,-0.003240,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000951,0.000006,0.000012,0.000006,0.000027,0.000408,0.000363,0.000442,0.000599,0.000599,0.003233,0.263143,-0.002581,1.000000,0.000005 +43,2022-08-02 19:00:00,0.000207,0.000003,0.000000,0.000003,0.000028,0.000402,0.000357,0.000434,0.000523,0.000523,0.003187,0.259953,-0.003190,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000099,0.000002,0.000000,0.000002,0.000029,0.000396,0.000351,0.000428,0.000498,0.000498,0.003142,0.256728,-0.003225,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000062,0.000000,0.000000,0.000000,0.000031,0.000390,0.000345,0.000421,0.000483,0.000483,0.003097,0.253529,-0.003199,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000062,0.000000,0.000000,0.000000,0.000032,0.000384,0.000339,0.000416,0.000424,0.000424,0.003052,0.250434,-0.003094,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000062,0.000000,0.000000,0.000000,0.000033,0.000379,0.000334,0.000412,0.000298,0.000298,0.003007,0.247509,-0.002925,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000062,0.000000,0.000000,0.000000,0.000034,0.000373,0.000329,0.000407,0.000159,0.000159,0.002963,0.244764,-0.002745,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000062,0.000000,0.000000,0.000000,0.000035,0.000367,0.000324,0.000403,0.000018,0.000018,0.002920,0.242197,-0.002566,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000062,0.000000,0.000000,0.000000,0.000037,0.000362,0.000320,0.000399,0.000000,0.000000,0.002878,0.239686,-0.002512,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000062,0.000000,0.000000,0.000000,0.000038,0.000356,0.000315,0.000395,0.000000,0.000000,0.002837,0.237211,-0.002475,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000062,0.000000,0.000000,0.000000,0.000039,0.000351,0.000311,0.000391,0.000000,0.000000,0.002797,0.234772,-0.002439,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000062,0.000000,0.000000,0.000000,0.000041,0.000346,0.000306,0.000387,0.000000,0.000000,0.002757,0.232369,-0.002403,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000065,0.000000,0.000000,0.000000,0.000042,0.000341,0.000302,0.000383,0.000000,0.000000,0.002718,0.230003,-0.002366,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000336,0.000297,0.000379,0.000000,0.000000,0.002680,0.227608,-0.002395,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000331,0.000293,0.000375,0.000000,0.000000,0.002642,0.225248,-0.002360,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000326,0.000289,0.000372,0.000000,0.000000,0.002605,0.222922,-0.002326,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000321,0.000285,0.000368,0.000000,0.000000,0.002568,0.220631,-0.002292,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000317,0.000281,0.000365,0.000000,0.000000,0.002532,0.218372,-0.002258,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000312,0.000276,0.000362,0.000000,0.000000,0.002496,0.216147,-0.002225,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000308,0.000272,0.000359,0.000000,0.000000,0.002461,0.213954,-0.002193,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000303,0.000268,0.000356,0.000118,0.000118,0.002426,0.211677,-0.002277,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000299,0.000264,0.000352,0.000366,0.000366,0.002391,0.209189,-0.002488,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000294,0.000259,0.000349,0.000524,0.000524,0.002356,0.206582,-0.002608,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000289,0.000254,0.000346,0.000619,0.000619,0.002321,0.203919,-0.002663,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000285,0.000249,0.000343,0.000603,0.000603,0.002285,0.201310,-0.002609,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000280,0.000245,0.000340,0.000532,0.000532,0.002249,0.198809,-0.002501,1.000000,0.000000 +68,2022-08-03 20:00:00,0.004317,0.000529,0.000962,0.000529,0.000061,0.000276,0.000246,0.000866,0.000487,0.000487,0.002219,0.199696,0.000887,1.000000,0.000433 +69,2022-08-03 21:00:00,0.000409,0.000240,0.000000,0.000240,0.000062,0.000273,0.000243,0.000575,0.000441,0.000441,0.002189,0.197711,-0.001985,1.000000,0.000192 +70,2022-08-03 22:00:00,0.000000,0.000192,0.000000,0.000192,0.000064,0.000269,0.000238,0.000525,0.000380,0.000380,0.002159,0.195413,-0.002298,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000065,0.000265,0.000234,0.000330,0.000280,0.000280,0.002128,0.193309,-0.002104,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000261,0.000231,0.000328,0.000172,0.000172,0.002098,0.191279,-0.002029,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000257,0.000227,0.000325,0.000028,0.000028,0.002069,0.189422,-0.001858,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000253,0.000224,0.000323,0.000000,0.000000,0.002039,0.187619,-0.001803,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000250,0.000221,0.000321,0.000000,0.000000,0.002010,0.185842,-0.001777,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000246,0.000217,0.000319,0.000000,0.000000,0.001982,0.184091,-0.001751,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000242,0.000214,0.000316,0.000000,0.000000,0.001954,0.182366,-0.001725,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000239,0.000211,0.000314,0.000000,0.000000,0.001926,0.180666,-0.001700,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000235,0.000208,0.000312,0.000000,0.000000,0.001899,0.178990,-0.001675,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000232,0.000205,0.000310,0.000000,0.000000,0.001872,0.177340,-0.001651,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000229,0.000202,0.000309,0.000000,0.000000,0.001845,0.175713,-0.001627,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000225,0.000199,0.000307,0.000000,0.000000,0.001819,0.174110,-0.001603,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000222,0.000196,0.000305,0.000000,0.000000,0.001793,0.172530,-0.001580,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000219,0.000193,0.000303,0.000000,0.000000,0.001768,0.170973,-0.001557,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000216,0.000191,0.000302,0.000000,0.000000,0.001743,0.169439,-0.001534,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000212,0.000188,0.000300,0.000112,0.000112,0.001718,0.167817,-0.001622,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000089,0.000209,0.000184,0.000298,0.000354,0.000354,0.001693,0.165983,-0.001834,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000206,0.000181,0.000297,0.000521,0.000521,0.001667,0.164008,-0.001975,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000203,0.000177,0.000295,0.000633,0.000633,0.001641,0.161952,-0.002056,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000199,0.000173,0.000293,0.000673,0.000673,0.001615,0.159887,-0.002065,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000196,0.000169,0.000291,0.000607,0.000607,0.001588,0.157916,-0.001971,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000193,0.000166,0.000289,0.000569,0.000569,0.001561,0.156012,-0.001904,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000189,0.000162,0.000287,0.000525,0.000525,0.001534,0.154179,-0.001833,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000186,0.000159,0.000286,0.000440,0.000440,0.001508,0.152456,-0.001722,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000183,0.000156,0.000284,0.000317,0.000317,0.001482,0.150880,-0.001576,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000179,0.000154,0.000282,0.000175,0.000175,0.001456,0.149467,-0.001413,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000176,0.000152,0.000280,0.000029,0.000029,0.001431,0.148218,-0.001249,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000173,0.000149,0.000279,0.000000,0.000000,0.001407,0.147016,-0.001202,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000170,0.000147,0.000278,0.000000,0.000000,0.001384,0.145832,-0.001185,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000168,0.000145,0.000276,0.000000,0.000000,0.001361,0.144664,-0.001167,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000165,0.000143,0.000275,0.000000,0.000000,0.001339,0.143514,-0.001150,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000162,0.000141,0.000274,0.000000,0.000000,0.001318,0.142381,-0.001133,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000160,0.000139,0.000273,0.000000,0.000000,0.001297,0.141264,-0.001117,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000157,0.000137,0.000272,0.000000,0.000000,0.001277,0.140163,-0.001101,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000155,0.000135,0.000271,0.000000,0.000000,0.001257,0.139079,-0.001085,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000152,0.000133,0.000270,0.000000,0.000000,0.001238,0.138010,-0.001069,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000150,0.000131,0.000269,0.000000,0.000000,0.001219,0.136957,-0.001053,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000147,0.000129,0.000268,0.000000,0.000000,0.001200,0.135919,-0.001038,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000145,0.000127,0.000267,0.000000,0.000000,0.001182,0.134896,-0.001023,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000143,0.000125,0.000267,0.000126,0.000126,0.001164,0.133764,-0.001132,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000141,0.000122,0.000266,0.000371,0.000371,0.001146,0.132407,-0.001357,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000138,0.000120,0.000265,0.000532,0.000532,0.001128,0.130911,-0.001496,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000136,0.000117,0.000264,0.000635,0.000635,0.001108,0.129336,-0.001575,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000134,0.000114,0.000263,0.000636,0.000636,0.001089,0.127782,-0.001554,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000063,0.000000,0.000000,0.000000,0.000131,0.000131,0.000111,0.000262,0.000588,0.000588,0.001069,0.126361,-0.001422,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000133,0.000129,0.000109,0.000261,0.000547,0.000547,0.001049,0.125001,-0.001360,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000134,0.000126,0.000107,0.000260,0.000471,0.000471,0.001030,0.123735,-0.001266,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000136,0.000124,0.000104,0.000259,0.000413,0.000413,0.001010,0.122545,-0.001190,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000208,0.000000,0.000000,0.000000,0.000137,0.000121,0.000103,0.000259,0.000293,0.000293,0.000992,0.121633,-0.000912,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000139,0.000119,0.000101,0.000258,0.000169,0.000169,0.000973,0.120715,-0.000919,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000616,0.000013,0.000024,0.000013,0.000140,0.000117,0.000100,0.000270,0.000047,0.000047,0.000957,0.120450,-0.000265,1.000000,0.000011 +122,2022-08-06 02:00:00,0.001555,0.000099,0.000168,0.000099,0.000142,0.000115,0.000102,0.000356,0.000000,0.000000,0.000943,0.121019,0.000570,1.000000,0.000081 +123,2022-08-06 03:00:00,0.000557,0.000060,0.000023,0.000060,0.000143,0.000114,0.000101,0.000317,0.000000,0.000000,0.000930,0.120740,-0.000279,1.000000,0.000044 +124,2022-08-06 04:00:00,0.000259,0.000042,0.000005,0.000042,0.000144,0.000112,0.000100,0.000299,0.000000,0.000000,0.000918,0.120189,-0.000551,1.000000,0.000007 +125,2022-08-06 05:00:00,0.000284,0.000009,0.000006,0.000009,0.000146,0.000111,0.000099,0.000266,0.000000,0.000000,0.000906,0.119670,-0.000519,1.000000,0.000004 +126,2022-08-06 06:00:00,0.000388,0.000009,0.000011,0.000009,0.000147,0.000109,0.000098,0.000266,0.000000,0.000000,0.000895,0.119256,-0.000414,1.000000,0.000006 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000149,0.000108,0.000097,0.000261,0.000000,0.000000,0.000884,0.118476,-0.000780,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000150,0.000107,0.000095,0.000259,0.000000,0.000000,0.000872,0.117708,-0.000768,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000105,0.000094,0.000257,0.000000,0.000000,0.000861,0.116951,-0.000757,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000104,0.000093,0.000257,0.000000,0.000000,0.000850,0.116205,-0.000746,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000102,0.000091,0.000257,0.000000,0.000000,0.000839,0.115470,-0.000735,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000101,0.000090,0.000257,0.000000,0.000000,0.000828,0.114745,-0.000724,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000100,0.000089,0.000257,0.000000,0.000000,0.000817,0.114031,-0.000714,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000098,0.000087,0.000257,0.000102,0.000102,0.000805,0.113227,-0.000804,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000097,0.000085,0.000257,0.000334,0.000334,0.000794,0.112207,-0.001020,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000095,0.000083,0.000257,0.000483,0.000483,0.000782,0.111054,-0.001153,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000094,0.000081,0.000257,0.000600,0.000600,0.000769,0.109803,-0.001251,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000092,0.000079,0.000257,0.000667,0.000667,0.000755,0.108503,-0.001299,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000090,0.000076,0.000256,0.000624,0.000624,0.000741,0.107266,-0.001238,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000089,0.000074,0.000256,0.000577,0.000577,0.000726,0.106092,-0.001173,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000087,0.000072,0.000255,0.000526,0.000526,0.000711,0.104986,-0.001106,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000085,0.000070,0.000255,0.000433,0.000433,0.000697,0.103988,-0.000998,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000083,0.000069,0.000255,0.000320,0.000320,0.000682,0.103116,-0.000872,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000081,0.000067,0.000254,0.000175,0.000175,0.000668,0.102399,-0.000717,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000080,0.000066,0.000254,0.000026,0.000026,0.000654,0.101840,-0.000559,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000078,0.000065,0.000254,0.000000,0.000000,0.000642,0.101314,-0.000526,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000077,0.000064,0.000254,0.000000,0.000000,0.000629,0.100796,-0.000518,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000075,0.000063,0.000253,0.000000,0.000000,0.000617,0.100286,-0.000510,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000074,0.000062,0.000253,0.000000,0.000000,0.000606,0.099783,-0.000503,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000072,0.000062,0.000253,0.000000,0.000000,0.000595,0.099287,-0.000496,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000071,0.000061,0.000253,0.000000,0.000000,0.000585,0.098799,-0.000488,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000070,0.000060,0.000254,0.000000,0.000000,0.000574,0.098317,-0.000481,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000069,0.000059,0.000254,0.000000,0.000000,0.000565,0.097843,-0.000474,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000068,0.000058,0.000254,0.000000,0.000000,0.000555,0.097376,-0.000467,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000066,0.000057,0.000254,0.000000,0.000000,0.000546,0.096915,-0.000461,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000065,0.000056,0.000254,0.000000,0.000000,0.000537,0.096462,-0.000454,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000064,0.000056,0.000254,0.000000,0.000000,0.000528,0.096014,-0.000447,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000063,0.000055,0.000255,0.000104,0.000104,0.000519,0.095471,-0.000543,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000062,0.000053,0.000255,0.000347,0.000347,0.000511,0.094696,-0.000775,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000061,0.000051,0.000255,0.000507,0.000507,0.000501,0.093775,-0.000921,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000060,0.000050,0.000255,0.000597,0.000597,0.000491,0.092779,-0.000996,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000058,0.000048,0.000255,0.000651,0.000651,0.000480,0.091743,-0.001035,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000057,0.000046,0.000255,0.000614,0.000614,0.000469,0.090760,-0.000983,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000056,0.000044,0.000255,0.000558,0.000558,0.000458,0.089847,-0.000913,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000054,0.000043,0.000254,0.000499,0.000499,0.000446,0.089004,-0.000843,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000053,0.000041,0.000254,0.000423,0.000423,0.000435,0.088249,-0.000755,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000051,0.000040,0.000254,0.000299,0.000299,0.000423,0.087627,-0.000622,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000050,0.000039,0.000254,0.000137,0.000137,0.000412,0.087174,-0.000453,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000049,0.000039,0.000254,0.000006,0.000006,0.000402,0.086857,-0.000317,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000048,0.000038,0.000254,0.000000,0.000000,0.000393,0.086550,-0.000307,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000047,0.000038,0.000254,0.000000,0.000000,0.000384,0.086247,-0.000303,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000046,0.000037,0.000254,0.000000,0.000000,0.000375,0.085949,-0.000298,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000045,0.000036,0.000255,0.000000,0.000000,0.000367,0.085655,-0.000294,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000044,0.000036,0.000255,0.000000,0.000000,0.000359,0.085365,-0.000290,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000043,0.000035,0.000255,0.000000,0.000000,0.000352,0.085080,-0.000285,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000042,0.000035,0.000255,0.000000,0.000000,0.000345,0.084799,-0.000281,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000041,0.000034,0.000256,0.000000,0.000000,0.000338,0.084522,-0.000277,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000040,0.000034,0.000256,0.000000,0.000000,0.000332,0.084249,-0.000273,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000040,0.000033,0.000257,0.000000,0.000000,0.000326,0.083980,-0.000269,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000039,0.000033,0.000257,0.000000,0.000000,0.000320,0.083715,-0.000265,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000038,0.000032,0.000257,0.000000,0.000000,0.000314,0.083453,-0.000261,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000003,0.000000,0.000000,0.000000,0.000220,0.000037,0.000032,0.000258,0.000087,0.000087,0.000309,0.083113,-0.000340,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000005,0.000000,0.000000,0.000000,0.000222,0.000037,0.000031,0.000258,0.000326,0.000326,0.000303,0.082544,-0.000569,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000003,0.000000,0.000000,0.000000,0.000223,0.000036,0.000029,0.000259,0.000496,0.000496,0.000296,0.081813,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000035,0.000028,0.000259,0.000593,0.000593,0.000289,0.080995,-0.000818,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000034,0.000026,0.000259,0.000666,0.000666,0.000281,0.080117,-0.000878,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000033,0.000025,0.000259,0.000604,0.000604,0.000273,0.079313,-0.000804,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000032,0.000023,0.000259,0.000553,0.000553,0.000264,0.078571,-0.000742,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000031,0.000022,0.000259,0.000516,0.000516,0.000256,0.077876,-0.000695,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000030,0.000021,0.000259,0.000435,0.000435,0.000247,0.077271,-0.000605,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000029,0.000020,0.000259,0.000305,0.000305,0.000238,0.076804,-0.000468,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000028,0.000020,0.000259,0.000163,0.000163,0.000230,0.076483,-0.000321,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000027,0.000019,0.000259,0.000014,0.000014,0.000222,0.076314,-0.000170,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000026,0.000019,0.000260,0.000000,0.000000,0.000215,0.076160,-0.000153,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000025,0.000019,0.000260,0.000000,0.000000,0.000209,0.076009,-0.000151,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000025,0.000018,0.000260,0.000000,0.000000,0.000203,0.075860,-0.000149,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000024,0.000018,0.000261,0.000000,0.000000,0.000197,0.075714,-0.000147,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000023,0.000018,0.000261,0.000000,0.000000,0.000192,0.075569,-0.000145,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000023,0.000018,0.000261,0.000000,0.000000,0.000187,0.075427,-0.000142,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000022,0.000017,0.000262,0.000000,0.000000,0.000182,0.075286,-0.000140,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000022,0.000017,0.000262,0.000000,0.000000,0.000178,0.075148,-0.000138,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000021,0.000017,0.000263,0.000000,0.000000,0.000174,0.075012,-0.000136,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000021,0.000017,0.000263,0.000000,0.000000,0.000170,0.074877,-0.000134,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000020,0.000016,0.000264,0.000000,0.000000,0.000166,0.074745,-0.000132,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000020,0.000016,0.000264,0.000000,0.000000,0.000163,0.074615,-0.000130,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000019,0.000016,0.000265,0.000095,0.000000,0.000159,0.074486,-0.000129,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620910.csv b/test/channel_loss/channel_forcing/et/cat-2620910.csv new file mode 100644 index 000000000..ddec38f3d --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620910.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001564,0.001031,0.001564,0.000145,0.000145,0.011061,0.421367,-0.005825,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001487,0.001015,0.001487,0.000030,0.000030,0.010589,0.415745,-0.005622,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001419,0.001000,0.001419,0.000000,0.000000,0.010170,0.410238,-0.005507,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001359,0.000984,0.001360,0.000000,0.000000,0.009795,0.404815,-0.005423,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001306,0.000969,0.001306,0.000000,0.000000,0.009458,0.399475,-0.005340,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001259,0.000954,0.001259,0.000000,0.000000,0.009154,0.394216,-0.005258,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001216,0.000940,0.001216,0.000000,0.000000,0.008878,0.389038,-0.005178,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001177,0.000926,0.001178,0.000000,0.000000,0.008626,0.383940,-0.005099,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001142,0.000911,0.001143,0.000000,0.000000,0.008396,0.378919,-0.005021,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001109,0.000897,0.001111,0.000000,0.000000,0.008184,0.373975,-0.004944,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001080,0.000884,0.001082,0.000000,0.000000,0.007988,0.369107,-0.004868,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.001052,0.000870,0.001054,0.000000,0.000000,0.007806,0.364313,-0.004794,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001027,0.000857,0.001029,0.000000,0.000000,0.007636,0.359593,-0.004720,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.001003,0.000844,0.001006,0.000000,0.000000,0.007477,0.354945,-0.004648,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000981,0.000831,0.000984,0.000115,0.000115,0.007326,0.350254,-0.004691,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000960,0.000817,0.000964,0.000339,0.000339,0.007184,0.345415,-0.004839,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000940,0.000803,0.000944,0.000495,0.000495,0.007047,0.340496,-0.004919,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000920,0.000789,0.000925,0.000597,0.000597,0.006916,0.335552,-0.004944,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000902,0.000776,0.000908,0.000532,0.000532,0.006789,0.330748,-0.004804,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000450,0.000000,0.000000,0.000000,0.000006,0.000884,0.000764,0.000891,0.000473,0.000473,0.006669,0.326518,-0.004230,1.000000,0.000000 +20,2022-08-01 20:00:00,0.000463,0.000000,0.000000,0.000000,0.000007,0.000868,0.000752,0.000875,0.000443,0.000443,0.006553,0.322396,-0.004123,1.000000,0.000000 +21,2022-08-01 21:00:00,0.000927,0.000012,0.000021,0.000012,0.000008,0.000852,0.000742,0.000871,0.000349,0.000349,0.006443,0.318865,-0.003531,1.000000,0.000010 +22,2022-08-01 22:00:00,0.000479,0.000006,0.000002,0.000006,0.000008,0.000836,0.000731,0.000851,0.000301,0.000301,0.006338,0.315012,-0.003852,1.000000,0.000005 +23,2022-08-01 23:00:00,0.000603,0.000010,0.000009,0.000010,0.000009,0.000822,0.000721,0.000841,0.000220,0.000220,0.006237,0.311414,-0.003598,1.000000,0.000005 +24,2022-08-02 00:00:00,0.000564,0.000009,0.000011,0.000009,0.000010,0.000808,0.000711,0.000827,0.000141,0.000141,0.006140,0.307909,-0.003506,1.000000,0.000007 +25,2022-08-02 01:00:00,0.001789,0.000101,0.000174,0.000101,0.000011,0.000795,0.000705,0.000906,0.000056,0.000056,0.006049,0.305587,-0.002322,1.000000,0.000081 +26,2022-08-02 02:00:00,0.002549,0.000243,0.000359,0.000243,0.000011,0.000783,0.000700,0.001038,0.000000,0.000000,0.005966,0.303922,-0.001665,1.000000,0.000196 +27,2022-08-02 03:00:00,0.002484,0.000312,0.000341,0.000312,0.000012,0.000772,0.000695,0.001097,0.000000,0.000000,0.005889,0.302236,-0.001686,1.000000,0.000225 +28,2022-08-02 04:00:00,0.002509,0.000348,0.000346,0.000348,0.000013,0.000762,0.000690,0.001123,0.000000,0.000000,0.005817,0.300594,-0.001642,1.000000,0.000224 +29,2022-08-02 05:00:00,0.001874,0.000265,0.000200,0.000265,0.000014,0.000752,0.000685,0.001031,0.000000,0.000000,0.005749,0.298497,-0.002097,1.000000,0.000159 +30,2022-08-02 06:00:00,0.001605,0.000201,0.000148,0.000201,0.000015,0.000743,0.000678,0.000959,0.000000,0.000000,0.005684,0.296218,-0.002279,1.000000,0.000107 +31,2022-08-02 07:00:00,0.000000,0.000077,0.000000,0.000077,0.000016,0.000734,0.000668,0.000827,0.000000,0.000000,0.005618,0.292539,-0.003679,1.000000,0.000030 +32,2022-08-02 08:00:00,0.000000,0.000030,0.000000,0.000030,0.000017,0.000724,0.000658,0.000771,0.000000,0.000000,0.005551,0.288917,-0.003622,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000715,0.000647,0.000733,0.000000,0.000000,0.005484,0.285350,-0.003567,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000705,0.000638,0.000724,0.000000,0.000000,0.005416,0.281838,-0.003512,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000696,0.000628,0.000716,0.000000,0.000000,0.005348,0.278379,-0.003459,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000686,0.000618,0.000707,0.000000,0.000000,0.005279,0.274973,-0.003406,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000184,0.000001,0.000002,0.000001,0.000022,0.000677,0.000609,0.000700,0.000000,0.000000,0.005212,0.271799,-0.003175,1.000000,0.000001 +38,2022-08-02 14:00:00,0.000200,0.000001,0.000000,0.000001,0.000023,0.000668,0.000600,0.000691,0.000113,0.000113,0.005144,0.268579,-0.003220,1.000000,0.000001 +39,2022-08-02 15:00:00,0.000197,0.000001,0.000000,0.000001,0.000024,0.000658,0.000591,0.000683,0.000302,0.000302,0.005077,0.265219,-0.003359,1.000000,0.000000 +40,2022-08-02 16:00:00,0.000197,0.000000,0.000000,0.000000,0.000025,0.000649,0.000581,0.000674,0.000434,0.000434,0.005009,0.261781,-0.003438,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000200,0.000000,0.000000,0.000000,0.000026,0.000639,0.000571,0.000666,0.000522,0.000522,0.004941,0.258311,-0.003469,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000803,0.000002,0.000003,0.000002,0.000027,0.000630,0.000563,0.000659,0.000579,0.000579,0.004874,0.255431,-0.002880,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000152,0.000001,0.000000,0.000001,0.000028,0.000621,0.000553,0.000650,0.000515,0.000515,0.004807,0.252018,-0.003413,1.000000,0.000001 +44,2022-08-02 20:00:00,0.000036,0.000001,0.000000,0.000001,0.000030,0.000611,0.000544,0.000642,0.000481,0.000481,0.004739,0.248577,-0.003441,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000036,0.000000,0.000000,0.000000,0.000031,0.000602,0.000534,0.000633,0.000471,0.000471,0.004671,0.245198,-0.003379,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000036,0.000000,0.000000,0.000000,0.000032,0.000593,0.000525,0.000625,0.000409,0.000409,0.004604,0.241933,-0.003266,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000036,0.000000,0.000000,0.000000,0.000033,0.000584,0.000516,0.000617,0.000286,0.000286,0.004536,0.238838,-0.003095,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000036,0.000000,0.000000,0.000000,0.000034,0.000575,0.000508,0.000609,0.000152,0.000152,0.004470,0.235922,-0.002915,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000036,0.000000,0.000000,0.000000,0.000036,0.000566,0.000500,0.000601,0.000015,0.000015,0.004405,0.233186,-0.002736,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000036,0.000000,0.000000,0.000000,0.000037,0.000557,0.000493,0.000594,0.000000,0.000000,0.004341,0.230507,-0.002679,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000036,0.000000,0.000000,0.000000,0.000038,0.000548,0.000485,0.000587,0.000000,0.000000,0.004278,0.227869,-0.002638,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000036,0.000000,0.000000,0.000000,0.000040,0.000540,0.000478,0.000579,0.000000,0.000000,0.004216,0.225271,-0.002598,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000036,0.000000,0.000000,0.000000,0.000041,0.000532,0.000471,0.000573,0.000000,0.000000,0.004155,0.222712,-0.002558,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000036,0.000000,0.000000,0.000000,0.000042,0.000524,0.000464,0.000566,0.000000,0.000000,0.004095,0.220193,-0.002519,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000516,0.000457,0.000559,0.000000,0.000000,0.004036,0.217678,-0.002516,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000508,0.000450,0.000552,0.000000,0.000000,0.003978,0.215201,-0.002477,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000500,0.000443,0.000546,0.000000,0.000000,0.003921,0.212762,-0.002439,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000492,0.000436,0.000540,0.000000,0.000000,0.003864,0.210360,-0.002402,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000485,0.000429,0.000534,0.000000,0.000000,0.003809,0.207995,-0.002365,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000478,0.000423,0.000528,0.000000,0.000000,0.003754,0.205666,-0.002329,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000470,0.000416,0.000522,0.000000,0.000000,0.003700,0.203372,-0.002293,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000463,0.000410,0.000516,0.000113,0.000113,0.003646,0.201003,-0.002369,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000456,0.000402,0.000510,0.000350,0.000350,0.003592,0.198436,-0.002567,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000449,0.000395,0.000504,0.000503,0.000503,0.003538,0.195758,-0.002678,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000442,0.000387,0.000499,0.000596,0.000596,0.003484,0.193029,-0.002729,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000434,0.000380,0.000493,0.000583,0.000583,0.003429,0.190355,-0.002674,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000427,0.000372,0.000487,0.000515,0.000515,0.003374,0.187789,-0.002567,1.000000,0.000000 +68,2022-08-03 20:00:00,0.003162,0.000184,0.000335,0.000184,0.000061,0.000421,0.000373,0.000666,0.000472,0.000472,0.003327,0.188088,0.000299,1.000000,0.000151 +69,2022-08-03 21:00:00,0.000306,0.000084,0.000000,0.000084,0.000063,0.000415,0.000367,0.000561,0.000431,0.000431,0.003279,0.185941,-0.002147,1.000000,0.000067 +70,2022-08-03 22:00:00,0.000000,0.000067,0.000000,0.000067,0.000064,0.000408,0.000360,0.000539,0.000368,0.000368,0.003231,0.183586,-0.002354,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000066,0.000402,0.000354,0.000467,0.000271,0.000271,0.003184,0.181427,-0.002160,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000396,0.000349,0.000463,0.000164,0.000164,0.003137,0.179343,-0.002084,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000390,0.000343,0.000458,0.000025,0.000025,0.003090,0.177428,-0.001915,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000384,0.000338,0.000453,0.000000,0.000000,0.003045,0.175567,-0.001861,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000378,0.000333,0.000449,0.000000,0.000000,0.003000,0.173734,-0.001833,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000372,0.000328,0.000445,0.000000,0.000000,0.002955,0.171929,-0.001805,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000366,0.000323,0.000440,0.000000,0.000000,0.002912,0.170152,-0.001777,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000361,0.000318,0.000436,0.000000,0.000000,0.002869,0.168402,-0.001750,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000355,0.000313,0.000432,0.000000,0.000000,0.002827,0.166679,-0.001723,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000350,0.000308,0.000428,0.000000,0.000000,0.002785,0.164982,-0.001697,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000344,0.000303,0.000424,0.000000,0.000000,0.002744,0.163311,-0.001671,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000339,0.000299,0.000421,0.000000,0.000000,0.002704,0.161666,-0.001645,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000334,0.000294,0.000417,0.000000,0.000000,0.002664,0.160046,-0.001620,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000329,0.000290,0.000413,0.000000,0.000000,0.002625,0.158450,-0.001595,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000324,0.000285,0.000410,0.000000,0.000000,0.002586,0.156879,-0.001571,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000319,0.000280,0.000406,0.000109,0.000109,0.002548,0.155225,-0.001654,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000001,0.000000,0.000000,0.000000,0.000089,0.000314,0.000275,0.000403,0.000343,0.000343,0.002509,0.153367,-0.001858,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000309,0.000270,0.000399,0.000504,0.000504,0.002470,0.151378,-0.001990,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000304,0.000264,0.000396,0.000609,0.000609,0.002430,0.149315,-0.002062,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000298,0.000258,0.000392,0.000648,0.000648,0.002390,0.147246,-0.002069,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000293,0.000252,0.000388,0.000588,0.000588,0.002349,0.145267,-0.001979,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000288,0.000247,0.000384,0.000555,0.000555,0.002308,0.143351,-0.001916,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000283,0.000242,0.000381,0.000514,0.000514,0.002268,0.141505,-0.001846,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000277,0.000237,0.000377,0.000428,0.000428,0.002227,0.139771,-0.001733,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000272,0.000232,0.000373,0.000306,0.000306,0.002187,0.138185,-0.001586,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000267,0.000228,0.000370,0.000169,0.000169,0.002148,0.136757,-0.001428,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000263,0.000225,0.000367,0.000027,0.000027,0.002111,0.135492,-0.001266,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000258,0.000221,0.000363,0.000000,0.000000,0.002074,0.134272,-0.001220,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000253,0.000218,0.000360,0.000000,0.000000,0.002039,0.133071,-0.001201,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000249,0.000215,0.000358,0.000000,0.000000,0.002005,0.131888,-0.001183,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000245,0.000211,0.000355,0.000000,0.000000,0.001971,0.130724,-0.001165,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000241,0.000208,0.000352,0.000000,0.000000,0.001939,0.129577,-0.001147,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000237,0.000205,0.000350,0.000000,0.000000,0.001907,0.128448,-0.001129,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000233,0.000202,0.000347,0.000000,0.000000,0.001877,0.127336,-0.001112,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000229,0.000199,0.000345,0.000000,0.000000,0.001846,0.126241,-0.001095,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000225,0.000196,0.000343,0.000000,0.000000,0.001817,0.125162,-0.001078,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000221,0.000193,0.000340,0.000000,0.000000,0.001788,0.124101,-0.001062,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000218,0.000190,0.000338,0.000000,0.000000,0.001760,0.123055,-0.001045,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000214,0.000187,0.000336,0.000000,0.000000,0.001733,0.122026,-0.001029,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000211,0.000184,0.000334,0.000122,0.000122,0.001705,0.120892,-0.001134,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000207,0.000180,0.000332,0.000354,0.000354,0.001678,0.119547,-0.001345,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000204,0.000176,0.000330,0.000511,0.000511,0.001650,0.118068,-0.001479,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000200,0.000171,0.000328,0.000608,0.000608,0.001621,0.116517,-0.001552,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000197,0.000167,0.000326,0.000618,0.000618,0.001591,0.114978,-0.001538,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000066,0.000000,0.000000,0.000000,0.000131,0.000193,0.000163,0.000324,0.000575,0.000575,0.001562,0.113572,-0.001406,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000066,0.000000,0.000000,0.000000,0.000132,0.000189,0.000159,0.000321,0.000526,0.000526,0.001532,0.112235,-0.001337,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000066,0.000000,0.000000,0.000000,0.000134,0.000185,0.000156,0.000319,0.000455,0.000455,0.001502,0.110989,-0.001247,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000066,0.000000,0.000000,0.000000,0.000135,0.000182,0.000152,0.000317,0.000395,0.000395,0.001473,0.109820,-0.001169,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000194,0.000000,0.000000,0.000000,0.000137,0.000178,0.000150,0.000315,0.000281,0.000281,0.001445,0.108907,-0.000914,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000066,0.000000,0.000000,0.000000,0.000138,0.000175,0.000147,0.000313,0.000159,0.000159,0.001418,0.108002,-0.000905,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000606,0.000008,0.000014,0.000008,0.000140,0.000172,0.000147,0.000319,0.000045,0.000045,0.001393,0.107741,-0.000261,1.000000,0.000007 +122,2022-08-06 02:00:00,0.001404,0.000052,0.000087,0.000052,0.000141,0.000169,0.000148,0.000362,0.000000,0.000000,0.001372,0.108243,0.000502,1.000000,0.000042 +123,2022-08-06 03:00:00,0.000735,0.000038,0.000025,0.000038,0.000142,0.000167,0.000148,0.000347,0.000000,0.000000,0.001353,0.108139,-0.000104,1.000000,0.000029 +124,2022-08-06 04:00:00,0.000417,0.000028,0.000008,0.000028,0.000144,0.000164,0.000147,0.000336,0.000000,0.000000,0.001335,0.107741,-0.000398,1.000000,0.000009 +125,2022-08-06 05:00:00,0.000413,0.000011,0.000008,0.000011,0.000145,0.000162,0.000145,0.000319,0.000000,0.000000,0.001319,0.107344,-0.000396,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000497,0.000010,0.000011,0.000010,0.000147,0.000160,0.000145,0.000317,0.000000,0.000000,0.001303,0.107033,-0.000311,1.000000,0.000007 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000148,0.000158,0.000142,0.000311,0.000000,0.000000,0.001287,0.106249,-0.000784,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000150,0.000156,0.000140,0.000308,0.000000,0.000000,0.001271,0.105476,-0.000772,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000154,0.000138,0.000305,0.000000,0.000000,0.001255,0.104716,-0.000761,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000152,0.000136,0.000305,0.000000,0.000000,0.001238,0.103967,-0.000749,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000150,0.000134,0.000304,0.000000,0.000000,0.001222,0.103230,-0.000737,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000148,0.000132,0.000303,0.000000,0.000000,0.001206,0.102503,-0.000726,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000146,0.000130,0.000303,0.000000,0.000000,0.001190,0.101788,-0.000715,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000144,0.000128,0.000302,0.000100,0.000100,0.001173,0.100986,-0.000802,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000142,0.000125,0.000301,0.000323,0.000323,0.001156,0.099976,-0.001010,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000140,0.000121,0.000300,0.000469,0.000469,0.001138,0.098838,-0.001138,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000137,0.000118,0.000299,0.000578,0.000578,0.001119,0.097610,-0.001228,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000135,0.000114,0.000298,0.000640,0.000640,0.001098,0.096340,-0.001270,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000132,0.000111,0.000297,0.000597,0.000597,0.001077,0.095131,-0.001209,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000129,0.000108,0.000296,0.000551,0.000551,0.001056,0.093987,-0.001145,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000127,0.000105,0.000294,0.000510,0.000510,0.001034,0.092900,-0.001087,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000124,0.000102,0.000293,0.000427,0.000427,0.001012,0.091912,-0.000988,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000121,0.000100,0.000292,0.000307,0.000307,0.000990,0.091056,-0.000856,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000119,0.000098,0.000290,0.000167,0.000167,0.000969,0.090352,-0.000704,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000116,0.000096,0.000289,0.000023,0.000023,0.000949,0.089800,-0.000552,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000114,0.000095,0.000288,0.000000,0.000000,0.000929,0.089279,-0.000521,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000111,0.000093,0.000287,0.000000,0.000000,0.000911,0.088766,-0.000513,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000109,0.000092,0.000286,0.000000,0.000000,0.000893,0.088261,-0.000505,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000107,0.000090,0.000285,0.000000,0.000000,0.000877,0.087764,-0.000497,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000105,0.000089,0.000285,0.000000,0.000000,0.000860,0.087275,-0.000490,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000103,0.000088,0.000284,0.000000,0.000000,0.000844,0.086793,-0.000482,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000101,0.000086,0.000284,0.000000,0.000000,0.000829,0.086318,-0.000475,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000100,0.000085,0.000283,0.000000,0.000000,0.000815,0.085851,-0.000467,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000098,0.000084,0.000283,0.000000,0.000000,0.000800,0.085390,-0.000460,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000096,0.000082,0.000282,0.000000,0.000000,0.000787,0.084937,-0.000453,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000094,0.000081,0.000282,0.000000,0.000000,0.000773,0.084491,-0.000446,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000093,0.000080,0.000281,0.000000,0.000000,0.000760,0.084051,-0.000439,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000091,0.000078,0.000281,0.000100,0.000100,0.000747,0.083520,-0.000531,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000090,0.000076,0.000281,0.000331,0.000331,0.000734,0.082770,-0.000750,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000088,0.000074,0.000280,0.000489,0.000489,0.000720,0.081875,-0.000895,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000086,0.000071,0.000280,0.000577,0.000577,0.000705,0.080907,-0.000968,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000084,0.000068,0.000279,0.000633,0.000633,0.000689,0.079899,-0.001008,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000082,0.000065,0.000278,0.000594,0.000594,0.000672,0.078945,-0.000954,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000080,0.000063,0.000277,0.000541,0.000541,0.000655,0.078058,-0.000887,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000078,0.000061,0.000276,0.000486,0.000486,0.000638,0.077238,-0.000819,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000076,0.000058,0.000275,0.000411,0.000411,0.000621,0.076505,-0.000734,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000074,0.000057,0.000274,0.000289,0.000289,0.000604,0.075903,-0.000602,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000072,0.000056,0.000274,0.000130,0.000130,0.000588,0.075467,-0.000436,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000070,0.000055,0.000273,0.000003,0.000003,0.000573,0.075163,-0.000304,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000068,0.000054,0.000272,0.000000,0.000000,0.000559,0.074866,-0.000297,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000066,0.000053,0.000272,0.000000,0.000000,0.000545,0.074574,-0.000292,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000065,0.000052,0.000272,0.000000,0.000000,0.000533,0.074286,-0.000288,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000063,0.000051,0.000271,0.000000,0.000000,0.000521,0.074002,-0.000283,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000062,0.000051,0.000271,0.000000,0.000000,0.000509,0.073723,-0.000279,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000061,0.000050,0.000271,0.000000,0.000000,0.000499,0.073449,-0.000275,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000059,0.000049,0.000271,0.000000,0.000000,0.000488,0.073178,-0.000271,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000058,0.000048,0.000271,0.000000,0.000000,0.000479,0.072912,-0.000266,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000057,0.000048,0.000271,0.000000,0.000000,0.000469,0.072649,-0.000262,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000056,0.000047,0.000271,0.000000,0.000000,0.000460,0.072391,-0.000258,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000055,0.000046,0.000271,0.000000,0.000000,0.000451,0.072137,-0.000254,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000054,0.000045,0.000271,0.000000,0.000000,0.000443,0.071886,-0.000250,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000002,0.000000,0.000000,0.000000,0.000218,0.000053,0.000045,0.000271,0.000083,0.000002,0.000435,0.071640,-0.000247,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000003,0.000000,0.000000,0.000000,0.000219,0.000052,0.000044,0.000271,0.000312,0.000003,0.000427,0.071397,-0.000243,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000002,0.000000,0.000000,0.000000,0.000220,0.000051,0.000043,0.000271,0.000474,0.000002,0.000420,0.071158,-0.000239,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000050,0.000043,0.000272,0.000574,0.000000,0.000412,0.070922,-0.000235,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000049,0.000042,0.000272,0.000640,0.000000,0.000405,0.070690,-0.000232,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000048,0.000041,0.000272,0.000586,0.000000,0.000398,0.070462,-0.000228,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000048,0.000041,0.000272,0.000536,0.000000,0.000391,0.070237,-0.000225,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000047,0.000040,0.000272,0.000504,0.000000,0.000385,0.070016,-0.000221,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000046,0.000040,0.000273,0.000422,0.000000,0.000378,0.069798,-0.000218,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000045,0.000039,0.000273,0.000292,0.000000,0.000372,0.069583,-0.000215,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000044,0.000038,0.000273,0.000155,0.000000,0.000366,0.069371,-0.000211,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000044,0.000038,0.000274,0.000012,0.000000,0.000360,0.069163,-0.000208,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000043,0.000037,0.000274,0.000000,0.000000,0.000354,0.068958,-0.000205,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000042,0.000037,0.000274,0.000000,0.000000,0.000349,0.068756,-0.000202,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000042,0.000036,0.000275,0.000000,0.000000,0.000343,0.068558,-0.000199,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000041,0.000036,0.000275,0.000000,0.000000,0.000338,0.068362,-0.000196,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000040,0.000035,0.000275,0.000000,0.000000,0.000332,0.068169,-0.000193,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000040,0.000034,0.000276,0.000000,0.000000,0.000327,0.067979,-0.000190,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000039,0.000034,0.000276,0.000000,0.000000,0.000322,0.067793,-0.000187,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000038,0.000033,0.000276,0.000000,0.000000,0.000317,0.067609,-0.000184,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000038,0.000033,0.000277,0.000000,0.000000,0.000312,0.067427,-0.000181,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000037,0.000032,0.000277,0.000000,0.000000,0.000307,0.067249,-0.000178,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000037,0.000032,0.000277,0.000000,0.000000,0.000302,0.067073,-0.000176,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000036,0.000031,0.000278,0.000000,0.000000,0.000298,0.066900,-0.000173,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000036,0.000031,0.000278,0.000092,0.000000,0.000293,0.066730,-0.000170,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620911.csv b/test/channel_loss/channel_forcing/et/cat-2620911.csv new file mode 100644 index 000000000..dfd4580c6 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620911.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001471,0.000364,0.001471,0.000146,0.000146,0.010490,0.421832,-0.005118,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001318,0.000359,0.001318,0.000029,0.000029,0.009532,0.416900,-0.004932,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001188,0.000354,0.001188,0.000000,0.000000,0.008698,0.412063,-0.004837,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001077,0.000349,0.001077,0.000000,0.000000,0.007971,0.407292,-0.004771,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000982,0.000345,0.000982,0.000000,0.000000,0.007334,0.402586,-0.004706,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000900,0.000340,0.000900,0.000000,0.000000,0.006774,0.397945,-0.004642,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000828,0.000335,0.000829,0.000000,0.000000,0.006281,0.393366,-0.004578,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000766,0.000331,0.000767,0.000000,0.000000,0.005846,0.388850,-0.004516,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000712,0.000326,0.000713,0.000000,0.000000,0.005461,0.384396,-0.004455,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000664,0.000322,0.000665,0.000000,0.000000,0.005119,0.380002,-0.004394,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000622,0.000317,0.000623,0.000000,0.000000,0.004814,0.375668,-0.004334,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000584,0.000313,0.000587,0.000000,0.000000,0.004543,0.371393,-0.004275,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000551,0.000309,0.000554,0.000000,0.000000,0.004301,0.367176,-0.004217,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000522,0.000305,0.000525,0.000000,0.000000,0.004083,0.363017,-0.004159,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000496,0.000300,0.000499,0.000115,0.000115,0.003888,0.358801,-0.004216,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000472,0.000296,0.000476,0.000342,0.000342,0.003712,0.354419,-0.004382,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000451,0.000291,0.000455,0.000503,0.000503,0.003553,0.349937,-0.004482,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000431,0.000287,0.000437,0.000594,0.000594,0.003408,0.345426,-0.004511,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000414,0.000282,0.000420,0.000524,0.000524,0.003277,0.341047,-0.004379,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000645,0.000003,0.000005,0.000003,0.000006,0.000398,0.000279,0.000407,0.000486,0.000486,0.003157,0.337396,-0.003651,1.000000,0.000002 +20,2022-08-01 20:00:00,0.000953,0.000027,0.000047,0.000027,0.000007,0.000384,0.000275,0.000418,0.000440,0.000440,0.003048,0.334102,-0.003294,1.000000,0.000022 +21,2022-08-01 21:00:00,0.001396,0.000109,0.000175,0.000109,0.000008,0.000371,0.000272,0.000488,0.000357,0.000357,0.002950,0.331245,-0.002857,1.000000,0.000088 +22,2022-08-01 22:00:00,0.001030,0.000103,0.000091,0.000103,0.000008,0.000359,0.000269,0.000471,0.000301,0.000301,0.002860,0.328205,-0.003040,1.000000,0.000076 +23,2022-08-01 23:00:00,0.001139,0.000135,0.000140,0.000135,0.000009,0.000349,0.000267,0.000493,0.000214,0.000214,0.002778,0.325350,-0.002855,1.000000,0.000081 +24,2022-08-02 00:00:00,0.001141,0.000143,0.000162,0.000143,0.000010,0.000339,0.000264,0.000491,0.000138,0.000138,0.002703,0.322590,-0.002760,1.000000,0.000101 +25,2022-08-02 01:00:00,0.002613,0.000531,0.000841,0.000531,0.000011,0.000330,0.000262,0.000872,0.000054,0.000054,0.002635,0.320733,-0.001858,1.000000,0.000411 +26,2022-08-02 02:00:00,0.002800,0.000779,0.000975,0.000779,0.000012,0.000322,0.000260,0.001112,0.000000,0.000000,0.002573,0.319007,-0.001726,1.000000,0.000607 +27,2022-08-02 03:00:00,0.002694,0.000914,0.000913,0.000914,0.000012,0.000315,0.000258,0.001241,0.000000,0.000000,0.002516,0.317262,-0.001745,1.000000,0.000606 +28,2022-08-02 04:00:00,0.002799,0.000956,0.000970,0.000956,0.000013,0.000308,0.000257,0.001278,0.000000,0.000000,0.002465,0.315586,-0.001675,1.000000,0.000619 +29,2022-08-02 05:00:00,0.002409,0.000839,0.000754,0.000839,0.000014,0.000302,0.000255,0.001155,0.000000,0.000000,0.002418,0.313763,-0.001823,1.000000,0.000533 +30,2022-08-02 06:00:00,0.002227,0.000744,0.000658,0.000744,0.000015,0.000296,0.000253,0.001056,0.000000,0.000000,0.002374,0.311880,-0.001884,1.000000,0.000447 +31,2022-08-02 07:00:00,0.000000,0.000315,0.000000,0.000315,0.000016,0.000291,0.000249,0.000622,0.000000,0.000000,0.002333,0.308474,-0.003406,1.000000,0.000132 +32,2022-08-02 08:00:00,0.000000,0.000132,0.000000,0.000132,0.000017,0.000286,0.000246,0.000434,0.000000,0.000000,0.002293,0.305114,-0.003359,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000281,0.000243,0.000299,0.000000,0.000000,0.002255,0.301800,-0.003314,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000276,0.000239,0.000295,0.000000,0.000000,0.002218,0.298532,-0.003269,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000272,0.000236,0.000292,0.000000,0.000000,0.002183,0.295308,-0.003224,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000267,0.000233,0.000288,0.000000,0.000000,0.002148,0.292128,-0.003180,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000300,0.000008,0.000015,0.000008,0.000022,0.000263,0.000230,0.000294,0.000000,0.000000,0.002115,0.289272,-0.002856,1.000000,0.000007 +38,2022-08-02 14:00:00,0.000300,0.000007,0.000006,0.000007,0.000023,0.000259,0.000227,0.000289,0.000113,0.000113,0.002083,0.286352,-0.002920,1.000000,0.000006 +39,2022-08-02 15:00:00,0.000196,0.000005,0.000000,0.000005,0.000024,0.000255,0.000224,0.000284,0.000301,0.000301,0.002052,0.283190,-0.003162,1.000000,0.000001 +40,2022-08-02 16:00:00,0.000173,0.000001,0.000000,0.000001,0.000025,0.000251,0.000221,0.000278,0.000435,0.000435,0.002022,0.279917,-0.003273,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000189,0.000000,0.000000,0.000000,0.000027,0.000247,0.000217,0.000274,0.000525,0.000525,0.001992,0.276615,-0.003301,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000447,0.000000,0.000000,0.000000,0.000028,0.000244,0.000214,0.000271,0.000571,0.000571,0.001962,0.273568,-0.003047,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000084,0.000000,0.000000,0.000000,0.000029,0.000240,0.000211,0.000269,0.000519,0.000519,0.001933,0.270255,-0.003313,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000063,0.000000,0.000000,0.000000,0.000030,0.000236,0.000208,0.000266,0.000483,0.000483,0.001905,0.267002,-0.003253,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000063,0.000000,0.000000,0.000000,0.000031,0.000233,0.000204,0.000264,0.000486,0.000486,0.001876,0.263791,-0.003211,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000063,0.000000,0.000000,0.000000,0.000033,0.000229,0.000201,0.000262,0.000418,0.000418,0.001848,0.260690,-0.003100,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000063,0.000000,0.000000,0.000000,0.000034,0.000226,0.000198,0.000259,0.000293,0.000293,0.001821,0.257755,-0.002936,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000063,0.000000,0.000000,0.000000,0.000035,0.000222,0.000195,0.000257,0.000154,0.000154,0.001794,0.254997,-0.002758,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000063,0.000000,0.000000,0.000000,0.000036,0.000219,0.000193,0.000255,0.000015,0.000015,0.001768,0.252413,-0.002584,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000063,0.000000,0.000001,0.000000,0.000038,0.000216,0.000190,0.000254,0.000000,0.000000,0.001743,0.249879,-0.002534,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000063,0.000001,0.000001,0.000001,0.000039,0.000212,0.000188,0.000252,0.000000,0.000000,0.001718,0.247379,-0.002500,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000063,0.000001,0.000001,0.000001,0.000040,0.000209,0.000185,0.000250,0.000000,0.000000,0.001694,0.244914,-0.002465,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000070,0.000001,0.000001,0.000001,0.000042,0.000206,0.000183,0.000249,0.000000,0.000000,0.001670,0.242489,-0.002425,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000080,0.000001,0.000001,0.000001,0.000043,0.000203,0.000180,0.000247,0.000000,0.000000,0.001647,0.240106,-0.002382,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000201,0.000178,0.000245,0.000000,0.000000,0.001624,0.237678,-0.002428,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000198,0.000175,0.000244,0.000000,0.000000,0.001602,0.235283,-0.002395,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000195,0.000173,0.000242,0.000000,0.000000,0.001580,0.232921,-0.002362,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000192,0.000171,0.000241,0.000000,0.000000,0.001558,0.230591,-0.002330,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000190,0.000168,0.000239,0.000000,0.000000,0.001537,0.228292,-0.002298,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000187,0.000166,0.000238,0.000000,0.000000,0.001516,0.226025,-0.002267,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000184,0.000164,0.000237,0.000000,0.000000,0.001495,0.223789,-0.002236,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000182,0.000161,0.000236,0.000110,0.000110,0.001475,0.221474,-0.002315,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000179,0.000159,0.000235,0.000348,0.000348,0.001455,0.218957,-0.002517,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000177,0.000156,0.000234,0.000500,0.000500,0.001434,0.216324,-0.002633,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000174,0.000154,0.000233,0.000602,0.000602,0.001414,0.213626,-0.002698,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000172,0.000151,0.000231,0.000584,0.000584,0.001393,0.210982,-0.002643,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000169,0.000148,0.000230,0.000525,0.000525,0.001372,0.208433,-0.002549,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001766,0.000119,0.000217,0.000119,0.000063,0.000167,0.000147,0.000349,0.000480,0.000480,0.001353,0.207491,-0.000942,1.000000,0.000097 +69,2022-08-03 21:00:00,0.000308,0.000054,0.000000,0.000054,0.000064,0.000164,0.000145,0.000283,0.000443,0.000443,0.001334,0.205375,-0.002117,1.000000,0.000043 +70,2022-08-03 22:00:00,0.000000,0.000043,0.000000,0.000043,0.000066,0.000162,0.000143,0.000271,0.000374,0.000374,0.001315,0.203051,-0.002324,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000084,0.000000,0.000000,0.000000,0.000067,0.000159,0.000141,0.000227,0.000274,0.000274,0.001296,0.200940,-0.002111,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000157,0.000139,0.000226,0.000165,0.000165,0.001278,0.198883,-0.002057,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000155,0.000137,0.000225,0.000024,0.000024,0.001260,0.196993,-0.001890,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000153,0.000135,0.000225,0.000000,0.000000,0.001242,0.195152,-0.001841,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000150,0.000133,0.000224,0.000000,0.000000,0.001224,0.193337,-0.001816,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000148,0.000131,0.000223,0.000000,0.000000,0.001207,0.191546,-0.001791,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000146,0.000129,0.000223,0.000000,0.000000,0.001191,0.189779,-0.001766,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000144,0.000128,0.000222,0.000000,0.000000,0.001174,0.188037,-0.001742,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000142,0.000126,0.000222,0.000000,0.000000,0.001158,0.186318,-0.001719,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000140,0.000124,0.000221,0.000000,0.000000,0.001142,0.184623,-0.001695,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000138,0.000122,0.000221,0.000000,0.000000,0.001126,0.182951,-0.001672,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000136,0.000121,0.000221,0.000000,0.000000,0.001111,0.181301,-0.001649,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000134,0.000119,0.000220,0.000000,0.000000,0.001096,0.179675,-0.001627,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000132,0.000118,0.000220,0.000000,0.000000,0.001081,0.178070,-0.001605,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000131,0.000116,0.000220,0.000000,0.000000,0.001066,0.176487,-0.001583,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000129,0.000114,0.000219,0.000104,0.000104,0.001051,0.174823,-0.001664,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000127,0.000112,0.000219,0.000338,0.000338,0.001037,0.172952,-0.001872,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000125,0.000110,0.000219,0.000508,0.000508,0.001022,0.170937,-0.002014,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000123,0.000108,0.000219,0.000611,0.000611,0.001007,0.168849,-0.002088,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000121,0.000106,0.000218,0.000664,0.000664,0.000991,0.166737,-0.002112,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000119,0.000104,0.000218,0.000609,0.000609,0.000976,0.164708,-0.002029,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000118,0.000102,0.000218,0.000568,0.000568,0.000960,0.162746,-0.001961,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000116,0.000100,0.000217,0.000526,0.000526,0.000945,0.160853,-0.001893,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000114,0.000098,0.000217,0.000443,0.000443,0.000929,0.159068,-0.001785,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000112,0.000097,0.000217,0.000316,0.000316,0.000914,0.157432,-0.001635,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000110,0.000095,0.000217,0.000172,0.000172,0.000899,0.155961,-0.001472,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000108,0.000094,0.000216,0.000027,0.000027,0.000885,0.154652,-0.001309,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000106,0.000093,0.000216,0.000000,0.000000,0.000871,0.153388,-0.001264,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000105,0.000091,0.000216,0.000000,0.000000,0.000858,0.152141,-0.001247,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000103,0.000090,0.000216,0.000000,0.000000,0.000844,0.150912,-0.001230,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000102,0.000089,0.000216,0.000000,0.000000,0.000832,0.149699,-0.001213,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000100,0.000088,0.000216,0.000000,0.000000,0.000819,0.148503,-0.001196,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000099,0.000086,0.000216,0.000000,0.000000,0.000807,0.147323,-0.001180,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000097,0.000085,0.000216,0.000000,0.000000,0.000795,0.146159,-0.001164,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000096,0.000084,0.000217,0.000000,0.000000,0.000784,0.145010,-0.001148,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000094,0.000083,0.000217,0.000000,0.000000,0.000772,0.143878,-0.001132,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000093,0.000082,0.000217,0.000000,0.000000,0.000761,0.142761,-0.001117,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000092,0.000081,0.000217,0.000000,0.000000,0.000750,0.141659,-0.001102,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000090,0.000080,0.000218,0.000000,0.000000,0.000740,0.140572,-0.001087,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000089,0.000078,0.000218,0.000120,0.000120,0.000729,0.139382,-0.001190,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000088,0.000077,0.000218,0.000353,0.000353,0.000718,0.137978,-0.001404,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000086,0.000075,0.000218,0.000512,0.000512,0.000708,0.136436,-0.001542,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000134,0.000085,0.000074,0.000219,0.000612,0.000612,0.000696,0.134817,-0.001619,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000084,0.000072,0.000219,0.000618,0.000618,0.000685,0.133213,-0.001604,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000110,0.000000,0.000000,0.000000,0.000137,0.000082,0.000071,0.000219,0.000581,0.000581,0.000674,0.131777,-0.001436,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000110,0.000000,0.000000,0.000000,0.000138,0.000081,0.000069,0.000219,0.000530,0.000530,0.000662,0.130410,-0.001367,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000117,0.000000,0.000000,0.000000,0.000140,0.000079,0.000068,0.000219,0.000481,0.000481,0.000651,0.129118,-0.001292,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000117,0.000000,0.000000,0.000000,0.000141,0.000078,0.000067,0.000219,0.000403,0.000403,0.000640,0.127919,-0.001199,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000178,0.000000,0.000000,0.000000,0.000143,0.000077,0.000066,0.000220,0.000293,0.000293,0.000629,0.126906,-0.001013,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000122,0.000000,0.000000,0.000000,0.000145,0.000075,0.000065,0.000220,0.000162,0.000162,0.000618,0.125981,-0.000925,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000719,0.000032,0.000058,0.000032,0.000146,0.000074,0.000065,0.000252,0.000044,0.000044,0.000609,0.125716,-0.000265,1.000000,0.000026 +122,2022-08-06 02:00:00,0.001084,0.000093,0.000143,0.000093,0.000148,0.000073,0.000065,0.000314,0.000000,0.000000,0.000600,0.125775,0.000059,1.000000,0.000076 +123,2022-08-06 03:00:00,0.000639,0.000076,0.000052,0.000076,0.000149,0.000072,0.000064,0.000298,0.000000,0.000000,0.000592,0.125484,-0.000291,1.000000,0.000052 +124,2022-08-06 04:00:00,0.000455,0.000057,0.000027,0.000057,0.000151,0.000071,0.000064,0.000279,0.000000,0.000000,0.000585,0.125039,-0.000444,1.000000,0.000023 +125,2022-08-06 05:00:00,0.000447,0.000032,0.000026,0.000032,0.000152,0.000070,0.000063,0.000255,0.000000,0.000000,0.000578,0.124594,-0.000445,1.000000,0.000017 +126,2022-08-06 06:00:00,0.000532,0.000032,0.000037,0.000032,0.000154,0.000070,0.000063,0.000256,0.000000,0.000000,0.000572,0.124228,-0.000366,1.000000,0.000022 +127,2022-08-06 07:00:00,0.000000,0.000014,0.000000,0.000014,0.000155,0.000069,0.000062,0.000239,0.000000,0.000000,0.000565,0.123379,-0.000849,1.000000,0.000007 +128,2022-08-06 08:00:00,0.000000,0.000007,0.000000,0.000007,0.000157,0.000068,0.000061,0.000232,0.000000,0.000000,0.000558,0.122541,-0.000838,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000067,0.000061,0.000226,0.000000,0.000000,0.000552,0.121715,-0.000826,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000066,0.000060,0.000226,0.000000,0.000000,0.000545,0.120900,-0.000815,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000066,0.000059,0.000227,0.000000,0.000000,0.000538,0.120096,-0.000804,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000065,0.000058,0.000228,0.000000,0.000000,0.000532,0.119303,-0.000793,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000064,0.000057,0.000229,0.000000,0.000000,0.000525,0.118520,-0.000782,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000063,0.000056,0.000229,0.000098,0.000098,0.000519,0.117652,-0.000869,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000062,0.000055,0.000230,0.000321,0.000321,0.000512,0.116576,-0.001076,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000061,0.000054,0.000231,0.000478,0.000478,0.000504,0.115359,-0.001216,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000060,0.000053,0.000231,0.000583,0.000583,0.000497,0.114056,-0.001304,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000059,0.000051,0.000232,0.000649,0.000649,0.000489,0.112704,-0.001351,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000058,0.000050,0.000232,0.000610,0.000610,0.000480,0.111410,-0.001294,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000057,0.000049,0.000233,0.000569,0.000569,0.000472,0.110174,-0.001236,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000056,0.000048,0.000233,0.000522,0.000522,0.000463,0.109002,-0.001172,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000055,0.000047,0.000233,0.000442,0.000442,0.000455,0.107924,-0.001077,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000054,0.000046,0.000234,0.000312,0.000312,0.000446,0.106989,-0.000935,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000053,0.000045,0.000234,0.000167,0.000167,0.000438,0.106210,-0.000779,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000052,0.000044,0.000235,0.000023,0.000023,0.000430,0.105583,-0.000627,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000051,0.000044,0.000235,0.000000,0.000000,0.000422,0.104988,-0.000595,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000050,0.000043,0.000236,0.000000,0.000000,0.000415,0.104401,-0.000587,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000050,0.000042,0.000236,0.000000,0.000000,0.000408,0.103821,-0.000579,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000049,0.000042,0.000237,0.000000,0.000000,0.000401,0.103250,-0.000571,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000048,0.000041,0.000238,0.000000,0.000000,0.000394,0.102686,-0.000564,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000047,0.000041,0.000238,0.000000,0.000000,0.000388,0.102131,-0.000556,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000046,0.000040,0.000239,0.000000,0.000000,0.000382,0.101582,-0.000548,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000046,0.000040,0.000240,0.000000,0.000000,0.000376,0.101042,-0.000541,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000045,0.000039,0.000240,0.000000,0.000000,0.000370,0.100508,-0.000533,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000044,0.000039,0.000241,0.000000,0.000000,0.000364,0.099982,-0.000526,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000044,0.000038,0.000242,0.000000,0.000000,0.000359,0.099463,-0.000519,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000043,0.000037,0.000243,0.000000,0.000000,0.000353,0.098951,-0.000512,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000042,0.000037,0.000243,0.000096,0.000096,0.000348,0.098351,-0.000600,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000042,0.000036,0.000244,0.000330,0.000330,0.000342,0.097529,-0.000822,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000041,0.000035,0.000245,0.000496,0.000496,0.000337,0.096554,-0.000975,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000040,0.000034,0.000245,0.000587,0.000587,0.000330,0.095503,-0.001051,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000039,0.000033,0.000246,0.000637,0.000637,0.000324,0.094416,-0.001086,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000039,0.000032,0.000246,0.000593,0.000593,0.000317,0.093388,-0.001028,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000038,0.000031,0.000247,0.000547,0.000547,0.000311,0.092419,-0.000969,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000037,0.000030,0.000248,0.000500,0.000500,0.000304,0.091510,-0.000910,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000036,0.000029,0.000248,0.000419,0.000419,0.000297,0.090693,-0.000817,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000035,0.000028,0.000249,0.000293,0.000293,0.000290,0.090011,-0.000682,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000034,0.000028,0.000249,0.000131,0.000131,0.000284,0.089499,-0.000512,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000034,0.000028,0.000250,0.000002,0.000002,0.000278,0.089120,-0.000378,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000033,0.000027,0.000250,0.000000,0.000000,0.000272,0.088749,-0.000371,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000032,0.000027,0.000251,0.000000,0.000000,0.000266,0.088383,-0.000366,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000032,0.000026,0.000252,0.000000,0.000000,0.000261,0.088022,-0.000361,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000031,0.000026,0.000252,0.000000,0.000000,0.000256,0.087666,-0.000356,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000030,0.000026,0.000253,0.000000,0.000000,0.000251,0.087315,-0.000351,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000030,0.000025,0.000254,0.000000,0.000000,0.000247,0.086969,-0.000346,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000029,0.000025,0.000254,0.000000,0.000000,0.000242,0.086627,-0.000342,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000001,0.000000,0.000000,0.000000,0.000226,0.000029,0.000025,0.000255,0.000000,0.000000,0.000238,0.086290,-0.000337,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000228,0.000028,0.000024,0.000256,0.000000,0.000000,0.000234,0.085958,-0.000332,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000002,0.000000,0.000000,0.000000,0.000229,0.000028,0.000024,0.000257,0.000000,0.000000,0.000230,0.085633,-0.000326,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000027,0.000024,0.000258,0.000000,0.000000,0.000227,0.085309,-0.000323,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000027,0.000023,0.000258,0.000000,0.000000,0.000223,0.084990,-0.000319,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000027,0.000023,0.000259,0.000081,0.000081,0.000219,0.084595,-0.000395,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000026,0.000022,0.000260,0.000313,0.000313,0.000216,0.083977,-0.000618,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000026,0.000022,0.000261,0.000474,0.000474,0.000212,0.083208,-0.000769,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000025,0.000021,0.000261,0.000582,0.000000,0.000208,0.082918,-0.000290,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000025,0.000021,0.000262,0.000644,0.000000,0.000204,0.082631,-0.000287,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000024,0.000021,0.000263,0.000598,0.000000,0.000200,0.082349,-0.000283,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000024,0.000020,0.000264,0.000550,0.000000,0.000197,0.082070,-0.000279,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000023,0.000020,0.000264,0.000515,0.000000,0.000194,0.081795,-0.000275,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000023,0.000020,0.000265,0.000428,0.000000,0.000190,0.081524,-0.000271,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000023,0.000020,0.000266,0.000295,0.000000,0.000187,0.081256,-0.000268,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000022,0.000019,0.000267,0.000153,0.000000,0.000184,0.080992,-0.000264,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000022,0.000019,0.000268,0.000009,0.000000,0.000181,0.080732,-0.000260,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000022,0.000019,0.000269,0.000000,0.000000,0.000179,0.080475,-0.000257,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000021,0.000019,0.000269,0.000000,0.000000,0.000176,0.080222,-0.000253,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000021,0.000018,0.000270,0.000000,0.000000,0.000173,0.079972,-0.000250,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000021,0.000018,0.000271,0.000000,0.000000,0.000171,0.079726,-0.000246,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000020,0.000018,0.000272,0.000000,0.000000,0.000168,0.079482,-0.000243,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000020,0.000018,0.000273,0.000000,0.000000,0.000166,0.079243,-0.000240,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000020,0.000017,0.000273,0.000000,0.000000,0.000163,0.079006,-0.000236,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000019,0.000017,0.000274,0.000000,0.000000,0.000161,0.078773,-0.000233,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000256,0.000019,0.000017,0.000275,0.000000,0.000000,0.000158,0.078543,-0.000230,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000019,0.000017,0.000276,0.000000,0.000000,0.000156,0.078316,-0.000227,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000019,0.000016,0.000277,0.000000,0.000000,0.000154,0.078092,-0.000224,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000018,0.000016,0.000277,0.000000,0.000000,0.000152,0.077871,-0.000221,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000018,0.000016,0.000278,0.000089,0.000000,0.000150,0.077654,-0.000218,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620912.csv b/test/channel_loss/channel_forcing/et/cat-2620912.csv new file mode 100644 index 000000000..3c8891f5c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620912.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001524,0.000746,0.001524,0.000147,0.000147,0.010812,0.427881,-0.005125,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001414,0.000734,0.001414,0.000028,0.000028,0.010132,0.422953,-0.004928,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001319,0.000723,0.001319,0.000000,0.000000,0.009536,0.418130,-0.004823,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001237,0.000711,0.001237,0.000000,0.000000,0.009010,0.413382,-0.004747,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001165,0.000700,0.001165,0.000000,0.000000,0.008545,0.408709,-0.004673,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001102,0.000689,0.001102,0.000000,0.000000,0.008132,0.404109,-0.004600,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001047,0.000678,0.001047,0.000000,0.000000,0.007764,0.399582,-0.004528,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000997,0.000668,0.000998,0.000000,0.000000,0.007435,0.395125,-0.004457,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000954,0.000657,0.000955,0.000000,0.000000,0.007139,0.390738,-0.004387,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000914,0.000647,0.000916,0.000000,0.000000,0.006871,0.386419,-0.004318,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000879,0.000637,0.000881,0.000000,0.000000,0.006629,0.382169,-0.004251,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000847,0.000627,0.000849,0.000000,0.000000,0.006409,0.377985,-0.004184,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000818,0.000617,0.000821,0.000000,0.000000,0.006208,0.373866,-0.004119,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000792,0.000607,0.000795,0.000000,0.000000,0.006023,0.369812,-0.004054,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000768,0.000598,0.000771,0.000112,0.000112,0.005854,0.365711,-0.004101,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000745,0.000587,0.000749,0.000335,0.000335,0.005696,0.361455,-0.004256,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000724,0.000577,0.000729,0.000504,0.000504,0.005549,0.357100,-0.004355,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000705,0.000567,0.000710,0.000586,0.000586,0.005410,0.352731,-0.004369,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000687,0.000557,0.000692,0.000501,0.000501,0.005280,0.348515,-0.004216,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000930,0.000010,0.000017,0.000010,0.000006,0.000670,0.000549,0.000685,0.000473,0.000473,0.005159,0.345290,-0.003225,1.000000,0.000008 +20,2022-08-01 20:00:00,0.001226,0.000033,0.000052,0.000033,0.000006,0.000654,0.000542,0.000694,0.000418,0.000418,0.005047,0.342427,-0.002863,1.000000,0.000027 +21,2022-08-01 21:00:00,0.001216,0.000049,0.000059,0.000049,0.000007,0.000640,0.000536,0.000696,0.000355,0.000355,0.004943,0.339655,-0.002772,1.000000,0.000037 +22,2022-08-01 22:00:00,0.001118,0.000055,0.000055,0.000055,0.000008,0.000626,0.000529,0.000689,0.000289,0.000289,0.004845,0.336899,-0.002756,1.000000,0.000036 +23,2022-08-01 23:00:00,0.001081,0.000059,0.000061,0.000059,0.000008,0.000614,0.000523,0.000681,0.000198,0.000198,0.004754,0.334232,-0.002667,1.000000,0.000038 +24,2022-08-02 00:00:00,0.001092,0.000066,0.000072,0.000066,0.000009,0.000602,0.000517,0.000677,0.000127,0.000127,0.004669,0.331678,-0.002555,1.000000,0.000045 +25,2022-08-02 01:00:00,0.002463,0.000253,0.000405,0.000253,0.000010,0.000591,0.000513,0.000854,0.000051,0.000051,0.004591,0.330260,-0.001418,1.000000,0.000197 +26,2022-08-02 02:00:00,0.002864,0.000420,0.000553,0.000420,0.000010,0.000582,0.000511,0.001012,0.000000,0.000000,0.004519,0.329163,-0.001096,1.000000,0.000330 +27,2022-08-02 03:00:00,0.002837,0.000518,0.000543,0.000518,0.000011,0.000573,0.000508,0.001102,0.000000,0.000000,0.004455,0.328068,-0.001095,1.000000,0.000355 +28,2022-08-02 04:00:00,0.002859,0.000548,0.000549,0.000548,0.000012,0.000565,0.000505,0.001125,0.000000,0.000000,0.004395,0.327004,-0.001063,1.000000,0.000356 +29,2022-08-02 05:00:00,0.002792,0.000535,0.000526,0.000535,0.000013,0.000557,0.000503,0.001105,0.000000,0.000000,0.004341,0.325915,-0.001089,1.000000,0.000346 +30,2022-08-02 06:00:00,0.002733,0.000519,0.000505,0.000519,0.000014,0.000550,0.000500,0.001083,0.000000,0.000000,0.004291,0.324806,-0.001110,1.000000,0.000332 +31,2022-08-02 07:00:00,0.000000,0.000231,0.000000,0.000231,0.000014,0.000543,0.000492,0.000789,0.000000,0.000000,0.004240,0.321520,-0.003286,1.000000,0.000101 +32,2022-08-02 08:00:00,0.000000,0.000101,0.000000,0.000101,0.000015,0.000536,0.000485,0.000653,0.000000,0.000000,0.004188,0.318286,-0.003234,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000529,0.000477,0.000545,0.000000,0.000000,0.004136,0.315102,-0.003184,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000522,0.000470,0.000539,0.000000,0.000000,0.004083,0.311968,-0.003134,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000515,0.000462,0.000533,0.000000,0.000000,0.004030,0.308884,-0.003085,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000508,0.000455,0.000527,0.000000,0.000000,0.003977,0.305848,-0.003036,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000515,0.000011,0.000020,0.000011,0.000020,0.000501,0.000449,0.000532,0.000000,0.000000,0.003925,0.303345,-0.002502,1.000000,0.000009 +38,2022-08-02 14:00:00,0.000458,0.000010,0.000009,0.000010,0.000021,0.000494,0.000443,0.000525,0.000110,0.000110,0.003874,0.300729,-0.002616,1.000000,0.000008 +39,2022-08-02 15:00:00,0.000458,0.000008,0.000002,0.000008,0.000022,0.000487,0.000436,0.000517,0.000283,0.000283,0.003823,0.297990,-0.002739,1.000000,0.000003 +40,2022-08-02 16:00:00,0.000458,0.000003,0.000000,0.000003,0.000023,0.000480,0.000429,0.000506,0.000416,0.000416,0.003772,0.295166,-0.002824,1.000000,0.000001 +41,2022-08-02 17:00:00,0.000517,0.000001,0.000000,0.000001,0.000024,0.000474,0.000423,0.000498,0.000505,0.000505,0.003721,0.292355,-0.002810,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000630,0.000000,0.000001,0.000000,0.000025,0.000467,0.000416,0.000492,0.000545,0.000545,0.003671,0.289662,-0.002694,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000138,0.000000,0.000000,0.000000,0.000026,0.000460,0.000409,0.000486,0.000487,0.000487,0.003620,0.286583,-0.003079,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000111,0.000000,0.000000,0.000000,0.000027,0.000453,0.000402,0.000480,0.000465,0.000465,0.003569,0.283548,-0.003036,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000072,0.000000,0.000000,0.000000,0.000028,0.000446,0.000395,0.000474,0.000484,0.000484,0.003517,0.280502,-0.003045,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000072,0.000000,0.000000,0.000000,0.000029,0.000439,0.000388,0.000469,0.000411,0.000411,0.003465,0.277576,-0.002926,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000074,0.000000,0.000000,0.000000,0.000030,0.000432,0.000381,0.000463,0.000292,0.000292,0.003414,0.274815,-0.002761,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000106,0.000000,0.000000,0.000000,0.000031,0.000426,0.000375,0.000457,0.000153,0.000153,0.003363,0.272266,-0.002549,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000072,0.000000,0.000000,0.000000,0.000033,0.000419,0.000369,0.000452,0.000016,0.000016,0.003313,0.269858,-0.002408,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000072,0.000000,0.000000,0.000000,0.000034,0.000413,0.000364,0.000447,0.000000,0.000000,0.003264,0.267503,-0.002355,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000072,0.000000,0.000000,0.000000,0.000035,0.000406,0.000358,0.000441,0.000000,0.000000,0.003215,0.265185,-0.002318,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000072,0.000000,0.000000,0.000000,0.000036,0.000400,0.000353,0.000436,0.000000,0.000000,0.003168,0.262903,-0.002282,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000090,0.000000,0.000001,0.000000,0.000037,0.000394,0.000347,0.000432,0.000000,0.000000,0.003121,0.260675,-0.002229,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000106,0.000001,0.000001,0.000001,0.000038,0.000388,0.000342,0.000427,0.000000,0.000000,0.003076,0.258497,-0.002178,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000382,0.000337,0.000422,0.000000,0.000000,0.003030,0.256250,-0.002247,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000041,0.000376,0.000331,0.000417,0.000000,0.000000,0.002986,0.254038,-0.002212,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000370,0.000326,0.000412,0.000000,0.000000,0.002942,0.251860,-0.002177,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000365,0.000321,0.000408,0.000000,0.000000,0.002898,0.249717,-0.002143,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000359,0.000316,0.000403,0.000000,0.000000,0.002855,0.247608,-0.002110,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000353,0.000311,0.000399,0.000000,0.000000,0.002813,0.245531,-0.002077,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000348,0.000306,0.000395,0.000000,0.000000,0.002771,0.243487,-0.002044,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000343,0.000301,0.000391,0.000105,0.000105,0.002730,0.241371,-0.002116,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000337,0.000296,0.000387,0.000338,0.000338,0.002688,0.239059,-0.002312,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000332,0.000290,0.000383,0.000488,0.000488,0.002647,0.236636,-0.002423,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000326,0.000284,0.000378,0.000601,0.000601,0.002604,0.234140,-0.002496,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000321,0.000278,0.000374,0.000570,0.000570,0.002562,0.231714,-0.002427,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000315,0.000273,0.000370,0.000522,0.000522,0.002519,0.229373,-0.002341,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000280,0.000000,0.000000,0.000000,0.000056,0.000310,0.000268,0.000366,0.000465,0.000465,0.002477,0.227400,-0.001973,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000036,0.000000,0.000000,0.000000,0.000057,0.000304,0.000263,0.000362,0.000444,0.000444,0.002436,0.225238,-0.002161,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000299,0.000258,0.000358,0.000363,0.000363,0.002394,0.223155,-0.002083,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000294,0.000253,0.000354,0.000269,0.000269,0.002354,0.221196,-0.001959,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000289,0.000249,0.000350,0.000165,0.000165,0.002314,0.219371,-0.001825,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000284,0.000245,0.000346,0.000025,0.000025,0.002275,0.217712,-0.001659,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000279,0.000241,0.000343,0.000000,0.000000,0.002237,0.216104,-0.001608,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000274,0.000237,0.000339,0.000000,0.000000,0.002200,0.214521,-0.001583,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000269,0.000233,0.000336,0.000000,0.000000,0.002164,0.212962,-0.001558,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000265,0.000230,0.000333,0.000000,0.000000,0.002129,0.211429,-0.001534,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000261,0.000226,0.000330,0.000000,0.000000,0.002095,0.209919,-0.001510,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000256,0.000223,0.000327,0.000000,0.000000,0.002061,0.208432,-0.001486,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000252,0.000219,0.000324,0.000000,0.000000,0.002028,0.206969,-0.001463,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000248,0.000216,0.000321,0.000000,0.000000,0.001996,0.205529,-0.001440,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000244,0.000212,0.000319,0.000000,0.000000,0.001964,0.204112,-0.001417,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000240,0.000209,0.000316,0.000000,0.000000,0.001933,0.202717,-0.001395,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000236,0.000206,0.000314,0.000000,0.000000,0.001903,0.201343,-0.001373,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000232,0.000203,0.000311,0.000000,0.000000,0.001873,0.199991,-0.001352,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000229,0.000199,0.000309,0.000102,0.000102,0.001844,0.198560,-0.001431,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000225,0.000195,0.000306,0.000334,0.000334,0.001814,0.196923,-0.001637,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000221,0.000191,0.000304,0.000507,0.000507,0.001784,0.195140,-0.001782,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000217,0.000187,0.000301,0.000604,0.000604,0.001754,0.193291,-0.001849,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000213,0.000182,0.000299,0.000669,0.000669,0.001723,0.191406,-0.001884,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000209,0.000178,0.000296,0.000615,0.000615,0.001691,0.189605,-0.001801,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000205,0.000174,0.000294,0.000562,0.000562,0.001660,0.187883,-0.001722,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000201,0.000170,0.000291,0.000528,0.000528,0.001628,0.186223,-0.001660,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000197,0.000166,0.000288,0.000442,0.000442,0.001597,0.184673,-0.001550,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000193,0.000163,0.000286,0.000319,0.000319,0.001566,0.183268,-0.001405,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000190,0.000160,0.000283,0.000174,0.000174,0.001536,0.182028,-0.001240,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000186,0.000157,0.000281,0.000029,0.000029,0.001507,0.180950,-0.001078,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000183,0.000155,0.000279,0.000000,0.000000,0.001480,0.179917,-0.001033,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000179,0.000152,0.000277,0.000000,0.000000,0.001453,0.178901,-0.001016,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000176,0.000150,0.000275,0.000000,0.000000,0.001427,0.177901,-0.001000,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000173,0.000148,0.000273,0.000000,0.000000,0.001402,0.176916,-0.000985,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000170,0.000145,0.000272,0.000000,0.000000,0.001377,0.175946,-0.000969,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000167,0.000143,0.000270,0.000000,0.000000,0.001354,0.174992,-0.000954,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000164,0.000141,0.000269,0.000000,0.000000,0.001330,0.174053,-0.000939,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000161,0.000139,0.000267,0.000000,0.000000,0.001308,0.173129,-0.000924,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000158,0.000136,0.000266,0.000000,0.000000,0.001286,0.172219,-0.000910,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000156,0.000134,0.000264,0.000000,0.000000,0.001265,0.171323,-0.000896,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000153,0.000132,0.000263,0.000000,0.000000,0.001244,0.170441,-0.000882,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000150,0.000130,0.000262,0.000000,0.000000,0.001224,0.169573,-0.000868,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000148,0.000128,0.000261,0.000117,0.000117,0.001203,0.168604,-0.000969,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000145,0.000125,0.000260,0.000349,0.000349,0.001183,0.167421,-0.001182,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000143,0.000122,0.000258,0.000510,0.000510,0.001162,0.166099,-0.001323,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000140,0.000118,0.000257,0.000613,0.000613,0.001140,0.164695,-0.001404,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000137,0.000115,0.000255,0.000601,0.000601,0.001118,0.163325,-0.001370,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000036,0.000000,0.000000,0.000000,0.000120,0.000134,0.000112,0.000254,0.000567,0.000567,0.001096,0.162046,-0.001279,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000036,0.000000,0.000000,0.000000,0.000121,0.000132,0.000109,0.000253,0.000512,0.000512,0.001073,0.160840,-0.001206,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000045,0.000000,0.000000,0.000000,0.000122,0.000129,0.000106,0.000251,0.000494,0.000494,0.001051,0.159681,-0.001159,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000073,0.000000,0.000000,0.000000,0.000124,0.000126,0.000104,0.000250,0.000400,0.000400,0.001029,0.158660,-0.001021,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000080,0.000000,0.000000,0.000000,0.000125,0.000123,0.000102,0.000248,0.000297,0.000297,0.001007,0.157763,-0.000897,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000043,0.000000,0.000000,0.000000,0.000126,0.000121,0.000100,0.000247,0.000162,0.000162,0.000987,0.156976,-0.000787,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000192,0.000001,0.000001,0.000001,0.000128,0.000118,0.000099,0.000247,0.000043,0.000043,0.000967,0.156465,-0.000511,1.000000,0.000001 +122,2022-08-06 02:00:00,0.000236,0.000002,0.000003,0.000002,0.000129,0.000116,0.000098,0.000247,0.000000,0.000000,0.000949,0.156044,-0.000420,1.000000,0.000002 +123,2022-08-06 03:00:00,0.000265,0.000004,0.000004,0.000004,0.000130,0.000114,0.000097,0.000248,0.000000,0.000000,0.000931,0.155658,-0.000386,1.000000,0.000003 +124,2022-08-06 04:00:00,0.000295,0.000005,0.000005,0.000005,0.000131,0.000112,0.000096,0.000248,0.000000,0.000000,0.000915,0.155307,-0.000351,1.000000,0.000003 +125,2022-08-06 05:00:00,0.000359,0.000007,0.000008,0.000007,0.000133,0.000110,0.000095,0.000249,0.000000,0.000000,0.000900,0.155022,-0.000285,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000309,0.000006,0.000006,0.000006,0.000134,0.000108,0.000095,0.000249,0.000000,0.000000,0.000887,0.154693,-0.000328,1.000000,0.000004 +127,2022-08-06 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000135,0.000107,0.000093,0.000245,0.000000,0.000000,0.000873,0.154072,-0.000621,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000137,0.000105,0.000092,0.000243,0.000000,0.000000,0.000859,0.153461,-0.000612,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000103,0.000090,0.000241,0.000000,0.000000,0.000846,0.152859,-0.000602,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000139,0.000102,0.000089,0.000241,0.000000,0.000000,0.000833,0.152266,-0.000593,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000100,0.000087,0.000241,0.000000,0.000000,0.000820,0.151683,-0.000583,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000099,0.000086,0.000240,0.000000,0.000000,0.000808,0.151109,-0.000574,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000097,0.000085,0.000240,0.000000,0.000000,0.000795,0.150543,-0.000565,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000096,0.000083,0.000240,0.000097,0.000097,0.000783,0.149892,-0.000652,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000094,0.000081,0.000239,0.000318,0.000318,0.000770,0.149033,-0.000859,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000092,0.000079,0.000239,0.000481,0.000481,0.000756,0.148026,-0.001006,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000091,0.000076,0.000238,0.000588,0.000588,0.000741,0.146931,-0.001096,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000089,0.000073,0.000238,0.000651,0.000651,0.000726,0.145790,-0.001141,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000087,0.000071,0.000237,0.000612,0.000612,0.000710,0.144705,-0.001085,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000085,0.000068,0.000236,0.000565,0.000565,0.000694,0.143684,-0.001021,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000083,0.000066,0.000236,0.000521,0.000521,0.000677,0.142722,-0.000962,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000081,0.000064,0.000235,0.000442,0.000442,0.000661,0.141853,-0.000869,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000079,0.000062,0.000234,0.000312,0.000312,0.000644,0.141126,-0.000728,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000077,0.000061,0.000233,0.000166,0.000166,0.000629,0.140553,-0.000573,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000075,0.000060,0.000233,0.000024,0.000024,0.000614,0.140130,-0.000424,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000073,0.000059,0.000232,0.000000,0.000000,0.000599,0.139736,-0.000393,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000071,0.000058,0.000232,0.000000,0.000000,0.000586,0.139349,-0.000387,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000070,0.000057,0.000231,0.000000,0.000000,0.000573,0.138968,-0.000381,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000068,0.000056,0.000231,0.000000,0.000000,0.000561,0.138593,-0.000375,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000067,0.000055,0.000231,0.000000,0.000000,0.000549,0.138224,-0.000369,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000066,0.000054,0.000230,0.000000,0.000000,0.000538,0.137861,-0.000363,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000064,0.000054,0.000230,0.000000,0.000000,0.000528,0.137503,-0.000358,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000063,0.000053,0.000230,0.000000,0.000000,0.000517,0.137151,-0.000352,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000062,0.000052,0.000230,0.000000,0.000000,0.000508,0.136805,-0.000347,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000061,0.000051,0.000230,0.000000,0.000000,0.000498,0.136464,-0.000341,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000059,0.000050,0.000230,0.000000,0.000000,0.000489,0.136128,-0.000336,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000058,0.000050,0.000230,0.000000,0.000000,0.000480,0.135797,-0.000330,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000057,0.000049,0.000230,0.000094,0.000094,0.000471,0.135380,-0.000418,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000056,0.000047,0.000230,0.000327,0.000327,0.000462,0.134739,-0.000641,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000055,0.000045,0.000230,0.000495,0.000495,0.000452,0.133943,-0.000796,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000054,0.000043,0.000230,0.000587,0.000587,0.000441,0.133068,-0.000874,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000052,0.000041,0.000230,0.000628,0.000628,0.000430,0.132168,-0.000901,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000051,0.000039,0.000229,0.000582,0.000582,0.000418,0.131326,-0.000842,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000049,0.000037,0.000229,0.000533,0.000533,0.000406,0.130546,-0.000780,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000048,0.000035,0.000228,0.000495,0.000495,0.000393,0.129815,-0.000730,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000046,0.000034,0.000228,0.000416,0.000416,0.000381,0.129175,-0.000641,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000045,0.000033,0.000228,0.000288,0.000288,0.000368,0.128669,-0.000505,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000043,0.000032,0.000227,0.000132,0.000132,0.000357,0.128326,-0.000344,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000042,0.000031,0.000227,0.000004,0.000004,0.000346,0.128113,-0.000212,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000041,0.000031,0.000227,0.000000,0.000000,0.000336,0.127908,-0.000205,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000040,0.000030,0.000227,0.000000,0.000000,0.000326,0.127706,-0.000202,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000039,0.000030,0.000227,0.000000,0.000000,0.000318,0.127508,-0.000199,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000029,0.000227,0.000000,0.000000,0.000309,0.127312,-0.000195,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000037,0.000029,0.000227,0.000000,0.000000,0.000302,0.127120,-0.000192,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000028,0.000227,0.000000,0.000000,0.000294,0.126931,-0.000189,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000035,0.000028,0.000227,0.000000,0.000000,0.000287,0.126744,-0.000186,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000034,0.000027,0.000227,0.000000,0.000000,0.000281,0.126561,-0.000184,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000033,0.000027,0.000227,0.000000,0.000000,0.000275,0.126380,-0.000181,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000033,0.000027,0.000228,0.000000,0.000000,0.000269,0.126202,-0.000178,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000032,0.000026,0.000228,0.000000,0.000000,0.000263,0.126027,-0.000175,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000026,0.000228,0.000000,0.000000,0.000257,0.125855,-0.000172,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000025,0.000229,0.000079,0.000079,0.000252,0.125607,-0.000248,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000024,0.000229,0.000312,0.000312,0.000246,0.125134,-0.000473,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000029,0.000023,0.000229,0.000466,0.000466,0.000240,0.124517,-0.000617,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000028,0.000021,0.000229,0.000584,0.000584,0.000233,0.123793,-0.000724,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000027,0.000019,0.000229,0.000629,0.000629,0.000224,0.123037,-0.000757,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000026,0.000017,0.000229,0.000592,0.000592,0.000216,0.122329,-0.000708,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000025,0.000016,0.000229,0.000539,0.000539,0.000207,0.121684,-0.000645,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000024,0.000014,0.000229,0.000514,0.000514,0.000197,0.121073,-0.000610,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000023,0.000013,0.000228,0.000423,0.000423,0.000188,0.120562,-0.000511,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000022,0.000012,0.000228,0.000296,0.000296,0.000178,0.120185,-0.000378,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000021,0.000012,0.000228,0.000149,0.000149,0.000169,0.119957,-0.000227,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000020,0.000012,0.000228,0.000007,0.000007,0.000161,0.119874,-0.000084,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000019,0.000011,0.000228,0.000000,0.000000,0.000154,0.119798,-0.000076,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000018,0.000011,0.000228,0.000000,0.000000,0.000147,0.119723,-0.000075,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000017,0.000011,0.000228,0.000000,0.000000,0.000141,0.119650,-0.000074,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000016,0.000011,0.000229,0.000000,0.000000,0.000136,0.119577,-0.000072,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000016,0.000011,0.000229,0.000000,0.000000,0.000131,0.119506,-0.000071,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000015,0.000011,0.000229,0.000000,0.000000,0.000126,0.119436,-0.000070,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000015,0.000010,0.000229,0.000000,0.000000,0.000122,0.119367,-0.000069,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000010,0.000230,0.000000,0.000000,0.000117,0.119299,-0.000068,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000014,0.000010,0.000230,0.000000,0.000000,0.000114,0.119232,-0.000067,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000013,0.000010,0.000231,0.000000,0.000000,0.000110,0.119166,-0.000066,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000013,0.000010,0.000231,0.000000,0.000000,0.000107,0.119101,-0.000065,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000013,0.000010,0.000231,0.000000,0.000000,0.000104,0.119037,-0.000064,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000012,0.000009,0.000232,0.000086,0.000086,0.000101,0.118890,-0.000147,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620913.csv b/test/channel_loss/channel_forcing/et/cat-2620913.csv new file mode 100644 index 000000000..13d1b78ac --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620913.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001457,0.000265,0.001457,0.000146,0.000146,0.010404,0.425612,-0.004957,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001293,0.000261,0.001293,0.000030,0.000030,0.009373,0.420836,-0.004776,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001154,0.000258,0.001154,0.000000,0.000000,0.008477,0.416153,-0.004683,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001036,0.000254,0.001036,0.000000,0.000000,0.007696,0.411533,-0.004620,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000934,0.000251,0.000935,0.000000,0.000000,0.007012,0.406976,-0.004558,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000847,0.000247,0.000847,0.000000,0.000000,0.006413,0.402479,-0.004497,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000772,0.000244,0.000772,0.000000,0.000000,0.005885,0.398042,-0.004437,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000706,0.000241,0.000707,0.000000,0.000000,0.005420,0.393665,-0.004377,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000649,0.000238,0.000650,0.000000,0.000000,0.005009,0.389346,-0.004319,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000598,0.000234,0.000600,0.000000,0.000000,0.004645,0.385086,-0.004261,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000554,0.000231,0.000556,0.000000,0.000000,0.004322,0.380882,-0.004204,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000515,0.000228,0.000517,0.000000,0.000000,0.004035,0.376735,-0.004147,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000481,0.000225,0.000483,0.000000,0.000000,0.003779,0.372643,-0.004092,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000450,0.000222,0.000453,0.000000,0.000000,0.003551,0.368607,-0.004037,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000423,0.000219,0.000427,0.000115,0.000115,0.003347,0.364511,-0.004096,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000399,0.000216,0.000403,0.000343,0.000343,0.003163,0.360244,-0.004267,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000377,0.000213,0.000382,0.000515,0.000515,0.002999,0.355866,-0.004379,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000358,0.000209,0.000363,0.000602,0.000602,0.002850,0.351459,-0.004406,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000341,0.000206,0.000346,0.000503,0.000503,0.002716,0.347210,-0.004250,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001212,0.000067,0.000121,0.000067,0.000006,0.000325,0.000204,0.000398,0.000476,0.000476,0.002595,0.344120,-0.003090,1.000000,0.000055 +20,2022-08-01 20:00:00,0.001421,0.000149,0.000216,0.000149,0.000007,0.000311,0.000202,0.000466,0.000407,0.000407,0.002486,0.341252,-0.002867,1.000000,0.000121 +21,2022-08-01 21:00:00,0.001486,0.000225,0.000267,0.000225,0.000008,0.000298,0.000200,0.000530,0.000341,0.000341,0.002387,0.338503,-0.002749,1.000000,0.000163 +22,2022-08-01 22:00:00,0.001437,0.000258,0.000270,0.000258,0.000008,0.000287,0.000198,0.000553,0.000282,0.000282,0.002298,0.335797,-0.002706,1.000000,0.000175 +23,2022-08-01 23:00:00,0.001448,0.000292,0.000312,0.000292,0.000009,0.000276,0.000196,0.000577,0.000191,0.000191,0.002218,0.333187,-0.002610,1.000000,0.000194 +24,2022-08-02 00:00:00,0.001429,0.000314,0.000331,0.000314,0.000010,0.000267,0.000194,0.000591,0.000124,0.000124,0.002145,0.330639,-0.002548,1.000000,0.000211 +25,2022-08-02 01:00:00,0.002442,0.000649,0.000916,0.000649,0.000011,0.000258,0.000192,0.000918,0.000051,0.000051,0.002079,0.328620,-0.002019,1.000000,0.000479 +26,2022-08-02 02:00:00,0.002480,0.000828,0.000969,0.000828,0.000011,0.000251,0.000191,0.001091,0.000000,0.000000,0.002019,0.326663,-0.001957,1.000000,0.000619 +27,2022-08-02 03:00:00,0.002451,0.000947,0.000949,0.000947,0.000012,0.000244,0.000189,0.001203,0.000000,0.000000,0.001964,0.324724,-0.001939,1.000000,0.000621 +28,2022-08-02 04:00:00,0.002481,0.000962,0.000966,0.000962,0.000013,0.000237,0.000188,0.001213,0.000000,0.000000,0.001915,0.322824,-0.001900,1.000000,0.000624 +29,2022-08-02 05:00:00,0.002447,0.000950,0.000942,0.000950,0.000014,0.000232,0.000187,0.001195,0.000000,0.000000,0.001870,0.320939,-0.001885,1.000000,0.000617 +30,2022-08-02 06:00:00,0.002429,0.000940,0.000929,0.000940,0.000015,0.000226,0.000185,0.001181,0.000000,0.000000,0.001828,0.319075,-0.001865,1.000000,0.000607 +31,2022-08-02 07:00:00,0.000000,0.000421,0.000000,0.000421,0.000016,0.000222,0.000183,0.000658,0.000000,0.000000,0.001789,0.315756,-0.003319,1.000000,0.000186 +32,2022-08-02 08:00:00,0.000000,0.000186,0.000000,0.000186,0.000017,0.000217,0.000180,0.000419,0.000000,0.000000,0.001753,0.312481,-0.003275,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000212,0.000178,0.000230,0.000000,0.000000,0.001718,0.309250,-0.003231,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000208,0.000175,0.000227,0.000000,0.000000,0.001685,0.306063,-0.003187,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000204,0.000173,0.000224,0.000000,0.000000,0.001654,0.302918,-0.003145,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000201,0.000171,0.000221,0.000000,0.000000,0.001624,0.299816,-0.003103,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000671,0.000052,0.000095,0.000052,0.000022,0.000197,0.000169,0.000271,0.000000,0.000000,0.001596,0.297323,-0.002493,1.000000,0.000043 +38,2022-08-02 14:00:00,0.000654,0.000059,0.000064,0.000059,0.000023,0.000194,0.000167,0.000275,0.000111,0.000111,0.001569,0.294769,-0.002554,1.000000,0.000048 +39,2022-08-02 15:00:00,0.000554,0.000044,0.000016,0.000044,0.000024,0.000190,0.000165,0.000258,0.000286,0.000286,0.001544,0.292023,-0.002745,1.000000,0.000020 +40,2022-08-02 16:00:00,0.000526,0.000018,0.000003,0.000018,0.000025,0.000187,0.000163,0.000231,0.000422,0.000422,0.001519,0.289167,-0.002856,1.000000,0.000004 +41,2022-08-02 17:00:00,0.000533,0.000004,0.000000,0.000004,0.000026,0.000184,0.000161,0.000215,0.000508,0.000508,0.001495,0.286273,-0.002894,1.000000,0.000001 +42,2022-08-02 18:00:00,0.000596,0.000001,0.000000,0.000001,0.000027,0.000181,0.000158,0.000210,0.000554,0.000554,0.001472,0.283435,-0.002838,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000206,0.000000,0.000000,0.000000,0.000029,0.000179,0.000156,0.000207,0.000496,0.000496,0.001450,0.280308,-0.003127,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000201,0.000000,0.000000,0.000000,0.000030,0.000176,0.000154,0.000206,0.000462,0.000462,0.001428,0.277251,-0.003057,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000191,0.000000,0.000000,0.000000,0.000031,0.000173,0.000152,0.000204,0.000464,0.000464,0.001406,0.274223,-0.003028,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000196,0.000000,0.000000,0.000000,0.000032,0.000171,0.000149,0.000203,0.000403,0.000403,0.001385,0.271300,-0.002922,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000195,0.000000,0.000000,0.000000,0.000033,0.000168,0.000147,0.000201,0.000289,0.000289,0.001364,0.268529,-0.002771,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000194,0.000000,0.000000,0.000000,0.000035,0.000165,0.000145,0.000200,0.000154,0.000154,0.001344,0.265926,-0.002603,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000200,0.000004,0.000007,0.000004,0.000036,0.000163,0.000144,0.000203,0.000017,0.000017,0.001325,0.263492,-0.002434,1.000000,0.000003 +50,2022-08-03 02:00:00,0.000200,0.000007,0.000009,0.000007,0.000037,0.000161,0.000142,0.000205,0.000000,0.000000,0.001306,0.261107,-0.002386,1.000000,0.000005 +51,2022-08-03 03:00:00,0.000200,0.000009,0.000009,0.000009,0.000039,0.000158,0.000140,0.000205,0.000000,0.000000,0.001288,0.258753,-0.002354,1.000000,0.000006 +52,2022-08-03 04:00:00,0.000200,0.000009,0.000009,0.000009,0.000040,0.000156,0.000138,0.000205,0.000000,0.000000,0.001270,0.256431,-0.002322,1.000000,0.000006 +53,2022-08-03 05:00:00,0.000200,0.000009,0.000009,0.000009,0.000041,0.000154,0.000137,0.000204,0.000000,0.000000,0.001253,0.254140,-0.002291,1.000000,0.000006 +54,2022-08-03 06:00:00,0.000200,0.000009,0.000009,0.000009,0.000043,0.000152,0.000135,0.000203,0.000000,0.000000,0.001236,0.251880,-0.002260,1.000000,0.000006 +55,2022-08-03 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000044,0.000150,0.000133,0.000198,0.000000,0.000000,0.001219,0.249461,-0.002419,1.000000,0.000002 +56,2022-08-03 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000045,0.000148,0.000131,0.000195,0.000000,0.000000,0.001203,0.247075,-0.002386,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000146,0.000130,0.000192,0.000000,0.000000,0.001187,0.244721,-0.002354,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000144,0.000128,0.000192,0.000000,0.000000,0.001171,0.242398,-0.002323,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000142,0.000126,0.000191,0.000000,0.000000,0.001155,0.240106,-0.002292,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000140,0.000124,0.000191,0.000000,0.000000,0.001140,0.237845,-0.002261,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000138,0.000123,0.000190,0.000000,0.000000,0.001124,0.235615,-0.002231,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000136,0.000121,0.000190,0.000107,0.000107,0.001109,0.233308,-0.002306,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000134,0.000119,0.000189,0.000346,0.000346,0.001094,0.230797,-0.002511,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000132,0.000117,0.000189,0.000494,0.000494,0.001079,0.228173,-0.002624,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000130,0.000115,0.000188,0.000609,0.000609,0.001064,0.225471,-0.002702,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000129,0.000113,0.000188,0.000583,0.000583,0.001049,0.222831,-0.002640,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000061,0.000127,0.000111,0.000188,0.000515,0.000515,0.001033,0.220294,-0.002537,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000154,0.000000,0.000000,0.000000,0.000062,0.000125,0.000110,0.000187,0.000457,0.000457,0.001018,0.218000,-0.002294,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000021,0.000000,0.000000,0.000000,0.000064,0.000123,0.000108,0.000187,0.000429,0.000429,0.001003,0.215633,-0.002367,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000121,0.000106,0.000186,0.000355,0.000355,0.000988,0.213350,-0.002283,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000119,0.000104,0.000186,0.000268,0.000268,0.000974,0.211183,-0.002167,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000117,0.000103,0.000186,0.000166,0.000166,0.000959,0.209146,-0.002037,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000116,0.000102,0.000186,0.000027,0.000027,0.000945,0.207274,-0.001872,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000114,0.000100,0.000185,0.000000,0.000000,0.000931,0.205453,-0.001821,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000112,0.000099,0.000185,0.000000,0.000000,0.000918,0.203656,-0.001797,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000111,0.000098,0.000185,0.000000,0.000000,0.000905,0.201884,-0.001773,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000109,0.000096,0.000185,0.000000,0.000000,0.000892,0.200135,-0.001749,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000108,0.000095,0.000185,0.000000,0.000000,0.000879,0.198410,-0.001725,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000106,0.000094,0.000185,0.000000,0.000000,0.000867,0.196708,-0.001702,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000104,0.000092,0.000185,0.000000,0.000000,0.000855,0.195028,-0.001679,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000103,0.000091,0.000185,0.000000,0.000000,0.000843,0.193371,-0.001657,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000102,0.000090,0.000185,0.000000,0.000000,0.000831,0.191737,-0.001635,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000100,0.000089,0.000186,0.000000,0.000000,0.000820,0.190124,-0.001613,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000099,0.000088,0.000186,0.000000,0.000000,0.000809,0.188533,-0.001591,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000097,0.000086,0.000186,0.000000,0.000000,0.000798,0.186963,-0.001570,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000096,0.000085,0.000186,0.000106,0.000106,0.000787,0.185309,-0.001654,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000095,0.000084,0.000186,0.000345,0.000345,0.000776,0.183442,-0.001867,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000093,0.000082,0.000187,0.000515,0.000515,0.000765,0.181432,-0.002009,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000092,0.000081,0.000187,0.000606,0.000606,0.000754,0.179360,-0.002073,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000091,0.000079,0.000187,0.000679,0.000679,0.000742,0.177243,-0.002117,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000089,0.000078,0.000187,0.000624,0.000624,0.000731,0.175208,-0.002035,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000088,0.000076,0.000187,0.000562,0.000562,0.000719,0.173262,-0.001946,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000086,0.000075,0.000188,0.000512,0.000512,0.000707,0.171392,-0.001870,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000085,0.000073,0.000188,0.000431,0.000431,0.000696,0.169627,-0.001766,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000083,0.000072,0.000188,0.000317,0.000317,0.000685,0.167997,-0.001629,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000082,0.000071,0.000188,0.000174,0.000174,0.000674,0.166531,-0.001466,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000081,0.000070,0.000189,0.000030,0.000030,0.000663,0.165226,-0.001305,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000080,0.000069,0.000189,0.000000,0.000000,0.000653,0.163969,-0.001258,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000078,0.000068,0.000189,0.000000,0.000000,0.000643,0.162728,-0.001241,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000077,0.000067,0.000190,0.000000,0.000000,0.000633,0.161504,-0.001224,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000076,0.000066,0.000190,0.000000,0.000000,0.000623,0.160296,-0.001208,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000075,0.000066,0.000191,0.000000,0.000000,0.000614,0.159105,-0.001192,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000074,0.000065,0.000191,0.000000,0.000000,0.000605,0.157929,-0.001176,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000073,0.000064,0.000192,0.000000,0.000000,0.000596,0.156769,-0.001160,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000072,0.000063,0.000192,0.000000,0.000000,0.000588,0.155625,-0.001144,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000071,0.000062,0.000193,0.000000,0.000000,0.000579,0.154496,-0.001129,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000070,0.000061,0.000193,0.000000,0.000000,0.000571,0.153382,-0.001114,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000069,0.000060,0.000194,0.000000,0.000000,0.000563,0.152284,-0.001099,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000068,0.000060,0.000194,0.000000,0.000000,0.000555,0.151199,-0.001084,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000067,0.000059,0.000195,0.000119,0.000119,0.000547,0.150013,-0.001187,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000066,0.000058,0.000196,0.000357,0.000357,0.000539,0.148607,-0.001406,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000065,0.000057,0.000196,0.000518,0.000518,0.000531,0.147061,-0.001545,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000064,0.000055,0.000197,0.000627,0.000627,0.000523,0.145428,-0.001633,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000063,0.000054,0.000197,0.000608,0.000608,0.000515,0.143836,-0.001593,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000062,0.000053,0.000198,0.000571,0.000571,0.000506,0.142302,-0.001534,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000061,0.000052,0.000199,0.000501,0.000501,0.000497,0.140858,-0.001444,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000059,0.000051,0.000199,0.000486,0.000486,0.000489,0.139447,-0.001411,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000001,0.000000,0.000000,0.000000,0.000141,0.000058,0.000050,0.000200,0.000401,0.000401,0.000480,0.138140,-0.001307,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000009,0.000000,0.000000,0.000000,0.000143,0.000057,0.000049,0.000200,0.000298,0.000298,0.000472,0.136960,-0.001180,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000144,0.000056,0.000048,0.000201,0.000165,0.000165,0.000464,0.135919,-0.001041,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000030,0.000000,0.000000,0.000000,0.000146,0.000055,0.000048,0.000201,0.000043,0.000043,0.000456,0.135041,-0.000878,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000056,0.000000,0.000001,0.000000,0.000147,0.000055,0.000047,0.000202,0.000000,0.000000,0.000448,0.134242,-0.000799,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000021,0.000000,0.000000,0.000000,0.000149,0.000054,0.000046,0.000203,0.000000,0.000000,0.000441,0.133421,-0.000822,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000007,0.000000,0.000000,0.000000,0.000151,0.000053,0.000046,0.000203,0.000000,0.000000,0.000434,0.132597,-0.000824,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000030,0.000000,0.000000,0.000000,0.000152,0.000052,0.000045,0.000204,0.000000,0.000000,0.000427,0.131806,-0.000791,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000018,0.000000,0.000000,0.000000,0.000154,0.000051,0.000045,0.000205,0.000000,0.000000,0.000421,0.131013,-0.000792,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000050,0.000044,0.000206,0.000000,0.000000,0.000414,0.130214,-0.000799,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000050,0.000043,0.000206,0.000000,0.000000,0.000408,0.129426,-0.000788,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000049,0.000043,0.000207,0.000000,0.000000,0.000402,0.128648,-0.000778,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000048,0.000042,0.000208,0.000000,0.000000,0.000396,0.127880,-0.000767,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000047,0.000042,0.000209,0.000000,0.000000,0.000391,0.127123,-0.000757,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000047,0.000041,0.000210,0.000000,0.000000,0.000385,0.126376,-0.000747,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000046,0.000041,0.000210,0.000000,0.000000,0.000379,0.125639,-0.000737,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000045,0.000040,0.000211,0.000101,0.000101,0.000374,0.124812,-0.000827,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000045,0.000039,0.000212,0.000327,0.000327,0.000368,0.123773,-0.001039,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000044,0.000038,0.000213,0.000493,0.000493,0.000363,0.122584,-0.001189,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000043,0.000037,0.000214,0.000602,0.000602,0.000357,0.121304,-0.001280,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000043,0.000036,0.000215,0.000662,0.000662,0.000350,0.119981,-0.001323,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000042,0.000035,0.000215,0.000626,0.000626,0.000344,0.118712,-0.001269,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000041,0.000034,0.000216,0.000569,0.000569,0.000338,0.117516,-0.001196,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000040,0.000034,0.000217,0.000511,0.000511,0.000331,0.116394,-0.001122,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000039,0.000033,0.000217,0.000433,0.000433,0.000325,0.115363,-0.001031,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000039,0.000032,0.000218,0.000309,0.000309,0.000318,0.114468,-0.000895,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000032,0.000219,0.000166,0.000166,0.000312,0.113727,-0.000741,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000037,0.000031,0.000219,0.000026,0.000026,0.000306,0.113135,-0.000593,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000036,0.000031,0.000220,0.000000,0.000000,0.000300,0.112575,-0.000560,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000036,0.000030,0.000221,0.000000,0.000000,0.000295,0.112023,-0.000552,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000035,0.000030,0.000222,0.000000,0.000000,0.000290,0.111478,-0.000545,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000035,0.000030,0.000223,0.000000,0.000000,0.000285,0.110941,-0.000537,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000034,0.000029,0.000224,0.000000,0.000000,0.000280,0.110411,-0.000530,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000033,0.000029,0.000224,0.000000,0.000000,0.000275,0.109888,-0.000523,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000033,0.000028,0.000225,0.000000,0.000000,0.000271,0.109371,-0.000516,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000032,0.000028,0.000226,0.000000,0.000000,0.000267,0.108862,-0.000509,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000032,0.000028,0.000227,0.000000,0.000000,0.000262,0.108360,-0.000502,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000031,0.000027,0.000228,0.000000,0.000000,0.000258,0.107864,-0.000496,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000031,0.000027,0.000229,0.000000,0.000000,0.000254,0.107375,-0.000489,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000030,0.000027,0.000230,0.000000,0.000000,0.000251,0.106893,-0.000482,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000030,0.000026,0.000231,0.000098,0.000098,0.000247,0.106321,-0.000572,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000029,0.000026,0.000232,0.000340,0.000340,0.000243,0.105517,-0.000804,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000029,0.000025,0.000233,0.000504,0.000504,0.000239,0.104562,-0.000955,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000028,0.000024,0.000233,0.000601,0.000601,0.000234,0.103525,-0.001037,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000028,0.000023,0.000234,0.000630,0.000630,0.000230,0.102473,-0.001052,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000027,0.000023,0.000235,0.000575,0.000575,0.000225,0.101489,-0.000984,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000027,0.000022,0.000236,0.000528,0.000528,0.000220,0.100564,-0.000925,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000026,0.000021,0.000237,0.000479,0.000479,0.000215,0.099701,-0.000864,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000025,0.000021,0.000237,0.000399,0.000399,0.000210,0.098928,-0.000773,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000025,0.000020,0.000238,0.000283,0.000283,0.000206,0.098279,-0.000649,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000024,0.000020,0.000239,0.000131,0.000131,0.000201,0.097790,-0.000490,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000019,0.000240,0.000007,0.000007,0.000197,0.097428,-0.000361,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000023,0.000019,0.000240,0.000000,0.000000,0.000193,0.097079,-0.000349,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000023,0.000019,0.000241,0.000000,0.000000,0.000189,0.096735,-0.000344,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000022,0.000019,0.000242,0.000000,0.000000,0.000185,0.096395,-0.000340,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000022,0.000018,0.000243,0.000000,0.000000,0.000181,0.096060,-0.000335,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000222,0.000022,0.000018,0.000244,0.000000,0.000000,0.000178,0.095733,-0.000327,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000003,0.000000,0.000000,0.000000,0.000224,0.000021,0.000018,0.000245,0.000000,0.000000,0.000175,0.095409,-0.000323,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000003,0.000000,0.000000,0.000000,0.000225,0.000021,0.000018,0.000246,0.000000,0.000000,0.000172,0.095090,-0.000319,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000003,0.000000,0.000000,0.000000,0.000226,0.000020,0.000017,0.000246,0.000000,0.000000,0.000169,0.094775,-0.000315,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000003,0.000000,0.000000,0.000000,0.000227,0.000020,0.000017,0.000247,0.000000,0.000000,0.000166,0.094465,-0.000311,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000248,0.000000,0.000000,0.000163,0.094159,-0.000306,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000002,0.000000,0.000000,0.000000,0.000230,0.000019,0.000017,0.000249,0.000000,0.000000,0.000161,0.093855,-0.000304,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000019,0.000017,0.000250,0.000000,0.000000,0.000158,0.093554,-0.000301,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000016,0.000251,0.000082,0.000000,0.000156,0.093257,-0.000297,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000016,0.000252,0.000326,0.000000,0.000153,0.092963,-0.000293,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000016,0.000253,0.000473,0.000000,0.000151,0.092674,-0.000289,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000016,0.000254,0.000593,0.000000,0.000149,0.092389,-0.000285,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000015,0.000255,0.000629,0.000000,0.000146,0.092107,-0.000282,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000015,0.000256,0.000591,0.000000,0.000144,0.091829,-0.000278,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000015,0.000257,0.000531,0.000000,0.000142,0.091555,-0.000274,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000015,0.000258,0.000494,0.000000,0.000140,0.091285,-0.000270,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000017,0.000015,0.000259,0.000415,0.000000,0.000138,0.091018,-0.000267,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000295,0.000000,0.000136,0.090755,-0.000263,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000149,0.000000,0.000134,0.090495,-0.000260,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000014,0.000261,0.000007,0.000000,0.000132,0.090239,-0.000256,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000016,0.000014,0.000262,0.000000,0.000000,0.000130,0.089986,-0.000253,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000016,0.000014,0.000263,0.000000,0.000000,0.000128,0.089736,-0.000249,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000014,0.000264,0.000000,0.000000,0.000127,0.089490,-0.000246,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000265,0.000000,0.000000,0.000125,0.089248,-0.000243,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000015,0.000013,0.000266,0.000000,0.000000,0.000123,0.089008,-0.000240,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000015,0.000013,0.000267,0.000000,0.000000,0.000122,0.088772,-0.000236,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000015,0.000013,0.000268,0.000000,0.000000,0.000120,0.088539,-0.000233,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000013,0.000269,0.000000,0.000000,0.000118,0.088309,-0.000230,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000014,0.000012,0.000270,0.000000,0.000000,0.000117,0.088082,-0.000227,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000257,0.000014,0.000012,0.000270,0.000000,0.000000,0.000115,0.087858,-0.000224,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000258,0.000014,0.000012,0.000271,0.000000,0.000000,0.000113,0.087637,-0.000221,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000259,0.000014,0.000012,0.000272,0.000000,0.000000,0.000112,0.087419,-0.000218,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000260,0.000013,0.000012,0.000273,0.000088,0.000000,0.000110,0.087204,-0.000215,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620914.csv b/test/channel_loss/channel_forcing/et/cat-2620914.csv new file mode 100644 index 000000000..d6baa3cae --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620914.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001520,0.000716,0.001520,0.000144,0.000144,0.010793,0.425510,-0.005059,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001406,0.000705,0.001406,0.000030,0.000030,0.010091,0.420642,-0.004868,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001309,0.000694,0.001309,0.000000,0.000000,0.009476,0.415881,-0.004761,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001224,0.000683,0.001224,0.000000,0.000000,0.008935,0.411194,-0.004686,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001151,0.000672,0.001151,0.000000,0.000000,0.008456,0.406582,-0.004612,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001086,0.000661,0.001086,0.000000,0.000000,0.008032,0.402042,-0.004540,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.001029,0.000651,0.001030,0.000000,0.000000,0.007654,0.397574,-0.004468,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000979,0.000641,0.000980,0.000000,0.000000,0.007315,0.393176,-0.004398,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000934,0.000631,0.000935,0.000000,0.000000,0.007012,0.388848,-0.004328,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000894,0.000621,0.000896,0.000000,0.000000,0.006738,0.384588,-0.004260,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000858,0.000611,0.000860,0.000000,0.000000,0.006491,0.380395,-0.004193,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000826,0.000601,0.000828,0.000000,0.000000,0.006266,0.376268,-0.004127,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000797,0.000592,0.000799,0.000000,0.000000,0.006061,0.372206,-0.004062,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000770,0.000583,0.000773,0.000000,0.000000,0.005874,0.368208,-0.003998,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000746,0.000573,0.000749,0.000117,0.000117,0.005701,0.364159,-0.004050,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000723,0.000563,0.000727,0.000351,0.000351,0.005542,0.359942,-0.004217,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000702,0.000553,0.000706,0.000523,0.000523,0.005393,0.355622,-0.004319,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000683,0.000543,0.000687,0.000615,0.000615,0.005253,0.351281,-0.004342,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000664,0.000533,0.000669,0.000509,0.000509,0.005122,0.347112,-0.004169,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001028,0.000014,0.000026,0.000014,0.000006,0.000647,0.000526,0.000668,0.000481,0.000481,0.005001,0.344022,-0.003090,1.000000,0.000012 +20,2022-08-01 20:00:00,0.001133,0.000032,0.000045,0.000032,0.000006,0.000632,0.000519,0.000670,0.000406,0.000406,0.004888,0.341140,-0.002882,1.000000,0.000026 +21,2022-08-01 21:00:00,0.001261,0.000057,0.000073,0.000057,0.000007,0.000617,0.000513,0.000681,0.000330,0.000330,0.004784,0.338476,-0.002663,1.000000,0.000042 +22,2022-08-01 22:00:00,0.001151,0.000063,0.000064,0.000063,0.000008,0.000604,0.000507,0.000674,0.000278,0.000278,0.004687,0.335807,-0.002670,1.000000,0.000043 +23,2022-08-01 23:00:00,0.001179,0.000075,0.000081,0.000075,0.000008,0.000592,0.000501,0.000675,0.000188,0.000188,0.004596,0.333278,-0.002528,1.000000,0.000049 +24,2022-08-02 00:00:00,0.001195,0.000085,0.000094,0.000085,0.000009,0.000580,0.000495,0.000674,0.000125,0.000125,0.004511,0.330855,-0.002423,1.000000,0.000058 +25,2022-08-02 01:00:00,0.002153,0.000223,0.000333,0.000223,0.000010,0.000569,0.000492,0.000802,0.000050,0.000050,0.004434,0.329251,-0.001604,1.000000,0.000168 +26,2022-08-02 02:00:00,0.002208,0.000301,0.000363,0.000301,0.000010,0.000560,0.000488,0.000871,0.000000,0.000000,0.004362,0.327747,-0.001505,1.000000,0.000230 +27,2022-08-02 03:00:00,0.002194,0.000354,0.000358,0.000354,0.000011,0.000551,0.000485,0.000916,0.000000,0.000000,0.004296,0.326257,-0.001489,1.000000,0.000234 +28,2022-08-02 04:00:00,0.002260,0.000369,0.000377,0.000369,0.000012,0.000542,0.000481,0.000924,0.000000,0.000000,0.004235,0.324837,-0.001420,1.000000,0.000241 +29,2022-08-02 05:00:00,0.002129,0.000351,0.000337,0.000351,0.000013,0.000535,0.000478,0.000898,0.000000,0.000000,0.004178,0.323349,-0.001488,1.000000,0.000227 +30,2022-08-02 06:00:00,0.002074,0.000336,0.000320,0.000336,0.000013,0.000527,0.000474,0.000877,0.000000,0.000000,0.004125,0.321848,-0.001502,1.000000,0.000212 +31,2022-08-02 07:00:00,0.000000,0.000148,0.000000,0.000148,0.000014,0.000520,0.000467,0.000682,0.000000,0.000000,0.004071,0.318644,-0.003204,1.000000,0.000064 +32,2022-08-02 08:00:00,0.000000,0.000064,0.000000,0.000064,0.000015,0.000513,0.000459,0.000592,0.000000,0.000000,0.004018,0.315490,-0.003153,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000016,0.000506,0.000452,0.000522,0.000000,0.000000,0.003964,0.312386,-0.003104,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000499,0.000445,0.000516,0.000000,0.000000,0.003911,0.309332,-0.003055,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000491,0.000438,0.000509,0.000000,0.000000,0.003857,0.306325,-0.003007,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000484,0.000431,0.000503,0.000000,0.000000,0.003804,0.303366,-0.002959,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000572,0.000015,0.000027,0.000015,0.000020,0.000477,0.000426,0.000512,0.000000,0.000000,0.003753,0.300990,-0.002376,1.000000,0.000012 +38,2022-08-02 14:00:00,0.000538,0.000015,0.000015,0.000015,0.000021,0.000471,0.000420,0.000506,0.000112,0.000112,0.003702,0.298520,-0.002470,1.000000,0.000012 +39,2022-08-02 15:00:00,0.000538,0.000012,0.000005,0.000012,0.000022,0.000464,0.000414,0.000497,0.000294,0.000294,0.003652,0.295920,-0.002600,1.000000,0.000005 +40,2022-08-02 16:00:00,0.000559,0.000005,0.000001,0.000005,0.000023,0.000457,0.000408,0.000485,0.000431,0.000431,0.003602,0.293249,-0.002671,1.000000,0.000002 +41,2022-08-02 17:00:00,0.000548,0.000001,0.000000,0.000001,0.000024,0.000451,0.000401,0.000476,0.000516,0.000516,0.003553,0.290527,-0.002722,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000607,0.000000,0.000000,0.000000,0.000025,0.000444,0.000395,0.000469,0.000564,0.000564,0.003503,0.287859,-0.002668,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000188,0.000000,0.000000,0.000000,0.000026,0.000438,0.000388,0.000463,0.000509,0.000509,0.003454,0.284874,-0.002985,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000115,0.000000,0.000000,0.000000,0.000027,0.000431,0.000381,0.000458,0.000465,0.000465,0.003404,0.281908,-0.002966,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000096,0.000000,0.000000,0.000000,0.000028,0.000424,0.000374,0.000452,0.000452,0.000452,0.003354,0.278984,-0.002924,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000096,0.000000,0.000000,0.000000,0.000029,0.000418,0.000368,0.000447,0.000399,0.000399,0.003304,0.276158,-0.002826,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000110,0.000000,0.000000,0.000000,0.000030,0.000411,0.000361,0.000441,0.000289,0.000289,0.003254,0.273499,-0.002659,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000110,0.000000,0.000000,0.000000,0.000031,0.000405,0.000356,0.000436,0.000154,0.000154,0.003205,0.271013,-0.002486,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000096,0.000000,0.000001,0.000000,0.000032,0.000398,0.000350,0.000431,0.000017,0.000017,0.003157,0.268688,-0.002325,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000123,0.000001,0.000001,0.000001,0.000033,0.000392,0.000345,0.000426,0.000000,0.000000,0.003110,0.266442,-0.002246,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000150,0.000001,0.000002,0.000001,0.000034,0.000386,0.000340,0.000422,0.000000,0.000000,0.003064,0.264257,-0.002185,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000153,0.000002,0.000002,0.000002,0.000036,0.000380,0.000335,0.000417,0.000000,0.000000,0.003019,0.262110,-0.002148,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000153,0.000002,0.000002,0.000002,0.000037,0.000374,0.000330,0.000413,0.000000,0.000000,0.002974,0.259996,-0.002114,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000174,0.000002,0.000002,0.000002,0.000038,0.000369,0.000325,0.000409,0.000000,0.000000,0.002931,0.257936,-0.002060,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000039,0.000363,0.000320,0.000403,0.000000,0.000000,0.002888,0.255740,-0.002196,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000040,0.000357,0.000315,0.000398,0.000000,0.000000,0.002846,0.253578,-0.002162,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000352,0.000310,0.000394,0.000000,0.000000,0.002804,0.251450,-0.002128,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000347,0.000305,0.000389,0.000000,0.000000,0.002762,0.249356,-0.002094,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000341,0.000300,0.000385,0.000000,0.000000,0.002721,0.247295,-0.002061,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000336,0.000296,0.000381,0.000000,0.000000,0.002681,0.245266,-0.002029,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000331,0.000291,0.000377,0.000000,0.000000,0.002641,0.243270,-0.001997,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000326,0.000286,0.000373,0.000109,0.000109,0.002601,0.241197,-0.002072,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000321,0.000281,0.000369,0.000351,0.000351,0.002562,0.238920,-0.002278,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000315,0.000275,0.000366,0.000500,0.000500,0.002522,0.236531,-0.002389,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000310,0.000269,0.000362,0.000616,0.000616,0.002481,0.234066,-0.002465,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000305,0.000264,0.000358,0.000593,0.000593,0.002440,0.231662,-0.002404,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000299,0.000258,0.000354,0.000517,0.000517,0.002399,0.229371,-0.002291,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000729,0.000003,0.000005,0.000003,0.000055,0.000294,0.000255,0.000353,0.000465,0.000465,0.002360,0.227880,-0.001491,1.000000,0.000002 +69,2022-08-03 21:00:00,0.000095,0.000001,0.000000,0.000001,0.000057,0.000289,0.000250,0.000347,0.000427,0.000427,0.002320,0.225831,-0.002049,1.000000,0.000001 +70,2022-08-03 22:00:00,0.000000,0.000001,0.000000,0.000001,0.000058,0.000284,0.000245,0.000343,0.000354,0.000354,0.002282,0.223793,-0.002038,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000279,0.000241,0.000339,0.000267,0.000267,0.002243,0.221872,-0.001921,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000275,0.000237,0.000335,0.000166,0.000166,0.002205,0.220080,-0.001791,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000062,0.000270,0.000233,0.000332,0.000027,0.000027,0.002168,0.218454,-0.001626,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000265,0.000229,0.000328,0.000000,0.000000,0.002133,0.216880,-0.001574,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000064,0.000261,0.000226,0.000325,0.000000,0.000000,0.002098,0.215331,-0.001549,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000256,0.000222,0.000322,0.000000,0.000000,0.002063,0.213807,-0.001525,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000252,0.000219,0.000319,0.000000,0.000000,0.002030,0.212306,-0.001501,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000248,0.000215,0.000316,0.000000,0.000000,0.001997,0.210829,-0.001477,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000244,0.000212,0.000314,0.000000,0.000000,0.001965,0.209375,-0.001454,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000240,0.000208,0.000311,0.000000,0.000000,0.001934,0.207944,-0.001431,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000236,0.000205,0.000308,0.000000,0.000000,0.001903,0.206536,-0.001408,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000232,0.000202,0.000306,0.000000,0.000000,0.001873,0.205150,-0.001386,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000228,0.000199,0.000303,0.000000,0.000000,0.001843,0.203785,-0.001364,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000225,0.000196,0.000301,0.000000,0.000000,0.001814,0.202443,-0.001343,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000221,0.000193,0.000299,0.000000,0.000000,0.001786,0.201121,-0.001322,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000217,0.000189,0.000297,0.000109,0.000109,0.001758,0.199713,-0.001408,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000214,0.000185,0.000294,0.000353,0.000353,0.001729,0.198088,-0.001626,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000210,0.000181,0.000292,0.000519,0.000519,0.001700,0.196324,-0.001764,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000207,0.000177,0.000290,0.000610,0.000610,0.001671,0.194498,-0.001826,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000203,0.000173,0.000287,0.000691,0.000691,0.001641,0.192621,-0.001877,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000199,0.000169,0.000285,0.000618,0.000618,0.001611,0.190846,-0.001775,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000195,0.000165,0.000282,0.000564,0.000564,0.001580,0.189153,-0.001694,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000191,0.000161,0.000280,0.000503,0.000503,0.001550,0.187545,-0.001608,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000187,0.000157,0.000277,0.000424,0.000424,0.001520,0.186041,-0.001505,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000184,0.000154,0.000275,0.000315,0.000315,0.001490,0.184667,-0.001373,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000180,0.000151,0.000273,0.000174,0.000174,0.001461,0.183455,-0.001212,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000177,0.000149,0.000271,0.000030,0.000030,0.001434,0.182404,-0.001052,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000173,0.000147,0.000269,0.000000,0.000000,0.001407,0.181398,-0.001006,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000170,0.000144,0.000267,0.000000,0.000000,0.001381,0.180408,-0.000990,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000167,0.000142,0.000265,0.000000,0.000000,0.001356,0.179434,-0.000974,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000164,0.000140,0.000263,0.000000,0.000000,0.001332,0.178475,-0.000959,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000161,0.000138,0.000262,0.000000,0.000000,0.001309,0.177531,-0.000944,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000158,0.000135,0.000260,0.000000,0.000000,0.001286,0.176602,-0.000929,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000155,0.000133,0.000259,0.000000,0.000000,0.001264,0.175688,-0.000914,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000153,0.000131,0.000257,0.000000,0.000000,0.001242,0.174788,-0.000900,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000150,0.000129,0.000256,0.000000,0.000000,0.001221,0.173903,-0.000886,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000147,0.000127,0.000255,0.000000,0.000000,0.001201,0.173031,-0.000872,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000145,0.000125,0.000254,0.000000,0.000000,0.001181,0.172173,-0.000858,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000143,0.000123,0.000253,0.000000,0.000000,0.001161,0.171329,-0.000844,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000140,0.000121,0.000251,0.000120,0.000120,0.001142,0.170379,-0.000949,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000138,0.000118,0.000250,0.000361,0.000361,0.001122,0.169208,-0.001171,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000135,0.000115,0.000249,0.000522,0.000522,0.001102,0.167897,-0.001311,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000133,0.000112,0.000248,0.000633,0.000633,0.001081,0.166497,-0.001400,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000130,0.000109,0.000247,0.000617,0.000617,0.001060,0.165135,-0.001362,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000127,0.000106,0.000245,0.000580,0.000580,0.001038,0.163830,-0.001304,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000125,0.000103,0.000244,0.000503,0.000503,0.001017,0.162622,-0.001208,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000122,0.000100,0.000242,0.000479,0.000479,0.000995,0.161456,-0.001166,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000119,0.000098,0.000241,0.000397,0.000397,0.000973,0.160390,-0.001066,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000037,0.000000,0.000000,0.000000,0.000123,0.000117,0.000095,0.000240,0.000296,0.000296,0.000952,0.159476,-0.000914,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000114,0.000093,0.000238,0.000165,0.000165,0.000932,0.158669,-0.000807,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000092,0.000000,0.000000,0.000000,0.000126,0.000112,0.000092,0.000237,0.000043,0.000043,0.000912,0.158086,-0.000583,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000177,0.000001,0.000002,0.000001,0.000127,0.000109,0.000091,0.000238,0.000000,0.000000,0.000894,0.157636,-0.000450,1.000000,0.000001 +123,2022-08-06 03:00:00,0.000048,0.000001,0.000000,0.000001,0.000128,0.000107,0.000090,0.000236,0.000000,0.000000,0.000876,0.157069,-0.000568,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000001,0.000000,0.000000,0.000000,0.000130,0.000105,0.000088,0.000235,0.000000,0.000000,0.000860,0.156463,-0.000605,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000001,0.000000,0.000000,0.000000,0.000131,0.000103,0.000087,0.000234,0.000000,0.000000,0.000844,0.155868,-0.000596,1.000000,0.000000 +126,2022-08-06 06:00:00,0.000011,0.000000,0.000000,0.000000,0.000132,0.000101,0.000086,0.000233,0.000000,0.000000,0.000828,0.155291,-0.000577,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000099,0.000084,0.000233,0.000000,0.000000,0.000813,0.154712,-0.000578,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000098,0.000083,0.000232,0.000000,0.000000,0.000798,0.154143,-0.000569,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000096,0.000082,0.000232,0.000000,0.000000,0.000784,0.153583,-0.000560,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000137,0.000094,0.000080,0.000231,0.000000,0.000000,0.000771,0.153032,-0.000551,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000092,0.000079,0.000231,0.000000,0.000000,0.000757,0.152489,-0.000543,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000140,0.000091,0.000078,0.000231,0.000000,0.000000,0.000744,0.151955,-0.000534,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000089,0.000077,0.000230,0.000000,0.000000,0.000732,0.151429,-0.000526,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000088,0.000075,0.000230,0.000103,0.000103,0.000719,0.150810,-0.000619,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000143,0.000086,0.000073,0.000230,0.000333,0.000333,0.000706,0.149975,-0.000835,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000145,0.000084,0.000071,0.000229,0.000499,0.000499,0.000692,0.148989,-0.000986,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000146,0.000083,0.000068,0.000229,0.000610,0.000610,0.000678,0.147910,-0.001079,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000081,0.000066,0.000228,0.000672,0.000672,0.000663,0.146787,-0.001123,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000079,0.000063,0.000227,0.000635,0.000635,0.000647,0.145718,-0.001069,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000149,0.000077,0.000061,0.000226,0.000570,0.000570,0.000631,0.144730,-0.000988,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000075,0.000059,0.000226,0.000502,0.000502,0.000615,0.143824,-0.000906,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000073,0.000057,0.000225,0.000427,0.000427,0.000599,0.143006,-0.000818,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000071,0.000055,0.000224,0.000307,0.000307,0.000584,0.142319,-0.000687,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000069,0.000054,0.000223,0.000166,0.000166,0.000568,0.141782,-0.000537,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000067,0.000053,0.000223,0.000026,0.000026,0.000554,0.141391,-0.000390,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000066,0.000052,0.000222,0.000000,0.000000,0.000541,0.141032,-0.000359,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000064,0.000052,0.000222,0.000000,0.000000,0.000528,0.140679,-0.000353,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000063,0.000051,0.000222,0.000000,0.000000,0.000516,0.140331,-0.000348,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000061,0.000050,0.000221,0.000000,0.000000,0.000504,0.139988,-0.000342,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000060,0.000049,0.000221,0.000000,0.000000,0.000494,0.139651,-0.000337,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000059,0.000048,0.000221,0.000000,0.000000,0.000483,0.139320,-0.000332,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000058,0.000048,0.000221,0.000000,0.000000,0.000473,0.138993,-0.000326,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000056,0.000047,0.000221,0.000000,0.000000,0.000464,0.138672,-0.000321,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000055,0.000046,0.000221,0.000000,0.000000,0.000454,0.138356,-0.000316,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000054,0.000045,0.000221,0.000000,0.000000,0.000446,0.138044,-0.000311,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000053,0.000045,0.000221,0.000000,0.000000,0.000437,0.137738,-0.000306,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000052,0.000044,0.000221,0.000000,0.000000,0.000429,0.137436,-0.000302,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000051,0.000043,0.000221,0.000099,0.000099,0.000421,0.137043,-0.000394,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000050,0.000042,0.000221,0.000343,0.000343,0.000412,0.136414,-0.000629,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000049,0.000040,0.000221,0.000507,0.000507,0.000403,0.135634,-0.000780,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000048,0.000038,0.000221,0.000608,0.000608,0.000393,0.134768,-0.000866,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000046,0.000036,0.000221,0.000636,0.000636,0.000382,0.133888,-0.000880,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000045,0.000034,0.000221,0.000580,0.000580,0.000371,0.133077,-0.000811,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000032,0.000220,0.000533,0.000533,0.000359,0.132324,-0.000752,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000042,0.000030,0.000220,0.000474,0.000474,0.000348,0.131641,-0.000683,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000041,0.000029,0.000220,0.000393,0.000393,0.000336,0.131049,-0.000593,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000039,0.000028,0.000219,0.000285,0.000285,0.000324,0.130572,-0.000477,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000038,0.000027,0.000219,0.000131,0.000131,0.000314,0.130255,-0.000317,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000037,0.000027,0.000219,0.000008,0.000008,0.000303,0.130063,-0.000192,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000036,0.000026,0.000219,0.000000,0.000000,0.000294,0.129883,-0.000181,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000035,0.000026,0.000219,0.000000,0.000000,0.000285,0.129705,-0.000178,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000034,0.000025,0.000219,0.000000,0.000000,0.000277,0.129530,-0.000175,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000033,0.000025,0.000219,0.000000,0.000000,0.000270,0.129358,-0.000172,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000003,0.000000,0.000000,0.000000,0.000187,0.000032,0.000025,0.000219,0.000000,0.000000,0.000263,0.129191,-0.000167,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000002,0.000000,0.000000,0.000000,0.000188,0.000031,0.000024,0.000219,0.000000,0.000000,0.000256,0.129026,-0.000165,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000001,0.000000,0.000000,0.000000,0.000189,0.000030,0.000024,0.000219,0.000000,0.000000,0.000249,0.128863,-0.000163,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000002,0.000000,0.000000,0.000000,0.000190,0.000030,0.000024,0.000220,0.000000,0.000000,0.000244,0.128704,-0.000160,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000001,0.000000,0.000000,0.000000,0.000191,0.000029,0.000023,0.000220,0.000000,0.000000,0.000238,0.128546,-0.000158,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000003,0.000000,0.000000,0.000000,0.000192,0.000028,0.000023,0.000220,0.000000,0.000000,0.000233,0.128392,-0.000154,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000001,0.000000,0.000000,0.000000,0.000193,0.000028,0.000022,0.000221,0.000000,0.000000,0.000227,0.128238,-0.000154,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000001,0.000000,0.000000,0.000000,0.000194,0.000027,0.000022,0.000221,0.000000,0.000000,0.000223,0.128088,-0.000151,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000026,0.000022,0.000221,0.000083,0.000083,0.000218,0.127857,-0.000231,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000026,0.000020,0.000222,0.000331,0.000331,0.000213,0.127385,-0.000472,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000025,0.000019,0.000222,0.000481,0.000481,0.000207,0.126773,-0.000612,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000024,0.000017,0.000222,0.000596,0.000596,0.000200,0.126058,-0.000715,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000023,0.000016,0.000222,0.000631,0.000631,0.000192,0.125319,-0.000739,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000022,0.000014,0.000222,0.000591,0.000591,0.000184,0.124632,-0.000688,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000021,0.000013,0.000222,0.000526,0.000526,0.000175,0.124019,-0.000613,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000020,0.000011,0.000222,0.000481,0.000481,0.000166,0.123461,-0.000559,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000019,0.000010,0.000221,0.000410,0.000410,0.000158,0.122980,-0.000480,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000018,0.000009,0.000221,0.000294,0.000294,0.000149,0.122622,-0.000359,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000017,0.000009,0.000221,0.000149,0.000149,0.000141,0.122412,-0.000210,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000016,0.000009,0.000221,0.000007,0.000007,0.000133,0.122345,-0.000067,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000015,0.000009,0.000221,0.000000,0.000000,0.000127,0.122286,-0.000059,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000015,0.000008,0.000221,0.000000,0.000000,0.000120,0.122228,-0.000058,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000014,0.000008,0.000222,0.000000,0.000000,0.000115,0.122171,-0.000057,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000013,0.000008,0.000222,0.000000,0.000000,0.000110,0.122115,-0.000056,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000013,0.000008,0.000222,0.000000,0.000000,0.000105,0.122060,-0.000055,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000012,0.000008,0.000222,0.000000,0.000000,0.000101,0.122005,-0.000054,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000012,0.000008,0.000223,0.000000,0.000000,0.000097,0.121952,-0.000054,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000011,0.000008,0.000223,0.000000,0.000000,0.000093,0.121899,-0.000053,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000011,0.000008,0.000224,0.000000,0.000000,0.000090,0.121847,-0.000052,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000011,0.000007,0.000224,0.000000,0.000000,0.000087,0.121796,-0.000051,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000010,0.000007,0.000224,0.000000,0.000000,0.000084,0.121746,-0.000050,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000010,0.000007,0.000225,0.000000,0.000000,0.000081,0.121697,-0.000049,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000010,0.000007,0.000225,0.000090,0.000090,0.000079,0.121559,-0.000137,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620915.csv b/test/channel_loss/channel_forcing/et/cat-2620915.csv new file mode 100644 index 000000000..78399dc23 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620915.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001462,0.000302,0.001462,0.000142,0.000142,0.010437,0.425613,-0.004957,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001302,0.000298,0.001302,0.000031,0.000031,0.009433,0.420833,-0.004780,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001166,0.000294,0.001167,0.000000,0.000000,0.008560,0.416149,-0.004684,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001051,0.000290,0.001051,0.000000,0.000000,0.007799,0.411528,-0.004621,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000952,0.000286,0.000952,0.000000,0.000000,0.007133,0.406971,-0.004558,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000867,0.000282,0.000867,0.000000,0.000000,0.006548,0.402475,-0.004496,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000793,0.000278,0.000793,0.000000,0.000000,0.006034,0.398040,-0.004435,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000728,0.000275,0.000729,0.000000,0.000000,0.005580,0.393666,-0.004374,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000672,0.000271,0.000673,0.000000,0.000000,0.005179,0.389351,-0.004315,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000623,0.000267,0.000624,0.000000,0.000000,0.004823,0.385095,-0.004256,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000579,0.000263,0.000581,0.000000,0.000000,0.004507,0.380896,-0.004198,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000541,0.000260,0.000543,0.000000,0.000000,0.004226,0.376755,-0.004141,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000507,0.000256,0.000510,0.000000,0.000000,0.003975,0.372670,-0.004085,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000477,0.000253,0.000480,0.000000,0.000000,0.003751,0.368640,-0.004030,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000450,0.000249,0.000454,0.000117,0.000117,0.003550,0.364550,-0.004090,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000426,0.000246,0.000430,0.000345,0.000345,0.003369,0.360291,-0.004259,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000405,0.000242,0.000409,0.000503,0.000503,0.003206,0.355934,-0.004357,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000385,0.000238,0.000390,0.000595,0.000595,0.003059,0.351545,-0.004389,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000368,0.000234,0.000373,0.000508,0.000508,0.002925,0.347302,-0.004243,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000739,0.000009,0.000016,0.000009,0.000006,0.000352,0.000231,0.000367,0.000473,0.000473,0.002805,0.343865,-0.003438,1.000000,0.000007 +20,2022-08-01 20:00:00,0.000939,0.000034,0.000056,0.000034,0.000007,0.000338,0.000229,0.000379,0.000421,0.000421,0.002695,0.340683,-0.003182,1.000000,0.000028 +21,2022-08-01 21:00:00,0.001108,0.000081,0.000116,0.000081,0.000008,0.000325,0.000226,0.000413,0.000338,0.000338,0.002597,0.337734,-0.002949,1.000000,0.000063 +22,2022-08-01 22:00:00,0.000918,0.000084,0.000080,0.000084,0.000008,0.000313,0.000224,0.000406,0.000287,0.000287,0.002507,0.334722,-0.003011,1.000000,0.000059 +23,2022-08-01 23:00:00,0.000898,0.000095,0.000095,0.000095,0.000009,0.000303,0.000221,0.000407,0.000204,0.000204,0.002425,0.331800,-0.002922,1.000000,0.000059 +24,2022-08-02 00:00:00,0.000827,0.000092,0.000095,0.000092,0.000010,0.000293,0.000219,0.000395,0.000132,0.000132,0.002350,0.328919,-0.002881,1.000000,0.000062 +25,2022-08-02 01:00:00,0.001790,0.000312,0.000489,0.000312,0.000010,0.000284,0.000217,0.000607,0.000052,0.000052,0.002282,0.326716,-0.002203,1.000000,0.000239 +26,2022-08-02 02:00:00,0.002360,0.000591,0.000817,0.000591,0.000011,0.000277,0.000215,0.000878,0.000000,0.000000,0.002221,0.324833,-0.001883,1.000000,0.000466 +27,2022-08-02 03:00:00,0.002304,0.000733,0.000783,0.000733,0.000012,0.000269,0.000213,0.001014,0.000000,0.000000,0.002165,0.322954,-0.001879,1.000000,0.000516 +28,2022-08-02 04:00:00,0.002442,0.000832,0.000860,0.000832,0.000013,0.000263,0.000212,0.001108,0.000000,0.000000,0.002114,0.321160,-0.001794,1.000000,0.000544 +29,2022-08-02 05:00:00,0.002168,0.000759,0.000705,0.000759,0.000014,0.000257,0.000210,0.001030,0.000000,0.000000,0.002067,0.319274,-0.001886,1.000000,0.000489 +30,2022-08-02 06:00:00,0.002073,0.000707,0.000652,0.000707,0.000015,0.000251,0.000209,0.000973,0.000000,0.000000,0.002024,0.317372,-0.001902,1.000000,0.000434 +31,2022-08-02 07:00:00,0.000000,0.000304,0.000000,0.000304,0.000016,0.000246,0.000206,0.000566,0.000000,0.000000,0.001984,0.314094,-0.003278,1.000000,0.000130 +32,2022-08-02 08:00:00,0.000000,0.000130,0.000000,0.000130,0.000017,0.000241,0.000203,0.000388,0.000000,0.000000,0.001945,0.310861,-0.003233,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000237,0.000200,0.000254,0.000000,0.000000,0.001909,0.307672,-0.003189,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000232,0.000197,0.000251,0.000000,0.000000,0.001874,0.304526,-0.003146,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000228,0.000195,0.000248,0.000000,0.000000,0.001841,0.301423,-0.003103,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000224,0.000192,0.000245,0.000000,0.000000,0.001809,0.298362,-0.003061,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000507,0.000027,0.000049,0.000027,0.000022,0.000220,0.000190,0.000269,0.000000,0.000000,0.001778,0.295794,-0.002568,1.000000,0.000022 +38,2022-08-02 14:00:00,0.000507,0.000029,0.000030,0.000029,0.000023,0.000216,0.000188,0.000268,0.000114,0.000114,0.001750,0.293167,-0.002626,1.000000,0.000024 +39,2022-08-02 15:00:00,0.000507,0.000022,0.000009,0.000022,0.000024,0.000213,0.000185,0.000259,0.000299,0.000299,0.001722,0.290415,-0.002752,1.000000,0.000010 +40,2022-08-02 16:00:00,0.000507,0.000009,0.000001,0.000009,0.000025,0.000210,0.000183,0.000243,0.000428,0.000428,0.001695,0.287580,-0.002835,1.000000,0.000002 +41,2022-08-02 17:00:00,0.000507,0.000002,0.000000,0.000002,0.000026,0.000206,0.000180,0.000234,0.000515,0.000515,0.001669,0.284699,-0.002881,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000800,0.000006,0.000011,0.000006,0.000027,0.000203,0.000178,0.000236,0.000567,0.000567,0.001644,0.282085,-0.002615,1.000000,0.000005 +43,2022-08-02 19:00:00,0.000234,0.000003,0.000000,0.000003,0.000028,0.000200,0.000175,0.000231,0.000510,0.000510,0.001619,0.279014,-0.003071,1.000000,0.000002 +44,2022-08-02 20:00:00,0.000098,0.000002,0.000000,0.000002,0.000029,0.000197,0.000173,0.000229,0.000473,0.000473,0.001595,0.275887,-0.003127,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000088,0.000000,0.000000,0.000000,0.000031,0.000194,0.000170,0.000225,0.000464,0.000464,0.001571,0.272802,-0.003085,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000088,0.000000,0.000000,0.000000,0.000032,0.000191,0.000167,0.000223,0.000406,0.000406,0.001548,0.269815,-0.002986,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000098,0.000000,0.000000,0.000000,0.000033,0.000188,0.000165,0.000221,0.000291,0.000291,0.001524,0.266994,-0.002821,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000088,0.000000,0.000000,0.000000,0.000034,0.000185,0.000163,0.000220,0.000154,0.000154,0.001502,0.264335,-0.002659,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000088,0.000001,0.000001,0.000001,0.000036,0.000182,0.000161,0.000219,0.000017,0.000017,0.001480,0.261847,-0.002488,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000088,0.000001,0.000002,0.000001,0.000037,0.000180,0.000158,0.000218,0.000000,0.000000,0.001459,0.259409,-0.002438,1.000000,0.000001 +51,2022-08-03 03:00:00,0.000088,0.000001,0.000002,0.000001,0.000038,0.000177,0.000156,0.000217,0.000000,0.000000,0.001438,0.257004,-0.002405,1.000000,0.000001 +52,2022-08-03 04:00:00,0.000088,0.000001,0.000001,0.000001,0.000039,0.000175,0.000154,0.000215,0.000000,0.000000,0.001418,0.254631,-0.002372,1.000000,0.000001 +53,2022-08-03 05:00:00,0.000088,0.000001,0.000001,0.000001,0.000041,0.000172,0.000152,0.000214,0.000000,0.000000,0.001398,0.252291,-0.002340,1.000000,0.000001 +54,2022-08-03 06:00:00,0.000098,0.000002,0.000002,0.000002,0.000042,0.000170,0.000150,0.000213,0.000000,0.000000,0.001378,0.249993,-0.002298,1.000000,0.000001 +55,2022-08-03 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000043,0.000167,0.000148,0.000211,0.000000,0.000000,0.001359,0.247631,-0.002362,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000045,0.000165,0.000146,0.000210,0.000000,0.000000,0.001340,0.245301,-0.002330,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000163,0.000144,0.000209,0.000000,0.000000,0.001322,0.243003,-0.002298,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000160,0.000142,0.000208,0.000000,0.000000,0.001304,0.240736,-0.002267,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000158,0.000140,0.000207,0.000000,0.000000,0.001286,0.238500,-0.002236,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000156,0.000138,0.000206,0.000000,0.000000,0.001269,0.236294,-0.002206,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000154,0.000137,0.000205,0.000000,0.000000,0.001251,0.234119,-0.002176,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000152,0.000135,0.000205,0.000110,0.000110,0.001234,0.231864,-0.002254,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000150,0.000132,0.000204,0.000347,0.000347,0.001217,0.229407,-0.002457,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000147,0.000130,0.000203,0.000495,0.000495,0.001200,0.226836,-0.002570,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000145,0.000128,0.000202,0.000601,0.000601,0.001183,0.224196,-0.002640,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000143,0.000126,0.000202,0.000577,0.000577,0.001166,0.221616,-0.002580,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000141,0.000124,0.000201,0.000517,0.000517,0.001148,0.219130,-0.002486,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001505,0.000093,0.000170,0.000093,0.000062,0.000139,0.000123,0.000294,0.000463,0.000463,0.001132,0.218048,-0.001082,1.000000,0.000076 +69,2022-08-03 21:00:00,0.000158,0.000042,0.000000,0.000042,0.000063,0.000137,0.000121,0.000242,0.000425,0.000425,0.001116,0.215857,-0.002191,1.000000,0.000034 +70,2022-08-03 22:00:00,0.000000,0.000034,0.000000,0.000034,0.000064,0.000135,0.000119,0.000233,0.000363,0.000363,0.001100,0.213601,-0.002256,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000019,0.000000,0.000000,0.000000,0.000066,0.000133,0.000117,0.000199,0.000267,0.000267,0.001084,0.211489,-0.002112,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000131,0.000115,0.000198,0.000165,0.000165,0.001068,0.209487,-0.002002,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000129,0.000114,0.000198,0.000027,0.000027,0.001053,0.207650,-0.001838,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000127,0.000112,0.000198,0.000000,0.000000,0.001038,0.205863,-0.001786,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000125,0.000111,0.000197,0.000000,0.000000,0.001023,0.204101,-0.001762,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000124,0.000109,0.000197,0.000000,0.000000,0.001009,0.202363,-0.001738,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000122,0.000108,0.000197,0.000000,0.000000,0.000994,0.200649,-0.001714,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000120,0.000106,0.000196,0.000000,0.000000,0.000980,0.198957,-0.001691,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000118,0.000105,0.000196,0.000000,0.000000,0.000967,0.197289,-0.001668,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000117,0.000103,0.000196,0.000000,0.000000,0.000953,0.195644,-0.001645,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000115,0.000102,0.000196,0.000000,0.000000,0.000940,0.194021,-0.001623,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000113,0.000100,0.000196,0.000000,0.000000,0.000927,0.192420,-0.001601,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000112,0.000099,0.000196,0.000000,0.000000,0.000914,0.190840,-0.001579,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000110,0.000098,0.000196,0.000000,0.000000,0.000902,0.189283,-0.001558,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000087,0.000109,0.000096,0.000196,0.000000,0.000000,0.000890,0.187746,-0.001537,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000107,0.000095,0.000196,0.000108,0.000108,0.000877,0.186123,-0.001623,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000090,0.000106,0.000093,0.000196,0.000346,0.000346,0.000865,0.184288,-0.001835,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000104,0.000092,0.000196,0.000510,0.000510,0.000853,0.182316,-0.001971,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000093,0.000103,0.000090,0.000196,0.000605,0.000605,0.000840,0.180278,-0.002039,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000101,0.000088,0.000196,0.000663,0.000663,0.000827,0.178209,-0.002069,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000099,0.000086,0.000196,0.000608,0.000608,0.000814,0.176224,-0.001986,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000098,0.000085,0.000196,0.000552,0.000552,0.000801,0.174320,-0.001904,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000096,0.000083,0.000196,0.000506,0.000506,0.000788,0.172487,-0.001833,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000095,0.000082,0.000196,0.000430,0.000430,0.000775,0.170754,-0.001733,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000093,0.000080,0.000196,0.000314,0.000314,0.000762,0.169160,-0.001594,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000092,0.000079,0.000196,0.000172,0.000172,0.000750,0.167728,-0.001432,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000090,0.000078,0.000196,0.000029,0.000029,0.000738,0.166455,-0.001273,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000089,0.000077,0.000196,0.000000,0.000000,0.000726,0.165229,-0.001226,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000087,0.000076,0.000196,0.000000,0.000000,0.000715,0.164019,-0.001210,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000086,0.000075,0.000196,0.000000,0.000000,0.000704,0.162826,-0.001193,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000112,0.000085,0.000074,0.000197,0.000000,0.000000,0.000693,0.161649,-0.001177,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000083,0.000073,0.000197,0.000000,0.000000,0.000683,0.160488,-0.001161,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000115,0.000082,0.000072,0.000197,0.000000,0.000000,0.000673,0.159343,-0.001145,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000081,0.000071,0.000198,0.000000,0.000000,0.000663,0.158213,-0.001130,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000080,0.000070,0.000198,0.000000,0.000000,0.000653,0.157099,-0.001114,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000078,0.000069,0.000198,0.000000,0.000000,0.000644,0.155999,-0.001099,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000077,0.000068,0.000199,0.000000,0.000000,0.000634,0.154915,-0.001084,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000076,0.000067,0.000199,0.000000,0.000000,0.000625,0.153846,-0.001069,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000075,0.000066,0.000200,0.000000,0.000000,0.000616,0.152791,-0.001055,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000074,0.000065,0.000200,0.000121,0.000121,0.000608,0.151631,-0.001160,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000073,0.000064,0.000201,0.000357,0.000357,0.000599,0.150254,-0.001377,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000129,0.000072,0.000063,0.000201,0.000514,0.000514,0.000590,0.148741,-0.001513,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000071,0.000061,0.000201,0.000619,0.000619,0.000580,0.147145,-0.001596,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000132,0.000069,0.000060,0.000202,0.000608,0.000608,0.000571,0.145581,-0.001564,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000017,0.000000,0.000000,0.000000,0.000134,0.000068,0.000059,0.000202,0.000564,0.000564,0.000561,0.144099,-0.001482,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000017,0.000000,0.000000,0.000000,0.000135,0.000067,0.000057,0.000203,0.000512,0.000512,0.000551,0.142688,-0.001411,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000017,0.000000,0.000000,0.000000,0.000137,0.000066,0.000056,0.000203,0.000474,0.000474,0.000542,0.141334,-0.001354,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000017,0.000000,0.000000,0.000000,0.000139,0.000065,0.000055,0.000203,0.000403,0.000403,0.000532,0.140068,-0.001265,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000098,0.000000,0.000000,0.000000,0.000140,0.000064,0.000054,0.000204,0.000295,0.000295,0.000523,0.139006,-0.001062,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000017,0.000000,0.000000,0.000000,0.000142,0.000063,0.000053,0.000204,0.000164,0.000164,0.000514,0.138008,-0.000998,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000246,0.000004,0.000007,0.000004,0.000143,0.000061,0.000053,0.000208,0.000044,0.000044,0.000505,0.137361,-0.000647,1.000000,0.000003 +122,2022-08-06 02:00:00,0.000428,0.000017,0.000028,0.000017,0.000145,0.000060,0.000052,0.000222,0.000000,0.000000,0.000497,0.136924,-0.000437,1.000000,0.000014 +123,2022-08-06 03:00:00,0.000209,0.000012,0.000007,0.000012,0.000146,0.000060,0.000052,0.000218,0.000000,0.000000,0.000490,0.136299,-0.000626,1.000000,0.000009 +124,2022-08-06 04:00:00,0.000105,0.000008,0.000002,0.000008,0.000148,0.000059,0.000051,0.000215,0.000000,0.000000,0.000482,0.135584,-0.000714,1.000000,0.000002 +125,2022-08-06 05:00:00,0.000119,0.000003,0.000002,0.000003,0.000149,0.000058,0.000051,0.000210,0.000000,0.000000,0.000475,0.134893,-0.000692,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000147,0.000003,0.000003,0.000003,0.000151,0.000057,0.000050,0.000211,0.000000,0.000000,0.000468,0.134237,-0.000656,1.000000,0.000002 +127,2022-08-06 07:00:00,0.000000,0.000001,0.000000,0.000001,0.000152,0.000056,0.000049,0.000210,0.000000,0.000000,0.000462,0.133449,-0.000788,1.000000,0.000001 +128,2022-08-06 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000154,0.000055,0.000049,0.000210,0.000000,0.000000,0.000455,0.132671,-0.000778,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000055,0.000048,0.000210,0.000000,0.000000,0.000449,0.131904,-0.000767,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000054,0.000047,0.000211,0.000000,0.000000,0.000443,0.131147,-0.000757,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000053,0.000047,0.000211,0.000000,0.000000,0.000436,0.130401,-0.000746,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000052,0.000046,0.000212,0.000000,0.000000,0.000430,0.129665,-0.000736,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000052,0.000046,0.000213,0.000000,0.000000,0.000424,0.128938,-0.000726,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000051,0.000045,0.000214,0.000102,0.000102,0.000418,0.128121,-0.000817,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000164,0.000050,0.000044,0.000214,0.000328,0.000328,0.000412,0.127092,-0.001029,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000049,0.000043,0.000215,0.000483,0.000483,0.000406,0.125925,-0.001168,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000048,0.000042,0.000216,0.000588,0.000588,0.000399,0.124669,-0.001255,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000048,0.000041,0.000216,0.000655,0.000655,0.000392,0.123365,-0.001305,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000047,0.000040,0.000217,0.000617,0.000617,0.000385,0.122116,-0.001249,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000046,0.000039,0.000217,0.000563,0.000563,0.000378,0.120937,-0.001179,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000173,0.000045,0.000038,0.000218,0.000508,0.000508,0.000371,0.119829,-0.001109,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000044,0.000037,0.000219,0.000430,0.000430,0.000363,0.118812,-0.001017,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000043,0.000036,0.000219,0.000308,0.000308,0.000356,0.117929,-0.000883,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000042,0.000035,0.000220,0.000168,0.000168,0.000349,0.117197,-0.000732,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000042,0.000035,0.000220,0.000025,0.000025,0.000343,0.116615,-0.000582,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000041,0.000034,0.000221,0.000000,0.000000,0.000336,0.116066,-0.000549,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000040,0.000034,0.000222,0.000000,0.000000,0.000330,0.115525,-0.000541,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000039,0.000034,0.000222,0.000000,0.000000,0.000324,0.114991,-0.000534,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000039,0.000033,0.000223,0.000000,0.000000,0.000319,0.114464,-0.000527,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000038,0.000033,0.000224,0.000000,0.000000,0.000313,0.113944,-0.000520,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000037,0.000032,0.000225,0.000000,0.000000,0.000308,0.113432,-0.000513,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000037,0.000032,0.000225,0.000000,0.000000,0.000303,0.112926,-0.000506,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000036,0.000031,0.000226,0.000000,0.000000,0.000298,0.112428,-0.000499,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000036,0.000031,0.000227,0.000000,0.000000,0.000293,0.111936,-0.000492,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000193,0.000035,0.000030,0.000228,0.000000,0.000000,0.000289,0.111450,-0.000485,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000034,0.000030,0.000229,0.000000,0.000000,0.000284,0.110972,-0.000479,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000034,0.000030,0.000229,0.000000,0.000000,0.000280,0.110500,-0.000472,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000033,0.000029,0.000230,0.000099,0.000099,0.000276,0.109937,-0.000563,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000033,0.000028,0.000231,0.000336,0.000336,0.000271,0.109147,-0.000790,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000032,0.000028,0.000232,0.000493,0.000493,0.000267,0.108213,-0.000933,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000032,0.000027,0.000233,0.000590,0.000590,0.000262,0.107197,-0.001016,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000031,0.000026,0.000233,0.000626,0.000626,0.000256,0.106159,-0.001039,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000030,0.000025,0.000234,0.000580,0.000580,0.000251,0.105179,-0.000979,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000030,0.000024,0.000235,0.000532,0.000532,0.000246,0.104261,-0.000919,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000029,0.000023,0.000235,0.000481,0.000481,0.000240,0.103405,-0.000856,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000028,0.000023,0.000236,0.000402,0.000402,0.000234,0.102640,-0.000765,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000028,0.000022,0.000237,0.000284,0.000284,0.000229,0.102001,-0.000639,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000027,0.000022,0.000237,0.000131,0.000131,0.000224,0.101521,-0.000480,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000027,0.000022,0.000238,0.000007,0.000007,0.000219,0.101170,-0.000350,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000021,0.000239,0.000000,0.000000,0.000214,0.100832,-0.000339,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000214,0.000025,0.000021,0.000239,0.000000,0.000000,0.000210,0.100497,-0.000334,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000025,0.000021,0.000240,0.000000,0.000000,0.000205,0.100168,-0.000330,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000024,0.000020,0.000241,0.000000,0.000000,0.000201,0.099842,-0.000325,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000242,0.000000,0.000000,0.000198,0.099521,-0.000321,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000023,0.000020,0.000242,0.000000,0.000000,0.000194,0.099205,-0.000316,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000023,0.000020,0.000243,0.000000,0.000000,0.000191,0.098893,-0.000312,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000023,0.000019,0.000244,0.000000,0.000000,0.000187,0.098585,-0.000308,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000022,0.000019,0.000245,0.000000,0.000000,0.000184,0.098281,-0.000304,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000022,0.000019,0.000246,0.000000,0.000000,0.000181,0.097981,-0.000300,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000022,0.000019,0.000247,0.000000,0.000000,0.000178,0.097686,-0.000296,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000021,0.000018,0.000247,0.000000,0.000000,0.000175,0.097394,-0.000292,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000018,0.000248,0.000082,0.000082,0.000172,0.097026,-0.000369,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000017,0.000249,0.000321,0.000321,0.000169,0.096427,-0.000599,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000020,0.000017,0.000250,0.000475,0.000475,0.000166,0.095684,-0.000743,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000016,0.000251,0.000576,0.000576,0.000162,0.094851,-0.000833,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000019,0.000015,0.000251,0.000629,0.000629,0.000158,0.093977,-0.000874,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000019,0.000015,0.000252,0.000591,0.000000,0.000155,0.093736,-0.000241,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000018,0.000015,0.000253,0.000539,0.000000,0.000151,0.093498,-0.000238,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000015,0.000254,0.000487,0.000000,0.000148,0.093264,-0.000235,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000018,0.000015,0.000254,0.000412,0.000000,0.000145,0.093032,-0.000231,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000017,0.000014,0.000255,0.000293,0.000000,0.000142,0.092804,-0.000228,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000014,0.000256,0.000152,0.000000,0.000139,0.092579,-0.000225,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000014,0.000257,0.000009,0.000000,0.000137,0.092357,-0.000222,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000016,0.000014,0.000258,0.000000,0.000000,0.000134,0.092138,-0.000219,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000258,0.000000,0.000000,0.000132,0.091922,-0.000216,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000013,0.000259,0.000000,0.000000,0.000130,0.091709,-0.000213,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000015,0.000013,0.000260,0.000000,0.000000,0.000127,0.091498,-0.000210,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000261,0.000000,0.000000,0.000125,0.091291,-0.000207,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000247,0.000015,0.000013,0.000262,0.000000,0.000000,0.000123,0.091086,-0.000205,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000121,0.090884,-0.000202,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000014,0.000012,0.000263,0.000000,0.000000,0.000119,0.090685,-0.000199,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000014,0.000012,0.000264,0.000000,0.000000,0.000117,0.090489,-0.000196,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000012,0.000265,0.000000,0.000000,0.000116,0.090295,-0.000194,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000012,0.000266,0.000000,0.000000,0.000114,0.090104,-0.000191,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000267,0.000000,0.000000,0.000112,0.089916,-0.000188,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000013,0.000012,0.000268,0.000091,0.000000,0.000110,0.089730,-0.000186,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620916.csv b/test/channel_loss/channel_forcing/et/cat-2620916.csv new file mode 100644 index 000000000..49c67067d --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620916.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001504,0.000602,0.001504,0.000144,0.000144,0.010691,0.424314,-0.005156,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001377,0.000593,0.001377,0.000029,0.000029,0.009907,0.419347,-0.004966,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001269,0.000584,0.001269,0.000000,0.000000,0.009222,0.414483,-0.004864,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001176,0.000576,0.001176,0.000000,0.000000,0.008621,0.409691,-0.004792,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001096,0.000567,0.001096,0.000000,0.000000,0.008092,0.404969,-0.004721,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001025,0.000559,0.001026,0.000000,0.000000,0.007626,0.400318,-0.004652,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000964,0.000550,0.000965,0.000000,0.000000,0.007212,0.395735,-0.004583,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000910,0.000542,0.000911,0.000000,0.000000,0.006844,0.391220,-0.004515,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000862,0.000534,0.000863,0.000000,0.000000,0.006516,0.386772,-0.004448,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000820,0.000526,0.000821,0.000000,0.000000,0.006222,0.382389,-0.004382,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000782,0.000519,0.000784,0.000000,0.000000,0.005959,0.378072,-0.004318,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000749,0.000511,0.000751,0.000000,0.000000,0.005721,0.373818,-0.004254,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000718,0.000503,0.000721,0.000000,0.000000,0.005506,0.369627,-0.004191,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000691,0.000496,0.000694,0.000000,0.000000,0.005311,0.365498,-0.004129,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000666,0.000488,0.000669,0.000114,0.000114,0.005133,0.361318,-0.004180,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000643,0.000480,0.000647,0.000340,0.000340,0.004970,0.356977,-0.004341,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000623,0.000472,0.000627,0.000499,0.000499,0.004820,0.352543,-0.004434,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000604,0.000464,0.000608,0.000587,0.000587,0.004681,0.348089,-0.004455,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000586,0.000457,0.000591,0.000507,0.000507,0.004552,0.343779,-0.004309,1.000000,0.000000 +19,2022-08-01 19:00:00,0.000775,0.000005,0.000010,0.000005,0.000006,0.000570,0.000450,0.000581,0.000474,0.000474,0.004433,0.340319,-0.003460,1.000000,0.000004 +20,2022-08-01 20:00:00,0.001068,0.000027,0.000044,0.000027,0.000007,0.000555,0.000445,0.000588,0.000426,0.000426,0.004323,0.337213,-0.003106,1.000000,0.000022 +21,2022-08-01 21:00:00,0.001200,0.000054,0.000075,0.000054,0.000007,0.000541,0.000440,0.000602,0.000349,0.000349,0.004222,0.334328,-0.002885,1.000000,0.000042 +22,2022-08-01 22:00:00,0.000986,0.000055,0.000050,0.000055,0.000008,0.000528,0.000434,0.000591,0.000294,0.000294,0.004128,0.331354,-0.002974,1.000000,0.000037 +23,2022-08-01 23:00:00,0.000910,0.000056,0.000051,0.000056,0.000009,0.000516,0.000429,0.000581,0.000207,0.000207,0.004041,0.328434,-0.002921,1.000000,0.000033 +24,2022-08-02 00:00:00,0.000873,0.000054,0.000056,0.000054,0.000009,0.000505,0.000424,0.000569,0.000132,0.000132,0.003959,0.325588,-0.002845,1.000000,0.000036 +25,2022-08-02 01:00:00,0.002166,0.000245,0.000400,0.000245,0.000010,0.000495,0.000421,0.000750,0.000052,0.000052,0.003885,0.323799,-0.001789,1.000000,0.000191 +26,2022-08-02 02:00:00,0.002670,0.000445,0.000607,0.000445,0.000011,0.000486,0.000418,0.000942,0.000000,0.000000,0.003817,0.322380,-0.001419,1.000000,0.000353 +27,2022-08-02 03:00:00,0.002626,0.000555,0.000588,0.000555,0.000012,0.000478,0.000416,0.001045,0.000000,0.000000,0.003755,0.320958,-0.001422,1.000000,0.000386 +28,2022-08-02 04:00:00,0.002709,0.000609,0.000620,0.000609,0.000013,0.000470,0.000413,0.001092,0.000000,0.000000,0.003698,0.319607,-0.001351,1.000000,0.000397 +29,2022-08-02 05:00:00,0.002512,0.000570,0.000541,0.000570,0.000013,0.000463,0.000411,0.001047,0.000000,0.000000,0.003645,0.318159,-0.001448,1.000000,0.000368 +30,2022-08-02 06:00:00,0.002410,0.000535,0.000501,0.000535,0.000014,0.000457,0.000408,0.001006,0.000000,0.000000,0.003596,0.316672,-0.001487,1.000000,0.000334 +31,2022-08-02 07:00:00,0.000000,0.000234,0.000000,0.000234,0.000015,0.000450,0.000402,0.000699,0.000000,0.000000,0.003548,0.313326,-0.003346,1.000000,0.000100 +32,2022-08-02 08:00:00,0.000000,0.000100,0.000000,0.000100,0.000016,0.000444,0.000396,0.000560,0.000000,0.000000,0.003500,0.310030,-0.003296,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000017,0.000437,0.000390,0.000454,0.000000,0.000000,0.003452,0.306782,-0.003248,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000431,0.000384,0.000449,0.000000,0.000000,0.003405,0.303583,-0.003200,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000425,0.000379,0.000444,0.000000,0.000000,0.003359,0.300430,-0.003152,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000419,0.000373,0.000439,0.000000,0.000000,0.003313,0.297325,-0.003106,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000495,0.000013,0.000024,0.000013,0.000021,0.000413,0.000368,0.000447,0.000000,0.000000,0.003268,0.294729,-0.002596,1.000000,0.000011 +38,2022-08-02 14:00:00,0.000466,0.000013,0.000013,0.000013,0.000022,0.000407,0.000363,0.000442,0.000112,0.000112,0.003224,0.292044,-0.002685,1.000000,0.000011 +39,2022-08-02 15:00:00,0.000466,0.000010,0.000003,0.000010,0.000023,0.000402,0.000358,0.000434,0.000294,0.000294,0.003181,0.289229,-0.002815,1.000000,0.000004 +40,2022-08-02 16:00:00,0.000466,0.000003,0.000000,0.000003,0.000024,0.000396,0.000353,0.000423,0.000426,0.000426,0.003138,0.286329,-0.002900,1.000000,0.000001 +41,2022-08-02 17:00:00,0.000495,0.000001,0.000000,0.000001,0.000025,0.000390,0.000348,0.000416,0.000514,0.000514,0.003096,0.283414,-0.002915,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000727,0.000002,0.000003,0.000002,0.000026,0.000385,0.000343,0.000413,0.000560,0.000560,0.003054,0.280721,-0.002692,1.000000,0.000001 +43,2022-08-02 19:00:00,0.000219,0.000001,0.000000,0.000001,0.000027,0.000379,0.000337,0.000407,0.000504,0.000504,0.003012,0.277626,-0.003095,1.000000,0.000001 +44,2022-08-02 20:00:00,0.000085,0.000001,0.000000,0.000001,0.000028,0.000374,0.000332,0.000403,0.000473,0.000473,0.002970,0.274476,-0.003150,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000081,0.000000,0.000000,0.000000,0.000030,0.000368,0.000326,0.000398,0.000479,0.000479,0.002928,0.271363,-0.003113,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000081,0.000000,0.000000,0.000000,0.000031,0.000363,0.000321,0.000394,0.000411,0.000411,0.002886,0.268363,-0.003000,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000084,0.000000,0.000000,0.000000,0.000032,0.000357,0.000316,0.000389,0.000291,0.000291,0.002844,0.265527,-0.002836,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000084,0.000000,0.000000,0.000000,0.000033,0.000352,0.000311,0.000385,0.000153,0.000153,0.002803,0.262869,-0.002658,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000081,0.000000,0.000000,0.000000,0.000034,0.000347,0.000306,0.000381,0.000016,0.000016,0.002762,0.260384,-0.002486,1.000000,0.000000 +50,2022-08-03 02:00:00,0.000081,0.000000,0.000001,0.000000,0.000035,0.000342,0.000302,0.000377,0.000000,0.000000,0.002723,0.257950,-0.002434,1.000000,0.000000 +51,2022-08-03 03:00:00,0.000081,0.000001,0.000001,0.000001,0.000037,0.000337,0.000298,0.000374,0.000000,0.000000,0.002684,0.255552,-0.002398,1.000000,0.000000 +52,2022-08-03 04:00:00,0.000081,0.000001,0.000001,0.000001,0.000038,0.000332,0.000293,0.000370,0.000000,0.000000,0.002646,0.253190,-0.002362,1.000000,0.000000 +53,2022-08-03 05:00:00,0.000081,0.000001,0.000001,0.000001,0.000039,0.000327,0.000289,0.000366,0.000000,0.000000,0.002608,0.250862,-0.002327,1.000000,0.000000 +54,2022-08-03 06:00:00,0.000092,0.000001,0.000001,0.000001,0.000040,0.000322,0.000285,0.000363,0.000000,0.000000,0.002572,0.248579,-0.002283,1.000000,0.000000 +55,2022-08-03 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000042,0.000317,0.000281,0.000359,0.000000,0.000000,0.002535,0.246240,-0.002339,1.000000,0.000000 +56,2022-08-03 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000043,0.000313,0.000277,0.000356,0.000000,0.000000,0.002499,0.243936,-0.002304,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000044,0.000308,0.000273,0.000352,0.000000,0.000000,0.002464,0.241666,-0.002270,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000303,0.000269,0.000349,0.000000,0.000000,0.002429,0.239429,-0.002237,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000047,0.000299,0.000265,0.000346,0.000000,0.000000,0.002395,0.237226,-0.002204,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000295,0.000261,0.000343,0.000000,0.000000,0.002361,0.235055,-0.002171,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000290,0.000257,0.000340,0.000000,0.000000,0.002327,0.232916,-0.002139,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000051,0.000286,0.000253,0.000337,0.000108,0.000108,0.002294,0.230702,-0.002214,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000282,0.000249,0.000334,0.000342,0.000342,0.002261,0.228291,-0.002411,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000054,0.000277,0.000244,0.000331,0.000492,0.000492,0.002227,0.225768,-0.002523,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000273,0.000239,0.000328,0.000597,0.000597,0.002193,0.223178,-0.002589,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000269,0.000235,0.000325,0.000572,0.000572,0.002159,0.220651,-0.002527,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000058,0.000264,0.000230,0.000322,0.000519,0.000519,0.002125,0.218214,-0.002437,1.000000,0.000000 +68,2022-08-03 20:00:00,0.001150,0.000022,0.000040,0.000022,0.000059,0.000260,0.000228,0.000342,0.000467,0.000467,0.002093,0.216957,-0.001257,1.000000,0.000018 +69,2022-08-03 21:00:00,0.000129,0.000010,0.000000,0.000010,0.000060,0.000256,0.000224,0.000327,0.000433,0.000433,0.002061,0.214786,-0.002170,1.000000,0.000008 +70,2022-08-03 22:00:00,0.000000,0.000008,0.000000,0.000008,0.000062,0.000252,0.000220,0.000322,0.000366,0.000366,0.002029,0.212586,-0.002200,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000001,0.000000,0.000000,0.000000,0.000063,0.000248,0.000216,0.000311,0.000268,0.000268,0.001998,0.210517,-0.002069,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000244,0.000213,0.000309,0.000164,0.000164,0.001966,0.208580,-0.001937,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000240,0.000210,0.000306,0.000025,0.000025,0.001936,0.206808,-0.001772,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000067,0.000236,0.000207,0.000304,0.000000,0.000000,0.001906,0.205086,-0.001721,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000233,0.000204,0.000302,0.000000,0.000000,0.001877,0.203391,-0.001696,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000070,0.000229,0.000201,0.000299,0.000000,0.000000,0.001849,0.201720,-0.001671,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000226,0.000198,0.000297,0.000000,0.000000,0.001821,0.200074,-0.001646,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000073,0.000222,0.000195,0.000295,0.000000,0.000000,0.001793,0.198453,-0.001622,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000219,0.000192,0.000293,0.000000,0.000000,0.001767,0.196855,-0.001598,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000076,0.000215,0.000189,0.000291,0.000000,0.000000,0.001740,0.195281,-0.001574,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000212,0.000186,0.000290,0.000000,0.000000,0.001714,0.193730,-0.001551,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000079,0.000209,0.000183,0.000288,0.000000,0.000000,0.001689,0.192202,-0.001528,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000206,0.000181,0.000286,0.000000,0.000000,0.001664,0.190697,-0.001505,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000082,0.000203,0.000178,0.000284,0.000000,0.000000,0.001639,0.189214,-0.001483,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000200,0.000175,0.000283,0.000000,0.000000,0.001615,0.187753,-0.001461,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000085,0.000197,0.000173,0.000281,0.000104,0.000104,0.001592,0.186212,-0.001542,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000194,0.000170,0.000280,0.000338,0.000338,0.001567,0.184462,-0.001749,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000190,0.000166,0.000278,0.000504,0.000504,0.001543,0.182575,-0.001887,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000187,0.000163,0.000276,0.000603,0.000603,0.001518,0.180618,-0.001957,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000184,0.000159,0.000275,0.000660,0.000660,0.001493,0.178634,-0.001984,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000181,0.000156,0.000273,0.000609,0.000609,0.001468,0.176730,-0.001904,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000178,0.000152,0.000271,0.000561,0.000561,0.001442,0.174901,-0.001829,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000175,0.000149,0.000270,0.000520,0.000520,0.001417,0.173140,-0.001761,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000096,0.000171,0.000146,0.000268,0.000439,0.000439,0.001392,0.171484,-0.001655,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000168,0.000143,0.000266,0.000315,0.000315,0.001367,0.169974,-0.001510,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000099,0.000165,0.000141,0.000265,0.000172,0.000172,0.001343,0.168629,-0.001346,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000101,0.000162,0.000139,0.000263,0.000028,0.000028,0.001319,0.167444,-0.001185,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000159,0.000137,0.000262,0.000000,0.000000,0.001296,0.166305,-0.001139,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000104,0.000157,0.000135,0.000261,0.000000,0.000000,0.001274,0.165183,-0.001122,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000154,0.000133,0.000259,0.000000,0.000000,0.001253,0.164077,-0.001106,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000107,0.000151,0.000131,0.000258,0.000000,0.000000,0.001233,0.162988,-0.001089,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000149,0.000129,0.000257,0.000000,0.000000,0.001212,0.161915,-0.001073,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000110,0.000147,0.000127,0.000256,0.000000,0.000000,0.001193,0.160857,-0.001057,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000144,0.000125,0.000255,0.000000,0.000000,0.001174,0.159816,-0.001042,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000142,0.000123,0.000254,0.000000,0.000000,0.001155,0.158790,-0.001026,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000140,0.000121,0.000254,0.000000,0.000000,0.001137,0.157778,-0.001011,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000137,0.000120,0.000253,0.000000,0.000000,0.001119,0.156782,-0.000996,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000135,0.000118,0.000252,0.000000,0.000000,0.001102,0.155801,-0.000981,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000118,0.000133,0.000116,0.000252,0.000000,0.000000,0.001085,0.154834,-0.000967,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000131,0.000114,0.000251,0.000118,0.000118,0.001068,0.153765,-0.001069,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000121,0.000129,0.000112,0.000250,0.000351,0.000351,0.001051,0.152482,-0.001283,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000123,0.000127,0.000109,0.000250,0.000508,0.000508,0.001034,0.151063,-0.001418,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000124,0.000107,0.000249,0.000610,0.000610,0.001016,0.149566,-0.001498,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000126,0.000122,0.000104,0.000248,0.000608,0.000608,0.000998,0.148092,-0.001474,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000067,0.000000,0.000000,0.000000,0.000127,0.000120,0.000102,0.000247,0.000569,0.000569,0.000979,0.146744,-0.001348,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000067,0.000000,0.000000,0.000000,0.000129,0.000118,0.000099,0.000246,0.000518,0.000518,0.000961,0.145466,-0.001278,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000072,0.000000,0.000000,0.000000,0.000130,0.000115,0.000097,0.000245,0.000484,0.000484,0.000943,0.144246,-0.001220,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000072,0.000000,0.000000,0.000000,0.000131,0.000113,0.000095,0.000245,0.000401,0.000401,0.000924,0.143127,-0.001120,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000111,0.000000,0.000000,0.000000,0.000133,0.000111,0.000093,0.000244,0.000294,0.000294,0.000907,0.142167,-0.000960,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000067,0.000000,0.000000,0.000000,0.000134,0.000109,0.000092,0.000243,0.000162,0.000162,0.000890,0.141308,-0.000859,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000303,0.000003,0.000005,0.000003,0.000136,0.000107,0.000091,0.000246,0.000043,0.000043,0.000874,0.140806,-0.000502,1.000000,0.000002 +122,2022-08-06 02:00:00,0.000461,0.000011,0.000017,0.000011,0.000137,0.000105,0.000090,0.000253,0.000000,0.000000,0.000859,0.140499,-0.000307,1.000000,0.000009 +123,2022-08-06 03:00:00,0.000370,0.000011,0.000011,0.000011,0.000139,0.000103,0.000090,0.000253,0.000000,0.000000,0.000845,0.140113,-0.000386,1.000000,0.000008 +124,2022-08-06 04:00:00,0.000309,0.000010,0.000008,0.000010,0.000140,0.000102,0.000089,0.000252,0.000000,0.000000,0.000832,0.139675,-0.000438,1.000000,0.000006 +125,2022-08-06 05:00:00,0.000313,0.000008,0.000008,0.000008,0.000141,0.000100,0.000088,0.000250,0.000000,0.000000,0.000820,0.139247,-0.000428,1.000000,0.000005 +126,2022-08-06 06:00:00,0.000318,0.000008,0.000008,0.000008,0.000143,0.000099,0.000087,0.000249,0.000000,0.000000,0.000809,0.138830,-0.000417,1.000000,0.000005 +127,2022-08-06 07:00:00,0.000000,0.000004,0.000000,0.000004,0.000144,0.000097,0.000086,0.000245,0.000000,0.000000,0.000797,0.138114,-0.000716,1.000000,0.000002 +128,2022-08-06 08:00:00,0.000000,0.000002,0.000000,0.000002,0.000146,0.000096,0.000085,0.000243,0.000000,0.000000,0.000786,0.137409,-0.000705,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000147,0.000095,0.000083,0.000242,0.000000,0.000000,0.000775,0.136714,-0.000695,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000148,0.000093,0.000082,0.000242,0.000000,0.000000,0.000764,0.136029,-0.000685,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000150,0.000092,0.000081,0.000242,0.000000,0.000000,0.000753,0.135355,-0.000674,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000151,0.000091,0.000080,0.000242,0.000000,0.000000,0.000742,0.134690,-0.000665,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000152,0.000089,0.000079,0.000242,0.000000,0.000000,0.000731,0.134035,-0.000655,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000088,0.000077,0.000242,0.000098,0.000098,0.000721,0.133294,-0.000742,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000155,0.000087,0.000076,0.000242,0.000321,0.000321,0.000710,0.132344,-0.000950,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000085,0.000074,0.000242,0.000479,0.000479,0.000698,0.131252,-0.001092,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000158,0.000084,0.000071,0.000242,0.000582,0.000582,0.000686,0.130075,-0.001177,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000082,0.000069,0.000241,0.000650,0.000650,0.000673,0.128848,-0.001227,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000161,0.000080,0.000067,0.000241,0.000610,0.000610,0.000660,0.127679,-0.001169,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000079,0.000065,0.000241,0.000563,0.000563,0.000646,0.126573,-0.001106,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000077,0.000063,0.000240,0.000517,0.000517,0.000632,0.125529,-0.001044,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000075,0.000062,0.000240,0.000438,0.000438,0.000619,0.124579,-0.000950,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000074,0.000060,0.000240,0.000311,0.000311,0.000605,0.123768,-0.000811,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000167,0.000072,0.000059,0.000239,0.000166,0.000166,0.000592,0.123111,-0.000657,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000071,0.000058,0.000239,0.000024,0.000024,0.000579,0.122604,-0.000507,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000170,0.000069,0.000057,0.000239,0.000000,0.000000,0.000567,0.122128,-0.000476,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000068,0.000056,0.000239,0.000000,0.000000,0.000556,0.121659,-0.000469,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000066,0.000055,0.000239,0.000000,0.000000,0.000545,0.121197,-0.000462,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000065,0.000055,0.000239,0.000000,0.000000,0.000535,0.120742,-0.000455,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000064,0.000054,0.000239,0.000000,0.000000,0.000525,0.120293,-0.000448,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000176,0.000063,0.000053,0.000239,0.000000,0.000000,0.000515,0.119851,-0.000442,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000062,0.000052,0.000239,0.000000,0.000000,0.000506,0.119416,-0.000435,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000060,0.000051,0.000239,0.000000,0.000000,0.000497,0.118987,-0.000429,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000180,0.000059,0.000051,0.000240,0.000000,0.000000,0.000488,0.118565,-0.000422,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000058,0.000050,0.000240,0.000000,0.000000,0.000480,0.118149,-0.000416,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000183,0.000057,0.000049,0.000240,0.000000,0.000000,0.000472,0.117738,-0.000410,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000056,0.000049,0.000240,0.000000,0.000000,0.000464,0.117334,-0.000404,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000055,0.000048,0.000241,0.000096,0.000096,0.000456,0.116842,-0.000493,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000186,0.000054,0.000046,0.000241,0.000329,0.000329,0.000448,0.116127,-0.000715,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000053,0.000045,0.000241,0.000491,0.000491,0.000439,0.115264,-0.000864,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000052,0.000043,0.000241,0.000585,0.000585,0.000430,0.114320,-0.000943,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000190,0.000051,0.000041,0.000241,0.000627,0.000627,0.000420,0.113349,-0.000971,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000050,0.000040,0.000241,0.000584,0.000584,0.000410,0.112435,-0.000914,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000049,0.000038,0.000241,0.000532,0.000532,0.000400,0.111585,-0.000850,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000047,0.000037,0.000241,0.000492,0.000492,0.000389,0.110787,-0.000798,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000046,0.000035,0.000241,0.000412,0.000412,0.000379,0.110081,-0.000707,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000045,0.000034,0.000241,0.000286,0.000286,0.000368,0.109508,-0.000573,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000197,0.000044,0.000034,0.000241,0.000131,0.000131,0.000358,0.109097,-0.000411,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000042,0.000033,0.000241,0.000004,0.000004,0.000349,0.108816,-0.000280,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000041,0.000033,0.000241,0.000000,0.000000,0.000341,0.108544,-0.000272,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000201,0.000040,0.000032,0.000241,0.000000,0.000000,0.000332,0.108276,-0.000268,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000039,0.000032,0.000241,0.000000,0.000000,0.000325,0.108012,-0.000264,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000039,0.000031,0.000242,0.000000,0.000000,0.000317,0.107752,-0.000260,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000038,0.000031,0.000242,0.000000,0.000000,0.000311,0.107496,-0.000256,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000205,0.000037,0.000030,0.000242,0.000000,0.000000,0.000304,0.107243,-0.000253,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000036,0.000030,0.000243,0.000000,0.000000,0.000298,0.106994,-0.000249,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000035,0.000029,0.000243,0.000000,0.000000,0.000292,0.106749,-0.000245,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000209,0.000035,0.000029,0.000243,0.000000,0.000000,0.000286,0.106508,-0.000242,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000034,0.000029,0.000244,0.000000,0.000000,0.000281,0.106270,-0.000238,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000033,0.000028,0.000244,0.000000,0.000000,0.000275,0.106035,-0.000234,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000033,0.000028,0.000245,0.000000,0.000000,0.000270,0.105804,-0.000231,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000001,0.000000,0.000000,0.000000,0.000213,0.000032,0.000027,0.000245,0.000080,0.000080,0.000265,0.105498,-0.000306,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000002,0.000000,0.000000,0.000000,0.000214,0.000032,0.000026,0.000246,0.000311,0.000311,0.000260,0.104971,-0.000528,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000031,0.000025,0.000246,0.000469,0.000469,0.000254,0.104293,-0.000678,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000030,0.000024,0.000246,0.000577,0.000577,0.000248,0.103519,-0.000774,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000029,0.000022,0.000246,0.000633,0.000633,0.000241,0.102702,-0.000818,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000028,0.000021,0.000247,0.000592,0.000592,0.000233,0.101937,-0.000765,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000219,0.000027,0.000019,0.000247,0.000543,0.000543,0.000225,0.101231,-0.000705,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000026,0.000018,0.000247,0.000505,0.000505,0.000217,0.100574,-0.000657,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000025,0.000017,0.000247,0.000420,0.000420,0.000209,0.100010,-0.000564,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000024,0.000017,0.000247,0.000294,0.000294,0.000201,0.099579,-0.000431,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000224,0.000023,0.000016,0.000247,0.000151,0.000151,0.000194,0.099295,-0.000284,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000023,0.000016,0.000247,0.000008,0.000008,0.000187,0.099156,-0.000139,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000022,0.000016,0.000247,0.000000,0.000000,0.000181,0.099027,-0.000129,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000021,0.000015,0.000248,0.000000,0.000000,0.000175,0.098900,-0.000127,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000015,0.000248,0.000000,0.000000,0.000169,0.098774,-0.000125,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000020,0.000015,0.000248,0.000000,0.000000,0.000164,0.098651,-0.000124,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000019,0.000015,0.000249,0.000000,0.000000,0.000160,0.098529,-0.000122,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000230,0.000019,0.000014,0.000249,0.000000,0.000000,0.000155,0.098409,-0.000120,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000018,0.000014,0.000250,0.000000,0.000000,0.000151,0.098291,-0.000118,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000018,0.000014,0.000250,0.000000,0.000000,0.000147,0.098174,-0.000116,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000017,0.000014,0.000251,0.000000,0.000000,0.000144,0.098060,-0.000115,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000017,0.000014,0.000251,0.000000,0.000000,0.000140,0.097947,-0.000113,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000017,0.000013,0.000252,0.000000,0.000000,0.000137,0.097835,-0.000111,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000016,0.000013,0.000252,0.000000,0.000000,0.000134,0.097726,-0.000110,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000237,0.000016,0.000013,0.000253,0.000088,0.000088,0.000131,0.097531,-0.000195,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/cat-2620917.csv b/test/channel_loss/channel_forcing/et/cat-2620917.csv new file mode 100644 index 000000000..99462128c --- /dev/null +++ b/test/channel_loss/channel_forcing/et/cat-2620917.csv @@ -0,0 +1,208 @@ +Time Step,Time,RAIN_RATE,GIUH_RUNOFF,INFILTRATION_EXCESS,DIRECT_RUNOFF,NASH_LATERAL_RUNOFF,DEEP_GW_TO_CHANNEL_FLUX,SOIL_TO_GW_FLUX,Q_OUT,POTENTIAL_ET,ACTUAL_ET,GW_STORAGE,SOIL_STORAGE,SOIL_STORAGE_CHANGE,SURF_RUNOFF_SCHEME,NWM_PONDED_DEPTH +0,2022-08-01 00:00:00,0.000001,0.000000,0.000000,0.000000,0.000000,0.001464,0.000317,0.001464,0.000149,0.000149,0.010449,0.425576,-0.004977,1.000000,0.000000 +1,2022-08-01 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001306,0.000312,0.001306,0.000030,0.000030,0.009456,0.420783,-0.004793,1.000000,0.000000 +2,2022-08-01 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001171,0.000308,0.001171,0.000000,0.000000,0.008592,0.416085,-0.004698,1.000000,0.000000 +3,2022-08-01 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.001057,0.000304,0.001057,0.000000,0.000000,0.007839,0.411451,-0.004634,1.000000,0.000000 +4,2022-08-01 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000959,0.000300,0.000959,0.000000,0.000000,0.007180,0.406881,-0.004571,1.000000,0.000000 +5,2022-08-01 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000000,0.000874,0.000296,0.000875,0.000000,0.000000,0.006601,0.402372,-0.004508,1.000000,0.000000 +6,2022-08-01 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000801,0.000292,0.000802,0.000000,0.000000,0.006092,0.397926,-0.004447,1.000000,0.000000 +7,2022-08-01 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000737,0.000288,0.000738,0.000000,0.000000,0.005642,0.393539,-0.004386,1.000000,0.000000 +8,2022-08-01 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000681,0.000284,0.000682,0.000000,0.000000,0.005244,0.389213,-0.004326,1.000000,0.000000 +9,2022-08-01 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000001,0.000632,0.000280,0.000634,0.000000,0.000000,0.004892,0.384946,-0.004267,1.000000,0.000000 +10,2022-08-01 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000589,0.000276,0.000591,0.000000,0.000000,0.004579,0.380736,-0.004209,1.000000,0.000000 +11,2022-08-01 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000002,0.000551,0.000272,0.000553,0.000000,0.000000,0.004300,0.376585,-0.004152,1.000000,0.000000 +12,2022-08-01 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000517,0.000269,0.000520,0.000000,0.000000,0.004051,0.372489,-0.004095,1.000000,0.000000 +13,2022-08-01 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000488,0.000265,0.000490,0.000000,0.000000,0.003828,0.368450,-0.004039,1.000000,0.000000 +14,2022-08-01 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000003,0.000461,0.000261,0.000464,0.000114,0.000114,0.003628,0.364353,-0.004097,1.000000,0.000000 +15,2022-08-01 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000437,0.000257,0.000441,0.000340,0.000340,0.003449,0.360089,-0.004264,1.000000,0.000000 +16,2022-08-01 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000004,0.000415,0.000253,0.000420,0.000512,0.000512,0.003287,0.355714,-0.004376,1.000000,0.000000 +17,2022-08-01 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000005,0.000396,0.000249,0.000401,0.000597,0.000597,0.003140,0.351314,-0.004400,1.000000,0.000000 +18,2022-08-01 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000006,0.000379,0.000245,0.000384,0.000499,0.000499,0.003007,0.347072,-0.004242,1.000000,0.000000 +19,2022-08-01 19:00:00,0.001015,0.000032,0.000059,0.000032,0.000006,0.000363,0.000243,0.000401,0.000471,0.000471,0.002887,0.343857,-0.003214,1.000000,0.000026 +20,2022-08-01 20:00:00,0.001479,0.000128,0.000205,0.000128,0.000007,0.000349,0.000240,0.000483,0.000407,0.000407,0.002778,0.341063,-0.002794,1.000000,0.000104 +21,2022-08-01 21:00:00,0.001481,0.000188,0.000227,0.000188,0.000008,0.000336,0.000238,0.000531,0.000346,0.000346,0.002680,0.338348,-0.002715,1.000000,0.000143 +22,2022-08-01 22:00:00,0.001464,0.000231,0.000242,0.000231,0.000008,0.000324,0.000235,0.000564,0.000284,0.000284,0.002591,0.335699,-0.002649,1.000000,0.000154 +23,2022-08-01 23:00:00,0.001485,0.000262,0.000283,0.000262,0.000009,0.000314,0.000233,0.000585,0.000194,0.000194,0.002510,0.333156,-0.002544,1.000000,0.000176 +24,2022-08-02 00:00:00,0.001469,0.000286,0.000304,0.000286,0.000010,0.000304,0.000231,0.000600,0.000123,0.000123,0.002436,0.330680,-0.002475,1.000000,0.000193 +25,2022-08-02 01:00:00,0.002594,0.000628,0.000901,0.000628,0.000010,0.000296,0.000229,0.000934,0.000051,0.000051,0.002369,0.328831,-0.001850,1.000000,0.000466 +26,2022-08-02 02:00:00,0.002602,0.000799,0.000933,0.000799,0.000011,0.000288,0.000227,0.001099,0.000000,0.000000,0.002309,0.327032,-0.001799,1.000000,0.000600 +27,2022-08-02 03:00:00,0.002585,0.000920,0.000922,0.000920,0.000012,0.000281,0.000226,0.001213,0.000000,0.000000,0.002254,0.325253,-0.001779,1.000000,0.000601 +28,2022-08-02 04:00:00,0.002598,0.000927,0.000927,0.000927,0.000013,0.000274,0.000224,0.001214,0.000000,0.000000,0.002203,0.323506,-0.001747,1.000000,0.000602 +29,2022-08-02 05:00:00,0.002607,0.000928,0.000931,0.000928,0.000014,0.000268,0.000223,0.001210,0.000000,0.000000,0.002157,0.321788,-0.001718,1.000000,0.000604 +30,2022-08-02 06:00:00,0.002606,0.000928,0.000928,0.000928,0.000015,0.000263,0.000221,0.001206,0.000000,0.000000,0.002115,0.320095,-0.001693,1.000000,0.000604 +31,2022-08-02 07:00:00,0.000000,0.000418,0.000000,0.000418,0.000016,0.000258,0.000218,0.000692,0.000000,0.000000,0.002076,0.316770,-0.003325,1.000000,0.000186 +32,2022-08-02 08:00:00,0.000000,0.000186,0.000000,0.000186,0.000017,0.000253,0.000215,0.000455,0.000000,0.000000,0.002037,0.313491,-0.003280,1.000000,0.000000 +33,2022-08-02 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000018,0.000248,0.000212,0.000266,0.000000,0.000000,0.002001,0.310256,-0.003235,1.000000,0.000000 +34,2022-08-02 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000019,0.000244,0.000209,0.000263,0.000000,0.000000,0.001966,0.307065,-0.003191,1.000000,0.000000 +35,2022-08-02 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000020,0.000240,0.000206,0.000259,0.000000,0.000000,0.001933,0.303918,-0.003147,1.000000,0.000000 +36,2022-08-02 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000021,0.000236,0.000204,0.000256,0.000000,0.000000,0.001901,0.300813,-0.003104,1.000000,0.000000 +37,2022-08-02 13:00:00,0.000578,0.000034,0.000061,0.000034,0.000022,0.000232,0.000201,0.000287,0.000000,0.000000,0.001870,0.298261,-0.002552,1.000000,0.000027 +38,2022-08-02 14:00:00,0.000458,0.000028,0.000023,0.000028,0.000023,0.000228,0.000199,0.000279,0.000111,0.000111,0.001841,0.295553,-0.002708,1.000000,0.000022 +39,2022-08-02 15:00:00,0.000366,0.000019,0.000001,0.000019,0.000024,0.000224,0.000196,0.000267,0.000284,0.000284,0.001813,0.292643,-0.002910,1.000000,0.000005 +40,2022-08-02 16:00:00,0.000344,0.000005,0.000000,0.000005,0.000025,0.000221,0.000193,0.000251,0.000418,0.000418,0.001785,0.289620,-0.003023,1.000000,0.000000 +41,2022-08-02 17:00:00,0.000347,0.000000,0.000000,0.000000,0.000026,0.000218,0.000191,0.000244,0.000505,0.000505,0.001758,0.286555,-0.003065,1.000000,0.000000 +42,2022-08-02 18:00:00,0.000406,0.000000,0.000000,0.000000,0.000027,0.000214,0.000188,0.000241,0.000548,0.000548,0.001732,0.283547,-0.003007,1.000000,0.000000 +43,2022-08-02 19:00:00,0.000182,0.000000,0.000000,0.000000,0.000028,0.000211,0.000185,0.000239,0.000488,0.000488,0.001706,0.280419,-0.003129,1.000000,0.000000 +44,2022-08-02 20:00:00,0.000221,0.000000,0.000000,0.000000,0.000030,0.000208,0.000182,0.000237,0.000461,0.000461,0.001680,0.277398,-0.003021,1.000000,0.000000 +45,2022-08-02 21:00:00,0.000165,0.000000,0.000000,0.000000,0.000031,0.000205,0.000180,0.000235,0.000474,0.000474,0.001655,0.274350,-0.003048,1.000000,0.000000 +46,2022-08-02 22:00:00,0.000143,0.000000,0.000000,0.000000,0.000032,0.000201,0.000177,0.000233,0.000407,0.000407,0.001631,0.271388,-0.002962,1.000000,0.000000 +47,2022-08-02 23:00:00,0.000157,0.000000,0.000000,0.000000,0.000033,0.000198,0.000174,0.000232,0.000292,0.000292,0.001607,0.268595,-0.002794,1.000000,0.000000 +48,2022-08-03 00:00:00,0.000161,0.000000,0.000000,0.000000,0.000034,0.000195,0.000172,0.000230,0.000155,0.000155,0.001583,0.265978,-0.002617,1.000000,0.000000 +49,2022-08-03 01:00:00,0.000175,0.000003,0.000005,0.000003,0.000036,0.000193,0.000170,0.000231,0.000018,0.000018,0.001560,0.263541,-0.002436,1.000000,0.000002 +50,2022-08-03 02:00:00,0.000188,0.000005,0.000007,0.000005,0.000037,0.000190,0.000168,0.000231,0.000000,0.000000,0.001538,0.261166,-0.002375,1.000000,0.000004 +51,2022-08-03 03:00:00,0.000196,0.000006,0.000007,0.000006,0.000038,0.000187,0.000165,0.000232,0.000000,0.000000,0.001517,0.258831,-0.002335,1.000000,0.000004 +52,2022-08-03 04:00:00,0.000196,0.000007,0.000007,0.000007,0.000039,0.000184,0.000163,0.000231,0.000000,0.000000,0.001496,0.256528,-0.002303,1.000000,0.000005 +53,2022-08-03 05:00:00,0.000196,0.000007,0.000007,0.000007,0.000041,0.000182,0.000161,0.000230,0.000000,0.000000,0.001475,0.254256,-0.002272,1.000000,0.000005 +54,2022-08-03 06:00:00,0.000196,0.000007,0.000007,0.000007,0.000042,0.000179,0.000159,0.000228,0.000000,0.000000,0.001455,0.252015,-0.002241,1.000000,0.000005 +55,2022-08-03 07:00:00,0.000000,0.000003,0.000000,0.000003,0.000043,0.000177,0.000157,0.000223,0.000000,0.000000,0.001436,0.249619,-0.002397,1.000000,0.000001 +56,2022-08-03 08:00:00,0.000000,0.000001,0.000000,0.000001,0.000045,0.000174,0.000155,0.000221,0.000000,0.000000,0.001416,0.247255,-0.002364,1.000000,0.000000 +57,2022-08-03 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000046,0.000172,0.000153,0.000218,0.000000,0.000000,0.001397,0.244923,-0.002332,1.000000,0.000000 +58,2022-08-03 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000048,0.000170,0.000151,0.000217,0.000000,0.000000,0.001378,0.242623,-0.002300,1.000000,0.000000 +59,2022-08-03 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000049,0.000167,0.000149,0.000216,0.000000,0.000000,0.001360,0.240354,-0.002269,1.000000,0.000000 +60,2022-08-03 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000050,0.000165,0.000147,0.000215,0.000000,0.000000,0.001341,0.238117,-0.002238,1.000000,0.000000 +61,2022-08-03 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000052,0.000163,0.000145,0.000214,0.000000,0.000000,0.001323,0.235909,-0.002207,1.000000,0.000000 +62,2022-08-03 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000053,0.000161,0.000143,0.000214,0.000106,0.000106,0.001305,0.233627,-0.002282,1.000000,0.000000 +63,2022-08-03 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000055,0.000158,0.000140,0.000213,0.000343,0.000343,0.001287,0.231143,-0.002484,1.000000,0.000000 +64,2022-08-03 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000056,0.000156,0.000138,0.000212,0.000494,0.000494,0.001269,0.228544,-0.002599,1.000000,0.000000 +65,2022-08-03 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000057,0.000154,0.000136,0.000211,0.000606,0.000606,0.001251,0.225870,-0.002675,1.000000,0.000000 +66,2022-08-03 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000059,0.000151,0.000133,0.000210,0.000572,0.000572,0.001233,0.223265,-0.002605,1.000000,0.000000 +67,2022-08-03 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000060,0.000149,0.000131,0.000209,0.000516,0.000516,0.001215,0.220751,-0.002514,1.000000,0.000000 +68,2022-08-03 20:00:00,0.000010,0.000000,0.000000,0.000000,0.000062,0.000147,0.000129,0.000209,0.000459,0.000459,0.001197,0.218337,-0.002414,1.000000,0.000000 +69,2022-08-03 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000063,0.000145,0.000127,0.000208,0.000437,0.000437,0.001179,0.215969,-0.002368,1.000000,0.000000 +70,2022-08-03 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000065,0.000142,0.000125,0.000207,0.000357,0.000357,0.001161,0.213711,-0.002258,1.000000,0.000000 +71,2022-08-03 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000066,0.000140,0.000123,0.000206,0.000269,0.000269,0.001143,0.211571,-0.002140,1.000000,0.000000 +72,2022-08-04 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000068,0.000138,0.000121,0.000206,0.000167,0.000167,0.001126,0.209561,-0.002010,1.000000,0.000000 +73,2022-08-04 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000069,0.000136,0.000119,0.000205,0.000027,0.000027,0.001109,0.207716,-0.001844,1.000000,0.000000 +74,2022-08-04 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000071,0.000134,0.000118,0.000205,0.000000,0.000000,0.001093,0.205924,-0.001793,1.000000,0.000000 +75,2022-08-04 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000072,0.000132,0.000116,0.000204,0.000000,0.000000,0.001077,0.204155,-0.001768,1.000000,0.000000 +76,2022-08-04 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000074,0.000130,0.000114,0.000204,0.000000,0.000000,0.001061,0.202411,-0.001744,1.000000,0.000000 +77,2022-08-04 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000075,0.000128,0.000113,0.000203,0.000000,0.000000,0.001046,0.200691,-0.001720,1.000000,0.000000 +78,2022-08-04 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000077,0.000126,0.000111,0.000203,0.000000,0.000000,0.001031,0.198994,-0.001697,1.000000,0.000000 +79,2022-08-04 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000078,0.000124,0.000110,0.000203,0.000000,0.000000,0.001016,0.197320,-0.001674,1.000000,0.000000 +80,2022-08-04 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000080,0.000123,0.000108,0.000202,0.000000,0.000000,0.001001,0.195669,-0.001651,1.000000,0.000000 +81,2022-08-04 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000081,0.000121,0.000107,0.000202,0.000000,0.000000,0.000987,0.194041,-0.001628,1.000000,0.000000 +82,2022-08-04 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000083,0.000119,0.000105,0.000202,0.000000,0.000000,0.000973,0.192435,-0.001606,1.000000,0.000000 +83,2022-08-04 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000084,0.000117,0.000104,0.000202,0.000000,0.000000,0.000960,0.190851,-0.001584,1.000000,0.000000 +84,2022-08-04 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000086,0.000116,0.000102,0.000202,0.000000,0.000000,0.000946,0.189288,-0.001563,1.000000,0.000000 +85,2022-08-04 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000088,0.000114,0.000101,0.000202,0.000000,0.000000,0.000933,0.187746,-0.001541,1.000000,0.000000 +86,2022-08-04 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000089,0.000113,0.000100,0.000202,0.000106,0.000106,0.000920,0.186121,-0.001625,1.000000,0.000000 +87,2022-08-04 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000091,0.000111,0.000098,0.000202,0.000343,0.000343,0.000907,0.184285,-0.001837,1.000000,0.000000 +88,2022-08-04 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000092,0.000109,0.000096,0.000202,0.000514,0.000514,0.000894,0.182305,-0.001980,1.000000,0.000000 +89,2022-08-04 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000094,0.000108,0.000094,0.000201,0.000607,0.000607,0.000881,0.180260,-0.002045,1.000000,0.000000 +90,2022-08-04 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000095,0.000106,0.000092,0.000201,0.000679,0.000679,0.000867,0.178171,-0.002088,1.000000,0.000000 +91,2022-08-04 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000097,0.000104,0.000091,0.000201,0.000621,0.000621,0.000853,0.176168,-0.002003,1.000000,0.000000 +92,2022-08-04 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000098,0.000103,0.000089,0.000201,0.000560,0.000560,0.000840,0.174254,-0.001915,1.000000,0.000000 +93,2022-08-04 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000100,0.000101,0.000087,0.000201,0.000521,0.000521,0.000826,0.172403,-0.001850,1.000000,0.000000 +94,2022-08-04 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000102,0.000099,0.000086,0.000201,0.000437,0.000437,0.000812,0.170662,-0.001742,1.000000,0.000000 +95,2022-08-04 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000103,0.000098,0.000084,0.000201,0.000320,0.000320,0.000799,0.169059,-0.001603,1.000000,0.000000 +96,2022-08-05 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000105,0.000096,0.000083,0.000201,0.000176,0.000176,0.000786,0.167620,-0.001439,1.000000,0.000000 +97,2022-08-05 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000106,0.000094,0.000082,0.000201,0.000031,0.000031,0.000773,0.166344,-0.001276,1.000000,0.000000 +98,2022-08-05 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000108,0.000093,0.000081,0.000201,0.000000,0.000000,0.000761,0.165115,-0.001229,1.000000,0.000000 +99,2022-08-05 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000109,0.000091,0.000079,0.000201,0.000000,0.000000,0.000749,0.163903,-0.001212,1.000000,0.000000 +100,2022-08-05 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000111,0.000090,0.000078,0.000201,0.000000,0.000000,0.000737,0.162708,-0.001195,1.000000,0.000000 +101,2022-08-05 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000113,0.000089,0.000077,0.000201,0.000000,0.000000,0.000726,0.161529,-0.001179,1.000000,0.000000 +102,2022-08-05 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000114,0.000087,0.000076,0.000201,0.000000,0.000000,0.000715,0.160366,-0.001163,1.000000,0.000000 +103,2022-08-05 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000116,0.000086,0.000075,0.000202,0.000000,0.000000,0.000704,0.159219,-0.001147,1.000000,0.000000 +104,2022-08-05 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000117,0.000085,0.000074,0.000202,0.000000,0.000000,0.000694,0.158088,-0.001131,1.000000,0.000000 +105,2022-08-05 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000119,0.000083,0.000073,0.000202,0.000000,0.000000,0.000684,0.156972,-0.001116,1.000000,0.000000 +106,2022-08-05 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000120,0.000082,0.000072,0.000203,0.000000,0.000000,0.000674,0.155871,-0.001101,1.000000,0.000000 +107,2022-08-05 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000122,0.000081,0.000071,0.000203,0.000000,0.000000,0.000664,0.154785,-0.001086,1.000000,0.000000 +108,2022-08-05 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000124,0.000080,0.000070,0.000203,0.000000,0.000000,0.000654,0.153714,-0.001071,1.000000,0.000000 +109,2022-08-05 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000125,0.000079,0.000069,0.000204,0.000000,0.000000,0.000645,0.152658,-0.001056,1.000000,0.000000 +110,2022-08-05 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000127,0.000077,0.000068,0.000204,0.000119,0.000119,0.000636,0.151498,-0.001159,1.000000,0.000000 +111,2022-08-05 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000128,0.000076,0.000067,0.000205,0.000356,0.000356,0.000626,0.150121,-0.001377,1.000000,0.000000 +112,2022-08-05 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000130,0.000075,0.000066,0.000205,0.000517,0.000517,0.000617,0.148604,-0.001517,1.000000,0.000000 +113,2022-08-05 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000131,0.000074,0.000064,0.000205,0.000624,0.000624,0.000607,0.147002,-0.001602,1.000000,0.000000 +114,2022-08-05 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000133,0.000073,0.000063,0.000206,0.000600,0.000600,0.000597,0.145445,-0.001557,1.000000,0.000000 +115,2022-08-05 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000135,0.000071,0.000061,0.000206,0.000564,0.000564,0.000587,0.143945,-0.001500,1.000000,0.000000 +116,2022-08-05 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000136,0.000070,0.000060,0.000206,0.000504,0.000504,0.000577,0.142525,-0.001420,1.000000,0.000000 +117,2022-08-05 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000138,0.000069,0.000059,0.000207,0.000494,0.000494,0.000567,0.141134,-0.001391,1.000000,0.000000 +118,2022-08-05 22:00:00,0.000044,0.000000,0.000000,0.000000,0.000139,0.000068,0.000058,0.000207,0.000404,0.000404,0.000557,0.139894,-0.001239,1.000000,0.000000 +119,2022-08-05 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000141,0.000067,0.000057,0.000207,0.000301,0.000301,0.000547,0.138729,-0.001165,1.000000,0.000000 +120,2022-08-06 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000142,0.000065,0.000056,0.000208,0.000166,0.000166,0.000537,0.137713,-0.001016,1.000000,0.000000 +121,2022-08-06 01:00:00,0.000040,0.000000,0.000000,0.000000,0.000144,0.000064,0.000055,0.000208,0.000043,0.000043,0.000528,0.136871,-0.000842,1.000000,0.000000 +122,2022-08-06 02:00:00,0.000040,0.000000,0.000000,0.000000,0.000145,0.000063,0.000054,0.000209,0.000000,0.000000,0.000519,0.136084,-0.000788,1.000000,0.000000 +123,2022-08-06 03:00:00,0.000040,0.000000,0.000000,0.000000,0.000147,0.000062,0.000054,0.000209,0.000000,0.000000,0.000510,0.135307,-0.000777,1.000000,0.000000 +124,2022-08-06 04:00:00,0.000040,0.000000,0.000000,0.000000,0.000148,0.000061,0.000053,0.000210,0.000000,0.000000,0.000502,0.134541,-0.000766,1.000000,0.000000 +125,2022-08-06 05:00:00,0.000087,0.000001,0.000001,0.000001,0.000150,0.000060,0.000052,0.000211,0.000000,0.000000,0.000494,0.133831,-0.000710,1.000000,0.000001 +126,2022-08-06 06:00:00,0.000053,0.000001,0.000000,0.000001,0.000151,0.000059,0.000052,0.000211,0.000000,0.000000,0.000487,0.133097,-0.000734,1.000000,0.000000 +127,2022-08-06 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000153,0.000058,0.000051,0.000212,0.000000,0.000000,0.000479,0.132322,-0.000775,1.000000,0.000000 +128,2022-08-06 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000154,0.000057,0.000050,0.000212,0.000000,0.000000,0.000472,0.131557,-0.000765,1.000000,0.000000 +129,2022-08-06 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000156,0.000057,0.000049,0.000212,0.000000,0.000000,0.000465,0.130803,-0.000754,1.000000,0.000000 +130,2022-08-06 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000157,0.000056,0.000049,0.000213,0.000000,0.000000,0.000458,0.130059,-0.000744,1.000000,0.000000 +131,2022-08-06 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000159,0.000055,0.000048,0.000214,0.000000,0.000000,0.000451,0.129325,-0.000734,1.000000,0.000000 +132,2022-08-06 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000160,0.000054,0.000047,0.000215,0.000000,0.000000,0.000445,0.128601,-0.000724,1.000000,0.000000 +133,2022-08-06 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000162,0.000053,0.000047,0.000215,0.000000,0.000000,0.000438,0.127888,-0.000714,1.000000,0.000000 +134,2022-08-06 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000163,0.000052,0.000046,0.000216,0.000101,0.000101,0.000432,0.127084,-0.000804,1.000000,0.000000 +135,2022-08-06 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000165,0.000052,0.000045,0.000217,0.000326,0.000326,0.000425,0.126069,-0.001015,1.000000,0.000000 +136,2022-08-06 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000166,0.000051,0.000044,0.000217,0.000491,0.000491,0.000419,0.124905,-0.001164,1.000000,0.000000 +137,2022-08-06 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000168,0.000050,0.000043,0.000218,0.000599,0.000599,0.000412,0.123651,-0.001254,1.000000,0.000000 +138,2022-08-06 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000169,0.000049,0.000042,0.000218,0.000658,0.000658,0.000404,0.122356,-0.001295,1.000000,0.000000 +139,2022-08-06 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000171,0.000048,0.000041,0.000219,0.000621,0.000621,0.000397,0.121115,-0.001241,1.000000,0.000000 +140,2022-08-06 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000172,0.000047,0.000040,0.000220,0.000566,0.000566,0.000389,0.119944,-0.001170,1.000000,0.000000 +141,2022-08-06 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000174,0.000046,0.000039,0.000220,0.000517,0.000517,0.000381,0.118838,-0.001106,1.000000,0.000000 +142,2022-08-06 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000175,0.000045,0.000038,0.000221,0.000438,0.000438,0.000374,0.117826,-0.001012,1.000000,0.000000 +143,2022-08-06 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000177,0.000044,0.000037,0.000221,0.000312,0.000312,0.000366,0.116951,-0.000875,1.000000,0.000000 +144,2022-08-07 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000178,0.000044,0.000036,0.000222,0.000168,0.000168,0.000359,0.116230,-0.000721,1.000000,0.000000 +145,2022-08-07 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000179,0.000043,0.000036,0.000222,0.000026,0.000026,0.000352,0.115659,-0.000571,1.000000,0.000000 +146,2022-08-07 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000181,0.000042,0.000035,0.000223,0.000000,0.000000,0.000345,0.115122,-0.000537,1.000000,0.000000 +147,2022-08-07 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000182,0.000041,0.000035,0.000223,0.000000,0.000000,0.000339,0.114592,-0.000530,1.000000,0.000000 +148,2022-08-07 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000184,0.000040,0.000034,0.000224,0.000000,0.000000,0.000333,0.114069,-0.000523,1.000000,0.000000 +149,2022-08-07 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000185,0.000040,0.000034,0.000225,0.000000,0.000000,0.000327,0.113553,-0.000516,1.000000,0.000000 +150,2022-08-07 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000187,0.000039,0.000033,0.000226,0.000000,0.000000,0.000321,0.113044,-0.000509,1.000000,0.000000 +151,2022-08-07 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000188,0.000038,0.000033,0.000226,0.000000,0.000000,0.000316,0.112542,-0.000502,1.000000,0.000000 +152,2022-08-07 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000189,0.000038,0.000032,0.000227,0.000000,0.000000,0.000311,0.112047,-0.000495,1.000000,0.000000 +153,2022-08-07 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000191,0.000037,0.000032,0.000228,0.000000,0.000000,0.000306,0.111559,-0.000488,1.000000,0.000000 +154,2022-08-07 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000192,0.000036,0.000032,0.000229,0.000000,0.000000,0.000301,0.111078,-0.000482,1.000000,0.000000 +155,2022-08-07 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000194,0.000036,0.000031,0.000229,0.000000,0.000000,0.000296,0.110603,-0.000475,1.000000,0.000000 +156,2022-08-07 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000195,0.000035,0.000031,0.000230,0.000000,0.000000,0.000291,0.110134,-0.000469,1.000000,0.000000 +157,2022-08-07 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000196,0.000035,0.000030,0.000231,0.000000,0.000000,0.000287,0.109672,-0.000462,1.000000,0.000000 +158,2022-08-07 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000198,0.000034,0.000030,0.000232,0.000097,0.000097,0.000282,0.109121,-0.000551,1.000000,0.000000 +159,2022-08-07 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000199,0.000034,0.000029,0.000233,0.000337,0.000337,0.000278,0.108340,-0.000780,1.000000,0.000000 +160,2022-08-07 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000200,0.000033,0.000028,0.000233,0.000502,0.000502,0.000273,0.107407,-0.000933,1.000000,0.000000 +161,2022-08-07 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000202,0.000032,0.000027,0.000234,0.000596,0.000596,0.000268,0.106395,-0.001012,1.000000,0.000000 +162,2022-08-07 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000203,0.000032,0.000026,0.000235,0.000628,0.000628,0.000262,0.105364,-0.001030,1.000000,0.000000 +163,2022-08-07 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000204,0.000031,0.000026,0.000235,0.000577,0.000577,0.000257,0.104398,-0.000966,1.000000,0.000000 +164,2022-08-07 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000206,0.000030,0.000025,0.000236,0.000528,0.000528,0.000251,0.103494,-0.000904,1.000000,0.000000 +165,2022-08-07 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000207,0.000030,0.000024,0.000237,0.000486,0.000486,0.000245,0.102643,-0.000851,1.000000,0.000000 +166,2022-08-07 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000208,0.000029,0.000023,0.000237,0.000403,0.000403,0.000239,0.101885,-0.000758,1.000000,0.000000 +167,2022-08-07 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000210,0.000028,0.000023,0.000238,0.000288,0.000288,0.000234,0.101252,-0.000634,1.000000,0.000000 +168,2022-08-08 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000211,0.000028,0.000022,0.000239,0.000133,0.000133,0.000228,0.100779,-0.000472,1.000000,0.000000 +169,2022-08-08 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000212,0.000027,0.000022,0.000239,0.000007,0.000007,0.000223,0.100438,-0.000342,1.000000,0.000000 +170,2022-08-08 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000213,0.000026,0.000022,0.000240,0.000000,0.000000,0.000218,0.100108,-0.000330,1.000000,0.000000 +171,2022-08-08 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000215,0.000026,0.000021,0.000241,0.000000,0.000000,0.000214,0.099782,-0.000325,1.000000,0.000000 +172,2022-08-08 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000216,0.000025,0.000021,0.000241,0.000000,0.000000,0.000209,0.099461,-0.000321,1.000000,0.000000 +173,2022-08-08 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000217,0.000025,0.000021,0.000242,0.000000,0.000000,0.000205,0.099145,-0.000317,1.000000,0.000000 +174,2022-08-08 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000218,0.000024,0.000020,0.000243,0.000000,0.000000,0.000201,0.098832,-0.000312,1.000000,0.000000 +175,2022-08-08 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000220,0.000024,0.000020,0.000244,0.000000,0.000000,0.000198,0.098524,-0.000308,1.000000,0.000000 +176,2022-08-08 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000221,0.000024,0.000020,0.000244,0.000000,0.000000,0.000194,0.098220,-0.000304,1.000000,0.000000 +177,2022-08-08 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000222,0.000023,0.000020,0.000245,0.000000,0.000000,0.000191,0.097921,-0.000300,1.000000,0.000000 +178,2022-08-08 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000223,0.000023,0.000019,0.000246,0.000000,0.000000,0.000187,0.097625,-0.000296,1.000000,0.000000 +179,2022-08-08 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000225,0.000022,0.000019,0.000247,0.000000,0.000000,0.000184,0.097334,-0.000292,1.000000,0.000000 +180,2022-08-08 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000226,0.000022,0.000019,0.000248,0.000000,0.000000,0.000181,0.097046,-0.000288,1.000000,0.000000 +181,2022-08-08 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000227,0.000022,0.000019,0.000249,0.000000,0.000000,0.000178,0.096762,-0.000284,1.000000,0.000000 +182,2022-08-08 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000228,0.000021,0.000018,0.000249,0.000082,0.000082,0.000175,0.096402,-0.000361,1.000000,0.000000 +183,2022-08-08 15:00:00,0.000000,0.000000,0.000000,0.000000,0.000229,0.000021,0.000018,0.000250,0.000323,0.000323,0.000172,0.095808,-0.000594,1.000000,0.000000 +184,2022-08-08 16:00:00,0.000000,0.000000,0.000000,0.000000,0.000231,0.000020,0.000017,0.000251,0.000470,0.000470,0.000169,0.095077,-0.000731,1.000000,0.000000 +185,2022-08-08 17:00:00,0.000000,0.000000,0.000000,0.000000,0.000232,0.000020,0.000016,0.000252,0.000592,0.000592,0.000165,0.094236,-0.000841,1.000000,0.000000 +186,2022-08-08 18:00:00,0.000000,0.000000,0.000000,0.000000,0.000233,0.000020,0.000016,0.000252,0.000628,0.000628,0.000161,0.093372,-0.000864,1.000000,0.000000 +187,2022-08-08 19:00:00,0.000000,0.000000,0.000000,0.000000,0.000234,0.000019,0.000015,0.000253,0.000592,0.000000,0.000157,0.093138,-0.000234,1.000000,0.000000 +188,2022-08-08 20:00:00,0.000000,0.000000,0.000000,0.000000,0.000235,0.000019,0.000015,0.000254,0.000533,0.000000,0.000154,0.092908,-0.000230,1.000000,0.000000 +189,2022-08-08 21:00:00,0.000000,0.000000,0.000000,0.000000,0.000236,0.000018,0.000015,0.000255,0.000505,0.000000,0.000150,0.092680,-0.000227,1.000000,0.000000 +190,2022-08-08 22:00:00,0.000000,0.000000,0.000000,0.000000,0.000238,0.000018,0.000015,0.000255,0.000418,0.000000,0.000147,0.092456,-0.000224,1.000000,0.000000 +191,2022-08-08 23:00:00,0.000000,0.000000,0.000000,0.000000,0.000239,0.000017,0.000014,0.000256,0.000296,0.000000,0.000144,0.092235,-0.000221,1.000000,0.000000 +192,2022-08-09 00:00:00,0.000000,0.000000,0.000000,0.000000,0.000240,0.000017,0.000014,0.000257,0.000149,0.000000,0.000142,0.092017,-0.000218,1.000000,0.000000 +193,2022-08-09 01:00:00,0.000000,0.000000,0.000000,0.000000,0.000241,0.000017,0.000014,0.000258,0.000007,0.000000,0.000139,0.091802,-0.000215,1.000000,0.000000 +194,2022-08-09 02:00:00,0.000000,0.000000,0.000000,0.000000,0.000242,0.000016,0.000014,0.000259,0.000000,0.000000,0.000136,0.091590,-0.000212,1.000000,0.000000 +195,2022-08-09 03:00:00,0.000000,0.000000,0.000000,0.000000,0.000243,0.000016,0.000014,0.000259,0.000000,0.000000,0.000134,0.091380,-0.000209,1.000000,0.000000 +196,2022-08-09 04:00:00,0.000000,0.000000,0.000000,0.000000,0.000244,0.000016,0.000014,0.000260,0.000000,0.000000,0.000131,0.091174,-0.000206,1.000000,0.000000 +197,2022-08-09 05:00:00,0.000000,0.000000,0.000000,0.000000,0.000245,0.000016,0.000013,0.000261,0.000000,0.000000,0.000129,0.090970,-0.000204,1.000000,0.000000 +198,2022-08-09 06:00:00,0.000000,0.000000,0.000000,0.000000,0.000246,0.000015,0.000013,0.000262,0.000000,0.000000,0.000127,0.090770,-0.000201,1.000000,0.000000 +199,2022-08-09 07:00:00,0.000000,0.000000,0.000000,0.000000,0.000248,0.000015,0.000013,0.000263,0.000000,0.000000,0.000125,0.090571,-0.000198,1.000000,0.000000 +200,2022-08-09 08:00:00,0.000000,0.000000,0.000000,0.000000,0.000249,0.000015,0.000013,0.000263,0.000000,0.000000,0.000123,0.090376,-0.000195,1.000000,0.000000 +201,2022-08-09 09:00:00,0.000000,0.000000,0.000000,0.000000,0.000250,0.000015,0.000013,0.000264,0.000000,0.000000,0.000121,0.090183,-0.000193,1.000000,0.000000 +202,2022-08-09 10:00:00,0.000000,0.000000,0.000000,0.000000,0.000251,0.000014,0.000012,0.000265,0.000000,0.000000,0.000119,0.089993,-0.000190,1.000000,0.000000 +203,2022-08-09 11:00:00,0.000000,0.000000,0.000000,0.000000,0.000252,0.000014,0.000012,0.000266,0.000000,0.000000,0.000117,0.089806,-0.000188,1.000000,0.000000 +204,2022-08-09 12:00:00,0.000000,0.000000,0.000000,0.000000,0.000253,0.000014,0.000012,0.000267,0.000000,0.000000,0.000115,0.089621,-0.000185,1.000000,0.000000 +205,2022-08-09 13:00:00,0.000000,0.000000,0.000000,0.000000,0.000254,0.000014,0.000012,0.000268,0.000000,0.000000,0.000113,0.089438,-0.000182,1.000000,0.000000 +206,2022-08-09 14:00:00,0.000000,0.000000,0.000000,0.000000,0.000255,0.000014,0.000012,0.000268,0.000088,0.000000,0.000112,0.089258,-0.000180,1.000000,0.000000 diff --git a/test/channel_loss/channel_forcing/et/peadj_0.0_eloss_calculated_values.csv b/test/channel_loss/channel_forcing/et/peadj_0.0_eloss_calculated_values.csv new file mode 100644 index 000000000..a9f39bf56 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/peadj_0.0_eloss_calculated_values.csv @@ -0,0 +1,260 @@ +key,202208010000,202208010100,202208010200,202208010300,202208010400,202208010500,202208010600,202208010700,202208010800,202208010900,202208011000,202208011100,202208011200,202208011300,202208011400,202208011500,202208011600,202208011700,202208011800,202208011900,202208012000,202208012100,202208012200,202208012300,202208020000,202208020100,202208020200,202208020300,202208020400,202208020500,202208020600,202208020700,202208020800,202208020900,202208021000,202208021100,202208021200,202208021300,202208021400,202208021500,202208021600,202208021700,202208021800,202208021900,202208022000,202208022100,202208022200,202208022300,202208030000,202208030100,202208030200,202208030300,202208030400,202208030500,202208030600,202208030700,202208030800,202208030900,202208031000,202208031100,202208031200,202208031300,202208031400,202208031500,202208031600,202208031700,202208031800,202208031900,202208032000,202208032100,202208032200,202208032300,202208040000,202208040100,202208040200,202208040300,202208040400,202208040500,202208040600,202208040700,202208040800,202208040900,202208041000,202208041100,202208041200,202208041300,202208041400,202208041500,202208041600,202208041700,202208041800,202208041900,202208042000,202208042100,202208042200,202208042300,202208050000,202208050100,202208050200,202208050300,202208050400,202208050500,202208050600,202208050700,202208050800,202208050900,202208051000,202208051100,202208051200,202208051300,202208051400,202208051500,202208051600,202208051700,202208051800,202208051900,202208052000,202208052100,202208052200,202208052300,202208060000,202208060100,202208060200,202208060300,202208060400,202208060500,202208060600,202208060700,202208060800,202208060900,202208061000,202208061100,202208061200,202208061300,202208061400,202208061500,202208061600,202208061700,202208061800,202208061900,202208062000,202208062100,202208062200,202208062300,202208070000,202208070100,202208070200,202208070300,202208070400,202208070500,202208070600,202208070700,202208070800,202208070900,202208071000,202208071100,202208071200,202208071300,202208071400,202208071500,202208071600,202208071700,202208071800,202208071900,202208072000,202208072100,202208072200,202208072300,202208080000,202208080100,202208080200,202208080300,202208080400,202208080500,202208080600,202208080700,202208080800,202208080900,202208081000,202208081100,202208081200,202208081300,202208081400,202208081500,202208081600,202208081700,202208081800,202208081900,202208082000,202208082100,202208082200,202208082300,202208090000,202208090100,202208090200,202208090300,202208090400,202208090500,202208090600,202208090700,202208090800,202208090900,202208091000,202208091100,202208091200,202208091300,202208091400 +2619299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620680,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620690,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620700,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620710,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620720,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620730,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620740,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620750,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620760,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620770,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620780,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620800,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620810,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620820,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620830,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620840,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620880,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620890,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620900,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620910,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/test/channel_loss/channel_forcing/et/peadj_1.0_eloss_calculated_values.csv b/test/channel_loss/channel_forcing/et/peadj_1.0_eloss_calculated_values.csv new file mode 100644 index 000000000..8ba4b24a6 --- /dev/null +++ b/test/channel_loss/channel_forcing/et/peadj_1.0_eloss_calculated_values.csv @@ -0,0 +1,260 @@ +key,202208010000,202208010100,202208010200,202208010300,202208010400,202208010500,202208010600,202208010700,202208010800,202208010900,202208011000,202208011100,202208011200,202208011300,202208011400,202208011500,202208011600,202208011700,202208011800,202208011900,202208012000,202208012100,202208012200,202208012300,202208020000,202208020100,202208020200,202208020300,202208020400,202208020500,202208020600,202208020700,202208020800,202208020900,202208021000,202208021100,202208021200,202208021300,202208021400,202208021500,202208021600,202208021700,202208021800,202208021900,202208022000,202208022100,202208022200,202208022300,202208030000,202208030100,202208030200,202208030300,202208030400,202208030500,202208030600,202208030700,202208030800,202208030900,202208031000,202208031100,202208031200,202208031300,202208031400,202208031500,202208031600,202208031700,202208031800,202208031900,202208032000,202208032100,202208032200,202208032300,202208040000,202208040100,202208040200,202208040300,202208040400,202208040500,202208040600,202208040700,202208040800,202208040900,202208041000,202208041100,202208041200,202208041300,202208041400,202208041500,202208041600,202208041700,202208041800,202208041900,202208042000,202208042100,202208042200,202208042300,202208050000,202208050100,202208050200,202208050300,202208050400,202208050500,202208050600,202208050700,202208050800,202208050900,202208051000,202208051100,202208051200,202208051300,202208051400,202208051500,202208051600,202208051700,202208051800,202208051900,202208052000,202208052100,202208052200,202208052300,202208060000,202208060100,202208060200,202208060300,202208060400,202208060500,202208060600,202208060700,202208060800,202208060900,202208061000,202208061100,202208061200,202208061300,202208061400,202208061500,202208061600,202208061700,202208061800,202208061900,202208062000,202208062100,202208062200,202208062300,202208070000,202208070100,202208070200,202208070300,202208070400,202208070500,202208070600,202208070700,202208070800,202208070900,202208071000,202208071100,202208071200,202208071300,202208071400,202208071500,202208071600,202208071700,202208071800,202208071900,202208072000,202208072100,202208072200,202208072300,202208080000,202208080100,202208080200,202208080300,202208080400,202208080500,202208080600,202208080700,202208080800,202208080900,202208081000,202208081100,202208081200,202208081300,202208081400,202208081500,202208081600,202208081700,202208081800,202208081900,202208082000,202208082100,202208082200,202208082300,202208090000,202208090100,202208090200,202208090300,202208090400,202208090500,202208090600,202208090700,202208090800,202208090900,202208091000,202208091100,202208091200,202208091300,202208091400 +2619299,3.441656403440938e-05,1.169494894373134e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5394746277816627e-05,6.699535037766097e-05,9.623272273698931e-05,0.00011544585314454794,0.00010826181307911298,0.00010324969210322811,9.088646036271214e-05,7.117211785756502e-05,6.215030010097228e-05,4.778221997010233e-05,3.0406867253701487e-05,1.5203433626850744e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.088383739952025e-05,5.730524982428357e-05,8.21987840045117e-05,0.00010074363161528568,0.00011761777223409805,0.00011060080286785926,9.690100553377396e-05,8.888161197235821e-05,7.752080442701918e-05,5.8641815417852865e-05,3.608727102637099e-05,1.0191312650965884e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5394746277816627e-05,6.81648452720341e-05,9.673393483457779e-05,0.00011628120664052875,0.0001244676709011407,0.00011895433782766734,0.00010174605581046265,9.272423805386994e-05,7.885737002058846e-05,6.0312522409814485e-05,3.708969522154797e-05,1.2864443838104474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4058180684247328e-05,6.666120897926864e-05,9.489615714342002e-05,0.0001182860550308827,0.00013616261984487202,0.00013198585236496799,0.00011511171174615564,9.255716735467375e-05,8.036100631335393e-05,6.181615870257995e-05,3.842626081511726e-05,1.5370504326046904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5728887676208948e-05,6.732949177605329e-05,9.589858133859698e-05,0.0001169494894373134,0.00011845312573007887,0.00011327393405499784,9.623272273698931e-05,8.136343050853091e-05,6.983555226399572e-05,5.463211863714498e-05,3.374828123762473e-05,1.4702221529262256e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2721615090678035e-05,6.448928988971854e-05,9.472908644422386e-05,0.0001161141359413326,0.00013582847844647973,0.0001296468625762217,0.00011293979265660551,9.439494504583153e-05,8.002686491496159e-05,6.148201730418762e-05,3.7590907319136446e-05,1.2697373138908314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.238747369228571e-05,6.46563605889147e-05,9.556443994020466e-05,0.00011527878244535177,0.00013265413516175265,0.00012647251929149466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619300,9.636512488139781e-05,3.1809847048228406e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.110436399015761e-05,0.00018898791481594524,0.00026710915683144737,0.00032324418103420335,0.00030312913069488245,0.00028488524782898674,0.00024652631462377013,0.00019319804163115192,0.00016980844821333694,0.00013238509874483292,8.23313688307088e-05,3.9294516941929204e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89417754128938e-05,0.0001623237783196361,0.00023015359923129962,0.0002816107047504927,0.00032885768345447894,0.00031342055179872105,0.000266641364963091,0.00024418735528198866,0.000210506340760335,0.0001627915701879924,9.917187609153561e-05,2.6664136496309106e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.92331965167324e-05,0.00018992349855265783,0.00026757694869980367,0.0003246475566392722,0.00034242364763681165,0.0003246475566392722,0.00027880395354035485,0.00025026864957062054,0.00021378088383882914,0.0001651305295297739,0.00010010745982824821,3.3213222653297304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736202904330721e-05,0.00018805233107923265,0.00026710915683144737,0.00032792209971776635,0.0003779758296318905,0.00036113532237106366,0.0003096782168518707,0.00025120423330733313,0.00021799101065403585,0.00016887286447662432,0.00010478537851181122,4.06978925469981e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.250773959522651e-05,0.0001885201229475889,0.0002661735730947347,0.0003251153485076286,0.00032324418103420335,0.00030780704937844545,0.00026056007067445914,0.0002231367212059551,0.0001894557066843015,0.00014922560600565972,9.26227899345474e-05,3.9294516941929204e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.5490861569882e-05,0.00018384220426402592,0.00026383461375295325,0.00032137301356077817,0.0003686199922647645,0.00035224727687229395,0.0003035969225632387,0.0002535431926491146,0.00021705542691732326,0.00016700169700319912,0.00010104304356496082,3.2745430784941e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.31519022281005e-05,0.0001800998693171755,0.0002614956544111718,0.00031903405421899664,0.00036253869797613254,0.00034523039884694947,0.000294708877064469,0.00026102786254281543,0.0002236045130743114,0.00016887286447662432,8.98160387244096e-05,1.5904923524114203e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.47316485976871e-05,0.00017448636689689994,0.0002554143601225399,0.00031435613553543364,0.0003639420735812015,0.0003499083175305124,0.0002979834201429631,0.00026477019748966584,0.00022594347241609291,0.00017261519942347474,0.00010010745982824821,2.7131928364665407e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619301,6.278266342470894e-05,1.9639704968755107e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.636258222132353e-05,0.00012556532684941787,0.00017579145758918506,0.00021152928138478864,0.00019671901206408802,0.00018319659224953533,0.00015615175262042997,0.00012395551496673305,0.00010817935851642157,8.532002978229678e-05,5.183594262245201e-05,2.3181291110661764e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.766959805482537e-05,0.0001088232832694955,0.00015228820410198633,0.00018448444175568325,0.00021442694277362136,0.00020026059820599473,0.00017064005956459355,0.00015904941400926264,0.00013619008527513784,0.00010656954663373675,6.407051293085683e-05,1.545419407377451e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507473271517566e-05,0.00012653121397902882,0.00017611341996572201,0.00021217320613786255,0.0002211881526808977,0.0002063778833601971,0.00017740126947186989,0.00016098118826848447,0.00013747793478128574,0.0001068915090102737,6.342658817778289e-05,1.931774259221814e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4108845585564756e-05,0.00012556532684941787,0.00017675734471879598,0.0002137830180205474,0.00024533533092117036,0.00023149094873008074,0.00019671901206408802,0.00016098118826848447,0.00013973167141704456,0.0001088232832694955,6.729013669622652e-05,2.4469140616809645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.700650697439748e-05,0.00012556532684941787,0.0001754694952126481,0.00021249516851439953,0.0002086316199959559,0.00019510920018140317,0.00016226903777463234,0.0001413414832997294,0.0001204139288248264,9.530086345494281e-05,5.956303965933926e-05,2.350325348719874e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.249903370287991e-05,0.00012234570308404822,0.00017289379620035234,0.00020830965761941894,0.00023728627150774613,0.00022537366357587826,0.00019253350116910746,0.00016323492490424328,0.00013940970904050757,0.00010817935851642157,6.407051293085683e-05,1.899578021568117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.088922182019506e-05,0.00011944804169521549,0.00017031809718805654,0.00020766573286634497,0.0002337446853658395,0.0002211881526808977,0.000187060140767979,0.00016742043579922388,0.00014391718231202512,0.00010785739613988462,5.763126540011744e-05,8.049059413424225e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5415861419066583e-05,0.00011558449317677185,0.00016774239817576086,0.0002044461091009753,0.00023535449724852432,0.00022408581406973042,0.00018963583978027473,0.0001690302476819087,0.00014520503181817302,0.00011204290703486521,6.43924753073938e-05,1.577615645031148e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.960137231404718e-05 +2619302,0.00014777613257844417,4.401842247017486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010768792640024921,0.00029869643819047234,0.0004166029269498692,0.0004975653825646552,0.0004590492629032522,0.00042603544605062093,0.00036315198537894265,0.0002947662218984924,0.00025546405897869335,0.00020044103089097482,0.00012026461853458489,5.109281179573868e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.725080168195377e-05,0.0002625384483042572,0.00036472407189573456,0.00043782609492656074,0.0005085699881821989,0.00047005386852079587,0.0004016681050403456,0.0003796588938052582,0.00032306377920074766,0.00024996175616992153,0.00014856217583684018,3.2227773594235174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001053297966250613,0.0003018406112240562,0.00041817501346666123,0.0005007095555982391,0.0005156443775077628,0.0004802724308799436,0.00041188666739949345,0.00037887285054686226,0.00032306377920074766,0.0002507477994283175,0.00014541800280325624,4.1660292694986925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010375771010826932,0.0003018406112240562,0.0004213191865002452,0.0005038537286318229,0.0005730255353706692,0.0005407977617764341,0.0004590492629032522,0.00037887285054686226,0.00032856608200951953,0.00025546405897869335,0.00015720865167919595,5.345094157092662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011004605617543714,0.00029869643819047234,0.0004173889702082652,0.000503067685373427,0.0004889189067222994,0.0004559050898696682,0.00038123098032205013,0.00033249629830149933,0.0002853337027977406,0.0002248083719012502,0.0001391296567360884,5.266489831253065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.904145055789343e-05,0.0002916220488649085,0.00040874249436590945,0.0004889189067222994,0.0005549465404275617,0.0005250768966085144,0.00044725861402731236,0.00038516119661403004,0.0003277800387511236,0.00025389197246190144,0.00014777613257844417,4.087424943659094e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.511123426591356e-05,0.0002837616162809487,0.0004032401915571376,0.0004889189067222994,0.0005478721511019979,0.0005140722909909707,0.0004370400516681646,0.00039459371571478176,0.0003379986011102712,0.0002531059292035055,0.00013284131066892057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619303,3.336635847427876e-05,9.770259663739085e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.433347689836904e-05,6.783878408030158e-05,9.56748068958601e-05,0.00011410925909159422,0.00010489203299372715,9.733390759347616e-05,8.332372392471823e-05,6.673271694855753e-05,5.640942371894641e-05,4.442702979171924e-05,2.6361266639899793e-05,1.069198227352579e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9356174805520826e-05,6.0649347723965264e-05,8.516716914429166e-05,0.00010212686516436702,0.00011908656118444241,0.00011208146935006348,9.420005072020135e-05,8.756364792973707e-05,7.410649782685117e-05,5.622507919698907e-05,3.35507029962361e-05,6.8207473124216245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3780443332497018e-05,6.894485121204562e-05,9.659652950564682e-05,0.00011410925909159422,0.0001170587714429117,0.00011005367960853271,9.346267263237201e-05,8.553585818820632e-05,7.189436356336308e-05,5.493466754328769e-05,3.133856873274801e-05,9.032881575909718e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3411754288582335e-05,6.912919573400295e-05,9.751825211543348e-05,0.00011558401526725294,0.0001283037872823095,0.00012185172901380255,0.00010507637751568449,8.516716914429166e-05,7.28160861731498e-05,5.530335658720236e-05,3.465677012798015e-05,1.1429360361355157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.507085498619841e-05,6.857616216813094e-05,9.641218498368946e-05,0.00011503098170138093,0.00011042236865244739,0.000101573831598495,8.719495888582238e-05,7.576559852446724e-05,6.433623816311209e-05,4.903564284065277e-05,3.152291325470535e-05,1.1429360361355157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2305687156838287e-05,6.636402790464285e-05,9.420005072020135e-05,0.00011226581387202079,0.00012535427493099203,0.00011963959475031444,0.0001028642432521964,8.645758079799304e-05,7.28160861731498e-05,5.585639015307439e-05,3.1891602298620026e-05,8.664192531995037e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.138396454705158e-05,6.470492720702677e-05,9.272529454454262e-05,0.00011152843578419143,0.00012443255232120532,0.00011798049405269838,0.0,0.0,0.0,0.0,0.0,2.5808233074027767e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619304,8.815130296106196e-05,2.5399527971831414e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.474389483015851e-05,0.00018078487556421184,0.00025349724975808215,0.0003008100959801211,0.0002764066279287537,0.0002549913396387781,0.00022012924242253894,0.00017779669580281988,0.0001523971678309885,0.00011902916049544525,7.121828431317436e-05,2.9881797613919313e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.279117578459078e-05,0.0001608636771549323,0.00022510954202485878,0.0002684381485650418,0.0003107706951847608,0.0002918455566959453,0.0002485169501557623,0.0002340740813090346,0.00019821592417233145,0.0001509030779502925,8.864933292129395e-05,1.7431048608119597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.275177498923054e-05,0.00018277699540513977,0.0002554893695990101,0.00030280221582104904,0.00030877857534383286,0.0002908494967754813,0.00024752089023529834,0.00022959181166694667,0.00019323562457001156,0.00014940898806959656,8.416706327920606e-05,2.3407408130903457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.275177498923054e-05,0.00018476911524606775,0.00025847754936040207,0.00030678645550290495,0.00034065249279868016,0.00032322144419056053,0.0002779007178094496,0.00023108590154764268,0.00019821592417233145,0.0001518991378707565,9.313160256338184e-05,2.9881797613919313e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.723404463131846e-05,0.00018277699540513977,0.0002564854295194741,0.00030628842554267287,0.0002953317664175692,0.0002709282983662018,0.00023208196146810668,0.00020269819381441934,0.0001728163962005,0.00013347202934217294,8.466509323943804e-05,3.0379827574151302e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.926556526760664e-05,0.00017530654600165992,0.00024901498011599426,0.0002963278263380332,0.00033168795351450433,0.0003142569049063848,0.0002714263283264337,0.00023457211126926662,0.00019771789421209945,0.00015140110791052452,8.6159183120134e-05,2.290937817067147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.677541546644669e-05,0.00017132230631980406,0.0002445327104739064,0.00029483373645733716,0.00032720568387241644,0.00030828054538360093,0.0002644539088831859,0.0002395524108715865,0.00020369425373488334,0.00015339322775145248,7.868873371665418e-05,6.972419443247839e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9802996023198857e-05,0.00016783609659818015,0.00024303862059321042,0.0002903514668152493,0.00033019386363380835,0.00030877857534383286,0.000261465729121794,0.00024054847079205046,0.0002041922836951153,0.00015638140751284438,8.864933292129395e-05,1.8427108528583572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.528132558575073e-05 +2619305,6.928816221219512e-05,2.040151442914634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1196253190121954e-05,0.00014358046947304877,0.00020093567041536584,0.0002378893569285365,0.0002178727767339024,0.00020055073618085363,0.00017629987940658535,0.0001416557983004878,0.00012240908657487802,9.430888745548779e-05,5.735520094231707e-05,2.3865922539756094e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2342765796341456e-05,0.00012856803432707313,0.00017783961634463416,0.00021248369745073165,0.00024558804161878045,0.00023019067223829266,0.00019862606500829267,0.00018977257761451215,0.00016013264155707315,0.00012125428387134145,7.04429649157317e-05,1.3857632442439022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.965651625207317e-05,0.00014550514064560975,0.00020247540735341462,0.0002413537650391463,0.00024404830468073167,0.00022980573800378046,0.00019554659113219512,0.00018322869562780489,0.00015435862803939022,0.0001174049415262195,6.697855680512194e-05,1.847684325658536e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.850171354853657e-05,0.00014550514064560975,0.00020401514429146337,0.0002425085677426829,0.0002709937010965853,0.00025521139748158533,0.00021979744790646342,0.00018630816950390244,0.00015936277308804876,0.00012279402080939023,7.313750455731707e-05,2.3096054070731708e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2735990128170726e-05,0.00014512020641109754,0.00020363021005695116,0.0002444332389152439,0.00023404001458341464,0.00021671797403036586,0.00018630816950390244,0.0001647518523712195,0.000140116061362439,0.0001089363883669512,6.813335950865853e-05,2.4250856774268285e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.657704237597561e-05,0.00013857632442439025,0.00019516165689768293,0.0002332701461143902,0.00026252514793731707,0.00024751271279134144,0.00021517823709231708,0.00018861777491097558,0.0001582079703845122,0.00012086934963682925,6.928816221219512e-05,1.8091909022073167e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503730543792682e-05,0.00013665165325182923,0.00019477672266317067,0.000234809883052439,0.0002602155425302439,0.00024327843621170726,0.0002105590262781707,0.0001932369857251219,0.00016282718119865847,0.0001231789550439024,6.197441175646341e-05,5.774013517682927e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619306,9.035235432465189e-05,2.7410264795119113e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.700286949918005e-05,0.0001873034760999806,0.00026344310053086703,0.0003121724601666343,0.0002852697928677211,0.00026445829552327883,0.00023501764074333612,0.00018933386608480424,0.00016243119878589103,0.0001243613865704478,7.613962443088642e-05,3.1978642260972295e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6343322078855955e-05,0.00016953756373277375,0.00023400244575092424,0.00028070141540186797,0.0003238472025793702,0.00030354330273113387,0.0002659810880118966,0.00025430634559916066,0.0002136985459026879,0.0001614160037934792,9.289034180568144e-05,1.827350986341274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.49724795143564e-05,0.00019034906107721604,0.0002659810880118966,0.0003192788251135171,0.0003208016176021347,0.00030151291274631026,0.00025836712556880797,0.0002431392006826306,0.00020405419347477562,0.00015329444385418466,8.781436684362234e-05,2.4364679817883653e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.294208952953278e-05,0.00018933386608480424,0.0002675038805005143,0.0003192788251135171,0.0003578562348251662,0.00033602954248831214,0.00028933057283736844,0.00024973796813330745,0.00021217575341407017,0.00016344639377830286,9.69511217753287e-05,2.994825227614866e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.852566198779779e-05,0.00019034906107721604,0.0002680114779967202,0.0003238472025793702,0.0003091268751893988,0.00028679258535633883,0.00024719998065227794,0.00022182010584198246,0.0001873034760999806,0.00014618807890730192,9.136754931706371e-05,3.24862397571782e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.091169954470914e-05,0.00018019711115309787,0.00025329115060674886,0.00030557369271595747,0.0003456738949162243,0.00032486239757178206,0.0002842545978753093,0.0002517683581181311,0.0002096377659330406,0.00015989321130486148,9.187514681326961e-05,2.3857082321677746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.837371206367959e-05,0.00017968951365689194,0.00025582913808777836,0.0003106496676780166,0.0003441511024276066,0.00031978642260972295,0.00027917862291325027,0.0002573519305763961,0.0002157289358875115,0.0001629387962820969,8.121559939294552e-05,7.6139624430886425e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0252152124385035e-05,0.00017309074620621516,0.0002517683581181311,0.0003010053152501043,0.000342120712442783,0.00031623324013628165,0.0002781634279208384,0.0002527835531105429,0.0002136985459026879,0.00016395399127450876,9.390553679809326e-05,1.928870485582456e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5328127086444134e-05 +2619307,0.0001636311054460275,5.034803244493154e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011867750504876721,0.00033085849892383585,0.0004684165161394524,0.0005574246449260278,0.0005133701165367127,0.0004702146601553428,0.00042256384373424684,0.0003443445790430139,0.0002948956186060276,0.00022746521801013712,0.00014205337725534253,6.20359685482192e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001024942089057535,0.00030118912266164407,0.0004189675557024661,0.0005043793964572606,0.0005808005171326031,0.000536745988743288,0.0004783063082268497,0.0004576276520441099,0.00038480281940054823,0.00029399654659808237,0.00016632832146986314,3.326566429397262e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011418214500904116,0.00033625293097150707,0.00047201280417123314,0.0005673144370134251,0.0005700116530372607,0.0005241589806320552,0.0004576276520441099,0.00043425177983753453,0.000362326019201918,0.00027421696242328785,0.00016003481741424667,4.40545283893151e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011148492898520557,0.00033085849892383585,0.00047291187617917843,0.0005682135090213701,0.0006338457656013703,0.0005852958771723291,0.000510672900512877,0.00045493043602027423,0.00038210560337671257,0.0002984919066378084,0.00017531904154931516,5.304524846876716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012227379308054804,0.0003389501469953427,0.00047740723621890436,0.0005763051570928771,0.0005592227889419181,0.000510672900512877,0.00044144435590109623,0.00040727961959917836,0.0003407482910112331,0.0002679234583676714,0.00016632832146986314,6.113689654027402e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010609049693753432,0.0003155742747887673,0.00044593971594082227,0.0005430394927989045,0.0006140661814265757,0.0005718097970531511,0.0005043793964572606,0.0004585267240520551,0.00037940838735287696,0.00029219840258219194,0.00016722739347780835,4.40545283893151e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001024942089057535,0.00031737241880465774,0.00045403136401232905,0.0005520302128783564,0.0006131671094186306,0.0005664153650054797,0.0004962877483857536,0.00046032486806794545,0.0003857018914084934,0.00029129933057424676,0.00014385152127123298,1.4385152127123295e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.81090567786302e-05,0.00030388633868547963,0.0004450406439328771,0.0005331497007115072,0.0006050754613471236,0.0005556265009101373,0.0004908933163380825,0.0004576276520441099,0.00038210560337671257,0.0002948956186060276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619308,0.00011961495144322211,3.721354044900243e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.638857604232708e-05,0.00023790084787040833,0.0003409026116131829,0.0004080198899229909,0.0003794452070782212,0.0003409026116131829,0.00030767623621228796,0.0002511913980307664,0.0002179650226298714,0.00016812545952852882,0.00010765345629889988,4.7845980577288835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.708519093007645e-05,0.00021730049512185345,0.0003023600161481447,0.00036416107439380947,0.0004179878025432594,0.00038010973458623906,0.00034821241420137993,0.00033957355659714714,0.000287075883463733,0.00021929407764590718,0.0001222730614752937,2.525204530468022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.373046601025545e-05,0.0002452106504586053,0.00034621883167732615,0.0004159942200192057,0.0004159942200192057,0.00037811615206218534,0.00033226375400895023,0.00031897320384859226,0.0002664755307151781,0.00020201636243744175,0.0001222730614752937,3.3226375400895025e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.173688348620175e-05,0.00024055895790248,0.0003455543041693083,0.0004166587475272236,0.0004605175630564051,0.0004173232750352414,0.0003708063494739885,0.0003442252491532725,0.0002877404109717509,0.00022461029771005036,0.0001295828640634906,3.7878067957020333e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.971121358241657e-05,0.00024986234301473055,0.0003515350517414693,0.00042463307762343844,0.00041200705497109835,0.000374128987014078,0.0003329282815169682,0.0003090052912283238,0.0002591657281269812,0.00020201636243744175,0.00012426664399934739,4.518787054521724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.708519093007645e-05,0.00022660388023410406,0.00032030225886462804,0.000394729339762633,0.00044722701289604704,0.0004146651650031699,0.0003694772944579526,0.00034621883167732615,0.00028574682844769724,0.00022128766016996088,0.000126924754031419,3.3226375400895025e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.509160840602275e-05,0.00023391368282230096,0.0003342573365330039,0.0004046972523829014,0.0004485560679120828,0.00041200705497109835,0.00036416107439380947,0.0003468833591853441,0.00028906946598778675,0.0002186295501378893,0.00010632440128286408,1.1961495144322209e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.445916827773634e-05,0.00022328124269401455,0.000326947533944807,0.00038941311969848975,0.0004419107928319038,0.00040071008733479394,0.00035685127180561257,0.0003415671391212009,0.00028641135595571513,0.000220623132661943,0.0001255956990153832,2.7245627828733925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.110444335791535e-05 +2619309,8.247170067484863e-05,2.4741510202454584e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.209633933165072e-05,0.00017027980551101096,0.0002445043361183747,0.0002915617182681413,0.00026779046336774376,0.00024013818725911808,0.00021830744296283457,0.00017804184792746732,0.0001562111036311839,0.00011740089154890218,7.665016886250635e-05,3.2988680269939456e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.627480751930847e-05,0.00015524084832912682,0.00021442642175460643,0.00025760278269614477,0.00029447248417431245,0.00026633508041465825,0.00024790022967557436,0.00024498946376940323,0.00020811976229123563,0.00015524084832912682,8.635272188307678e-05,1.6494340134969728e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0155828727536643e-05,0.00017610133732335324,0.0002488704849776314,0.0002998088883356262,0.0002964129947784265,0.0002682755910187723,0.00023916793195706098,0.0002299505065875191,0.00019356593276038,0.00014311265705341377,8.780810483616237e-05,2.231587194731198e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.821531812342256e-05,0.0001731905714171821,0.0002483853573266029,0.00029932376068459766,0.0003313421856524801,0.00029786837773151205,0.0002653648251126011,0.00024935561262866,0.00021103052819740678,0.00016057725249044057,9.168912604439054e-05,2.5226637853483104e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.403684993576482e-05,0.00017901210322952436,0.0002532366338368882,0.0003066006754500254,0.000294957611825341,0.0002697309739718578,0.00024207869786323216,0.00022509923007723388,0.00018968491155215184,0.00014553829530855638,8.780810483616237e-05,3.104816966582536e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.481942456622291e-05,0.0001620326354435261,0.00022849512363443356,0.00028234429289859944,0.0003206693773298526,0.00029544273947636944,0.0002658499527636297,0.0002512961232327741,0.00020860488994226413,0.00015815161423529797,9.07188707423335e-05,2.183074429628346e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3849169264165874e-05,0.00016882442255792543,0.00024013818725911808,0.00029107659061711276,0.0003206693773298526,0.0002925319735701983,0.00026148380390437294,0.0002527515061858596,0.00021054540054637824,0.0001571813589332409,7.567991356044931e-05,7.76204241645634e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5601999196681e-05,0.00016057725249044057,0.00023577203839986137,0.00027943352699242826,0.0003148478455175103,0.0002886509523619702,0.00025857303799820187,0.00024595971907146033,0.00020811976229123563,0.0001571813589332409,8.877836013821941e-05,1.7464595437026766e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.045327570696621e-05 +2619310,6.338137174181204e-05,1.8735374036887833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.022674741803972e-05,0.00013632974299182212,0.0001945289900000269,0.000231202488114786,0.00021127123913937344,0.00018974549024592787,0.00017180736616805652,0.00014071461776641285,0.00012437099360657454,9.208237026640618e-05,6.0989621864762526e-05,2.591062366803637e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.624049762295721e-05,0.00012317511866804978,0.00016981424127051527,0.00020369736452871664,0.00023239836305331078,0.00021127123913937344,0.00019612348991805988,0.00019373174004101037,0.00016503074151641623,0.00012197924372952505,6.736762153689455e-05,1.2357374364755806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.823362252049847e-05,0.00013951874282788814,0.00019731936485658467,0.00023797911276642633,0.00023319561301232732,0.00021166986411888167,0.00019213724012297738,0.00018336749057379581,0.00015506511702870993,0.000112412244221327,6.896212145492756e-05,1.7140874118854826e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.743637256148197e-05,0.00013951874282788814,0.00019731936485658467,0.00023797911276642633,0.00026388973643446274,0.00023837773774593459,0.00021127123913937344,0.00019971111473363415,0.00016981424127051527,0.00012795861842214881,7.215112129099359e-05,1.8735374036887833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142262235656448e-05,0.00014191049270493761,0.00020050836469265063,0.0002447557374180666,0.00023638461284839328,0.000216851988852489,0.00019333311506150214,0.00017977986575822154,0.00015187611719264392,0.000115601244057393,6.936074643443581e-05,2.3917498770495108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.424737272541595e-05,0.00012915449336067358,0.00018177299065576282,0.00022442586346314576,0.00025591723684429763,0.0002355873628893768,0.00021326436403691472,0.00020050836469265063,0.000167821116372974,0.00012476961858608283,7.135387133197705e-05,1.6343624159838325e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.345012276639945e-05,0.00013353936813526436,0.00018974549024592787,0.000231202488114786,0.00025432273692626466,0.0002319997380738026,0.00020967673922134045,0.0002025014895901919,0.00016821974135248225,0.00012516824356559105,5.939512194672952e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619311,0.00014111085302596788,3.904954423360117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011182369485076699,0.00031417133315215487,0.00044729477940306795,0.0005280563367952887,0.0004748069582949233,0.0004251075383612491,0.0003780705873525932,0.0003115088642271366,0.0002751217889185537,0.00020501010722640618,0.00013578591517593135,5.679933706705625e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010294879843403946,0.00028044672676859025,0.0003913829319776845,0.0004659320618781958,0.0005253938678702703,0.0004756944479365961,0.00043841988298634035,0.0004313199658529584,0.0003691956909358656,0.0002715718303518627,0.00014909825980102267,2.484970996683711e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010738624664240324,0.00031772129171884583,0.00044995724832808625,0.0005360437435703435,0.0005236188885869249,0.00046948202044488674,0.0004304324762112857,0.0004073577455277941,0.0003452334706107013,0.0002538220375184076,0.00015353570800938642,3.549958566691016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010472377771738497,0.00031505882279382765,0.000450844737969759,0.0005387062124953616,0.0005910681013540542,0.0005307188057203069,0.0004712569997282323,0.0004455198001197224,0.000382508035560957,0.0002831091956936085,0.00016063562514276848,3.816205459192842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011448616377578525,0.0003221587399272097,0.0004552821861781228,0.0005484685985537619,0.000536931233212016,0.0004907817718450329,0.0004419698415530314,0.0004055827662444485,0.000346120960252374,0.00025825948572677146,0.00015353570800938642,5.147439921701973e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.939883986734844e-05,0.00029908400924371807,0.0004242200487195764,0.0005138565025285245,0.0005777557567289628,0.0005307188057203069,0.0004819068754283053,0.000450844737969759,0.00038073305627761144,0.00027689676820189923,0.00015708566657607743,3.372460638356465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.673637094233019e-05,0.0003035214574520818,0.00043309494513630393,0.0005200689300202339,0.0005679933706705625,0.0005174064610952155,0.00047214448936990514,0.00044906975868641346,0.0003771830977109204,0.00027689676820189923,0.00013046097732589482,1.15373653417458e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164904703389336e-05,0.0002893216231853178,0.0004242200487195764,0.0005058690957534698,0.0005537935364037985,0.0005103065439618335,0.00045883214474481374,0.0004366449037029949,0.0003754081184275748,0.0002751217889185537,0.0001526482183677137,2.484970996683711e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.05239434506209e-05 +2619312,0.00024684960152040396,6.333641091641943e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020137730650348742,0.000578147750929367,0.0008185013103044972,0.000966286269109476,0.0008558535526398214,0.0007714050047512623,0.0006820844252537477,0.000560283635029864,0.0004920751925044894,0.00036215434959901364,0.00024035355937513013,0.00010068865325174371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018838522221293987,0.0005115633189403107,0.0007178126570527535,0.0008509815210308663,0.0009532941848189282,0.0008655976158577323,0.0007973891733323574,0.000777901046896536,0.0006739643725721555,0.00048720316089553406,0.00026471371741990687,3.7352242335324284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019163324328557674,0.0005797717614656855,0.0008201253208408156,0.0009744063217910681,0.0009484221532099731,0.0008477334999582294,0.0007843970890418099,0.0007291807308069826,0.0006171240038010099,0.0004530989396328467,0.000276081791174136,5.6840368771145644e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018838522221293987,0.0005716517087840933,0.000824997352449771,0.0009825263744726602,0.0010702229434338564,0.000966286269109476,0.0008607255842487768,0.0008136292786955419,0.0006999485411532506,0.0005066912873313554,0.00028582585439204666,6.008838984378253e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020624933811244276,0.0005878918141472778,0.0008314933945950447,0.0009971424692995264,0.0009873984060816158,0.0009029498581930563,0.0008233733419134526,0.0007470448467064855,0.0006414841618457866,0.0004725870660686682,0.000276081791174136,8.607255842487768e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017701714845871073,0.0005472915507393167,0.0007843970890418099,0.0009419261110646992,0.001057230859143309,0.0009727823112547497,0.0008915817844388275,0.0008201253208408156,0.0006967005200806139,0.0005018192557224,0.0002793298122467729,5.359234769850875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017214511684975536,0.000552163582348272,0.0007908931311870837,0.0009484221532099731,0.0010247506484169402,0.0009386780899920622,0.0008623495947850952,0.0008071332365502682,0.0006739643725721555,0.0004920751925044894,0.00022736147508458258,1.7864115899502916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014453693773234174,0.0005261794137671768,0.000774653025823899,0.0009240619951651962,0.0010052625219811187,0.0009370540794557438,0.0008412374578129556,0.0007892691206507652,0.0006820844252537477,0.0004888271714318525,0.00026796173849254375,3.410422126268738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016077704309552622 +2619313,8.335869098395764e-05,1.9742847864621544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.800314264480757e-05,0.00019962212840895122,0.00028627129403701245,0.0003356284136985663,0.00028846494379974815,0.0002654316212910231,0.00022704275044314778,0.00018810546715458863,0.0001650721446458635,0.00011790867474704534,7.732615413643438e-05,3.235633400035198e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.306743067865216e-05,0.00017055626905270282,0.0002423982987822979,0.0002879165313590642,0.00032027286535941626,0.0002895617686811161,0.0002692705083758105,0.00025775384712144796,0.00022759116288383172,0.00016397531976449563,8.829440295011303e-05,1.2065073695046499e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.471266800070396e-05,0.000201267365731003,0.000281335582070857,0.0003367252385799342,0.0003284990519696752,0.0002934006557659035,0.0002703673332571784,0.0002473340107484533,0.00020894513990057803,0.00015465230827286876,9.377852735695236e-05,1.7549198101885818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.251901823796824e-05,0.0001979768910868994,0.0002857228815963285,0.000337822063461302,0.0003756625218684933,0.00033837047590198595,0.0002972395428506911,0.0002774966949860695,0.00023746258681614252,0.00017165309393407066,9.761741444173986e-05,1.9742847864621544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.90999675261754e-05,0.0002007189532903191,0.0002857228815963285,0.00034385460030882526,0.000337822063461302,0.00031259509118984114,0.00028188399451154096,0.00025775384712144796,0.00021936497627357278,0.0001617816700017599,9.323011491626842e-05,2.7420622034196597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9776956034548583e-05,0.00018865387959527257,0.0002742062203419659,0.0003284990519696752,0.0003646942730548147,0.0003394673007833539,0.0003093046165457375,0.0002785935198674374,0.00023855941169751034,0.00017110468149338675,9.432693979763628e-05,1.700078566120189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.758330627181286e-05,0.00019029911691732432,0.0002753030452233338,0.0003290474644103591,0.0003498871371563485,0.00032082127780010014,0.0002966911304100071,0.00027146415813854627,0.00023143004996861922,0.00016726579440859922,7.56809168143826e-05,6.032536847523249e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.880870722086993e-05,0.00018207293030706538,0.0002670768586130749,0.0003230149275628359,0.00034604825007156107,0.0003230149275628359,0.0002857228815963285,0.00026598003373170696,0.00023143004996861922,0.00016562055708654741,8.829440295011303e-05,8.774599050942909e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3196006746341384e-05 +2619314,9.640232719120783e-05,2.313655852588988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.904990829679042e-05,0.000233293631802723,0.00033548009862540334,0.0003939641771214027,0.0003348374164441285,0.0003084874470118651,0.00026414237650390946,0.00021465584854575608,0.0001895912434760421,0.00013496325806769098,8.869014101591121e-05,3.663288433265898e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.326576866531796e-05,0.00019794611183261343,0.0002827801597608763,0.00033676546298795276,0.0003733983473206117,0.00033869350953177684,0.000311058175736964,0.00029820453211146957,0.00026349969432263475,0.00019087660783859153,0.00010347183118522975,1.3496325806769097e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51938152091421e-05,0.00023393631398399767,0.00032905327681265607,0.00039524954148395205,0.00038432394440228196,0.00034447764916324935,0.00031362890446206285,0.0002859935706672499,0.0002416485001592943,0.00017930832857564657,0.00011054133517925165,2.0565829800791004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.326576866531796e-05,0.00023072290307762407,0.00033419473426285387,0.0003965349058465016,0.00044152265853573193,0.00039589222366522687,0.0003541178818823701,0.00032262645499990885,0.0002763533379481291,0.00020180220492026173,0.00011439742826689995,2.313655852588988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.097795484061458e-05,0.00023393631398399767,0.00033419473426285387,0.00040360440984052345,0.00039524954148395205,0.0003663288433265898,0.00032905327681265607,0.0003007752608365684,0.00025578750814733817,0.0001895912434760421,0.00010925597081670221,3.1491426882461224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.940967557766964e-05,0.0002197973059959539,0.00032005572627480996,0.00038560930876483133,0.00042866901491023744,0.0003991056345716005,0.0003605447036951173,0.00032391181936245833,0.0002763533379481291,0.00019923147619516288,0.00011054133517925165,1.9923147619516287e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.683894685257075e-05,0.0002210826703585033,0.00032134109063735943,0.00038689467312738075,0.00040938854947199596,0.0003766117582269853,0.00034576301352579877,0.00031427158664333756,0.0002660704230477336,0.00019409001874496511,8.869014101591121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619315,0.00013148948876922262,2.9219886393160578e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010957457397435218,0.0003278106004732703,0.0004812150040373633,0.0005688746632168451,0.0004748231538888595,0.0004401245387969813,0.00037620603731194246,0.0002967644711805371,0.0002584133702895139,0.00017805868270832228,0.00011870578847221487,4.7482315388885944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010318272382584829,0.00027576267783545295,0.0004008603164561717,0.00047938876113779073,0.0005286973194262493,0.00048030188258757706,0.0004373851744476224,0.00041181777385360693,0.00036798794426386606,0.0002675445847873766,0.00014336006761644408,1.6436186096152827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010318272382584829,0.0003287237219230566,0.0004647788179412106,0.0005670484203172725,0.0005496991127713334,0.0004912593399850122,0.00044103766024676755,0.0003962947092072404,0.00033054996482262915,0.00024836903434186493,0.00015340440356409306,2.5567400594015507e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010135648092627577,0.00032598435757369773,0.00047756251823821824,0.0005679615417670588,0.0006419243791997466,0.0005606565701687686,0.0005186529834786003,0.0004583869677927065,0.00038807661615916395,0.00028763325668267444,0.00015979625371259694,2.8306764943374315e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011140081687392473,0.00033146308627241537,0.00047756251823821824,0.0005825714849636391,0.0005697877846666312,0.0005332629266751807,0.0004702575466399281,0.0004328195671986911,0.000364335458464721,0.0002711970705865217,0.00015340440356409306,4.0177343790595796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.587775222755817e-05,0.00030954817147754493,0.0004583869677927065,0.0005588303272691961,0.0006209225858546624,0.0005816583635138528,0.0005241317121773179,0.00045930008924249284,0.0003917291019583091,0.0002821545279839568,0.0001543175250138793,2.3741157694442972e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.131214497862682e-05,0.00031411377872647624,0.00046203945359185166,0.0005597434487189824,0.0005871370922125704,0.0005405678982734707,0.0004949118257841573,0.00043829829589740873,0.0003689010657136524,0.00026937082768694915,0.00012235827427135995,8.218093048076414e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.670220178204653e-05,0.0003022431998792548,0.00044469014604591264,0.0005451335055224021,0.0005816583635138528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619316,3.637516275618711e-05,7.63115302577352e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0015868568042515e-05,9.131946454175645e-05,0.00013634326739382025,0.00016101732884382127,0.00013176457557835614,0.00012438779432010839,0.0001035293093829941,8.190770914330246e-05,6.99522360695906e-05,4.705877699227004e-05,3.1796470940723e-05,1.2464216608763417e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.848963796288781e-05,7.605715849020942e-05,0.0001116692059438192,0.00013405392148608817,0.00014677250986237737,0.00013278206264845927,0.00012031784603969583,0.00011344980831649966,0.00010123996347526205,7.402218435000318e-05,3.96819957340223e-05,4.3243200479383285e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7980894427836242e-05,9.081072100670488e-05,0.00012947522967062406,0.00016101732884382127,0.00015516677819072826,0.0001350714085561913,0.00012133533310979896,0.00010912548826856135,9.004760570412753e-05,6.817163369691013e-05,4.2988828711857494e-05,6.8680377231961685e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7980894427836242e-05,9.131946454175645e-05,0.0001345626650211397,0.0001602542135412439,0.00018289330085103874,0.0001587279829360892,0.00014575502279227424,0.00012769462729794357,0.00010734488589588084,8.038147853814774e-05,4.4769431084537985e-05,7.63115302577352e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0778983870619865e-05,9.284569514691115e-05,0.0001350714085561913,0.00016534164889175958,0.0001602542135412439,0.00015084245814278992,0.0001302383449732014,0.00012184407664485052,0.00010098559170773626,7.580278672268364e-05,4.248008517680593e-05,1.068361423608293e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6454663822681534e-05,8.623202919124077e-05,0.00012972960143814986,0.00015923672647114078,0.00017577089136031675,0.00016585039242681117,0.0001470268816299031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619317,0.00026365215884662315,5.609620400991983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021503544870469263,0.0006525858399820673,0.0009779438232396024,0.0011518420556703537,0.0009311969865646691,0.0008825802764227386,0.0007311205255959551,0.0005983595094391448,0.0004955164687542918,0.000336577224059519,0.00022438481603967932,8.788405294887438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020381620790270872,0.0005329139380942383,0.0007872167296058748,0.0009461559743006477,0.001037779774183517,0.0009386764804326581,0.0008507924274837839,0.0008302238193468135,0.000725510905194963,0.000531044064627241,0.0002879605139175884,3.365772240595189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020194633443571138,0.0006600653338500565,0.0009386764804326581,0.0011611914230053406,0.0011144445863304072,0.0009480258477676451,0.0008694911621537573,0.0007872167296058748,0.0006413665991800834,0.0004899068483532998,0.0003103989955215564,5.0486583608927844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020007646096871406,0.0006544557134490647,0.0009629848355036237,0.001148102308736359,0.0013107813003651267,0.0011742805372743214,0.0010433893945845088,0.0009218476192296823,0.0007685179949359016,0.0005777909013021741,0.000325357983257535,5.7966077476917155e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000222514942572682,0.0006675448277180459,0.0009667245824376182,0.001187369651543303,0.0011424926883353672,0.0010751772435234634,0.0009274572396306745,0.0008937995172247225,0.0007236410317279657,0.0005460030523632198,0.00031413874245555097,7.666481214689044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001888572201667301,0.0006133184971751235,0.0009293271130976719,0.0011424926883353672,0.0012565549698222039,0.0011854997780763057,0.0010433893945845088,0.000919977745762685,0.0007778673622708881,0.0005665716605001902,0.00030852912205455905,4.8616710141930507e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018137772629874075,0.0006357569787790913,0.0009442861008336504,0.0011424926883353672,0.0011854997780763057,0.001078916990457458,0.0009854233171075915,0.0008769706560217466,0.000719901284793971,0.0005273043176932463,0.00024308355070965258,1.8698734669973274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015332962429378088,0.0006095787502411288,0.0008994091376257146,0.0011275337005993884,0.0011780202842083163,0.001118184333264402,0.0009629848355036237,0.0008788405294887438,0.0007498192602659283,0.0005460030523632198,0.0002730015261816099,1.1219240801983964e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001682886120297595 +2619318,0.00010937766771553154,2.3224025336859435e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.615364237867208e-05,0.0002599592513512975,0.0003888151338654854,0.000451744750907298,0.00036484194642098534,0.0003476112179452509,0.00029367154619512576,0.00024722349552140687,0.00020077544484768802,0.00013784582780587533,8.989945291687523e-05,3.670894327439072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.240783184046896e-05,0.00021276203856993804,0.00031165143677850077,0.00037308272960503216,0.0004052967002335791,0.00036634027063626654,0.00033637378633064144,0.0003416179210841259,0.000295169870410407,0.0002150095248928599,0.00011761845089957841,1.4983242152812537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.016034551754709e-05,0.00026220673767421936,0.00037308272960503216,0.00045474139933786057,0.00043151737400100104,0.0003753302159279541,0.0003401195968688446,0.0003198922199625477,0.00025771176502837565,0.0001977787964171255,0.00012660839619126594,2.2474863229218807e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.09095076251877e-05,0.00026220673767421936,0.00038581848543492285,0.0004509955887996574,0.0005064335847650638,0.0004614838583066262,0.00040754418655650107,0.00037682854014323527,0.0003109022746708601,0.00023523690179915683,0.00013260169305239096,2.4722349552140686e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.989945291687523e-05,0.00026894919664298503,0.0003888151338654854,0.000469724641490673,0.0004502464266920167,0.00042402575292459476,0.00037158440538975096,0.00036858775695918845,0.0002974173567333289,0.00022250114596926622,0.00012735755829890657,3.2213970628546956e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.641453497934394e-05,0.00024647433341376627,0.0003700860811744696,0.0004509955887996574,0.0004936978289351731,0.00046822631727539186,0.0004202799423863917,0.0003783268643585166,0.00031614640942434453,0.0002307419291533131,0.00012660839619126594,2.0976539013937556e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.341788654878144e-05,0.00025471511659781314,0.00037682854014323527,0.0004494972645843761,0.0004674771551677512,0.00042402575292459476,0.0003888151338654854,0.0003536045148063759,0.00028767824933400074,0.00021126371435465678,9.963856031620339e-05,8.240783184046894e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.218045493417203e-05,0.00024572517130612567,0.00035585200112929775,0.0004435039677232511,0.00046298218252190733,0.00043825983296976676,0.0003820726748967197,0.00036559110852862594,0.00030490897780973515,0.00022100282175398496,0.00011162515403845341,5.244134753484389e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.667542758001578e-05 +2620679,2.1935311829744632e-05,7.997249104594396e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6337237456528554e-05,4.35278844121495e-05,6.569168907345398e-05,8.511357975604037e-05,7.860153405658493e-05,7.517414158318734e-05,6.854784946795197e-05,5.129664068518406e-05,4.1928434591230626e-05,3.1189271507918154e-05,2.1935311829744632e-05,9.596698925513278e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4052309140930155e-05,3.7130085128473984e-05,5.632348297950053e-05,7.32319525149287e-05,8.648453674539942e-05,8.477084050870062e-05,7.654509857254639e-05,6.820511022061222e-05,5.415280107968205e-05,4.1357202512331026e-05,2.4677225808462712e-05,7.426017025694797e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5537512546069115e-05,4.3185145164809746e-05,6.489196416299453e-05,8.351412993512149e-05,8.602755108227973e-05,8.214317294576246e-05,7.483140233584756e-05,6.374950000519534e-05,5.278184409032303e-05,3.987199910719207e-05,2.4677225808462712e-05,8.796974015053837e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4623541219829753e-05,4.124295609655111e-05,6.272128226317606e-05,8.180043369842267e-05,9.562425000779301e-05,9.356781452375443e-05,8.214317294576246e-05,6.854784946795197e-05,5.495252599014151e-05,4.2042681007010544e-05,2.456297939268279e-05,9.253959678173517e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.599449820918879e-05,4.124295609655111e-05,6.192155735271661e-05,8.031523029328373e-05,8.454234767714077e-05,8.134344803530301e-05,7.243222760446926e-05,6.192155735271661e-05,5.003993011160495e-05,3.792981003893343e-05,2.262079032442415e-05,8.796974015053837e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3481077062030556e-05,3.884378136517279e-05,5.9522382621338296e-05,7.780180914612548e-05,9.116863979237613e-05,8.92264507241175e-05,8.12292016195231e-05,6.603442832079372e-05,5.312458333766279e-05,4.0100491938751906e-05,2.319202240332375e-05,7.997249104594396e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2909844983130955e-05,3.6787345881134225e-05,5.643772939528045e-05,7.32319525149287e-05,8.12292016195231e-05,7.95155053828243e-05,7.197524194134958e-05,5.883690412665878e-05,4.7183769717106945e-05,3.633036021801455e-05,1.9193397851026555e-05,3.770131720737359e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0624916667532557e-05,3.484515681287559e-05,5.483827957436158e-05,7.197524194134958e-05,8.442810126136084e-05,8.23716657773223e-05,7.483140233584756e-05,6.340676075785559e-05,5.0611162190504544e-05,3.838679570205311e-05,2.1021340503505272e-05,5.826567204775918e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1538887993771917e-05 +2620680,7.335523359144956e-05,2.6198297711231985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.314511821421345e-05,0.0001440906374117759,0.00021782013239910028,0.0002818188310936812,0.0002604859315288209,0.00025262644221545126,0.00022642814450421925,0.00016916615093538366,0.00013997376205715376,0.00010179909967793002,7.260671079970007e-05,3.2186480045227866e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.56598902967186e-05,0.0001227577378469156,0.00018488512956212283,0.00023952729335983527,0.0002848129222606792,0.00027807621713493377,0.0002533749650072007,0.00022680240590009404,0.00018114251560337547,0.0001377281936819053,8.271176848831812e-05,2.5075513523607758e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.164807263071448e-05,0.0001448391602035254,0.00021819439379497496,0.000280696046906057,0.00029342093436579824,0.00027957326271843276,0.0002563690561741987,0.00021894291658672445,0.00018226529979099967,0.0001369796708901558,8.495733686356658e-05,3.0315173065854156e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.977676565134078e-05,0.00014184506903652748,0.00021557456402385175,0.0002821930924895559,0.000331595596745022,0.0003267301985986503,0.0002878070134276771,0.00023728172498458684,0.00019237035747961774,0.00014671046718289912,8.570585965531608e-05,3.256074144110261e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.501642519358717e-05,0.0001440906374117759,0.00021520030262797704,0.00027845047853080853,0.0002915496273864245,0.00027882473992668324,0.00024514121429795643,0.00020846359750223168,0.00017290876489413113,0.000126500351805663,7.709784755019699e-05,3.0315173065854156e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.56598902967186e-05,0.00013398557972315784,0.0002047209835434842,0.00026647411386281674,0.00031437957253478384,0.00030577156042966474,0.0002773276943431843,0.00022343405333722133,0.00018151677699925018,0.00013660540949428105,7.896915452957068e-05,2.6946820502981468e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.341432192147015e-05,0.00012575182901391354,0.00019424166445899146,0.00025000661244432804,0.00027957326271843276,0.0002739593417803116,0.00024439269150620696,0.00020210115377236102,0.00016093240022613934,0.00012425478343041456,6.549574427807996e-05,1.2724887459741252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.555483260810055e-05,0.00011789233970054391,0.00018713069793737131,0.00024289564592270798,0.0002855614450524286,0.00027845047853080853,0.0002515036580278271,0.0002125804728568538,0.00016991467372713315,0.00012949444297266096,7.11096652162011e-05,1.9461592585486613e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.817466237922375e-05 +2620681,6.277871070944013e-05,2.2398434474222355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.448139804035708e-05,0.00012177177052182859,0.00018328859759891817,0.00023597223924955383,0.00021830586839664603,0.0002167285138562079,0.00019022895757684618,0.0001416464377313498,0.00011924800325712749,8.70699706321883e-05,6.183229798517721e-05,2.8076910819799855e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8487450786691937e-05,0.0001047363414850961,0.00015584262859529355,0.00020000855572756303,0.00023849600651425497,0.00022966282108780107,0.0002129428629591562,0.00019022895757684618,0.00015363433223868013,0.00011640876508433874,7.003454159545582e-05,2.145202174995944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3219514408006514e-05,0.00012303365415417913,0.0001842350103231811,0.00023502582652529092,0.00024890654648114703,0.00023754959378999204,0.0002145202174995944,0.00018486595213935638,0.00015394980314676775,0.00011451593963581288,7.06654834116311e-05,2.5237672647011105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1011218051393054e-05,0.00011830159053286456,0.00017761012125334065,0.0002315556465363269,0.000271620451863457,0.0002668883882421424,0.0002353412974333786,0.00019149084120919675,0.0001586818667680823,0.00012050988688947803,7.035001250354346e-05,2.68150271874493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.479686894844471e-05,0.00011893253234903983,0.00017634823762099013,0.00022682358291501231,0.00023754959378999204,0.00022871640836353812,0.00019464555029007316,0.00016719958128644856,0.00014196190863943745,0.00010000427786378152,6.309418161752777e-05,2.4922201738923462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.691009624625374e-05,0.00011104575964684885,0.0001684614649187991,0.0002167285138562079,0.0002596325573561268,0.0002511148428377605,0.00022713905382309998,0.00018265765578274288,0.00015111056497397899,0.00011325405600346232,6.530247797414123e-05,2.2398434474222355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5963683521990826e-05,0.0001047363414850961,0.000162467517665134,0.00020757985752166636,0.0002366031810657291,0.0002302937629039763,0.00020347873571652703,0.00017130070309158784,0.00013691437411003524,0.00010568275420935901,5.5522879823424424e-05,1.1041481783067358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9654265360238046e-05,9.842692332334332e-05,0.00015741998313573177,0.0002025323229922641,0.00023881147742234261,0.00023471035561720328,0.00021010362478636745,0.000177294650345253,0.00014322379227178802,0.0001097838760144983,6.0885885260914295e-05,1.6719958128644858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.186256171685153e-05 +2620682,0.0002083799140993901,7.404362429927567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015443384496706072,0.0004146442960759438,0.000605042187131224,0.0007647648624053759,0.0006981256005360279,0.0006822591096147545,0.0005986955907627147,0.00045378164034841806,0.00038714237847906996,0.0002951167311356845,0.00020097555166946255,9.096788128196727e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001332785237386962,0.00035329386451368673,0.0005151320719106751,0.0006515838938336259,0.0007668803945282123,0.0007372629448085022,0.0006716814490005723,0.0006113887834997333,0.0005024388791736564,0.0003807957821105607,0.00023059300138917284,6.769702793076631e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014914501465996958,0.0004146442960759438,0.0006060999531926424,0.0007668803945282123,0.0008017866745550137,0.0007679381605896305,0.0006907212381061002,0.0006060999531926424,0.0005066699434193292,0.0003829113142333971,0.00024117066200335504,8.250575279062146e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014385618435287846,0.0004082976997074344,0.0006039844210698059,0.0007689959266510488,0.0009012166843283268,0.00086948370248578,0.0007689959266510488,0.0006304285726052615,0.0005299407967705302,0.00040089333727750685,0.0002390551298805186,8.88523491591308e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015760714315131538,0.00040935546576885266,0.0005944645265170418,0.0007499561375455208,0.0007764002890809764,0.000741494009054175,0.000632544104728098,0.0005616737786130768,0.00046330153490118216,0.00033319630934674057,0.0002115532122836448,8.462128491345791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000132220757677278,0.0003807957821105607,0.0005627315446744952,0.0007129343253958829,0.0008409240188274881,0.000808133270923523,0.0007288008163171564,0.0006039844210698059,0.0005024388791736564,0.00037973801604914234,0.00022213087289782706,7.404362429927567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012693192737018688,0.00036387152512786907,0.0005447495216303853,0.0006875479399218455,0.0007795735872652311,0.0007488983714841025,0.0006663926186934811,0.0005690781410430045,0.00046435930096260034,0.000354351630575105,0.00018510906074818917,3.7021812149637835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010471884008040416,0.0003416584378380863,0.0005257097325248574,0.0006685081508163174,0.0007880357157565768,0.0007594760320982847,0.0006812013435533363,0.0005828290998414414,0.0004749369615767825,0.00035964046088219617,0.00020203331773088076,5.28883030709112e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011106543644891353 +2620683,0.00012673739616565264,4.4053105619077123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.962779270775903e-05,0.0002616076733686734,0.00037343478763248453,0.00045747455835195476,0.0004100327523006408,0.0003869895893614313,0.0003415810035694595,0.00026906281431959416,0.00022975388930564838,0.00017892338282209786,0.00011995999530117922,5.489694700223456e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.74284711517069e-05,0.00022162100826828026,0.00031514914019801333,0.000390378289793668,0.0004567968182655074,0.0004323981751534031,0.0003876673294478787,0.0003653019065951164,0.0003076939992470925,0.00023178710956499042,0.00014096993798104677,3.930892501394574e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.623909227552232e-05,0.0002616076733686734,0.00037343478763248453,0.0004622187389570861,0.0004750958005995856,0.0004506971574874813,0.00039986665100393085,0.00036191320616287974,0.0003009165983826191,0.00023178710956499042,0.00014706959875907287,4.87972862242085e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.352813192973296e-05,0.000258896713022884,0.0003727570475460372,0.0004628964790435335,0.0005415143290714249,0.0005022054040574791,0.0004567968182655074,0.0003768234880647212,0.00032734846175406536,0.0002473751315532792,0.00015045829919130955,5.3541466829339875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010166101296710105,0.00026025219319577864,0.00036869060702735316,0.00045747455835195476,0.00046764065964866475,0.00044188653636366594,0.0003856341091885366,0.0003422587436559069,0.0002893950169130143,0.0002148436074038069,0.00013554801728946807,5.421920691578723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.74284711517069e-05,0.0002446641712074899,0.0003531025850390643,0.0004371423557585345,0.0005083050648355053,0.000485939641982743,0.0004317204350669558,0.00037140156737314254,0.00031243817985222383,0.00023585355008367445,0.00013961445780815213,4.4730845705524464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.40397707194702e-05,0.00023585355008367445,0.0003415810035694595,0.0004242652941160351,0.00047712902085892756,0.0004493416773145866,0.0003991889109174834,0.00035106936477972235,0.0002934614574316984,0.00022162100826828026,0.00011589355478249521,2.3043162939209572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.91294888176287e-05,0.00021958778800893825,0.00032667072166761807,0.0004086772721277462,0.0004757735406860329,0.0004445974967094553,0.0004025776113497202,0.0003490361445203803,0.00029413919751814573,0.0002202655280953856,0.00012470417590631063,3.185378406302499e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.455140950920744e-05 +2620684,7.414325342337773e-05,2.5524726588375937e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8747386592293814e-05,0.00015476897709142235,0.0002220246058798415,0.00027185859588571836,0.00024025655344296713,0.00022891223051480004,0.000199741114413799,0.00015679474904288076,0.00013329579440596323,0.00010412467830496217,7.009170952046092e-05,3.200719683304283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.185976195733523e-05,0.00013208033123508818,0.00018839679148563193,0.00023093800246625848,0.00026659158881192646,0.0002483596412488008,0.00022445553222159156,0.0002131112092934245,0.00018110401246038165,0.00013694218391858834,8.305665000979471e-05,2.2283491466042484e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6721614640835415e-05,0.00015679474904288076,0.0002236452234410082,0.0002742895222274684,0.00027955652930126024,0.00026051427295755125,0.00023255862002742519,0.00021068028295167442,0.00017462154221571476,0.00013491641196712999,8.629788513212817e-05,2.8360807320417707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.51009970796687e-05,0.00015517413148171403,0.00022283491466042486,0.0002742895222274684,0.0003188565051595534,0.0002892802346682606,0.0002645658168604681,0.00022242976027013318,0.00019244833538854873,0.000145045271724422,8.832365708358659e-05,3.07917336621678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.955769537287719e-05,0.00015476897709142235,0.0002204039883186748,0.0002706431327148433,0.0002730740590565934,0.000254436957103176,0.00022445553222159156,0.0001956895705108822,0.00017138030709338124,0.00012843394172246304,7.981541488746127e-05,3.1196888052459474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1454607567043556e-05,0.00014545042611471368,0.00021027512856138276,0.00025970396417696783,0.00029616785930321914,0.0002807719924721353,0.0002487647956390925,0.00021918852514779972,0.0001847504019730068,0.00013896795587004678,8.305665000979471e-05,2.5929880978667616e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.942883561558515e-05,0.00014099372782150517,0.0002041978127070075,0.0002528163395420093,0.00027996168369155195,0.00026254004490900963,0.00023336892880800855,0.00020703389343904927,0.00017462154221571476,0.00013208033123508818,6.847109195929417e-05,1.3370094879625492e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.051543902916816e-05,0.00013167517684479647,0.0001956895705108822,0.00024309263417500893,0.00028036683808184366,0.0002592988097866762,0.00023498954636917525,0.0002066287390487576,0.00017300092465454803,0.0001292442505030464,7.333294464279438e-05,1.7826793172833987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.37566741515016e-05 +2620685,7.672301483857085e-05,2.5574338279523614e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.924721701422969e-05,0.00016069209218967336,0.0002340051952576411,0.0002851538718166883,0.0002531859489672838,0.00023912006291354582,0.00020757837903546668,0.00015898713630437182,0.00013426527596749896,0.00010442854797472142,7.203438615399151e-05,3.1967922849404514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.285363244434881e-05,0.00013639647082412594,0.0001977748826949826,0.00024295621365547432,0.00028089148210343434,0.00025148099308198226,0.0002340051952576411,0.0002250541768598078,0.00019180753709642707,0.00014364253333665764,8.737898912170567e-05,2.3016904451571253e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.754226112892813e-05,0.0001649544819029273,0.00023698886805691876,0.00028984250050126766,0.0002928261733005454,0.00027364541959090264,0.0002455136474834267,0.00022164426508920466,0.00018370899664124464,0.00014236381642268145,9.164137883495962e-05,2.8984250050126766e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5837305243626566e-05,0.00016282328704630034,0.00023613639011426803,0.00028856378358729144,0.00033289263660513243,0.0003039083865550056,0.00027620285341885503,0.00023912006291354582,0.00020459470623618891,0.00015557722453376864,9.462505163423738e-05,3.1967922849404514e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.095217289953128e-05,0.00016367576498895113,0.00023613639011426803,0.00028941626152994226,0.0002932524122718708,0.00027108798576295026,0.00023954630188487117,0.00021439820257667297,0.00019138129812510172,0.00014364253333665764,8.823146706435646e-05,3.2394161820729913e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.370611038699958e-05,0.00015770841939039562,0.00023016904451571253,0.0002813177210747598,0.00032010546746537056,0.000304334625526331,0.0002693830298776487,0.00023912006291354582,0.00020246351137956194,0.00015131483482051471,9.036266192098344e-05,2.7279294164825183e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.242739347302341e-05,0.00015301979070581626,0.00022334922097450626,0.00027407165856222805,0.0003034821475836802,0.00027961276518945823,0.0002493497982253553,0.00022207050406053004,0.00018839762532582398,0.00014108509950870528,7.33131030679677e-05,1.4065886053737988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.219765816121397e-05,0.00014108509950870528,0.00021141452977739523,0.00025957953353716466,0.00030135095272705326,0.00027662909239018044,0.00024679236439740284,0.00021951307023257769,0.00018456147458389543,0.00013810142670942752,7.800173175254703e-05,1.7902036795666532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4328853017840926e-05 +2620686,8.850237706530812e-05,2.950079235510271e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.900185330515548e-05,0.00018750503615531382,0.000273007332642137,0.0003315089039225948,0.0002920078429725421,0.0002755073997908745,0.0002400064462788017,0.0001850049690065763,0.00015450414979197857,0.00012050323656914835,8.250221590833809e-05,3.700099380131526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150165185894293e-05,0.0001600042975192011,0.00023050619111359907,0.00028300760123708697,0.0003265087696251198,0.00028850774896430954,0.0002700072520636519,0.0002635070774769344,0.00022450602995662905,0.00016800451239516119,0.00010200273966849073,2.6000698346870178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.700179958616547e-05,0.00019300518388253637,0.00027700744008011695,0.0003370090516498174,0.0003345089845010798,0.0003130084070219372,0.0002835076146668345,0.0002595069700389544,0.00021400574793193155,0.00016600445867617116,0.00010750288739571326,3.3500899793082736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.450173243742795e-05,0.00019050511673379884,0.00027600741322062193,0.0003365090382200698,0.00038651038119482024,0.00034950938739350493,0.00032100862189789723,0.00028200757437759196,0.00023950643284905416,0.0001830049152875863,0.0001110029814039458,3.650098037156776e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.10019070241455e-05,0.00019200515702304133,0.00027600741322062193,0.0003375090650795649,0.0003415091725175449,0.00031800854131941225,0.000279007493799107,0.00025700690289021685,0.00022500604338637656,0.00016900453925465617,0.00010400279338748071,3.750100723106276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.250167871843794e-05,0.0001855049824363238,0.00027050726549339936,0.0003270087830548673,0.00037251000516189017,0.00035450952169098,0.0003155084741706748,0.00028200757437759196,0.0002380063925598117,0.00017850479441985874,0.00010650286053621826,3.2000859503840223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.200166528869044e-05,0.00018000483470910128,0.0002630070640471869,0.00032100862189789723,0.0003540095082612325,0.00032350868904663477,0.000288007735534562,0.00026200703718769186,0.00022100593594839656,0.0001655044452464237,8.600230991657062e-05,1.6500443181667618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9501329545002844e-05,0.00016650447210591867,0.00024900668801425675,0.00030450817871622963,0.00035450952169098,0.0003245087159061298,0.00028850774896430954,0.0002595069700389544,0.00021700582851041656,0.00016250436466793862,9.200247107354065e-05,2.000053718990014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.150138326399286e-05 +2620687,0.00011331582742826925,3.628652900792892e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.594177922930534e-05,0.00024063698184205497,0.0003494965688658417,0.0004252526557420441,0.00036859474202790947,0.00035076978040997955,0.0003055707705930856,0.00022790486640067632,0.00019607457779722995,0.00014960235643619817,0.00010567655816344211,4.583561558896284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.702929842034036e-05,0.0002062602701503328,0.00029856810710032745,0.00036477510739549605,0.00041506696338894134,0.00035840904967480677,0.00034313051114515233,0.0003380376649686009,0.0002877458089751556,0.00021644596250343566,0.0001305041832741303,3.1830288603446424e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.594177922930534e-05,0.0002514592799672267,0.0003603188669910134,0.0004328919250068713,0.00042907229037445773,0.0003915125498223909,0.0003577724439027377,0.0003259421552992913,0.0002711940589013635,0.00020880669323860855,0.0001368702409948196,4.074276941241141e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.148553882482282e-05,0.00024572982801860635,0.00035331620349825536,0.00043225531923480237,0.00048827662717686806,0.00045071688662480123,0.0004067910883520453,0.0003615920785351513,0.0003062073763651546,0.00023236110680515884,0.00014196308717137103,4.3925798272756054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.976141386171891e-05,0.00024763964533481317,0.00035522602081446207,0.00043352853077894014,0.00043543834809514707,0.000400425030631356,0.0003526795977261863,0.000329761789931705,0.0002877458089751556,0.0002170825682755046,0.0001349604236786128,4.583561558896284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.893911573654712e-05,0.0002425467991582617,0.0003482233573217038,0.0004201598095654928,0.0004717248771030759,0.0004494436750806634,0.0003972420017710113,0.000355862626586531,0.0003011145301886031,0.0002247218375403317,0.0001349604236786128,3.81963463241357e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.766590419240927e-05,0.0002349075298934346,0.0003412206938289456,0.0004125205403006656,0.0004462606462203188,0.00040742769412411417,0.0003635018958513581,0.0003361278476523942,0.00028265296279860423,0.00021071651055481534,0.00011013279856792462,1.973477893413678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.175075989068606e-05,0.00021771917404757353,0.0003227591264389467,0.0003921491555944599,0.0004488070693085945,0.00041506696338894134,0.0003673215304837717,0.000329125184159636,0.00027692351084998383,0.0002062602701503328,0.00011777206783275175,2.3554413566550348e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.302397143482391e-05 +2620688,0.00018804317103446872,5.652164678492702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001499997549292294,0.00042282539614108873,0.0005913033817500058,0.0007195640417619557,0.0006032598839545097,0.0005630425583575424,0.0005054339568267513,0.00039021675376516924,0.00032934728799678627,0.0002434778630735318,0.000174999714084101,7.391292271875072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001380432527247256,0.00035869506613511384,0.0005097817758102073,0.0006173902956507413,0.000691303218369492,0.0006260859336176531,0.0005717381963244542,0.0005641295131034064,0.00047391226919669586,0.00036304288511856974,0.00021521703968106827,4.565209932628721e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014782584543750145,0.00042499930563281665,0.0006043468387003734,0.0007271727249830034,0.0007108684037950438,0.0006608684854853007,0.0005891294722582778,0.0005304339159816229,0.0004467384005500963,0.0003369559712178342,0.00022934745137730004,5.978251102251897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014021716221645356,0.00041630366766590474,0.0005923903364958697,0.0007271727249830034,0.000811955195160394,0.0007663030958341068,0.0006771728066732604,0.0006043468387003734,0.0005054339568267513,0.0003804341610523934,0.0002358691798524839,6.521728475183887e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015869539289614128,0.00042391235088695266,0.0005978251102251897,0.0007293466344747314,0.0007249988154912753,0.0006619554402311646,0.0005934772912417339,0.0005619556036116783,0.00045652099326287215,0.000349999428168202,0.00022391267764798015,7.391292271875072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001347823884871337,0.0004097819391907209,0.0005695642868327262,0.0006891293088777641,0.0007739117790551545,0.0007249988154912753,0.0006369554810762932,0.0005663034225951343,0.00046739054072151193,0.0003521733376599299,0.00020978226595174838,5.326078254733508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012717370526608578,0.0003826080705441214,0.0005532599656447665,0.0006652163044687566,0.0007054336300657238,0.0006576076212477085,0.0005913033817500058,0.0005456512824237185,0.00044891231004182423,0.0003347820617261062,0.00017391275933823698,2.826082339246351e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010434765560294218,0.00035869506613511384,0.000527173051744031,0.0006423902548056129,0.0007228249059995475,0.0006793467161649883,0.0006065207481921015,0.0005315208707274868,0.0004402166720749124,0.00033152119748851424,0.00018913012578033274,2.9347778138327494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010760851984053413 +2620689,0.0001132421874758661,3.2163461531606935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.179987978812814e-05,0.00026266826917479,0.0003638491585763034,0.00044291766817483727,0.0003618389422305781,0.00033302584127518025,0.0003028725960892986,0.00023720552879560118,0.00019968149034205974,0.0001500961538141657,0.00010520132209296436,4.422475960595955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.576923075095182e-05,0.00022246394226028133,0.0003149338941636513,0.0003785907451116234,0.0004174549277956484,0.0003826111778030743,0.0003437469951190492,0.00033905649031235643,0.000284110576862528,0.00021911358168407225,0.00012865384612642774,2.4122596148705203e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.911959132716091e-05,0.00025998798071382275,0.0003665294470372707,0.00044224759605959545,0.0004281760816395174,0.0003966826922231522,0.0003504477162714673,0.00031627403839413495,0.0002686989182119663,0.00019968149034205974,0.0001373647836245713,3.283353364684875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.37590144052264e-05,0.00025395733167664646,0.00036250901434581984,0.00044291766817483727,0.0004938431489332149,0.00047039062489975147,0.0004074038460670213,0.0003651893028067871,0.00030220252397405686,0.00022782451918221583,0.00014138521631602217,3.5513822107816e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.716045671006262e-05,0.0002619981970595482,0.00036719951915251256,0.0004455979566358045,0.0004409074518291118,0.00040472355760605406,0.0003665294470372707,0.00034843749992574186,0.000276739783594868,0.00021308293264689596,0.0001373647836245713,4.15444711449923e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.44290865204682e-05,0.0002559675480223719,0.00035580829319340173,0.00043219651433096826,0.0004891526441265222,0.00045564903836443167,0.00040070312491460316,0.0003524579326171927,0.0002888010816692207,0.00021576322110786322,0.00012865384612642774,2.948317307063969e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.839843748329192e-05,0.000237875600910843,0.0003430769230038073,0.0004141045672194393,0.00043286658644621,0.00040405348549081213,0.0003638491585763034,0.00033637620185138917,0.00027271935090341715,0.00020370192303351066,0.00010453124997772256,1.5411658650561658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.432692306321387e-05,0.00022246394226028133,0.00032565504800752027,0.00039601262010791044,0.0004409074518291118,0.0004161147835651648,0.00036987980761347977,0.0003236448316617948,0.00026266826917479,0.0001970012018810925,0.00011190204324538247,1.4071514420078037e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.56670672936975e-05 +2620690,0.00012964949505741023,3.429438256357303e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010790183782197367,0.0003195232716898755,0.00044917276674728574,0.0005411820858202866,0.00043829893812956757,0.00040065876214515804,0.0003571634476742849,0.0002843924407710934,0.00023671488452417478,0.00017983639636995612,0.00012044856315011015,4.93504529573368e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010204669933550998,0.0002710092670877478,0.0003864391401066035,0.0004659017338514678,0.000511069945032759,0.00046757463056188597,0.00041069614240766726,0.00040735034898683087,0.0003437802739909394,0.0002618083351804478,0.00014888780722721948,2.3420553945854752e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010371959604592819,0.00031534102991383005,0.00044833631839207667,0.0005411820858202866,0.0005202708769400592,0.0004742662174035587,0.00042073352267017636,0.0003780746565545124,0.00031785037497945737,0.00023504198781375662,0.00015976163584493775,3.345793420836393e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.786445755946449e-05,0.0003103223397825754,0.0004466634216816585,0.0005436914308859138,0.0006055886091713872,0.0005637661914109322,0.0004943409779285771,0.000433280247998313,0.0003613456894503305,0.00027351861215337513,0.00016478032597619233,3.5967279273991224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011292052795322826,0.00031868682333466644,0.00045168211181291306,0.0005478736726619593,0.0005403456374650775,0.0004985232197046226,0.0004441540766160311,0.00041989707431496723,0.00034127092892531207,0.00025762609340440227,0.00016059808420014685,4.516821118129131e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.786445755946449e-05,0.00030614009800652997,0.0004357895930639402,0.0005311447055577775,0.0005972241256192961,0.000554565259503632,0.0004909951845077406,0.00043495314470873113,0.0003579998960294941,0.00026682702531170236,0.00015474294571368318,3.094858914273663e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.200931907300082e-05,0.00029275692432318437,0.00042575221280143104,0.0005169250835192227,0.0005378362923994501,0.0004993596680598316,0.0004466634216816585,0.00040651390063162175,0.00033039710030759384,0.000246752264786684,0.00012128501150531924,1.5056070393763768e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.611680032402796e-05,0.000272682163798166,0.0004040045555659945,0.0004918316328629497,0.0005436914308859138,0.000502705461480668,0.00043746248977435845,0.00039145783023785796,0.00031868682333466644,0.000238387781234593,0.00013048594341261933,1.1710276972927376e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.778969703444615e-05 +2620691,3.401434475270079e-05,8.383817368623434e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8504979053319682e-05,8.623355007726962e-05,0.0001247991099729374,0.00015019009971791123,0.0001221641959427986,0.00011234315273955403,9.940812022796358e-05,7.880788326506029e-05,6.563331311436632e-05,4.7667990181601815e-05,3.0900355444354944e-05,1.2455957233383386e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682821557959499e-05,7.281944228747213e-05,0.00010659424940106938,0.00012863171219859384,0.00014156674471018429,0.0001267154110857656,0.00011497806676969281,0.00011210361510045048,9.60545932805142e-05,7.210082937016154e-05,4.000278573028895e-05,5.5093656993811135e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6588677940491465e-05,8.647308771637314e-05,0.00012503864761204096,0.00015210640083073947,0.0001473156480486689,0.00013030847567231852,0.00011665483024341751,0.00010371979773182708,8.527539952085548e-05,6.347747436243456e-05,4.239816212132422e-05,8.144279729519908e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5870065023180882e-05,8.623355007726962e-05,0.00012599679816845504,0.00015330408902625706,0.00017222756251543568,0.00015138778791342884,0.00013965044359735607,0.00012120604538638449,0.00010060580842348121,7.593343159581796e-05,4.431446323415244e-05,8.862892646830487e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9223591970630255e-05,8.743123827278723e-05,0.00012623633580755855,0.00015378316430446413,0.00015234593846984298,0.00014084813179287368,0.0001245595723338339,0.00011761298079983161,9.67732061978248e-05,7.305897992657564e-05,4.383538795594539e-05,1.149780667696928e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4672376827663247e-05,8.192187257340613e-05,0.00012072697010817745,0.0001473156480486689,0.00016456235806412285,0.0001506691749961183,0.00013246431442425025,0.00011785251843893513,9.821043203244595e-05,7.329851756567917e-05,4.144001156491012e-05,7.425666812209328e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.299561335393856e-05,7.952649618237086e-05,0.00011785251843893513,0.00014372258346211601,0.00014923194916149714,0.0001372550672063208,0.00012312234649921274,0.00011162453982224344,9.030568994202956e-05,6.754961422719452e-05,3.2098043639872576e-05,3.3535269474493736e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8923473489178605e-05,7.44962057611968e-05,0.00011162453982224344,0.00013701552956721727,0.00014779472332687596,0.00013893183068004544,0.00011928974427355628,0.00010587563648375879,8.838938882920135e-05,6.635192603167689e-05,3.473295767001136e-05,2.15583875193174e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9881624045592716e-05 +2620692,8.637207650181906e-05,2.0536018189243695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.066806259239742e-05,0.00021321218884714772,0.0003152882792583885,0.0003726683300812753,0.0003013962669539001,0.0002832762509045674,0.00024160021399110228,0.0001975081749377261,0.00016187214337403855,0.00011294810004084032,7.48960663372417e-05,3.0200026748887785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.704405938253089e-05,0.00017576415567852695,0.00025790822843550163,0.0003098522744435887,0.00034065630172745416,0.0003080402728386554,0.00028146424929963415,0.0002754242439498566,0.00023737221024625797,0.00017576415567852695,9.66400855964409e-05,1.3288011769510624e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.644005884755313e-05,0.0002162321915220365,0.00030743627230367767,0.00037750033436109736,0.00036360832205660894,0.0003134762776534552,0.0002850882525095007,0.00025911622950545716,0.0002095881856372812,0.00015945614123412751,0.00010388809201617398,1.9328017119288177e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.523205777759761e-05,0.00021321218884714772,0.00031166427604852195,0.00037448033168620856,0.00042582037715931776,0.0003799163365010083,0.00034126030226243196,0.00030200026748887786,0.00025005622148079087,0.00018784416637808205,0.00010872009629599604,2.1140018724221447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.308406473230846e-05,0.00021683619205701426,0.00031287227711847753,0.00038354033971087486,0.0003726683300812753,0.0003491123092171427,0.0003050202701637666,0.00029414826053416704,0.00023737221024625797,0.0001799921594233712,0.00010630409415608499,2.718002407399901e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.221205510270883e-05,0.00020113217814759265,0.00030079226641892227,0.0003690443268714087,0.00040890836217994053,0.0003829363391758971,0.00033824029958754316,0.0003013962669539001,0.0002524722236207019,0.00018603216477314875,0.00010388809201617398,1.812001604933267e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9796052962797804e-05,0.0002059641824274147,0.0003038122690938111,0.0003672323252664755,0.0003799163365010083,0.0003466963070772317,0.000314080278188433,0.0002826722503695897,0.00022952020329154715,0.00016791214872381605,7.972807061706376e-05,7.852006954710823e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.832004279822045e-05,0.00019026016851799306,0.00028086024876465646,0.0003497163097521205,0.00036783632580145316,0.00034730030761220956,0.0002971682632090558,0.0002705922396700345,0.00022650020061665838,0.00016670414765386057,8.576807596684131e-05,4.832004279822044e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.073604493813148e-05 +2620693,5.353259938316704e-05,1.319981902598639e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.289941183445576e-05,0.00012796491222414585,0.0001899307293183598,0.0002207303070456613,0.00017746423357159483,0.00016976433913976942,0.00014446468600662883,0.00012136500271115266,9.679867285723354e-05,6.673241840915342e-05,4.5832704951341636e-05,1.8699743620147387e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.10661036364021e-05,0.00010449856728905892,0.00015216458043845423,0.00018113084996770212,0.00019909727030862801,0.00018076418832809138,0.00016939767750015874,0.00016683104602288355,0.00014226471616896443,0.00010449856728905892,5.8299200698106556e-05,8.799879350657594e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.069944199679138e-05,0.00013053154370142096,0.00018223083488653439,0.00022366360016254719,0.00021486372081188962,0.00018883074439952755,0.00017013100077938016,0.00015803116667222598,0.00012576494238648146,9.679867285723354e-05,6.379912529226756e-05,1.2466495746764925e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.033278035718064e-05,0.00012833157386375656,0.00018589745128264168,0.00022036364540605057,0.00025189654641257365,0.00022513024672099008,0.00020129724014629247,0.0001829641581657558,0.00015106459551962202,0.00011219846172088433,6.63657567695427e-05,1.3566480665597124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4366058392898706e-05,0.0001308982053410317,0.00018699743620147387,0.00022769687819826527,0.0002207303070456613,0.00020643050310084277,0.00018186417324692362,0.00017856421849042704,0.00014226471616896443,0.00010669853712672335,6.343246365265682e-05,1.6866435422093723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7399487240294775e-05,0.00011843170959426679,0.00017599758701315188,0.00021486372081188962,0.00023613009590931213,0.00022366360016254719,0.00020129724014629247,0.00017783089521120556,0.0001473979791235147,0.000108531845324777,6.08658321753817e-05,1.1366510827932726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5199517402630376e-05,0.00011916503287348824,0.00017379761717548745,0.00020863047293850708,0.00021853033720799691,0.0001994639319482388,0.00018369748144497728,0.0001671977076624943,0.000136031468295582,9.826531941567648e-05,4.7666013149395303e-05,5.499924594160996e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.896626952924791e-05,0.00011219846172088433,0.0001616977830683333,0.00020239722506512465,0.0002137637358930574,0.00020093057850668176,0.00017746423357159483,0.00016536439946444062,0.00013566480665597123,9.936530433450865e-05,5.169929118511336e-05,3.666616396107331e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.079957772730158e-05 +2620694,6.243129902452e-05,1.4111184026090137e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0030561547046846e-05,0.00015094690791544904,0.00022406849786882522,0.0002599878753897819,0.00020952970220558078,0.00019969463455103313,0.00016933420831308162,0.00014196706353520987,0.00011502753039449232,7.996337614784411e-05,5.345145464428082e-05,2.1380581857712333e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7892503361275616e-05,0.00012272453986326875,0.0001800244992419378,0.00021466104185143174,0.00023390356552337285,0.00021380581857712328,0.00019712896472810762,0.00019584612981664494,0.00016847898503877313,0.00012357976313757724,6.79902503075252e-05,9.407456017393424e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7037280086967126e-05,0.00015308496610122024,0.00021466104185143174,0.00026212593357555317,0.00024972519609808,0.00021679910003720302,0.00019798418800241616,0.0001847282272506345,0.0001479536264553693,0.0001128894722087211,7.354920159053041e-05,1.3255960751781645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7037280086967126e-05,0.00015137451955260327,0.00022107521640874546,0.00025827742884116495,0.00029077591326488766,0.0002629811568498616,0.00023133789570044738,0.00021551626512574025,0.0001753207712332411,0.00013213199588066216,7.697009468776439e-05,1.4538795663244384e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.131339645850959e-05,0.00015436780101268303,0.0002232132745945167,0.0002689677197700211,0.0002599878753897819,0.00024331102154076626,0.00021466104185143174,0.0002116677603913521,0.00017061704322454438,0.00012742826787196548,7.397681322768465e-05,1.9242523671941097e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.40439986268874e-05,0.00014239467517236412,0.00021209537202850632,0.0002587050404783191,0.00028436173870757396,0.0002702505546814838,0.00024288340990361206,0.00021765432331151153,0.00018045211087909204,0.00013213199588066216,7.312158995337617e-05,1.2828349114627398e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1905940441116156e-05,0.0001449603449952896,0.00021337820693996906,0.00025442892410677673,0.00026469160339847865,0.00023903490516922387,0.00021808193494866576,0.00019969463455103313,0.00016120958720715095,0.00011631036530595507,5.6017124467206306e-05,5.131339645850958e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.420893097233973e-05,0.0001368357238893589,0.00019584612981664494,0.0002424557982664578,0.00025442892410677673,0.00023518640043483562,0.00020482597419688408,0.00019712896472810762,0.0001624924221186137,0.00011802081185457204,6.029324083874877e-05,3.420893097233972e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.591937752095671e-05 +2620695,2.1936839368967037e-05,5.258831355574288e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7279017311172662e-05,5.1837051933517984e-05,7.662868546693964e-05,8.864887142253802e-05,7.152010643581034e-05,6.851505994691073e-05,5.859840653354207e-05,4.943301474239832e-05,3.9516361329029664e-05,2.794693234676622e-05,1.8781540555622462e-05,7.662868546693963e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6678008013392747e-05,4.237115549348427e-05,6.175370534688665e-05,7.332313432915009e-05,8.023474125361916e-05,7.287237735581515e-05,6.821455529802078e-05,6.80643029735758e-05,5.7696892586872196e-05,4.237115549348427e-05,2.3739867262306787e-05,3.6060557866795123e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6377503364502785e-05,5.288881820463284e-05,7.362363897804003e-05,8.985089001809787e-05,8.609458190697338e-05,7.61779284936047e-05,6.896581692024567e-05,6.460849951134127e-05,5.093553798684812e-05,3.966661365347464e-05,2.5993652128981485e-05,5.10857903112931e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6527755688947768e-05,5.243806123129792e-05,7.602767616915972e-05,8.909962839587296e-05,0.00010081930970258138,9.135341326254767e-05,8.053524590250912e-05,7.512616222248985e-05,6.14532006979967e-05,4.5977211280163785e-05,2.7195670724541327e-05,5.409083680019269e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8030278933397564e-05,5.333957517796779e-05,7.61779284936047e-05,9.165391791143761e-05,8.879912374698299e-05,8.248852612029386e-05,7.317288200470511e-05,7.242162038248021e-05,5.7696892586872196e-05,4.327266944015415e-05,2.569314748009153e-05,6.761354600024087e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5025232444497972e-05,4.793049149794852e-05,7.076884481358545e-05,8.609458190697338e-05,9.495946904922715e-05,9.000114234254284e-05,8.158701217362396e-05,7.272212503137017e-05,5.99506774535469e-05,4.417418338682403e-05,2.479163353342165e-05,4.657822057794371e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.412371849782809e-05,4.80807438223935e-05,7.001758319136054e-05,8.384079704029867e-05,8.80478621247581e-05,8.008448892917418e-05,7.392414362693002e-05,6.80643029735758e-05,5.484209842241758e-05,3.966661365347464e-05,1.9232297528957395e-05,2.1035325422297157e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1869933631153394e-05,4.5977211280163785e-05,6.551001345801114e-05,8.143675984917899e-05,8.669559120475328e-05,8.038499357806412e-05,7.152010643581034e-05,6.791405064913082e-05,5.514260307130755e-05,4.041787527569953e-05,2.1035325422297153e-05,1.5025232444497968e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2470942928933314e-05 +2620696,1.1805246494057514e-05,2.910882697164866e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.541226618484839e-06,2.8623679855454516e-05,4.228865696158958e-05,4.9485005851802724e-05,3.9862921380618854e-05,3.7841475063143255e-05,3.234314107960962e-05,2.6844807096075986e-05,2.1508188817940404e-05,1.495870274931945e-05,1.0268947292776055e-05,4.20460834034925e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.136937354989718e-06,2.3448777282716974e-05,3.420287169168717e-05,4.091407346570617e-05,4.5118681806055425e-05,4.083321561300715e-05,3.8003190768541306e-05,3.703289653615302e-05,3.169627825801743e-05,2.3367919430017945e-05,1.3098972137241897e-05,2.0214463174756014e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.056079502290694e-06,2.9108826971648664e-05,4.083321561300715e-05,5.0212726526093945e-05,4.835299591401639e-05,4.253123051968665e-05,3.8164906473939357e-05,3.501145021867742e-05,2.8057674886561345e-05,2.134647311254235e-05,1.4150124222329209e-05,2.8300248444658418e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.894363796892647e-06,2.8542822002755487e-05,4.148007843459934e-05,4.956586370450174e-05,5.668135474201586e-05,5.029358437879297e-05,4.5361255364152494e-05,4.0428926349512025e-05,3.3475151017395956e-05,2.4904218631299406e-05,1.4796987043921405e-05,2.99174054986389e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.864658029280934e-06,2.9108826971648664e-05,4.1641794139997384e-05,5.0940447200385145e-05,4.9485005851802724e-05,4.625069174384176e-05,4.06714999076091e-05,3.9458632117123734e-05,3.16154204053184e-05,2.377220869351307e-05,1.423098207502823e-05,3.8003190768541303e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.328358827999478e-06,2.6440517832580863e-05,3.9377774264424716e-05,4.811042235591932e-05,5.312360922325881e-05,4.9889295115297843e-05,4.463353468986127e-05,3.929691641172569e-05,3.266657249040572e-05,2.4176497957008195e-05,1.3584119253436042e-05,2.5874512863687692e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.843211711805333e-06,2.6602233537978917e-05,3.881176929553155e-05,4.681669671273492e-05,4.899985873560858e-05,4.487610824795836e-05,4.0994931318405195e-05,3.711375438885204e-05,3.0240836909434998e-05,2.207419378683357e-05,1.0673236556271175e-05,1.212867790485361e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.468628215921924e-06,2.4904218631299406e-05,3.6305175861861795e-05,4.544211321685151e-05,4.811042235591932e-05,4.5361255364152494e-05,3.970120567522082e-05,3.638603371456081e-05,3.0079121204036948e-05,2.215505163953259e-05,1.156267293596044e-05,8.894363796892644e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.872917479417045e-06 +2620697,9.693451888121496e-05,3.167167448594152e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.198107837713982e-05,0.00019242941619488713,0.0002749677194006741,0.00032823371739975764,0.00029992115990474925,0.00027928658410330257,0.00024809478347320854,0.0001977080286092107,0.0001737143358168308,0.00013244518421393726,8.445779862917738e-05,4.07892777470459e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.950435812510226e-05,0.000165076606411574,0.0002346583155094758,0.00028552494422932136,0.00032775384354391,0.00030567964617492043,0.00026776961156296016,0.0002538532697433797,0.00022122184754574302,0.00016603635412326917,0.00010125338358384335,2.6393062071617936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.054145680959703e-05,0.0001957885331858203,0.0002768872148240645,0.000330153212823148,0.0003459890500661188,0.0003287135912556052,0.0002821658272383881,0.00025913188215770334,0.00022170172140159068,0.00016891559725835476,0.00010365275286308134,3.3111296053484315e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.718233981866383e-05,0.00019242941619488713,0.0002716086024097409,0.0003335123298140812,0.00038101984154299346,0.0003647041304441751,0.00031719661871526284,0.00026297087300448414,0.00022841995538345708,0.000174674083528526,0.00010797161756570973,3.98295300353507e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.246095223298743e-05,0.00019338916390658232,0.00027400797168897895,0.00033207270824653834,0.0003315928343906908,0.00031383750172432964,0.00026920923313050293,0.000233218693941933,0.0001957885331858203,0.0001545193815829268,9.597477116951978e-05,3.88697823236555e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.382322282773065e-05,0.00018523130835717313,0.00026920923313050293,0.00032775384354391,0.0003767009768403651,0.0003570261487506135,0.000310958258589244,0.00026776961156296016,0.00022794008152760944,0.0001737143358168308,0.00010461250057477654,3.3111296053484315e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286347511603546e-05,0.0001857111822130207,0.0002720884762655885,0.0003263142219763672,0.00036710349972341307,0.00034310980693103314,0.00029512242134627323,0.00026585011613956973,0.00022554071224837143,0.00017035521882589758,8.82967894759582e-05,1.535596338712316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1346502575693084e-05,0.00017083509268174516,0.00025337339588753216,0.00030567964617492043,0.00034790854548950916,0.00033303245595823355,0.0002831255749500833,0.00025289352203168456,0.00021402373970802908,0.0001612376155647932,9.405527574612936e-05,2.3993692792379944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3745871854931066e-05 +2620698,3.359364216526135e-05,1.0664648306432174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5772900073877748e-05,6.914246985336858e-05,9.847025269605707e-05,0.00011802210792451605,0.00010593550651055959,9.793702028073546e-05,8.513944231301683e-05,6.807600502272536e-05,6.007751879290124e-05,4.5680243579217814e-05,3.0216503534891158e-05,1.368629865992129e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1862529028185955e-05,5.88333098238175e-05,8.300651265173042e-05,0.00010149190304954619,0.00011606692240167016,0.00010380257684927316,9.455988165036529e-05,9.047176646623294e-05,7.874065332915755e-05,5.918879810069856e-05,3.5726571826547786e-05,9.064951060467347e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.506192352011561e-05,7.02089346840118e-05,9.882574097293812e-05,0.0001192663168935998,0.0001221102231086484,0.000115355945847908,0.00010042543821890295,9.011627818935187e-05,7.785193263695487e-05,5.918879810069856e-05,3.6793036657191e-05,1.1375624860194317e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4528691104793998e-05,6.985344640713074e-05,9.775927614229491e-05,0.00011908857275515928,0.0001354410334916886,0.00012921998864626983,0.00011091234238689459,9.438213751192472e-05,8.282876851328989e-05,6.256593673106874e-05,3.839273390315582e-05,1.3508554521480754e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6128388350758826e-05,6.914246985336858e-05,9.793702028073546e-05,0.0001192663168935998,0.000117666619647635,0.00011037910997157301,9.527085820412742e-05,8.460620989769526e-05,7.180863192997664e-05,5.6700380162531056e-05,3.48378511343451e-05,1.3508554521480754e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3284482135710248e-05,6.700954019208215e-05,9.562634648100847e-05,0.00011553368998634854,0.00013046419761535358,0.00012442089690837535,0.00010877941272560816,9.527085820412742e-05,8.194004782108718e-05,6.149947190042553e-05,3.608206010342885e-05,1.1020136583313245e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2573505581948098e-05,6.594307536143893e-05,9.491536992724634e-05,0.00011446722515570533,0.00012708705898498339,0.00011748887550919444,0.00010202513546486778,9.296018440440045e-05,7.998486229824129e-05,5.972203051602017e-05,3.0749735950212765e-05,5.1545800147755504e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8485390397815763e-05,6.132172776198498e-05,8.958304577403024e-05,0.00010860166858716763,0.00012353217621617269,0.00011553368998634854,9.971446166514082e-05,8.904981335870865e-05,7.678546780631164e-05,5.776684499317427e-05,3.323815388838027e-05,7.820742091383592e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9551855228458984e-05 +2620699,2.8377988082620453e-05,8.927906363071604e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2957473505041268e-05,6.249534454150122e-05,8.688766014060758e-05,0.00010267092317532345,8.975734432873774e-05,8.19454262610501e-05,7.158267780391339e-05,5.882852585666825e-05,5.292973058106737e-05,4.0335005533162774e-05,2.5986584592511994e-05,1.1797590551201762e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0087789316911107e-05,5.3408011279089066e-05,7.38146543946813e-05,8.864135603335377e-05,9.948238518851216e-05,8.927906363071602e-05,8.098886486500668e-05,7.939459587160104e-05,6.855356671644267e-05,5.1494888487002285e-05,3.092881847206948e-05,7.174210470325397e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2000912108997878e-05,6.233591764216067e-05,8.624995254324532e-05,0.00010362748457136681,0.0001037869114707074,9.581556650367918e-05,8.433682975115853e-05,7.620605788478977e-05,6.791585911908043e-05,5.069775399029946e-05,3.2044806767453434e-05,9.406187061093296e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1363204511635625e-05,6.153878314545785e-05,8.593109874456418e-05,0.00010330863077268569,0.00011685991721663369,0.0001077725839542215,9.374301681225184e-05,8.258313385841236e-05,7.206095850193509e-05,5.4045718876451315e-05,3.284194126415626e-05,1.1000456054498939e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.32763273037224e-05,6.185763694413897e-05,8.609052564390476e-05,0.0001037869114707074,0.00010091722728257725,9.406187061093298e-05,8.22642800597312e-05,7.509006958940581e-05,6.233591764216067e-05,4.830635050019099e-05,2.99722570760261e-05,1.1319309853180068e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.072549691427337e-05,5.962566035337107e-05,8.353969525445573e-05,0.00010075780038323665,0.00011319309853180069,0.00010617831496081586,9.278645541620848e-05,8.306141455643403e-05,7.126382400523226e-05,5.292973058106737e-05,3.092881847206948e-05,8.927906363071604e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9609508618889415e-05,5.787196446062486e-05,8.19454262610501e-05,9.900410449049047e-05,0.0001077725839542215,9.996066588653385e-05,8.672823324126701e-05,8.098886486500668e-05,6.93507012131455e-05,5.1335461587661725e-05,2.630543839119312e-05,4.145099382854672e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.642097063207813e-05,5.420514577579188e-05,7.811918067687652e-05,9.422129751027354e-05,0.00010538118046411304,9.820696999378764e-05,8.529339114720192e-05,7.811918067687652e-05,6.727815152171815e-05,4.958176569491552e-05,2.8537414981961017e-05,6.21764907428201e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7377532028121516e-05 +2620700,6.484291786685419e-05,2.0215733217313364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.378147893662612e-05,0.00014570585073610763,0.00020177590324450505,0.00023991879610736047,0.00020444590574490498,0.00019033303538564848,0.00016477729716753536,0.0001327372671627368,0.00012015011251799452,9.116151394222442e-05,6.0265770723311527e-05,2.7081453932627334e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7297187149940705e-05,0.00012320154394702295,0.00016973587323970655,0.00020368304788764786,0.00022618735467673252,0.00020253876110176217,0.00018461160145622017,0.00018156017002719172,0.00015867443430947847,0.00011824296787485175,7.170863858216815e-05,1.602001500239927e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.187433429348335e-05,0.00014608727966473618,0.00020101304538724796,0.00023991879610736047,0.00023763022253558917,0.00021741448931827581,0.0001918587511001627,0.00017622016502639198,0.00015676728966633572,0.00011709868108896608,7.514149893982514e-05,2.1360020003199027e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07300475075977e-05,0.0001434172771643363,0.00020101304538724796,0.0002410630828932461,0.000268525965754502,0.0002452588011081602,0.00021665163146101867,0.00019262160895741978,0.00016744729966793525,0.00012510868859016573,7.666721465433936e-05,2.4792880360856015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.530719465114033e-05,0.0001453244218074791,0.00020177590324450505,0.00024182594075050328,0.00023381593324930364,0.00021665163146101867,0.00018995160645701988,0.00017545730716913487,0.00014990156895102174,0.00011175867608816635,7.056435179628249e-05,2.5555738218113122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.844147393582636e-05,0.00014074727466393644,0.0001960544693150768,0.0002345787911065607,0.00026127881611055954,0.0002456402300367888,0.00021207448431747602,0.00019452875360056256,0.00016782872859656377,0.0001228201150183944,7.323435429668238e-05,2.0215733217313364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6534329292683594e-05,0.0001369329853776509,0.0001922401800287912,0.00023114593074890374,0.00024869166146581723,0.00023114593074890374,0.00019948732967273376,0.00018766303288524858,0.00016210729466713546,0.00011900582573210886,6.14100575091972e-05,9.53572321571385e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.852432179148396e-05,0.00012816012001919415,0.00018346731467033453,0.00022122877860456132,0.00024487737217953167,0.00022771307039124675,0.00019796161395821958,0.00018308588574170593,0.00015829300538084992,0.00011442867858856621,6.63686335813684e-05,1.3350012501999391e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119432429188384e-05 +2620701,0.00012606368146847883,3.781910444054365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010381714944462962,0.0002847556099052698,0.00039302206575466927,0.00047014337677067994,0.00039450516788959265,0.0003670677783935119,0.00032035006114342854,0.00025361046507188094,0.00022988083091310846,0.0001750060519209471,0.00011716506865893912,5.190857472231481e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.269388343270502e-05,0.00024100409692503303,0.0003314733271553532,0.00039747137215943916,0.0004397397830047526,0.00039450516788959265,0.0003596522677188955,0.0003552029613141256,0.00030922679513150394,0.00023210548411549338,0.00014015315175025002,3.040359376592725e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010010939410732142,0.0002862387120401931,0.0003937636168221309,0.00047162647890560316,0.0004605032128936786,0.0004212010063182116,0.000373000186933205,0.0003477874506395093,0.00030477748872673416,0.0002269146266432619,0.00014831021349232803,4.078530871039021e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.714318983747488e-05,0.00028030630350050004,0.0003937636168221309,0.0004723680299730648,0.0005242766046953797,0.0004797835406476812,0.0004249087616555199,0.0003804156976078214,0.0003314733271553532,0.00024619495439726454,0.00015201796882963623,4.671771725008332e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010752490478193782,0.0002847556099052698,0.0003959882700245159,0.0004745926831754497,0.00045902011075875534,0.0004249087616555199,0.00037448328906812827,0.00034927055277443256,0.00029810352911957934,0.00022098221810356878,0.00014089470281771166,4.8942370452468255e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417698556762831e-05,0.0002773400992306535,0.0003841234529451297,0.0004612447639611402,0.000513153338683455,0.00047904198958021956,0.0004123023935086719,0.0003774494933379749,0.00032257471434581346,0.00023358858625041663,0.00014311935602009655,3.781910444054365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.898612809539683e-05,0.0002639921800163439,0.00037077553373082007,0.0004464137426119074,0.00047310958104052644,0.00043825668086982936,0.0003856065550800529,0.00036113536985381885,0.00030922679513150394,0.0002269146266432619,0.00011790661972640079,1.8538776686541004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.415510674616402e-05,0.0002484196075996495,0.0003537198591792023,0.0004271334148579047,0.0004708849278381416,0.00044048133407221434,0.0003841234529451297,0.00035223675704427906,0.0003032943865918109,0.0002187575649011839,0.00012680523253594047,2.2988083091310847e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.786286208347223e-05 +2620702,7.595928350195905e-05,2.296443454710389e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.138570003937386e-05,0.00016914189291424597,0.00023317733540136263,0.00028308081816718456,0.00023715194907297676,0.00022169511812781064,0.00019740581235683542,0.0001523601907452085,0.0001351368648348806,0.0001024567079793866,7.065979860647352e-05,3.091366189033217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.564459140259789e-05,0.0001426444684368184,0.00020005555480457816,0.00024112656274459092,0.0002680656109633089,0.0002424514339684623,0.00022213674186910112,0.00021860375193877749,0.00018636521882457388,0.00014220284469552798,8.567500581034915e-05,1.85481971341993e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.00608288155025e-05,0.00016914189291424597,0.00023671032533168632,0.0002848473131323464,0.00027866458075428,0.00025437527498330467,0.00022920272172974852,0.00021021290085425874,0.00018062411018779796,0.00013602011231746153,9.05328669645442e-05,2.4730929512265733e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.829433385034066e-05,0.0001656089029839223,0.00023450220662523397,0.0002852889368736368,0.0003184107174704213,0.0002980960253710602,0.000262324502326533,0.00023450220662523397,0.00019961393106328768,0.00014971044829746577,9.27409856709965e-05,2.693904821871803e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.44770662284071e-05,0.00016781702169037463,0.00023450220662523397,0.00028308081816718456,0.00027778133327169903,0.00025614176994846646,0.0002278778505058771,0.00021330426704329193,0.0001757662490336029,0.00013292874612842831,8.611662955163959e-05,2.958879066646079e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.520296766130744e-05,0.00016207591305359863,0.0002234616130929725,0.00027071535341105166,0.00030427875774912663,0.0002857305606149273,0.0002495174138291096,0.00022213674186910112,0.00018592359508328346,0.00013778660728262337,8.390851084518732e-05,2.1639563323232513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.166997773098376e-05,0.00015147694326262762,0.00021639563323232514,0.00026144125484395205,0.00027689808578911814,0.0002583498886549188,0.00023096921669491034,0.00021595400949103472,0.00017974086270521703,0.0001333703698697188,6.97765511238926e-05,1.1040593532261489e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.327912664646503e-05,0.0001430860921781089,0.00020756315840651598,0.00025305040375943333,0.00028263919442589406,0.0002667407397394376,0.00023626870159039581,0.00021065452459554916,0.00017841599148134567,0.0001311622511632665,7.595928350195905e-05,1.3248712238713785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.592886909420778e-05 +2620703,1.5422017590246224e-05,4.6624704342604854e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2463142122350144e-05,3.45202137921209e-05,4.770065905820344e-05,5.792222885638988e-05,4.823863641600272e-05,4.519009805514009e-05,4.034830183494651e-05,3.138201253829173e-05,2.7616171033696725e-05,2.0712128275272546e-05,1.4256399981681101e-05,6.276402507658347e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1387187406751572e-05,2.9140440214128034e-05,4.08862791927458e-05,4.93145911316013e-05,5.478402760256071e-05,5.0121557168300236e-05,4.554874962700629e-05,4.501077226920699e-05,3.792740372484972e-05,2.896111442819494e-05,1.7394601235510274e-05,3.765841504595008e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2104490550483955e-05,3.434088800618781e-05,4.823863641600272e-05,5.828088042825607e-05,5.684627414079131e-05,5.191481502763118e-05,4.68936930215045e-05,4.285886283800986e-05,3.649279743738496e-05,2.7526508140730177e-05,1.847055595110885e-05,4.931459113160129e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1745838978617765e-05,3.362358486245543e-05,4.779032195116999e-05,5.8191217535289524e-05,6.536424897261335e-05,6.070177853835286e-05,5.3977061565861785e-05,4.832829930896927e-05,4.0706953406812706e-05,3.0485383608626256e-05,1.882920752297504e-05,5.379773577992868e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3001119480149432e-05,3.4161562220254714e-05,4.770065905820344e-05,5.7832565963423335e-05,5.693593703375787e-05,5.254245527839702e-05,4.698335591447106e-05,4.4383132018441174e-05,3.595482007958567e-05,2.7347182354797082e-05,1.757392702144337e-05,6.0074138287587036e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1207861620818475e-05,3.272695593278995e-05,4.5369423841073185e-05,5.523234206739345e-05,6.213638482581764e-05,5.837054332122262e-05,5.1197511883898805e-05,4.554874962700629e-05,3.738942636705044e-05,2.815414839149601e-05,1.7035949663644085e-05,4.393481755360842e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0400895584119545e-05,3.05750465015928e-05,4.3845154660641876e-05,5.30804326361963e-05,5.6128970997058924e-05,5.254245527839702e-05,4.725234459337069e-05,4.375549176767533e-05,3.6223808758485314e-05,2.6988530782930893e-05,1.3987411302781457e-05,2.3312352171302427e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.697300617755137e-06,2.896111442819494e-05,4.196223390834437e-05,5.13768376698319e-05,5.756357728452368e-05,5.424605024476141e-05,4.841796220193582e-05,4.285886283800986e-05,3.568583140068604e-05,2.654021631809815e-05,1.5242691804313128e-05,2.510561003063339e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.145615082587876e-06 +2620704,7.898911839586429e-05,2.323209364584244e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.412057846252513e-05,0.00017842247920006992,0.0002467248345188467,0.00029922936615845065,0.00024811876013759726,0.00023185629458550756,0.00020723027532091456,0.0001612307299021465,0.00014171577123963888,0.00010640298889795838,7.294877404794525e-05,3.2060289231262565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.854487598752294e-05,0.00015054396682505903,0.00021141205217716617,0.00025508838823135,0.0002825022587334441,0.0002588055232146848,0.00023417950395009175,0.00023092701083967388,0.00019561422849799335,0.00014915004120630846,8.874659772711812e-05,1.8585674916673953e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.226201097085775e-05,0.00017749319545423624,0.000249048043883431,0.00030062329177720117,0.00029318902181053164,0.00026809836067302176,0.00024068449017092773,0.00021977560588966948,0.00018771531665840693,0.00014125112936672204,9.478694207503714e-05,2.4626019264592987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9938801606273494e-05,0.00017377606047090145,0.00024718947639176364,0.00030062329177720117,0.00033686535786471534,0.00031270398047303924,0.00027739119813135875,0.00024811876013759726,0.00020955348468549879,0.00015751359491881175,9.71101514396214e-05,2.741387050209408e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.737307157294307e-05,0.00017795783732715308,0.0002495126857563478,0.00030294650114178547,0.0002983000824126169,0.00027599727251260823,0.00024626019264592985,0.0002323209364584244,0.0001886446004042406,0.00014218041311255574,9.199909083753606e-05,3.0201721739595173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.854487598752294e-05,0.0001723821348521509,0.00023929056455217714,0.0002904011705730305,0.00032617859478762783,0.0003052697105063697,0.000267169076927188,0.0002374319970605097,0.00019561422849799335,0.00014682683184172419,8.874659772711812e-05,2.183816802709189e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.389845725835446e-05,0.00016030144615631283,0.00022999772709384017,0.0002783204818771924,0.00029318902181053164,0.0002741387050209408,0.0002453309089000962,0.0002276745177292559,0.00018817995853132377,0.0001398572037479715,7.248413217502842e-05,1.161604682292122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507026167293433e-05,0.00015100860869797584,0.0002188463221438358,0.0002676337188001049,0.0002987647242855338,0.00028110833311469346,0.0002499773276292646,0.00022116953150842008,0.000184462823547989,0.0001370693525104704,7.852447652294744e-05,1.2545330568754916e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.739347103751857e-05 +2620705,3.884931242614343e-05,1.103128624446048e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.18948058807227e-05,9.040858509046958e-05,0.000126380170670232,0.00015156028057606568,0.00012494130724704152,0.00011630812670789854,0.00010287873475812056,8.153559398079485e-05,7.146355001846138e-05,5.347775722858015e-05,3.573177500923069e-05,1.534787651403197e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925688960487345e-05,7.578014028803284e-05,0.0001069555144571603,0.000129257897516613,0.000142687289466391,0.00013069676093980352,0.0001170275584194938,0.00011582850556683505,9.880195505908082e-05,7.434127686484237e-05,4.364552383677842e-05,8.393369968611234e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.093556359859569e-05,9.064839566100135e-05,0.0001268597918112955,0.00015275933342872447,0.00014868255372968474,0.000135972593491502,0.00012110433811853354,0.00011055267301513652,9.400574364844583e-05,7.074411830686613e-05,4.676306125369116e-05,1.1510907385523977e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9976321316468694e-05,8.872991109674735e-05,0.0001266199812407638,0.00015275933342872447,0.00017122474735966917,0.00015707592369829595,0.0001393299414789465,0.00012374225439438277,0.00010575646160450155,7.93772988460091e-05,4.796211410634992e-05,1.2709960238182726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.333366930391318e-05,9.040858509046958e-05,0.00012733941295235902,0.00015419819685191498,0.00015036122772340695,0.00013956975204947828,0.0001230228226827875,0.00011606831613736681,9.568441764216808e-05,7.146355001846138e-05,4.5324197830500674e-05,1.4148823661373226e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9017079034341704e-05,8.705123710302508e-05,0.00012278301211225576,0.00014868255372968474,0.0001649896725258437,0.00015443800742244673,0.0001354929723504385,0.00011918585355427955,0.00010000100791173958,7.41014662943106e-05,4.4604766118905425e-05,1.0311854532865232e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6858783899555954e-05,8.201521512185835e-05,0.00011750717956055727,0.00014244747889585925,0.00014988160658234347,0.00013909013090841472,0.00012398206496491452,0.00011438964214364452,9.520479650110458e-05,7.074411830686613e-05,3.573177500923069e-05,5.036021981166741e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2302383059452713e-05,7.721900371122337e-05,0.00011247115757939055,0.00013669202520309723,0.00015132047000553399,0.00014196785775479572,0.00012398206496491452,0.0001103128624446048,9.328631193685058e-05,6.882563374261212e-05,3.884931242614343e-05,5.51564312223024e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.350143591211146e-05 +2620706,5.073492588153218e-05,1.5854664337978808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9780794157110463e-05,0.00010982958386854411,0.00015479917726353854,0.00018881463893411125,0.0001608527763744032,0.00015191651102026968,0.0001340439803120027,0.00010118158513873749,8.878612029268132e-05,6.745439009249166e-05,4.7275726389609545e-05,2.0466930327209005e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.574506141653405e-05,9.339838628191153e-05,0.0001328909138146951,0.00016142930962305695,0.0001813197067016122,0.00015969970987709563,0.00015018691127430836,0.00014788077827969327,0.00012597251483084982,9.570451927652664e-05,5.765332486537749e-05,1.3260264719036823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949252753278358e-05,0.00011213571686315922,0.00015883491000411498,0.00019112077192872634,0.0001882381056854575,0.00017151864147449804,0.00015566397713651922,0.00014240371241748236,0.00012078371559296584,9.16687865359502e-05,6.082425773297325e-05,1.7295997459613244e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.776292778682226e-05,0.00010954131724421724,0.00015624051038517296,0.00019112077192872634,0.00021389383525055047,0.00019976877065853304,0.00017757224058536264,0.00015854664337978808,0.00013462051356065644,0.00010146985176306436,6.255385747893457e-05,1.902559720557457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.179866052739867e-05,0.00011127091699017854,0.00015739357688248056,0.00019140903855305327,0.0001905442386800726,0.00017526610759074758,0.00015566397713651922,0.00014615117853373192,0.00012395464846056157,9.36866529062384e-05,5.9959457859992575e-05,2.0178663702882118e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6609861289514706e-05,0.00010954131724421724,0.00015335784414190415,0.00018593197269084241,0.00020899330263699338,0.0001980391709125717,0.0001738247744691131,0.00015566397713651922,0.00013087304744440687,9.743411902248794e-05,5.909465798701192e-05,1.5854664337978808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5168528167880274e-05,0.00010435251800633326,0.00015076344452296216,0.0001813197067016122,0.00019371517154766836,0.0001790135737069971,0.00015969970987709563,0.00014874557815267392,0.00012453118170921537,9.253358640893086e-05,4.842879288691709e-05,8.359732105479735e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8538395808361855e-05,9.714585239816107e-05,0.00014240371241748236,0.00017324824122045936,0.00019544477129362968,0.00018276103982324665,0.00016171757624738387,0.00014470984541209745,0.00012193678209027337,9.022745341431577e-05,5.188799237883975e-05,9.801065227114174e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9691462305669404e-05 +2620707,2.9406303665615995e-05,9.073945131104364e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3693078953439176e-05,6.553404816908707e-05,9.023534324820452e-05,0.000108719305552306,9.157963141577553e-05,8.553033466170596e-05,7.511210136303057e-05,5.8644571310285616e-05,5.276331057716241e-05,4.0160609006184134e-05,2.755790743520585e-05,1.2098593508139153e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1340574660189896e-05,5.528385089135808e-05,7.679246157249434e-05,9.208373947861466e-05,0.00010233393675634365,9.157963141577553e-05,8.401801047318855e-05,8.300979434751027e-05,7.175138094410303e-05,5.427563476567981e-05,3.293506010548992e-05,7.393584921640592e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3188970890600042e-05,6.53660121481407e-05,9.090748733199e-05,0.00010888734157325237,0.0001067028733009495,9.762892816984512e-05,8.704265885022336e-05,8.099336209615378e-05,7.05751287974784e-05,5.259527455621604e-05,3.4783456335900066e-05,9.578053193943496e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.234879078586816e-05,6.435779602246243e-05,9.040337926915088e-05,0.00010905537759419875,0.00012132200712328429,0.00011157591790839441,9.947732440025524e-05,8.889105508063347e-05,7.696049759344073e-05,5.73002831427146e-05,3.562363644063195e-05,1.0922341361514515e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.486933110006381e-05,6.553404816908707e-05,9.107552335293639e-05,0.0001093914496360915,0.00010687090932189584,9.897321633741612e-05,8.754676691306248e-05,8.166550617993928e-05,6.956691267180013e-05,5.158705843053777e-05,3.327113214738267e-05,1.1594485445300021e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.184468272302903e-05,6.385368795962331e-05,8.855498303874073e-05,0.0001065348372800031,0.00011930557487192775,0.00011157591790839441,9.678874806511323e-05,8.788283895495524e-05,7.460799330019145e-05,5.444367078662618e-05,3.343916816832905e-05,8.905909110157987e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0500394555458008e-05,6.032493151974938e-05,8.553033466170596e-05,0.00010267000879823642,0.00010905537759419875,0.0001013257206306654,8.956319916441902e-05,8.38499744522422e-05,7.091120083937115e-05,5.2259202514323286e-05,2.738987141425947e-05,4.368936544605804e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.697163811558409e-05,5.646010303798271e-05,8.116139811710015e-05,9.813303623268426e-05,0.00010905537759419875,0.00010199786471445091,8.956319916441902e-05,8.14974701589929e-05,6.956691267180013e-05,5.041080628391313e-05,2.9406303665615995e-05,5.545188691230445e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7811818220315974e-05 +2620708,2.8873749430839058e-05,8.274794044203876e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3768025446117517e-05,6.725470904012512e-05,9.383968565022694e-05,0.00011197380876837585,9.26072695159838e-05,8.591701050152109e-05,7.5529503084329e-05,6.003627168241536e-05,5.352207211570167e-05,4.0141554086776245e-05,2.6761036057850834e-05,1.161992355143523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1655312073129293e-05,5.6691142175184e-05,7.94028109348074e-05,9.542422067996809e-05,0.00010528354975391314,9.577633957546615e-05,8.591701050152109e-05,8.521277271052502e-05,7.324073026359174e-05,5.4930547697693816e-05,3.2570997833568446e-05,6.33814011896467e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3063787655121443e-05,6.743076848787412e-05,9.401574509797595e-05,0.00011267804655937191,0.0001095089764998896,9.982570687369357e-05,8.891002111325442e-05,8.186764320329368e-05,7.042377909960746e-05,5.281783432470558e-05,3.468371120655667e-05,8.626912939701912e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2183490416376346e-05,6.6198352353631e-05,9.383968565022694e-05,0.00011285410600712094,0.0001255303862450503,0.00011479075993236017,0.00010158630135118377,9.067061559074461e-05,7.817039480056428e-05,5.862779610042321e-05,3.5564008445301763e-05,9.859329073945043e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.464832268486261e-05,6.725470904012512e-05,9.436786399347399e-05,0.00011355834379811701,0.00011003715484313666,0.00010211447969443079,8.96142589042505e-05,8.433247547177991e-05,7.09519574428545e-05,5.264177487695657e-05,3.3275235624564526e-05,1.0739626312690136e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1655312073129293e-05,6.496593621938789e-05,9.15509128294897e-05,0.00011056533318638368,0.00012288949452881503,0.00011496681938010917,0.00010088206356018769,8.96142589042505e-05,7.605768142757605e-05,5.598690438418792e-05,3.397947341556059e-05,8.098734596454857e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0422895938886163e-05,6.23250445031526e-05,8.873396166550539e-05,0.00010722020367915234,0.00011285410600712094,0.00010440325251516803,9.225515062048577e-05,8.556489160602306e-05,7.218437357709764e-05,5.3346012667952645e-05,2.6937095505599854e-05,3.8733078504784094e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6901706983905788e-05,5.8275677204925173e-05,8.450853491952896e-05,0.00010193842024668179,0.00011250198711162291,0.00010493143085841511,9.119879393399166e-05,8.186764320329368e-05,7.024771965185844e-05,5.123329929496444e-05,2.904980887858808e-05,4.401486193725466e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7605944774901865e-05 +2620709,3.045195840362878e-05,8.621940029943088e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4948592427069362e-05,7.025963896740857e-05,9.795991438275764e-05,0.0001163044676379557,9.649235012234179e-05,8.952141988536653e-05,7.778090580203978e-05,6.218803553512143e-05,5.613433296090606e-05,4.2375918019507526e-05,2.806716648045303e-05,1.2290850680982702e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2380354971341633e-05,5.925290701428973e-05,8.236704411583928e-05,9.851025098041358e-05,0.00010841630973822055,9.814335991530962e-05,8.805385562495068e-05,8.732007349474277e-05,7.612989600907195e-05,5.6684669558562e-05,3.375397798956443e-05,6.604039171871301e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4031364764309463e-05,7.08099755650645e-05,9.795991438275764e-05,0.0001172216953007156,0.000113369339117124,0.00010327983482676509,9.117242967833438e-05,8.5118727104119e-05,7.411199515100016e-05,5.503365976559418e-05,3.577187884763621e-05,9.172276627599031e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3297582634101535e-05,6.934241130464868e-05,9.795991438275764e-05,0.0001172216953007156,0.00012987943704680227,0.0001183223684960275,0.00010419706248952498,9.35572216015101e-05,8.144981645307939e-05,6.05370257421536e-05,3.6689106510396125e-05,1.0456395355462894e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.54989290247253e-05,7.025963896740857e-05,9.832680544786161e-05,0.00011813892296347552,0.00011318589358457204,0.0001051142901522849,9.190621180854229e-05,8.640284583198287e-05,7.37451040858962e-05,5.448332316793825e-05,3.393742352211641e-05,1.1373623018222798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2563800503893614e-05,6.787484704423282e-05,9.539167692702991e-05,0.00011428656677988391,0.0001265774174608666,0.00011813892296347552,0.00010254605269655718,9.35572216015101e-05,8.053258879031949e-05,5.851912488408181e-05,3.558843331508424e-05,8.621940029943088e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.146312730858173e-05,6.640728278381698e-05,9.374066713406208e-05,0.00011300244805202005,0.00011887270509368343,0.00010951698293353242,9.63089045897898e-05,9.007175648302248e-05,7.704712367183186e-05,5.650122402601002e-05,2.8617503078108974e-05,4.035801716143572e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.79776621900941e-05,6.218803553512143e-05,8.933797435281457e-05,0.00010768252760801261,0.00011795547743092352,0.00010915009186842847,9.502478586192598e-05,8.676973689708683e-05,7.502922281376008e-05,5.4299877635386257e-05,3.100229500128472e-05,4.953029378903476e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871144432030202e-05 +2620710,2.2243468707393664e-05,7.037481624938109e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7970712006538386e-05,4.8508355486180535e-05,6.786142995476033e-05,8.155938526044343e-05,7.07518241935742e-05,6.698174475164307e-05,5.755654614681525e-05,4.473827604424941e-05,4.021418071393205e-05,3.066331279437319e-05,2.086110624535225e-05,9.299529290096784e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5708664341379708e-05,4.084252728758723e-05,5.6928199573160055e-05,6.899245378733967e-05,7.753796718905023e-05,6.874111515787759e-05,6.358867325390505e-05,6.14522949034774e-05,5.366079739015308e-05,4.033985002866308e-05,2.450551637255234e-05,5.906457792358769e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.759370406234527e-05,4.888536343037365e-05,6.811276858422239e-05,8.181072388990552e-05,8.206206251936759e-05,7.602993541227777e-05,6.685607543691205e-05,6.0321271070898076e-05,5.315812013122892e-05,4.0088511399201015e-05,2.5762209519862717e-05,7.665828198593297e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7091026803421122e-05,4.838268617144949e-05,6.786142995476033e-05,8.218773183409863e-05,9.198993838311957e-05,8.595781127602976e-05,7.527591952389155e-05,6.547371297487062e-05,5.705386888789109e-05,4.27275670085528e-05,2.639055609351791e-05,8.922521345903674e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.859905858019357e-05,4.875969411564261e-05,6.811276858422239e-05,8.206206251936759e-05,8.04283614278641e-05,7.464757295023637e-05,6.534804366013959e-05,5.893890860885666e-05,5.1398749724994406e-05,3.858047962242856e-05,2.4254177743090268e-05,8.922521345903674e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6337010915034897e-05,4.737733165360119e-05,6.622772886325683e-05,7.954867622474683e-05,8.922521345903673e-05,8.470111812871939e-05,7.313954117346393e-05,6.597639023379476e-05,5.6928199573160055e-05,4.2099220434897615e-05,2.513386294620753e-05,7.2888202544001845e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5960002970841783e-05,4.63719771357529e-05,6.559938228960166e-05,7.904599896582267e-05,8.595781127602976e-05,8.017702279840203e-05,6.911812310207072e-05,6.371434256863609e-05,5.5043159852194505e-05,4.07168579728562e-05,2.111244487481433e-05,3.5187408124690543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3069608732027916e-05,4.3104574952745915e-05,6.220631079186365e-05,7.527591952389155e-05,8.444977949925731e-05,7.904599896582267e-05,6.861544584314656e-05,6.208064147713259e-05,5.366079739015308e-05,3.920882619608375e-05,2.2746145966317818e-05,4.901103274510469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3823624620414142e-05 +2620711,2.348870571168011e-05,7.568582951541368e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8921457378853413e-05,5.0892195708640225e-05,7.111858118258698e-05,8.521180460959505e-05,7.4250408610811e-05,7.033562432553098e-05,6.028767799331228e-05,4.789086108992555e-05,4.293213432857086e-05,3.275369518684281e-05,2.1792299188058762e-05,9.917453522709377e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6703079617194737e-05,4.306262713808019e-05,5.976570675527494e-05,7.255400208718964e-05,8.181899156235236e-05,7.281498770620834e-05,6.681231846877895e-05,6.446344789761095e-05,5.611190808901358e-05,4.214917747151485e-05,2.5707083473338782e-05,6.2636548564480275e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.839948614081608e-05,5.102268851814956e-05,7.08575955635683e-05,8.560328303812306e-05,8.638623989517905e-05,8.07750490862777e-05,7.059660994454965e-05,6.328901261202695e-05,5.5720429660485584e-05,4.214917747151485e-05,2.6751025949413454e-05,8.090554189578702e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7877514902778745e-05,5.037022447060289e-05,7.072710275405897e-05,8.560328303812306e-05,9.61732006083791e-05,9.108398103751508e-05,7.842617851510967e-05,6.811724656387232e-05,5.9896199564784264e-05,4.46285408521922e-05,2.7533982806469453e-05,9.525975094181376e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9443428616890756e-05,5.076170289913089e-05,7.08575955635683e-05,8.573377584763238e-05,8.416786213352039e-05,7.907864256265635e-05,6.798675375436297e-05,6.120112765987761e-05,5.2849587851280235e-05,4.006129251936551e-05,2.5185112235301446e-05,9.525975094181376e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.722505085523208e-05,4.906529637550955e-05,6.916118903994697e-05,8.338490527646437e-05,9.369383722770174e-05,8.808264641880039e-05,7.790420727707234e-05,6.85087249924003e-05,5.96352139457656e-05,4.42370624236642e-05,2.6229054711376118e-05,7.829568570560036e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6572586807685407e-05,4.8151846708944216e-05,6.824773937338165e-05,8.234096280038972e-05,9.043151698996842e-05,8.351539808597369e-05,7.216252365866164e-05,6.61598544212323e-05,5.702535775557892e-05,4.2671148709552185e-05,2.205328480707743e-05,3.784291475770684e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3701744998480063e-05,4.4759033661701535e-05,6.472443351662962e-05,7.842617851510967e-05,8.84741248473284e-05,8.299342684793636e-05,7.164055242062433e-05,6.446344789761095e-05,5.598141527950425e-05,4.123572780494951e-05,2.3749691330698772e-05,5.3502051898826915e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4615194665045398e-05 +2620712,2.4991646063127786e-05,8.061821310686383e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9079643768624436e-05,5.1326929011369965e-05,7.403439236980328e-05,8.921748917159595e-05,8.02151220413295e-05,7.564675663194056e-05,6.43602067969796e-05,5.052074688030132e-05,4.434001720877511e-05,3.345655843934848e-05,2.284182704694475e-05,1.0211640326869418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6392369998395642e-05,4.353383507770646e-05,6.180729671526226e-05,7.631857507449774e-05,8.773948859797012e-05,7.68560298285435e-05,7.134711859957448e-05,6.798802638678849e-05,5.938875032205635e-05,4.460874458579798e-05,2.714146507931082e-05,6.986911802594864e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8945280080112998e-05,5.293929327350724e-05,7.497493818938335e-05,9.06954897452218e-05,9.271094507289338e-05,8.773948859797012e-05,7.672166614003208e-05,6.745057163274271e-05,5.804511343694195e-05,4.460874458579798e-05,2.8082010898890897e-05,8.868003441755021e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.854218901457868e-05,5.28049295849958e-05,7.403439236980328e-05,9.042676236819892e-05,0.0001025194943342285,9.862294736739674e-05,8.438039638518412e-05,7.161584597659737e-05,6.288220622335378e-05,4.756474573304965e-05,2.9156920406982414e-05,1.0211640326869418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9617098522670198e-05,5.186438376541572e-05,7.390002868129183e-05,9.029239867968748e-05,8.962058023713026e-05,8.35742142541155e-05,7.188457335362023e-05,6.382275204293385e-05,5.5760930732247466e-05,4.380256245472935e-05,2.7007101390799383e-05,1.0211640326869418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7467279506487163e-05,5.065511056881276e-05,7.255639179617744e-05,8.720203384392436e-05,9.795112892483954e-05,9.405458195800779e-05,8.236494105751253e-05,7.228766441915455e-05,6.301656991186523e-05,4.7296018356026764e-05,2.7813283521868014e-05,8.4649123762207e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7467279506487163e-05,5.078947425732421e-05,7.349693761575751e-05,8.881439810606163e-05,9.929476580995393e-05,9.20391266303362e-05,7.927457622174942e-05,7.175020966510881e-05,6.19416604037737e-05,4.622110884793526e-05,2.3782372866524827e-05,4.165274343854631e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4108187293701169e-05,4.7296018356026764e-05,6.946602696041432e-05,8.411166900816126e-05,9.58013099086565e-05,8.868003441755022e-05,7.658730245152062e-05,6.798802638678849e-05,5.912002294503347e-05,4.420565352026366e-05,2.5394737128662106e-05,6.046365983014788e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4780005736258367e-05 +2620713,4.322851360798556e-05,1.4191178709692234e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.209389646653474e-05,8.514707225815338e-05,0.00012335409186117093,0.00014911653936491991,0.00013579866396043954,0.00012968554082395673,0.00011287445219862897,8.885861130530367e-05,7.728734251124692e-05,5.851132144919259e-05,3.864367125562346e-05,1.8776021062054337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6854076635263762e-05,7.335747763779369e-05,0.00010501472245172253,0.0001288122375187449,0.00014802491023340513,0.0001353620123078336,0.00012160748525074729,0.00011505771046165856,0.00010042988009936041,7.554073590082327e-05,4.6066749349924006e-05,1.2444572099268571e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.209389646653474e-05,8.82036338263948e-05,0.00012553735012420052,0.00015108147180164654,0.0001580678982433412,0.00015086314597534357,0.00013055884412916855,0.00011724096872468814,9.99932284467545e-05,7.64140392060351e-05,4.7595030134044715e-05,1.5937785320115893e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0783941508717e-05,8.689367886857706e-05,0.00012291744020856505,0.0001517364492805554,0.00017378735773715412,0.0001681108862532772,0.00014518667449146667,0.00012073418194553545,0.00010501472245172253,8.012557825318538e-05,4.934163674446837e-05,1.855769523575138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2748873945443614e-05,8.66753530422741e-05,0.00012422739516638277,0.00015151812345425242,0.0001517364492805554,0.00014344006788104304,0.00012291744020856505,0.00010610635158323731,9.191517287354507e-05,7.204752267997596e-05,4.453846856580331e-05,1.7684391930539552e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.881900907199038e-05,8.340046564772973e-05,0.00012160748525074729,0.00014824323605970807,0.00016985749286370087,0.0001630893922483092,0.0001419117870969223,0.00012248078855595912,0.00010501472245172253,7.94706007742765e-05,4.7595030134044715e-05,1.5501133667509976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.881900907199038e-05,8.40554431266386e-05,0.00012335409186117093,0.00014911653936491991,0.00016854753790588312,0.00015915952737485594,0.00013667196726565136,0.00012444572099268574,0.00010654300323584322,8.034390407948833e-05,4.170023282386487e-05,7.641403920603508e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.35791892407194e-05,7.90339491216706e-05,0.00011789594620359701,0.00014278509040213414,0.0001630893922483092,0.00015522966250140272,0.0001316504732606833,0.00011767762037729403,9.84649476626338e-05,7.401245511670257e-05,4.344683943428853e-05,1.1352942967753783e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4234166719628278e-05 +2620714,9.17904500783221e-05,3.17736173348038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.959935225718929e-05,0.00018963301774422588,0.00028697124227783117,0.0003706922022393777,0.0003343794967138876,0.000328327379126306,0.0002985711343206961,0.00021686754688834343,0.00017752878256906252,0.00013365093005909538,9.330347947521752e-05,3.883442118698243e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8503803346622886e-05,0.00015987677293861598,0.0002435977329001625,0.0003162231439511426,0.0003691791728424824,0.00036413574151949763,0.0003338751535815892,0.0002960494186592037,0.0002325021839895961,0.00017803312570136102,0.00010692074404727629,3.026058793790839e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.657329346339845e-05,0.0001891286746119274,0.00028596255601323427,0.0003676661434455869,0.0003711965453716763,0.0003601009964611098,0.0003298404085232014,0.0002809191246902496,0.00022796309579890982,0.00017298969437837627,0.00010944245970876866,3.631270552549007e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.253854840501067e-05,0.00018055484136285336,0.00027688437963186173,0.0003601009964611098,0.0004201178292046281,0.00040801359402946476,0.00036464008465179605,0.0003056319381728747,0.0002415803603709686,0.00018307655702434576,0.00010843377344417172,3.782573492238548e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.909500912489081e-05,0.00018055484136285336,0.0002738583208380708,0.00035404887887352814,0.00037018785910707927,0.0003565705945350205,0.00032328394780332123,0.0002733539777057724,0.00021636320375604496,0.00016391151799700375,9.834691079820225e-05,3.5808362393191586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7999460214324404e-05,0.00016945929245228697,0.000262258428795206,0.00034144030056606627,0.00039994410391268917,0.0003908659275313167,0.0003621183689903037,0.0002940320461300098,0.0002335108702541931,0.00017551141003986864,0.0001013729695919931,3.278230359940075e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5477744552832044e-05,0.00016088545920321293,0.00024864116422314725,0.00032227526153872434,0.00035404887887352814,0.0003500141338151403,0.00032076223214182886,0.00025973671313371364,0.00020627634111007554,0.00015634637101252666,8.27122736969496e-05,1.3617264572058774e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.539088190686259e-05,0.00015332031221873584,0.0002425890466355656,0.00031773617334803807,0.0003676661434455869,0.00036564877091639294,0.0003343794967138876,0.0002794060952933541,0.00022039794881443275,0.0001654245473938992,9.027742068142668e-05,2.2191097821132814e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.942562696525036e-05 +2620715,0.00010735621435066803,3.674223378846392e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.037363641226482e-05,0.0002204534027307835,0.0003283837144843963,0.00042138749376144564,0.0003771819937347,0.0003714410197052525,0.0003392915651403465,0.00024801007807213145,0.0002026563832394963,0.0001555803961980269,0.00010563392214183378,4.5353694832635145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.889168835336986e-05,0.00018543346115115384,0.0002795854352340927,0.00036168136385519167,0.0004173688119408323,0.0004081832534937164,0.0003771819937347,0.000340439759946236,0.0002681034871751977,0.0002049527728512753,0.0001222827468272315,3.387174677374018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.75031493975411e-05,0.00021987930532783875,0.00032895781188734105,0.00042138749376144564,0.00043114714961150634,0.0004173688119408323,0.0003812006755553132,0.00032953190929028574,0.000265233000160474,0.00020208228583655155,0.00012802372085667899,4.190911041496667e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.291037017398309e-05,0.00021299013649250182,0.00032149454564905927,0.00041507242232905335,0.0004828159158765337,0.00047018577301174915,0.0004317212470144511,0.00035249580540807577,0.00028245592224881636,0.00021356423389544657,0.0001268755260507895,4.363140262380091e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094773381520957e-05,0.00021356423389544657,0.00031919815603728024,0.0004081832534937164,0.00042081339635850084,0.00040186818206132413,0.000361107266452247,0.0003065680131724959,0.00024801007807213145,0.00018543346115115384,0.00011424538318600502,4.076091560907716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.659529874159085e-05,0.00019863770141888306,0.00030254933135188256,0.00038866394179359485,0.000454685143132241,0.0004449254872821803,0.00040875735089666106,0.000338143370334457,0.0002692516819810872,0.00020208228583655155,0.00011654177279778401,3.674223378846392e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.429890912981186e-05,0.00019002624037471187,0.0002910673832929876,0.00037373740931703146,0.0004139242275231639,0.0004030163768672136,0.00036857053269052865,0.00030599391576955113,0.0002411209092367945,0.00018428526634526433,9.64483636947178e-05,1.7222922088342464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3965155876806386e-05,0.0001802665845246511,0.00028303001965176115,0.00036684824048169453,0.0004282766625967826,0.0004185170067467218,0.0003823488703612027,0.00032149454564905927,0.0002531769546986342,0.00019174853258354608,0.00010505982473888904,2.5260285729568944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6835642891530126e-05 +2620716,7.938552632657716e-05,2.6888646013840645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0606154507386854e-05,0.00016517311122787824,0.00024242461802954742,0.000306445203776787,0.00027187408747327766,0.0002646184210885905,0.00023986379459965782,0.00017925764009227098,0.00014767415112363274,0.00011438344653506815,7.682470289668757e-05,3.37175084935462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.335048812269969e-05,0.00014041848473894558,0.00020785350172603803,0.0002629112054686641,0.0003017503608219895,0.00029108026319744955,0.0002684596562334249,0.0002479730687943082,0.00019889061972142447,0.00015066177845850394,9.048242785609869e-05,2.4754626488932662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.847213498247887e-05,0.00016517311122787824,0.00024327822583951062,0.0003077256154917318,0.00031412767406645585,0.00029748232177217353,0.0002740081069981856,0.0002411442063146026,0.0001946225806716085,0.00014980817064854074,9.517727081089625e-05,3.072988115867502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.591131155258929e-05,0.0001617586799880255,0.0002411442063146026,0.0003077256154917318,0.00035766167237457876,0.0003465647708450572,0.0003162616935913638,0.00026333800937364575,0.00021425556030076195,0.00016261228779798867,9.731129033580424e-05,3.2863900683583014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.316697793727644e-05,0.00016730713075278623,0.00024583904926940017,0.00031028643892162144,0.00031839571311627183,0.00030388438034689746,0.0002663256367085169,0.0002385833828847131,0.0001937689728616453,0.00014511332769374317,8.962882004613549e-05,3.2437096778601424e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.377729202768129e-05,0.00015919785655813592,0.00023772977507474988,0.0003021771647269711,0.0003474183786550204,0.0003350410654105541,0.00030815241939671344,0.0002582163625138665,0.00020828030563101963,0.00015706383703322792,9.090923176108028e-05,2.8595861633767038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.164327250277332e-05,0.00015151538626846712,0.00022791328526017312,0.00028766583195759677,0.0003166884974963454,0.00030388438034689746,0.00027614212652309365,0.0002343153438348971,0.00018694011038193978,0.000142125700358872,7.383707556181637e-05,1.3657724959411121e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.182678268819656e-05,0.0001395648769289824,0.00021681638373065155,0.00027528851871313044,0.00031967612483121656,0.0003077256154917318,0.0002795565577629464,0.00023815657897973146,0.00018950093381182935,0.0001425525042638536,7.853191851661396e-05,1.83525679142087e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3533998308122954e-05 +2620717,8.049369014864023e-05,2.712770772965223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.314974586246912e-05,0.00017210529330123628,0.0002503754008490853,0.00030907798150997214,0.00027261122685699697,0.00026193803037319937,0.00023436560612338892,0.00018099962370440094,0.00014764588469253344,0.00011518157872098244,7.693595798737436e-05,3.424317205218396e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6478998060095626e-05,0.00014586701861190053,0.0002121297801154772,0.0002637168964538323,0.0003037413832680733,0.0002855080059415857,0.00026505104601430704,0.0002485965347684524,0.0002032354497123126,0.00015342719945459046,9.25010361929125e-05,2.445940860870283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.092616326167796e-05,0.00017210529330123628,0.00024993068432892706,0.00031219099715107976,0.0003148592962720291,0.00029840478502617454,0.00027261122685699697,0.00024370465304671184,0.00019700941843009732,0.00015253776641427398,9.783763443481132e-05,3.1130156411076326e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.870258066088679e-05,0.00016943699418028686,0.00024948596780876886,0.0003117462806309215,0.0003611098143684854,0.00034510001964278895,0.00031263571367123796,0.0002632721799336741,0.0002179110948775343,0.00016676869505933748,9.961650051544425e-05,3.335373901186749e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.492861194310207e-05,0.0001743288759020274,0.0002521542669297183,0.00031308043019139615,0.000320195894513928,0.00030463081630838977,0.00027038764425620586,0.00024503880260718654,0.00020056715059136318,0.00014942475077316637,9.161160315259605e-05,3.335373901186749e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.558956501977915e-05,0.0001632109628980716,0.00024059163740560417,0.00029884950154633274,0.0003428764370419979,0.00032864550839693433,0.00029973893458664925,0.00025615671561114234,0.00020946148099452788,0.00015831908117633104,9.294575271307076e-05,2.8461857290126926e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.336598241898799e-05,0.00015654021509569808,0.0002312525904822813,0.00028817630506253514,0.000318417028433295,0.0003015178006672821,0.0002739453764174717,0.00023703390524433836,0.00019211753670835677,0.00014586701861190053,7.560180842689965e-05,1.4230928645063463e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402693549566509e-05,0.00014542230209174228,0.0002223582600791166,0.000278392541619054,0.0003246430597155102,0.0003072991154293392,0.00027750310857873754,0.00024059163740560417,0.00019478583582930618,0.00014675645165221698,8.138312318895669e-05,1.8678093846645796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.625051809645625e-05 +2620718,3.365006125103188e-05,1.1279350140010688e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6318483660024934e-05,7.143588422006769e-05,0.00010377002128809831,0.00012670469990612007,0.00011128958804810545,0.00010696583716110134,9.399458450008906e-05,7.425572175507036e-05,6.0532512418057356e-05,4.7185281419044694e-05,3.1582180392029924e-05,1.409918767501336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3498646125022264e-05,6.0532512418057356e-05,8.722697441608265e-05,0.00010809377217510242,0.00012501279738511844,0.00011561333893510953,0.00010752980466810189,0.0001020781187670967,8.440713688107996e-05,6.335234995306003e-05,3.8349790476036334e-05,1.0151415126009617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5378537815024045e-05,7.162387338906786e-05,0.00010339404295009797,0.00012858459159612184,0.00012914855910312238,0.0001229449165261165,0.00011110159887910528,0.00010038621624609511,8.139931017707714e-05,6.316436078405985e-05,4.060566050403847e-05,1.2783263492012114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.462658113902334e-05,7.105990588206734e-05,0.00010377002128809831,0.0001282086132581215,0.00014869943267914088,0.0001408038875811334,0.00012670469990612007,0.00010752980466810189,8.985882278208515e-05,6.936800336106573e-05,4.1733595518039546e-05,1.3911198506013181e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7070440336025648e-05,7.237583006506857e-05,0.00010452197796409902,0.00012858459159612184,0.00013121643996212435,0.00012463681904711807,0.00011053763137210475,0.00010151415126009618,8.421914771207979e-05,6.278838244605949e-05,3.891375798303687e-05,1.428717684401354e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.368663529402244e-05,6.8616046685065e-05,0.00010095018375309565,0.00012482480821611827,0.00014381171428513626,0.00013798405004613074,0.00012538877572311878,0.0001092217071891035,9.042279028908569e-05,6.842805751606484e-05,4.04176713350383e-05,1.2407285154011757e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3498646125022264e-05,6.824006834706466e-05,0.00010038621624609511,0.00012426084070911773,0.00013742008253913018,0.000128772580765122,0.00011655328478011044,0.00010170214042909634,8.309121269807874e-05,6.260039327705932e-05,3.252212623703081e-05,6.203642577005878e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.898690606901799e-05,6.278838244605949e-05,9.493453034508996e-05,0.0001176812197941115,0.00013779606087713057,0.00012839660242712164,0.00011542534976610936,0.00010076219458409548,8.215126685307784e-05,6.18484366010586e-05,3.44020179270326e-05,7.707555929007304e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9738862745018702e-05 +2620719,0.00010462707999738846,3.5267555055299486e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.22909617956988e-05,0.00022159780426413177,0.0003197591658347154,0.00038853089819254936,0.0003415074914521501,0.00032387371392450027,0.00028507940336367085,0.00022688793752242671,0.0001863302492088323,0.00014518476831098287,9.757356898632859e-05,4.4084443819124355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.347407303187393e-05,0.00018809362696159727,0.0002686212110045311,0.0003309272249355602,0.00038265297234999944,0.00035561451347426975,0.0003268126768457752,0.0003127056548236555,0.00026097990740921623,0.00019514713797265718,0.00011873410201950828,3.115300696551455e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.935199887442384e-05,0.0002227733894326418,0.0003191713732504603,0.00039323323886658926,0.0003949966166193543,0.00037795063167595953,0.0003368051507781102,0.00030800331414961555,0.00025216301864539135,0.00019514713797265718,0.00012519982044631317,3.9969895729339425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758862112165888e-05,0.0002210100116798768,0.0003215225435874803,0.0003949966166193543,0.0004567148379661284,0.0004232106606635939,0.00038617972785552943,0.0003297516397670502,0.00027802589235261096,0.0002139565006688169,0.00012931436853609813,4.349665123486936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.464213213271877e-05,0.00022453676718540673,0.0003221103361717353,0.00039558440920360924,0.0004026379202146692,0.00038265297234999944,0.00033739294336236506,0.0003091788993181255,0.00025980432224070627,0.0001939715528041472,0.00012049747977227326,4.4084443819124355e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.406186561612891e-05,0.0002133687080845619,0.0003121178622394004,0.00038324076493425447,0.00044260781594400857,0.00042379845324784884,0.00038265297234999944,0.00033621735819385515,0.00027978927010537596,0.00021160533033179695,0.00012578761303056818,3.879431056082944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.347407303187393e-05,0.00021219312291605194,0.00031035448448663553,0.00038382855751850945,0.0004255618310006139,0.0003967599943721192,0.00035561451347426975,0.0003144690325764204,0.00025921652965645123,0.00019514713797265718,0.00010168811707611353,1.9984947864669712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.936705100975414e-05,0.0001945593453884022,0.00029272070695898577,0.0003614924393168197,0.0004208594903265738,0.0003908820685295693,0.00034973658763171994,0.0003091788993181255,0.0002545141889824113,0.0001910325898828722,0.00010639045775015347,2.4099495954454653e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.23060139310291e-05 +2620720,3.540616734118481e-05,1.1939288987143716e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8201423986873947e-05,7.59585799354488e-05,0.00010910039936527877,0.00013194972828895035,0.00011465834423860431,0.00010910039936527877,9.592601151739606e-05,7.698782898606465e-05,6.381344113818193e-05,4.8786404999190695e-05,3.334766923995314e-05,1.5232885949114395e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5731226265395937e-05,6.443099056855142e-05,9.160316550480953e-05,0.00011198229670700314,0.00012906783094722603,0.00012021628911192985,0.0001097179487956483,0.00010621850202355443,8.913296778333154e-05,6.628363885965995e-05,4.0346562784140826e-05,1.0498340316281544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.717217493625811e-05,7.65761293658183e-05,0.00010889454955515559,0.0001325672777193199,0.0001311263290484577,0.00012680348303587116,0.00011280569594749579,0.00010416000392232275,8.583937082136084e-05,6.628363885965995e-05,4.281676050561883e-05,1.3174387847882718e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6966325126134947e-05,7.616442974557197e-05,0.0001097179487956483,0.00013421407620030522,0.00015438735759237563,0.00014162466936473925,0.0001296853803775955,0.00011280569594749579,9.51026122769034e-05,7.307668259372447e-05,4.405185936635785e-05,1.4409486708621724e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9230673037489784e-05,7.698782898606465e-05,0.0001101296484158946,0.00013462577582055155,0.00013647842411166006,0.00013071462942821138,0.00011465834423860431,0.00010580680240330811,8.892711797320836e-05,6.669533847990628e-05,4.137581183475666e-05,1.5027036138991231e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5731226265395937e-05,7.328253240384762e-05,0.00010683605145392394,0.0001305087796180882,0.00014985866176966595,0.00014430071689634043,0.00012989123018771872,0.00011507004385885065,9.551431189714973e-05,7.245913316335494e-05,4.322846012586518e-05,1.296853803775955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.53195266451496e-05,7.266498297347812e-05,0.00010621850202355443,0.0001309204792383345,0.00014532996594695624,0.00013647842411166006,0.00012042213892205299,0.00010889454955515559,9.016221683394739e-05,6.751873772039896e-05,3.4994467720938474e-05,6.7930437340645274e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.079083082243992e-05,6.731288791027578e-05,0.00010086640696035207,0.00012433328531439317,0.00014388901727609407,0.00013380237658005886,0.00011877534044106766,0.00010683605145392394,8.789786892259252e-05,6.566608942929042e-05,3.664126620192381e-05,8.028142594803532e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.161423006293259e-05 +2620721,0.00020869836289537515,6.836670508641601e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001619211436257221,0.00044978095451589476,0.0006524822380177247,0.0007928138958266838,0.0006884647143789961,0.0006560804856538517,0.0005757196217803453,0.0004437838751223495,0.00037061950652109724,0.0002806633156179183,0.0001943053723508665,8.515852738834273e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014632873720250443,0.0003838130811868968,0.0005541301359635824,0.0006776699714706147,0.0007784209052821751,0.0006992594572873776,0.0006476845745028884,0.0006380892474732162,0.0005361388977829465,0.0004030037352462417,0.00024228200749922866,5.997079393545264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015952231186830404,0.0004653733609391124,0.0006680746444409424,0.0008060074704924834,0.0007952127275841018,0.0007484355083144488,0.0006764705555919057,0.0006129015140203259,0.0005037546690578021,0.0003910095764591512,0.0002566749980437373,7.676261623737936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015352523247475871,0.0004581768656668581,0.0006572799015325608,0.0008084063022499016,0.0009187525630911343,0.0008587817691556815,0.000773623241767339,0.0006848664667428691,0.0005709219582655091,0.0004365873798500952,0.00026387149331599157,8.156027975221559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016791822301926736,0.0004581768656668581,0.0006560804856538517,0.0008024092228563562,0.0008096057181286105,0.000749634924193158,0.000659678733289979,0.000616499761656453,0.0005253441548745652,0.00039340840821656936,0.0002458802551353558,8.755735914576085e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014273048956637728,0.00043418854809267705,0.0006284939204435437,0.0007580308353441212,0.0008551835215195545,0.0008168022134008647,0.000730444270133813,0.0006500834062603065,0.0005409365612977827,0.00040900081463978696,0.0002434814233779377,6.956612096512506e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013913224193025012,0.0004185961416694594,0.0006117020981416168,0.0007424384289209037,0.0008108051340073196,0.0007520337559505759,0.0006692740603196514,0.0006141009298990349,0.0005109511643300564,0.0003838130811868968,0.00019910303586570275,3.718189223998063e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011274509259865095,0.00039220899233786017,0.0005865143646887267,0.0007172506954680136,0.0008275969563092463,0.0007688255782525026,0.0006860658826215781,0.0006117020981416168,0.0005097517484513474,0.00038261366530818774,0.00021469544228892038,4.317897163352589e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001187421719921962 +2620722,5.2341387578429446e-05,1.6640325530714564e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.023933264700068e-05,0.00011285166223557333,0.0001630751902010027,0.00019847370087543192,0.00017033642315986,0.00016095733058800273,0.00014340935093743094,0.00011043125124928756,9.076541198571581e-05,6.746895624271541e-05,4.8408219725715095e-05,2.0876044756714632e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.660871616757204e-05,9.590878533157304e-05,0.0001394761830847166,0.00017003387178657426,0.00019454053302271753,0.00017396703963928862,0.00016035222784143124,0.00015974712509485983,0.00013372770699228797,0.00010135471005071598,6.051027465714387e-05,1.4219914544428808e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.023933264700068e-05,0.00011648227871500195,0.0001679160121735743,0.00020240686872814622,0.00019968390636857476,0.00018788440281043174,0.0001679160121735743,0.00015067058389628825,0.00012404606304714492,9.530368258500159e-05,6.41408911365725e-05,1.815308239714316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8424024407286356e-05,0.00011436441910200193,0.0001630751902010027,0.00020089411186171763,0.00022630842721771806,0.00021632423189928932,0.00019090991654328892,0.00016942876904000283,0.0001394761830847166,0.00010589298065000178,6.474599388314395e-05,1.8758185143714598e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1449538140143553e-05,0.0001125491108622876,0.00016065477921471693,0.00019726349538228902,0.00019907880362200333,0.0001818333753447173,0.00016216753608114557,0.00015399864900243117,0.00012858433364643072,9.802664494457306e-05,6.202303152357246e-05,2.148114750328607e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.509595930114345e-05,0.00010770828888971608,0.00015369609762914542,0.00018546399182414595,0.00020906299894043207,0.00019907880362200333,0.0001782027588652887,0.00015853691960171696,0.00013070219325943077,9.893429906443021e-05,5.869496641742955e-05,1.5732671410857404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.388575380800057e-05,0.0001031700182904303,0.00015097313526957396,0.00018213592671800305,0.00019635584126243184,0.00018334613221114592,0.00016519304981400278,0.0001515782380161454,0.00012465116579371636,9.3790925718573e-05,4.901332247228653e-05,9.07654119857158e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7532174969000463e-05,9.71189908247159e-05,0.00014461955643057384,0.0001766900019988601,0.00020240686872814622,0.000189699711050146,0.0001706389745331457,0.00014946037840314535,0.00012404606304714492,9.3790925718573e-05,5.294649032500089e-05,9.379092571857299e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.904493183542906e-05 +2620723,2.6914902768670962e-05,8.971634256223655e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.130763135853118e-05,5.86360381746046e-05,8.571114869785098e-05,0.00010397483271944913,8.971634256223653e-05,8.587135645242642e-05,7.577826791417479e-05,6.00779079657834e-05,4.918378065465467e-05,3.732840681607342e-05,2.4832201959190476e-05,1.1214542820279566e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9545346058201534e-05,4.9824611672956375e-05,7.22536973135155e-05,8.8755096034784e-05,0.00010221254741911949,9.308070540832043e-05,8.474990217039844e-05,8.362844788837051e-05,6.985058099488418e-05,5.190731248243686e-05,3.140071989678279e-05,7.689972219620276e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.066680034022949e-05,5.991770021120798e-05,8.66723952253035e-05,0.00010557691026520336,0.00010301358619199659,9.86879768184602e-05,8.939592705308571e-05,8.106512381516373e-05,6.568517937592319e-05,5.1106273709559746e-05,3.332321295168786e-05,9.932880783676189e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.00259693219278e-05,5.927686919290628e-05,8.603156420700183e-05,0.00010493607924690167,0.00011983540042241596,0.00011102397392076775,0.00010061046987336526,8.843468052563316e-05,7.273432057724177e-05,5.639312961054868e-05,3.3643628460838704e-05,1.0413504047402458e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1467839113106605e-05,5.847583042002917e-05,8.44294866612476e-05,0.00010301358619199659,0.00010413504047402454,9.772673029100767e-05,8.635197971615267e-05,8.09049160605883e-05,6.85689189582808e-05,5.07858582004089e-05,3.140071989678279e-05,1.1214542820279566e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8423891776173573e-05,5.463084431021904e-05,8.026408504228664e-05,9.72461070272814e-05,0.00011070355841161689,0.00010557691026520336,9.628486049982886e-05,8.523052543412473e-05,7.049141201318584e-05,5.350939002819108e-05,3.1721135405933634e-05,8.971634256223655e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.810347626702273e-05,5.318897451904024e-05,7.818138423280614e-05,9.58042372361026e-05,0.00010573711801977879,9.804714580015852e-05,8.843468052563316e-05,7.946304626940951e-05,6.600559488507402e-05,4.9504196163805515e-05,2.563324073206758e-05,4.806232637262672e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4739113420938862e-05,5.0145027182107214e-05,7.545785240502396e-05,9.292049765374498e-05,0.00010894127311128723,0.00010045026211878984,9.067758908968907e-05,8.09049160605883e-05,6.632601039422487e-05,4.9824611672956375e-05,2.7715941541548074e-05,5.607271410139783e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5860567702966817e-05 +2620724,5.1143271636283726e-05,1.7149839590610114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.103711616324563e-05,0.00011239269874560557,0.0001635359703818893,0.00019814189669865612,0.00016966091309282146,0.00016200473470415623,0.00014546738938463937,0.00011668015864325808,9.493661201944883e-05,7.227432398899977e-05,4.808080028081763e-05,2.1743546623809247e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7668397672232925e-05,9.585535342608866e-05,0.0001375049638604275,0.00016843592455063506,0.00019324194252991043,0.000180992057108046,0.00016414846465298251,0.0001601672518908766,0.00013229876255613514,9.861157764600816e-05,5.941194429604217e-05,1.5006109641783847e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.919963334996597e-05,0.0001133114401522454,0.0001635359703818893,0.00019967313237638919,0.00019599816674982984,0.00018926072976780444,0.00017057965449946132,0.00015496105058658422,0.00012556132557410977,9.769283623936832e-05,6.33931570581481e-05,1.898732240388977e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.889338621441936e-05,0.00011269894588115217,0.00016445471178852913,0.00020120436805412225,0.0002306040930665967,0.00021590423056035946,0.00019507942534319002,0.00016966091309282146,0.00013964869380925378,0.00010902398025459285,6.523063987142775e-05,2.0212310946076205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.226210470543206e-05,0.00011453642869443182,0.00016537345319516894,0.00020181686232521545,0.00020426683940958826,0.00019293569539436376,0.00017119214877055452,0.00015894226334869016,0.00013260500969168178,9.861157764600816e-05,6.063693283822861e-05,2.1437299488262638e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6443409130046495e-05,0.00010626775603467335,0.00015587979199322408,0.0001901794711744443,0.00021712921910254588,0.000207635557900601,0.00018987322403889767,0.00016598594746626213,0.00013597372818269446,0.00010320528467920729,6.0943179973775225e-05,1.7456086726156723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4912173452313446e-05,0.00010228654327256745,0.0001506735906889317,0.00018497326987015195,0.0002036543451384951,0.00019048571830999092,0.00017302963158383417,0.00015312356777330457,0.00012586757270965636,9.493661201944883e-05,4.930578882300408e-05,9.187414066398275e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8787230741381257e-05,9.554910629054206e-05,0.00014485489511354612,0.00017915457429476636,0.00020794180503614761,0.00019324194252991043,0.00017394837299047398,0.00015587979199322408,0.0001267863141162962,9.524285915499546e-05,5.2674507314016775e-05,1.0718649744131319e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.062471355466092e-05 +2620725,1.7493255422928573e-05,5.929917092518161e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3836473215875706e-05,3.716081377978048e-05,5.336925383266345e-05,6.463609630844795e-05,5.682837213663238e-05,5.336925383266345e-05,4.704400893397742e-05,3.755614158594836e-05,3.1132064735720344e-05,2.431266007932446e-05,1.640610395596691e-05,7.511228317189671e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2452825894288137e-05,3.152739254188822e-05,4.486970600005408e-05,5.504939700887693e-05,6.364777679302827e-05,5.90026750705557e-05,5.396224554191527e-05,5.18867745595339e-05,4.368372258155045e-05,3.2614544008849886e-05,1.986522225993584e-05,5.238093431724375e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3342313458165862e-05,3.745730963440638e-05,5.346808578420541e-05,6.532791996924174e-05,6.562441582386764e-05,6.275828922915054e-05,5.54447248150448e-05,5.119495089874013e-05,4.220124330842091e-05,3.271337596039186e-05,2.09523737268975e-05,6.6217407533119465e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3045817603539955e-05,3.716081377978048e-05,5.376458163883133e-05,6.582207972695158e-05,7.600177073577444e-05,6.938002998246248e-05,6.38454406961122e-05,5.4752901154251013e-05,4.654984917626757e-05,3.567833450665094e-05,2.1644197387691293e-05,7.313564414105731e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4330632973585554e-05,3.765497353749032e-05,5.376458163883133e-05,6.582207972695158e-05,6.690923119391325e-05,6.345011288994431e-05,5.554355676658677e-05,5.070079114103028e-05,4.299189892075666e-05,3.202155229959807e-05,1.996405421147781e-05,7.511228317189671e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2452825894288137e-05,3.5480670603566986e-05,5.159027870490801e-05,6.28571211806925e-05,7.214732462563761e-05,6.858937437012671e-05,6.1275809956021e-05,5.406107749345723e-05,4.5166201854679985e-05,3.399819133043745e-05,2.026055006610372e-05,6.226412947144068e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1859834185036322e-05,3.409702328197942e-05,4.96136396740686e-05,6.088048214985312e-05,6.779871875779097e-05,6.305478508377644e-05,5.6235380427380556e-05,5.040429528640437e-05,4.200357940533697e-05,3.162622449343019e-05,1.650493590750888e-05,3.2614544008849887e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685531251112996e-06,3.162622449343019e-05,4.7340504788603316e-05,5.831085140976192e-05,6.779871875779097e-05,6.28571211806925e-05,5.6235380427380556e-05,5.03054633348624e-05,4.1904747453795e-05,3.142856059034625e-05,1.769091932601251e-05,4.052110013220744e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0377354911906781e-05 +2620726,2.7729839820195413e-05,9.296709303880544e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.179918043668541e-05,6.042861047522353e-05,8.783787411252652e-05,0.0001065915808117338,9.232594067302056e-05,8.847902647831137e-05,7.79000124428611e-05,6.235206757257812e-05,5.065103689700433e-05,3.9270582404322985e-05,2.6126958905733253e-05,1.1861318767020001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.003601143077703e-05,5.1612765445681644e-05,7.38928101567057e-05,9.072305975855839e-05,0.00010450783562293301,9.697429532496083e-05,8.944075502698867e-05,8.591441701517192e-05,7.116791260212003e-05,5.32156463601438e-05,3.221790638068947e-05,8.334980755203245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1318316162346766e-05,6.090947474956219e-05,8.767758602108029e-05,0.00010771359745185733,0.00010691215699462624,0.00010322553089136329,9.200536449012813e-05,8.383067182637111e-05,6.828272695608813e-05,5.3055358268697586e-05,3.430165156949028e-05,1.0579014035450275e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0677163796561897e-05,6.042861047522353e-05,8.815845029541895e-05,0.00010819446172619597,0.00012454384705371004,0.00011685001866429165,0.00010482841180582544,9.008190739277354e-05,7.517511488827543e-05,5.8505153377868935e-05,3.5103092026721366e-05,1.1380454492681354e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2600620893916492e-05,6.139033902390082e-05,8.863931456975759e-05,0.0001085150379090884,0.00011027820691499679,0.00010498869989727164,9.328766922169788e-05,8.591441701517192e-05,7.148848878501246e-05,5.3055358268697586e-05,3.269877065502812e-05,1.1861318767020001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.97154352478846e-05,5.770371292063787e-05,8.46321122836022e-05,0.0001035461070742557,0.00011861318767020003,0.0001133236806524749,0.0001025843785255784,8.928046693554248e-05,7.357223397381326e-05,5.5780255823283264e-05,3.301934683792055e-05,9.937861669665409e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.891399479065352e-05,5.561996773183703e-05,8.142635045467787e-05,0.00010034034524533138,0.00011075907118933543,0.00010386668325714814,9.36082454045903e-05,8.254836709480137e-05,6.79621507731957e-05,5.12921892627892e-05,2.66078231800719e-05,5.12921892627892e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.538765677883676e-05,5.1612765445681644e-05,7.822058862575355e-05,9.681400723351462e-05,0.00011252224019524383,0.00010466812371437923,9.408910967892893e-05,8.36703837349249e-05,6.828272695608813e-05,5.145247735423541e-05,2.8531280277426493e-05,6.251235566402435e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6509673418960275e-05 +2620727,0.00010760494708251384,3.774623798182423e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.887273608142376e-05,0.00021577327085132357,0.00032337821793383735,0.00041464524111377066,0.0003757722497593546,0.0003712652362689876,0.00033239224491457157,0.00024506885853870956,0.00020394236043911004,0.00015323845867248046,0.00010591481702362618,4.676026496255838e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.816857904180198e-05,0.00018422417641875407,0.0002754911995986873,0.00035436393568011104,0.00041408186442747476,0.00040225095401526115,0.0003712652362689876,0.0003346457516597551,0.00026704054930424897,0.00020281560706651827,0.00012225274092620683,3.492935455034481e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.661922933624023e-05,0.0002174634009102112,0.0003250683479927251,0.00041464524111377066,0.00043041978833005534,0.00041239173436858717,0.0003774623798182423,0.0003273218547379086,0.0002681673026768408,0.00020281560706651827,0.00012788650778916566,4.3380004844783064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323896921846493e-05,0.00021182963404725236,0.0003194345811297662,0.00041351848774117886,0.00048168706678298085,0.00047098290974335904,0.000422532514721913,0.00034591328538567277,0.000281688343147942,0.00021351976410614006,0.00012619637773027801,4.507013490367072e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.056286614031142e-05,0.00021295638741984416,0.0003171810743845827,0.00040506783744674065,0.0004197156312904336,0.00040225095401526115,0.0003492935455034481,0.00030140652716829794,0.0002484491186564848,0.0001785904095557952,0.00011211196057288093,4.168987478589541e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.591507229661842e-05,0.0001971818402035594,0.0002991530204231144,0.0003847862767400887,0.00045295485578189076,0.0004405605686833813,0.00040225095401526115,0.0003284486081105004,0.00026704054930424897,0.0001999987236350388,0.00011549222069065622,3.774623798182423e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.422494223773078e-05,0.00018760443653652938,0.0002890122400697885,0.00036844835283750813,0.00041182835768229116,0.00040056082395637356,0.00036056107922936576,0.00030196990385459384,0.0002399984683620466,0.00018422417641875407,9.633741335659617e-05,1.8028053961468287e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.295740851181309e-05,0.00017690027949690757,0.0002794348364027585,0.00035943432585677397,0.0004208423846630254,0.0004112649809959953,0.0003723919896415793,0.0003143641909531033,0.0002507026254016684,0.00019042131996800877,0.00010478806365103442,2.6478704255906545e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.633766862958841e-05 +2620728,0.00010850342321905819,3.715062860217753e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.373633748427317e-05,0.00022467284916554984,0.00032609996217466947,0.0004021702969315092,0.00035853305063688793,0.0003443804302170108,0.00030310195399236905,0.00023705639203294232,0.00019577791580830065,0.0001527303620311743,0.00010260649804410937,4.5996016364600746e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.430125720435506e-05,0.0001904706831508467,0.0002753864056701096,0.0003432010451820211,0.0003986321418265398,0.0003762238261617343,0.00034497012273450566,0.000323151499587195,0.0002671307104251813,0.0002010851484657546,0.00012206635112144044,3.361247349720824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.078787489679875e-05,0.00022526254168304472,0.00032609996217466947,0.00040688783707146817,0.00041514353231639645,0.00039332490916908585,0.0003544052030144237,0.0003196133444822257,0.0002606440927327376,0.00020226453350074436,0.00012855296881388416,4.186816874213658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.842910482681924e-05,0.0002229037716130652,0.0003266896546921643,0.00040747752958896307,0.00047470247658337955,0.0004493456983310997,0.00040629814455397337,0.00033848350504206193,0.0002860008709850175,0.000218775923990601,0.00013150143140135855,4.540632384710587e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.668480007174758e-05,0.00022762131175302426,0.000328458732244649,0.000408067222106458,0.000418091994903871,0.000398042449309045,0.00034968766287446463,0.0003166648818947514,0.0002630028628027171,0.0001945985307733109,0.0001208869660864507,4.540632384710587e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.548064223934482e-05,0.00021523776888563172,0.00031548549685976156,0.0003915558316166013,0.0004534735459535639,0.00043460338539372766,0.00039096613909910633,0.00033553504245458746,0.0002777451757400892,0.00020934084371068291,0.00012383542867392512,3.8919706154662174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.194248713437555e-05,0.00020580268860571362,0.0003025122614748742,0.0003774032111967241,0.00042221984252633504,0.0003986321418265398,0.0003591227431543828,0.0003113576492372974,0.00025592655259277857,0.00019341914573832114,0.00010083742049162474,1.9459853077331087e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.837955923199326e-05,0.0001910603756683416,0.0002901287186074817,0.00036266089825935205,0.0004251683051138095,0.0004009909118965194,0.00036089182070686744,0.00031253703427228715,0.0002565162451102734,0.00019341914573832114,0.00010791373070156331,2.594647076977478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.191771433696256e-05 +2620729,4.987048247020253e-05,1.7493834164940156e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.785979035696003e-05,0.00010182978096009938,0.0001480448353958368,0.00018538242174787327,0.00016658307757062415,0.0001618832415263119,0.0001412561833318302,0.00010914063702902961,9.164680286408946e-05,7.10197446696078e-05,4.7781666450508185e-05,2.1410364201867056e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.315995431264775e-05,8.694696681977718e-05,0.00012611226718904617,0.00015848891549430854,0.00018381580973310247,0.0001759827496592487,0.00016057773151400287,0.0001483059373982986,0.0001216735331471957,9.216900686901304e-05,5.561472652436198e-05,1.56661201477076e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.655428034465106e-05,0.00010209088296256119,0.0001483059373982986,0.00018642682975772044,0.00019243217581434169,0.0001827714017232553,0.00016501646555585334,0.00014621712137860424,0.00012062912513734855,9.243010887147483e-05,5.848684855144171e-05,1.9582650184634498e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.52487703323421e-05,0.00010052427094779044,0.00014778373339337502,0.000186949033762644,0.00021828127405805923,0.00021018711198174362,0.00018799344177249124,0.00015587789546969062,0.00013081210323335847,9.921876093548148e-05,5.979235856375068e-05,2.1410364201867056e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9165300369268997e-05,0.00010339639297487016,0.0001493503454081458,0.00018642682975772044,0.0001908655637995709,0.00018146589171094639,0.00015666120147707599,0.0001409950813293684,0.00011488488108318907,8.381374279023566e-05,5.274260449728226e-05,2.0104854189558088e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.289885231018596e-05,9.504112889609277e-05,0.00013995067331952125,0.0001754605456543251,0.00020444286792758418,0.00019713201185865401,0.00017859376968386667,0.00015013365141553116,0.00012376234916689003,9.3474516881322e-05,5.4831420516976605e-05,1.775493616740195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1593342297877e-05,9.086349685670408e-05,0.00013472863327028536,0.0001691940975952421,0.00018956005378726197,0.00018120478970848455,0.00016266654753369726,0.00013942846931459764,0.0001138404730733419,8.642476281485361e-05,4.517064642589025e-05,8.877468083700975e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.584909824371754e-05,8.511925280254464e-05,0.0001297676952235113,0.00016371095554354443,0.00019164886980695632,0.00018381580973310247,0.00016501646555585334,0.0001420394893392156,0.00011540708508811266,8.668586481731538e-05,4.856497245789356e-05,1.2271794115704286e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7415710258488302e-05 +2620730,6.268036563803702e-05,2.1014226630093336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.891242405280345e-05,0.0001391286728613076,0.00020615680952626043,0.00025724311909252186,0.00022246095087719497,0.00021449003732784921,0.00019854821022915773,0.0001510850431853262,0.00011666518922224231,9.239013432196208e-05,6.0868794376822074e-05,2.6448940413738166e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.42023387736446e-05,0.00011811444623121428,0.00017499778383336346,0.00021883780835476506,0.0002492722055431761,0.00024166360624607331,0.0002253594648951389,0.0002119538375621483,0.00016630224177953173,0.00012536073127607404,7.391210745756965e-05,1.8478026864392413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.710085279158851e-05,0.00013767941585233565,0.0002047075525172885,0.00025760543334476485,0.00025543154783130693,0.00024492443451626025,0.00022934492166981177,0.0002014467242471016,0.000157969013977943,0.0001228245315103731,7.862219273672852e-05,2.3550426395794256e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5289281530373564e-05,0.00013478090183439173,0.00020325829550831657,0.00025724311909252186,0.0002967353725870076,0.00028514131651523203,0.0002659386611463536,0.00022608409339962485,0.00017753398359906435,0.00013478090183439173,7.93468212412145e-05,2.463736915252322e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.072399531401839e-05,0.00013804173010457864,0.00020362060976055954,0.00025434460507457794,0.0002583300618492508,0.0002456490630207462,0.00021920012260700803,0.00020362060976055954,0.00016195447075261589,0.00012101296024915817,7.354979320532668e-05,2.4999683404766207e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.202845326018667e-05,0.00012717230253728897,0.0001920265536887839,0.0002423882347505593,0.00027934428847934415,0.00026992411792102646,0.0002507214625521481,0.00021267846606663426,0.0001670268702840177,0.00012717230253728897,7.318747895308368e-05,2.1014226630093336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9854567746728735e-05,0.00012209990300588713,0.00018441795439168117,0.00023224343568775563,0.0002518084053088771,0.00024166360624607331,0.00022282326512943794,0.00019238886794102687,0.00014963578617635425,0.00011412898945654139,5.869490886336414e-05,1.0144799062803678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.297059695411196e-05,0.00011376667520429839,0.00017825861210355034,0.00022644640765186785,0.00026050394736270877,0.0002503591482999051,0.00023224343568775563,0.00020035978149037266,0.0001554328142122421,0.00011702750347448529,6.340499414252299e-05,1.2680998828504597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5144482467569884e-05 +2620731,8.131148635299686e-05,2.74135868275818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.458455201752322e-05,0.00017749135878197028,0.00025926748219984145,0.0003229227600876162,0.00028110542424893196,0.00026948949762707527,0.00024858082970773327,0.00018864264833895274,0.000151007046084137,0.00011848245154293829,7.805902689887698e-05,3.4383142800695814e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.807963310928347e-05,0.00015054240901926275,0.00022023796875040292,0.00027552977947044077,0.0003145592929198793,0.0003024787292331483,0.00028064078718405776,0.0002615906675242128,0.00020955131625829477,0.00015844123912212534,9.432132416947637e-05,2.4161127373461924e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.226136669315188e-05,0.00017609744758734748,0.0002578735710052187,0.00032431667128223895,0.0003233873971524904,0.00030944828520626234,0.00028668106902742326,0.0002527625632916017,0.000201187849090558,0.0001556534167328797,9.943233188309332e-05,3.020140921682741e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.947354430390627e-05,0.00017238035106835337,0.0002555503856808473,0.0003205995747632448,0.00036938646657504295,0.00035405344343419204,0.00032478130834711315,0.00027460050534069226,0.0002193086946206544,0.00016680470628986212,9.943233188309332e-05,3.159532041145021e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.504918908239749e-05,0.0001733096251981019,0.0002527625632916017,0.00031548856704962785,0.0003210642118281191,0.0003043372774926454,0.0002718126829514467,0.0002471869185131105,0.0001993293008310609,0.00015054240901926275,9.153350178023076e-05,3.2059957476324475e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.48271736551636e-05,0.0001612290615113709,0.00023975272547512217,0.0003006201809736513,0.0003461546133313295,0.00033453868670947287,0.00030944828520626234,0.00026205530458908705,0.00020862204212854623,0.00015844123912212534,9.199813884510502e-05,2.74135868275818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2503988330792256e-05,0.00015518877966800543,0.00023185389537225967,0.0002913274396761659,0.00031688247824425067,0.0003038726404277711,0.0002792468759894349,0.00024021736253999643,0.00019003655953357554,0.00014496676424077156,7.480656744475713e-05,1.3474474881353767e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.367588409818118e-05,0.0001458960383705201,0.00022441970233427137,0.0002843578837030519,0.00032663985660661023,0.000314094655855005,0.00028714570609229747,0.00024904546677260753,0.00019654147844181527,0.00014821922369489144,8.08468492881226e-05,1.7191571400347907e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.646370648742678e-05 +2620732,5.841024167234769e-05,1.969259576382008e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639442052832187e-05,0.00013017139572694627,0.00018891541020885024,0.00023063701140338435,0.000199596140114651,0.00018991672863751907,0.00017289431535014922,0.00013484421506073413,0.00010981125434401367,8.51120664368495e-05,5.6407604815010056e-05,2.5366733526276718e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.272291962320289e-05,0.0001108125727726825,0.00015987717577745455,0.0001969259576382008,0.00022462910083137142,0.00021127818844912053,0.00019525709359041946,0.0001862452277324001,0.0001522004011576603,0.00011448407367780149,6.875719876859214e-05,1.7689958906482446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4725556480540524e-05,0.00012983762291739003,0.00018824786458973772,0.0002323058754511657,0.0002309707842129406,0.00021962250868802735,0.0002009312313528761,0.00017990354435083088,0.00014552494496653486,0.00011281520963002011,7.30962452928237e-05,2.2362778240270262e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.305669243275916e-05,0.00012750121325049612,0.00018824786458973772,0.000232639648260722,0.00026701824764501804,0.0002533335624532109,0.00023030323859382802,0.00019625841201908827,0.00015987717577745455,0.0001241634851549334,7.40975637214925e-05,2.369786947849535e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7729511766546976e-05,0.00013150648696517138,0.00019025050144707534,0.00023364096668939077,0.00023697869478495352,0.00022429532802181515,0.00020126500416243234,0.00018424259087506244,0.00015119908272899146,0.00011214766401090757,6.875719876859214e-05,2.469918790716417e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.105405557542152e-05,0.00012349593953582083,0.00018157240839861228,0.00022362778240270264,0.00025466865369143594,0.00024298660535696643,0.00022229269116447753,0.00019158559268530044,0.00015520435644366675,0.00011815557458292049,6.942474438770468e-05,2.06939141924889e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9718964337196435e-05,0.0001178218017733642,0.00017356186096926173,0.00021428214373512696,0.00023397473949894707,0.0002202900543071399,0.0002009312313528761,0.00017589827063615562,0.0001421872168709721,0.00010780861748667602,5.607383200545379e-05,1.034695709624445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.270973533651471e-05,0.0001094774815344574,0.00016621885915902372,0.00020627159630577638,0.00023764624040406603,0.00022362778240270264,0.00020193254978154485,0.0001779009074934933,0.00014285476249008467,0.00010780861748667602,5.941156010101651e-05,1.2683366763138359e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.371105376518353e-05 +2620733,2.7518433895617494e-05,9.22321136061905e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1470426446031227e-05,5.896807263346605e-05,8.573050559788526e-05,0.0001072009320439165,9.419771602730603e-05,9.041771137131462e-05,8.285770205933178e-05,6.259687710321781e-05,5.1105662949003914e-05,3.991684916726933e-05,2.6460032591939893e-05,1.1642414340453554e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.920242365243638e-05,5.0047261645326326e-05,7.318089013999378e-05,9.162731286123186e-05,0.00010508412943656131,0.00010054812384937161,9.313931472362843e-05,8.663770671532322e-05,6.970328585648167e-05,5.2920065183879787e-05,3.160083892408822e-05,8.31601024318111e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0714425514832945e-05,5.866567226098674e-05,8.573050559788526e-05,0.00010765453260263544,0.00010856173372007338,0.00010296732682920609,9.510491714474397e-05,8.391610336300941e-05,6.758648324912648e-05,5.231526443892116e-05,3.34152411589641e-05,1.04328128505363e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9807224397395012e-05,5.760727095730914e-05,8.512570485292664e-05,0.0001075033324163958,0.00012443775327523733,0.00011990174768804763,0.00010977133520999065,9.238331379243014e-05,7.484409218863e-05,5.6851270026110855e-05,3.386884171768306e-05,1.1188813781734584e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2226427377229513e-05,5.911927281970571e-05,8.588170578412491e-05,0.00010735213223015614,0.00010931773465127168,0.00010372332776040438,9.177851304747152e-05,8.270650187309212e-05,6.667928213168853e-05,5.019846183156597e-05,3.069363780665028e-05,1.103761359549493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8597622907477753e-05,5.473446741875568e-05,8.104329982445592e-05,0.00010175772533928886,0.00011672654377701486,0.0001123417383760648,0.00010372332776040438,8.754490783276113e-05,7.030808660144031e-05,5.3222465556359095e-05,3.0996038179129596e-05,9.52561173309836e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7841621976279475e-05,5.231526443892116e-05,7.771689572718348e-05,9.782652049705779e-05,0.00010704973185767682,0.00010251372627048714,9.359291528234741e-05,8.013609870701796e-05,6.410887896561437e-05,4.868645996916941e-05,2.5250431102022638e-05,4.687205773429353e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4666418065246685e-05,4.8837660155409064e-05,7.484409218863e-05,9.480251677226465e-05,0.00010931773465127168,0.00010508412943656131,9.540731751722329e-05,8.225290131437316e-05,6.562088082801094e-05,4.944246090036769e-05,2.7216033523138182e-05,6.048007449586262e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5422418996444967e-05 +2620734,3.322269615505415e-05,1.1139374593165216e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6382729299601825e-05,7.484878016109257e-05,0.0001098303249361202,0.0001342587779913071,0.00011530229842048207,0.00011002575256056171,0.00010123150946069444,7.875733264992249e-05,6.331855031904438e-05,4.866147848593226e-05,3.224555803284668e-05,1.446164420867063e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4233025430745383e-05,6.390483319236888e-05,9.282812160971014e-05,0.00011471601554715757,0.00013054565312691868,0.0001233148310225834,0.00011393430504939159,0.00010885318681391274,8.833328624755574e-05,6.624996468566681e-05,3.967180776162349e-05,9.966808846516246e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5405591177394356e-05,7.46533525366511e-05,0.00010963489731167871,0.00013523591611351455,0.0001336724951179826,0.00012780966638473775,0.00011764742991378001,0.00010474920670064134,8.383845088540135e-05,6.527282656345934e-05,4.2212366879362924e-05,1.2702795588697178e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.462388067962837e-05,7.367621441444362e-05,0.0001098303249361202,0.00013601762661128055,0.00015556038905543005,0.00014735242882888723,0.00013504048848907307,0.00011491144317159908,9.224183873638564e-05,7.211279341891167e-05,4.279864975268741e-05,1.3093650837580168e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6773584548484818e-05,7.543506303441707e-05,0.0001098303249361202,0.00013484506086463156,0.00013621305423572205,0.00012800509400917923,0.00011549772604492356,0.0001055309171984073,8.676986525202379e-05,6.429568844125186e-05,3.92809525127405e-05,1.3875361335346147e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.306045968409641e-05,6.976766192561371e-05,0.00010357664095399235,0.00012780966638473775,0.0001455935802089138,0.00013914446860234446,0.00012820052163362076,0.00011041660780944467,8.872414149643872e-05,6.781338568119877e-05,3.967180776162349e-05,1.1530229842048205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.227874918633043e-05,6.70316751834328e-05,9.966808846516246e-05,0.00012311940339814186,0.0001342587779913071,0.00012644167301364729,0.00011647486416713104,0.00010142693708513593,8.149331939210344e-05,6.195055694795393e-05,3.205013040840519e-05,5.862828733244851e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.837019669750053e-05,6.29276950701614e-05,9.634581884965703e-05,0.00011960170615819496,0.000137776475231254,0.00012956851500471118,0.00011764742991378001,0.00010377206857843383,8.266588513875238e-05,6.25368398212784e-05,3.419983427726163e-05,7.03539447989382e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9347334819708006e-05 +2620735,3.395955746978442e-05,1.131985248992814e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6668805018644257e-05,7.463428167088214e-05,0.00010955314867371132,0.00013737312513200926,0.0001191462440041589,0.00011492528205876195,0.00010629149626135913,8.000641505593279e-05,6.293070536773611e-05,4.98840957183274e-05,3.2808386030130714e-05,1.419778108906241e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3790876419509988e-05,6.293070536773611e-05,9.324488661195045e-05,0.00011684390112485146,0.0001333440250932213,0.00012931492505443334,0.00012048927735042155,0.00011185549155301873,8.806461513350873e-05,6.676794349991512e-05,3.9523552761444006e-05,1.016868105027443e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5517633578990555e-05,7.348311023122843e-05,0.0001084019772340576,0.00013718126322540033,0.00013679753941218243,0.00013161726793374076,0.00012259975832312002,0.00010705894388779494,8.461110081454761e-05,6.561677206026143e-05,4.182589564075143e-05,1.26628858361908e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4558324045945792e-05,7.214007688496576e-05,0.00010782639151423074,0.00013679753941218243,0.00015828607295238501,0.00015291393956733435,0.00014178594898401516,0.00012010555353720365,9.477978186482203e-05,7.175635307174787e-05,4.240148136057829e-05,1.3430333462626605e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7628114551689014e-05,7.405869595105528e-05,0.0001084019772340576,0.00013622195369235557,0.00013909988229148982,0.0001321928536535676,0.00011722762493806937,0.00010744266770101284,8.576227225420134e-05,6.44656006206077e-05,3.894796704161716e-05,1.3430333462626605e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.283156688646523e-05,6.830283875278675e-05,0.00010245425812918012,0.00012931492505443334,0.00014965228715498215,0.0001448557394897584,0.00013430333462626605,0.00011300666299267245,8.902392466655351e-05,6.753539112635093e-05,3.894796704161716e-05,1.151171439653709e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.168039544681152e-05,6.523304824704352e-05,9.823329618378317e-05,0.00012413465357599164,0.0001348789203460929,0.0001296986488676512,0.00011952996781737679,0.00010187867240935324,7.981455314932381e-05,6.082022439503763e-05,3.1465352683868056e-05,5.563995291659594e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.803501922124144e-05,6.101208630164657e-05,9.458791995821308e-05,0.00012087300116363945,0.0001389080203848809,0.0001337277489064392,0.00012375092976277372,0.00010571591054153228,8.269248174845812e-05,6.216325774130029e-05,3.376769556317547e-05,7.098890544531205e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.89943287542862e-05 +2620736,3.457956899787524e-05,1.145831872118943e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.700889412851794e-05,7.734365136802866e-05,0.00011478780004620124,0.00014241053267764005,0.00012235847491555855,0.00011744776689219163,0.00010803557651407176,8.307281072862336e-05,6.404381713807663e-05,5.053937007381765e-05,3.335189199203352e-05,1.452751123579374e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4758152951141447e-05,6.568071981253225e-05,9.698648346149622e-05,0.0001207215722411029,0.00013668137331704531,0.0001309522139564506,0.00012215386208125158,0.00011581086421773599,9.207577543812933e-05,6.915913799575048e-05,4.092256686139082e-05,1.002602888104075e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5985829956983167e-05,7.672981286510779e-05,0.00011437857437758734,0.00014241053267764005,0.0001403644043345705,0.00013443063213966884,0.0001256322802644698,0.0001104909305257552,8.634661607753461e-05,6.752223532129485e-05,4.358253370738122e-05,1.2890608561338106e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.516737861975535e-05,7.550213585926607e-05,0.00011478780004620124,0.0001430243711805609,0.00016369026744556328,0.000155914979741899,0.00014547972519224437,0.00012460921609293502,9.882799897025882e-05,7.550213585926607e-05,4.460559787891599e-05,1.350444706425897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.782734546574576e-05,7.83667155395634e-05,0.00011581086421773599,0.00014322898401486787,0.00014445666102070955,0.00013627214764843143,0.00012235847491555855,0.00011294628453743865,9.166654976951543e-05,6.854529949282961e-05,4.153640536431168e-05,1.4118285567179832e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.373508877960667e-05,7.181910484174089e-05,0.00010864941501699261,0.0001354536963112036,0.00015448268990175037,0.00014813969203823475,0.00013770443748858008,0.00011785699256080554,9.330345244397107e-05,7.120526633882002e-05,4.133179253000473e-05,1.1662931555496383e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.250741177376495e-05,6.936375083005744e-05,0.00010435254549654658,0.00013013376261922279,0.0001407736300031844,0.00013340756796813408,0.0001233815390870933,0.00010721712517684396,8.430048773446508e-05,6.424842997238358e-05,3.294266632341961e-05,5.933772194901668e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8619767921932822e-05,6.445304280669054e-05,0.00010087412731332835,0.00012624611876739067,0.0001452751123579374,0.000138113663157194,0.00012726918293892546,0.0001104909305257552,8.634661607753461e-05,6.527149414391835e-05,3.51934075007961e-05,6.95683636643644e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.964283209346759e-05 +2620737,1.7060336147037047e-05,5.901954126542545e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3094960718266273e-05,3.541172475925527e-05,5.1918752706928965e-05,6.538258555810415e-05,5.809736093315319e-05,5.652965436829033e-05,5.071991827497501e-05,3.827048378929932e-05,3.163078539693896e-05,2.452999683844246e-05,1.6507027947673682e-05,7.377442658178183e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1619472186630636e-05,3.0247514898530554e-05,4.444909201552356e-05,5.60685642021542e-05,6.436818719260466e-05,6.187830029546951e-05,5.689852650119924e-05,5.265649697274679e-05,4.260473135097902e-05,3.227631162952955e-05,1.9365786977717732e-05,5.348645927179183e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2633870552130138e-05,3.5503942792482506e-05,5.210318877338342e-05,6.565923965778582e-05,6.713472818942147e-05,6.298491669419624e-05,5.809736093315319e-05,5.164209860724728e-05,4.159033298547951e-05,3.218409359630233e-05,2.0380185343217233e-05,6.731916425587593e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2080562352766776e-05,3.485841655989192e-05,5.173431664047451e-05,6.575145769101306e-05,7.644874954537142e-05,7.395886264823628e-05,6.695029212296701e-05,5.57919101024725e-05,4.5924580547159183e-05,3.485841655989192e-05,2.0841275509353368e-05,7.100788558496501e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3556050884402412e-05,3.6057250991845875e-05,5.265649697274679e-05,6.621254785714918e-05,6.796469048846651e-05,6.473705932551355e-05,5.662187240151755e-05,5.1088790407883915e-05,4.159033298547951e-05,3.098525916434837e-05,1.9181350911263275e-05,7.008570525269275e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1619472186630636e-05,3.4305108360528556e-05,5.0812136308202234e-05,6.436818719260466e-05,7.414329871469073e-05,7.183784788401006e-05,6.630476589037642e-05,5.60685642021542e-05,4.555570841425027e-05,3.4305108360528556e-05,2.0011313210308325e-05,6.2708262594514565e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1342818086948955e-05,3.3198491961801825e-05,4.9705519909475504e-05,6.243160849483286e-05,6.888687082073879e-05,6.593589375746751e-05,5.9572849464788825e-05,5.0812136308202234e-05,4.0760370686434465e-05,3.098525916434837e-05,1.6138155814764774e-05,3.043195096498501e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.1295852894955e-06,3.033973293175778e-05,4.684676087943146e-05,5.920397733187991e-05,6.879465278751155e-05,6.602811179069473e-05,5.9572849464788825e-05,5.090435434142946e-05,4.0760370686434465e-05,3.0616387031439456e-05,1.696811811380982e-05,4.057593461998e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.49845742240441e-06 +2620738,9.003874188954655e-05,2.9841411597678284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.945845802907876e-05,0.00019448368248142057,0.0002912110166256191,0.0003709596165849318,0.0003277410204779494,0.0003220814424163208,0.00029584158049422433,0.0002181510089209585,0.00017441790571746444,0.00013325733799652892,9.055324898605822e-05,3.7044510948842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.968282319535657e-05,0.00016309874959420716,0.0002479924205186368,0.0003159073572581804,0.00036272750304074466,0.0003580969391721394,0.0003297990488639962,0.0003004721443628296,0.00023410072891282097,0.00017853396248955798,0.00010547395478489737,2.7783383211631503e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.688592254652029e-05,0.00019396917538490882,0.00029018200243259573,0.0003699306023919084,0.0003709596165849318,0.00036427102433027976,0.00033340059853957806,0.0002906965095291074,0.00023101368633375084,0.0001775049482965346,0.00011216254703954942,3.498648256279523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.328437287093842e-05,0.00018830959732328022,0.0002865804527570139,0.00037044510948842013,0.00042858441139424156,0.00041109117011284393,0.00038896736496284114,0.00032156693531980914,0.00025313749148375366,0.00019036762570932698,0.00011216254703954942,3.6015496755818615e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.100197931861384e-05,0.0001898531186128153,0.00028503693146747874,0.00036375651723376804,0.0003740466591640019,0.0003544953894965576,0.0003256829920919027,0.0002870949598535256,0.00022483960117561052,0.00016978734184885922,0.00010187240510931551,3.498648256279523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.865380900233318e-05,0.0001769904412000229,0.0002716597469581747,0.0003493503185314406,0.00040646060624423866,0.0003992575068930749,0.00036838708110237327,0.0003056172153279466,0.000239245799877938,0.0001800774837790931,0.00010290141930233891,3.087042579070167e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.608127351977471e-05,0.00016772931346281244,0.00025725354825584723,0.00033185707725004297,0.00036375651723376804,0.0003529518682070224,0.0003272265133814377,0.00027063073276515135,0.00021094790956979474,0.00016052621411164869,8.386465673140622e-05,1.2862677412792364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.579113158954081e-05,0.0001584681857256019,0.00025005044890468353,0.0003251684849953909,0.0003791917301291189,0.0003714741236814435,0.00034060369789074186,0.0002870949598535256,0.00022329607988607545,0.00016772931346281244,9.055324898605822e-05,1.9551269667444394e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9392681265122675e-05 +2620739,4.884822125639923e-05,1.6282740418799742e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7292728055960695e-05,0.00010268631457662418,0.00015048403645116537,0.00019119088749816474,0.0001688677756336812,0.00016414052841532,0.00015074666129662984,0.0001118781841678821,9.086819653072114e-05,7.064608342995372e-05,4.7009847338147635e-05,2.0484737946231935e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2565480837599484e-05,8.614094931235993e-05,0.00012947404881400438,0.00016387790356985548,0.00018751413966166153,0.0001822616427523713,0.00016913040047914572,0.00015494865882406206,0.0001229084276773916,9.323182013990175e-05,5.567646723847654e-05,1.4969616191477183e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.571697898317363e-05,0.00010163581519476613,0.00015022141160570085,0.00019145351234362923,0.0001940797607982743,0.00018725151481619704,0.00017201927377925532,0.00014969616191477182,0.00012001955437728196,9.24439456035082e-05,5.8565340538586166e-05,1.8646364027980347e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4141229910386563e-05,9.979744127651455e-05,0.00014917091222384278,0.0001909282626527002,0.00022218061926297707,0.00021587762297182883,0.0001995948825530291,0.00016545365264264254,0.000132362922114114,0.00010058531581290807,5.961583992044421e-05,1.995948825530291e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.860585228328326e-05,0.00010242368973115966,0.00015048403645116537,0.0001906656378072357,0.00019565550987106142,0.00018567576574340998,0.00016414052841532,0.0001452315395418751,0.00011713068107717233,8.824194807607602e-05,5.3838093320224956e-05,1.9171613718909375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.204023114667046e-05,9.480756921268884e-05,0.000142080041396301,0.00018094851852504877,0.00020957462668068054,0.00020353425523499677,0.00018803938935259054,0.00015678703274231364,0.00012448417675017866,9.375706983083076e-05,5.410071816568946e-05,1.6807990109728763e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.046448207388339e-05,9.034294683979211e-05,0.0001363022947960817,0.00017385764769750696,0.00019040301296177118,0.00018383739182515835,0.00016860515078821666,0.00014155479170537192,0.0001118781841678821,8.535307477596638e-05,4.438359888350252e-05,7.878745363935359e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.521198516459315e-05,8.456520023957286e-05,0.00013131242273225596,0.00016860515078821666,0.00019539288502559693,0.00018908988873444864,0.0001735950228520424,0.0001468072886146622,0.00011581755684984977,8.719144869421798e-05,4.7797721874541185e-05,1.0767618664044992e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6525109391915713e-05 +2620740,3.796217973835035e-05,1.2724752984921906e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9479011081735742e-05,8.186257753633093e-05,0.00012109723257317347,0.00015375743190113966,0.0001348823816401722,0.00013148911417752636,0.00012109723257317347,9.013366697653014e-05,7.189485436480876e-05,5.5776833917241016e-05,3.732594208910425e-05,1.590594123115238e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5661585186259178e-05,6.871366611857828e-05,0.00010370673682711352,0.000131277034961111,0.00015015208522207847,0.00014675881775943263,0.00013636693615507974,0.0001251267376850654,9.798059798389869e-05,7.443980496179314e-05,4.4112477014395933e-05,1.1664356902845079e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.820653578324356e-05,8.101426067066946e-05,0.000120248915707512,0.00015354535268472433,0.00015460574876680113,0.00015078832287132457,0.00013806356988640267,0.000120248915707512,9.543564738691428e-05,7.380356731254705e-05,4.6657427611380316e-05,1.463346593266019e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6934060484751366e-05,7.889346850651581e-05,0.00011897644040901981,0.00015290911503547822,0.0001779344625724913,0.00017242040294569182,0.00016181644212492357,0.00013445822320734148,0.00010625168742409792,8.059010223783873e-05,4.771782369345714e-05,1.5481782798321653e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0751486380227934e-05,8.165049831991556e-05,0.00012109723257317347,0.0001543936695503858,0.00015948357074435453,0.00015078832287132457,0.00013573069850583366,0.0001215213910060042,9.628396425257575e-05,7.253109201405486e-05,4.368831858156521e-05,1.5269703581906287e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544950596984381e-05,7.613643869311606e-05,0.00011515901451354321,0.00014739505540867874,0.00017114792764719964,0.00016690634331889234,0.0001543936695503858,0.00012830792593129586,0.00010073762779729842,7.59243594767007e-05,4.347623936514985e-05,1.3148911417752635e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.417703067135162e-05,7.189485436480876e-05,0.00010943287567032838,0.00013997228283414096,0.00015290911503547822,0.00014803129305792484,0.00013636693615507974,0.0001140986184314664,8.907327089445333e-05,6.786534925291683e-05,3.520514992495061e-05,5.938218059630222e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9723367126628954e-05,6.74411908200861e-05,0.00010497921212560574,0.000135942777722249,0.00015736277858020088,0.00015290911503547822,0.00014082059969980243,0.00011918851962543518,9.267861757351454e-05,6.977406220065511e-05,3.775010052193498e-05,8.271089440199238e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0783763208705775e-05 +2620741,6.653611669232587e-05,2.230690617430579e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1536645299258204e-05,0.0001434564828106217,0.00021691543245359424,0.00027806712351763943,0.00024768357890091257,0.0002449913660867722,0.0002222998580818749,0.00016230197250960418,0.00013114922423169438,9.999647595378459e-05,6.884372767587475e-05,2.7691331802586494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3460006856837134e-05,0.00012038037297513295,0.00018345507319213552,0.00023691472764435112,0.0002742211052117246,0.00027152889239758426,0.000248837384392687,0.0002222998580818749,0.0001734554255967571,0.00013307223338465175,7.92279771018447e-05,2.115310068253135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9613636146300805e-05,0.0001434564828106217,0.00021653083062300274,0.0002765287161952735,0.0002765287161952735,0.0002676828740916695,0.0002511449953762359,0.00021614622879241127,0.0001734554255967571,0.00013191842789287732,8.384319906894245e-05,2.6537526310812058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7306025162751925e-05,0.00013961046450470694,0.00021422321963945388,0.00027806712351763943,0.000322680935866251,0.00030998907545673216,0.0002876821692824264,0.0002407607459502659,0.0001896087024815992,0.00014268727914943874,8.422780089953393e-05,2.8075933633177976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345965445221559e-05,0.0001415334736576643,0.00021422321963945388,0.0002749903088729076,0.0002857591601294689,0.0002742211052117246,0.00024999118988446137,0.00021537702513122828,0.00016845560179906785,0.00012845701141755403,7.615116245711285e-05,2.615292448022058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4229210518020096e-05,0.00013230302972346881,0.00020460817387466692,0.00026422145761634616,0.0003092198717955492,0.0003022970388449026,0.0002796055308400053,0.00022883808920193008,0.0001799936567168122,0.00013499524253760917,7.768956977947879e-05,2.3845313496671706e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.153699770387974e-05,0.00012384178945045628,0.0001915317116345566,0.0002484527825620955,0.0002722980960587672,0.000268067475922261,0.0002465297734091381,0.0002003775537381606,0.000157302148711915,0.00011922656748335852,6.230549655581961e-05,9.230443934195497e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4229562922641633e-05,0.00011730355833040112,0.0001861472860062759,0.00024268375510322338,0.00028152853999296274,0.00027806712351763943,0.0002542218100209677,0.00021345401597827095,0.00016691719447670193,0.00012499559494223069,6.730532035350884e-05,1.5384073223659165e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.692177573678199e-05 +2620742,3.5462631157856014e-05,1.130970399088381e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7411655435531945e-05,7.495075017687406e-05,0.0001067712732698692,0.00012996575094608852,0.00011386379950144041,0.00010868817225137492,9.354467029747966e-05,7.035019262126031e-05,6.249090679708682e-05,4.753909474134211e-05,3.3162352380049136e-05,1.4760122157594123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.396123726882163e-05,6.364104618599025e-05,9.028594202891991e-05,0.00010983831164027836,0.0001242150540015713,0.00010811310255692319,0.00010312916520500828,9.910367734384626e-05,8.587707437145672e-05,6.517456537119483e-05,3.948811901901805e-05,9.967874703829797e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7028275639230796e-05,7.648426936207864e-05,0.00010811310255692319,0.0001309242004368414,0.00013188264992759424,0.00012268153481636676,0.00010907155204767606,9.776184805679225e-05,8.376848549180042e-05,6.402442598229139e-05,4.140501800052378e-05,1.2459843379787247e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.587813625032736e-05,7.552581987132578e-05,0.00010715465306617034,0.00013073251053869083,0.00014798460137224238,0.00013897517615916544,0.00012191477522376444,0.00010638789347356806,9.162777131597391e-05,6.920005323235686e-05,4.2555157389427224e-05,1.4185052463142404e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8561794824435384e-05,7.629257946392807e-05,0.00010792141265877263,0.00013111589033499196,0.0001301574408442391,0.00011980618634410816,0.0001058128237791163,9.469480968638306e-05,8.3960175389951e-05,6.344935628783968e-05,3.948811901901805e-05,1.4376742361292978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4919686759574495e-05,7.418399058427176e-05,0.00010485437428836344,0.0001270904024738299,0.0001428089741221769,0.0001349496882980034,0.00011769759746445184,0.00010562113388096573,9.009425213076931e-05,6.689977445455e-05,3.987149881531919e-05,1.1884773685335528e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4344617065122773e-05,7.188371180646489e-05,0.00010312916520500828,0.00012479012369602305,0.00013590813778875628,0.00012613195298307706,0.00011098845102918178,0.0001004455066309003,8.626045416775786e-05,6.421611588044197e-05,3.354573217635028e-05,5.942386842667764e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9744059509509024e-05,6.670808455639942e-05,9.776184805679225e-05,0.00011884773685335528,0.0001349496882980034,0.0001259402630849265,0.00011060507123288064,9.872029754754512e-05,8.415186528810156e-05,6.210752700078566e-05,3.584601095415716e-05,8.050975722324067e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0510819102111315e-05 +2620743,7.575962449643432e-05,2.441143455996217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7240605175083705e-05,0.00015909521144251207,0.00023232951512239854,0.00028241504465059686,0.0002474814400216854,0.00023527572274170436,0.00020328832573209875,0.00015151924899286864,0.0001304749088549702,0.00010017105905639649,7.070898286333869e-05,3.0724736601331694e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0927303133714184e-05,0.0001359464372908238,0.00019697502369072918,0.0002411681379803159,0.00027525996900371134,0.00023527572274170436,0.00022727887348930294,0.00022180734505344933,0.00019024083484660167,0.00014268062613495127,8.670268136814149e-05,2.146522694065639e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6819718372325736e-05,0.00016625028708939753,0.0002382219303610101,0.0002874656862836924,0.00028704479948093444,0.0002643169121320041,0.00023906370396652602,0.00021675670342035373,0.0001814022119886844,0.0001397344185156455,9.04906625929632e-05,2.735764217926795e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.429439755577792e-05,0.00016330407947009172,0.0002344339491361884,0.00028620302587541846,0.00032408283812363566,0.00030051317716918945,0.00026852578015958383,0.00023695926995273624,0.00020286743892934078,0.00015362368300665845,9.385775701502695e-05,3.030384979857372e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9765925991631505e-05,0.00016372496627284968,0.00023527572274170436,0.00028704479948093444,0.00028788657308645037,0.0002638960253292462,0.00023232951512239854,0.00021254783539277402,0.00018981994804384374,0.00014268062613495127,8.79653417764154e-05,3.114562340408966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2610850344746046e-05,0.00015993698504802802,0.00022980419430585077,0.00027694351621474324,0.00030935180002710676,0.00029251632791678806,0.00025758272328787666,0.00023106685471412468,0.00019781679729624513,0.00014688949416253097,8.79653417764154e-05,2.5674094968236073e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1348189936472146e-05,0.00015362368300665845,0.00022307000546172324,0.0002706302141733737,0.00029504164873333583,0.0002697884405678577,0.00024032636437479996,0.00021970291103965952,0.00018729462722729594,0.0001397344185156455,7.281341687712853e-05,1.3047490885497021e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.082601986752293e-05,0.00014352239974046722,0.00021296872219553199,0.00025884538369615054,0.00029672519594436774,0.0002739973085954374,0.00024200991158583184,0.0002171775902231117,0.0001843484196079902,0.00013720909769909768,7.828494531298212e-05,1.6414585307560766e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.250956707855481e-05 +2620744,2.9489141110487453e-05,9.174399456596094e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3099827203215167e-05,6.356548194927294e-05,9.010570894871165e-05,0.0001087821649853537,9.403759443010996e-05,8.912273757836207e-05,7.716325257244216e-05,5.832296797407517e-05,5.209748262852782e-05,3.94826833757082e-05,2.7687026931513214e-05,1.212331356764484e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0314741653891352e-05,5.373576824577714e-05,7.601645264036765e-05,9.223548025113575e-05,0.00010370347957188087,8.977805182526178e-05,8.568233778213853e-05,8.371639504143936e-05,7.25760528441441e-05,5.455491105440178e-05,3.325719803016084e-05,8.027599524521583e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2772170079765303e-05,6.471228188134746e-05,9.125250888078617e-05,0.00010960130779397833,0.00010910982210880356,0.00010108222258428197,9.010570894871165e-05,8.207810942419007e-05,7.044628154172e-05,5.3408111122327276e-05,3.489548364741015e-05,9.993542265220746e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.178919870941573e-05,6.372931051099787e-05,9.026953751043656e-05,0.00010960130779397833,0.0001228714212936977,0.00011467999320745118,0.00010140987970773185,8.961422326353684e-05,7.732708113416709e-05,5.8159139412350245e-05,3.587845501775973e-05,1.1467999320745117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3918970011839824e-05,6.43846247578976e-05,9.076102319561136e-05,0.00010992896491742821,0.00010861833642362875,9.977159409048251e-05,8.764828052283769e-05,8.027599524521582e-05,7.061011010344495e-05,5.3080453998877405e-05,3.325719803016084e-05,1.1795656444194978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.097005590079107e-05,6.258251057892337e-05,8.813976620801249e-05,0.00010566942231258003,0.00011779273588022487,0.00011025662204087806,9.583970860908421e-05,8.715679483766292e-05,7.454199558484326e-05,5.4882568177851645e-05,3.309336946843592e-05,9.502056580045956e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.015091309216642e-05,5.963359646787462e-05,8.551850922041362e-05,0.00010304816532498114,0.00011123959341122764,0.00010304816532498114,9.076102319561136e-05,8.371639504143936e-05,7.175691003551946e-05,5.3080453998877405e-05,2.7850855493238146e-05,4.751028290022978e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6382856172493027e-05,5.6029368109926155e-05,8.17504523007402e-05,9.911627984358279e-05,0.00011156725053467749,0.00010419496525705564,9.141633744251109e-05,8.256959510936484e-05,7.093776722689481e-05,5.1933654066802895e-05,3.014445535738717e-05,6.225485345547351e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.720199898111768e-05 +2620745,6.359506618808883e-05,2.249825454767293e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.589643927725278e-05,0.00011969071419362002,0.0001751864087445466,0.00021928298765798549,0.00020578403492938174,0.00020218431420175408,0.00017068675783501197,0.0001361894341952468,0.00011579101673869003,8.849313455418021e-05,5.8495461823949615e-05,2.969769600292827e-05,5.999534546046114e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.929695127660206e-05,0.00010529183128310932,0.0001514882472876644,0.0001895852916550572,0.00022168280147640392,0.00020728391856589327,0.0001889853382004526,0.0001709867345623143,0.0001454887127416183,0.00011249127273836465,6.80947170976234e-05,2.0998370911161405e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.499650909534586e-05,0.00012419036510315457,0.00017968605965408115,0.00022258273165831087,0.00023878147493263543,0.0002291822196589616,0.0002009844072925449,0.0001733865483807327,0.00014788852656003672,0.0001133912029202716,6.959460073413493e-05,2.6097975275300604e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349662545883433e-05,0.00012239050473934074,0.000177586222562965,0.0002231826851129155,0.00026367954329872676,0.00025588014838886684,0.00022168280147640392,0.00018118594329059268,0.00015508796801529207,0.00011939073746631772,7.199441455255339e-05,2.9097742548323657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1999069092092228e-06,4.7096346186462e-05,0.0001244903418304569,0.00017938608292677885,0.00022288270838561315,0.0002267824058405432,0.00021718315056686938,0.0001859855709274296,0.00015508796801529207,0.0001364894109225491,0.00010559180801041162,6.299511273348421e-05,2.7297882184509826e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.079683491311359e-05,0.00011759087710250386,0.0001724866181988258,0.00021628322038496245,0.00025198045093393685,0.00024328112584216997,0.0002120835462027302,0.00017608633892645347,0.00014998836365115288,0.0001136911796475739,6.839469382492572e-05,2.399813818418446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.899697454929976e-05,0.00011309122619296927,0.00016708703710738434,0.00020818384874780017,0.0002381815214780308,0.0002264824291132409,0.00019618477965570796,0.00017128671128961663,0.0001457886894689206,0.00011069141237455084,5.7595531642042706e-05,1.2599022546696842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.179753309404441e-05,0.00010529183128310932,0.00015838771201561746,0.0001988845702014287,0.00023458180075040311,0.00022468256874942698,0.00019528484947380103,0.00016918687419850044,0.00014068908510478142,0.00010739166837422545,6.269513600618191e-05,1.889853382004526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3597393457858244e-05 +2620746,8.740765094235716e-05,3.0289780029529704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533938263512837e-05,0.00017308445731159834,0.00025227059653165455,0.0003137155788772719,0.00028515664342085826,0.0002734734425523253,0.00023755841766016873,0.0001886620584696422,0.00016096854529978647,0.0001228899646912348,8.178240607973022e-05,4.024213632494662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.581973748299046e-05,0.00015015076671781152,0.00021635557163949791,0.00026784819768969843,0.000308090334014645,0.00028558935456413727,0.00026049210825395547,0.00023885655109000568,0.00020726863763063897,0.00015880498958339146,9.606187380793709e-05,2.8126224313134732e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.404124920529138e-05,0.00017914241331750425,0.0002587612636808395,0.0003176099791667829,0.0003327548691815478,0.0003176099791667829,0.0002786659762716733,0.00024231824023623763,0.00020683592648736,0.00015837227844011249,9.865814066761105e-05,3.461689146231966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.14449823456174e-05,0.0001774115687443883,0.00025529957453460756,0.0003158791345936669,0.00037040073864682047,0.0003548231374887766,0.00030592677829825,0.0002561649968211655,0.0002193845496424509,0.00016789192359225035,0.000102552540957122,3.937671403838862e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.327111432789958e-07,6.663751606496536e-05,0.00017914241331750425,0.0002583285525375605,0.0003180426903100619,0.00032107166831301493,0.00030592677829825,0.0002630883751136295,0.00022371166107524083,0.00019688357019194305,0.00015101618900436955,9.086934008858913e-05,3.678044717871464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.841600434266443e-05,0.00017005547930864533,0.00024924161852870155,0.000311119312017598,0.0003578521154917296,0.0003457362034799177,0.0003020323780087391,0.0002574631302510025,0.0002193845496424509,0.0001661610790191344,9.865814066761105e-05,3.2886046889203684e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.711787091282745e-05,0.00016789192359225035,0.0002453472182391906,0.000304195933725134,0.00034097638090384866,0.0003236679351726889,0.0002790986874149523,0.0002466453516690276,0.00020899948220375498,0.00015880498958339146,8.221511722300921e-05,1.6443023444601842e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.586738118757356e-05,0.0001544778781506015,0.00023020232822442582,0.0002868874879939742,0.0003344857137546638,0.00031198473430415596,0.0002743388648388834,0.00024058739566312163,0.0001981817036217801,0.00014971805557453254,8.740765094235716e-05,2.423182402362377e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.803093690396854e-05 +2620747,0.00010716850399970443,3.5164665374903006e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.03763779997783e-05,0.00021880236233272983,0.0003181564962491225,0.0003912766734572542,0.00034606496083237887,0.0003354597442907414,0.0002868990159158754,0.00022103503949939037,0.00019201023633280375,0.0001456821851245982,9.991230320805774e-05,4.632805120820556e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032933074980601e-05,0.0001892193898744781,0.000271828445040917,0.00033266889783241583,0.00037620610258229576,0.0003287617127907599,0.0003142493112074666,0.00029750423245751285,0.0002578742127492888,0.00019591742137445965,0.00011833188983300696,3.1257480333247124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.926003941644806e-05,0.00022661673241604165,0.0003248545277491041,0.00039574202779057516,0.000403556397873887,0.000377322441165626,0.0003337852364157461,0.0002947133859991872,0.0002511761812493072,0.000193126574916134,0.00012279724416632798,3.963001970822403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.646919295812242e-05,0.00022550039383271143,0.0003215055119991132,0.0003929511813322495,0.000452117126248753,0.00042420866166549667,0.0003689499017906491,0.00031927283483245274,0.0002746192914992426,0.00020819714579109247,0.00012670442920798388,4.465354333321018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.316722445810396e-05,0.00022661673241604165,0.0003248545277491041,0.00039518385849891005,0.00039406751991557983,0.00036783356320731886,0.0003215055119991132,0.0002779683072492333,0.0002511761812493072,0.00018977755916614326,0.00011554104337468131,4.297903545821479e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.20038386248014e-05,0.0002160115158744042,0.0003131329726241364,0.0003840204726656075,0.0004320230317488084,0.0004119289372488639,0.0003611355317073373,0.00031536564979079687,0.00026903759858259134,0.00020261545287444117,0.00011944822841633724,3.739734254156353e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032933074980601e-05,0.00021154616154108323,0.0003058767718324897,0.0003745315947073004,0.0004119289372488639,0.0003834623033739424,0.00033490157499907626,0.00029973690962417334,0.00025731604345762357,0.0001942429134994643,0.00010047047249972292,1.84195866249492e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.693326774984297e-05,0.00019647559066612475,0.00029024803166586617,0.0003566701773740163,0.0004091380907905383,0.00038067145691561674,0.0003337852364157461,0.000298620571040843,0.0002483853347909816,0.00018531220483282223,0.00010716850399970443,2.6233956708260978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.916594491650348e-05 +2620748,8.139973082186202e-05,2.728232736337134e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.350968009178246e-05,0.0001690609793992519,0.00024688270007509796,0.00030457811367960453,0.0002679035096829415,0.00025940573558615366,0.00022183662905298664,0.00017353349208177178,0.00014535666218189644,0.00011270731959950125,7.737446940759412e-05,3.488559892365515e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.635365979975062e-05,0.00014625116471840045,0.00021154984988319087,0.0002585112330496497,0.00029294958070505287,0.00026477275080517756,0.00024419919246558607,0.00023212340822278241,0.00019902681437213517,0.0001520654312056763,9.123925872340578e-05,2.4151568485607414e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.127342375052251e-05,0.00017532249715477972,0.0002504607102211139,0.0003081561238256205,0.0003121813852398884,0.0002848990578765171,0.00025806398178139777,0.0002294399006132704,0.00019097629154359936,0.00014804016979140844,9.48172688694217e-05,3.1307588777639236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.948441867751457e-05,0.0001730862408135198,0.000250013458952862,0.00030457811367960453,0.00035422300445557537,0.00031978465680017223,0.0002853463091447691,0.0002509079614893659,0.0002142333574927028,0.00016235221037547205,9.794802774718563e-05,3.3543845118899186e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.485143389653842e-05,0.00017398074335002377,0.0002518024640258699,0.00030770887255736855,0.0003081561238256205,0.00028221555026700524,0.0002509079614893659,0.00021691686510221474,0.00019679055803087522,0.00014804016979140844,8.989750491864982e-05,3.399109638715118e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.680091106800262e-05,0.000164588466716732,0.00024106843358782213,0.0002987638471923287,0.0003336494461159839,0.00031665389792240827,0.00028311005280350917,0.0002526969665623738,0.0002151278600292068,0.00016235221037547205,9.660627394242966e-05,2.9518583704631285e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.590640853149864e-05,0.00016414121544848,0.0002388321772465622,0.0002956330883145648,0.00032157366187318025,0.00029965834972883276,0.0002665617558781855,0.00023435966456404234,0.00020126307071339507,0.00015161817993742432,7.737446940759412e-05,1.4759291852315643e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.472512682519892e-05,0.00015072367740092036,0.00022452013666249854,0.00027729578631623326,0.00031978465680017223,0.0002920550781685489,0.00026208924319566566,0.00023257065949103438,0.00019097629154359936,0.00014222590330413253,8.095247955361005e-05,1.9231804534835534e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.696138316645886e-05 +2620749,7.534102610960926e-05,2.6721940295033825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.641298506729364e-05,0.00014585725744372633,0.00021154869400235113,0.0002672194029503383,0.00024866249996767596,0.00023455925370085247,0.00020598162310755247,0.0001629296081877757,0.00013843449625066136,0.00010651662312048205,7.125850745342353e-05,3.4144701488098787e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.824794775492219e-05,0.0001247023880434912,0.00018037309699147836,0.00022713649250778753,0.0002664771268310317,0.0002546007089221278,0.000229363320865707,0.00020635276116720563,0.00017480602609667962,0.00013435197759447564,8.127923506406124e-05,2.4866249996767593e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4928432828680645e-05,0.00014771294774199256,0.0002130332462409641,0.00026944623130825777,0.0002872608581716136,0.00027352874996444345,0.00024420884325183695,0.00020857958952512514,0.00017740399251425234,0.00013583652983308864,8.42483395412872e-05,3.080445895121955e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.307274253041441e-05,0.00014622839550337957,0.0002130332462409641,0.000268332817129298,0.00032029214548075273,0.00030767345145254224,0.00026462143653276554,0.00021934259325506934,0.00018779585818454327,0.00014400156714546006,8.64751678992067e-05,3.377356342844553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1134141789597427e-06,5.826867536555987e-05,0.0001480840858016458,0.00021451779847957706,0.00027018850742756425,0.00027798240668028246,0.00026573485071172524,0.00022862104474640052,0.0001941052051986485,0.0001655275746053484,0.0001269292164014107,7.682557834822224e-05,3.2660149249485786e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.084591417249492e-05,0.0001410324626682341,0.00020635276116720563,0.0002605389178765798,0.00030433320891566304,0.00029468361936467864,0.0002586832275783136,0.0002156312126585369,0.0001825999253493978,0.0001388056343103146,8.27637873026742e-05,2.8577630593300065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.824794775492219e-05,0.00013509425371378213,0.00019818772385483423,0.00025051819026594214,0.0002857763059330006,0.0002738998880240968,0.00024123973877461093,0.00020561048504789918,0.00017406374997737314,0.0001317540111769029,6.828940297619757e-05,1.4474384326476657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9711772382897495e-05,0.00012581580222245094,0.00018853813430384978,0.0002401263245956512,0.00028651858205230716,0.00026944623130825777,0.00023975518653599794,0.00020301251863032643,0.00016886781714222764,0.00012804263058037042,7.348533581134303e-05,2.152600745988836e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.230973880047023e-05 +2620750,8.660371373511619e-05,2.9742689565595465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.56088740417547e-05,0.00017364481996384412,0.0002532502538011731,0.00031579738038764595,0.00028299294336676863,0.0002689963835711942,0.00023444237657587014,0.00018676659477219503,0.00015789869019382298,0.00012115772073044034,8.179239630538753e-05,3.892793193144111e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.642363167590904e-05,0.00014958823281520072,0.0002169466768314022,0.00026812159858397087,0.0003066121380218003,0.00028474251334121534,0.0002589363562181252,0.0002392536940055988,0.00020557447199749803,0.00015789869019382298,9.491417111373846e-05,2.7118334603925276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.29845190800845e-05,0.00017845613739357277,0.0002571867862436784,0.00031842173534931615,0.0003306687251704437,0.0003127356329323641,0.0002768694484562048,0.00023969108649921048,0.00020338750952943958,0.00015614912021937616,9.797591856902034e-05,3.367922200810074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.123494910563771e-05,0.0001775813524063494,0.0002558746087628433,0.00031535998789403424,0.0003709088345827199,0.00035035138738297004,0.00030180082059207163,0.0002558746087628433,0.00021957103179307233,0.00016752132505328034,0.00010191245101152565,3.7615754450606025e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692105152258979e-05,0.00017801874489996108,0.0002584989637245135,0.00031754695036209277,0.0003188591278429278,0.0003009260356048482,0.00026024853369896033,0.0002226327792483543,0.0001950770521508173,0.0001487134478279773,8.966546119039809e-05,3.630357696977093e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.773580915674414e-05,0.00016752132505328034,0.00024450240392893924,0.00030486256804735355,0.0003451026774596297,0.0003324182951448905,0.00029217818573261427,0.00025018850634589125,0.00021257275189528522,0.00016139783014271656,9.578895610096187e-05,3.149225954004225e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5111454195073934e-05,0.00016271000762355166,0.00023706673153754026,0.0002961147181751195,0.0003284817627023852,0.0003114234554515289,0.00027249552352008783,0.0002392536940055988,0.0002038249020230513,0.00015439955024492937,7.960543383732904e-05,1.5746129770021126e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.548881933561658e-05,0.00015264998027048258,0.0002265693116908596,0.0002834303358603803,0.0003315435101576671,0.0003031129980729068,0.00027293291601369955,0.0002366293390439286,0.000195514444644429,0.00014740127034714224,8.52915362542811e-05,2.274440966780829e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.811317429728678e-05 +2620751,2.996449592552079e-05,1.013724240266375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2361564123522975e-05,5.9034529286100656e-05,8.586840623432824e-05,0.00010539750556887163,9.585657154283517e-05,9.24277983772283e-05,8.065070793883953e-05,6.320868792249162e-05,5.486037064970971e-05,4.1592509269752736e-05,2.7430185324854855e-05,1.3715092662427427e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.893279095791612e-05,5.128252038994603e-05,7.349500741931218e-05,9.063887324734647e-05,0.00010405581172146026,9.61547257311488e-05,8.706102298758281e-05,8.154517050378045e-05,7.081161972448943e-05,5.351867680229832e-05,3.2647883620343556e-05,9.242779837722832e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.206340993520934e-05,6.127068569845296e-05,8.795548555252372e-05,0.0001065901223221262,0.0001119568977117717,0.00010703735360459664,9.302410675385559e-05,8.303594144534866e-05,7.066254263033259e-05,5.381683099061197e-05,3.369142327944128e-05,1.1628013344231949e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.10198702761116e-05,6.022714603935523e-05,8.631563751679869e-05,0.000106739199416283,0.0001240321423384741,0.00011926167532545588,0.0001036085804389898,8.631563751679869e-05,7.43894699842531e-05,5.6798372873748365e-05,3.473496293853903e-05,1.3267861379956966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2659718311836618e-05,6.0972531510139325e-05,8.721010008173962e-05,0.00010703735360459664,0.00010808089326369439,0.00010286319496820569,8.840271683499417e-05,7.543300964335084e-05,6.619022980562802e-05,5.098436620163239e-05,3.115711267877535e-05,1.2522475909172869e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.967817642870022e-05,5.799098962700292e-05,8.49739436693873e-05,0.00010524842847471481,0.00012149783173780816,0.00011657828763063313,0.00010181965530910796,8.735917717589645e-05,7.453854707840993e-05,5.650021868543472e-05,3.384050037359811e-05,1.1329859155918309e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.967817642870022e-05,5.8140066721159734e-05,8.571932914017143e-05,0.00010509935138055798,0.00011881444404298541,0.0001119568977117717,9.585657154283517e-05,8.571932914017143e-05,7.230239066605764e-05,5.500944774386653e-05,2.862280207810941e-05,5.6649295779591545e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5653094886466086e-05,5.322052261398469e-05,7.975624537389862e-05,9.809272795518746e-05,0.00011285136027671263,0.00010733550779291032,9.257687547138513e-05,8.243963306872137e-05,6.797915493550985e-05,5.113344329578921e-05,2.996449592552079e-05,8.199240178625092e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6249403263093365e-05 +2620752,4.6329115423244004e-05,1.6417599154838897e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.440948863959385e-05,8.905985294953703e-05,0.0001304411987644734,0.00016440089016694836,0.0001515816689090605,0.0001466338993007529,0.00012684282086752242,0.00010142927697030606,8.478677919690772e-05,6.52205993822367e-05,4.340543338197132e-05,2.136536876314651e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9236820412726804e-05,7.73651247844463e-05,0.00011222441066115902,0.00014033673798108864,0.00016237680259991347,0.0001529310606204171,0.00013921224488829147,0.00012526853053760638,0.00010750153967141084,8.321248886699166e-05,5.015239193875443e-05,1.5518004680601148e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3509894165356104e-05,9.243333222792857e-05,0.00013336488080574607,0.00016687477497110217,0.0001778948072805146,0.00016979845701237491,0.0001500073785791444,0.0001272926181046413,0.00010817623552708917,8.366228610411054e-05,5.150178365011106e-05,1.911638257755214e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2385401072558915e-05,9.153373775369084e-05,0.0001326901849500678,0.00016530048464118613,0.00019701118985806677,0.00018913973820848642,0.00016125230950711627,0.00013493917113566216,0.00011492319408387226,8.83851570938587e-05,5.330097259858654e-05,2.1140470144587067e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.995944742377476e-07,3.508418449527216e-05,9.220843360936915e-05,0.00013403957666142442,0.00016709967358966162,0.00016979845701237491,0.0001626017012184729,0.00013966204212541034,0.00011717218026946664,0.00010165417558886548,7.826471925868405e-05,4.655401404180344e-05,1.9791078433230448e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.081111074264286e-05,8.793535985673984e-05,0.00012909180705311676,0.00016237680259991347,0.0001864409547857732,0.00018126828655890613,0.00015832862746584359,0.00013224038771294893,0.00011267420789827791,8.591127228970491e-05,5.150178365011106e-05,1.7766990866195516e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.946171903128624e-05,8.456188057834827e-05,0.0001243689360633686,0.0001560796412802492,0.00017699521280627688,0.000169348659775256,0.00014753349377499063,0.00012751751672320072,0.00010885093138276749,8.231289439275393e-05,4.2505838907733584e-05,8.995944742377476e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.406415218585975e-05,7.893941511436236e-05,0.00011784687612514496,0.0001493326827234661,0.00017699521280627688,0.00016597518049686445,0.0001466338993007529,0.0001248187333004875,0.00010300356730022211,7.826471925868405e-05,4.5654419567565695e-05,1.3493917113566216e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541354389721637e-05 +2620753,2.760744143256053e-05,9.649202830797856e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.050455601544545e-05,5.360668239332142e-05,7.786370617629939e-05,9.541989466011212e-05,8.871905936094697e-05,8.590470853529758e-05,7.504935535065e-05,5.883333392667027e-05,5.079233156767205e-05,3.8596811323191424e-05,2.546317413682768e-05,1.2865603774397142e-05,1.3401670598330355e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7154138365862854e-05,4.636978027022303e-05,6.647228616771857e-05,8.242027417973168e-05,9.595596148404533e-05,8.952315959684677e-05,8.054404029596544e-05,7.411123840876687e-05,6.432801887198572e-05,4.87820809779225e-05,2.988572543427669e-05,8.845102594898035e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0370539309462143e-05,5.521488286512106e-05,7.93378899421157e-05,9.649202830797858e-05,0.00010319286360714373,9.890432901567804e-05,8.603872524128088e-05,7.638952241048303e-05,6.513211910788553e-05,4.958618121382232e-05,3.082384237615982e-05,1.1123386596614195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9298405661595712e-05,5.414274921725464e-05,7.772968947031606e-05,9.729612854387838e-05,0.00011351214996785811,0.00011016173231827554,9.635801160199527e-05,7.839977300023258e-05,6.754441981558498e-05,5.173044850955518e-05,3.176195931804294e-05,1.273158706841384e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.020501179499107e-07,2.0772589427412054e-05,5.4812832747171163e-05,7.86678064121992e-05,9.716211183789507e-05,9.917236242764464e-05,9.501784454216223e-05,8.148215723784857e-05,6.848253675746812e-05,5.963743416257009e-05,4.623576356423973e-05,2.814350825649375e-05,1.1927486832514015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8226272013729288e-05,5.2266515333488384e-05,7.719362264638285e-05,9.595596148404533e-05,0.000112574033025975,0.0001084195151404926,9.474981113019563e-05,7.973994006006563e-05,6.76784365215683e-05,5.1328398391605255e-05,3.095785908214313e-05,1.0721336478664284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.795823860176268e-05,5.186446521553847e-05,7.679157252843295e-05,9.367767748232919e-05,0.00010707934808065955,0.0001015846631353441,8.737889230111393e-05,7.705960594039955e-05,6.526613581386884e-05,4.958618121382232e-05,2.586522425477759e-05,5.360668239332142e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4339787540213482e-05,4.7173880506122844e-05,7.116287087713418e-05,8.778094241906382e-05,0.00010238876337124393,9.877031230969473e-05,8.496659159341446e-05,7.478132193868338e-05,6.204973487026955e-05,4.703986380013955e-05,2.760744143256053e-05,8.041002358998215e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4875854364146698e-05 +2620754,3.634208864176619e-05,1.2702089234015366e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7168357528310646e-05,7.109641612928046e-05,0.0001024988034022629,0.0001243746237497338,0.00011590656426039023,0.0001122017882338024,9.791193784553514e-05,7.674178912217618e-05,6.668596847858069e-05,5.080835693606146e-05,3.3166566333262344e-05,1.6936118978687154e-05,3.528358120559824e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2581491971582873e-05,6.121701339171294e-05,8.732686348385565e-05,0.00010779134058310263,0.00012525671327987375,0.00011696507169655816,0.00010426298246254281,9.614775878525521e-05,8.379850536329583e-05,6.351044617007684e-05,3.898835723218606e-05,1.1467163891819428e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6991939622282656e-05,7.286059518956036e-05,0.00010408656455651481,0.00012560954909192972,0.0001347832802053853,0.00012896148930646156,0.00011149611660969043,0.00010002895271787101,8.538626651754776e-05,6.492178941830077e-05,4.0223282574381995e-05,1.446626829429528e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.558059637405872e-05,7.127283403530845e-05,0.0001019695496841789,0.00012719731024618165,0.00014748536943940064,0.00014325133969472886,0.00012525671327987375,0.00010144029596609495,8.785611720193962e-05,6.721522219666464e-05,4.145820791657793e-05,1.6759701072659165e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.292537180839736e-07,2.7521193340366628e-05,7.23313414714764e-05,0.00010320447502637485,0.0001266680565280977,0.00012878507140043357,0.00012349253421959383,0.00010549790780473875,8.83853709200236e-05,7.709462493423216e-05,5.9805670143489015e-05,3.6694924453822166e-05,1.5701193636491215e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4169253125834795e-05,6.880298335091656e-05,0.00010144029596609495,0.00012543313118590176,0.00014695611572131668,0.00014095790691636496,0.0001229632805015099,0.00010285163921431887,8.697402767179965e-05,6.61567147604967e-05,4.0223282574381995e-05,1.3937014576211303e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.363999940775082e-05,6.79208938207766e-05,0.00010038178852992698,0.00012155193725328596,0.00013919372785608505,0.0001323134295209934,0.00011326029566997034,0.00010020537062389901,8.503343070549178e-05,6.456895360624479e-05,3.369582005134632e-05,7.056716241119648e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.887671594499506e-05,6.20991029218529e-05,9.350149019483534e-05,0.00011449522101216629,0.0001328426832390774,0.00012896148930646156,0.00011008477336146651,9.755910203347914e-05,8.150507258493195e-05,6.174626710979692e-05,3.634208864176619e-05,1.0585074361679474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9935223381163e-05 +2620755,0.00010090070284141446,3.346455471122288e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.504172874637859e-05,0.0001997732508518457,0.00028951910212285256,0.0003523919018833319,0.000318927347172109,0.0003067584181862097,0.00026619532156654563,0.00020737883146803275,0.00018151985737299684,0.00013690045109136635,9.177400610199004e-05,4.4619406281630505e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.337983846822515e-05,0.00017239316063357243,0.00024692785067220523,0.00030320914723198916,0.0003468144760981281,0.0003148710375101426,0.0002879979859996151,0.0002712657086440037,0.00023678707651728916,0.00017797058641877623,0.00010850628345760149,2.9915283757002278e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.453469003863279e-05,0.0002068717927602869,0.00029611060532354794,0.00035695525025304404,0.0003721664114854181,0.0003544200567143151,0.0003077724956017014,0.0002748149795982242,0.000234758921686306,0.00017949170254201363,0.00011256259311956789,3.7520864373189296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.149245779215798e-05,0.0002043365992215579,0.0002900261408305983,0.0003579693276685356,0.000410701353274099,0.00039549019204172494,0.00034225112772841586,0.0002864768698763777,0.0002484489667954426,0.00018912543798918388,0.0001161118640737885,4.360532886613891e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.656284486961599e-05,0.00020484363792930372,0.00029306837307707304,0.0003579693276685356,0.00035898340508402725,0.0003387018567741952,0.0002915472569538357,0.00025098416033417166,0.00022157591528491517,0.0001713790832180808,0.00010495701250338085,4.157717403515571e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692910942244576e-05,0.0001967310186053709,0.0002859698311686319,0.00035036374705234866,0.0004015746565346746,0.0003848423791790632,0.0003361666632354662,0.0002900261408305983,0.0002479419280876968,0.00018709728315820066,0.00011154851570407628,3.650678695769769e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.642207071469997e-05,0.00019571694118987928,0.00028546279246088614,0.0003452933599748906,0.00038737757271779214,0.0003630397147459937,0.0003108147278481761,0.0002808994440911739,0.0002383081926405266,0.00018050577995750523,9.380216093297323e-05,1.7746354771103044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.273202560556333e-05,0.0001789846638342678,0.0002667023602742915,0.00032551885037280435,0.0003726734501931639,0.0003544200567143151,0.00030473026335522653,0.00027278682476724106,0.00022816741848561054,0.0001713790832180808,0.00010039366413366865,2.6366012802781663e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5267219144292344e-05 +2620756,5.494457326975063e-05,1.88783918414015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1701522276528685e-05,0.00011073444766672819,0.00016032544713070825,0.00019949106602555616,0.0001789220719297008,0.00016906022544538657,0.0001476459302223043,0.0001169333225997257,9.974553301277808e-05,7.664063553524192e-05,5.184513580325188e-05,2.4231965647172076e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.634794847075811e-05,9.495549329182547e-05,0.00013665701556835416,0.0001696237595302045,0.00019582809447423946,0.00018314857756583544,0.00016539725389406985,0.00015356303811289279,0.0001310216747201746,0.00010030906709759601,6.029814707552122e-05,1.7187789586947633e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.02926870644838e-05,0.00011270681696359106,0.00016201604938516213,0.00020118166828001,0.00020822584434023443,0.00019695516264387535,0.00017469556629356612,0.00015328127107048383,0.00012933107246572073,9.918199892796011e-05,6.227051637238406e-05,2.1414295223082304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.916561889484788e-05,0.00011157974879395514,0.00016088898121552624,0.00019977283306796517,0.00023499371336908734,0.00022146889533345638,0.00019301042405014967,0.00016286135051238904,0.0001400382200772619,0.00010622617498818456,6.452465271165588e-05,2.3386664519945143e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.282859044616461e-05,0.00011242504992118208,0.00016201604938516213,0.00020089990123760103,0.00020399933870409982,0.00019329219109255863,0.00016849669136056864,0.00014539179388303245,0.00012679516908403992,9.580079441905239e-05,5.832577777865836e-05,2.3386664519945143e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747501664039403e-05,0.00010735324315782047,0.00015638070853698263,0.00019582809447423946,0.00022400479871513722,0.00021470648631564094,0.00018962921954124193,0.00016201604938516213,0.00013722054965317212,0.00010397203864891275,6.142521524515712e-05,2.0005460011037413e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.606618142834913e-05,0.00010425380569132172,0.00015159066881602993,0.000189065685456424,0.00021047998067950629,0.00019892753194073818,0.00017525910037838408,0.00015328127107048383,0.00012961283950812968,9.83366978007332e-05,5.071806763361598e-05,1.0143613526723194e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.930377241053367e-05,9.664609554627931e-05,0.00014341942458616963,0.00017976737305692772,0.00020963467955227935,0.00019160158883810478,0.00017385026516633921,0.000151027134731212,0.00012510456682958608,9.382842512218955e-05,5.3817505100114725e-05,1.4088352120448882e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071260762257856e-05 +2620757,5.379683819628735e-05,1.901908421080866e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0755180451732846e-05,0.00010732197518956317,0.00015459798451357326,0.0001926361529351906,0.00017524727594245122,0.00016492263022801226,0.00014563184481419206,0.00011492960887388661,9.835583549018195e-05,7.58046356402231e-05,5.1079826166171835e-05,2.363800466200505e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53211563915018e-05,9.183500661790469e-05,0.00013177508346060287,0.0001641075266189776,0.00019182104932615593,0.00018203980601774007,0.00016356412421295448,0.00015079416767141158,0.00012742786421241804,9.699732947512416e-05,5.86874598504953e-05,1.7388876992739345e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.966837563968664e-05,0.00010840878000160937,0.00015541308812260792,0.00019453806135627145,0.00020323249985264113,0.00019345125654422524,0.00017171516030330103,0.00015052246646839998,0.00012742786421241804,9.699732947512416e-05,6.086106947458772e-05,2.119269383490108e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.803816842161732e-05,0.00010650687158052851,0.00015459798451357326,0.0001937229577472368,0.00022877241293572706,0.0002181760660182765,0.00018964743970206353,0.00015649989293465414,0.0001350354978967415,0.00010215965233234367,6.194787428663393e-05,2.2822901052970395e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1570284060767506e-05,0.00010650687158052851,0.00015269607609249238,0.00019046254331109817,0.00019508146376229454,0.00018557192165689023,0.0001611188133858505,0.00013992611955094945,0.00011846172451303682,8.857459218176606e-05,5.515534421134512e-05,2.3094602255981945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.559285759451336e-05,0.00010052944511427435,0.00014617524722021515,0.0001828549096267747,0.00021274204195804547,0.0002045910058676989,0.00018203980601774007,0.00015269607609249238,0.00012960147383651044,9.781243308415884e-05,5.7872356241460645e-05,1.929078541382021e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.423435157945559e-05,9.699732947512416e-05,0.0001412846255660072,0.00017714918436353213,0.00020024378661951406,0.00019046254331109817,0.0001679113434611393,0.00014590354601720358,0.00012280894376122162,9.29218114299509e-05,4.836281413605631e-05,1.0052944511427435e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798522391018989e-05,9.074820180585846e-05,0.00013530719909975305,0.00017117175789727797,0.0002016022926345718,0.00018856063489001727,0.00016981325188222018,0.00014508844240816894,0.00012117873654315233,9.101990300887003e-05,5.216663097821804e-05,1.4128462556600718e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9887132331270755e-05 +2620758,8.279633368485684e-05,2.965838818562036e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.178830872004242e-05,0.00016270921296277838,0.00023561941725242844,0.0002961719597980701,0.0002731043245425875,0.00026074666279857906,0.00022861674226415702,0.00017795032911372218,0.00015241116150943796,0.00011698586450994699,7.90890351616543e-05,3.666106317389184e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3137945499236484e-05,0.00013881773359102864,0.00020060604231107108,0.0002525082216359067,0.00029781964803060444,0.00028463814217032877,0.0002574512863335101,0.00023438365107802757,0.00019566297761346767,0.00014911578504436907,9.021093073126195e-05,2.7186855836818668e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.014062048750797e-05,0.00016353305707904564,0.00023561941725242844,0.00029781964803060444,0.00031470845241408273,0.00030070310243753977,0.00026898510396125135,0.00023438365107802757,0.00019813450996226942,0.00015076347327690355,9.391822925446448e-05,3.295376465068929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.766908813870626e-05,0.00016106152473024392,0.00023561941725242844,0.0002986434921468717,0.0003534291258786427,0.00034065954207650054,0.00029576003773993634,0.00024179824812443267,0.00020760871729934253,0.00015735422620704136,9.433015131259811e-05,3.542529699949099e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119220581336161e-07,6.302407489444328e-05,0.00016147344678837754,0.00023273596284549311,0.0002928765833330011,0.0003023507906700743,0.00028916928480979856,0.0002488009231127042,0.0002166710025782821,0.00018165762763692472,0.00013387466889342524,8.362017780112409e-05,3.542529699949099e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3549867557370105e-05,0.00015158731739317073,0.00022202598933401908,0.00027969507747272534,0.00032953764650689297,0.0003167680627047509,0.0002834023759959279,0.0002347955731361612,0.00019813450996226942,0.0001499396291606363,8.815132044059386e-05,3.0070310243753985e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.149025726670202e-05,0.0001454084865211665,0.00021419947022948042,0.0002698089480775186,0.0003077057774258113,0.00029493619362366916,0.00026033474074044536,0.00022326175550841995,0.00018618877027639448,0.00014128926593983033,7.373404840591729e-05,1.5241116150943798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2427971987762465e-05,0.00013593427918409334,0.00020554910700867448,0.00026115858485671264,0.00031017730977461294,0.0002945242715655356,0.000264042039263648,0.00022532136579908802,0.0001857768482182609,0.0001404654218235631,7.991287927792154e-05,2.2243791139215273e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.531142639469778e-05 +2620759,0.00015629752215221912,5.63572796221944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011121169845446362,0.00029531214522029867,0.00043507819868334076,0.0005568099226672807,0.0005252498460788518,0.0005064640862047871,0.00044033821144807896,0.0003403979689180542,0.0002900521324555605,0.00021791481453915166,0.00014953464859755584,7.063445712648364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.618309055521176e-05,0.0002539834734973561,0.0003727094759014457,0.0004756554400113208,0.0005695842393816448,0.000547041327532767,0.0004997012126501237,0.00044785251539770487,0.00036895232392663267,0.00028028353732104685,0.00016982326926154578,5.335155804234403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010820597687461325,0.00029681500601022386,0.00043582962907830333,0.0005560584922723181,0.0005988900247851859,0.0005680813785917196,0.0005102212381796,0.00044559822421281705,0.00037646662787625863,0.0002840406892958598,0.00017358042123635878,6.387158357182033e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010444882489980028,0.00029305785403541086,0.0004335753378934156,0.0005620699354320188,0.0006657673299368565,0.0006514901524325673,0.0005733413913564578,0.00046588684487680707,0.0003952523877503234,0.0003028264491699246,0.00017808900360613428,7.063445712648364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.254291184887776e-06,0.00011647171121920177,0.0003005721579850368,0.00043808392026319114,0.0005613185050370563,0.0005861157080708217,0.0005628213658269815,0.00047415257922139566,0.0004087781348596501,0.0003501665640525679,0.00025999491665705684,0.0001585518133371069,6.612587475670809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.693452095017437e-05,0.0002810349677160094,0.00041779529959920113,0.0005327641500284778,0.0006402186965081284,0.0006101614807096247,0.0005432841755579541,0.00044259250263296667,0.0003727094759014457,0.000281786398110972,0.0001638118261018451,5.7860140412119586e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.317736897536142e-05,0.00026450349902683236,0.00039976097012009903,0.0005079669469947122,0.0005846128472808966,0.000563572796221944,0.0004959440606753108,0.000420049590784089,0.00034340369049790456,0.0002637520686318698,0.00013826319267311695,3.005721579850368e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.664590028618438e-05,0.0002457177391527676,0.00038247807103595935,0.0004891811871206474,0.000580104264911121,0.000563572796221944,0.0004997012126501237,0.00042606103394378966,0.00035091799444753047,0.00026901208139660794,0.0001502860789925184,4.433439330279293e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.115448265595993e-05 +2620760,3.912305555755874e-05,1.3784289004735722e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8582128671584362e-05,7.743527058542715e-05,0.00011696374640783106,0.00015142446891967034,0.00013926186097431531,0.00013703204951766686,0.00012223420985081824,9.020600892804995e-05,7.480003886393356e-05,5.473173575409772e-05,3.8920345425136154e-05,1.702765112349707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4325215890710096e-05,6.567808290491727e-05,9.892254462222106e-05,0.00012831551382349576,0.0001522353094493607,0.00014899194733059934,0.00013682933938524431,0.0001214233693211279,9.669273316557262e-05,7.358377806939804e-05,4.4393519000545936e-05,1.3176158607467972e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7568578009471443e-05,7.80434009826949e-05,0.00011757187680509878,0.0001510190486548252,0.0001573030627599253,0.0001522353094493607,0.00013865373057704756,0.00011818000720236655,9.770628382768556e-05,7.358377806939804e-05,4.60152000599266e-05,1.6014100461384145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6555027347358528e-05,7.601629965846904e-05,0.00011595019574571812,0.00015182988918451551,0.0001779794962670289,0.00017493884428069014,0.0001546678310384317,0.00012689654289653766,0.00010257132700582757,7.784069085027231e-05,4.581248992750401e-05,1.702765112349707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9392969201274696e-05,7.682714018815938e-05,0.00011493664508360521,0.00014838381693333162,0.00015527596143569944,0.00015000549799271226,0.0001317615860746797,0.00011108515256757611,9.162497985500802e-05,6.608350316976243e-05,4.0947446749362004e-05,1.5811390328961564e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4325215890710096e-05,7.115125648032703e-05,0.00010905805124335026,0.0001418970926958089,0.00016784398964589967,0.00016378978699744802,0.00014939736759544451,0.00012020710852659237,9.730086356284038e-05,7.297564767213031e-05,4.216370754389749e-05,1.4189709269580889e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3311665228597174e-05,6.729976396429793e-05,0.00010399029793278567,0.00013358597726648296,0.00014939736759544451,0.00014676213587395094,0.0001319642962071023,0.0001086526309785051,8.655722654444342e-05,6.6286213302185e-05,3.506885290910705e-05,6.486724237522691e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9054752447722908e-05,6.344827144826883e-05,0.00010034151554917916,0.00013074803541256676,0.00015365428037631876,0.00015081633852240262,0.00013622120898797656,0.00011432851468633745,9.101684945774028e-05,6.91241551561012e-05,3.8109504895445816e-05,1.0135506621129209e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0473723374681002e-05 +2620761,3.842267600892753e-05,1.3937637375787437e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.69335424964541e-05,7.307842299737196e-05,0.00010961763449605798,0.00014163653117016422,0.00013278424797202895,0.00012864062604949755,0.0001135729099675652,8.62626745690628e-05,7.213669074225119e-05,5.311369918881158e-05,3.748094375380676e-05,1.732787349422222e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.354330637801932e-05,6.328440754411593e-05,9.379653261002895e-05,0.00012091842155750721,0.00014446172793552652,0.00013937637375787437,0.0001284522795984734,0.00011489133512473427,9.304314680593233e-05,7.062991913405796e-05,4.237795148043477e-05,1.3372598022714973e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6180156692357477e-05,7.383180880146858e-05,0.00011037102030015457,0.00014163653117016422,0.00015067716081932365,0.00014163653117016422,0.00012939401185359418,0.00011244283126142026,9.417322551207728e-05,7.062991913405796e-05,4.331968373555554e-05,1.582110188602898e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5426770888260863e-05,7.270173009532366e-05,0.00010924094159400964,0.00014276660987630916,0.00016819338076457001,0.0001653681839992077,0.0001454034601906473,0.00011959999640033816,9.944692614075362e-05,7.609196621375844e-05,4.426141599067632e-05,1.732787349422222e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8834645102415453e-07,2.844031410464734e-05,7.496188750761352e-05,0.00011131275255527535,0.00014389668858245407,0.0001512422001723961,0.00014446172793552652,0.00012280188606774876,0.00010547401257352654,9.059464294261836e-05,6.62979507605024e-05,4.030614051916908e-05,1.6386141239101447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3731652829043472e-05,7.025322623200965e-05,0.00010622739837762316,0.00013711621634558452,0.0001636730659399903,0.00015689259370312074,0.00014107149181709176,0.0001135729099675652,9.436157196310145e-05,7.100661203610626e-05,4.087117987224154e-05,1.45026767288599e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2601574122898547e-05,6.554456495640579e-05,0.00010095369774894684,0.00012901731895154588,0.00014691023179884053,0.000142578263425285,0.0001250620434800386,0.00010547401257352654,8.437921005882123e-05,6.554456495640579e-05,3.427905408639613e-05,7.157165138917874e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8457952200367145e-05,6.0647557229777766e-05,9.643338292436712e-05,0.00012412031122491785,0.0001463451924457681,0.0001422015705232367,0.0001271338544413043,0.00010792251643684057,8.758109972623188e-05,6.742802946664732e-05,3.72925973027826e-05,1.073574770837681e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.958803090651207e-05 +2620762,0.00010620318571009991,3.9045288864007316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.548755847041414e-05,0.00020147369053827776,0.0003024708377331767,0.00039201470019463344,0.00036962873457926926,0.0003488045805184654,0.00031496533016965903,0.00023947777169924488,0.00019887067128067728,0.000149413305386268,0.00010360016645249943,4.737495048832888e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.611668914305239e-05,0.0001744022902592327,0.00026030192576004875,0.00033735129578502327,0.00040138556952199524,0.0003914940963431134,0.00035505182673670655,0.00031860955713029976,0.00025769890650244835,0.00019678825587459692,0.00011765647044354205,3.7483477309447026e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.288453921281366e-05,0.00020251489824131796,0.00030403264928773705,0.00039201470019463344,0.0004133594581069575,0.0003847262462733521,0.00035505182673670655,0.000309238687802938,0.00025769890650244835,0.0001947058404685165,0.00011921828199810236,4.425132737920829e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.080212380673328e-05,0.00019939127513219737,0.0003009090261786163,0.0003940971156007139,0.0004633374278528869,0.00045396655852552513,0.00039930315411591485,0.0003300628418637419,0.0002727964181965312,0.00020980335216259932,0.00012130069740418275,4.789555433984898e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206038515200975e-07,7.861118157953474e-05,0.00020303550209283805,0.0003029914415846969,0.0003914940963431134,0.00041179764655239717,0.0003914940963431134,0.00033683069193350316,0.0002915381568512546,0.0002467662256205262,0.00018585557499267483,0.00011036801652226069,4.477193123072839e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.507548144001219e-05,0.00019002040580483562,0.000287893929890614,0.0003753553769459904,0.0004440750853466433,0.0004279363659495202,0.0003842056424218321,0.0003102798955059782,0.0002571783026509282,0.00019418523661699643,0.00011245043192834107,4.008649656704751e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.247246218241171e-05,0.00017856712107139347,0.0002743582297510914,0.00035296941133062615,0.00039878255026439474,0.00038837047323399287,0.00034203673044870417,0.00028737332603909384,0.00022854509081732287,0.00017908772492291356,9.422929712513768e-05,2.0303550209283806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.153978130048966e-05,0.00016659323248643124,0.00026290494501764926,0.00034151612659718406,0.0004034679849280756,0.0003852468501248722,0.00035036639207302564,0.0002983060069210159,0.0002420807909568454,0.00018637617884419488,0.00010255895874945923,3.0195023388165663e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5184008261130345e-05 +2620763,3.3424405313526974e-05,1.0313816496745469e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5975537843655254e-05,7.276970528259301e-05,0.00010352015817103783,0.0001262487537842362,0.00010772208341045267,0.00010141919555133043,9.015039604562706e-05,6.914076984855295e-05,5.8062966944641165e-05,4.297423540310611e-05,3.094144949023641e-05,1.3178765523619208e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.368357862215626e-05,6.188289898047281e-05,8.900441643487757e-05,0.00010829507321582741,0.0001230018115537793,0.00011039603583553481,0.0001018011887549136,0.0001006552091441641,8.442049799187958e-05,6.436585480376339e-05,3.8390316960108133e-05,8.785843682412806e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.578454124186367e-05,7.448867469871726e-05,0.00010657610379970317,0.00012834971640394361,0.00012643975038602778,0.00011765390670361496,0.00010581211739253684,9.51163076922082e-05,7.926358974350683e-05,6.054592276793173e-05,4.0682276181607126e-05,1.1268799505703383e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4638561631114174e-05,7.29607018843846e-05,0.00010390215137462102,0.00012815871980215203,0.00014401143775085338,0.00013637157367919008,0.00012128284213765506,0.00010791308001224425,9.015039604562706e-05,6.818578683959504e-05,4.20192523941482e-05,1.2223782514661295e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.750351065798791e-05,7.39156848933425e-05,0.00010485713438357895,0.0001285407130057352,0.0001294956960146931,0.0001186088897125729,0.00010600311399432846,0.0001008462057459557,8.384750818650483e-05,6.398386160018023e-05,4.0682276181607126e-05,1.3369762125410792e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3874575223947842e-05,7.238771207900986e-05,0.0001018011887549136,0.0001230018115537793,0.00013789954649352275,0.000130450679023651,0.00011517095088032439,0.00010237417856028835,8.480249119546275e-05,6.398386160018023e-05,3.819932035831655e-05,1.0122819894953885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2537599011406765e-05,6.780379363601188e-05,9.874524312624826e-05,0.0001186088897125729,0.00012701274019140252,0.00011822689650898973,0.00010600311399432846,9.74082669137072e-05,8.060056595604792e-05,6.016392956434856e-05,3.1514439295611156e-05,5.5389014519558994e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.814467717020036e-05,6.302887859122231e-05,9.339733827608396e-05,0.00011364297806599174,0.00012911370281110994,0.00012070985233228027,0.00010791308001224425,9.473431448862503e-05,7.888159653992368e-05,5.9399943157182235e-05,3.380639851711015e-05,5.920894655539065e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871766697557511e-05 +2620764,3.4277285576411596e-05,1.0243786494100016e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7185433388188504e-05,7.722239049398474e-05,0.00010775675408216747,0.0001310022695880098,0.00010952971712922323,0.00010184687725864823,9.219407844690014e-05,7.131251367046551e-05,5.9098768235192396e-05,4.373308849404238e-05,3.1913334847003895e-05,1.3395720799976946e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5215474447015422e-05,6.540263684694625e-05,9.317905791748668e-05,0.00011248465554098288,0.00012607737223507712,0.00011366663090568672,0.0001042108279880559,0.00010302885262335209,8.60872057292636e-05,6.61906204234155e-05,3.93991788234616e-05,8.273827552926937e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6791441599953892e-05,7.741938638810204e-05,0.00010992370891745787,0.000132381240846831,0.00012922930654095407,0.0001207584830939098,0.00010736276229393286,9.63309922233636e-05,8.09653124822136e-05,6.087173128224816e-05,4.17631295528693e-05,1.083477417645194e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5215474447015422e-05,7.584341923516359e-05,0.00010775675408216747,0.000132381240846831,0.00014794391648209832,0.0001404580725056406,0.0001235164256115521,0.00010992370891745787,9.10121030821963e-05,6.835757525870586e-05,4.255111312933853e-05,1.1622757752921172e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8564404647009655e-05,7.64344069175155e-05,0.00010716576639981557,0.0001306082777997752,0.0001300172901174233,0.00011878852415273672,0.00010716576639981557,0.00010164988136453092,8.175329605868282e-05,6.303868611753856e-05,4.038415829404814e-05,1.3395720799976946e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4230494976428883e-05,7.347946850575588e-05,0.00010184687725864823,0.00012331942971743483,0.00013907910124681943,0.0001300172901174233,0.00011465161037627328,0.00010184687725864823,8.372325499985589e-05,6.303868611753856e-05,3.7626215776405826e-05,9.258807023513476e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.265452782349042e-05,6.87515670469405e-05,9.948292652924054e-05,0.00011957650772920596,0.00012647136402331173,0.00011819753647038479,0.00010657477871746363,9.8497947058654e-05,8.057132069397898e-05,6.0280743599896256e-05,3.132234716465197e-05,5.3188891411673164e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871460994114426e-05,6.481164916459434e-05,9.514901685865977e-05,0.00011583358574097711,0.00013041128190565792,0.0001229254379292002,0.00011012070481157519,9.613399632924631e-05,7.919234943515781e-05,5.968975591754432e-05,3.4080289682294285e-05,5.121893247050008e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9305597623496184e-05 +2620765,3.9389824978073605e-05,1.1121832934985487e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1511859982458886e-05,9.082830230238148e-05,0.00012604743992983554,0.00015338861256167488,0.00012535232537139892,0.00011538901670047443,0.00010542570802954992,8.225522274833017e-05,6.858463643241051e-05,5.120677247149569e-05,3.6377661891515034e-05,1.5292520285605047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.96582211599613e-05,7.715771598646182e-05,0.00010913298567454512,0.0001313766515445161,0.00014527894271324792,0.00013230347095576488,0.00011979140890390618,0.000118401179787033,9.89379721508084e-05,7.623089657521305e-05,4.471903659275415e-05,8.573079554051314e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.08167454240223e-05,8.99014828911327e-05,0.00012720596419389654,0.00015362031741448704,0.00014852281065261868,0.00013763268257044545,0.00012210845743202816,0.00010982810023298168,9.268194112487908e-05,6.90480461380349e-05,4.7731199679312724e-05,1.1353537787797685e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8963106601524707e-05,8.804784406863513e-05,0.00012558403022421114,0.00015362031741448704,0.00017146159108102628,0.00016335192123259935,0.00014203507477387716,0.00012720596419389654,0.00010473059347111334,7.901135480895941e-05,4.91214287961859e-05,1.2280357199046475e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.359720365776866e-05,9.05965974495693e-05,0.00012697425934108433,0.00015385202226729925,0.00015223008829761387,0.00013902291168731861,0.0001258157350770233,0.00011979140890390618,9.453557994737665e-05,7.275532378303007e-05,4.703608512087613e-05,1.4597405727168451e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8267992043088118e-05,8.665761495176194e-05,0.00011979140890390618,0.00014551064756606014,0.00016451044549666035,0.00015269349800323828,0.00013531563404232345,0.00011909629434546963,9.708433332831083e-05,7.298702863584227e-05,4.332880747588097e-05,9.9633086709245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6414353220590534e-05,8.040158392583258e-05,0.00011608413125891104,0.0001399497310985674,0.00014666917183012114,0.00013693756801200883,0.00012396209625452576,0.00011469390214203787,9.268194112487908e-05,6.951145584365931e-05,3.5682547333078445e-05,5.560916467492744e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.178025616434658e-05,7.553578201677644e-05,0.00011098662449704267,0.00013531563404232345,0.00015107156403355287,0.00014273018933231378,0.00012743766904670873,0.0001114500342026671,9.05965974495693e-05,6.812122672678613e-05,3.869471041963701e-05,4.865801909056152e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2475370722783175e-05 +2620766,3.218232662190717e-05,9.419217547875269e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5314147159914783e-05,7.358763709277553e-05,0.00010380762672554199,0.00012480463250934729,0.00010204152343531542,9.203360479069793e-05,8.55578927265337e-05,6.927049571666603e-05,5.573037049159533e-05,4.160154416978243e-05,2.943505483711021e-05,1.2558956730500356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4332978665344443e-05,6.259854995358771e-05,8.889386560807285e-05,0.00010714359960708118,0.00011931008893975341,0.00010773230070382339,9.693944726354962e-05,9.811684945703403e-05,8.202568614608047e-05,6.20098488568455e-05,3.6499467998016666e-05,7.2606468598205185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4332978665344443e-05,7.280270229711926e-05,0.00010400386042445608,0.00012519709990717543,0.00012186112702563631,0.00011204944207993288,0.00010066788754291693,9.10524362961276e-05,7.476503928625993e-05,5.5926604190509404e-05,3.9246739782813625e-05,9.419217547875269e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3351810170774107e-05,7.221400120037706e-05,0.00010321892562879982,0.00012558956730500357,0.0001414844969170431,0.00013304644786373815,0.0001198987900364956,0.00010714359960708118,8.693152861893217e-05,6.632699023295502e-05,4.0424141976298026e-05,1.000791864461747e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.649154935339919e-05,7.37838707916896e-05,0.00010380762672554199,0.00012558956730500357,0.00012617826840174577,0.00011558164866038611,0.00010380762672554199,0.00010027542014508879,8.104451765151012e-05,6.142114776010331e-05,3.885427238498548e-05,1.1774021934844086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2174407977289692e-05,6.88780283188379e-05,9.752814836029186e-05,0.00011852515414409714,0.00013402761635830852,0.00012539333360608951,0.00011303061057450321,0.00010066788754291693,8.222191984499452e-05,6.181361515793144e-05,3.669570169693073e-05,8.438049053304929e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0800772084891217e-05,6.573828913621282e-05,9.517334397332303e-05,0.00011499294756364391,0.00012205736072455036,0.00011381554537015948,0.00010341515932771388,9.556581137115117e-05,7.692360997431468e-05,5.808517487856415e-05,2.9631288536024285e-05,5.102076171765769e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.726856550443799e-05,6.181361515793144e-05,9.085620259721353e-05,0.00011126450728427661,0.00012539333360608951,0.00011793645304735491,0.00010596619741359676,9.379970808092454e-05,7.653114257648655e-05,5.690777268507974e-05,3.19860929229931e-05,4.1209076771954296e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7857266601180197e-05 +2620767,9.468859047579948e-05,2.6268447680383083e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.697266064484344e-05,0.00022664172300981684,0.0003219412076177183,0.0003866959856205231,0.0003146104780324951,0.00028895292448421393,0.000261462688539627,0.00021014758144306467,0.00017105035698854098,0.00012706597947720186,8.613607262637244e-05,3.6042753794014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.330729585223185e-05,0.0001918207574800067,0.00027490235944586944,0.00033171551373134913,0.00036592558512905737,0.0003304937254671453,0.0002981163364657429,0.00029689454820153903,0.0002498557000296903,0.00018937718095159896,0.00010873915551414391,1.89377180951599e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.330729585223185e-05,0.00022480904061351103,0.00032133031348561636,0.0003891395621489308,0.00037753257363899403,0.00034454429050548974,0.0003048361719188642,0.00027490235944586944,0.00022725261714191878,0.0001698285687243371,0.00011668077923146904,2.565755354828115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.02528251917222e-05,0.00022297635821720525,0.00032133031348561636,0.0003903613504131347,0.0004392328809812893,0.00040196833892307135,0.00036164932620434383,0.00031949763108931055,0.0002639062650680347,0.0001991514870652299,0.00012034614402408064,2.810113007668888e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.002713130535313e-05,0.00022786351127402073,0.0003231629958819221,0.0003928049269415424,0.00039158313867733853,0.0003610384320722419,0.000323773890014024,0.0003085015367114757,0.0002498557000296903,0.00018815539268739512,0.0001179025674956729,3.42100713977082e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.780924866331448e-05,0.00021381294623567626,0.0003066688543151699,0.0003738672088463825,0.00042151695115033317,0.0003897504562810327,0.0003488205494302033,0.0003085015367114757,0.00025352106482230186,0.00019059896921580282,0.00011118273204255167,2.3824871151975353e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.353298973860093e-05,0.0002052604283862492,0.00029933812472994676,0.0003628711144685477,0.00038119793843160565,0.00035370770248701873,0.0003201085252214125,0.0002932291834089274,0.00023702692325554967,0.00017838108657376422,8.857964915478016e-05,1.2828776774140576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.253689536076617e-05,0.0001936534398763125,0.0002852875596916023,0.0003494314435623052,0.000387306879752625,0.00036226022033644575,0.00031888673695720863,0.0002846766655595004,0.00023336155846293808,0.0001747157217811526,9.529948460790141e-05,9.774306113630914e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.498047188917391e-05 +2620768,2.497654556487408e-05,7.389510522152096e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9360517568038494e-05,5.616027996835593e-05,7.906776258702741e-05,9.576805636709115e-05,7.921555279747047e-05,7.138267164398925e-05,6.66533849098119e-05,5.246552470727988e-05,4.226800018670999e-05,3.118373440348184e-05,2.2907482618671494e-05,9.754153889240767e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.83259860949372e-05,4.7588447762659496e-05,6.798349680379927e-05,8.217135700633129e-05,9.207330110601512e-05,8.231914721677434e-05,7.463405627373616e-05,7.50774269050653e-05,6.295862964873585e-05,4.803181839398861e-05,2.8375720405064045e-05,5.763818207278634e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9064937147152407e-05,5.601248975791288e-05,8.01022940601287e-05,9.635921720886333e-05,9.414236405221769e-05,8.749180458228081e-05,7.832881153481221e-05,6.975697932911578e-05,5.763818207278634e-05,4.330253165981129e-05,3.0444783351266634e-05,7.537300732595137e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8030405674051113e-05,5.5273538705697676e-05,7.891997237658438e-05,9.680258784019244e-05,0.00010847801446519276,0.00010404430815190149,9.192551089557208e-05,8.202356679588828e-05,6.650559469936885e-05,5.039646176107729e-05,3.1479314824367925e-05,7.980671363924262e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.054283925158282e-05,5.6455860389242004e-05,7.965892342879959e-05,9.709816826107854e-05,9.798490952373678e-05,8.956086752848338e-05,8.084124511234392e-05,7.818102132436915e-05,6.295862964873585e-05,4.877076944620384e-05,3.118373440348184e-05,9.45857346835468e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.773482525316503e-05,5.497795828481159e-05,7.714648985126789e-05,9.369899342088857e-05,0.00010640895151899019,9.961060183861026e-05,8.867412626582513e-05,7.86243919556983e-05,6.399316112183715e-05,4.803181839398861e-05,2.8523510615507085e-05,6.798349680379929e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.670029378006373e-05,5.1726573655064666e-05,7.50774269050653e-05,9.000423815981252e-05,9.532468573576202e-05,8.882191647626818e-05,8.03978744810148e-05,7.419068564240703e-05,5.985503522943197e-05,4.5076014185127784e-05,2.3350853250000617e-05,3.990335681962131e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3448909150316814e-05,4.803181839398861e-05,7.064372059177403e-05,8.60139024778504e-05,9.680258784019244e-05,9.118655984335686e-05,8.172798637500218e-05,7.108709122310316e-05,5.8377133125001555e-05,4.3745902291140406e-05,2.4680965143987995e-05,3.3991748401899643e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3744489571202897e-05 +2620769,0.0001421502532109166,3.577291140407173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011767405067128856,0.00034737379758164385,0.000497055190035523,0.0005968427850047756,0.00048575848117107914,0.00044716139255089653,0.0003916192406340483,0.0003116008861775721,0.000265472658314427,0.00019675101272239448,0.00012897075953573225,5.2717974700737274e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011014291142832608,0.00029183164566479565,0.00041891962038978725,0.0005074105064945962,0.0005563629115738523,0.0005102346837107071,0.0004518683545777481,0.00044433721533478565,0.000378439746958864,0.0002843005064218332,0.00016097810131832278,2.4476202539628018e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011296708864443702,0.00034831518998701416,0.0004951724052247822,0.0006024911394369974,0.0005798977217081101,0.0005252969621966321,0.00046410645584756205,0.00041609544317367637,0.0003492565823923844,0.00026264848109831606,0.00017321620258813677,3.4831518998701416e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010920151902295579,0.00034360822796016254,0.000497055190035523,0.0006034325318423678,0.000676861139461252,0.000619436202733663,0.0005469489875201493,0.00047728594952274644,0.0004029159494984921,0.0003040697469346096,0.00017886455702035864,3.953848102555296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001223810126981401,0.00034831518998701416,0.0004989379748462635,0.0006090808862745896,0.0005949600001940348,0.0005507145571416305,0.0004838756963603386,0.0004565753166045996,0.0003746741773373828,0.0002824177216110925,0.00017321620258813677,4.8011012673885736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010543594940147455,0.0003332529115010892,0.00048199291154959795,0.0005893116457618131,0.0006570918989484754,0.0006137878483014411,0.0005394178482771868,0.0004744617723066354,0.0003991503798770108,0.0002955972152862768,0.00017039202537202586,3.29487341879608e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.97875949692527e-05,0.00032666316466349696,0.00047634455711737607,0.0005808391141134804,0.0006034325318423678,0.0005563629115738523,0.0004951724052247822,0.0004490441773616371,0.00036996721531053125,0.0002748865823681301,0.0001327363291572135,1.5062278485924936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284253167258713e-05,0.00030501113933997993,0.0004499855697670074,0.000552597341952371,0.0006034325318423678,0.0005620112660060741,0.00048199291154959795,0.00043021632925423095,0.00035961189885145786,0.00026641405071979726,0.00014309164561628692,1.2238101269814009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.566670888869807e-05 +2620770,7.087957717811449e-05,1.8186207302279375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.87554389765949e-05,0.0001702042478290249,0.0002434153900458932,0.00029144562984422076,0.00023781963395288412,0.000219167113642854,0.00019072202017005808,0.0001524843535344963,0.0001324328942012139,9.792573162765818e-05,6.435119506960394e-05,2.6579841441792932e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4092308899087376e-05,0.00014269178037173047,0.0002033124713793284,0.0002466795811001484,0.0002704615444954368,0.0002485448331311515,0.000221032365673857,0.00021683554860410026,0.00018559257708479978,0.00013849496330197372,7.927321131762804e-05,1.2590451209270337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.642387393784115e-05,0.00017160318685227718,0.0002424827640303917,0.00029470982089847597,0.00028398462172020866,0.00025833740629391727,0.00022756074778236757,0.00020517772341033138,0.00017393475189103096,0.00013103395517796165,8.533528041838783e-05,1.8186207302279375e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5024934914588875e-05,0.00016927162181352341,0.0002434153900458932,0.0002951761339062268,0.00033014960948753326,0.0003026371420302388,0.00026533210141017855,0.00023222387785987506,0.00019864934130182089,0.00014968647548799178,8.813315846489236e-05,2.051777234103314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.062069100759792e-05,0.00017113687384452643,0.0002438817030536439,0.00029797401195273134,0.00028864775179771626,0.00026719735344118165,0.00023362281688312736,0.000219167113642854,0.00018186207302279373,0.00013709602427872147,8.393634139513558e-05,2.3781963395288412e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2693369875835104e-05,0.0001641421787282651,0.0002359543819218811,0.00028771512578221474,0.0003194244103092659,0.00029937295097598357,0.00026253422336367405,0.00023035862582887202,0.0001963177762630671,0.00014502334541048424,8.440265440288633e-05,1.725358128677787e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.036180483708135e-05,0.0001622769266972621,0.00023455544289862883,0.00028771512578221474,0.0003007718899992358,0.00027838886562719966,0.0002480785201234007,0.0002270944347746168,0.00019072202017005808,0.00014082652834072746,6.808169913160996e-05,7.927321131762804e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2900796713069296e-05,0.00015528223158100082,0.00022756074778236757,0.00027838886562719966,0.00030356976804574035,0.00028118674367370416,0.00023968488598388716,0.00021450398356534644,0.00018186207302279373,0.00013383183322446615,7.227851620136674e-05,7.46100812401205e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4299735736321554e-05 +2620771,1.5367186028329348e-05,3.965725426665637e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.269032136533004e-05,3.688124646799043e-05,5.2248432496319776e-05,6.226188919865051e-05,5.0959571732653446e-05,4.7092989441654445e-05,4.094611503032271e-05,3.291552104132479e-05,2.8949795614659157e-05,2.1514060439661086e-05,1.4177468400329655e-05,5.9485881399984566e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1698890008663631e-05,3.103180146365862e-05,4.372212282898865e-05,5.274414817465298e-05,5.789959122931831e-05,5.323986385298618e-05,4.7092989441654445e-05,4.639898749198795e-05,4.0152969944989585e-05,2.9842083835658925e-05,1.715176247032888e-05,2.875150934332587e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2293748822663478e-05,3.707953273932371e-05,5.205014622498648e-05,6.285674801265035e-05,6.057645589231761e-05,5.522272656631901e-05,4.858013647665405e-05,4.43169816429885e-05,3.7872677824656835e-05,2.845407993632595e-05,1.8440623233995214e-05,4.164011697998919e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1897176279996913e-05,3.658381706099051e-05,5.2248432496319776e-05,6.2955891148317e-05,7.009419691631515e-05,6.414560877631669e-05,5.611501478731876e-05,4.967071096898712e-05,4.2829834607988887e-05,3.202323282032502e-05,1.8936338912328418e-05,4.659727376332124e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3086893907996605e-05,3.707953273932371e-05,5.234757563198642e-05,6.355074996231684e-05,6.12704578419841e-05,5.670987360131862e-05,4.957156783332047e-05,4.64981306276546e-05,3.9062395452656535e-05,2.9247225021659078e-05,1.7845764419995374e-05,5.353729325998611e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1401460601663708e-05,3.5493242568657455e-05,5.076128546132016e-05,6.136960097765074e-05,6.801219106731568e-05,6.355074996231684e-05,5.54210128376523e-05,4.927413842632056e-05,4.223497579398904e-05,3.1130944599325254e-05,1.8341480098328574e-05,3.965725426665637e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1004888058997147e-05,3.50966700259909e-05,5.026556978298696e-05,6.136960097765074e-05,6.444303818331661e-05,5.928759512865129e-05,5.2248432496319776e-05,4.7985277662654224e-05,4.054954248765615e-05,2.9842083835658925e-05,1.4474897807329578e-05,1.6854333063328961e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.220311616997607e-06,3.2816377905658154e-05,4.7985277662654224e-05,5.8395306907651514e-05,6.384817936931678e-05,5.85935931789848e-05,5.036471291865359e-05,4.550669927098819e-05,3.9062395452656535e-05,2.855322307199259e-05,1.5664615435329266e-05,1.8837195776661781e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.517741023997528e-06 +2620772,4.290844605470847e-05,1.1845890015103567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.527442804497506e-05,0.0001013481701292194,0.00014162419618057151,0.00017137054221849824,0.00014004474417855773,0.00012898858016446103,0.00011503675414667241,9.134497411646526e-05,7.818287409968355e-05,5.89662080751822e-05,3.974954205068085e-05,1.658424602114499e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.264200804161872e-05,8.581689210941694e-05,0.00012135456215472762,0.0001466257941869486,0.0001611041042054085,0.00014873173018963365,0.00013135775816748175,0.00012977830616546794,0.00010977191413995971,8.344771410639622e-05,4.8436528061756806e-05,8.68698601107595e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.395821804329689e-05,0.00010108492812888375,0.00014241392218157842,0.0001718970262191695,0.00016584246021144992,0.00015268036019466815,0.00013451666217150938,0.00012214428815573455,0.00010345410613190447,7.739314809867663e-05,5.185867406612006e-05,1.1845890015103567e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.237876604128308e-05,9.924223412653432e-05,0.00014188743818090713,0.00017216026821950515,0.00019190341824467776,0.00017926780222856726,0.0001574187162007096,0.00013925501817755077,0.00011714269014935749,8.7922828112102e-05,5.317488406779823e-05,1.316210001678174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.659063804665323e-05,0.0001005584441282125,0.00014162419618057151,0.0001716337842188339,0.000167948396214135,0.000154259812196682,0.00013714908217486572,0.00012951506416513232,0.0001050335581339183,7.94990841013617e-05,5.001598006377061e-05,1.5268036019466818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1062556039604905e-05,9.555684612183543e-05,0.00013451666217150938,0.00016294679820775794,0.00018242670623259494,0.00016979109021648446,0.00014899497218996927,0.00013135775816748175,0.00010924543013928843,8.160502010404679e-05,4.8173286061421175e-05,1.0529680013425391e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895662003691983e-05,8.976552211445148e-05,0.00012951506416513232,0.00015768195820104524,0.00016505273421044302,0.0001534700861956751,0.00013714908217486572,0.00012609291816076905,0.00010371734813224011,7.739314809867663e-05,3.8696574049338314e-05,5.264840006712696e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4481506031214037e-05,8.529040810874568e-05,0.00012477670815909088,0.0001521538761939969,0.00016900136421547752,0.0001582084422017165,0.0001389917761772152,0.00012372374015774836,0.0001013481701292194,7.555045409632718e-05,4.2118720053701565e-05,5.001598006377062e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5271232032220937e-05 +2620773,2.370965461664351e-05,5.509990157388986e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9869358446342102e-05,6.010898353515257e-05,8.815984251822377e-05,0.00010569162938264325,8.548833213888364e-05,7.880955619053336e-05,6.795654527446414e-05,5.3597176985511027e-05,4.541567644878194e-05,3.27260021469164e-05,2.120511363601215e-05,8.348469935437856e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8533603256672043e-05,5.009081961262713e-05,7.346653543185313e-05,8.91616589104763e-05,9.751012884591417e-05,8.849378131564128e-05,7.880955619053336e-05,7.680592340602827e-05,6.595291248995906e-05,4.925597261908335e-05,2.7049042590818653e-05,3.3393879741751422e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8867542054089552e-05,6.07768611299876e-05,8.699105672726246e-05,0.0001070273845723133,0.00010302011900330316,9.133226109369014e-05,8.114712777245596e-05,7.179684144476555e-05,5.927413654160878e-05,4.508173765136442e-05,2.905267537532374e-05,5.176051359971471e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8199664459254528e-05,5.9775044737735044e-05,8.782590372080624e-05,0.00010686041517360455,0.0001207188752664314,0.00010886404795810964,9.65083124536616e-05,8.33177299556698e-05,6.979320866026048e-05,5.292929939067601e-05,3.03884305649938e-05,5.676959556097743e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.037026664246837e-05,6.060989173127883e-05,8.7992873119515e-05,0.00010836313976198336,0.00010569162938264325,9.801103704204042e-05,8.515439334146613e-05,8.031228077891219e-05,6.561897369254155e-05,4.992385021391838e-05,2.9553583571450007e-05,7.346653543185313e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.75317868644195e-05,5.727050375710369e-05,8.498742394275738e-05,0.00010452284359168196,0.00011621070150129496,0.00010819617036327461,9.517255726399156e-05,8.29837911582523e-05,6.996017805896922e-05,5.176051359971471e-05,2.888570597661498e-05,4.842112562553956e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.669693987087571e-05,5.727050375710369e-05,8.48204545440486e-05,0.00010385496599684694,0.00010719435397102205,9.817800644074919e-05,8.765893432209748e-05,7.83086479944071e-05,6.428321850287148e-05,4.775324803070453e-05,2.2373899426973456e-05,2.0036327845050854e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3691490694118084e-05,5.3597176985511027e-05,7.997834198149465e-05,9.917982283300175e-05,0.00010619253757876952,9.951376163041925e-05,8.415257694921357e-05,7.480229062152319e-05,6.31144327119102e-05,4.691840103716075e-05,2.4043593414061023e-05,1.1687857909612999e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4359368288953112e-05 +2620774,2.753888500906006e-05,5.658675001861655e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1691587507136344e-05,6.526338502147109e-05,9.827232253233074e-05,0.00011468248003772956,9.336813753071733e-05,8.865257502916593e-05,7.488313252463593e-05,6.262267002060233e-05,5.1305320016879015e-05,3.489516251148021e-05,2.263470000744662e-05,9.242502503040703e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0748475006826067e-05,5.375741251768573e-05,7.903282752600112e-05,9.525436253133787e-05,0.00010336513003400624,9.280227003053115e-05,8.506874752798688e-05,8.638910502842128e-05,7.507175502469797e-05,5.451190251793394e-05,2.942511000968061e-05,3.583827501179049e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0182607506639908e-05,6.56406300215952e-05,9.431125003102759e-05,0.00011543697003797777,0.00010977829503611613,9.563160753146198e-05,8.58232375282351e-05,8.035318502643552e-05,6.545200752153314e-05,5.017358501650668e-05,3.1688580010425273e-05,5.2814300017375445e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.037123000670196e-05,6.620649752178136e-05,9.77064550321446e-05,0.00011468248003772956,0.00012901779004244576,0.00011751181753866038,0.00010430824253431651,9.544298503139992e-05,7.959869502618728e-05,5.9793332519671494e-05,3.319756001092171e-05,6.035920001985764e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.244607750738457e-05,6.771547752227781e-05,9.846094503239282e-05,0.00011920942003921885,0.00011430523503760542,0.00010770344753543351,9.374538253084144e-05,9.223640253034498e-05,7.488313252463593e-05,5.620950501849245e-05,3.1688580010425273e-05,8.110767502668372e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9239495006329627e-05,6.205680252041616e-05,9.355676003077937e-05,0.00011449385753766749,0.00012524534004120465,0.00011864355253903271,0.00010619446753493707,9.525436253133787e-05,8.035318502643552e-05,5.8284352519175044e-05,3.149995751036321e-05,5.09280750167549e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8485005006081406e-05,6.413165002109876e-05,9.582023003152404e-05,0.00011392799003748133,0.00011864355253903271,0.00010770344753543351,9.846094503239282e-05,8.902982002929004e-05,7.261966252389125e-05,5.3568790017623666e-05,2.4898170008191282e-05,1.8862250006205519e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5467045005088526e-05,6.18681800203541e-05,8.978431002953828e-05,0.00011279625503710901,0.00011788906253878449,0.00011109865253655051,9.77064550321446e-05,9.242502503040704e-05,7.714660252538058e-05,5.564363751830628e-05,2.7916130009184162e-05,1.131735000372331e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.678740250552291e-05 +2620775,3.699323679919121e-05,7.815472563209412e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.969879574019576e-05,8.961741872480124e-05,0.00013442612808720186,0.00015735151427261613,0.00012817375003663434,0.0001219213719860668,0.00010160114332172233,8.466761943476861e-05,6.955770581256376e-05,4.663231962714948e-05,3.1261890252837646e-05,1.2504756101135055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.839621697966086e-05,7.346544209416846e-05,0.00010837455287650382,0.00013025787605349016,0.00014224160065041128,0.00012817375003663434,0.00011697157269603417,0.00011645054119182022,0.00010160114332172233,7.372595784627544e-05,3.9598394320261017e-05,4.689283537925646e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.761466972333992e-05,9.039896598112217e-05,0.0001289552972929553,0.00015839357728104407,0.0001516201677262626,0.00012947632879716927,0.0001177531199523551,0.00010915610013282477,8.935690297269426e-05,6.799461129992187e-05,4.272458334554479e-05,7.03392530688847e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78751854754469e-05,9.039896598112217e-05,0.00013312354932666696,0.00015604893551208123,0.0001774112271848536,0.00016125925055422084,0.0001432836636588392,0.0001289552972929553,0.00010785352137228986,8.075988315316393e-05,4.480870936240062e-05,7.815472563209412e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0740858748623685e-05,9.248309199797802e-05,0.00013390509658298792,0.00016282234506686275,0.00015683048276840216,0.00014771243144465787,0.00012791323428452736,0.00012478704525924357,0.00010108011181750838,7.607059961523828e-05,4.324561484975874e-05,1.0941661588493175e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6312090962805015e-05,8.466761943476861e-05,0.00012791323428452736,0.00015656996701629518,0.00017167988063850005,0.00016256182931475576,0.00014458624241937414,0.0001289552972929553,0.00010889558438071779,7.867575713630806e-05,4.272458334554479e-05,6.773409554781489e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5270027954377095e-05,8.779380846005238e-05,0.00013025787605349016,0.00015578841975997425,0.00016230131356264875,0.00014719139994044388,0.00013494715959141585,0.00012140034048185286,9.899598580065254e-05,7.242337908574054e-05,3.3606532021800465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620776,6.874886711122317e-05,2.1045571564660157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.121089080733972e-05,0.00014065456995714538,0.00019747761318172783,0.00023430736341988306,0.00021080647517267924,0.0001908131821862521,0.00016941685109551425,0.00013960229137891238,0.00012276583412718426,9.435431251489303e-05,5.8576840854970765e-05,2.665772398190287e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.314342170755332e-05,0.00012066127697071823,0.00016976761062159198,0.00020414204417720357,0.0002318520467373394,0.00021431407043345592,0.00018800710597763074,0.00018239495356038804,0.00015714026768279583,0.00011855671981425221,7.08534242676892e-05,1.6485697725650455e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.945709317695137e-05,0.00014100532948322308,0.00019677609412957248,0.00023395660389380536,0.00024027027536320346,0.00022518761574186368,0.00019326849886879577,0.00018099191545607735,0.00015643874863064048,0.00011855671981425221,7.19057028459222e-05,2.1045571564660157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7703295546563026e-05,0.00013960229137891238,0.0001953730560252618,0.0002353596419981161,0.0002658757207668733,0.00025044230161945584,0.000217470906168155,0.00018555178929508703,0.0001617001415218055,0.0001231165936532619,7.506253858062124e-05,2.5956204929747525e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.191240985949505e-05,0.00013995305090499006,0.00019607457507741716,0.00023500888247203846,0.00023150128721126172,0.00021676938711599959,0.00018625330834724235,0.0001662600153608152,0.00013609469611813567,0.00010838469355799979,6.699506948083483e-05,2.5956204929747525e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.559873839009701e-05,0.00013399013896166965,0.00019116394171232978,0.00023044900863302873,0.000260965087401786,0.00024483014920221316,0.00021326179185522296,0.0001883578655037084,0.0001609986224696502,0.00012241507460110658,7.225646237199988e-05,2.1045571564660157e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4546459811863996e-05,0.00013363937943559198,0.00019221622029056277,0.00023009824910695108,0.0002553529349845432,0.00023711343962850442,0.0002065973608597472,0.0001908131821862521,0.0001634539391521939,0.00012381811270541725,6.348747422005814e-05,9.1197476780194e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.858354786854362e-05,0.00012943026512265998,0.00018800710597763074,0.00022659065384617434,0.00025675597308885397,0.0002420240729935918,0.0002076496394379802,0.00018695482739939775,0.00016380469867827155,0.00012381811270541725,7.120418379376687e-05,1.6134938199572788e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.209114312932031e-05 +2620777,9.784495977826968e-05,2.8443302261124914e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.679691610503726e-05,0.00021446249904888182,0.00029922353978703407,0.0003487148857213914,0.00030434333419403654,0.0002753311658876892,0.00024461239944567425,0.00020649837441576684,0.00018374373260686693,0.00013937218107951206,8.817423700948723e-05,3.811402502990738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.76950593814773e-05,0.0001871569288782019,0.0002594029166214592,0.00030718766442014905,0.0003413196271334989,0.0003060499323297041,0.0002764688979781341,0.0002787443621590241,0.0002406303371291167,0.00017919280424508692,0.00010353362023049469,2.1048043673232432e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.395258587892477e-05,0.00021446249904888182,0.00029751694165136653,0.00035212808199272647,0.0003487148857213914,0.0003168583871889315,0.0002787443621590241,0.0002707802375259092,0.00023494167667689178,0.00017521074192852946,0.00010637795045660718,2.8443302261124914e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.167712169803476e-05,0.00021218703486799184,0.0002969480756061441,0.00035155921594750384,0.0003919487051583013,0.0003595233405806188,0.00031458292300804157,0.0002872773528373616,0.0002508699259431217,0.0001871569288782019,0.00011092887881838714,3.413196271334989e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.850351424070475e-05,0.00021332476695843684,0.0002969480756061441,0.0003544035461736164,0.0003424573592239439,0.00031458292300804157,0.0002770377640233567,0.0002599717826666817,0.00021446249904888182,0.00016610888520496948,0.00010125815604960467,3.640742689423988e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.940165751714478e-05,0.00020422291023487684,0.00028670848679213904,0.0003407507610882764,0.0003788647861181838,0.00034985261781183635,0.00031003199464626157,0.00028898395097302904,0.00024688786362656425,0.0001848814646973119,0.00010637795045660718,2.7874436215902414e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.65573272910323e-05,0.0002019474460539869,0.0002872773528373616,0.00034359509131438897,0.00037260725962073626,0.00034188849317872143,0.00030036127187747905,0.00029182828119914155,0.0002508699259431217,0.0001848814646973119,9.215629932604471e-05,1.0808454859227468e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.745547056747233e-05,0.00019568991955653937,0.00028215755843035914,0.0003373375648169414,0.0003765893219372939,0.0003413196271334989,0.0003026367360583691,0.0002895528170182516,0.00024859446176223174,0.00018374373260686693,0.00010410248627571719,1.9910311582787438e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620778,0.00010206325983892635,2.8553411978747252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.08000807058167e-05,0.0002302498540413874,0.0003201627258042511,0.0003705868363199111,0.00031834016759284175,0.0002855341197874725,0.000255765669001119,0.00021870698536912792,0.00019440620921700255,0.00014762721512416132,9.355798818568248e-05,4.009628065100678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.107977024496655e-05,0.00020108892265883704,0.00027885140634563806,0.00032684543924608555,0.0003596514870514547,0.0003207702452080542,0.00029160931382550385,0.00029889954667114145,0.0002588032660201347,0.00019015357339038065,0.00010813845387695767,2.004814032550339e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.776248368680101e-05,0.0002302498540413874,0.0003207702452080542,0.00037301691393512365,0.0003626890840704704,0.00032563040043847934,0.00029282435263311017,0.0002873566779988819,0.00024908295555928456,0.0001840783793523493,0.00011299860910738274,2.794589257494412e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.472488666778536e-05,0.00022842729582997801,0.0003207702452080542,0.00037605451095413937,0.00041007559756711475,0.000369979316916108,0.00032866799745749495,0.00030801233772818844,0.00026913109588478794,0.00019805132563982137,0.00011725124493400467,3.2806047805369185e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.262263891722609e-05,0.0002302498540413874,0.0003201627258042511,0.00037787706916554876,0.0003645116422818798,0.00032988303626510116,0.0002958619496521258,0.0002837115615760631,0.000237540086887025,0.00017982574352572736,0.00010753093447315455,3.7058683631991114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.229480905257284e-05,0.00022113706298434042,0.00031104993474720405,0.0003651191616856829,0.00039974776770246154,0.0003620815646666673,0.00032259280341946357,0.0003092273765357947,0.00026609349886577233,0.00019562124802460884,0.00011299860910738274,2.673085376733785e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.864969262975402e-05,0.00021627690775391533,0.00030740481832438525,0.0003632966034742736,0.000388204899030202,0.0003523612542058171,0.0003159100899776292,0.0003092273765357947,0.00026609349886577233,0.00019440620921700255,9.477302699328874e-05,1.0327829864653261e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.014442097651016e-05,0.000210201713715884,0.0003031521824977634,0.00035782892884004533,0.0003942800930682333,0.0003462860601677858,0.00031348001236241663,0.00030740481832438525,0.00026609349886577233,0.00019440620921700255,0.00010813845387695767,1.822558211409399e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.561209561073837e-05 +2620779,5.3033186745451926e-05,1.4076710062064399e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2557495536473765e-05,0.0001227620063552128,0.0001718668088972979,0.00020100232507226838,0.00017022998214589506,0.00015484381068270838,0.00013716608176755774,0.0001135957765473569,0.00010082852788641477,7.56213959148111e-05,4.8777437191804546e-05,2.0624017067675745e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8301745982826385e-05,0.00010541164279034272,0.0001476417729765359,0.00017481309704982302,0.00019249082596497363,0.00017383100099898128,0.0001577900988352335,0.00015680800278439178,0.0001368387164172772,0.00010050116253613419,5.696157094881873e-05,9.493595158136457e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.092066878507093e-05,0.00012243464100493223,0.00017121207819673678,0.00020263915182367124,0.00019641921016834044,0.00017644992380122583,0.00015942692558663636,0.00015091542647934156,0.00013061877476194643,9.624541298248682e-05,6.023522445162441e-05,1.3749344711783833e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.961120738394866e-05,0.00012079781425352939,0.0001721941742475785,0.00020362124787451296,0.00022391789959190814,0.00020362124787451296,0.00017841411590290926,0.0001656468672419671,0.00014404075412344968,0.00010541164279034272,6.187205120302724e-05,1.5713536813467234e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3539591587315476e-05,0.00012243464100493223,0.0001721941742475785,0.0002055854399761963,0.00019903813297058502,0.00018234250010627608,0.00016270057908944203,0.00015222488788046388,0.00012963667871110468,9.690014368304796e-05,5.794366699966044e-05,1.8659824965992344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7974380632545827e-05,0.00011719679540044312,0.00016662896329280885,0.00019772867156946273,0.00021868005398741904,0.00020034759437170726,0.00017677728915150643,0.0001659742325922477,0.00014174919667148573,0.00010377481603893989,5.990785910134385e-05,1.3094614011222697e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620780,0.0001243339320480552,3.208617601240135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010267576323968429,0.0002967971281147125,0.0004195267513621476,0.0004949292649912908,0.00041230736175935733,0.00037701256814571583,0.0003312897673280439,0.00026791956970355124,0.00023823985689208003,0.0001764739680682074,0.00011551023364464485,4.812926401860202e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.385206483627393e-05,0.00025187648169735057,0.0003553543993373449,0.0004243396777640077,0.0004668538609804397,0.0004259439865646278,0.0003818254945475761,0.00037460610494478576,0.00032647684092618375,0.00024144847449332013,0.00013636624805270572,2.165816880837091e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.786283683782411e-05,0.0002967971281147125,0.00041551597936059754,0.000498137882592531,0.00048289694898664027,0.00043637199376865836,0.00038984703855067635,0.0003601673257392051,0.0003088294441193629,0.00022941615848866964,0.00014599210085642614,3.208617601240135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.545637363689402e-05,0.0002927863561131623,0.00041872459696183764,0.000500544345793461,0.0005550908450145432,0.0005077637353962513,0.0004443935377717586,0.00040268150895563686,0.00034653070093393454,0.0002574915624995208,0.00015000287285797632,3.609694801395152e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010508222644061444,0.0002967971281147125,0.0004195267513621476,0.0005053572721953212,0.0004901163385894305,0.00045241508177485903,0.00040027504575470684,0.0003730017961441657,0.00031524667932184323,0.0002358333936911499,0.0001411791744545659,4.2514183216431786e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.144560163534384e-05,0.00028316050330944183,0.000405087972156567,0.00048690772098819045,0.0005398499114086526,0.000500544345793461,0.00044118492017051857,0.00040187935455532694,0.00034171777453207434,0.00025187648169735057,0.00014518994645611608,3.0481867211781283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.743482963379367e-05,0.00028075404010851176,0.00040268150895563686,0.00048690772098819045,0.0005141809705987315,0.0004740732505832299,0.00042514183216431784,0.0003954621193528466,0.000333696230528974,0.00024626140089518034,0.00011791669684557495,1.2834470404960537e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.540251362914316e-05,0.00027032603290448137,0.00039626427375315655,0.0004804904857857102,0.0005286197498043122,0.0004748754049835399,0.00042113106016276766,0.00039145134735129645,0.00033690484813021413,0.00024626140089518034,0.00013395978485177562,1.6043088006200674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.262190323193347e-05 +2620781,0.00010832287469350213,2.599748992644051e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.026906224458511e-05,0.00026791857674192865,0.0003834629764149975,0.0004549560737127089,0.00037624145143543074,0.00034374458902738014,0.0002989711341540659,0.00023758817182774802,0.00020870207190948074,0.000151652024570903,9.965704471802197e-05,4.0440539885574126e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.30475372650183e-05,0.00022531157936248443,0.0003220800140886797,0.00038635158640682425,0.00042606997379444173,0.00038924019639865093,0.00034879965651307687,0.0003358009115498567,0.00029319391417041246,0.00021664574938700426,0.00012059946715876571,1.6609507453003662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.593614725684504e-05,0.00026791857674192865,0.00037840790892930084,0.0004578446837045357,0.0004419573287494887,0.000400794636365958,0.00035529902899468697,0.00031991355659480964,0.0002708071867337554,0.000203647004423784,0.0001285431446362892,2.5275337428483827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.30475372650183e-05,0.00026430781425214523,0.0003827408239170409,0.00046001114119840575,0.0005120061210512868,0.00046289975119023243,0.0004101826188393947,0.00036468701146812385,0.0003112477266193295,0.00023181095184409456,0.0001328760596240293,2.8163947420310554e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.171336724049848e-05,0.0002671964242439719,0.0003827408239170409,0.00046506620868410253,0.00045206746372088223,0.0004181262963169182,0.00036829777395790727,0.00034302243652942346,0.0002866945416888023,0.0002152014443910909,0.00012637668714241915,3.538547239987736e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.943677477523491e-05,0.00025419767928075166,0.0003697420789538206,0.0004477345487331422,0.0004961187660962399,0.00046001114119840575,0.000409460466341438,0.0003632427064722105,0.00030908126912545944,0.0002267558843583978,0.0001285431446362892,2.383103243257047e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.654816478340818e-05,0.000253475526782795,0.00036829777395790727,0.0004484567012310989,0.00047012127616979926,0.0004340136512719652,0.00038924019639865093,0.0003538547239987736,0.0002975268291581525,0.00021953435937883102,0.00010326780720780537,9.38798247343685e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.49937248161013e-05,0.00024408754430935812,0.00036107624897834044,0.000441235176251532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620782,0.00010438688687337177,2.4143905807446532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.734412983282126e-05,0.00026203238949846385,0.0003784912292755589,0.00045021283182120883,0.00036783950612521483,0.00033730456642756183,0.00029185721431942714,0.00023078733492412122,0.00020096251010315785,0.00014486343484467918,9.515539347640693e-05,3.7636088464549004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.095309594261484e-05,0.00021871538202039798,0.0003152910052501841,0.00037991145902893804,0.00041754754749348706,0.00038133168878231726,0.00034085514081100987,0.0003287831879072866,0.0002854661804292207,0.00021090411837681238,0.00011716895465378464,1.5622527287171283e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.379355544937325e-05,0.0002627425043751534,0.0003721001953853525,0.00045376340620465686,0.0004367206491641063,0.0003941137565627302,0.00034937651933128504,0.00031103031599004653,0.00026132227462177424,0.00019812205059639948,0.00012569033317405987,2.3433790930756928e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.095309594261484e-05,0.0002584818151150158,0.00037636088464549,0.00045447352108134647,0.0005091523665864459,0.0004594443252181737,0.00040689582434314306,0.00035647766809818106,0.00030321905234646085,0.00022723676054067324,0.00012995102243419751,2.627425043751534e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.947447446289007e-05,0.00026203238949846385,0.0003770709995221796,0.0004608645549715529,0.0004466622574377608,0.0004147070879867287,0.00036144847223500837,0.00033801468130425144,0.0002804953762923935,0.00021161423325350196,0.00012427010342068066,3.337539920441138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.740252155916683e-05,0.0002485402068413613,0.0003649990466184564,0.000444531912807692,0.0004913994946692059,0.0004573139805881049,0.0004061857094664534,0.0003550574383448019,0.0003017988225930816,0.00022155584152715638,0.00012498021829737026,2.201356117737772e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.385194717571878e-05,0.0002485402068413613,0.00036357881686507713,0.0004452420276843816,0.0004637050144783113,0.0004274891557671415,0.0003834620334123861,0.00034511583007114746,0.00028901675481266876,0.00021374457788357075,0.00010012619761323414,8.521378520275245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.320022402537474e-05,0.00024001882832108608,0.0003543473234681123,0.0004388509937941751,0.0004743567376286553,0.00043956110867086483,0.00037920134415224844,0.0003422753705643891,0.00029256732919611674,0.00021516480763694994,0.000112908265393647,7.811263643585642e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620783,1.5342732871187558e-05,3.311381195220337e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2804007288185302e-05,3.907429810359997e-05,5.828030903587793e-05,6.931824635327905e-05,5.596234219922369e-05,5.231982288448131e-05,4.371023177690844e-05,3.4659123176639524e-05,2.9250533891112973e-05,2.0309804664018066e-05,1.335590415405536e-05,5.187830539178526e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2031351675967224e-05,3.201001822046325e-05,4.7463130464824825e-05,5.7286894677311836e-05,6.291624270918639e-05,5.684537718461578e-05,5.11056497795672e-05,4.9118821062434994e-05,4.282719679151635e-05,3.1568500727767206e-05,1.710880284197174e-05,1.8764493439581909e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2141731049141234e-05,3.951581559629601e-05,5.6293480318745726e-05,6.998052259232311e-05,6.722103826297283e-05,5.80595502895299e-05,5.2761340377177356e-05,4.6580095479432735e-05,3.819126311820788e-05,2.9250533891112973e-05,1.8433355320059875e-05,2.980243075698303e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1920972302793211e-05,3.8853539357251944e-05,5.750765342365984e-05,6.953900509962707e-05,7.936276931211407e-05,7.020128133867112e-05,6.269548396283837e-05,5.430665160161351e-05,4.547630174769262e-05,3.432798505711749e-05,1.9316390305451963e-05,3.311381195220337e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3135145407707338e-05,3.962619496947002e-05,5.761803279683386e-05,7.119469569723723e-05,6.865597011423498e-05,6.435117456044854e-05,5.530006596017962e-05,5.231982288448131e-05,4.260643804516833e-05,3.234115633998529e-05,1.8654114066407894e-05,4.525554300134461e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1258696063749145e-05,3.675633126694574e-05,5.563120407970165e-05,6.865597011423498e-05,7.57202499973717e-05,7.108431632406324e-05,6.236434584331633e-05,5.3975513482091486e-05,4.5697060494040644e-05,3.3444950071725394e-05,1.8433355320059875e-05,2.7594843293502805e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.08171785710531e-05,3.763936625233783e-05,5.618310094557171e-05,6.8876728860583e-05,7.119469569723723e-05,6.512383017266663e-05,5.894258527492199e-05,5.187830539178527e-05,4.2937576164690366e-05,3.167888010094122e-05,1.4570077258969482e-05,9.934143585661008e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.051108600268921e-06,3.6204434401075686e-05,5.386513410891748e-05,6.799369387519092e-05,7.141545444358525e-05,6.755217638249487e-05,5.783879154318189e-05,5.132640852591523e-05,4.4041369896430476e-05,3.234115633998529e-05,1.622576785657965e-05,5.518968658700561e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.004452295883502e-05 +2620784,1.458610883345715e-05,3.785002925137616e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1816594497990604e-05,3.406502632623854e-05,4.800491514808683e-05,5.631345815448647e-05,4.7543329425509077e-05,4.338905792230924e-05,3.8311614973953915e-05,3.1387829135287544e-05,2.7972094788212133e-05,2.086367466051466e-05,1.3478303099270533e-05,5.631345815448647e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0801105908319536e-05,2.9264534811429856e-05,4.108112930942046e-05,4.8743452304211247e-05,5.3820895252566575e-05,4.8743452304211247e-05,4.421991222294921e-05,4.357369221134035e-05,3.81269806849228e-05,2.7972094788212133e-05,1.5693914567643772e-05,2.492562901919893e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1355008775412845e-05,3.406502632623854e-05,4.763564657002462e-05,5.6775043877064225e-05,5.4928700986753195e-05,4.9205038026789e-05,4.4773815090042525e-05,4.1911983610060425e-05,3.6096003505580674e-05,2.6679654764994403e-05,1.670940315731484e-05,3.6926857806220634e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1078057341866191e-05,3.360344060366078e-05,4.809723229260238e-05,5.705199531061088e-05,6.286797541509062e-05,5.74212638886731e-05,5.012820947194451e-05,4.6343206546806886e-05,4.02502750087805e-05,2.9356851955945405e-05,1.7078671735377044e-05,4.154271503199822e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2185863076052812e-05,3.415734347075409e-05,4.809723229260238e-05,5.760589817770419e-05,5.603650672093982e-05,5.142064949516224e-05,4.588162082422915e-05,4.265052076618484e-05,3.637295493912732e-05,2.7141240487572168e-05,1.615550029022153e-05,4.985125803839786e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0524154474772881e-05,3.249563486947416e-05,4.643552369132244e-05,5.5297969564815406e-05,6.129858395832626e-05,5.640577529900202e-05,4.9666623749366755e-05,4.643552369132244e-05,3.932710356362498e-05,2.8987583377883197e-05,1.652476886828373e-05,3.508051491590961e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0062568752195125e-05,3.212636629141195e-05,4.6066255113260245e-05,5.520565242029986e-05,5.880602105640637e-05,5.391321239708213e-05,4.865113515969569e-05,4.588162082422915e-05,3.858856640750057e-05,2.8618314799820996e-05,1.3478303099270533e-05,1.384757167733274e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.67781158446185e-06,3.092624341270979e-05,4.532771795713583e-05,5.446711526417544e-05,6.0098461079624086e-05,5.299004095192661e-05,4.809723229260238e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620785,5.6405569915796006e-05,1.6532667044285035e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.505962194422783e-05,0.0001267504473395186,0.00017570010858828408,0.00020584791319845096,0.00017505176870419447,0.00015981578142808863,0.0001400414149633556,0.00011734951902021928,0.00010535523116456147,7.974580574302192e-05,5.121885084307912e-05,2.2691895943136318e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9548732929466164e-05,0.00010924527046909916,0.00015106319299287895,0.00017861763806668732,0.00019644698487915156,0.00017570010858828408,0.00015949161148604384,0.00016013995137013342,0.00013906890513722117,0.00010308604157024786,6.0943949104423264e-05,1.2642627739747378e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.311460229195902e-05,0.0001270746172815634,0.00017537593864623926,0.00020682042302458533,0.00020228204383595806,0.0001831560172553146,0.0001620849710224023,0.00015300821264514777,0.0001351788658326835,0.00010049268203388943,6.35373086407817e-05,1.7181006928374643e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.084541269764538e-05,0.00012480542768724976,0.00017472759876214965,0.00020746876290867494,0.00022918814902567685,0.00020714459296663015,0.0001828318473132698,0.00016727169009511916,0.00014522813403607246,0.00010859693058500955,6.548232829305053e-05,1.9774366464733082e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.570796182831745e-05,0.00012610210745542897,0.00017537593864623926,0.00020876544267685418,0.00020066119412573408,0.0001838043571394042,0.00016240914096444712,0.00015268404270310298,0.00012804712710769782,9.757515255548619e-05,5.964726933624405e-05,2.1071046232912303e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.019707281355577e-05,0.00012156372826680172,0.00017083755945761204,0.00020260621377800287,0.00022302892012682557,0.00020552374325640612,0.00017959014789282175,0.00016792002997920882,0.00014457979415198285,0.00010665191093274072,6.224062887260248e-05,1.6532667044285035e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.857622310333176e-05,0.0001196187086145329,0.00016921670974738803,0.00020195787389391327,0.00021622135134388462,0.00019871617447346523,0.00017505176870419447,0.00016792002997920882,0.00014490396409402767,0.00010600357104865111,5.348804043739277e-05,7.455908667030506e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3389504030614875e-05,0.00011540449936795043,0.00016662335021102958,0.00019904034441551002,0.00022011139064842232,0.0002003370241836892,0.00017699678835646335,0.00016792002997920882,0.00014522813403607246,0.00010600357104865111,6.061977916237846e-05,1.1345947971568159e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6307033509018114e-05 +2620786,4.083362711797394e-05,1.1247585912735337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.27647067892725e-05,9.364837836038333e-05,0.00013081431441985662,0.00015282046077086058,0.00012836918704752285,0.00011761062660925429,0.00010391791332418516,8.606848350614866e-05,7.702151222851371e-05,5.7949518724310315e-05,3.741044879670666e-05,1.58933279201695e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.909701573077185e-05,8.044469054978099e-05,0.00011198683365288661,0.00013252590358049025,0.00014548507865385924,0.0001313033398943234,0.00011883319029542116,0.00011883319029542116,0.00010318437511248504,7.628797401681358e-05,4.4012292702007846e-05,8.068920328701438e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1297630365872235e-05,9.389289109761672e-05,0.00013056980168262326,0.00015453204993149414,0.00014964179518682665,0.0001352155436900574,0.00012054477945605478,0.00011516549923692052,0.00010000570952845115,7.384284664447981e-05,4.6701932811574984e-05,1.1492098649968712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0075066679705356e-05,9.218130193698308e-05,0.00013105882715709,0.00015502107540596094,0.00017018086511443032,0.00015453204993149414,0.00013594908190175752,0.00012543503420072233,0.00010905268080608608,8.044469054978099e-05,4.792449649774186e-05,1.3203687810602351e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.349824500097263e-05,9.364837836038333e-05,0.00013081431441985662,0.00015624363909212783,0.0001501308206612934,0.00013766067106239118,0.00012201185587945507,0.00011492098649968712,9.804960763058412e-05,7.286479569554632e-05,4.4012292702007846e-05,1.4915276971235989e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.909701573077185e-05,9.022520003911607e-05,0.00012763564883582274,0.00015061984613576015,0.0001665131740559296,0.00015282046077086058,0.00013399298000389053,0.00012567954693795574,0.0001078301171199192,7.873310138914736e-05,4.645742007434161e-05,1.1003073175501961e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7874452044604963e-05,8.851361087848244e-05,0.0001259240596751891,0.00015037533339852676,0.00015991133015062846,0.00014646312960279274,0.00013056980168262326,0.00012445698325178886,0.00010611852795928557,7.82440759146806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620787,5.019938682323759e-05,1.3634401359397864e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.09032040781936e-05,0.00011713190258755441,0.0001639226890709425,0.00019367047385508333,0.00016051408873109309,0.00014811917840436772,0.00012983668567244784,0.0001050468650189972,9.420131848311254e-05,7.065098886233439e-05,4.617104096705186e-05,1.9521983764592393e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.687485822200787e-05,9.946915537197077e-05,0.0001388229956593237,0.0001657819256199513,0.00018189530904469422,0.00016547205286178318,0.00014842905116253585,0.00014718956012986333,0.00012766757636527092,9.48210639994488e-05,5.5157350953927724e-05,9.915928261380264e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9043967529184786e-05,0.00011744177534572252,0.0001636128163127744,0.00019521983764592398,0.00018871250972439315,0.00017166950802514585,0.00015214752426055345,0.0001422315959991732,0.00012332935775091706,9.141246365959933e-05,5.8565951293777203e-05,1.3944274117566001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8114349254680394e-05,0.0001152726660385456,0.0001639226890709425,0.00019583958316226021,0.00021629118520135706,0.00019738894695310092,0.00017352874457415466,0.0001571054883912436,0.00013634401359397867,0.00010101851916281147,6.011531508461786e-05,1.611338342474293e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2142695110866135e-05,0.00011713190258755441,0.00016423256182911063,0.00019738894695310092,0.0001899520007570657,0.0001750781083649953,0.0001543166335677304,0.00014502045082268636,0.00012270961223458077,9.141246365959933e-05,5.5777096470264006e-05,1.7972619973751732e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.656498546383973e-05,0.00011248381121503239,0.00015958447045658867,0.00019057174627340196,0.00021102334831249873,0.00019583958316226021,0.00017135963526697772,0.00015679561563307543,0.00013448477704496985,9.822966433929827e-05,5.825607853560906e-05,1.3324528601229731e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.501562167299906e-05,0.00011031470190785545,0.00015772523390757985,0.00019026187351523383,0.0002011074200511185,0.00018561378214271187,0.00016485230734544694,0.00015493637908406665,0.00013200579497962478,9.730004606479385e-05,4.803027751606067e-05,5.887582405194534e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0367530300477063e-05,0.00010690610156800598,0.0001552462518422348,0.0001874730186917206,0.00020668512969814487,0.00018654340041721626,0.0001664016711362876,0.00015369688805139413,0.0001329354132541292,9.699017330662571e-05,5.422773267942333e-05,7.746818954203333e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.315638512399027e-05 +2620788,4.168535290878136e-05,1.2053596021816296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.415185539514617e-05,9.441983550422764e-05,0.00013158508990482792,0.00015519004878088478,0.0001300783904021009,0.00012003372705058728,0.00010471561543952907,8.613298823922894e-05,7.734390780665456e-05,5.800793085499093e-05,3.8169720735751605e-05,1.6824811113785248e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.013399005454074e-05,8.01061902283208e-05,0.0001112446466180129,0.00013208732307240357,0.00014564761859694688,0.00013058062356967654,0.00011877814413164807,0.00011852702754786025,0.00010346003252058987,7.659055805529105e-05,4.545210166559895e-05,9.291313600150063e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2645155892419135e-05,9.542430183937901e-05,0.00013133397332104006,0.00015594339853224837,0.00015167441660785506,0.00013811412108331172,0.00012229377630467784,0.00011526251195861833,0.00010119998326649931,7.508385855256402e-05,4.821438408726518e-05,1.2555829189391976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189180614105561e-05,9.341536916907629e-05,0.00013183620648861573,0.00015669674828361186,0.0001735215593973971,0.00015644563169982403,0.00013836523766709956,0.0001260605250614954,0.00010973794711528587,8.136177314726e-05,4.921885042241654e-05,1.456476185969469e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.490520514650968e-05,9.46709520880155e-05,0.00013208732307240357,0.00015795233120255103,0.0001511721834402794,0.0001386163542508874,0.00012229377630467784,0.00011526251195861833,9.843770084483308e-05,7.307492588226131e-05,4.570321824938679e-05,1.5569228194846048e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.063622322211642e-05,9.16575530825614e-05,0.0001285716908993738,0.00015267888294300642,0.0001682481111378525,0.00015644563169982403,0.00013510072207785766,0.00012631164164528326,0.00010923571394771018,7.910172389316943e-05,4.746103433590167e-05,1.2053596021816296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.938064030317722e-05,8.989973699604652e-05,0.00012681387481285893,0.00015217664977543074,0.00016171907995936864,0.0001489121341861888,0.00013208732307240357,0.00012555829189391974,0.00010848236419634666,7.935284047695726e-05,4.017865340605432e-05,5.524564843332468e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.536277496257179e-05,8.688633799059247e-05,0.00012480494214255625,0.00015016771710512803,0.00016498359554861054,0.00015167441660785506,0.00013384513915891847,0.0001253071753101319,0.00010923571394771018,7.910172389316943e-05,4.520098508181112e-05,7.784614097423024e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7873940800450188e-05 +2620789,3.038623283822184e-05,8.529468866869288e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.398913118806987e-05,6.876884273913363e-05,9.560113021615993e-05,0.00011106079253736054,9.43572493397415e-05,8.565008320481243e-05,7.569903619346494e-05,6.414871376957943e-05,5.721852031524815e-05,4.318043613852577e-05,2.7720773817325188e-05,1.1905716960005049e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.132367216717322e-05,5.952858480002524e-05,8.262922964779625e-05,9.720040562869793e-05,0.0001066183608358661,9.560113021615993e-05,8.653856954511134e-05,8.778245042152974e-05,7.623212799764427e-05,5.6330033974949255e-05,3.2518600054939164e-05,6.219404382092189e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.292294757971121e-05,6.876884273913363e-05,9.542343294810015e-05,0.0001119492788776594,0.00010857303078452364,9.80888919689968e-05,8.74270558854102e-05,8.440620232839399e-05,7.356666897674761e-05,5.437536402629171e-05,3.411787546747715e-05,8.529468866869288e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.185676397135255e-05,6.770265913077497e-05,9.542343294810015e-05,0.00011248237068183875,0.00012314420676542536,0.00011141618707348007,9.844428650511637e-05,9.151409305078507e-05,7.97860733588398e-05,5.8817795727786135e-05,3.518405907583581e-05,9.951047011347504e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.45222229922492e-05,6.876884273913363e-05,9.560113021615993e-05,0.00011319315975407784,0.0001089284253206432,9.915507557735549e-05,8.813784495764931e-05,8.369541325615489e-05,7.090120995585095e-05,5.330918041793305e-05,3.216320551881961e-05,1.1194927887765939e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.132367216717322e-05,6.610338371823698e-05,9.311336846332307e-05,0.00010963921439288231,0.00012030105047646891,0.00010928381985676274,9.595652475227949e-05,9.151409305078507e-05,7.889758701854093e-05,5.7929309387487255e-05,3.3584783663297824e-05,8.174074330749734e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0435185826874335e-05,6.468180557375877e-05,9.186948758690462e-05,0.00010910612258870296,0.00011621401331109404,0.00010608526903168678,9.453494660780129e-05,9.13363957827253e-05,7.854219248242137e-05,5.7396217583307915e-05,2.825386562150451e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620790,2.4127050926620574e-05,6.395121932357259e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9040022116790936e-05,5.508525482644095e-05,7.703215054884881e-05,8.924101969243995e-05,7.645077582772543e-05,6.874756077284054e-05,6.14803767587982e-05,5.145166281941978e-05,4.578325928846675e-05,3.444645222656069e-05,2.209223940268872e-05,9.301995537974196e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.700521059285908e-05,4.781807081239861e-05,6.671274924890869e-05,7.848558735165728e-05,8.647948976710388e-05,7.775886895025306e-05,7.092771597705326e-05,7.10730596573341e-05,6.17710641193599e-05,4.534722824762421e-05,2.5435144049148192e-05,4.3603104084254046e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8167960035105853e-05,5.479456746587925e-05,7.659611950800627e-05,8.996773809384421e-05,8.735155184878894e-05,7.81948999910956e-05,7.10730596573341e-05,6.816618605171718e-05,5.900953419402382e-05,4.331241672369235e-05,2.674323717167582e-05,6.104434571795567e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.758658531398247e-05,5.4213192744755876e-05,7.688680686856797e-05,9.040376913468675e-05,9.883370259097584e-05,8.953170705300166e-05,7.906696207278069e-05,7.412527694323188e-05,6.4532594044696e-05,4.7091352410994375e-05,2.7469955573080052e-05,6.976496653480648e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9476053157633475e-05,5.4939911146160105e-05,7.688680686856797e-05,9.113048753609096e-05,8.836895761075488e-05,8.052039887558914e-05,7.223580909958089e-05,6.8311529731998e-05,5.7992128432057886e-05,4.331241672369235e-05,2.572583140970989e-05,8.575277136569964e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.700521059285908e-05,5.246906858138571e-05,7.456130798407442e-05,8.778758288963149e-05,9.679889106704398e-05,8.822361393047403e-05,7.848558735165728e-05,7.441596430379357e-05,6.380587564329177e-05,4.650997768987098e-05,2.6597893491394972e-05,5.813747211233873e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6133148511174e-05,5.159700649970062e-05,7.368924590238934e-05,8.764223920935062e-05,9.34559864205845e-05,8.488070928401455e-05,7.688680686856797e-05,7.397993326295105e-05,6.293381356160669e-05,4.621929032930929e-05,2.1946895722407873e-05,2.1801552042127023e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4098336987242142e-05,4.970753865604962e-05,7.252649646014257e-05,8.618880240654215e-05,9.490942322339297e-05,8.168314831783592e-05,7.557871374604035e-05,7.29625275009851e-05,6.293381356160669e-05,4.592860296874759e-05,2.528980036886735e-05,3.778935687302017e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5261086429488917e-05 +2620791,4.434711640042335e-05,1.2094668109206371e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5208922717911876e-05,0.00010078890091005307,0.00014056692046922068,0.00016287486387064573,0.0001408356908716475,0.0001257845483357462,0.00011342110982411304,9.54134928615169e-05,8.520021756929819e-05,6.423612618000716e-05,4.112187157130166e-05,1.747007615774253e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.117736668150975e-05,8.815669199599309e-05,0.00012255930350662454,0.00014352339489591558,0.00015884330783424362,0.00014244831328620832,0.00013035364517700198,0.00013196626759156283,0.00011422742103139347,8.358759515473735e-05,4.6497279619837815e-05,7.794341670377438e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.359630030335102e-05,0.00010052013050762626,0.0001402981500667939,0.00016394994548035298,0.00015938084863909724,0.00014298585409106197,0.00012981610437214837,0.00012605331873817306,0.00010938955378771093,8.009357992318885e-05,4.891621324167909e-05,1.1288356901925944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.27899890960706e-05,9.998258970277265e-05,0.0001408356908716475,0.00016502502709006022,0.0001800761696259615,0.00016233732306579214,0.0001440609357007692,0.00013599782362796494,0.00011879651787264923,8.654406958143224e-05,5.026006525381313e-05,1.2900979316486791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.60152339251923e-05,0.00010105767131247987,0.00014056692046922068,0.00016610010869976745,0.00016126224145608488,0.00014621109892018364,0.00013223503799398962,0.0001257845483357462,0.00010589553855616242,7.955603911833522e-05,4.703482042469143e-05,1.5857453743181683e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.144613708393655e-05,9.648857447122412e-05,0.00013572905322553814,0.0001596496190415241,0.00017577584318713253,0.00015991838944395088,0.00014379216529834235,0.00013707290523767217,0.00011745266586051518,8.5468987971725e-05,4.864744283925229e-05,1.0750816097072328e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.983351466937571e-05,9.460718165423648e-05,0.0001346539716158309,0.00015938084863909724,0.00017093797594345,0.0001548117517978415,0.00014056692046922068,0.00013653536443281855,0.00011718389545808838,8.5468987971725e-05,4.0584330766448034e-05,3.7627856339753145e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6070729035400394e-05,9.165070722754159e-05,0.00013250380839641642,0.00015669314461482918,0.00017255059835801084,0.00014916757334687856,0.00013787921644495258,0.00013492274201825768,0.00011637758425080796,8.493144716687137e-05,4.676605002226463e-05,7.256800865523821e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8489662657241665e-05 +2620792,6.279676286331976e-05,1.825487292538365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.855796198152052e-05,0.0001369115469403774,0.00019131106825802068,0.00022161415731415752,0.00019386675046757435,0.00017488168262517535,0.00015589661478277638,0.000133990767272316,0.00011829157655648605,9.054416970990292e-05,5.622500861018164e-05,2.409643226150642e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271640264539774e-05,0.00012084725876603978,0.00016757973345502193,0.00019751772505265108,0.00022088396239714213,0.00019788282251115874,0.0001785326572102521,0.0001814534368783135,0.00015553151732426872,0.00011573589434693234,6.571754253138116e-05,1.2413313589260883e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.636737723047447e-05,0.0001369115469403774,0.00018985067842398998,0.00022343964460669587,0.00022088396239714213,0.0002000734072622048,0.0001774373648347291,0.00017524678008368306,0.0001500550554466536,0.0001120849197618556,6.644773744839649e-05,1.7524678008368304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.527208485495146e-05,0.00013581625456485436,0.00019021577588249766,0.00022343964460669587,0.00024717097940969463,0.00022490003444072655,0.00019715262759414343,0.00018218363179532882,0.0001595475893678531,0.0001190217714735014,6.973361457496554e-05,2.0445457676429692e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.965325435704353e-05,0.0001365464494818697,0.00019021577588249766,0.00022526513189923426,0.00021796318272908078,0.00019788282251115874,0.00017634207245920607,0.0001664844410794989,0.00013727664439888506,0.00010733865280125588,6.462225015585812e-05,2.3001139885983397e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3811695020920764e-05,0.00013070489014574692,0.00018327892417085181,0.00021613769543654243,0.00024023412769804886,0.00021942357256311145,0.00019569223776011275,0.00018546950892189788,0.00015808719953382241,0.00011829157655648605,6.75430298239195e-05,1.679448309135296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1986207728382395e-05,0.00012924450031171625,0.00018327892417085181,0.00021869337764609615,0.00023694825057147975,0.00021467730560251175,0.00018985067842398998,0.00018619970383891322,0.00016027778428486845,0.00011829157655648605,5.8050495902720006e-05,5.841559336122767e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.614464839225963e-05,0.00012522842826813183,0.00017999304704428279,0.00021358201322698873,0.0002380435429470028,0.0002117565259344503,0.00018985067842398998,0.0001829138267123442,0.00015808719953382241,0.00011756138163947071,6.608263998988882e-05,1.2413313589260883e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.979562297733636e-05 +2620793,2.474033669464479e-05,7.090218442977469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9762098213405292e-05,5.4911479005187216e-05,7.633299004567233e-05,8.809973554678388e-05,7.663470146877777e-05,6.894106017958944e-05,6.20016974481647e-05,5.3101210466554665e-05,4.73686934275516e-05,3.575280363799277e-05,2.277921244445953e-05,9.654765539373574e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7499262540114607e-05,4.812297198531517e-05,6.637651308319333e-05,7.799240287275216e-05,8.644032271970406e-05,7.678555718033047e-05,7.029876158356386e-05,7.22598858337491e-05,6.230340887127011e-05,4.60109920235772e-05,2.60980380986192e-05,4.827382769686787e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8856963944089016e-05,5.4911479005187216e-05,7.60312786225669e-05,8.930658123920557e-05,8.734545698902031e-05,7.874668143051574e-05,7.044961729511657e-05,7.029876158356386e-05,6.064399604419027e-05,4.4653290619602786e-05,2.685231665638276e-05,6.788507019872047e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8706108232536303e-05,5.47606232936345e-05,7.618213433411963e-05,8.945743695075828e-05,9.881049106702644e-05,8.945743695075828e-05,7.889753714206845e-05,7.422101008393436e-05,6.516966739077163e-05,4.7972116273762456e-05,2.8059162348804458e-05,7.995352712293743e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0063809636510715e-05,5.46097675820818e-05,7.60312786225669e-05,9.036257122007456e-05,8.689288985436219e-05,7.859582571896301e-05,7.060047300666927e-05,6.788507019872044e-05,5.6118324697608915e-05,4.314473350407567e-05,2.5947182387066486e-05,9.051342693162728e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.780097396322003e-05,5.2346931908791105e-05,7.286330867995995e-05,8.598775558504591e-05,9.534080970131405e-05,8.689288985436219e-05,7.799240287275216e-05,7.482443293014521e-05,6.381196598679721e-05,4.72178377159989e-05,2.715402807948819e-05,6.637651308319333e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6895839693903758e-05,5.144179763947484e-05,7.286330867995995e-05,8.70437455659149e-05,9.383225258578694e-05,8.478090989262422e-05,7.572956719946148e-05,7.542785577635606e-05,6.486795596766621e-05,4.73686934275516e-05,2.3080923867564956e-05,2.4136913848433936e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620794,3.809557815152449e-05,1.088445090043557e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05237862207867e-05,8.518265922080011e-05,0.00011901910441128458,0.00013771196574029353,0.00011901910441128458,0.0001076614165151779,9.677696561474236e-05,8.2579855744609e-05,7.311511583118674e-05,5.584196548919118e-05,3.572939317316894e-05,1.5143583861475573e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.721112725108892e-05,7.50080638138712e-05,0.00010363890205197347,0.00012185852638531126,0.0001360556362554446,0.00012162190788747572,0.00011168393097838237,0.00011405011595673794,9.772343960608455e-05,7.216864183984454e-05,4.0225144632044495e-05,7.335173432902232e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.934069373160893e-05,8.589251471430678e-05,0.00011925572290912012,0.00013889505822947128,0.0001360556362554446,0.00012233176338098236,0.00011050083848920458,0.00010884450900435568,9.417416213855124e-05,6.932921986581788e-05,4.1644855619057826e-05,1.0174595406928903e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8867456735937814e-05,8.541927771863566e-05,0.00011972895990479125,0.0001405513877143202,0.0001533287865974402,0.00013700211024678682,0.0001220951448831468,0.00011499658994808014,0.0001007994800779468,7.358835282685787e-05,4.3064566606071164e-05,1.1594306393942237e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1233641714293375e-05,8.565589621647123e-05,0.0001194923414069557,0.00014173448020349795,0.00013700211024678682,0.00012280500037665352,0.00011215716797405345,0.00010671494252383568,8.873193668833345e-05,6.767289038096897e-05,4.069838162771561e-05,1.3960491372297796e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7447745748924476e-05,8.163338175326677e-05,0.00011381349745890238,0.00013463592526843126,0.00014930627213423576,0.0001360556362554446,0.00012256838187881794,0.00011759939342427128,9.985300608660455e-05,7.382497132469342e-05,4.2118092614728934e-05,9.937976909093347e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6264653259746703e-05,8.045028926408899e-05,0.00011381349745890238,0.00013534578076193794,0.0001464668501602091,0.00013250635878791125,0.00011901910441128458,0.0001178360119221068,0.0001007994800779468,7.382497132469342e-05,3.5492774675333374e-05,3.549277467533338e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2478757294377808e-05,7.8320722783569e-05,0.00011239378647188903,0.00013274297728574683,0.0001464668501602091,0.0001296669368138846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620795,4.650822261319988e-05,1.3759829175502924e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.605075243981766e-05,0.00010127234273170151,0.00014145104392417006,0.00016374196718848478,0.00014420300975927065,0.0001307183771672778,0.00011695854799177484,9.989635981415123e-05,8.806290672321871e-05,6.769835954347438e-05,4.2655470444059065e-05,1.8713367678683976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.219800027067684e-05,9.053967597480924e-05,0.00012493924891356653,0.00014750536876139135,0.00016566834327305522,0.00014888135167894162,0.00013512152250343872,0.00013677270200449908,0.00011613295824124467,8.696212038917847e-05,4.870979528128035e-05,9.356683839341988e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.467476952226736e-05,0.00010154753931521157,0.00014090065075714992,0.00016649393302358535,0.00016374196718848478,0.00014860615509543158,0.00013209436008482806,0.0001304431805837677,0.00011145461632157367,8.283417163652761e-05,4.953538503181053e-05,1.2934239424972748e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.329878660471708e-05,0.00010017155639766129,0.00014117584734066,0.00016649393302358535,0.00018383131778471903,0.00016594353985656526,0.0001455789926768209,0.00013594711225396885,0.00011888492407634526,8.861329989023882e-05,5.173695769989099e-05,1.4860615509543158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.687634219034784e-05,0.00010154753931521157,0.00014172624050768013,0.00016869550569166583,0.00016346677060497474,0.00014805576192841144,0.00013236955666833815,0.00012521444549707658,0.00010374911198329204,8.063259896844714e-05,4.870979528128035e-05,1.761258134464374e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.24731968541869e-05,9.659400081203053e-05,0.00013512152250343872,0.000159889215019344,0.00017887777928153798,0.0001629163774379546,0.000146129385843841,0.0001389742746725795,0.00011778413774230503,8.833810330672875e-05,5.063617136585076e-05,1.265904284146269e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1097213936636605e-05,9.604360764501041e-05,0.0001356719156704588,0.00016264118085444456,0.00017640101002994746,0.000159889215019344,0.00014145104392417006,0.00014035025759012983,0.00011943531724336538,8.833810330672875e-05,4.2930667027569115e-05,4.403145336160935e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.669406860047567e-05,9.219085547586958e-05,0.00013347034300237838,0.00015796283893477353,0.00017640101002994746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620796,2.209076920586414e-05,6.293300529577575e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.74671198371949e-05,4.931892659913854e-05,6.858413230192704e-05,7.950108220017386e-05,6.832726289255653e-05,6.164865824892319e-05,5.458474949123407e-05,4.6493363096062904e-05,4.161284431802315e-05,3.159493735257313e-05,2.0035813930900032e-05,8.73355991859745e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5412164562230797e-05,4.3025626069560976e-05,5.9722137678644346e-05,6.999691405346486e-05,7.706082281115397e-05,6.832726289255653e-05,6.216239706766421e-05,6.331830940983152e-05,5.484161890060458e-05,4.0585366680541086e-05,2.3503550957401963e-05,4.623649368669239e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6696511609083363e-05,4.931892659913854e-05,6.832726289255653e-05,7.988638631422963e-05,7.821673515332129e-05,6.999691405346486e-05,6.19055276582937e-05,6.0621180611441135e-05,5.304353303501099e-05,3.955788904305904e-05,2.4274159185513507e-05,6.293300529577575e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6054338085657078e-05,4.867675307571227e-05,6.8070393483186e-05,8.027169042828539e-05,8.797777270940079e-05,7.950108220017386e-05,7.063908757689115e-05,6.537326468479563e-05,5.715344358493921e-05,4.238345254613469e-05,2.5301636822995555e-05,7.4492128717448846e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7852423951250666e-05,4.906205718976803e-05,6.8070393483186e-05,8.05285598376559e-05,7.770299633458025e-05,7.076752228157641e-05,6.28045705910905e-05,5.9722137678644346e-05,4.9575796008509066e-05,3.801667258683596e-05,2.2989812138660934e-05,8.091386395171167e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.566903397160131e-05,4.726397132417444e-05,6.627230761759243e-05,7.808830044863604e-05,8.566594802506615e-05,7.834516985800655e-05,6.961160993940909e-05,6.588700350353665e-05,5.625440065214241e-05,4.199814843207891e-05,2.401728977614299e-05,6.164865824892318e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5026860448175025e-05,4.636492839137764e-05,6.588700350353665e-05,7.795986574395078e-05,8.373942745478732e-05,7.641864928772771e-05,6.742821995975972e-05,6.588700350353665e-05,5.689657417556869e-05,4.161284431802315e-05,2.067798745432632e-05,2.440259389019876e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.297190517321092e-05,4.482371193515457e-05,6.473109116136933e-05,7.693238810646872e-05,8.502377450163991e-05,7.577647576430141e-05,6.781352407381551e-05,6.588700350353665e-05,5.676813947088343e-05,4.148440961333789e-05,2.3375116252716708e-05,4.238345254613469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4127817515378229e-05 +2620797,2.5847325813441285e-05,7.447534556415285e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9860092150440764e-05,5.6367614485809815e-05,7.85641880657142e-05,9.126880583842262e-05,8.017051904847044e-05,7.228489422403072e-05,6.410720922090804e-05,5.46152534137121e-05,4.8335959572028624e-05,3.679958251405199e-05,2.2634663847928807e-05,9.784015985878906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7231550542294192e-05,4.9358170197418954e-05,6.834208181181084e-05,8.075463940583634e-05,8.995453503434933e-05,8.10466995845193e-05,7.286901458139662e-05,7.345313493876252e-05,6.32310286848592e-05,4.7167718857296806e-05,2.7015566528173096e-05,5.4031133056346185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8983911614391906e-05,5.6367614485809815e-05,7.798006770834828e-05,9.199895628512999e-05,9.126880583842262e-05,8.338318101398291e-05,7.301504467073809e-05,7.140871368798186e-05,6.147866761276147e-05,4.5999478142564995e-05,2.745365679619752e-05,7.30150446707381e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8399791257025997e-05,5.578349412844391e-05,7.798006770834828e-05,9.185292619578852e-05,0.00010222106253903333,9.37513173572277e-05,8.177685003122667e-05,7.47674057428358e-05,6.527544993563987e-05,4.892007992939453e-05,2.876792760027081e-05,8.761805360488572e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0298182418465185e-05,5.607555430712685e-05,7.798006770834828e-05,9.243704655315443e-05,8.937041467698343e-05,8.163081994188521e-05,7.199283404534774e-05,6.746590127576201e-05,5.549143394976095e-05,4.3662996713101386e-05,2.628541608146572e-05,9.491955807195953e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7815670899660098e-05,5.373907287766324e-05,7.535152610020171e-05,8.907835449830048e-05,9.915443066286233e-05,9.097674565973967e-05,8.060860931649485e-05,7.535152610020171e-05,6.439926939959099e-05,4.818992948268714e-05,2.7891747064221955e-05,7.155474377732333e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.708552045295271e-05,5.315495252029734e-05,7.535152610020171e-05,9.010056512369081e-05,9.75480996801061e-05,8.893232440895899e-05,7.812609779768976e-05,7.593564645756762e-05,6.542148002498133e-05,4.848198966137009e-05,2.39489346520021e-05,2.6285416081465715e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.489506911283057e-05,5.1548621537541095e-05,7.41832853854699e-05,8.805614387291014e-05,9.842428021615496e-05,8.878629431961753e-05,7.871021815505565e-05,7.520549601086023e-05,6.483735966761544e-05,4.818992948268714e-05,2.716159661751457e-05,5.111053126951667e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.620933991690386e-05 +2620798,5.224597597178131e-05,1.5788619112351496e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0763343890071126e-05,0.00011195566279667421,0.00015645086211330117,0.0001845833107134911,0.00016276630975824177,0.00014697769064589026,0.00013004080832536776,0.00010851087317216119,9.616704368432275e-05,7.348884532294513e-05,4.621759412888347e-05,2.0955803549121073e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.502202784921604e-05,9.616704368432275e-05,0.00013463386115805185,0.00016104391494598525,0.00018056438948489255,0.00016334044136232727,0.00014640355904180477,0.00014439409842750549,0.00012487362388859818,9.358345146593795e-05,5.540369979425161e-05,1.2343829487838441e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.904094907781461e-05,0.00011195566279667421,0.00015530259890513012,0.00018573157392166214,0.00018659277132779037,0.00017223948122565264,0.00014984834866631783,0.00014066224300094966,0.0001228641632742989,9.186105665368143e-05,5.6551963002422625e-05,1.607568491439425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7892685869643593e-05,0.00011080739958850322,0.00015472846730104462,0.00018487037651553388,0.00020898390388712524,0.00019405648218090196,0.00016850762579909682,0.00014898715126018957,0.00013004080832536776,9.788943849657927e-05,5.913555522080741e-05,1.9520474538907304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.105040969211389e-05,0.00011080739958850322,0.0001550155331030874,0.00018630570552574763,0.00018113852108897808,0.00016850762579909682,0.00014726475644793302,0.00013434679535600906,0.00010994620218237493,8.669387221691185e-05,5.3107173377909575e-05,1.9807540340950052e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.645735685942981e-05,0.00010621434675581915,0.00014984834866631783,0.00018027732368284976,0.00020266845624218464,0.00018888929774413244,0.00016592403358071202,0.00015013541446836056,0.00012889254511719671,9.674117528840825e-05,5.626489720037987e-05,1.5788619112351496e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.502202784921604e-05,0.00010564021515173364,0.00015070954607244606,0.00018171265269306358,0.00019893660081562886,0.00018400917910940556,0.000161330980748028,0.00015214487508265982,0.00013061493992945326,9.702824109045098e-05,4.9375317951353763e-05,6.889579249026106e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.042897501653197e-05,0.00010248249132926333,0.00014783888805201855,0.00017826786306855054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620799,3.486995493987428e-05,1.044128594244823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.777776071481511e-05,7.742312029022935e-05,0.00010736794035159031,0.00012588644749480038,0.00010894398351271456,9.909371375568793e-05,8.687937925697491e-05,7.289199620199709e-05,6.540579118665684e-05,4.9645359575414227e-05,3.152086322248523e-05,1.3987383054977818e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4231663602285517e-05,6.69818343477811e-05,9.259253571605035e-05,0.00010992901048841725,0.00012194633959198974,0.0001091409889078551,9.88967083605474e-05,9.850269757026632e-05,8.530333609585066e-05,6.363274263039205e-05,3.7431025076701215e-05,8.07722120076184e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.639872294883138e-05,7.722611489508881e-05,0.0001067769241661687,0.0001266744690753625,0.00012529543130937877,0.00011386911839122787,0.0001000787407313906,9.377456808689355e-05,8.313627674930479e-05,6.205669946926779e-05,3.861305744754441e-05,1.0638291337588765e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5413695973128713e-05,7.624108791938613e-05,0.00010638291337588763,0.00012628045828508145,0.00014125286831576193,0.00012884152842190837,0.00011288409141552524,0.00010204879468279595,8.884943320838024e-05,6.658782355750003e-05,3.9992095213528135e-05,1.260834528899409e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7974766109955636e-05,7.663509870966722e-05,0.00010657991877102817,0.0001272654852607841,0.00012312837196283292,0.00011327810220580629,9.988173533625006e-05,9.298654650633143e-05,7.663509870966722e-05,5.9495629332440875e-05,3.6248992705858016e-05,1.319936147441569e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4822679787707113e-05,7.368001778255922e-05,0.00010342783244877964,0.00012332537735797346,0.0001369187496226702,0.00012687147447050306,0.00011150505364954149,0.00010263981086821753,8.825841702295864e-05,6.579980197693791e-05,3.802204126212281e-05,1.044128594244823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.364064741686392e-05,7.289199620199709e-05,0.00010323082705363914,0.0001237193881482545,0.0001339636686955622,0.000123522382753114,0.00010815596193215246,0.00010342783244877964,8.904643860352076e-05,6.560279658179739e-05,3.3096906383609493e-05,4.531124088232252e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0685566489755935e-05,7.052793146031068e-05,0.00010145777849737434,0.00012174933419684918,0.000135736717251827,0.00012431040433367614,0.00010933799430299566,0.00010323082705363914,8.884943320838024e-05,6.540579118665684e-05,3.7431025076701215e-05,7.486205015340243e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2458615046020726e-05 +2620800,1.9008281020459705e-05,5.88843488133806e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.487604601601194e-05,4.059920891869926e-05,5.6921537186267914e-05,6.725212469738732e-05,5.950418406404776e-05,5.382236093293209e-05,4.741739667603806e-05,3.9359538417364926e-05,3.502069166269477e-05,2.675622165379926e-05,1.6942163518235825e-05,7.747940633339552e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.280992851378806e-05,3.481407991247239e-05,4.865706717737239e-05,5.847112531293581e-05,6.57025365707194e-05,5.960748993915895e-05,5.340913743248731e-05,5.2169466931152985e-05,4.5144667423591797e-05,3.3987632911582835e-05,2.024795152179403e-05,4.648764380003732e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4256210765344775e-05,4.059920891869926e-05,5.640500781071195e-05,6.766534819783208e-05,6.828518344849926e-05,6.332650144316193e-05,5.506203143426643e-05,5.1033102304929845e-05,4.462813804803582e-05,3.3471103536026864e-05,2.076448089735e-05,5.991740756449253e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3842987264900002e-05,4.018598541825448e-05,5.609509018537835e-05,6.735543057249852e-05,7.644634758228359e-05,7.117774795161269e-05,6.167360744138284e-05,5.402897268315448e-05,4.710747905070448e-05,3.553722103825075e-05,2.1590927898239552e-05,7.231411257783581e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.508265776623433e-05,4.018598541825448e-05,5.619839606048956e-05,6.787195994805449e-05,6.611576007116418e-05,6.167360744138284e-05,5.382236093293209e-05,4.8760373052483585e-05,3.997937366803208e-05,3.150829190891418e-05,1.9318198645793283e-05,7.334717132894776e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.332645788934403e-05,3.8533091416475374e-05,5.4545502058710456e-05,6.57025365707194e-05,7.41736183298373e-05,6.942154807472239e-05,6.0847160440493284e-05,5.4545502058710456e-05,4.6797561425370894e-05,3.5227303412917166e-05,2.0557869147127614e-05,5.88843488133806e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2913234388899252e-05,3.8429785541364176e-05,5.475211380893283e-05,6.632237182138655e-05,7.283064195339179e-05,6.75620423227209e-05,5.9194266438714187e-05,5.52686431844888e-05,4.741739667603806e-05,3.5330609288028365e-05,1.8078528144458955e-05,2.6859527528910443e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1157034512008955e-05,3.719011504002986e-05,5.37190550578209e-05,6.508270132005223e-05,7.334717132894776e-05,6.859510107383283e-05,5.960748993915895e-05,5.464880793382163e-05,4.7210784925815666e-05,3.5227303412917166e-05,2.024795152179403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620801,5.283057185762701e-05,1.5653502772630224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9413283766801096e-05,0.00010957451940841155,0.00015373975937404684,0.00018169244289660078,0.00016184603759558747,0.00014675158849340833,0.00012997997837987596,0.0001084564120675094,9.475959714145795e-05,7.295650399386587e-05,4.4724293636086346e-05,1.9846405301013314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.326369339183923e-05,9.531865081190904e-05,0.00013333430040258243,0.00015933029607855762,0.00017973575505002203,0.00016520035961829394,0.00014563348115250618,0.00014255868596502525,0.00012299180749923748,9.280290929487918e-05,5.4507732868980236e-05,1.1740127079472668e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.80156495906734e-05,0.0001104130999140882,0.00015318070570359576,0.00018197196973182634,0.0001844877112488562,0.00017218853049893245,0.00014842874950476157,0.0001403224712832209,0.00012103511965265871,9.168480195397703e-05,5.4787259704205775e-05,1.5653502772630224e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.633848857932016e-05,0.00010901546573796047,0.00015262165203314468,0.00018253102340227745,0.00020545222389077166,0.00019203493579994578,0.00016575941328874502,0.00014535395431728064,0.0001260666026867184,9.58777044823601e-05,5.758252805646117e-05,1.90078247953367e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9972337437252175e-05,0.00010957451940841155,0.00015318070570359576,0.0001830900770727285,0.00017861764770911987,0.00016547988645351948,0.00014172010545934863,0.00012858234420374824,0.00010649972422093062,8.469663107333853e-05,5.1712464516724845e-05,1.9287351630562236e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.494085440319246e-05,0.00010482256320957738,0.00014842874950476157,0.00017777906720344323,0.0001998616871862609,0.00018644439909543494,0.00016296414493648966,0.00014647206165818282,0.0001255075490162673,9.503912397668349e-05,5.5625840209882406e-05,1.5373975937404685e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620802,1.8287930078690625e-05,5.309399055103729e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3666786456655895e-05,3.8640626456588253e-05,5.417553480300287e-05,6.361446645652062e-05,5.604365669276158e-05,5.053761322820958e-05,4.473660314948512e-05,3.805069322824339e-05,3.323290519676038e-05,2.5563773228277216e-05,1.5534908346414613e-05,6.784232125965876e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1602020157448891e-05,3.382283842510524e-05,4.719465826758871e-05,5.614197889748574e-05,6.282788881872747e-05,5.7223523149451315e-05,5.073425763765786e-05,5.053761322820958e-05,4.3556736692795404e-05,3.264297196841552e-05,1.887786330703548e-05,3.834565984241582e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.307685322831104e-05,3.8837270866036544e-05,5.397889039355459e-05,6.351614425179647e-05,6.381111086596889e-05,5.889500062976174e-05,5.1225868661278574e-05,4.925942456679572e-05,4.237687023610569e-05,3.195471653534651e-05,1.8976185511759626e-05,5.2110768503795864e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2585242204690319e-05,3.834565984241582e-05,5.3782245984106295e-05,6.371278866124475e-05,7.10869540155555e-05,6.577755496045176e-05,5.7223523149451315e-05,5.1225868661278574e-05,4.4441636535312697e-05,3.3724516220381096e-05,1.9959407559001057e-05,6.292621102345159e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3863430866104183e-05,3.8640626456588253e-05,5.388056818883044e-05,6.390943307069302e-05,6.213963338565845e-05,5.712520094472717e-05,4.935774677151985e-05,4.552318078727828e-05,3.78540488187951e-05,2.9889950236139518e-05,1.8189607873966483e-05,6.587587716517591e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2093631181069605e-05,3.696914897627781e-05,5.230741291324416e-05,6.204131118093433e-05,6.931715433052091e-05,6.400775527541719e-05,5.6240301102209874e-05,5.161915748017514e-05,4.4146669921140264e-05,3.333122740148453e-05,1.9271152125932056e-05,5.112754645655442e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1700342362173035e-05,3.657586015738125e-05,5.240573511796829e-05,6.24345999998309e-05,6.803896566910704e-05,6.233627779510675e-05,5.4470501417175296e-05,5.191412409434758e-05,4.463828094476099e-05,3.352787181093281e-05,1.6813097007828477e-05,1.8681218897587199e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0127187086586743e-05,3.549431590541568e-05,5.132419086600272e-05,6.115641133841704e-05,6.88255433069002e-05,6.29262110234516e-05,5.466714582662358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620803,3.067015426885877e-05,7.460307795127809e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5696615738773566e-05,7.563923181171251e-05,0.00010858892457352703,0.00012827584792178098,0.00010713830916891881,9.781292442500907e-05,8.49646165556223e-05,6.776446247241094e-05,5.9889693133109355e-05,4.310400059407178e-05,2.8390615775903054e-05,1.1604923236865482e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3831538789991615e-05,6.382707780276015e-05,9.138877049031566e-05,0.00010921061688978766,0.00012081554012665315,0.00011003953997813518,9.947077060170415e-05,9.532615515996646e-05,8.372123192310098e-05,6.154753930980444e-05,3.377861585016203e-05,4.559076985911439e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4453231106252267e-05,7.563923181171251e-05,0.00010672384762474507,0.00012869030946595475,0.00012475292479630394,0.00011252630924317778,0.00010092138600631233,9.138877049031566e-05,7.729707798840759e-05,5.781738541224053e-05,3.6058154343117754e-05,6.83861547886716e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3831538789991615e-05,7.46030779512781e-05,0.00010817446302935325,0.00012951923255430226,0.00014402538660038413,0.00012972646332638915,0.00011584200159656795,0.0001036153860434418,8.86947704531862e-05,6.548492397945522e-05,3.730153897563905e-05,7.667538567214693e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6111077282947333e-05,7.563923181171251e-05,0.00010817446302935325,0.00013117707873099734,0.00012806861714969407,0.00011832877086161056,0.00010506600144804999,9.719123210874843e-05,8.164892420223215e-05,6.113307776563067e-05,3.5643692798943984e-05,1.0154307832257296e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2588154157470316e-05,7.170184714206172e-05,0.00010423707835970245,0.00012599630942882525,0.00013967354038655957,0.00012951923255430226,0.00011625646314074172,0.0001036153860434418,8.828030890901241e-05,6.44487701190208e-05,3.6058154343117754e-05,6.631384706780275e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.155200029703589e-05,7.149461636997484e-05,0.00010382261681552869,0.0001262035402009121,0.0001328349249076924,0.00012247338630334823,0.00011086846306648274,0.00010092138600631233,8.475738578353541e-05,6.258369317023885e-05,2.9012308092163705e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620804,4.5690162222107815e-05,1.1121947383013086e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7574146564233396e-05,0.00011031769431258926,0.00015811200874229413,0.0001860671737860838,0.0001566090428797248,0.0001433829432891146,0.0001235437939031994,9.949634010209004e-05,8.837439271907696e-05,6.372575257293984e-05,4.178245097942753e-05,1.713381083329043e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456821483909472e-05,9.318388347929883e-05,0.00013316277542364317,0.0001587131950873219,0.00017554641274809845,0.00015961497460486345,0.00014488590915168398,0.00013947523204643436,0.0001226420143856578,8.987735858164629e-05,4.9297280292274226e-05,6.913642967818945e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.57705875291502e-05,0.00011031769431258926,0.0001554066701896693,0.00018696895330362541,0.00018125768302586188,0.00016292149950251596,0.00014699006135928105,0.00013406455494118476,0.00011332362603772792,8.476727464891054e-05,5.2603805189926755e-05,1.0220167865471485e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456821483909472e-05,0.00010881472845001993,0.00015751082239726642,0.0001875701396486531,0.0002089122548971377,0.00018817132599368086,0.00016712980391771012,0.00015119836577447517,0.0001292550641809629,9.52880356868959e-05,5.4407364225009964e-05,1.1422540555526954e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8175332909261125e-05,0.00011031769431258926,0.00015751082239726642,0.0001905760713737918,0.0001857665806135699,0.00017163870150541818,0.0001530019248095584,0.0001409781979090037,0.00011933548948800529,8.897557906410468e-05,5.170202567238515e-05,1.502965862569336e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.306524897652539e-05,0.00010430583086231189,0.00015149895894698903,0.00018276064888843126,0.0002025997982743465,0.00018817132599368086,0.00016803158343525176,0.00015119836577447517,0.00012865387783593516,9.378506982432655e-05,5.2603805189926755e-05,9.618981520443748e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.156228311395605e-05,0.00010430583086231189,0.00015119836577447517,0.0001830612420609451,0.0001929808167539027,0.00017765056495569552,0.00016111794046743284,0.0001472906545317949,0.00012384438707571327,9.138032444421563e-05,4.238363732445527e-05,3.607118070166406e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.705338552624805e-05,0.00010039811961963163,0.00014789184087682264,0.00017975471716329258,0.00019478437578898593,0.00017765056495569552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620805,2.588578128202538e-05,5.833415500174733e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1693013891274795e-05,6.380298203316115e-05,9.278776529965437e-05,0.00010992342333141763,9.333464800279573e-05,8.677205556509918e-05,7.546981303351061e-05,5.961021464241056e-05,5.177156256405076e-05,3.627655264171163e-05,2.4062838938220777e-05,9.661594422164402e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.059924848499203e-05,5.468827031413813e-05,7.875110925235891e-05,9.406382494031758e-05,0.00010390771359686243,9.442841340907853e-05,8.640746709633824e-05,8.239699393996812e-05,7.32822822209451e-05,5.268303373595306e-05,2.8073312094590904e-05,3.2812962188482877e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0234660016231108e-05,6.398527626754162e-05,9.060023448708886e-05,0.00010974112909703718,0.00010627753864380843,9.552217881536129e-05,8.65897613307187e-05,7.783963808045661e-05,6.580821861134622e-05,4.867256057958294e-05,3.0078548672775974e-05,5.104238562652892e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0234660016231108e-05,6.380298203316115e-05,9.315235376841527e-05,0.00011065260026893949,0.00012359549090995217,0.0001095588348626567,0.00010026182890925326,9.07825287214693e-05,7.747504961169568e-05,5.66935068923232e-05,3.117231407905873e-05,5.468827031413813e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2239896594416175e-05,6.526133590820483e-05,9.351694223717621e-05,0.0001133870137846464,0.0001115640714408418,0.00010336083089372107,9.315235376841527e-05,8.476681898691412e-05,7.218851681466234e-05,5.3229916439094454e-05,3.0078548672775974e-05,8.203240547120721e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.895860037556788e-05,6.0339391579932406e-05,8.877729214328425e-05,0.00010773589251885213,0.00012049648892548435,0.00011320471955026594,0.00010263165395619922,9.114711719023022e-05,7.765734384607616e-05,5.57820357204209e-05,3.044313714153689e-05,4.73965009389197e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8229423438046045e-05,6.143315698621517e-05,8.968876331518653e-05,0.00010791818675323258,0.00011448077919092915,0.00010591295017504753,9.752741539354633e-05,8.677205556509918e-05,7.309998798656464e-05,5.268303373595306e-05,2.4062838938220777e-05,1.4583538750436833e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5312715687958677e-05,5.888103770488872e-05,8.695434979947962e-05,0.00010463689053438428,0.00011375160225340732,0.00010664212711256936,9.661594422164402e-05,8.65897613307187e-05,7.474063609598878e-05,5.3229916439094454e-05,2.770872362582999e-05,1.8229423438046043e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620806,4.3882495952094515e-05,1.0898920563265304e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5851712379162177e-05,0.00010554744124425347,0.00015086400569151446,0.00017696405230354452,0.00015000356459441455,0.00013738376183694946,0.00011845405770075185,9.608258917615465e-05,8.547048231192264e-05,6.195175899119225e-05,4.0440731563694936e-05,1.663519454393125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.29835753888292e-05,8.94858740983888e-05,0.00012734528237078407,0.0001517244467886143,0.0001680728276335123,0.00015258488788571427,0.00013881783033211598,0.0001342288111475832,0.00011816724400171854,8.604410970998923e-05,4.732426034049408e-05,6.596715077765842e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4417643883995695e-05,0.00010583425494328675,0.00014828268240021475,0.0001778244934006444,0.00017266184681804505,0.00015487939747798062,0.00014053871252631573,0.00012877935086595053,0.00010927601933168632,8.145509052545647e-05,5.0479211029860344e-05,1.0038479466165409e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.32703890878625e-05,0.00010411337274908697,0.00015029037829344786,0.000178398120798711,0.00019818826603200854,0.0001789717481967776,0.00015860797556541348,0.00014455410431278188,0.0001241903316814178,9.091994259355528e-05,5.191327952502684e-05,1.11857342622986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6712153476262064e-05,0.00010554744124425347,0.00015029037829344786,0.00018097944409001073,0.0001766772386045112,0.00016319699474994623,0.00014627498650698168,0.0001342288111475832,0.0001141518522152524,8.489685491385602e-05,4.9331956233727155e-05,1.4627498650698169e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.154950689366272e-05,9.98111672635875e-05,0.00014455410431278188,0.00017352228791514491,0.00019245199205134258,0.000178398120798711,0.0001597552303615467,0.0001448409180118152,0.0001233298905843179,8.977268779742209e-05,5.019239733082705e-05,9.464852068098817e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0115438398496235e-05,9.98111672635875e-05,0.0001442672906137486,0.00017380910161417823,0.00018384758108034362,0.0001689332687306122,0.0001540189563808807,0.0001416859673224489,0.00011931449879785173,8.776499190418903e-05,4.072754526272824e-05,3.441764388399569e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.610004661203007e-05,9.579577547712133e-05,0.00014111233992438233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620807,3.962070953348315e-05,9.272932018474781e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.343875485449997e-05,9.778728310391586e-05,0.00014021797203693685,0.00016663177839259226,0.00014330894937642841,0.00013235002971823096,0.00011773813684063433,9.27293201847478e-05,8.092740670668899e-05,5.8166573570432704e-05,3.8215719833714255e-05,1.545488669745797e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.231476309468484e-05,8.542337374594951e-05,0.00012111011212007971,0.00014415194319628978,0.0001604498237136091,0.00014555693289605872,0.0001337550194179999,0.000128416058558878,0.0001138041656812814,8.148940258659655e-05,4.327368275288231e-05,5.057962919168062e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.14717692748235e-05,9.778728310391586e-05,0.0001390939802771217,0.0001669127763325461,0.00016101181959351664,0.00014583793083601247,0.00013347402147804608,0.00011942412448035701,0.00010256424808313015,7.446445408775203e-05,4.63646600923739e-05,7.867942318705875e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.119077133486972e-05,9.778728310391586e-05,0.0001421849576166133,0.00016944175779213006,0.0001854586403694956,0.0001669127763325461,0.00015117689169513428,0.00013937497821707548,0.00011942412448035701,8.682836344571838e-05,4.776964979214281e-05,8.429938198613437e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.484374455426887e-05,0.0001000352666235461,0.00014302795143647463,0.0001722517371916679,0.0001702847516119914,0.0001559538566743486,0.0001435899473163822,0.0001286970564988318,0.00011099418628174359,8.148940258659655e-05,4.6083662152420126e-05,1.2925905237873938e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9223785755193243e-05,9.244832224479403e-05,0.00013403601735795362,0.00016241680929328551,0.00018264866096995777,0.00017084674749189902,0.0001559538566743486,0.00014021797203693685,0.00011942412448035701,8.598536962585706e-05,4.720765391223525e-05,7.586944378752093e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8380791935331907e-05,9.357231400460916e-05,0.00013600300293763014,0.00016269780723323932,0.00017449972071129817,0.0001621358113533318,0.00014920990611545779,0.0001337550194179999,0.00011324216980137382,8.092740670668899e-05,3.7091728073899124e-05,2.2479835196302496e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3603826956117625e-05,8.935734490530242e-05,0.00013263102765818474,0.00015792084225402505,0.00017365672689143675,0.0001629788051731931,0.00014920990611545779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620808,6.129655805656365e-05,1.5518115963687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9270018184706224e-05,0.00014276666686592043,0.0002005716488306545,0.00023315969235439718,0.00020173550752793104,0.0001815619567751379,0.00015983659442597614,0.00013423170308589255,0.00011910154002129774,8.806530809392374e-05,5.702907616654974e-05,2.4053079743714854e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.461458339560013e-05,0.00012336902191131165,0.00017302699299511008,0.00020406322492248408,0.00022656449306983025,0.00020445117782157626,0.00018854510895879707,0.00018544148576605968,0.000161776358921437,0.00011754972842492904,6.440018124930106e-05,9.698822477304377e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.694230079015319e-05,0.00014237871396682823,0.0001986318843351936,0.00023471150395076588,0.00022850425756529112,0.00020406322492248408,0.0001881571560597049,0.000177294474885124,0.00015207753644413263,0.0001117304349385464,6.789175734113064e-05,1.4354257266410476e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.577844209287666e-05,0.00014043894947136739,0.0002005716488306545,0.00023587536264804246,0.0002583766307953886,0.00023432355105167373,0.00020561503651885278,0.0001943644024451797,0.00016875951110509614,0.0001214292574158508,6.983152183659152e-05,1.590606886277918e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.043387688198276e-05,0.00014276666686592043,0.00020018369593156234,0.00023820308004259547,0.00023354764525348938,0.00021376204739978846,0.00019358849664699536,0.00018001014517876924,0.0001536293480405013,0.00011367019943400731,6.672789864385411e-05,2.133740945006963e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.383867759741578e-05,0.00013500760888407692,0.00019281259084881104,0.00022811630466619895,0.00025255733730900596,0.0002319958336571207,0.00021027047130795886,0.00019591621404154837,0.00016759565240781962,0.00012026539871857427,6.750380444203846e-05,1.3578351468226125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1898913101954905e-05,0.00013423170308589255,0.00019203668505062666,0.00022811630466619895,0.00024441032642807026,0.00022268496407890846,0.00020445117782157626,0.0001939764495460875,0.00016487998211417437,0.00011987744581948207,5.58652174692732e-05,4.6554347891061004e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620809,2.4053761823986658e-05,6.0895599554396616e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9334352858520924e-05,5.602395159004489e-05,7.916427942071561e-05,9.240907232379687e-05,7.916427942071561e-05,7.170456847530203e-05,6.241798954325654e-05,5.237021561678109e-05,4.628065566134144e-05,3.3949296751576115e-05,2.207465483846877e-05,9.286578932045485e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7507484871889025e-05,4.795528464908733e-05,6.744187650649425e-05,7.992547441514556e-05,8.875533635053308e-05,8.007771341403156e-05,7.38359144597059e-05,7.216128547195998e-05,6.31791845376865e-05,4.597617766356945e-05,2.542391281396059e-05,3.805974972149789e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8420918865204976e-05,5.602395159004489e-05,7.840308442628565e-05,9.301802831934082e-05,9.058220433716498e-05,8.08389084084615e-05,7.414039245747788e-05,6.942098349201215e-05,5.93732095655367e-05,4.384483167916556e-05,2.69463028028205e-05,5.632842958781687e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8116440867432995e-05,5.5262756595614936e-05,7.916427942071561e-05,9.332250631711281e-05,0.00010291356324693028,9.332250631711281e-05,8.190458140066345e-05,7.657621643965374e-05,6.622396451540632e-05,4.765080665131536e-05,2.7555258798364472e-05,6.394037953211645e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9791069855178903e-05,5.602395159004489e-05,7.901204042182963e-05,9.454041830820075e-05,9.210459432602486e-05,8.46448833806113e-05,7.611949944299577e-05,7.079113448198609e-05,6.028664355885265e-05,4.475826567248151e-05,2.6337346807276536e-05,8.220905939843543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7050767875231053e-05,5.2979171612325054e-05,7.596726044410977e-05,9.042996533827898e-05,0.00010017326126698245,9.240907232379687e-05,8.297025439286539e-05,7.688069443742572e-05,6.561500851986236e-05,4.7194089654657385e-05,2.679406380393451e-05,5.3283649610097035e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6441811879687086e-05,5.2826932613439056e-05,7.596726044410977e-05,9.058220433716498e-05,9.651952529371864e-05,8.829861935387509e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620810,3.18376303099198e-05,7.796970688143623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.642306733204228e-05,7.558729917117013e-05,0.00010850784207666545,0.00012821685131613958,0.00011370582253542783,0.00010395960917524832,9.313048321949328e-05,7.407122153736442e-05,6.45415906963e-05,4.656524160974664e-05,3.097130023345939e-05,1.2778368627790937e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5123572217351674e-05,6.6707415887451e-05,9.37802307768386e-05,0.00011153999734427683,0.00012518469604852817,0.00011435557009277314,0.0001069917644428597,0.00010244353154144261,8.966516291365166e-05,6.410842565806979e-05,3.4436620539301e-05,4.5482329014171135e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5123572217351674e-05,7.667021176674564e-05,0.00010850784207666545,0.00012973292894994528,0.0001264841911632188,0.00011283949245896744,0.00010460935673259362,9.61626384871047e-05,8.100186214904765e-05,5.9127027718422485e-05,3.6169280692221804e-05,6.71405809256812e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4690407179121474e-05,7.580388169028523e-05,0.00011002391971047112,0.00013103242406463587,0.00014337762765419664,0.0001292997639117151,0.00011608823024569395,0.00010937417215312583,9.334706573860839e-05,6.735716344479631e-05,3.7468775806912406e-05,7.1472231307983216e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.707281488938758e-05,7.775312436232113e-05,0.00011132341482516175,0.00013384799681313218,0.0001321153366602114,0.00012128621070445636,0.00011175657986339194,0.00010027770635029161,8.641642512692517e-05,6.30255130624943e-05,3.6169280692221804e-05,1.0829125955755033e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2957747026200668e-05,7.125564878886812e-05,0.00010309327909878793,0.0001249681135294131,0.0001407786374248154,0.0001308158415455208,0.00012063646314711108,0.00010959075467224093,9.204757062391777e-05,6.6707415887451e-05,3.703561076868221e-05,6.49747557345302e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2307999468855367e-05,7.342147398001912e-05,0.00010525910428993891,0.00012626760864410368,0.0001368801520807436,0.0001264841911632188,0.00011673797780303924,0.0001069917644428597,8.901541535630637e-05,6.45415906963e-05,2.945522259965369e-05,1.949242672035906e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8842679163013758e-05,6.97395711550624e-05,0.00010309327909878793,0.00012301887085737717,0.00013406457933224733,0.0001264841911632188,0.00011327265749719765,0.00010460935673259362,9.053149299011208e-05,6.43250081771849e-05,3.5086368096646306e-05,3.898485344071812e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.100850435416476e-05 +2620811,4.747522736464342e-05,1.2540626096320905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.821905096021608e-05,0.00010987977151062127,0.0001540705491833711,0.00017915180137601292,0.000157056412539638,0.00014063416408017015,0.00012480908829195567,0.00010450521746934086,9.226317770864665e-05,6.897344352976499e-05,4.5086536679629924e-05,1.910952548010804e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.463601493269584e-05,9.614480007179361e-05,0.00013436385103200968,0.00015825075788214473,0.00017616593801974604,0.00015914651688902484,0.00014600871812145053,0.0001445157864433171,0.00012510767462758235,9.13674187017666e-05,5.016250438528362e-05,7.763244726293892e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6427532946455964e-05,0.00010958118517499457,0.00015287620384086433,0.00018064473305414634,0.00017586735168411934,0.00015735499887526469,0.0001445157864433171,0.0001370511280526499,0.00011794160257254185,8.659003733173957e-05,5.225260873467043e-05,1.1346280753814155e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.55317739395759e-05,0.00010808825349686114,0.0001540705491833711,0.00018154049206102647,0.00019855991319174765,0.0001797489740472663,0.00015735499887526469,0.0001492931678133441,0.00012988505599760938,9.405469572240677e-05,5.404412674843057e-05,1.2540626096320905e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.881622363146947e-05,0.00011017835784624796,0.0001540705491833711,0.00018333201007478657,0.000180047560382893,0.0001642224845946785,0.00014899458147771743,0.00013854405973078336,0.00011764301623691516,8.748579633861966e-05,5.1356849727790376e-05,1.701942113072123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.403884226144246e-05,0.00010420663113371419,0.00014809882247083736,0.00017497159267723932,0.00019437970449297403,0.00017795745603350617,0.000161833793909665,0.00015138327216273093,0.00012928788332635603,9.315893671552671e-05,5.225260873467043e-05,1.1047694418187464e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.254591058330902e-05,0.00010331087212683413,0.00014720306346395728,0.00017556876534849267,0.00018900515045169365,0.00017168714298534574,0.00015735499887526469,0.00015018892682022418,0.00012779495164822258,9.286035037990004e-05,4.3295018665869785e-05,3.5830360275202584e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7768529213282005e-05,9.942924976368718e-05,0.0001445157864433171,0.00017228431565659912,0.00018751221877356017,0.0001675069342865721,0.00015227903116961098,0.0001463073044570772,0.00012689919264134247,9.196459137301997e-05,5.046109072091031e-05,7.166072055040517e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620812,5.958714980510124e-05,1.4316393134991858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.64315453026763e-05,0.00013465148137776126,0.00020004257434569703,0.00024260482420648363,0.00022519299471798009,0.00019849485616894115,0.00017876144941530376,0.00014200314271735167,0.00012343052459628113,9.01545837960298e-05,6.152179752604608e-05,2.5924279460660933e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.449689758173144e-05,0.0001214958768753363,0.00017837451987111474,0.00021938905155514547,0.0002457002605599954,0.0002143589674806889,0.0001953994198154294,0.0001903693357409728,0.00016328426764774495,0.00011607886325669074,6.229565661442403e-05,7.351661339590414e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.488382712592042e-05,0.00013735998818708404,0.00020042950388988605,0.0002429917537506726,0.00024144403557391672,0.00021126353112717715,0.00018959547665259487,0.00017527908351760304,0.00014742015633599726,0.00010988799054966722,6.693881114469166e-05,1.1220956781480105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3723038493353505e-05,0.00013581227001032816,0.00020120336297826396,0.00024647411964837335,0.00026272516050431004,0.00023215772651338147,0.00021706747429001168,0.0002015902925224529,0.00016908821081057951,0.00012072201778695836,6.77126702330696e-05,1.1607886325669075e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9140052111999077e-05,0.0001404554245405958,0.00020468572887596463,0.0002472479787367513,0.0002565342877972865,0.00023409237423432626,0.00020855502431785434,0.00017760066078273683,0.0001516763813220759,0.00011104877918223413,6.461723387955785e-05,2.089419538620433e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.062760213984176e-05,0.00012807367912654878,0.000188047758475839,0.00023486623332270428,0.0002658205968578218,0.0002368008810436491,0.00021938905155514547,0.0002015902925224529,0.00017063592898733536,0.00012265666550790322,6.693881114469166e-05,1.0834027237291136e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0240672595652785e-05,0.0001303952563916826,0.00019462556072705146,0.00023602702195527116,0.0002634990195926879,0.00023641395149946013,0.00021590668565744478,0.0001953994198154294,0.00016483198582450086,0.00011801351097763558,5.339627709807774e-05,1.9346477209448453e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3662870344440314e-05,0.00012304359505209216,0.00018843468802002799,0.00023099693788081456,0.0002615643718717431,0.0002317707969691925,0.00021087660158298818,0.00019926871525731912,0.00016754049263382364,0.0001164657928008797,6.539109296793577e-05,8.512449972157319e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6758306697952065e-05 +2620813,7.41289090846544e-05,1.9299834317898188e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.395180957048812e-05,0.0001552759397394536,0.00023028211402037612,0.00028291802579646214,0.00026317955888042983,0.00022633442063716967,0.00020396415813233318,0.0001649258568984027,0.00014387149218796834,0.0001065877213465741,7.281301129025226e-05,3.070428186938348e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.044274878541572e-05,0.00014036243140289593,0.00020352552553419909,0.0002522137439270786,0.0002873043517778026,0.0002561614373102851,0.00023159801181477828,0.00022150946205769513,0.00018992791499204358,0.00013816926841222568,7.500617428092252e-05,1.0965814953351246e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.307454437422003e-05,0.00015878500052452603,0.00023379117480544853,0.000282040760600194,0.00027940896501138973,0.00024212519416999545,0.00021975493166515896,0.00020264826033793105,0.00017238261106668155,0.00013071251424394683,7.895386766412897e-05,1.535214093469174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.175864657981787e-05,0.00015834636792639198,0.00023247527701104637,0.00028511118878713236,0.0003057269208994327,0.00027063631304870874,0.00025089784613267644,0.0002307207466185102,0.00019343697577711594,0.00014123969659916402,8.070839805666517e-05,1.622940613095984e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.789950295369457e-05,0.0001649258568984027,0.00023773886818865493,0.00028686571917966853,0.0002938838407498134,0.0002662499870673682,0.00024212519416999545,0.0002052800559267353,0.00017720756964615612,0.0001298352490476787,7.719933727159275e-05,2.5879323289908936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.781095319661143e-05,0.00015045098115997908,0.00021800040127262278,0.000273268108637513,0.0003079200838901029,0.00027897033241325563,0.0002522137439270786,0.0002333525422073145,0.00019475287357151812,0.00014387149218796834,7.895386766412897e-05,1.4913508336557693e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.824958579474547e-05,0.00015352140934691742,0.00022501852284276754,0.000273268108637513,0.00030528828830129865,0.00027633853682445137,0.0002487046831420062,0.00022633442063716967,0.00018992791499204358,0.00013992379880476186,6.404035932757127e-05,4.386325981340498e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0354199028332586e-05,0.00014562602258050451,0.00022107082945956104,0.00026800451745990437,0.0003048496557031646,0.00026844315005803847,0.00024212519416999545,0.00022940484882410804,0.00019255971058084785,0.00013904653360849377,7.85152350659949e-05,1.2720345345887443e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.342462721527092e-05 +2620814,0.00011653952750034892,3.1319998015718776e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.958976176589323e-05,0.00024910324003199583,0.0003649143954854676,0.000442850204501326,0.00040715997420434413,0.0003634576513917132,0.000326310677000977,0.0002571153325476448,0.00022652370657880324,0.00016461208259424282,0.00011216929521908583,4.661581100013956e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.303441334399861e-05,0.00022361021839129448,0.00031319998015718773,0.0003831236966573971,0.00043847997222006284,0.0003925925332668004,0.00037074137186048507,0.00035981579115732724,0.00030882974787592465,0.00022433859043817167,0.00012236650387536637,1.966604526568388e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.667627357838452e-05,0.000257843704594522,0.0003736548600479937,0.0004515906690638521,0.00044066508836069433,0.0003925925332668004,0.0003590874191104501,0.0003328660254228716,0.00027969486600083743,0.0002083144054068737,0.00012673673615662946,2.6949765734455687e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.521952948463014e-05,0.0002571153325476448,0.0003729264880011165,0.00045377578520448364,0.0004938362477827286,0.0004370232281263084,0.0004035181139699581,0.0003751116041417481,0.0003168418403915736,0.00023599254318820657,0.00013183534048476973,2.840650982821005e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.323162200027912e-05,0.00026585579711017095,0.0003816669525636428,0.0004639729938607642,0.000455232529298238,0.0004180855549075017,0.0003794818364230112,0.00033650788565725754,0.00029207719079774947,0.00021486975382876833,0.00012673673615662946,4.0788834625122124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.793580901585835e-05,0.00023744928728196095,0.0003386930017978891,0.00042755439151690507,0.0004850957832202024,0.00044940555292322055,0.0004086167182980984,0.000378753464376134,0.00031538509629781933,0.00023089393886006632,0.00013037859639101533,2.6221393687578507e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.793580901585835e-05,0.000249831612078873,0.0003605441632042045,0.00043556648403255413,0.00048072555093893937,0.0004399367163138172,0.00040133299782932656,0.0003729264880011165,0.0003081013758290474,0.00022870882271943475,0.0001063423188440684,8.74046456252617e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.555348421894629e-05,0.0002367209152350837,0.0003539888147823099,0.00042172741514188766,0.0004697999702357816,0.00043775160017318557,0.0003925925332668004,0.0003700129998136078,0.0003117432360634334,0.0002279804506725576,0.00012746510820350665,1.966604526568388e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.283720468771808e-05 +2620815,3.386877699525613e-05,7.5263948878346945e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.634238210742143e-05,7.747759443359243e-05,0.00011311728787304496,0.0001381314826473191,0.000124406880204797,0.0001115677359843731,0.00010271315376339113,7.769895898911699e-05,6.906574132365955e-05,5.0471118659597364e-05,3.2761954217633376e-05,1.328187333147299e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5456923885323227e-05,6.818028310156135e-05,9.850722720842467e-05,0.00011953685998325689,0.0001345896497589263,0.00011820867265010961,0.00011112500687332399,0.00010758317398493122,9.407993609793367e-05,6.61880021018404e-05,3.541832888392797e-05,3.984561999441896e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.612101755189688e-05,8.03553336554116e-05,0.00011599502709486412,0.00013791011809179455,0.00013525374342549993,0.00011931549542773233,0.0001084686322070294,9.872859176394921e-05,8.433989565485349e-05,6.22034401023985e-05,3.829606810574712e-05,6.419572110211946e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5014194774274127e-05,7.836305265569063e-05,0.00011533093342829045,0.00014056649275808914,0.0001498638040901202,0.0001339255560923526,0.00012639916120451796,0.00011621639165038865,9.717903987527737e-05,6.972983499023319e-05,3.8738797216796214e-05,6.419572110211946e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.811329855161783e-05,8.190488554408342e-05,0.00011798730809458506,0.00014145195098018732,0.0001425587737578101,0.00013171191053710715,0.00012086504731640422,0.00010337724742996476,9.009537409849178e-05,6.463845021316856e-05,3.741060988364892e-05,1.084686322070294e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2800549219028633e-05,7.349303243415055e-05,0.00010625498665178392,0.00013326146242577898,0.0001491997104235466,0.0001381314826473191,0.00012750598398214067,0.00011688048531696231,9.629358165317917e-05,7.061529321233138e-05,3.8960161772320765e-05,5.976842999162845e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3243278330077733e-05,7.659213621149423e-05,0.00011178910053989767,0.00013326146242577898,0.00014676470031277654,0.00013658193075864725,0.00012462824476032155,0.00011134637142884855,9.385857154240913e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620816,8.209273837860995e-05,2.039246367366744e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.32689257567631e-05,0.0001814406383272462,0.00026562491144161695,0.0003241878840429184,0.0002954292814262078,0.00026562491144161695,0.00024052649461248776,0.00018457794043088733,0.00016366259307327974,0.00011712594520260275,7.895543627496882e-05,3.241878840429184e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.960873996918176e-05,0.0001600024072856984,0.000227454402513983,0.00027974277090800207,0.0003168675124677556,0.0002834029566955834,0.0002666706788094973,0.00025778165618251404,0.00022431710041034188,0.0001600024072856984,8.62758078501315e-05,1.1503441046684198e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.222315838888272e-05,0.0001877152425345285,0.0002724223993328394,0.0003283709535144398,0.0003200048145713968,0.00028444872406346383,0.0002583045398664542,0.00023738919250884663,0.00020131021831697348,0.00014849896623901417,9.150464468953339e-05,1.72551615700263e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.013162365312194e-05,0.00018562370779876775,0.00027189951564889926,0.00033203113930202125,0.00035765243981509057,0.0003168675124677556,0.00029699793247802835,0.00027503681775254037,0.00023111458830156437,0.00016836854622874148,9.307329574135395e-05,1.72551615700263e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.640622786040424e-05,0.00019346696305787061,0.00027869700354012176,0.0003383057435093035,0.0003346455577217221,0.0003090242572086528,0.0002818343056437628,0.00024366379671612897,0.00021333654304759786,0.00015477357044629646,9.045887732165301e-05,2.7712835248830117e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.490278681372004e-05,0.0001715058483323826,0.00024680109881977007,0.0003132073266801743,0.00035451513771144936,0.0003252336514107987,0.00030065811826560974,0.0002745139340686002,0.0002285001698818634,0.00016732277886086105,9.359617942529415e-05,1.620939420214592e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5425670497660234e-05,0.00018091775464330602,0.000263010493021916,0.0003168675124677556,0.00034876341718810723,0.00032209634930715754,0.0002928148630065069,0.0002671935624934375,0.00022222556567458106,0.0001620939420214592,7.47723668034473e-05,4.705953155461718e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.653664787067698e-05,0.0001709829646484424,0.0002583045398664542,0.0003090242572086528,0.00034771764982022686,0.00031948193088745657,0.0002896775609028657,0.0002692850972291983,0.000227454402513983,0.0001620939420214592,8.993599363771283e-05,1.1503441046684198e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.12426010261387e-05 +2620817,4.886844624456467e-05,1.0859654721014372e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.80087915235503e-05,0.00011179056330455968,0.00016417242725298196,0.00019930660429155785,0.00018046190933450348,0.00016097841115856595,0.00014724414195257715,0.00011274876813288449,9.997270375522053e-05,7.346237017156779e-05,4.854904463512307e-05,1.9802899785379144e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6731185085783896e-05,9.901449892689573e-05,0.00014436952746760278,0.00017567088519287953,0.00019611258819714184,0.00017215746748902193,0.00015874259989247477,0.0001555485837980588,0.00013510688079379642,9.518167961359656e-05,5.0784855901214256e-05,5.749228969948784e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7369988304667096e-05,0.00011530398100841729,0.00016640823851907314,0.00019898720268211626,0.00019547378497825868,0.00017119926266069715,0.0001555485837980588,0.0001430919210298364,0.00012169201319724927,9.007125386253094e-05,5.493707682395505e-05,8.943245064364776e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6092381866900696e-05,0.00011274876813288449,0.00016640823851907314,0.00020250062038597384,0.00021527668476363783,0.00019068276083663465,0.0001801425077250619,0.00016672764012851476,0.00013989790493542043,9.901449892689573e-05,5.5575880042838254e-05,9.262646673806374e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.056400439908309e-05,0.00011753979227450848,0.0001696022546134891,0.00020313942360485702,0.00020697224291815622,0.00019100216244607627,0.00017215746748902193,0.0001478829451714604,0.00012839944699552286,9.230706512862212e-05,5.334006877674705e-05,1.597008047207996e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3217767381926304e-05,0.0001066801375534941,0.00015427097736029236,0.00019259917049328426,0.00021527668476363783,0.00019802899785379145,0.00018269772060059471,0.00016768584495683954,0.00013893970010709562,0.00010125031019298692,5.5575880042838254e-05,8.304441845481576e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.353716899136791e-05,0.0001095547520384685,0.00016129781276800757,0.00019227976888384267,0.00021304087349754657,0.00019579318658770025,0.00017950370450617873,0.00016002020633024117,0.00013510688079379642,9.645928605136294e-05,4.375802049349908e-05,1.5970080472079957e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.388032188831981e-07,6.388032188831981e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620818,7.859946988289816e-05,2.1230891290208123e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.601341531884696e-05,0.0001603609874047635,0.00023670185183125654,0.0002900049406024173,0.0002701292125860523,0.00023444324637485143,0.0002095985863543951,0.000170298851412946,0.00014816451794017586,0.00011157510954641288,7.543742224393098e-05,3.1620476389671674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.194792549731774e-05,0.0001454541913924897,0.00021005030744567613,0.0002597396274865887,0.0002972324780629138,0.00026696716494708513,0.00024121906274406676,0.00022947431437076013,0.0001960469536159644,0.00014455074920992765,7.859946988289816e-05,1.264819055586867e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.46582520450039e-05,0.00016352303504373067,0.00023986389947022366,0.0002900049406024173,0.00028684289296345024,0.00025070520566096834,0.000227215708914355,0.00021095374962823814,0.0001779781099647234,0.0001359680484755882,8.176151752186533e-05,1.7165401468678908e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.375480986244185e-05,0.00016307131395244963,0.0002389604572876616,0.0002927152671501035,0.0003162047638967167,0.0002800670765942348,0.00025793274312146464,0.0002357984096486945,0.00019875728016365053,0.0001472610757576138,8.447184406955146e-05,1.8972285833803004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.962718404909516e-05,0.000169847130321665,0.00024347766820047187,0.0002949738726065086,0.00029994280461059986,0.00027103265476861437,0.00024528455256559595,0.00021230891290208124,0.00018114015760369059,0.00013506460629302615,8.085807533930325e-05,2.7554986568142458e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9689320040912633e-05,0.00015494033430939118,0.00022450538236666893,0.0002809705187767969,0.00031665648498799775,0.0002895532195111363,0.00026019134857786975,0.00024031562056150475,0.00020011244343749358,0.0001486162390314569,8.176151752186533e-05,1.7165401468678908e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9689320040912633e-05,0.00015810238194835836,0.0002312811987358842,0.0002814222398680779,0.00031349443734903057,0.00028548772968960704,0.0002556741376650595,0.00023444324637485143,0.0001955952325246834,0.0001454541913924897,6.730644260087256e-05,5.4206530953722865e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246178258041625e-05,0.00015087484448786197,0.000227215708914355,0.0002750981445901435,0.0003121392740751875,0.00027735675004654867,0.00024889832129584415,0.0002362501307399755,0.00019740211688980744,0.00014500247030120865,8.221323861314635e-05,1.400335382971174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5172109128102395e-05 +2620819,3.665087923988885e-05,1.0180799788858013e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.565561546792219e-05,7.3708990471332e-05,0.00010791647776189492,0.0001315359332720455,0.00012257682945785047,0.00010730562977456345,9.42742060448252e-05,7.818854237842953e-05,6.780412659379437e-05,5.2532926910507344e-05,3.502195127367156e-05,1.48639676917327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.361945551015059e-05,6.719327860646288e-05,9.732844598148259e-05,0.00011952258952119305,0.00013662633316647454,0.00012298406144940478,0.000110563485706998,0.00010465862182946039,8.898019015461904e-05,6.65824306191314e-05,3.6447263244111675e-05,6.108479873314808e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.504476748059071e-05,7.431983845866348e-05,0.00010893455774078074,0.0001311287012804912,0.00012970338931005108,0.0001142285736309869,0.00010302969386324307,9.671759799415112e-05,8.10391663193098e-05,6.251011070358819e-05,3.746534322299748e-05,8.348255826863571e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.443391949325923e-05,7.411622246288634e-05,0.00010852732574922642,0.0001325540132509313,0.00014334566102712078,0.0001274636133565023,0.00011626473358875852,0.0001064911657914548,8.999827013350483e-05,6.76005105980172e-05,3.8890655193437606e-05,9.36633580574937e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7284543434139473e-05,7.717046239954374e-05,0.00010995263771966654,0.00013275762924670848,0.00013560825318758874,0.00012155874947896467,0.00010974902172388935,9.651398199837394e-05,8.14463983108641e-05,6.169564672047955e-05,3.705811123144317e-05,1.3235039725515418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3008607522819107e-05,7.106198252622893e-05,0.00010302969386324307,0.00012787084534805662,0.00014375289301867512,0.0001311287012804912,0.00011769004555919859,0.00010873094174500358,9.081273411661347e-05,6.780412659379437e-05,3.726172722722033e-05,8.348255826863571e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2804991527041946e-05,7.187644650933756e-05,0.00010506585382101469,0.00012766722935227947,0.00014212396505245786,0.00012929615731849676,0.00011504303761409554,0.0001064911657914548,8.898019015461904e-05,6.65824306191314e-05,3.115324735390552e-05,2.6470079451030832e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.954713559460738e-05,6.882220657268016e-05,0.00010302969386324307,0.00012461298941562207,0.00014151311706512638,0.00012502022140717639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0361599577716022e-07 +2620820,2.9430538518731762e-05,8.287910272516415e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.114262824621534e-05,5.919935908940296e-05,8.727676940037694e-05,0.00010622056430898589,9.810179506243919e-05,8.69384873484375e-05,7.763573092010275e-05,6.224389755685797e-05,5.480169241419017e-05,4.110126931064263e-05,2.7739128259034534e-05,1.1670730791910867e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9451217986518116e-05,5.361770523240211e-05,7.628260271234497e-05,9.353498736125668e-05,0.00010723541046480422,9.624124377677224e-05,8.913732068604389e-05,8.575450016664944e-05,7.340720527085967e-05,5.429426933628099e-05,2.9768820570671203e-05,5.0742307790916824e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0635205168306177e-05,6.105991037506992e-05,8.879903863410443e-05,0.00010689712841286476,0.00010520571815316756,9.336584633528694e-05,8.423223093292192e-05,7.932714117979997e-05,6.647242320610103e-05,5.074230779091682e-05,3.061452570051982e-05,6.9347820647586334e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.029692311636673e-05,6.122905140103964e-05,8.862989760813473e-05,0.00010791197456868311,0.00011687644894507842,0.00010385258994540977,9.556467967289335e-05,8.812247453022556e-05,7.442205142667802e-05,5.5985679595978234e-05,3.1967653908277604e-05,7.611346168637525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2326615428003402e-05,6.32587437126763e-05,9.032130786783195e-05,0.00010909596175047117,0.00010858853867256198,9.844007711437867e-05,8.896817966007416e-05,7.966542323173943e-05,6.782555141385882e-05,5.091144881688655e-05,3.061452570051982e-05,1.048674361012281e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8774653882639227e-05,5.716966677776629e-05,8.186425656934583e-05,0.0001026686027636217,0.00011569246176329037,0.00010672798738689508,9.641038480274196e-05,8.930646171201361e-05,7.442205142667802e-05,5.547825651806907e-05,3.0952807752459264e-05,6.9347820647586334e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8774653882639227e-05,5.936850011537268e-05,8.592364119261917e-05,0.00010368344891944005,0.00011467761560747202,0.0001048674361012281,9.454983351707503e-05,8.829161555619528e-05,7.323806424488996e-05,5.480169241419017e-05,2.570943594739786e-05,2.3679743635761187e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6068397467123663e-05,5.666224369985712e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620821,2.9198685078728573e-05,7.477712032357317e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1720973046371253e-05,6.21362261736358e-05,9.186903354038989e-05,0.00011269980277338528,0.00010397580540230174,9.186903354038989e-05,8.296699540663119e-05,6.534095990178894e-05,5.750716634408126e-05,4.130545694064042e-05,2.848652202802787e-05,1.1928731099236672e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.047468770764503e-05,5.519263642930401e-05,7.958422091580288e-05,9.881262328472172e-05,0.00011234372124803495,0.00010059303091147342,9.311531887911611e-05,8.955450362561261e-05,7.709165023835044e-05,5.554871795465435e-05,3.0088888892104437e-05,4.27297830420418e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.118685075834573e-05,6.391663380038753e-05,9.382748192981681e-05,0.00011323392506141078,0.00011127547667198389,9.756633794599545e-05,8.83082182868864e-05,8.189875083058012e-05,6.943589744331793e-05,5.198790270115087e-05,3.1691255756181e-05,6.231426693631097e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0830769232995378e-05,6.373859303771235e-05,9.347140040446645e-05,0.000114480210400137,0.00012320420777122052,0.00010860486523185626,0.00010166127548752448,9.382748192981681e-05,7.887205786510217e-05,5.768520710675644e-05,3.2403418806881707e-05,6.409467456306271e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3145299147772647e-05,6.640920447783998e-05,9.560788955656855e-05,0.00011608257726421358,0.00011661669955223909,0.00010646837607975418,9.738829718332027e-05,8.314503616930635e-05,7.264063117147107e-05,5.305614727720192e-05,3.1157133468155487e-05,1.0148323472484931e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9050361606243642e-05,5.946561473350818e-05,8.581564760943397e-05,0.00010860486523185626,0.00012284812624587018,0.00011180959896000938,0.00010255147930090033,9.453964498051749e-05,7.887205786510217e-05,5.768520710675644e-05,3.204733728153136e-05,5.875345168280749e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9228402368918813e-05,6.178014464828544e-05,9.04447074389885e-05,0.00010949506904523213,0.00012142380014446881,0.0001110974359093087,0.00010094911243682377,9.222511506574025e-05,7.65575279503249e-05,5.6260881005355034e-05,2.5993951350575436e-05,1.7804076267517418e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6201709403440853e-05,5.893149244548267e-05,8.90203813375871e-05,0.00010700249836777969,0.00012124575938179361,0.00010913898751988178,9.86345825220465e-05,9.275923735376576e-05,7.815989481440148e-05,5.6082840242679866e-05,3.1513214993505835e-05,4.807100592229703e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.744799474216707e-05 +2620822,1.7693572391980196e-05,4.315505461458584e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3054404020912218e-05,3.7760672787762605e-05,5.642523390857099e-05,6.991118847562905e-05,6.602723356031633e-05,5.664100918164391e-05,5.0707189172138363e-05,4.034997606463776e-05,3.484770660127806e-05,2.5893032768751502e-05,1.758568475544373e-05,7.336359284479593e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2191302928620497e-05,3.409249314552281e-05,5.0059863352919574e-05,6.2466941554613e-05,7.174527829674897e-05,6.257482919114946e-05,5.620945863549805e-05,5.362015535862292e-05,4.563647025492452e-05,3.301361678015817e-05,1.7909347665053123e-05,2.265640367265757e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.283862874783929e-05,3.883954915312726e-05,5.718044736432623e-05,6.969541320255612e-05,6.98033008390926e-05,6.06328517334931e-05,5.415959354130522e-05,4.8873099351018465e-05,4.153674006653887e-05,3.1395302232111205e-05,1.9096111666954232e-05,3.4524043691668666e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2407078201693427e-05,3.840799860698139e-05,5.7072559727789764e-05,7.055851429484785e-05,7.541345793898875e-05,6.678244701607159e-05,6.171172809885775e-05,5.642523390857099e-05,4.660745898375271e-05,3.398460550898635e-05,1.9203999303490694e-05,3.560292005703332e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3917505113203933e-05,4.002631315502836e-05,5.8151436093154405e-05,7.088217720445725e-05,7.347148048133238e-05,6.667455937953512e-05,5.976975064120138e-05,4.962831280677371e-05,4.239984115883058e-05,3.107163932250181e-05,1.8340898211198982e-05,6.041707646042017e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1436089472865249e-05,3.646602114932503e-05,5.32964924490135e-05,6.721399756221745e-05,7.638444666781693e-05,6.818498629104562e-05,6.149595282578482e-05,5.664100918164391e-05,4.72547848029715e-05,3.484770660127806e-05,1.9096111666954232e-05,3.236629096093938e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1543977109401714e-05,3.7221234605080285e-05,5.513058227013341e-05,6.732188519875391e-05,7.6168671394744e-05,0.0,0.0,0.0,0.0,0.0,1.0788763653646458e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0788763653646458e-07,3.2366290960939377e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620823,4.338130621175865e-05,1.0567241256710443e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.39264061399651e-05,9.760793897645696e-05,0.00014432626874296632,0.00017574990721686836,0.0001618456424054073,0.0001429358422618202,0.0001293096627465883,0.0001003887919387492,8.926538008958029e-05,6.507195931763797e-05,4.421556210044631e-05,1.835362955112866e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2257894362589765e-05,8.731878301597574e-05,0.00012708498037675451,0.00015600585118459361,0.0001754718219206392,0.00015378116881475983,0.00014043307459575717,0.00013709605104100648,0.00011874242148987784,8.425984475745429e-05,4.5327903285363216e-05,5.561705924584443e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.309215025127744e-05,0.0001003887919387492,0.0001459947805203416,0.0001754718219206392,0.0001735252248470346,0.00015211265703738447,0.0001357056245598604,0.00012625072448806685,0.00010678475375202129,7.981048001778675e-05,4.894301213634309e-05,8.620644183105888e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1979809066360545e-05,9.899836545760307e-05,0.0001457166952241124,0.00017853076017916057,0.00018937608673210023,0.00016740734832999173,0.0001571181923695105,0.0001459947805203416,0.00012263561563708694,8.787495360843418e-05,4.9221097432572313e-05,8.620644183105888e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.587300321356965e-05,0.00010316964490104142,0.00014877563348263383,0.0001793650160678483,0.00018353629551128662,0.00016796351892245018,0.0001510003158524676,0.00012847540685790066,0.00011151220378791806,8.092282120270365e-05,4.727450035896776e-05,1.5016605996377995e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9477041400297547e-05,9.343665953301863e-05,0.0001357056245598604,0.00016991011599605473,0.00019076651321324638,0.00017130054247720084,0.00015906478944311507,0.0001459947805203416,0.00012263561563708694,8.926538008958029e-05,4.9221097432572313e-05,8.064473590647441e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.975512669652677e-05,9.593942719908162e-05,0.00014126733048444484,0.00016991011599605473,0.00018909800143587105,0.00017102245718097158,0.00015628393648082283,0.00014098924518821563,0.00011902050678610708,8.592835653482962e-05,3.8931941472091094e-05,1.946597073604555e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4749591364400767e-05,9.009963597826797e-05,0.00013765222163346496,0.00016657309244130406,0.0001885418308434126,0.00016685117773753325,0.00015211265703738447,0.00014432626874296632,0.00012207944504462852,8.537218594237118e-05,4.755258565519699e-05,6.395961813272109e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620824,4.714663420130149e-05,1.0830983532731425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.695276734696604e-05,0.00010735416030972031,0.00016087196129498145,0.00019527626192836363,0.00018253392836044434,0.00016182763631257538,0.0001449440443350823,0.0001169109104856598,9.907164349057274e-05,7.263130133714014e-05,4.969510091488536e-05,2.07062920478689e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.56785339901741e-05,9.77974101337808e-05,0.00014526260267428028,0.0001803040199860584,0.00020132887037312526,0.00017648131991568263,0.00016055340295578348,0.00015354511949342784,0.0001299718023927771,9.27004767066131e-05,4.969510091488536e-05,5.4154917663657125e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.504141731177814e-05,0.00010799127698811626,0.00015959772793818953,0.00019591337860675956,0.00019623193694595759,0.00017202150316691085,0.00015450079451102182,0.0001411213442647065,0.00011754802716405576,8.696642660104939e-05,5.2880684306865196e-05,8.601075158345543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.440430063338217e-05,0.00010799127698811626,0.00016150907797337743,0.00019878040365954144,0.00021311552892345066,0.00018890509514440395,0.00017584420323728665,0.00016150907797337743,0.00013475017748074684,9.652317677698886e-05,5.383635932445914e-05,8.919633497543525e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8545559042955955e-05,0.00011053974370170011,0.00016278331133016936,0.00019909896199873944,0.00020992994553147086,0.00019145356185798783,0.000168517361435733,0.00014207701928230048,0.00011850370218164971,8.824065995784131e-05,5.096933427167729e-05,1.6246475299097138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2174392258996295e-05,0.00010066443518656263,0.000150678094440646,0.00018890509514440395,0.00021693822899382644,0.00019240923687558178,0.00017775555327247458,0.00016119051963417943,0.00013793576087272667,9.811596847297879e-05,5.319924264606317e-05,7.963958479949578e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.121871724140234e-05,0.00010193866854335459,0.0001551379111894178,0.00019145356185798783,0.00021534543729783657,0.00019240923687558178,0.00017552564489808868,0.00015768637790300165,0.00013252026910636093,9.429326840260299e-05,4.204970077413377e-05,9.556750175939492e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6440342153432598e-05,9.716029345538484e-05,0.00015004097776225004,0.00018667518677001812,0.00021279697058425269,0.00018986077016199793,0.0001713843864885149,0.00015959772793818953,6.37116678395966e-07,3.18558339197983e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620825,2.993751807974794e-05,8.607036447927532e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4137123951796777e-05,6.6985196703436e-05,9.411607246320759e-05,0.00010964615996707684,9.767115273517768e-05,8.73801308952643e-05,7.839887547133992e-05,6.604964926344389e-05,5.819105076751007e-05,4.4157839167628206e-05,2.881486115175739e-05,1.2162116719897602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.189181009581568e-05,5.968792667149745e-05,8.270239369530367e-05,9.767115273517768e-05,0.00010983326945507524,9.935513812716346e-05,9.056099219123752e-05,9.056099219123752e-05,7.746332803134779e-05,5.725550332751794e-05,3.1808612959732184e-05,5.613284639952739e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3014467023806225e-05,6.717230619143443e-05,9.411607246320759e-05,0.0001109559263830658,0.00010889772201508316,9.785826222317609e-05,8.88770067992517e-05,8.58832549912769e-05,7.390824775937772e-05,5.407464203154471e-05,3.2557050911725885e-05,8.04570798393226e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.264024804780938e-05,6.6985196703436e-05,9.449029143920443e-05,0.00011189147382305793,0.000122930933614965,0.00011058170740706895,9.785826222317609e-05,9.224497758322334e-05,7.98957513753273e-05,5.9126598207502166e-05,3.405392681571328e-05,8.794145935925957e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4511342927793627e-05,6.773363465542973e-05,9.486451041520128e-05,0.00011338834972704532,0.00011058170740706895,0.00010066490454315244,9.018677321524066e-05,8.457348857528791e-05,7.110160543940135e-05,5.407464203154471e-05,3.236994142372746e-05,1.1226569279905478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.151759111981883e-05,6.38043354074628e-05,8.981255423924383e-05,0.0001070266271350989,0.00011993718180699017,0.0001094590504790784,9.89809191511666e-05,9.355474399921231e-05,7.933442291133204e-05,5.837816025550848e-05,3.3118379375721156e-05,7.67148900793541e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.058204367982671e-05,6.343011643146594e-05,9.018677321524066e-05,0.00010814928406308941,0.00011769186795100907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620826,0.00010419923339432314,3.010200075836001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.351834800599465e-05,0.00020897735141861472,0.00030507219999337937,0.000378590547999374,0.0003577507013205093,0.0003224387388924333,0.00028133793016467244,0.0002199761593880155,0.00018061200455016008,0.00014414227286214698,8.914823301514312e-05,3.531196242807617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.194065540662542e-05,0.00019508412029937167,0.0002842323533145148,0.0003536985089107301,0.000408692548757734,0.0003733805863296579,0.0003212809696324964,0.0002888634303542624,0.00024023712143691166,0.00018466419695993932,0.0001030414641343862,1.7366538899053853e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.178169411608927e-05,0.00021418731308833088,0.00030854550777319016,0.00038148497114921635,0.0003832216250391218,0.0003450152394612033,0.00029812558443375784,0.00027033912219527167,0.00022171281327792086,0.00016440323491104312,9.609484857476466e-05,2.3155385198738474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.00450402261839e-05,0.00021187177456845704,0.0003079666231432217,0.00038264274040915325,0.00041795470283722945,0.000386116048188964,0.0003351742007517394,0.0002819168147946409,0.0002321327366173532,0.00018119088918012855,0.0001076725411741339,3.010200075836001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.699165578580543e-05,0.00021476619771829933,0.00030970327703312706,0.0003849582789290271,0.00038032720188927946,0.0003444363548312348,0.00029349450739401015,0.00025181481403628087,0.00020897735141861472,0.00016324546565110623,0.00010246257950441773,3.5890847058044634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.715061707634157e-05,0.00020376738974889854,0.0002975466998037894,0.0003716439324397524,0.0004144813950574186,0.00038437939429905864,0.00033227977760189704,0.0002848112379444832,0.00023271162124732165,0.00018003311992019166,9.783150246467004e-05,2.3734269828706938e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.483507855646773e-05,0.00020087296659905622,0.00029696781517382095,0.000372222817069721,0.0004139025104274502,0.00038090608651924785,0.00032764870056214935,0.0002842323533145148,0.00023618492902713242,0.00017945423529022316,8.741157912523774e-05,5.209961669716156e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6151809106940794e-05,0.0001927685817794978,0.00029060008424416776,0.00036180289373028866,0.00041158697190757636,0.00037743277873943717,0.0003241753927823386,0.0002888634303542624,0.00023676381365710092,0.00018234865844006545,0.00010419923339432314,2.0260962048896163e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.194065540662542e-05 +2620827,6.866308323222954e-05,2.0524291183546878e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.888512990990257e-05,0.00013732616646445909,0.0001962868575008301,0.00023696227093731396,0.00021979650012925653,0.00019927220894570965,0.00017688207310911306,0.00014329686935421818,0.0001216530713788415,9.590441516675542e-05,5.9333859966980963e-05,2.537548728147614e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.179492022831364e-05,0.00012575792961555087,0.00017912108669277275,0.00021681114868437703,0.00024927684564744204,0.00022949889232511502,0.00020076488466814942,0.00018807714102741136,0.00015859679550922585,0.00012202624030945142,6.866308323222954e-05,1.3434081501957954e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.739245418746278e-05,0.00013956518004811874,0.00019777953322326988,0.00023770860879853382,0.00023920128452097357,0.000216437979753767,0.00018882347888863124,0.00017800157990094286,0.0001477748965215375,0.0001123238481135929,6.605090071795994e-05,1.753893973866733e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.627294739563296e-05,0.00013695299753384917,0.00019777953322326988,0.0002395744534515835,0.00026420360287183976,0.00024293297382707303,0.00021345262830888752,0.00018695763423558155,0.00015598461299495627,0.00012202624030945142,7.239477253832897e-05,2.1643797975376707e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.112414349356222e-05,0.00014068468683994857,0.00019927220894570965,0.00024144029810463326,0.00023733543986792385,0.0002160648108231571,0.0001854649585131418,0.00016717968091325457,0.00014031151790933863,0.0001097116655993233,6.828991430161961e-05,2.5002318350866196e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.40339338119733e-05,0.00013172863250530994,0.00018956981674985113,0.00023061839911694488,0.0002586060689126907,0.00024069396024341337,0.0002108404457946179,0.0001891966478192412,0.0001563577819255662,0.00012127990244823153,6.754357644039973e-05,1.753893973866733e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2914427020143464e-05,0.0001313554635747,0.00019031615461107101,0.00023211107483938468,0.00025785973105147076,0.0002384549466597537,0.0002078550943497384,0.00018807714102741136,0.00015747728871739602,0.00011904088886457187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620828,7.375276531916576e-05,2.1960093044470708e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3035696409287737e-05,0.0001499915789075169,0.00021545751666273146,0.00026186375102085817,0.00024363273038016558,0.00022333000284848508,0.00019681215464384126,0.00015579235820228272,0.00013093187551042909,0.00010151363765840232,6.215120672963407e-05,2.5274824070051193e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3920186088941416e-05,0.00013880436169618276,0.00019722649602203882,0.00024114668211098027,0.00027843740614876065,0.0002581346786170802,0.00022457302698307777,0.00020717068909878022,0.00017278035470838274,0.00013134621688862667,7.45814480755609e-05,1.3673265480519498e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.137833089649751e-05,0.00015289196855489983,0.00021794356493191682,0.0002660071648028338,0.00026725018893742654,0.00024073234073278269,0.0002117284442589534,0.0001959834718874461,0.000161178796118851,0.00011974465829909496,6.960935153719016e-05,1.8231020640692662e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0549648140102386e-05,0.0001520632857985047,0.00021877224768831197,0.000266835847559229,0.00029459671989846554,0.00027512267512318017,0.00023866063384179483,0.00020219859256040954,0.000167808258170012,0.00013051753413223155,7.831052047933895e-05,2.2788775800865826e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.510740330027555e-05,0.00015372065131129495,0.00021960093044470706,0.0002697362372066119,0.00026062072688626557,0.0002399036579763875,0.0002034416166950022,0.00017982415813774127,0.0001499915789075169,0.0001172586100299096,7.375276531916576e-05,2.5689165448248754e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.847794124911457e-05,0.0001458481651255413,0.00020924239598976805,0.00025730599586068514,0.00028796725784730457,0.0002693218958284143,0.0002349315614380168,0.0002034416166950022,0.00016739391679181445,0.00012844582724124375,7.126671704998042e-05,1.7816679262495105e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.640623435812677e-05,0.00014377645823455347,0.00021007107874616317,0.00025937770275167286,0.00028713857509090945,0.0002660071648028338,0.00023078814765604123,0.00020551332358599003,0.00017070864781739493,0.00012968885137583643,6.380857224242431e-05,4.972096538370726e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.019111368516336e-05,0.0001383900203179852,0.00020468464082959483,0.00025109087518772165,0.00028465252682172403,0.0002660071648028338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620829,2.537105917068775e-05,7.411770094807657e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8101823116164856e-05,5.116972046222978e-05,7.397516690779182e-05,9.065164962110903e-05,8.50928220500033e-05,7.753851791491088e-05,6.82738052964013e-05,5.359279914707075e-05,4.489822268970023e-05,3.4920839869766843e-05,2.1522640082999158e-05,8.55204241708576e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.510860827018484e-05,4.7748903495395494e-05,6.82738052964013e-05,8.423761780829473e-05,9.720821547420813e-05,8.96539113391157e-05,7.796612003576516e-05,7.098195206181178e-05,5.91516267181765e-05,4.518329077026976e-05,2.537105917068775e-05,4.418555248827642e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7531686955025804e-05,5.230999278450789e-05,7.483037114950037e-05,9.236205810452619e-05,9.278966022538048e-05,8.352494760687092e-05,7.326249670636802e-05,6.713353297412322e-05,5.501813954991838e-05,4.0479667440872586e-05,2.3660650687270602e-05,5.986429691960032e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.724661887445628e-05,5.2167458744223134e-05,7.525797327035468e-05,9.250459214481095e-05,0.00010219690688417481,9.521273891022144e-05,8.209960720402328e-05,6.941407761867942e-05,5.729868419447458e-05,4.475568864941547e-05,2.6653865533250615e-05,7.696838175377182e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.881449331758867e-05,5.2595060865077423e-05,7.55430413509242e-05,9.364486446708907e-05,9.093671770167856e-05,8.309734548601663e-05,7.069688398124227e-05,6.171723944330223e-05,5.1312254502514555e-05,4.019459936030307e-05,2.5228525130402985e-05,8.694576457370521e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.667648271331723e-05,4.988691409966692e-05,7.183715630352038e-05,8.922630921826142e-05,0.00010020143032018813,9.321726234623476e-05,8.110186892202993e-05,6.969914569924893e-05,5.7156150154189815e-05,4.3900484407706896e-05,2.423078684840965e-05,5.986429691960032e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5821278471608657e-05,4.917424389824311e-05,7.212222438408989e-05,9.008151345996997e-05,9.991636223961863e-05,9.207699002395666e-05,7.981906255946708e-05,7.055434994095752e-05,5.815388843618315e-05,4.4470620568845944e-05,2.1807708163568686e-05,1.4253404028476265e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3683267867337214e-05,4.7321301374541205e-05,7.026928186038798e-05,8.680323053342044e-05,9.877608991734052e-05,9.250459214481095e-05,7.953399447889757e-05,7.083941802152705e-05,5.8438956516752684e-05,4.489822268970023e-05,2.5656127251257278e-05,4.988691409966692e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5251142310469603e-05 +2620830,5.048059258242897e-05,1.4583282301590588e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.561686254426932e-05,0.00010152208063799603,0.00014779595717188926,0.00018285192424302048,0.00017303625346310372,0.0001564898370055298,0.0001368584954456963,0.00010657013989623894,8.749969380954353e-05,6.955103866912437e-05,4.2908503695064624e-05,1.682686419414299e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9727460076319278e-05,9.479133496033884e-05,0.0001374193909188344,0.00017107311930712038,0.0001977156542811801,0.00018116923782360614,0.00015592894153239166,0.00014050431602109396,0.0001166662584127247,8.946282796552689e-05,4.991969710929086e-05,8.413432097071494e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.477551933456218e-05,0.00010404611026711747,0.0001497590913278726,0.0001853759538721419,0.00018621729708184908,0.0001677077464682918,0.00014555237527933687,0.0001318104361874534,0.00010797237857908418,7.936670944904108e-05,4.627387653389322e-05,1.1498357199331044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3934176124855034e-05,0.00010292431932084127,0.00014947864359130355,0.000185656401608711,0.00020304416127599206,0.00018818043123783242,0.00016294013494661796,0.0001368584954456963,0.00011245954236418898,8.806058928268163e-05,5.2163279001843264e-05,1.4583282301590588e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.729954896368363e-05,0.00010432655800368653,0.00015031998680101072,0.00018733908802812525,0.00018369326745272763,0.0001665859555220156,0.00014190655470393921,0.00012199476540753665,0.00010124163290142699,7.908626171247204e-05,4.963924937272182e-05,1.7107311930712038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.281238517857883e-05,9.899805100887458e-05,0.00014386968885992256,0.00018004744687732995,0.00020080057938343964,0.00018621729708184908,0.00016125744852720362,0.00013769983865540345,0.00011273999010075803,8.693879833640545e-05,4.739566748016942e-05,1.1498357199331044e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.141014649573358e-05,9.759581232602934e-05,0.0001441501365964916,0.00018060834235046809,0.0002005201316468706,0.00018453461066243477,0.00015901386663465125,0.00013826073412854153,0.00011470312425674137,8.72192460729745e-05,4.2628055958495574e-05,2.524029629121448e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7203430447197827e-05,9.39499917506317e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620831,2.8007252141503417e-05,8.136184979654623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9871067161848796e-05,5.6796829761819783e-05,8.245710546688437e-05,0.0001017023122456828,9.62260338939922e-05,8.715105833976205e-05,7.619850163638084e-05,5.930027129402121e-05,4.8973574973690336e-05,3.849041355759688e-05,2.3626229460150933e-05,9.07497555423016e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.642883505507184e-05,5.3198132559280245e-05,7.682436201943118e-05,9.560017351094184e-05,0.0001103078925126252,0.00010123291695839505,8.730752343552463e-05,7.854547807281963e-05,6.493301474147441e-05,4.975590045250328e-05,2.7850787045740828e-05,4.693952872877669e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9401671874561032e-05,5.8048550527920496e-05,8.355236113722249e-05,0.0001035798933948339,0.00010404928868212164,9.325319707450302e-05,8.151831489230884e-05,7.369506010417941e-05,6.0239061868596736e-05,4.4279622100812664e-05,2.566027570506459e-05,6.258603830503558e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8932276587273265e-05,5.789208543215791e-05,8.386529132874768e-05,0.00010373635849059647,0.00011343719442787697,0.00010561393963974753,9.137561592535195e-05,7.604203654061822e-05,6.242957320927298e-05,4.881710987792775e-05,2.8946042716078955e-05,8.292650075417214e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0809857736424333e-05,5.836148071944568e-05,8.402175642451026e-05,0.00010467514906517199,0.000102015242437208,9.262733669145265e-05,7.870194316858223e-05,6.774938646520102e-05,5.6014504283006835e-05,4.38102268135249e-05,2.753785685421565e-05,9.387905745755338e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8306416204222905e-05,5.554510899571907e-05,8.057952431773332e-05,0.00010076352167110728,0.00011218547366177626,0.00010389282358635906,9.012389515925123e-05,7.619850163638084e-05,6.242957320927298e-05,4.80347843991148e-05,2.6129670992352352e-05,6.258603830503558e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7524090725409963e-05,5.460631842114354e-05,8.057952431773332e-05,0.00010107645186263244,0.00011187254347025109,0.00010295403301178352,8.871570929738793e-05,7.745022240248155e-05,6.36812939753737e-05,4.881710987792775e-05,2.3782694555913522e-05,1.4081858618633004e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5177114288971127e-05,5.257227217622989e-05,7.854547807281963e-05,9.747775466009291e-05,0.00011093375289567556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620832,2.761052829765187e-05,8.471412091325006e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0707896223238906e-05,5.694671461390699e-05,8.016465886420515e-05,9.491119102317829e-05,8.64397789318533e-05,7.985090286082274e-05,7.232075877964495e-05,5.882925063420144e-05,5.0671594546258834e-05,3.843511041434493e-05,2.4002334258754185e-05,1.0510826113310657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.772721419110603e-05,5.145598455471486e-05,7.043822275935051e-05,8.502787691663246e-05,9.789187305531118e-05,9.06754849775158e-05,8.141968287773479e-05,7.890963485067551e-05,6.63593947153792e-05,5.035783854287642e-05,2.8551796307799094e-05,5.8044860625745405e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9766628213091678e-05,5.788798262405421e-05,8.063529286927877e-05,9.742123905023759e-05,9.757811705192878e-05,9.130299698428064e-05,7.953714685744035e-05,7.561519681516025e-05,6.322183468155514e-05,4.737715651074356e-05,2.761052829765187e-05,7.687022082868987e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.929599420801807e-05,5.710359261559819e-05,8.094904887266117e-05,9.695060504516394e-05,0.00010934396717876907,0.00010181382309759127,8.769480294538296e-05,7.87527568489843e-05,6.667315071876161e-05,5.176974055809726e-05,3.0120576324711133e-05,9.098924098089821e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.086477422493011e-05,5.788798262405421e-05,8.1576560879426e-05,9.91468970688408e-05,9.506806902486951e-05,8.753792494369173e-05,7.592895281854266e-05,7.043822275935051e-05,5.8672372632510226e-05,4.6279010498905126e-05,2.8551796307799094e-05,1.019707010992825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8354726197870847e-05,5.3966032581774116e-05,7.561519681516025e-05,9.208738699273663e-05,0.00010510826113310656,9.804875105700239e-05,8.65966569335445e-05,7.906651285236671e-05,6.57318827086144e-05,5.020096054118523e-05,2.9022430312872707e-05,7.530144081177783e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7570336189414828e-05,5.4436666586847716e-05,7.76546108371459e-05,9.491119102317829e-05,0.00010526513913479777,9.695060504516394e-05,8.518475491832366e-05,8.016465886420515e-05,6.714378472383523e-05,5.0671594546258834e-05,2.4943602268901405e-05,2.510048027059261e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5060288162355566e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620833,0.0001291418107612777,3.8958982017368704e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.37901418936654e-05,0.0002662197104520195,0.0003787678807244179,0.0004516356063494964,0.0004155624748519328,0.00038526104439397935,0.0003376445108171954,0.00027126994886167834,0.0002287036536945533,0.00017675834433806168,0.00010749793186273956,4.400922042702761e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.719650140478615e-05,0.00024529729418343256,0.0003448591371167081,0.00041411954959203026,0.00047832972365769344,0.0004480282931997401,0.0003881468949137845,0.0003636171654954412,0.0003030143045795344,0.00022942511632450453,0.00013202766128108282,2.4529729418343256e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.09042913738603e-05,0.0002705484862317271,0.00038237519387417427,0.00045885023264900907,0.0004624575457987655,0.0004242200264113481,0.00036650301601524627,0.0003434162118568056,0.00028497773883075255,0.0002135529384655766,0.00012192718446176501,3.246581834780726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.873990348400649e-05,0.00026910556097182455,0.00038381811913407686,0.00046029315790891166,0.0005079096914856956,0.00048049411154754733,0.00041772686274178664,0.00035207376341622087,0.00029435675302011904,0.00022653926580469948,0.00013707789969074174,4.1844832537173784e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.739745504342176e-05,0.00027199141149162963,0.00038526104439397935,0.0004653433963185706,0.00044586390530988615,0.00041411954959203026,0.00035207376341622087,0.00031311478139885217,0.0002626123973022631,0.00020345246164625878,0.0001291418107612777,4.545214568693015e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.58540529642014e-05,0.00025900508415250666,0.00037011032916500265,0.00044586390530988615,0.0004978092146663778,0.0004689507094683269,0.00040906931118237134,0.0003542381513060747,0.00029363529039016785,0.0002236534152848944,0.00012553449761152136,3.246581834780726e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.224673981444504e-05,0.00025539777100275034,0.00036938886653505135,0.0004480282931997401,0.000495644826776524,0.0004624575457987655,0.00040041175962295616,0.00036000985234568486,0.0003008499166896805,0.00022726072843465075,0.000113991095532301,9.379014189366539e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.142480036517595e-05,0.00024529729418343256,0.0003614527776055874,0.0004357634284905684,0.0004934804388866703,0.0004595716952789604,0.00039896883436305356,0.00036217424023553865,0.0003015713793196318,0.00023014657895445583,0.00013202766128108282,2.59726546782458e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.863942666468868e-05 +2620834,5.669004137757106e-05,1.6879619061861048e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1084355829812747e-05,0.0001159279497833476,0.0001662483235904051,0.0002006445284711785,0.00018567580968047154,0.00017134405764681593,0.0001500056712855954,0.00011911278356860439,0.00010000378085706356,7.739146098174028e-05,4.713554002180067e-05,1.8790519333015134e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3759238123722095e-05,0.00010732889856315422,0.00015223505493527513,0.00018503884292342022,0.00021370234699073142,0.0001993705949570758,0.00017261799116091866,0.00015924168926284007,0.00013217060208815727,0.00010064074761411493,5.732700813462244e-05,1.0509951491347447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949193893718435e-05,0.00011783885005450166,0.00016784074048303344,0.00020351087887790967,0.00020510329577053804,0.00018503884292342022,0.00016210803966957123,0.00015032415466412108,0.00012389003424648958,9.236017977244724e-05,5.2868240835262915e-05,1.3694785276604249e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.917345555865866e-05,0.00011783885005450166,0.0001687961906186105,0.00020478481239201234,0.0002248492652391302,0.00021210993009810299,0.0001844018761663688,0.0001544644385849549,0.00012834880154584912,9.936681410001221e-05,5.987487516282787e-05,1.7835069197438088e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.267677272244115e-05,0.00011879430019007872,0.00016943315737566188,0.00020637722928464075,0.00019873362820002443,0.0001831279426522661,0.0001557383720990576,0.00013726633614456816,0.00011433553289071916,8.885686260866477e-05,5.637155799904539e-05,1.9745969468592174e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.758103866603027e-05,0.00011306159937661648,0.0001624265230480969,0.00019809666144297307,0.00022070898131829639,0.0002073326794202178,0.00018089855900258635,0.00015510140534200626,0.00012803031816732344,9.777439720738381e-05,5.446065772789132e-05,1.3694785276604249e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.598862177340186e-05,0.00011115069910546238,0.00016210803966957123,0.00019873362820002443,0.0002197535311827193,0.00020478481239201234,0.00017707675846027817,0.00015764927237021172,0.00013089666857405457,9.936681410001221e-05,4.936492367148043e-05,3.5033171637824815e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.121137109551666e-05,0.00010701041518462853,0.0001582862391272631,0.0001933194107650879,0.0002187980810471423,0.00020446632901348664,0.00017643979170322682,0.00015924168926284007,0.0001315336353311059,0.00010064074761411493,5.7645491513148115e-05,1.1146918248398806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.471468825929914e-05 +2620835,3.549516294075074e-05,1.0648548882225223e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.563539545720887e-05,7.31594747278807e-05,0.00010431633997587298,0.0001248246563416401,0.00011516208420776907,0.00010648548882225222,9.248461899562276e-05,7.434264682590572e-05,6.251092584565547e-05,4.851005601902601e-05,2.9579302450625616e-05,1.1831720980250247e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.109990241477961e-05,6.783520028676809e-05,9.5836939940027e-05,0.0001153592795574399,0.00013290966567814445,0.00012423307029262758,0.00010707707487126471,9.958365158377291e-05,8.301924221142256e-05,6.290531654499715e-05,3.6086748989763256e-05,6.704641888808473e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4846614058525513e-05,7.434264682590572e-05,0.00010549951207389803,0.00012659941448867762,0.00012758539123703183,0.00011614806095612325,0.0001001752376327854,9.386498644331864e-05,7.749777242063911e-05,5.836982350256788e-05,3.312881874470069e-05,8.676595385516847e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4255028009513004e-05,7.394825612656404e-05,0.00010569670742356887,0.00012719100053769017,0.00013941711221728207,0.0001317264935801194,0.00011496488885809823,9.623133063936867e-05,8.025850731603085e-05,6.172214444697213e-05,3.766431178712995e-05,1.143733028090857e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6818567555233892e-05,7.493423287491824e-05,0.00010609109812291054,0.00012817697728604433,0.00012344428889394425,0.00011417610745941487,9.682291668838118e-05,8.558278175714346e-05,7.177910728018482e-05,5.560908860717616e-05,3.5297967591079895e-05,1.2423307029262757e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3663441960500495e-05,7.158191193051399e-05,0.00010254158182883548,0.00012344428889394425,0.00013744515872057372,0.0001291629540343985,0.00011259854466204818,9.702011203805202e-05,8.025850731603085e-05,6.132775374763045e-05,3.411479549305488e-05,8.873790735187685e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2677465212146302e-05,7.00043491331473e-05,0.00010175280043015212,0.00012364148424361506,0.00013665637732189037,0.00012738819588736097,0.00010983780976665646,9.820328413607703e-05,8.203326546306836e-05,6.211653514631379e-05,3.095966989832148e-05,1.971953496708374e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620836,3.8517586828453104e-05,1.118946656469029e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775848436240476e-05,7.98325402980788e-05,0.00011340093999214966,0.00013470396287492542,0.00012416004245819804,0.00011512239638671741,9.87685606383239e-05,7.940217619943687e-05,6.67064352894998e-05,5.185887388635308e-05,3.1201397151540226e-05,1.2265376811295125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.237893312938058e-05,7.359226086777077e-05,0.00010436329392066906,0.0001248055886061609,0.00014374160894640601,0.00013513432697356733,0.00011512239638671741,0.0001071606605618416,8.930055046820134e-05,6.713679938814173e-05,3.8947950927095054e-05,7.101007627591915e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7112938214441854e-05,8.090845054468362e-05,0.00011490721433739645,0.00013642541926949314,0.00013728614746677702,0.00012760295524733348,0.00010823657080844646,0.00010113556318085454,8.327545308721426e-05,6.304834045104337e-05,3.550503813795958e-05,9.468010170122553e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6682574115799924e-05,8.11236325940046e-05,0.00011533757843603839,0.000137501329516098,0.00014869079608078827,0.00014309606279844312,0.00012459040655683995,0.00010242665547678035,8.585763767906588e-05,6.498497889493207e-05,4.045422527234181e-05,1.2480558860616093e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9264758707651528e-05,8.17691787419675e-05,0.00011533757843603839,0.0001379316936147399,0.00013169141418443187,0.00012243858606363027,0.000104793658019311,9.102200686276907e-05,7.660480955826428e-05,5.8529517415303055e-05,3.765685863116924e-05,1.3126105008578994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5821845918516057e-05,7.832626595283203e-05,0.00011275539384418678,0.0001340584167269625,0.00014826043198214636,0.00014029869615727055,0.00012179303991566736,0.00010371774777270617,8.628800177770781e-05,6.541534299357401e-05,3.636576633524344e-05,9.252828120801586e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.474593567191122e-05,7.660480955826428e-05,0.00011103393744961904,0.0001334128705789996,0.00014718452173554154,0.0001381468756640609,0.00011856530917585288,0.00010565438621659487,8.843982227091749e-05,6.692161733882077e-05,3.3568399694070865e-05,2.3670025425306383e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1518204932096713e-05,7.402262496641269e-05,0.00010931248105505129,0.00013104586803646897,0.00014804524993282538,0.000137501329516098,0.000117704580978569,0.00010780620670980452,8.930055046820134e-05,6.778234553610463e-05,3.8732768877774086e-05,7.531371726233849e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3454843375985415e-05 +2620837,3.4694994979953554e-05,1.0584913722697697e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5482199702790753e-05,7.15461760886048e-05,0.00010094871420720951,0.00011976633860311651,0.00010976947564279091,0.00010232083265274441,9.114786816767462e-05,7.29182945341397e-05,6.213736389065129e-05,4.743609483134894e-05,2.9206521197814014e-05,1.2153049089023282e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1365844366186094e-05,6.507761770251177e-05,8.977574972213973e-05,0.00010800532335567464,0.00012505879546446537,0.00011761015247441884,0.00010349693417748859,9.800846039534903e-05,8.193507289051179e-05,6.213736389065129e-05,3.567507958390705e-05,7.05660914846513e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4698132019627953e-05,7.29182945341397e-05,0.00010192879881116301,0.000122706592414977,0.00012349066009813978,0.00011525794942493046,9.898854499930253e-05,9.31080373755816e-05,7.801473447469785e-05,5.8217025474837336e-05,3.3322876534418674e-05,9.212795277162808e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4306098178046565e-05,7.233024377176759e-05,0.00010251684957353509,0.000122706592414977,0.00013799591223665142,0.00012917515080107005,0.00011153362792990719,9.565625734586067e-05,8.095498828655831e-05,6.252939773223268e-05,3.704719802944194e-05,1.1368981405860489e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6266267385953543e-05,7.29182945341397e-05,0.00010290888341511648,0.00012486277854367468,0.00011878625399916302,0.00011055354332595371,9.448015582111648e-05,8.487532670237227e-05,7.17421930093955e-05,5.586482242534895e-05,3.508702882153495e-05,1.2349066009813977e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3326013574093072e-05,6.899795611832571e-05,9.702837579139555e-05,0.00011761015247441884,0.00013309548921688398,0.00012545082930604678,0.00010957345872200023,9.663634194981414e-05,7.997490368260481e-05,6.0961262365907105e-05,3.508702882153495e-05,9.01677835637211e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.214991204934888e-05,6.860592227674433e-05,9.800846039534903e-05,0.00011957032168232583,0.00013250743845451187,0.00012349066009813978,0.00010800532335567464,9.859651115772113e-05,8.23271067320932e-05,6.233338081144198e-05,3.097067348493029e-05,2.744236891069773e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.920965823748841e-05,6.605770230646526e-05,9.663634194981414e-05,0.00011564998326651186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620838,1.926320054026867e-05,5.503771582933907e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3979579820652121e-05,3.9627155397124136e-05,5.668884730421924e-05,6.802661676506307e-05,6.274299604544654e-05,5.822990334744072e-05,4.9533944246405154e-05,3.9296929102148086e-05,3.2472252339310055e-05,2.5207273849837295e-05,1.4860183273921547e-05,5.613847014592584e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0897467734209134e-05,3.687526960565718e-05,5.23959054695308e-05,6.318329777208124e-05,7.298001118970359e-05,6.835684306003913e-05,5.767952618914735e-05,5.3276508922800226e-05,4.414024809512993e-05,3.3022629497603434e-05,1.926320054026867e-05,3.4123383814190222e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3539278094017409e-05,4.050775885039355e-05,5.778960162080601e-05,6.890722021833251e-05,6.912737108164986e-05,6.3953825793692e-05,5.4487338671045684e-05,5.03044722680159e-05,4.1058136008686944e-05,3.0821120864429876e-05,1.717176733875379e-05,4.513092698005804e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3429202662358732e-05,4.0617834282052236e-05,5.78996770524647e-05,6.923744651330855e-05,7.386061464297303e-05,7.209940773643416e-05,6.274299604544654e-05,5.0194396836357226e-05,4.160851316698034e-05,3.115134715940591e-05,1.9923653130220743e-05,6.1642241728859755e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4640032410604195e-05,4.072790971371091e-05,5.778960162080601e-05,6.934752194496721e-05,6.527473097359613e-05,6.14220908655424e-05,5.23959054695308e-05,4.4690625253423324e-05,3.753572219560924e-05,2.81793105046216e-05,1.8382597086999246e-05,6.1642241728859755e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2878825504065339e-05,3.940700453380676e-05,5.668884730421924e-05,6.780646590174573e-05,7.463114266458377e-05,7.066842712487134e-05,6.131201543388373e-05,5.0634698562991934e-05,4.2048814893615044e-05,3.1811799749357976e-05,1.750199363372982e-05,4.403017266347125e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2438523777430626e-05,3.852640108053734e-05,5.5918319282608485e-05,6.747623960676969e-05,7.419084093794907e-05,6.989789910326062e-05,5.955080852734486e-05,5.217575460621343e-05,4.3479795505177866e-05,3.269240320262741e-05,1.6731465612119078e-05,9.90678884928103e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0897467734209134e-05,3.720549590063321e-05,5.5257866692656414e-05,6.63754852901829e-05,7.474121809624244e-05,7.000797453491928e-05,5.944073309568619e-05,5.349665978611757e-05,4.425032352678861e-05,3.335285579257947e-05,1.893297424529264e-05,3.5224138130777e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1998222050795919e-05 +2620839,2.9787622644678012e-05,8.770800000932969e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1678769813626776e-05,6.139560000653078e-05,8.704605283944795e-05,0.00010376021887896172,9.548587925544006e-05,8.886640755662273e-05,7.595843774392891e-05,6.023719245923775e-05,4.981152453360044e-05,3.888939623055184e-05,2.316815094586067e-05,8.770800000932969e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6879652831984203e-05,5.643099623241778e-05,7.993012076321932e-05,9.565136604791047e-05,0.00011071066416271991,0.00010442216604884348,8.787348680180011e-05,8.108852831051234e-05,6.768409812040726e-05,5.047347170348218e-05,2.995310943714844e-05,5.626550943994735e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.101682264374504e-05,6.271949434629425e-05,8.836994717921143e-05,0.00010425667925637302,0.00010541508680366605,9.697526038767396e-05,8.373631699003928e-05,7.695135849875153e-05,6.35469283086464e-05,4.7494709439014374e-05,2.6808860380210204e-05,7.281418868699067e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.052036226633374e-05,6.205754717641252e-05,8.820446038674099e-05,0.00010442216604884348,0.00011335845284224686,0.0001095522566154269,9.61478264253218e-05,7.628941132886977e-05,6.371241510111684e-05,4.7660196231484805e-05,3.078054339950061e-05,9.598233963285135e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2340716983508503e-05,6.238852076135338e-05,8.787348680180011e-05,0.00010475313963378433,9.879561510484872e-05,9.333455095332442e-05,7.959914717827847e-05,6.851153208275941e-05,5.775489057218125e-05,4.3026566042312676e-05,2.8298241512444106e-05,9.763720755755568e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9858415096452005e-05,6.040267925170817e-05,8.638410566956623e-05,0.00010276729812413915,0.00011352393963471729,0.00010822836227566341,9.366552453826527e-05,7.744781887616282e-05,6.437436227099858e-05,4.865311698630741e-05,2.7305320757621507e-05,7.115932076228634e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.919646792657027e-05,5.940975849688557e-05,8.522569812227318e-05,0.0001022708377467278,0.00011286199246483556,0.00010740092831331125,9.134870944367921e-05,8.02610943481602e-05,6.702215095052551e-05,5.030798491101175e-05,2.6146913210328466e-05,1.8203547171747667e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.671416603951377e-05,5.742391698724037e-05,8.456375095239145e-05,0.00010111243019943478,0.00011368942642718774,0.00010756641510578168,9.167968302862009e-05,8.208144906533496e-05,6.834604529028897e-05,5.130090566583435e-05,2.9456649059737137e-05,5.792037736465168e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8534520756688537e-05 +2620840,0.00011291473162256342,3.2534753179382676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.229378745373265e-05,0.00023539850829788645,0.00033364070417288516,0.0003942446561736959,0.0003629857756680146,0.00033619244952028766,0.0002896230969301909,0.0002315708902767826,0.0001958464554131467,0.00015182884817045253,9.058695983279098e-05,3.572443486363588e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.634537903246663e-05,0.00021498454551866595,0.00030365769634090506,0.00036107196665746265,0.0004172103643003191,0.0003936067198368454,0.0003342786405097358,0.0003113129323831127,0.00026091596177191213,0.0001958464554131467,0.00011482854063311536,2.1051899116071145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.037997844318074e-05,0.00023858818998213964,0.0003368303858571383,0.00039743433785794925,0.0004006240195422024,0.0003776583114155793,0.00031896816842532033,0.000296640396635548,0.0002456054896874967,0.0001869153466972378,0.00010525949558035574,2.8069198821428188e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.910410576947946e-05,0.00023986406265584092,0.000339382131204541,0.000401261955879053,0.0004357105180689876,0.00041976210964772163,0.0003655375210154172,0.0002979162693092493,0.00025198485305600313,0.00018882915570778966,0.0001186561586542192,3.700030753733717e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.612140547483651e-05,0.00023986406265584092,0.0003387441948676902,0.0004025378285527544,0.00038084799309983253,0.0003546926032889562,0.0003049335690146063,0.0002647435797930159,0.00022391565423457492,0.00017032900193912108,0.00010972504993831023,3.8276180211038445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.591442408522626e-05,0.00023029501760308134,0.0003298130861517812,0.00039105497448944275,0.00043315877272158507,0.00041146893726866335,0.0003572443486363588,0.0003023818236672037,0.00025198485305600313,0.00019138090105519224,0.00010717330459090766,2.7431262484577556e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.336267873782368e-05,0.00022582946324512684,0.00032534753179382683,0.00038977910181574153,0.0004306070273741825,0.0004063654465738582,0.0003489511762573005,0.0003113129323831127,0.00026091596177191213,0.00019712232808684796,0.0001001560048855506,7.017299705357047e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620841,1.376014245435149e-05,4.051597500447938e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0014325897333584e-05,2.8437627738993076e-05,4.0210194061049344e-05,4.777827241094267e-05,4.3956010618067254e-05,4.0898201183766925e-05,3.4935472786881276e-05,2.77496206162755e-05,2.3239351700682516e-05,1.819396613408697e-05,1.0778778255908666e-05,4.204487972162955e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.873859293323351e-06,2.5762044483980286e-05,3.646437750403144e-05,4.365022967463722e-05,5.060674613767048e-05,4.777827241094267e-05,4.013374882519184e-05,3.707593939089151e-05,3.118965622986337e-05,2.339224217239753e-05,1.3913032926066506e-05,2.675583255012789e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.784990189761057e-06,2.8896299154138126e-05,4.074531071205191e-05,4.7854717646800173e-05,4.861917000537525e-05,4.525557962764489e-05,3.868128934389918e-05,3.5470589437883835e-05,2.9507861040998193e-05,2.224556363453491e-05,1.2689909152346372e-05,3.5164808494453805e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.555654482188533e-06,2.8743408682423107e-05,4.0821755947909414e-05,4.8160498590230205e-05,5.259432226996569e-05,5.0530300901812966e-05,4.4185346325639775e-05,3.52412537303113e-05,2.9737196748570717e-05,2.2322008870392414e-05,1.4295259105354047e-05,4.510268915592988e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0320106840763617e-05,2.8819853918280615e-05,4.059242024033688e-05,4.823694382608773e-05,4.571425104278995e-05,4.2809332080204626e-05,3.654082273988895e-05,3.164832764500842e-05,2.6679387314270388e-05,2.0105097030524672e-05,1.3072135331633914e-05,4.586714151450496e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.249873538758502e-06,2.7826065852133013e-05,3.9751522645904304e-05,4.72431557599401e-05,5.236498656239317e-05,4.99187390149529e-05,4.319155825949217e-05,3.585281561717138e-05,2.996653245614324e-05,2.2704235049679957e-05,1.2842799624061389e-05,3.4400356135878726e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.867647359470959e-06,2.729094920113045e-05,3.9216405994901745e-05,4.701382005236758e-05,5.205920561896312e-05,4.953651283566536e-05,0.0,0.0,0.0,0.0,0.0,9.173428302900991e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.644523585750826e-08,3.8222617928754133e-07,3.05780943430033e-07,2.2933570757252477e-07,7.644523585750826e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620842,6.998612767709904e-05,2.060702648270138e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.248959575782426e-05,0.0001481373035831929,0.00020684788846787048,0.0002426185759472766,0.00021656818397857867,0.00019712759295716225,0.00017535413101317588,0.00014735967994233628,0.00012869671256177657,9.836939056836696e-05,6.026583216639083e-05,2.6050391968697974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.510217116968604e-05,0.00013180720712520317,0.00018118630831960082,0.00021617937215815026,0.00024534025869027496,0.00022395560856671684,0.00019946046387973222,0.00019751640477759058,0.00016796670642503763,0.00012636384163920657,7.231899859966899e-05,1.4386037355848133e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0156724835254296e-05,0.00014852611540362126,0.0002060702648270138,0.00024534025869027496,0.00024456263504941825,0.00022667729130971517,0.0001979052165980189,0.00019090660383030901,0.00016213452911861272,0.00012208691161449495,7.154137495881234e-05,1.9440591021416395e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.860147755354099e-05,0.00014697086812190798,0.00020684788846787048,0.00024495144686984655,0.0002733347097611145,0.00025272768327841313,0.00021890105490114865,0.00019673878113673392,0.000170688389168036,0.0001298631480230615,7.620711680395226e-05,2.3328709225699674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.365603121910925e-05,0.00014852611540362126,0.00020723670028829878,0.0002480619414332732,0.00023911926956342165,0.00022006749036243358,0.00019323947475287902,0.00017807581375617419,0.0001477484917627646,0.00011625473430807005,7.115256313838401e-05,2.5661580148269645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7046230271827685e-05,0.00014113869081548304,0.00019751640477759058,0.00023600877499999507,0.00026516966153211966,0.00024456263504941825,0.00021617937215815026,0.00019946046387973222,0.00016913314188632265,0.00012791908892091988,7.348543406095399e-05,1.9051779200988066e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.510217116968604e-05,0.0001407498789950547,0.00019946046387973222,0.0002402857050247066,0.0002628367906095497,0.0002402857050247066,0.0002107360066721537,0.00020101571116144551,0.00017185482462932095,0.00012869671256177657,6.376513855024579e-05,6.609800947281575e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620843,5.5395299607874033e-05,1.618289651465983e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.139086993172612e-05,0.00011483632334441305,0.0001602729174048041,0.00018952661495053532,0.00017241008979079897,0.00015716082192121568,0.0001391106681164028,0.00011390269469933652,9.86534268297532e-05,7.624633934791651e-05,4.668143225382644e-05,1.9917411094965946e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4544259867831565e-05,0.00010207673186170049,0.0001412891349549147,0.00016836436566213404,0.00019388354862755913,0.00018019032849977005,0.00015591598372778032,0.0001515590500507565,0.00012884075302056097,9.740858863631784e-05,5.632892825295058e-05,1.1203543740918345e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.983482218993189e-05,0.00011545874244113073,0.0001602729174048041,0.00019108266269232953,0.0001926387104341238,0.00018081274759648776,0.00015529356463106261,0.00014689090682537385,0.00012448381934353718,9.49189122494471e-05,5.446167096279751e-05,1.493805832122446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.92124030932142e-05,0.00011545874244113073,0.0001618289651465983,0.0001923275008857649,0.00021566821701267817,0.00020135257778817139,0.0001739661375325932,0.00015031421185732113,0.00012946317211727864,9.989826502318857e-05,5.9129814188180156e-05,1.836136335317173e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.232449857680264e-05,0.00011545874244113073,0.0001612065460498807,0.0001932611295308415,0.00018672572901530575,0.00017365492798423435,0.00014938058321224462,0.00013382010579430245,0.00011265785650590116,8.807230218555253e-05,5.4772880511156354e-05,1.96062015466071e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7345145803061155e-05,0.0001101681801190304,0.00015498235508270376,0.00018485847172515274,0.00020819918785206588,0.00019543959636935337,0.00017054283250064593,0.0001521814691474742,0.00012821833392384329,9.803100773303551e-05,5.601771870459174e-05,1.4626848772865617e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.578909806126693e-05,0.00010861213237723619,0.0001543599359859861,0.00018610330991858807,0.00020570951146519517,0.00019170508178904724,0.0001668083179203398,0.00015498235508270376,0.0001313304294074317,9.92758459264709e-05,4.979352773741487e-05,4.9793527737414865e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1120954835884296e-05,0.00010456640824857122,0.0001521814691474742,0.0001817463762415643,0.00020633193056191285,0.00018797056720874113,0.00016494106063018676,0.0001521814691474742,0.00013070801031071403,9.989826502318857e-05,5.664013780130941e-05,1.1514753289277188e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4544259867831565e-05 +2620844,2.9951268072789883e-05,8.904431048667264e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.250392574117726e-05,6.314051107236787e-05,8.791101926229679e-05,0.00010361519765721906,9.309177914515776e-05,8.418734809649049e-05,7.41496258234474e-05,6.249291608701024e-05,5.439797877004001e-05,4.193177530190585e-05,2.525620442894715e-05,1.1009114751079526e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.894215332171036e-05,5.601696623343406e-05,7.73876007502355e-05,9.244418415980015e-05,0.0001050722863742737,9.681545031096407e-05,8.45111455891693e-05,8.273025937943585e-05,7.058785340398049e-05,5.326468754566418e-05,3.0760761804486915e-05,6.152152360897382e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1370634516801437e-05,6.297861232602846e-05,8.758722176961798e-05,0.00010377709640355845,0.00010410089389623727,9.713924780364287e-05,8.43492468428299e-05,8.030177818434478e-05,6.832127095522882e-05,5.196949757494893e-05,3.0113166819129292e-05,8.256836063309643e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0561140785104408e-05,6.249291608701024e-05,8.774912051595739e-05,0.00010393899514989786,0.00011640519861803205,0.00010798646380838298,9.341557663783656e-05,8.208266439407824e-05,7.123544838933812e-05,5.4559877516379416e-05,3.237974926788096e-05,1.0199621019382501e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2665824487516672e-05,6.297861232602846e-05,8.774912051595739e-05,0.00010458659013525549,0.0001013486152084674,9.357747538417596e-05,8.143506940872061e-05,7.366392958442917e-05,6.119772611629502e-05,4.856962390182144e-05,2.978936932645048e-05,1.0847216004740122e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9913545799746786e-05,6.038823238459799e-05,8.49968418281875e-05,0.00010086291896944919,0.00011300532494490454,0.0001047484888815949,9.16346904281031e-05,8.305405687211465e-05,7.091165089665931e-05,5.358848503834299e-05,3.0760761804486915e-05,8.09493731697024e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9265950814389173e-05,5.957873865290096e-05,8.46730443355087e-05,0.0001016724127011462,0.00011154823622784991,0.00010264380517918263,8.953000672569085e-05,8.402544935015109e-05,7.188304337469574e-05,5.423608002370061e-05,2.7198989385020003e-05,2.7522786877698816e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6837469619298095e-05,5.795975118950691e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620845,2.826508580225108e-05,8.463556765645805e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1398426539557317e-05,5.940458710981584e-05,8.319835990380122e-05,9.773012718066478e-05,8.798905241265732e-05,8.064332389907795e-05,7.233945688372736e-05,5.972396661040624e-05,5.205885859623647e-05,3.9603058073210554e-05,2.4592221545461394e-05,1.0699213269778658e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8364321283948443e-05,5.333637659859809e-05,7.265883638431776e-05,8.719060366118131e-05,9.964640418420721e-05,9.10231576682662e-05,8.192084190143958e-05,8.064332389907795e-05,6.818752337605204e-05,5.1579789345350844e-05,2.938291405431751e-05,5.908520760922543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0440288037786094e-05,5.988365636070145e-05,8.319835990380122e-05,9.980609393450242e-05,9.964640418420721e-05,9.277974492151346e-05,8.080301364937315e-05,7.760921864346907e-05,6.563248737132878e-05,4.918444309092279e-05,2.8903844803431902e-05,7.824797764464989e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9801529036605277e-05,5.9085207609225426e-05,8.351773940439163e-05,9.932702468361681e-05,0.0001113037559557571,0.0001033192684409969,8.894719091442857e-05,8.032394439848752e-05,6.930535162811847e-05,5.3016997098007684e-05,3.0820121806974344e-05,9.421695267417029e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.155811628985252e-05,5.988365636070145e-05,8.383711890498202e-05,0.00010124330168715924,9.709136817948397e-05,8.974563966590457e-05,7.888673664583068e-05,7.265883638431776e-05,6.0203035861291854e-05,4.742785583767555e-05,2.9063534553727105e-05,1.0379833769188252e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.900308028512926e-05,5.637048185420696e-05,7.85673571452403e-05,9.48557116753511e-05,0.000107311512198377,9.948671443391202e-05,8.798905241265732e-05,8.128208290025877e-05,6.834721312634726e-05,5.189916884594125e-05,3.0021673055498324e-05,7.665108014169785e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8364321283948443e-05,5.6849551105092575e-05,8.032394439848752e-05,9.773012718066478e-05,0.000107311512198377,9.804950668125516e-05,8.607277540911487e-05,8.239991115232519e-05,6.978442087900409e-05,5.2218548346531654e-05,2.5869739547823025e-05,2.555036004723262e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5809285279225184e-05,5.4613894600959724e-05,7.904642639612593e-05,9.405726292387507e-05,0.00010651306344690096,9.773012718066478e-05,8.639215490970528e-05,7.95254956470115e-05,6.850690287664245e-05,5.2378238096826874e-05,2.970229355490792e-05,6.068210511217748e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620846,5.812335318415061e-05,1.6979855986381075e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.24496399659527e-05,0.00012049167036489651,0.00017012509555585658,0.0002014725219922524,0.00018547227308200867,0.0001720843097081313,0.00014726759711265126,0.00011787938482853018,9.959338607396594e-05,7.80420303989438e-05,4.636806827050217e-05,1.8612534446610025e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.395971197276215e-05,0.00010873638545124805,0.00015347177526152126,0.00018318652323768815,0.00021192166413771767,0.00019951330783997767,0.0001684924170956276,0.000157063667874025,0.00013257349097059074,9.991992176601173e-05,5.8776424568242204e-05,1.1428749221602647e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.147003288981532e-05,0.00012245088451717123,0.00017241084540017712,0.00020277866476043558,0.00020571748598884767,0.00019428873676724507,0.00016359438171494078,0.00015151256110924655,0.00012636931282172068,9.665456484555383e-05,5.453146057164692e-05,1.5020641834106339e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0816961505723744e-05,0.00012277742020921703,0.0001737169881683603,0.0002047378789127103,0.00022335041335932036,0.00021420741398203824,0.00018645188015814607,0.00015151256110924655,0.00012898159835808705,9.730763622964542e-05,6.0735638720516934e-05,1.926560583070161e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4082318426181645e-05,0.00012245088451717123,0.00017241084540017712,0.0002047378789127103,0.00019461527245929084,0.0001792680949331387,0.0001541248466456129,0.00013387963373877388,0.00011396095652398071,8.685849408418015e-05,5.551106764778429e-05,1.95921415227474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8857747353449015e-05,0.00011755284913648441,0.0001688189527876734,0.00019951330783997767,0.00022139119920704556,0.00021028898567748876,0.000181880380469505,0.00015379831095356712,0.00012930813405013283,9.828724330578278e-05,5.551106764778429e-05,1.4694106142060551e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.755160458526584e-05,0.00011559363498420965,0.0001658801315592613,0.00019853370076384033,0.00022008505643886242,0.0002076767001411224,0.0001773088807808639,0.00015836981064220815,0.00013387963373877388,0.00010089952884214908,5.1592639343234804e-05,3.918428304549479e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2653569204579e-05,0.00011232827806375175,0.00016457398879107812,0.00019592141522747398,0.00022139119920704556,0.00020702362875703084,0.00017632927370472658,0.00016065556048652866,0.00013518577650695703,0.00010253220730237804,5.84498888761964e-05,1.1755284913648436e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6245461817082686e-05 +2620847,1.6519426843509535e-05,4.825899976755595e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2064749941888988e-05,3.3874105606072926e-05,4.7794970923637154e-05,5.688993626444577e-05,5.243525936282521e-05,4.8723028611474756e-05,4.157698441512513e-05,3.322446522458659e-05,2.8027342172695957e-05,2.199496720175146e-05,1.2992807629726602e-05,5.197123051890641e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.558994184727428e-06,3.0347486392289993e-05,4.278345940931402e-05,5.1321590137420084e-05,5.9674109327958604e-05,5.614749011417567e-05,4.723813631093458e-05,4.389712863471916e-05,3.712230751350458e-05,2.8027342172695957e-05,1.6612232612293295e-05,3.2482019074316504e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1693526866753941e-05,3.44309402187755e-05,4.8444611305123484e-05,5.707554780201328e-05,5.828202279620218e-05,5.494101511998677e-05,4.640288439188073e-05,4.2597847871746505e-05,3.573022098174815e-05,2.7192090253642108e-05,1.549856338688816e-05,4.2690653640530264e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1600721097970182e-05,3.452374598755926e-05,4.881583438025852e-05,5.772518818349963e-05,6.338634007930907e-05,6.050936124701247e-05,5.262087090039274e-05,4.241223633417898e-05,3.6194249825666955e-05,2.737770179120963e-05,1.726187299377963e-05,5.568346127025687e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2435973017024034e-05,3.433813444999173e-05,4.835180553633971e-05,5.75395766459321e-05,5.494101511998677e-05,5.057914398714999e-05,4.3340294022016595e-05,3.767914212620715e-05,3.2017990230397695e-05,2.43151114213455e-05,1.5591369155671923e-05,5.568346127025687e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1043886485267613e-05,3.3131659455802836e-05,4.7330942079718336e-05,5.614749011417567e-05,6.255108816025521e-05,5.9581303559174844e-05,5.141439590620384e-05,4.306187671566531e-05,3.628705559445073e-05,2.765611909756091e-05,1.5776980693239445e-05,4.176259595269266e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0208634566213758e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620848,0.00021175023992977556,6.50690841450873e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015770981411436413,0.0004301176748573566,0.0006021647448002995,0.0007168627914289277,0.000658410902281646,0.0006087819397981048,0.0005282727339914714,0.0004279119431914215,0.00037387151737601005,0.0002900537140704739,0.0001775613991077806,7.830347414069827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000129035302457207,0.0003716657857100749,0.0005183469414947632,0.0006253249272926186,0.0007245828522597009,0.0006782624872750624,0.000584518891472818,0.000550330050650823,0.0004720265765101248,0.0003628428590463342,0.0002172645690946135,4.962896248354116e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001521954849495262,0.00043232340652329184,0.0006010618789673318,0.0007201713889278306,0.0007455373030860849,0.0006992169381014466,0.0005999590131343642,0.0005547415139826933,0.0004753351740090276,0.00036504859071226944,0.00021616170326164592,6.396621831211971e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014888688745062347,0.0004290148090243891,0.0006010618789673318,0.0007245828522597009,0.0008271493747256859,0.0007808290097410475,0.0006683366947783542,0.0005580501114815961,0.0004841581006727682,0.0003749743832089776,0.00022939609325725685,8.050920580663344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015991554578029924,0.0004279119431914215,0.0005999590131343642,0.0007234799864267334,0.0007102455964311223,0.0006672338289453865,0.0005591529773145636,0.0004907752956705737,0.00041357468736284296,0.0003286540182243392,0.00020403017909900254,7.830347414069827e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014337255828578558,0.0004146775531958105,0.0005867246231387533,0.000705834133099252,0.0008061949238993018,0.0007609774247476311,0.0006551023047827433,0.0005668730381453368,0.0004841581006727682,0.0003716657857100749,0.00021947030076054872,6.396621831211971e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013785822912094765,0.0004080603581980051,0.0005834160256398503,0.000705834133099252,0.0007918576680707232,0.0007433315714201498,0.0006374564514552618,0.0005790045623079801,0.0004951867590024439,0.00037607724904194527,0.0001941043866022943,2.536591415825437e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011910950996049877,0.0003959288340353616,0.0005723873673101747,0.0006925997431036409,0.000792960533903691,0.0007554630955827931,0.0006418679147871325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620849,5.22840873533988e-05,1.534424302762791e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.892891286638932e-05,0.00010854631178803446,0.00015088505643834108,0.0001781637107096796,0.00016225116238473215,0.00014832768260040314,0.00012985776043751766,0.0001068413958960758,9.263376346308701e-05,7.160646746226356e-05,4.319120259628597e-05,1.8469922162885446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.239340194721448e-05,9.575944259834455e-05,0.0001321309816267959,0.00015770472000617577,0.00018128938984493713,0.0001685025206552472,0.00014605446141112492,0.0001406555610865892,0.00011962826508576574,9.092884757112835e-05,5.313654529937813e-05,1.0797800649071493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.750814962309045e-05,0.00010911461708535402,0.00015088505643834108,0.00017986862660163827,0.00018214184779091647,0.00017077574184452542,0.0001469069193571042,0.00013809818724865117,0.0001176391965451473,8.979223697648922e-05,5.1999934704739025e-05,1.449178508164858e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6655691677111115e-05,0.00010854631178803446,0.00015145336173566067,0.00018015277925029804,0.00020345329644039966,0.00019066642725070975,0.00016281946768205172,0.0001400872557892696,0.00012104902832906461,9.320206876040657e-05,5.597807178597589e-05,1.8185769514225665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949721816370887e-05,0.00010797800649071492,0.00015088505643834108,0.00018100523719627738,0.0001750380315744221,0.00016253531503339193,0.00013838233989731097,0.00012303809686968308,0.00010428402205813782,8.240426811133506e-05,5.0863324110099914e-05,1.8469922162885446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.523492843381224e-05,0.00010428402205813782,0.0001463386140597847,0.0001747538789257623,0.00019663363287256505,0.00018413091633153492,0.00015969378854679416,0.00014150801903256848,0.00012048072303174506,9.178130551710767e-05,5.313654529937813e-05,1.4207632432988806e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.381416519051336e-05,0.00010229495351751941,0.00014520200346514555,0.00017532218422308183,0.00019407625903462708,0.00018043693189895784,0.0001559998041142171,0.0001449178508164858,0.00012303809686968308,9.320206876040657e-05,4.7453492326182603e-05,4.830595027216193e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9267722811956935e-05,9.945342703092162e-05,0.00014292878227586739,0.00017162819979050476,0.00019464456433194663,0.0001818576951422567,0.00015486319351957795,0.00014349708757318693,0.00012332224951834282,9.40545267063859e-05,5.34206979480379e-05,1.1081953297731266e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.267755459587425e-05 +2620850,9.495120065151834e-05,2.756647760850532e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.095815532559702e-05,0.00019807024652037156,0.0002756647760850532,0.00032467184738906263,0.00029251095684580653,0.0002649444792373012,0.00023278358869404495,0.00019500730456387097,0.00017050376891186624,0.00013119601380344201,7.963649086901536e-05,3.420285184758994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.92168778256781e-05,0.00017305622054228343,0.0002389094726070461,0.0002858745826067218,0.00032569282804122954,0.00030169978271530826,0.0002629025179329674,0.00025626614369388275,0.00022002133054195916,0.00016693033662928223,9.699316195585206e-05,2.0419613043337278e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.789521336909645e-05,0.00019807024652037156,0.0002741333051068029,0.000326203318367313,0.000329776750649897,0.0003083361569543929,0.000265965459889468,0.0002526927114112988,0.00021695838858545852,0.00016437788499886507,9.648267162976865e-05,2.6545496956338454e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.585325206476272e-05,0.00019653877554212128,0.00027464379543288637,0.000326203318367313,0.00036959499608440474,0.0003440704797802331,0.00029557389880230703,0.0002577976146721331,0.0002241052531506266,0.00017203523989011655,0.00010260855554276982,3.318187119542307e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.19791359777639e-05,0.0001970492658682047,0.00027464379543288637,0.0003282452796716467,0.00031854596347606146,0.0002950634084762236,0.0002511612404330485,0.0002281891757592941,0.00019143387228128696,0.0001521261171728627,9.290923934718461e-05,3.420285184758994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.381129076042899e-05,0.00018939191097695323,0.000265965459889468,0.00031752498282389466,0.0003578537185844858,0.0003328396926063976,0.00028944801488930586,0.00026035006630255027,0.00022308427249845974,0.0001694827882596994,9.852463293410235e-05,2.6035006630255028e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.07483488039284e-05,0.0001868394593465361,0.0002654549695633846,0.00031956694412822837,0.00035223832499756797,0.00032518233771514614,0.00028230115032413784,0.0002654549695633846,0.00022716819510712718,0.00017203523989011655,8.678335543418343e-05,9.188825869501774e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.309099391267691e-05,0.00018173455608570173,0.00026137104695471707,0.0003124200795630603,0.0003542802863019017,0.00032875576999773015,0.00028230115032413784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620851,4.067782310999191e-05,1.2203346932997572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.018722662373084e-05,8.306839666672032e-05,0.00011561065515471385,0.00013744822335060424,0.00012524487641760667,0.00011454018612550353,0.00010019590113408532,8.221202144335206e-05,7.1721424957091e-05,5.545029571309425e-05,3.404091512888796e-05,1.4986566408944385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.504897528352133e-05,7.1721424957091e-05,9.955361971655917e-05,0.00011967843746571306,0.0001376623171564463,0.00012867037731107965,0.00011154287284371466,0.00010640462150350517,9.141805509456076e-05,7.00086745103545e-05,4.153419833336016e-05,9.420127457050757e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9116757594520528e-05,8.328249047256238e-05,0.00011539656134887177,0.0001383045985739725,0.00014194419327328753,0.0001335945348454471,0.00011432609231966147,0.00010640462150350517,9.163214890040284e-05,7.00086745103545e-05,4.153419833336016e-05,1.198925312715551e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8474476176994342e-05,8.242611524919413e-05,0.00011539656134887177,0.00013873278618565664,0.0001584294163231264,0.0001485811012543915,0.00012695762686434317,0.00010811737195024165,9.398718076466553e-05,7.236370637461719e-05,4.388923019762285e-05,1.4986566408944385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.061541423541496e-05,8.242611524919413e-05,0.00011539656134887177,0.00013916097379734074,0.00013573547290386773,0.00012695762686434317,0.00010640462150350517,9.505764979387583e-05,7.964289577324732e-05,6.358586033509262e-05,3.917916646909748e-05,1.4772472603102324e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.740400714778402e-05,7.964289577324732e-05,0.00011197106045539879,0.00013487909768049948,0.00015329116498291687,0.00014429922513755025,0.0001246025950000805,0.00010940193478529403,9.398718076466553e-05,7.150733115124892e-05,4.239057355672841e-05,1.198925312715551e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6333538118573708e-05,7.835833293819496e-05,0.00011197106045539879,0.00013530728529218358,0.00015115022692449624,0.0001406596304382352,0.00012139118791244953,0.00011197106045539879,9.569993121140204e-05,7.300598779214338e-05,3.725232221651891e-05,4.710063728525379e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.290803722510071e-05,7.621739487977431e-05,0.00010983012239697816,0.0001325240658162368,0.0001513643207303383,0.000143442849914182,0.00012203346932997572,0.0001109005914261885,9.591402501724409e-05,7.343417540382749e-05,4.1962385945044284e-05,9.420127457050757e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5263069089363396e-05 +2620852,5.4934121921065894e-05,1.653930552462199e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.016688484551055e-05,0.00011134496754968733,0.00015653271300088666,0.00018724856611804182,0.00017218598430097535,0.00015889547093297552,0.00013644927057813143,0.00010957289910062068,9.244290409297648e-05,7.354084063626563e-05,4.341567700213272e-05,1.831137397368863e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189723208319955e-05,9.864514366470971e-05,0.00013822133902719803,0.0001662790894707532,0.00019404149517279726,0.000182227705512353,0.0001523978866197312,0.00014147013118382022,0.00012050065453653163,9.214755935146536e-05,5.5229466662577e-05,1.1813789660444278e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.898550587946612e-05,0.00011282169125724285,0.00015712340248390892,0.00018665787663501955,0.0001916787372407084,0.00018075098180479743,0.00015446529981030894,0.00013999340747626468,0.00011754720712142058,9.067083564390982e-05,5.2276019247465925e-05,1.535792655857756e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.83948163964439e-05,0.00011311703599875395,0.0001591908156744866,0.00018961132405013063,0.00021235286914648592,0.0002005390794860416,0.0001710046053349309,0.00013910737325173138,0.00011961462031199831,9.126152512693204e-05,5.7296879853154745e-05,1.949275293973306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.105291907004386e-05,0.00011193565703270953,0.00015682805774239777,0.00018783925560106397,0.00018075098180479743,0.0001659837447292421,0.00014294685489137579,0.0001237494466931538,0.00010514272797795407,8.06291144325322e-05,5.198067450595481e-05,1.919740819822195e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6918092688888365e-05,0.00010868686487608736,0.0001538746103272867,0.00018340908447839741,0.00020526459535021935,0.0001969949425879083,0.0001680511579198198,0.00014058409695928692,0.0001193192755704872,9.185221460995427e-05,5.2866708730488134e-05,1.5062581817066453e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.514602423982173e-05,0.00010602876220248739,0.00015121650765368672,0.00018252305025386409,0.00020378787164266376,0.0001931554609482639,0.00016362098679715322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620853,5.7392656950090514e-05,1.88365643323374e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1499305794680834e-05,0.00011095913677017501,0.00015716758364794022,0.00019278046308876558,0.00018100761038105468,0.00017011772162642215,0.00014304016039868716,0.00011066481545248223,9.53601069324581e-05,7.505193601165684e-05,4.4736840289301336e-05,2.060249223849403e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.414127285236154e-05,9.800899879169304e-05,0.00013950830458637386,0.00017247229216796437,0.00019837256812492825,0.0001860110727818318,0.0001592278328717896,0.0001442174456694582,0.0001244979173840425,9.624307088553642e-05,5.827562090316883e-05,1.4421744566945823e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.061634184160252e-05,0.0001130193859940244,0.00015863919023640405,0.00019366342704184392,0.00020072713866647047,0.0001892486072764523,0.00016305401000179566,0.0001453947309402293,0.00012273198947788589,9.388850034399423e-05,5.592105036162666e-05,1.8542243014644628e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9733377888524204e-05,0.0001121364220409461,0.00015952215418948236,0.00019484071231261503,0.0002230955588111211,0.00020573060106724757,0.00017806439720412695,0.0001453947309402293,0.00012508656001942805,9.594874956784365e-05,6.004154880932547e-05,2.266274146234344e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.238226974775915e-05,0.0001121364220409461,0.00015775622628332573,0.00019278046308876558,0.00018865996464106677,0.00017747575456874147,0.00014774930148177146,0.0001292070584671269,0.0001088988875463256,8.388157554243999e-05,5.44494437731628e-05,2.177977750926512e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.826177130006035e-05,0.00010919320886401838,0.0001559902983771691,0.0001892486072764523,0.00021367727664495242,0.00020514195843186203,0.00017659279061566313,0.00014627769489330766,0.00012420359606634974,9.447714297937977e-05,5.65096929970122e-05,1.7659279061566317e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.649584339390372e-05,0.00010654431700478344,0.00015363572783562695,0.00018895428595875954,0.00021161702742110303,0.0002024930665726271,0.0001707063642618077,0.00015039819334100645,0.00012861841583174132,9.477146429707257e-05,5.297783718469895e-05,8.240996895397614e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.178670231081937e-05,0.00010301246119247015,0.0001506925146586992,0.00018571675146413912,0.0002127943126918741,0.0002060249223849403,0.00017629846929797038,0.00015451869178870523,0.00013097298637328349,0.00010036356933323523,5.886426353855439e-05,1.5010387202331367e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620854,7.424758731413436e-05,2.2157656947150045e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3644853661521155e-05,0.00014849517462826872,0.00020835972146793726,0.0002495651887731636,0.00023012864759145305,0.00021380195299881624,0.0001823147562844451,0.00014655152051009764,0.00012594878685748446,9.951509085035808e-05,5.908708519240012e-05,2.487877271258952e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3149121423397456e-05,0.00013177974921199762,0.00018386967957898193,0.0002211878386478662,0.00025695107442221367,0.00023906945653503993,0.00020214002828978988,0.0001889231802862267,0.00016054583016092926,0.00012361640191567918,7.385885649050014e-05,1.6326694592636872e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.247866119061852e-05,0.0001512162903937082,0.00020952591393883988,0.0002499539195967979,0.0002573398052458479,0.0002406243798295768,0.00020563860570249772,0.00018775698781532405,0.00015899090686639244,0.00012322767109204498,7.152647154869489e-05,2.0991464476247407e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.131246871971589e-05,0.0001512162903937082,0.00021185829888064513,0.0002526750353622373,0.0002849396937238769,0.0002690017299548742,0.00022896245512055044,0.00018697952616805567,0.00016171202263183187,0.0001243938635629476,7.774616472684227e-05,2.643369600712637e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4811046132423796e-05,0.00014888390545190293,0.00020874845229157147,0.00025112011206770046,0.00024295676477138208,0.0002258526085314768,0.00019164429605166613,0.00016559933086817403,0.00014149801980285293,0.00011001082308848178,6.958281743052381e-05,2.6044965183492158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9368814601544834e-05,0.00014538532803919503,0.00020524987487886357,0.00024528914971318737,0.00027599888478029,0.00026239330595309265,0.00022390895441330567,0.00018970064193349513,0.00016093456098456346,0.0001243938635629476,7.230393319596331e-05,2.0214002828978984e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.742516048337378e-05,0.00014149801980285293,0.0002017512974661557,0.0002437342264186505,0.00027250030736758213,0.00025695107442221367,0.00021807799205879252,0.00019475414264073988,0.00016676552333907664,0.00012206147862114233,6.56955091941817e-05,7.385885649050015e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620855,4.58629416128124e-05,1.4483034193519705e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.355236254832064e-05,9.17258832256248e-05,0.00012865762041910003,0.00015496846587066083,0.00014362342241907043,0.00013348529848360662,0.00011345043451590434,9.076034761272348e-05,7.772561683855574e-05,6.155289532245875e-05,3.6931737193475246e-05,1.5931337612871677e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.703499716123678e-05,8.110499148371035e-05,0.00011345043451590434,0.00013758882483843717,0.0001605202956448434,0.00014989940390292897,0.00012600239748362143,0.00011707119306428428,9.920878422560998e-05,7.676008122565442e-05,4.610432551603773e-05,1.0620891741914448e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.258682693541933e-05,9.26914188385261e-05,0.00012889900432232538,0.00015448569806421016,0.00015979614393516741,0.0001494166360964783,0.00012817485261264937,0.0001163470413546083,9.751909690303269e-05,7.531177780630246e-05,4.41732542902351e-05,1.3758882483843719e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2104059128968685e-05,9.26914188385261e-05,0.000130105923838452,0.0001564167692900128,0.00017717578496739107,0.00016558935761257527,0.00014241650290294376,0.00011562288964493229,9.969155203206064e-05,7.676008122565442e-05,4.827678064506568e-05,1.7138257128998314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.427651425799663e-05,9.148449932239947e-05,0.00012793346870942405,0.00015520984977388617,0.0001503821717093796,0.00014048543167714114,0.00011948503209653757,0.00010331231058044057,8.762235687079421e-05,6.758749290309195e-05,4.344910258055912e-05,1.6896873225772987e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.089713961284203e-05,8.931204419337151e-05,0.00012624378138684678,0.00015207185903195688,0.0001708998034835325,0.00016365828638677265,0.00013976127996746514,0.00011682980916105896,9.920878422560998e-05,7.627731341920376e-05,4.4656022096685756e-05,1.3276114677393061e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.969022009671539e-05,8.713958906434356e-05,0.00012431271016104413,0.0001513477073222809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620856,4.934677509110348e-05,1.60314396235057e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.556975666465327e-05,9.51866727645651e-05,0.0001345137980909775,0.00016407176489681614,0.00015405211513212506,0.00014403246536743403,0.00012148825339687915,9.51866727645651e-05,8.2411619314584e-05,6.487723222637464e-05,3.932712532641241e-05,1.7784878332326634e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.955796680583864e-05,8.366407553517037e-05,0.00011773088473511999,0.00014503443034390314,0.00016782913355857534,0.00015780948379388423,0.00013401281560274295,0.00012274070961746552,0.00010545681377337344,8.216112807046672e-05,4.959726633522076e-05,1.2524562205863829e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.481828293230144e-05,9.643912898515147e-05,0.0001347642893350948,0.00016432225614093344,0.00017058453724386533,0.00016056488747917425,0.0001377701842645021,0.00012399316583805193,0.00010445484879690433,8.090867184988034e-05,4.8344810114634375e-05,1.60314396235057e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.406680919994962e-05,9.593814649691692e-05,0.0001357662543115639,0.0001655747123615198,0.00018987236304089566,0.00017659632710267999,0.00015204818517918688,0.00012399316583805193,0.0001069597612380771,8.291260180281857e-05,5.185168753227625e-05,1.9538317041147572e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.63212303970051e-05,9.568765525279965e-05,0.00013401281560274295,0.00016432225614093344,0.00016081537872329155,0.0001497937639821314,0.0001259970957909901,0.0001102161474116017,9.343323405574417e-05,7.26424607940102e-05,4.659137140581344e-05,1.8786843308795743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2814352979363235e-05,9.318274281162688e-05,0.0001325098681380393,0.00016106586996740883,0.00018210713447326007,0.00017409141466150722,0.00014929278149389684,0.00012449414832628648,0.00010620828750572528,8.140965433811488e-05,4.884579260286893e-05,1.5279965891153874e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.131140551465957e-05,9.067783037045413e-05,0.00013025544694098383,0.00016056488747917425,0.00018035369576443916,0.00017158650222033446,0.00014503443034390314,0.00012850200823216287,0.0001102161474116017,8.11591630939976e-05,4.508842394110979e-05,7.0137548352837444e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620857,6.0848936162882286e-05,1.8477687421189385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.428273364733317e-05,0.00012137929150815785,0.00016980357578437832,0.00020389172326829667,0.00018891842484078112,0.00017553803050129917,0.00014941440345754868,0.000120104968237731,0.00010353876572218189,8.187527012492538e-05,4.93800267290406e-05,2.134491477964981e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5999632389558626e-05,0.00010672457389824905,0.00014877724182233522,0.00017967958113018645,0.00020898901635000412,0.00019465287955770197,0.00016470628270267088,0.00015419311572164936,0.00013125529685396599,0.00010194586163414834,6.1167516980489e-05,1.4017555974695395e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3008410376906325e-05,0.00012265361477858472,0.00017044073741959175,0.00020421030408590337,0.0002115376628908578,0.0001975201069161624,0.00016884783333155816,0.00015419311572164936,0.00013061813521875255,0.0001016272808165416,5.957461289245543e-05,1.7840525785975958e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.237124874169291e-05,0.00012265361477858472,0.00017171506069001857,0.00020612178899154368,0.00023447548175854118,0.00022141366823666593,0.00018828126320556771,0.00015387453490404266,0.00013348536257721296,0.00010353876572218189,6.435332515655615e-05,2.261923805007666e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.491989528254661e-05,0.00012137929150815785,0.00016948499496677164,0.00020548462735633024,0.0001994315918218027,0.00018541403584710733,0.00015674176226250307,0.0001360340091180667,0.00011596341760884373,9.079553301791336e-05,5.734454716920845e-05,2.1982076414863234e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.077834465365933e-05,0.00011851206414969744,0.00016693634842591793,0.00020038733427462282,0.00022651096131837337,0.00021536063270213835,0.0001831839701238603,0.00015578601980968294,0.00013252962012439283,0.00010290160408696847,6.021177452766887e-05,1.7521944968369247e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.886685974801906e-05,0.00011532625597363033,0.0001640691210674575,0.0001997501726394094,0.0002239623147775196,0.00021121908207325107,0.00017904241949497302,0.0001599275704385702,0.00013730833238849354,0.0001013086999989349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620858,2.9720119953367375e-05,9.202676736829492e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.202607874716567e-05,5.959110345979753e-05,8.357840839677932e-05,0.00010017339923368496,9.293194868667159e-05,8.659567945803489e-05,7.422486810688703e-05,5.913851280060919e-05,5.174619870053304e-05,4.058229577388743e-05,2.4741622702295685e-05,1.1163902926645612e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7801899261407873e-05,5.144447159440749e-05,7.211277836400814e-05,8.719913367028598e-05,0.00010122944410512442,9.459144777036216e-05,8.086286444164931e-05,7.573350363751482e-05,6.502219137005757e-05,5.0388426722968036e-05,3.032357416561849e-05,7.241450547013371e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1271760981851775e-05,6.004369411898587e-05,8.388013550290485e-05,0.00010047512633981051,0.00010500103293169388,9.791044593774328e-05,8.433272616209322e-05,7.67895485089543e-05,6.592737268843423e-05,5.114274448828193e-05,3.032357416561849e-05,9.202676736829492e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.081917032266344e-05,5.944023990673475e-05,8.37292719498421e-05,0.00010122944410512442,0.00011616493585833948,0.00010997953018276557,9.383713000504826e-05,7.694041206201707e-05,6.68325540068109e-05,5.2047925806658595e-05,3.198307324930905e-05,1.1616493585833948e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2327805853291223e-05,5.959110345979753e-05,8.357840839677932e-05,0.00010077685344593607,9.941908146837106e-05,9.383713000504826e-05,7.73930027212054e-05,6.743600821906202e-05,5.7328150163855855e-05,4.556079302495913e-05,2.821148442273959e-05,1.1163902926645612e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.006485255734955e-05,5.7931604376106966e-05,8.222063641921431e-05,9.896649080918274e-05,0.0001132985283501467,0.00010741484978069832,9.202676736829493e-05,7.829818403958209e-05,6.698341755987369e-05,5.189706225359583e-05,3.077616482480682e-05,9.202676736829492e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9461398345098435e-05,5.687555950466751e-05,8.146631865390042e-05,9.851390014999439e-05,0.00011133730216033058,0.00010530276003781944,8.93112234131649e-05,7.995768312327264e-05,6.864291664356423e-05,5.2047925806658595e-05,2.7306303104362924e-05,3.771588826569464e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6745854389968422e-05,5.5065196867914164e-05,7.995768312327264e-05,9.70052646193666e-05,0.00011163902926645613,0.00010650966846232165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620859,5.2591076063387534e-05,1.7701386577432878e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7711649664965696e-05,9.953823176875299e-05,0.00014161109261946303,0.00017521807293313993,0.00016572602505828462,0.0001559774353489738,0.0001328886702479744,0.00010159056644439739,8.825039105270884e-05,6.849666979963157e-05,4.155977718179893e-05,1.9753721253077267e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.181118747248807e-05,8.773730738379774e-05,0.00012519241521430789,0.0001557208935145182,0.00017906620044997319,0.0001693176107406623,0.00014622884563966288,0.00012981016823450776,0.00011236532349153046,8.773730738379774e-05,5.336070156675417e-05,1.4366342729510743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6942024161599045e-05,0.00010107748277548629,0.00014289380179174078,0.00017573115660205103,0.00018317086980126194,0.00017444844742977328,0.0001498204313220406,0.0001326321284135188,0.00011185223982261936,8.59415145426089e-05,5.2077992394476433e-05,1.7957928411888425e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.591585682377685e-05,0.00010030785727211965,0.00014340688546065188,0.00017701386577432876,0.0002034376747232503,0.00018984095749710622,0.00016418677405155135,0.000133658295751341,0.00011467420000163039,8.825039105270884e-05,5.5413036242398574e-05,2.154951409426611e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.82247333338768e-05,0.00010056439910657519,0.0001423807181228297,0.00017521807293313993,0.00017213957091967335,0.00016162135570699584,0.0001351975467580743,0.00011800924384955252,0.00010005131543766409,7.773217584003133e-05,4.9769115884376494e-05,2.0779888590899465e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.463314765149911e-05,9.79989807620197e-05,0.00014084146711609638,0.00017239611275412888,0.0001947152523517617,0.0001870189973180952,0.0001613648138725403,0.00013340175391688547,0.00011390457449826374,8.645459821152e-05,5.2591076063387534e-05,1.7444844742977328e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.335043847922137e-05,9.569010425191977e-05,0.00013878913244045197,0.00017162648725076225,0.00019266291767611727,0.0001847101208079953,0.0001557208935145182,0.00013750642326817427,0.00011749616018064143,8.748076554934219e-05,4.899949038100985e-05,8.722422371488664e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898922729347703e-05,9.261160223845318e-05,0.00013596717226144095,0.00016906106890620678,0.0001947152523517617,0.00018881479015928404,0.0001613648138725403,0.00014161109261946303,0.00012006157852519689,9.18419767350865e-05,5.3873785235665286e-05,1.487942639842184e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2580812975854716e-05 +2620860,4.268049419507375e-05,1.3733822389503929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.084827798257806e-05,8.303680306269299e-05,0.00011684313509839496,0.00014219788412517145,0.0001333237219657997,0.00012423827023120478,0.00010670123548768436,8.345938221313926e-05,7.289490345198239e-05,5.7259474885470217e-05,3.486277991181767e-05,1.605800771695844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5777328177222757e-05,7.226103472631298e-05,0.00010184157525755221,0.00012487213895687418,0.00014452206945262595,0.00013649306559414671,0.00011642055594794869,0.00010627865633723809,9.16996756468416e-05,7.141587642542043e-05,4.3103073345520016e-05,1.098705791160314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.021440925690864e-05,8.388196136358553e-05,0.00011747700382406436,0.00014262046327561772,0.0001487478609570887,0.00014008498837294006,0.00012022376830196514,0.00010796897293902318,9.16996756468416e-05,7.12045868501973e-05,4.268049419507375e-05,1.3945111964727065e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.958054053123923e-05,8.324809263791611e-05,0.00011789958297451066,0.0001436769111517334,0.0001652284478244934,0.0001555091273642291,0.00013311243239057653,0.00010839155208946946,9.3812571399073e-05,7.268361387675925e-05,4.5215969097751394e-05,1.7114455593074127e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.148214670824747e-05,8.324809263791611e-05,0.00011684313509839496,0.00014262046327561772,0.00014008498837294006,0.00013036566791267576,0.00011008186869125457,9.592546715130435e-05,8.134648646090788e-05,6.402074129261062e-05,4.0356308867619236e-05,1.6480586867404714e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8735382230346683e-05,8.134648646090788e-05,0.00011578668722227927,0.00014029627794816322,0.00015888976056779928,0.00015170591501021262,0.00013015437833745262,0.00010881413123991575,9.296741309818042e-05,7.18384555758667e-05,4.3103073345520016e-05,1.352253281428079e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7467644779007858e-05,7.923359070867652e-05,0.0001136737914700479,0.00013945111964727068,0.00015698815439079103,0.00014938172968275812,0.00012635116598343617,0.00011219476444348592,9.634804630175063e-05,7.162716600064357e-05,3.908857141628041e-05,6.338687256694121e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620861,5.470466634301835e-05,1.8495387192163346e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.933526008474177e-05,0.00010341786922942042,0.00014718160230383506,0.00018182789098774674,0.00017218944977492916,0.00016203001173979722,0.00013910615155796096,0.00010706484698562163,9.32584311942884e-05,7.241855830171e-05,4.454522830788638e-05,2.162136812605011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.334379662812547e-05,9.039294867155887e-05,0.00012946771034514344,0.00016098801809516828,0.00018599586556626238,0.00017739941799807378,0.00015213107211582247,0.00013624066903523141,0.0001172242850207536,9.143494231618781e-05,5.5486161576490045e-05,1.5369406258276584e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.829326644011284e-05,0.00010472036128520655,0.00014874459277077848,0.00018286988463237563,0.00019198732902287868,0.0001826093862212184,0.00015708054192780984,0.00013910615155796096,0.00011800578025422529,9.091394549387337e-05,5.52256631653328e-05,1.9276882425635038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.751177120664115e-05,0.0001041993644628921,0.00014926558959309292,0.000184432875099319,0.00021256670350429987,0.000201365271824539,0.00017323144341955808,0.00014066914202490432,0.00012113176118811207,9.32584311942884e-05,5.8351644099219575e-05,2.292386018183626e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.011675531821345e-05,0.00010445986287404932,0.00014822359594846398,0.0001826093862212184,0.00018026490052080332,0.00017114745613030027,0.00014405562136994834,0.00012477873894431327,0.00010602285334099271,8.231749792568474e-05,5.209968223144605e-05,2.214236494836457e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6209279150855e-05,0.00010211537717363425,0.00014666060548152064,0.0001800044021096461,0.00020397025593611127,0.0001958948051902371,0.00016932396725219962,0.00013988764679143264,0.0001198292691323259,9.143494231618781e-05,5.5746659987647275e-05,1.8755885603320576e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.490678709506885e-05,9.898939623974749e-05,0.00014457661819226284,0.0001789624084650172,0.00020162577023569617,0.0001930293226675076,0.00016385350061789782,0.00014431611978110554,0.00012347624688852711,9.299793278313119e-05,5.079719017565989e-05,9.638441212817519e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0478314105395934e-05,9.638441212817518e-05,0.00014171113566953324,0.00017635742435344486,0.00020397025593611127,0.00019719729724602332,0.000168542472018728,0.00014822359594846398,0.00012634172941125666,9.612391371701796e-05,5.60071583988045e-05,1.5890403080591046e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620862,6.302815536156765e-05,2.141147861565217e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6140228566123685e-05,0.00012213589914562153,0.0001731012496533006,0.00021109908494304952,0.00019903628008916102,0.00018697347523527247,0.00016134001492075929,0.0001260563107231353,0.0001103746644130802,8.594748458395588e-05,5.337791147845681e-05,2.563346031451316e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.890254565379056e-05,0.00010554954247152476,0.0001501819204309124,0.00018486248438584195,0.0002153210666419105,0.0002059723928801469,0.00017521224050273115,0.00015892745394998159,0.000136912835091635,0.00010615268271421918,6.453600596830373e-05,1.7792637159485605e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4933948080734835e-05,0.00012273903938831595,0.00017370438989599505,0.00021200379530709118,0.0002234634599182853,0.00021230536542843836,0.00018244992341506422,0.00016254629540614815,0.00013872225581971825,0.00010705739307826083,6.483757608965092e-05,2.231618897969381e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4029237716693194e-05,0.00012213589914562153,0.00017400596001734226,0.00021411478615652167,0.0002472874995047152,0.00023552626477217387,0.00020235355142398035,0.00016405414601288422,0.00014203952715453766,0.00010977152417038577,6.815484742447028e-05,2.683974079990201e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7044938930165326e-05,0.00012213589914562153,0.0001731012496533006,0.00021230536542843836,0.0002104959447003551,0.0002008457008172443,0.00017008554843982849,0.00014595993873205143,0.00012394531987370481,9.71055790738028e-05,6.061559439078994e-05,2.5935030435860373e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.282295723130434e-05,0.00011972333817484383,0.00017129182892521735,0.0002095912343363135,0.0002391451062283404,0.0002291932922238824,0.00019782999960377219,0.00016435571613423143,0.0001408332466691488,0.00010826367356364968,6.574228645369258e-05,2.171304873699938e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620863,2.8006924887144037e-05,9.153482767993418e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0629491014432925e-05,5.51941348995424e-05,7.855600882979426e-05,9.399397230417121e-05,8.757287245199671e-05,8.224472576614981e-05,7.213490897761977e-05,5.66969455032428e-05,4.9865988213695476e-05,3.8526599113046917e-05,2.4044969659206586e-05,1.1476008246439508e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6804154932286422e-05,4.7270224443667495e-05,6.735323887493663e-05,8.210810662035884e-05,9.549678290787161e-05,9.071511280518849e-05,7.773629395504856e-05,7.199828983182882e-05,6.216171133488066e-05,4.740684358945844e-05,2.896325890768066e-05,7.650672164293005e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0083014431269138e-05,5.574061148270618e-05,7.882924712137615e-05,9.426721059575309e-05,9.973197642739095e-05,9.495030632470785e-05,8.087853430824033e-05,7.377433872711113e-05,6.298142620962633e-05,4.849979675578601e-05,2.93731163450535e-05,9.563340205366257e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9263299556523458e-05,5.492089660796051e-05,7.773629395504856e-05,9.549678290787161e-05,0.00010956855492433911,0.00010519674225902882,9.09883510967704e-05,7.377433872711113e-05,6.393776023016297e-05,4.9592749922113586e-05,3.060268865717202e-05,1.1749246538021401e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0902729306014818e-05,5.5057515753751445e-05,7.800953224663047e-05,9.467706803312596e-05,9.467706803312596e-05,9.016863622202471e-05,7.609686420555723e-05,6.516733254228148e-05,5.5330754045333335e-05,4.3718126653102886e-05,2.7050590866607412e-05,1.1339389100648561e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8580203827568727e-05,5.3281466858469134e-05,7.732643651767571e-05,9.399397230417121e-05,0.00010861222090380249,0.00010314745507216464,8.907568305569714e-05,7.514053018502059e-05,6.380114108437202e-05,4.93195116305317e-05,2.9646354636635396e-05,9.563340205366257e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.817034639019589e-05,5.300822856688725e-05,7.746305566346667e-05,9.317425742942553e-05,0.00010615307627956545,0.00010082492959371854,8.620668099408727e-05,7.677995993451194e-05,6.544057083386338e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620864,5.484855647726462e-05,1.670674421433922e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.129402815242337e-05,0.00011253410725507738,0.0001588716808306975,0.0001878720670140788,0.00017179576597763918,0.0001576107944748983,0.00014279537979425787,0.00011663198791142476,0.00010118613005288471,7.659884611480058e-05,4.854412469826868e-05,2.1119846459636377e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5935261140276816e-05,0.00010181657323078432,0.00013901272072686032,0.000167382663732342,0.00019260039084832573,0.00017683931140083592,0.00016107823195334606,0.00015729557288594854,0.00013270828894786438,0.00010055568687498511,5.67398860109634e-05,1.1663198791142474e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.940269861872458e-05,0.00011474065837772597,0.0001601325671864967,0.00019354605561517512,0.00019323083402622535,0.00017999152729033388,0.0001569803512969987,0.0001506759195180028,0.00012640385716886847,9.456647668493899e-05,5.579422124411401e-05,1.5445857858540035e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.877225544082498e-05,0.0001134797720219268,0.0001607630103643963,0.00019228516925937593,0.0002162420100195605,0.0002001657089831209,0.00017305665233343837,0.00015824123765279788,0.00013459961848156317,0.00010402312435343291,6.020732348941116e-05,1.7967630570138408e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.192447133032296e-05,0.0001153711015556256,0.00016233911830914526,0.0001970134930936229,0.0001888177317809282,0.00017400231710028774,0.0001528824706406514,0.0001421649366163583,0.00011820809585617375,9.299036874019001e-05,5.7055107599913193e-05,2.048940328173678e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.656570431817641e-05,0.00010654489706503125,0.000148784589984304,0.00018188285682403267,0.0002074158055289662,0.00019323083402622535,0.00017179576597763918,0.0001591869024196473,0.0001323930673589146,0.00010118613005288471,5.863121554466218e-05,1.5130636269590239e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.530481796237722e-05,0.00010875144818767983,0.00015445857858540035,0.0001888177317809282,0.0002086766918847654,0.0001916547260814764,0.0001683283284991914,0.00016139345354229586,0.00013523006165946274,0.00010118613005288471,4.9805011054067867e-05,5.358767012146543e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620865,6.19097941411958e-05,1.9076855171414986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.679228626950846e-05,0.00012813887624573084,0.00018177003512385978,0.00021416469484890411,0.00019652760233193555,0.00017817062848774376,0.00016161335796160996,0.0001320982235454585,0.0001155409530193247,8.746558125761966e-05,5.615074352341015e-05,2.447596512558904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1753116978946005e-05,0.00011626083434654792,0.00015873383265271716,0.00019040861105053822,0.0002181240421486317,0.00019796736498638195,0.00018284985711469458,0.00018069021313302493,0.00015297478203493147,0.0001155409530193247,6.478931945008863e-05,1.2957863890017725e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4992582951450443e-05,0.00013101840155462367,0.0001835697384419178,0.00022172344878474776,0.00021992374546668972,0.00020228665294972115,0.0001774507471605205,0.00017169169654273486,0.0001446961467718646,0.00010762225841986947,6.478931945008863e-05,1.7637092516968574e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.391276096061563e-05,0.00012921869823656563,0.0001839296791055294,0.00022028368613030136,0.0002454795325831136,0.0002238830927664174,0.00019580772100471233,0.00018212997578747136,0.00015513442601660114,0.00011914035965544078,6.838872608620467e-05,2.0156677162249798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7872108260343275e-05,0.0001324581642090701,0.00018644926375081065,0.0002253228554208638,0.0002159643981669621,0.00019832730564999353,0.0001760109845060741,0.0001644928832705028,0.00013749733349963255,0.00010726231775625785,6.550920077731184e-05,2.339614313475423e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13931763153344e-05,0.00012165994430072198,0.00016953205256106527,0.0002080457035675068,0.00023612107532921191,0.00021848398281224332,0.00019544778034110067,0.0001839296791055294,0.0001526148413713199,0.00011698071567377112,6.766884475898145e-05,1.7277151853356967e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0313354324499596e-05,0.000125259350936838,0.0001774507471605205,0.00021560445750335052,0.0002372008973200467,0.0002170442201577969,0.0001914884330413731,0.000186089323087199,0.00015549436668021272,0.00011626083434654792,5.687062485063334e-05,6.11899128139726e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4554303706713934e-05,0.00011878041899182916,0.0001738513405244045,0.00020660594091306042,0.00023360149068393066,0.00021380475418529253,0.00019004867038692667,0.00018033027246941338,0.0001526148413713199,0.00011698071567377112,6.622908210453505e-05,1.3677745217240936e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.815371034282997e-05 +2620866,5.078564046806936e-05,1.2091819159064135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8089230351052015e-05,0.00010943096338953042,0.00016323955864736583,0.0002064678121410201,0.00020465403926716046,0.00018681860600754083,0.00015145003496727828,0.00011638375940599229,9.038634821400441e-05,6.892336920666557e-05,4.171677609877126e-05,1.4812478469853564e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1741025292543355e-05,0.00010247816737306853,0.0001535661033201145,0.00019860812968762844,0.000232465223333008,0.0002082815850148797,0.00017109924110075746,0.00015386839879909112,0.000124243441859384,9.220012108786401e-05,5.048334498909276e-05,6.6505005374852735e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.688004843514561e-05,0.00011094244078441343,0.00016444874056327223,0.00020949076693078616,0.0002088861759728329,0.00018560942409163444,0.0001541706942780677,0.00013482378362356508,0.00010580341764181117,7.648075618108064e-05,4.50420263675139e-05,9.673455327251306e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.59731619982158e-05,0.00010973325886850701,0.000163844149605319,0.0002082815850148797,0.00021100224432566914,0.00020344485735125404,0.00017593596876438317,0.00014570642086672282,0.00011759294132189869,8.947946177707459e-05,5.380859525783539e-05,1.3603296553947153e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9903003224911644e-05,0.00011215162270031985,0.00016626251343713187,0.00021221142624157556,0.00021674585842622457,0.00018591171957061105,0.00015870512646271674,0.00013119623787584587,0.00010640800859976438,8.19220748026595e-05,4.957645855216296e-05,1.541706942780677e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.506627556128599e-05,0.00010580341764181117,0.0001614257857735062,0.0002064678121410201,0.00023155833689607815,0.0002067701076199967,0.00017895892355414918,0.0001496362620934187,0.00012091819159064135,8.947946177707459e-05,4.776268567830332e-05,9.975750806227911e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3252502687426366e-05,0.00010429194024692815,0.00015870512646271674,0.00020344485735125404,0.00022944226854324195,0.0002079792895359031,0.0001735176049325703,0.00014812478469853564,0.00011910441871678172,8.706109794526175e-05,4.171677609877126e-05,1.5114773948830168e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.871807050277732e-05,0.00010066439449920892,0.00015719364906783374,0.0001992127206455816,0.00023065145045914835,0.00020767699405692652,0.0001720061275376873,0.00015205462592523148,0.00012091819159064135,9.00840527350278e-05,4.9878754031139555e-05,9.371159848274705e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.204332077151995e-05 +2620867,3.747675086574156e-05,9.313748735864765e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.749773436302931e-05,7.872335241028554e-05,0.00011797415065428705,0.00014924173569611876,0.0001461371527841638,0.0001321665296803667,0.00010999093745211724,8.426725046734788e-05,6.697028852931332e-05,5.033859435812624e-05,3.1932852808679196e-05,1.1753063880972204e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.306261591737942e-05,7.406647804235314e-05,0.00011087796114124721,0.0001432543257944914,0.00016742572132328332,0.00014946349161840125,0.00012307453686678443,0.00010999093745211724,8.981114852441024e-05,6.741380037387831e-05,3.6811483098894076e-05,5.1003862124973725e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6832466596181827e-05,8.0275643866263e-05,0.00011908293026569951,0.00015123753899666122,0.00015212456268579117,0.00013682340404829905,0.00011198674075265969,9.735084988201506e-05,7.850159648800302e-05,5.6326004259753583e-05,3.281987649780917e-05,7.317945435322316e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6167198829334343e-05,7.983213202169802e-05,0.00011863941842113452,0.0001505722712298137,0.0001550073896754636,0.0001485764679292713,0.00012817492307928176,0.00010577757492874983,8.626305376789034e-05,6.563975299561835e-05,3.925079824400151e-05,9.979016502712253e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882826989672428e-05,8.094091163311045e-05,0.00011996995395482948,0.00015301158637492116,0.00015655968113144106,0.00013460584482547413,0.0001159783473537446,9.535504658147259e-05,7.717106095430806e-05,6.0095854938555985e-05,3.636797125432909e-05,1.1753063880972204e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5280175140204363e-05,7.650579318746058e-05,0.0001162001032760271,0.00014835471200698875,0.00016631694171187082,0.00015012875938524872,0.00012972721453525927,0.00010888215784070477,8.848061299071528e-05,6.652677668474833e-05,3.548094756519911e-05,7.539701357604811e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.39496396065094e-05,7.53970135760481e-05,0.00011464781182004961,0.00014680242055101133,0.00016542991802274087,0.00015012875938524872,0.0001261791197787393,0.0001077733782292923,8.781534522386779e-05,6.430921746192337e-05,3.0380561352701736e-05,1.3305355336949664e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0845056694554475e-05,7.229243066409319e-05,0.00011309552036407216,0.00014347608171677388,0.00016587342986730584,0.00014901997977383624,0.00012418331647819688,0.00010999093745211724,8.75935893015853e-05,6.608326484018335e-05,3.6811483098894076e-05,6.874433590757328e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.328437183966192e-05 +2620868,0.00011736983809162299,3.055782766882492e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.403402608926855e-05,0.00023960114876692268,0.00035558199469178087,0.0004500334620317852,0.00043753253253090227,0.0003965572636113416,0.0003333581200235446,0.0002555745586847175,0.00020209836026427395,0.00016112309134471323,0.00010070193209044574,3.819728458603115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.083860050500323e-05,0.00022571122709927495,0.00033683060044045656,0.0004305875716970785,0.0005035096604522288,0.0004521169502819323,0.0003785003654433996,0.00033683060044045656,0.0002736314568526595,0.00020834882501471536,0.00011459185375809345,1.666790600117723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.195053783912138e-05,0.00024446262135059937,0.00035974897119207523,0.0004555894306988443,0.00046114539936590335,0.00041808664219619555,0.00034447005735766277,0.00030071680410457256,0.00024585161351736414,0.00017987448559603762,0.00010417441250735768,2.3612866835001077e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.056154567235661e-05,0.00024376812526721698,0.00035974897119207523,0.00045489493461546186,0.00047920229753384535,0.00045697842286560904,0.00039308478319442964,0.0003236351748561913,0.00026390851168530614,0.00020418184851442105,0.00012223131067529968,3.125232375220731e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.820100258956283e-05,0.00024585161351736414,0.00036183245944222236,0.00046045090328252094,0.00046809036019972725,0.0004166976500294307,0.0003541930025250161,0.00028891037068707194,0.00023543417226662837,0.00018473595817971434,0.0001132028615913287,3.819728458603115e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.708906525544469e-05,0.00023265618793309888,0.0003507205221081042,0.00044656098161487324,0.0005007316761186992,0.00045975640719913863,0.0003958627675279592,0.00033058013569001513,0.00027015897643574763,0.00020487634459780347,0.00010903588509103437,2.3612866835001077e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.292208875515038e-05,0.00022848921143280452,0.00034724804169119225,0.00044378299728134376,0.0005014261722020817,0.0004576729189489914,0.0003861398223606058,0.00033058013569001513,0.00027015897643574763,0.00020418184851442105,9.584045950676906e-05,3.4724804169119228e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.3199143587797e-05,0.0002194607623488335,0.00033960858477398605,0.0004312820677804609,0.0004986481878685521,0.00044794997378163807,0.00037988935761016436,0.0003333581200235446,0.0002687699842689828,0.00020557084068118582,0.00011528634984147584,2.0834882501471538e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.083860050500323e-05 +2620869,0.00011264695713790435,3.146563048544815e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.866407621362038e-05,0.00022340597644668187,0.0003316477453166235,0.0004172342602370424,0.0003989841945554825,0.00035996681275352684,0.00031150974180593673,0.00023976810429911488,0.0001938282837903606,0.00015732815242724076,9.880207972430719e-05,3.90173818019557e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.733644923885904e-05,0.00020956109903308467,0.00030962180397680976,0.000391432443238975,0.0004543637042098713,0.00041345838457878875,0.00035367368665643715,0.0003133976796350635,0.0002586474825903838,0.00019886278466803227,0.00010950039408935957,1.7620753071850963e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.740545099420244e-05,0.00022969910254377147,0.00033542362097487726,0.0004184928854564604,0.0004235273863341321,0.00038262206670304955,0.000322837368780698,0.0002875958626369961,0.00023662154125057006,0.00017557821810880068,0.00010320726799226994,2.3913879168940597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.48882005553666e-05,0.00022718185210493565,0.0003341649957554593,0.0004203808232855872,0.00045499301681958023,0.00042163944850500524,0.0003650013136311985,0.000305845928318556,0.0002504664186641673,0.0001957162216194875,0.0001157935201864492,3.020700526603022e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.243995187187417e-05,0.0002315870403728984,0.0003373115588040042,0.0004228980737244231,0.0004260446367729679,0.0003857686297515943,0.00032913049487778764,0.000272492360003981,0.0002259232268855177,0.00017746615593792757,0.00010950039408935957,3.838806919224674e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.174163750682178e-05,0.00021837147556901014,0.000322208056170989,0.000408423883701117,0.0004581395798681251,0.0004235273863341321,0.0003650013136311985,0.00031088042919622764,0.00025361298171271206,0.00019634553422919645,0.00010572451843110578,2.3913879168940597e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.922438706798593e-05,0.00021585422513017432,0.00032346668139040705,0.000408423883701117,0.00045876889247783406,0.00042226876111471417,0.0003593375001438179,0.0003083631787573918,0.00025613023215154796,0.00019508690900977855,9.250895362721756e-05,4.405188267962741e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9784697922351485e-05,0.00020704384859424881,0.0003165442426836084,0.0003989841945554825,0.0004562516420389981,0.00041345838457878875,0.0003530443740467283,0.0003133976796350635,0.00025487160693213004,0.00019634553422919645,0.0001120176445281954,2.1396628730104742e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.544851140973214e-05 +2620870,0.00019365690867881958,5.7886575963777595e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001368228159143834,0.0003852088509589564,0.000555711129252265,0.0006799041467745513,0.0006399097851995778,0.000573603343641069,0.0005051919356838772,0.00040731099814512593,0.00034310952298529995,0.0002736456318287668,0.00017365972789133282,7.367382395389875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011893060152557942,0.00035573932137739685,0.0005125593180792671,0.0006293849532061637,0.0007251609243462321,0.0006609594491864059,0.0005767607932390932,0.000530451532468071,0.0004462528765207582,0.0003452144893839828,0.0001926044254794782,3.578442877760797e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00013261288311701774,0.00039152375015500486,0.0005599210620496306,0.0006799041467745513,0.0006851665627712585,0.000619912604412091,0.0005346614652654367,0.0004988770364878286,0.00041257341414183303,0.0003104825438057162,0.0001862895262834297,4.8414227169704896e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012840295031965214,0.00038310388456027353,0.0005578160956509477,0.0006862190459705999,0.0007525254875291088,0.0006872715291699412,0.000602020390023287,0.0005293990492687297,0.0004388854941253683,0.0003452144893839828,0.0002031292574728923,5.8939059163119004e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014208523191109045,0.00039573368295237044,0.0005641309948469963,0.000689376495568624,0.000689376495568624,0.0006241225372094566,0.0005388713980628023,0.00047572240610231766,0.0003978386493510533,0.0003115350270050576,0.0001926044254794782,7.156885755521594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00012314053432294506,0.0003694216029688352,0.0005367664316641195,0.0006630644155850888,0.0007441056219343775,0.0006883240123692826,0.0005999154236246042,0.0005367664316641195,0.0004420429437233926,0.0003441620061846413,0.00019049945908079539,4.8414227169704896e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011998308472492084,0.0003683691197694938,0.0005388713980628023,0.0006651693819837715,0.000740948172336353,0.0006830615963725757,0.0005925480412292143,0.0005293990492687297,0.0004452003933214167,0.0003367946237892515,0.0001631348958979187,1.4734764790779751e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010314335353545826,0.00035363435497871404,0.0005262415996707053,0.0006472771675949676,0.0007367382395389876,0.0006672743483824544,0.0005809707260364587,0.0005378189148634609,0.00044414791012207535,0.0003420570397859585,0.0001968143582768438,4.104684477431502e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011261570232953096 +2620871,7.209003625381016e-05,2.233223949166945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1324971463310496e-05,0.00014182931045586563,0.0002037327111520722,0.00024565463440836394,0.00022880750637078876,0.0002045162985026571,0.00018414302738744984,0.0001508405649875919,0.00013085908754767713,0.0001018663555760361,6.542954377383857e-05,2.8992731971641037e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.583986000921624e-05,0.0001296837065217998,0.00018257585268628007,0.00021979625183906246,0.000252706920563628,0.0002291993000460812,0.000208826028930874,0.0002025573301261948,0.00017160562977809157,0.0001312508812229696,7.287362360439504e-05,1.4888159661112966e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.97577967621407e-05,0.000146530834559375,0.00020725885422970413,0.0002483971901354111,0.00024918077748599594,0.00022410598226727937,0.00019785580602268548,0.00018923634516625166,0.00015789285114285593,0.00012106424566536594,7.32654172796875e-05,1.998147743991477e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8582415736263364e-05,0.0001433964851570354,0.00020647526687911927,0.00024918077748599594,0.000274647366380005,0.00024722180910953376,0.00022175522021552468,0.00020529988585324198,0.0001712138361027991,0.00013360164327472424,7.757514770790441e-05,2.233223949166945e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3675733515065165e-05,0.0001492733902864221,0.00021039320363204375,0.0002534905079142129,0.0002483971901354111,0.00022449777594257185,0.0002002065680744401,0.00018492661473803475,0.00015515029541580882,0.00012067245199007351,7.444079830556483e-05,2.742555727047125e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5448066333923796e-05,0.00013516881797589404,0.00019276248824388366,0.00023742696722722255,0.00026837866757532585,0.0002480053964601186,0.0002209716328649398,0.00020725885422970413,0.00017082204242750668,0.00013281805592413936,7.561617933144217e-05,1.9589683764622327e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46644789833389e-05,0.00013987034207940338,0.0002002065680744401,0.00024173669765543949,0.0002687704612506183,0.00024643822175894885,0.00021862087081318514,0.00020608347320382684,0.00017199742345338402,0.00013046729387238467,6.307878172208388e-05,7.444079830556483e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8787573853952204e-05,0.00013360164327472424,0.00019589683764622325,0.00023311723679900567,0.0002648525244976938,0.0002386023482530999,0.0002131357593590909,0.0002045162985026571,0.00017082204242750668,0.00013164267489826202,7.522438565614971e-05,1.6455334362282752e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.192192325629178e-05 +2620872,3.7856102048283816e-05,1.0725895580347078e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6499271433798664e-05,7.550189241852159e-05,0.00011083425433025315,0.00013859539583232794,0.00013165511045680925,0.00011861578641795594,0.00010305272224255037,8.033906101358008e-05,6.498630851622054e-05,5.257791951150529e-05,3.259831009713328e-05,1.282901236080729e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.250334955092427e-05,7.066472382346311e-05,0.00010368365727668842,0.00012997261703244107,0.00015037284980290512,0.0001371232140860058,0.00011756422802772585,0.00010452490398887255,8.685872303300673e-05,6.666880194058872e-05,3.701485533609972e-05,6.099038663334614e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6078648077706626e-05,7.718438584288977e-05,0.0001120961243985293,0.00013901601918842,0.0001400675775786501,0.00012555607179347462,0.00010810020251565488,9.71639952572618e-05,7.970812597944202e-05,5.930789320897797e-05,3.449111519954748e-05,8.202155443794825e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.523740136552254e-05,7.634313913070568e-05,0.00011188581272048328,0.00013964695422255806,0.0001520553432272733,0.0001400675775786501,0.0001215601499106002,0.00010200116385232028,8.370404786231643e-05,6.540693187231258e-05,3.8907660438513914e-05,1.051558390230106e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7761141502074795e-05,7.760500919898181e-05,0.00011251674775462132,0.0001402778892566961,0.00013985726590060407,0.0001263973185056587,0.00010767957915956281,9.106495659392718e-05,7.529158074047556e-05,5.909758153093194e-05,3.68045436580537e-05,1.282901236080729e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.418584297529243e-05,7.36090873161074e-05,0.00010810020251565488,0.00013586134401772967,0.00015163471987118127,0.00014048820093474213,0.00012092921487646217,0.0001032630339205964,8.433498289645449e-05,6.540693187231258e-05,3.5332361911731554e-05,8.202155443794825e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.334459626310835e-05,7.255752892587729e-05,0.00010788989083760885,0.00013565103233968364,0.00015142440819313526,0.000139436642544512,0.00011945703313014001,0.00010242178720841231,8.53865412866846e-05,6.498630851622054e-05,3.1336440028857155e-05,1.6824934243681689e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.018992109241803e-05,6.961316543323302e-05,0.00010578677405714864,0.00013270666884703937,0.00015100378483704318,0.00013754383744209783,0.00011777453970577183,0.00010473521566691852,8.53865412866846e-05,6.603786690645064e-05,3.764579037023778e-05,7.15059705356472e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2293037872878243e-05 +2620873,5.053007215733219e-05,1.388838240581645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6050694755523554e-05,0.00010283312930264094,0.00015188571396999268,0.00019089138370547717,0.0001823219562635904,0.00016577409637580912,0.00014095230654413712,0.00010756108927057846,8.539877692087134e-05,6.914641453108615e-05,4.225614221344154e-05,1.5956864891789112e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9549749799609467e-05,9.692317934271905e-05,0.00014361178402610202,0.00018202645876559432,0.0002109852135692116,0.00019059588620748107,0.0001610461364078716,0.00014390728152409812,0.00011731250670444959,8.98312393908128e-05,4.964357966334391e-05,7.387437449902367e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5164202261535277e-05,0.0001054926067846058,0.00015395419645596533,0.00019295986619144982,0.0001956193436734147,0.0001728660363277154,0.00014833974399403952,0.0001317918841062582,0.00010667459677659018,7.948882696094946e-05,4.46201221974103e-05,1.0342412429863314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5164202261535277e-05,0.00010578810428260188,0.00015424969395396145,0.00019325536368944591,0.00020477976611129364,0.0001938463586854381,0.00016872907135577006,0.00013681534157219185,0.00011169805424252379,8.628526941485966e-05,5.200755964731266e-05,1.388838240581645e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7528182245504024e-05,0.0001054926067846058,0.00015424969395396145,0.00019502834867742247,0.00019355086118744198,0.0001728660363277154,0.00014745325150005125,0.00012233596417038318,9.928715932668782e-05,7.771584197297291e-05,4.875708716935562e-05,1.6252362389785206e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3095719775562605e-05,0.0001004691493186722,0.00014981723148402,0.00018941389621549666,0.00021009872107522333,0.00019355086118744198,0.00016695608636779348,0.0001388838240581645,0.00011258454673651205,8.658076691285576e-05,4.550661469139858e-05,1.0342412429863314e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.132273478758603e-05,9.869616433069562e-05,0.0001486352414920356,0.0001885274037215084,0.0002106897160712155,0.00019266436869345372,0.00016370561388983645,0.00013977031655215276,0.00011465302922248472,8.805825440283622e-05,4.1665147217449353e-05,1.4774874899804735e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7481267313636805e-05,9.485469685674639e-05,0.00014568026651207464,0.00018350394625557483,0.00020950772607923113,0.00019089138370547717,0.00016252362389785208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620874,2.066334442354008e-05,5.3798056487323285e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4794465534013907e-05,4.218256701846939e-05,6.30904480624064e-05,7.959666993919878e-05,7.764037697602339e-05,7.01820100539172e-05,5.9055593825857156e-05,4.5117006463232485e-05,3.570234657795091e-05,2.861078458644011e-05,1.8217978219570842e-05,7.091561991510797e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2715904260640048e-05,3.9737200814500156e-05,5.942239875645254e-05,7.617315725364183e-05,8.91335981346788e-05,7.996347486979416e-05,6.675849736836027e-05,5.930013044625408e-05,4.82959825283925e-05,3.6802761369737064e-05,2.0174271182746235e-05,2.9344394447630883e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4427660603418518e-05,4.3160713500057085e-05,6.37017896133987e-05,8.057481642078646e-05,8.204203614316802e-05,7.470593753126029e-05,6.101188678903255e-05,5.269764169553713e-05,4.352751843065247e-05,3.191202896179859e-05,1.8584783150166228e-05,4.157122546747709e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4183123983021594e-05,4.303844518985863e-05,6.357952130320026e-05,8.033027980038955e-05,8.39983291063434e-05,8.106388966158032e-05,6.969293681312334e-05,5.758837410347562e-05,4.682876280601095e-05,3.655822474934014e-05,2.1641490905127778e-05,5.3798056487323285e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5528075395204675e-05,4.3405250120454014e-05,6.419086285419255e-05,8.155296290237415e-05,8.350925586554956e-05,7.458366922106183e-05,6.333498468280334e-05,5.110815366295712e-05,4.193803039807247e-05,3.289017544338628e-05,2.0052002872547774e-05,6.847025371113873e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3449514121830821e-05,4.095988391648478e-05,6.199003327062025e-05,7.898532838820646e-05,8.888906151428189e-05,8.155296290237415e-05,7.01820100539172e-05,5.881105720546024e-05,4.8173714218194035e-05,3.655822474934014e-05,1.9440661321555457e-05,4.157122546747709e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2838172570838512e-05,4.034854236549247e-05,6.150096002982639e-05,7.84962551474126e-05,8.901132982448035e-05,8.143069459217571e-05,6.85925220213372e-05,5.881105720546024e-05,4.8173714218194035e-05,3.6435956439141685e-05,1.6873026807387757e-05,6.1134155099231e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620875,1.5529666463147917e-05,4.202145042969436e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1144819461788504e-05,3.224689565583067e-05,4.814196603575854e-05,6.029164626869191e-05,5.773381885123224e-05,5.261816401631293e-05,4.3939820992789113e-05,3.343445838536552e-05,2.658313494574144e-05,2.1193427173237157e-05,1.2606435128908307e-05,4.567548959749387e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.043746940303786e-06,3.1059332926295834e-05,4.594954253507882e-05,5.837327570559717e-05,6.741702264590095e-05,6.111380508144679e-05,5.0791144432413175e-05,4.558413861829888e-05,3.6997146573970034e-05,2.8044750612861232e-05,1.5438315483952927e-05,2.1924235006797055e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1144819461788504e-05,3.3617160343755485e-05,4.923817778609838e-05,6.175326193581171e-05,6.211866585259167e-05,5.481058751699264e-05,4.69544033062237e-05,4.1747397492109396e-05,3.334310740617052e-05,2.4573413403451703e-05,1.3611295900053174e-05,3.1059332926295833e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0962117503398529e-05,3.3617160343755485e-05,4.9146826806903406e-05,6.157055997742174e-05,6.330622858212651e-05,6.129650703983677e-05,5.371437576665279e-05,4.275225826325426e-05,3.471337209409534e-05,2.6674485924936423e-05,1.6260474296707815e-05,4.293496022164423e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.169292533695843e-05,3.343445838536552e-05,4.9055475827708416e-05,6.211866585259167e-05,6.083975214386183e-05,5.4171130662627724e-05,4.6223595472663794e-05,3.8367411261894854e-05,3.0876630967905854e-05,2.3933956549086792e-05,1.5164262546367965e-05,4.932952876529338e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0231309669838626e-05,3.20641936974407e-05,4.814196603575854e-05,6.065705018547186e-05,6.650351285395108e-05,6.074840116466684e-05,5.2800865974702905e-05,4.311766218003421e-05,3.471337209409534e-05,2.6491783966546443e-05,1.3793997858443149e-05,3.1059332926295833e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.957256732253664e-06,3.1607438801465755e-05,4.750250918139362e-05,6.010894431030193e-05,6.659486383314605e-05,6.065705018547186e-05,5.13392503075831e-05,4.3757119034399126e-05,3.5718232865240206e-05,2.7313942779301334e-05,1.3063190024883246e-05,3.6540391677995095e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.586992044328847e-06,3.0419876071930916e-05,4.677170134783372e-05,5.855597766398713e-05,6.659486383314605e-05,6.0474348227081885e-05,5.115654834919312e-05,4.4670628826349e-05,3.617498776121514e-05,2.740529375849632e-05,1.5255613525562952e-05,2.6491783966546446e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.409150857083736e-06 +2620876,4.8138065347718446e-05,1.2683083085626417e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.487847848547265e-05,9.915864957853383e-05,0.00014729671492625228,0.0001856342160714412,0.00017900442264031833,0.00016372707255990466,0.00013663139505879366,0.00010405893167979858,8.157528439164263e-05,6.572143053460962e-05,3.97787605867374e-05,1.4989098192103947e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8825188830969134e-05,9.454661936557878e-05,0.0001403786696068197,0.00017900442264031833,0.00020782961147128745,0.00018765197928960906,0.0001553677677989236,0.00014095517338343904,0.00011357124399401838,8.618731460459771e-05,4.756156157109907e-05,6.918045319432591e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.430197470885327e-05,0.0001026176722382501,0.0001498909819210395,0.00018909323873115755,0.00019139925383763505,0.00017150987354426636,0.0001432611884899166,0.0001268308308562642,0.00010232942034994042,7.465723907221007e-05,4.2373027581524625e-05,9.512312314219814e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4013722820543574e-05,0.00010204116846163072,0.00014931447814442014,0.00018822848306622846,0.0001948582764973513,0.00018851673495453813,0.00016372707255990466,0.000132595868622458,0.00010809445811613425,8.27282919448814e-05,5.0155828565886295e-05,1.2971334973936112e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.63197379270211e-05,0.00010232942034994042,0.00015017923380934917,0.00019082275006101568,0.00019082275006101568,0.00016891560654947913,0.00014354944037822627,0.00011875977798359281,9.627613069543689e-05,7.523374284882945e-05,4.669680590616999e-05,1.527735008041364e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.199595960237574e-05,9.714088636036597e-05,0.00014700846303794258,0.0001856342160714412,0.0002055235963648099,0.00018851673495453813,0.00016343882067159496,0.00013519013561724523,0.00010982396944599239,8.301654383319109e-05,4.3814287023073085e-05,9.512312314219814e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.055470016082728e-05,9.569962691881752e-05,0.00014499069981977473,0.00018419295662989275,0.00020667660391804864,0.00018794023117791876,0.00015882679045863994,0.00013576663939386462,0.00011097697699923115,8.416955138642988e-05,3.97787605867374e-05,1.1530075532387652e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.65191737244916e-05,9.224060425910122e-05,0.00014239643282498748,0.00017929267452862803,0.00020581184825311957,0.00018649897173637027,0.00015767378290540115,0.00013807265450034215,0.00011126522888754085,8.474605516304925e-05,4.727330968278939e-05,8.359304760981048e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9689944495898202e-05 +2620877,5.066508603122265e-05,1.2891116564157245e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.657479583319032e-05,0.0001058270731894769,0.0001591902998969185,0.00019996220344867163,0.00019426612868776497,0.00017717790440504493,0.00014569959651582374,0.00011092356113344605,8.69400884559442e-05,6.775331031394271e-05,4.0771903551753145e-05,1.4989670423438656e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0279134255346084e-05,0.0001013301720624453,0.00015139567127673043,0.00019426612868776497,0.00022604422998545492,0.00020206075730795308,0.00016578575488323153,0.00015169546468519918,0.00012201591724679066,9.113719617450702e-05,5.0065499214285106e-05,6.895248394781782e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.657479583319032e-05,0.00011062376772497729,0.00016278782079854375,0.0002053584848011096,0.00020595807161804714,0.00018557211984217056,0.0001528946383190743,0.00013550662062788543,0.00010702624682335199,7.644731915953715e-05,4.436942445337842e-05,9.893182479469513e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.537562219931523e-05,0.00010942459409110217,0.00016098906034773118,0.0002026603441248906,0.00020236055071642183,0.000200861583674078,0.00017537914395423227,0.00014240186902266723,0.00011512066885200886,8.753967527288175e-05,5.3063433298972836e-05,1.3790496789563565e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.897314310094051e-05,0.00011062376772497729,0.00016308761420701258,0.00020655765843498468,0.0002071572452519222,0.00018077542530667016,0.0001537940185444806,0.00012771199200769734,0.00010312893251325796,7.974504665269366e-05,4.91661189888788e-05,1.5889050648844974e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4176448565440135e-05,0.00010432810614713304,0.00015949009330538732,0.00020116137708254677,0.00022274650249229838,0.00020176096389948428,0.00017567893736270107,0.00014539980310735497,0.00011751901611975905,8.783946868135054e-05,4.6168184904191055e-05,9.893182479469513e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.267748152309627e-05,0.00010372851933019549,0.00015709174603763715,0.00019876302981479657,0.00022334608930923595,0.00020236055071642183,0.00016968306919332556,0.00014539980310735497,0.00011841839634516539,8.81392620898193e-05,4.167128377715946e-05,1.1991736338750922e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.818058039606467e-05,9.92316182031639e-05,0.0001552929855868245,0.00019366654187082742,0.00022364588271770475,0.00020116137708254677,0.00016818410215098173,0.00014929711741744898,0.00011901798316210293,8.93384357236944e-05,4.946591239734756e-05,8.993802254063193e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.11785144807524e-05 +2620878,5.8167129435466245e-05,1.4628858899937619e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.214504587839172e-05,0.00011981732051377479,0.00017902936844209374,0.00022814053760617,0.00022396086363475926,0.00019748959514915784,0.00016858018351356688,0.00012991819927801743,0.0001055367677781214,8.080703011394114e-05,5.1897618478350126e-05,1.9505145199916825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.622384108555982e-05,0.00011250289106380597,0.00016858018351356688,0.00021769135267764317,0.00025530841842033987,0.00022848884377045428,0.00019122008419204177,0.00016718695885642996,0.000136884322563702,0.00010414354312098447,5.677390477832933e-05,8.011041778537268e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.075182122125479e-05,0.00012155885133519593,0.00017972598077066216,0.00022918545609902272,0.00023162359924901228,0.00020968031089910587,0.00017171493899212486,0.0001462885889993762,0.00012190715749948014,8.951468422104687e-05,5.224592464263435e-05,1.1494103421379557e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.040351505697057e-05,0.00012155885133519593,0.0001811192054277991,0.00023023037459187536,0.00024381431499896029,0.00022883714993473847,0.00019609637049202095,0.00016370389721358765,0.0001330529547565755,0.00010275031846384757,6.095357874974007e-05,1.4977165064221849e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.388657669981285e-05,0.0001226037698280486,0.00018146751159208333,0.0002323202115775807,0.0002399829471918338,0.00021351167870623238,0.0001811192054277991,0.0001462885889993762,0.00011946901434949055,9.36943581924576e-05,5.607729244976087e-05,1.8808532871348365e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.831367807126519e-05,0.00011598595270664827,0.0001755463067992514,0.00022465747596332774,0.000253915193763203,0.0002323202115775807,0.00019853451364201054,0.00016753526502071418,0.000136884322563702,0.00010379523695670025,5.538068012119241e-05,1.1494103421379557e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.622384108555982e-05,0.00011354780955665866,0.00017310816364926186,0.00022256763897762234,0.00025252196910606603,0.00023057868075615964,0.00019470314583488405,0.00016683865269214568,0.0001358394040708493,0.0001010087876424264,4.702133217837092e-05,2.089836985705374e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.169586094986484e-05,0.00010936813558524789,0.00017032171433498797,0.00021803965884192736,0.00025217366294178183,0.00022291594514190657,0.00019017516569918907,0.00016683865269214568,0.00013514279174228086,0.00010275031846384757,5.7818823271182015e-05,1.0449184928526873e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5178922592707134e-05 +2620879,2.9180012528773007e-05,7.251837433186192e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1582849503530333e-05,6.250393216222386e-05,9.410122383539225e-05,0.00011792868968728974,0.00011602939893097907,0.00010618761955736923,8.581340962603662e-05,6.509387410264748e-05,5.0590199236275104e-05,3.884912910635459e-05,2.330947746381276e-05,8.633139801412133e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7784267990908993e-05,5.9223339037687226e-05,8.892133995454497e-05,0.00011464809656275313,0.00013381366692188806,0.00011896466646345919,9.703649136787237e-05,8.94393283426297e-05,7.182772314774893e-05,5.300747838067049e-05,2.9007349732744767e-05,3.9712443086495815e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1410186707502093e-05,6.4748548510591e-05,9.58278517956747e-05,0.00012138194560785459,0.0001210366200157981,0.00010860489870176462,8.926666554660144e-05,7.873423498887865e-05,6.11226297939979e-05,4.3338361803088897e-05,2.5726756608208158e-05,5.525209472903764e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0546872727360878e-05,6.371257173442154e-05,9.461921222347697e-05,0.00011913732925948743,0.00011602939893097907,0.00011689271291112027,0.00010256170084077614,8.37414560736977e-05,6.733849045101464e-05,5.128085042038807e-05,3.073397769302719e-05,7.942488617299163e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.296415187175628e-05,6.492121130661924e-05,9.63458401837594e-05,0.00012207259679196755,0.00012362656195622173,0.00010566963116928452,9.047530511879917e-05,7.476299068022908e-05,6.077730420194141e-05,4.661895492762552e-05,2.8489361344660043e-05,8.978465393468617e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.002888433927615e-05,6.11226297939979e-05,9.392856103936401e-05,0.00011913732925948743,0.00013225970175763385,0.00011810135248331799,0.00010307968922886085,8.564074683000837e-05,6.941044400335355e-05,5.128085042038807e-05,2.7108058976434097e-05,5.697872268932008e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.916557035913494e-05,6.0949966997969656e-05,9.254725867113808e-05,0.00011741070129920502,0.00013208703896160561,0.00011965531764757219,9.962643330829602e-05,8.529542123795186e-05,6.906511841129706e-05,5.0590199236275104e-05,2.417279144395397e-05,6.906511841129705e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6402965622683054e-05,5.818736226151778e-05,9.185660748702512e-05,0.00011430277097069664,0.00013277769014571862,0.00011913732925948743,9.859045653212656e-05,8.805802597440376e-05,6.975576959541004e-05,5.1798838808472796e-05,2.8662024140688283e-05,5.17988388084728e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.830225637899372e-05 +2620880,6.031227806031936e-05,1.8061430862983335e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.192832164621132e-05,0.0001193344539161399,0.00017190611874946644,0.0002099641337821813,0.0001973856372883179,0.00017577642536296284,0.00015448973898873246,0.00012643001604088335,0.00010740100852452593,8.579179659917087e-05,5.4829343691199415e-05,2.354436523210328e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7412963930465484e-05,0.00010965868738239883,0.00015868257115335359,0.00019416038177707087,0.00022318768137829408,0.0002022235205551884,0.00017738905311858634,0.00016545560772697238,0.00013900851253474675,0.00010740100852452593,5.966722695806995e-05,1.1288394289364585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.06382194417125e-05,0.00012062455612063872,0.00017319622095396522,0.00020931908267993188,0.0002106091848844307,0.0001893224985102003,0.00016416550552247354,0.00015416721343760776,0.00012772011824538216,9.740271643966013e-05,5.902217585582055e-05,1.5158700902861014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9348117237213695e-05,0.00011772182616051639,0.00017255116985171582,0.0002112542359866801,0.0002309282946052869,0.0002086740315776825,0.00018480714079445454,0.00016513308217584765,0.00013707335922799854,0.00010772353407565062,6.289248246931696e-05,1.8061430862983335e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4186000504084235e-05,0.00012288223497851163,0.000174486323158464,0.00021189928708892952,0.0002138344403956777,0.00019222522847032265,0.00016803581213596996,0.0001486842790684878,0.00012449486273413514,9.740271643966013e-05,5.9989752509194664e-05,2.257678857872917e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.773548948159018e-05,0.00011417404509814467,0.00016610065882922178,0.00020448119941306135,0.00022931566684966347,0.00021093171043555539,0.00018480714079445454,0.0001677132865848453,0.00013868598698362205,0.00010772353407565062,5.966722695806995e-05,1.5158700902861014e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.676791282821608e-05,0.00011417404509814467,0.00016674570993147116,0.00020448119941306135,0.00022802556464516464,0.00020931908267993188,0.00018254946193658155,0.00016513308217584765,0.00013900851253474675,0.00010546585521777769,5.095903707770298e-05,4.837883266870537e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.193002956134554e-05,0.00010965868738239883,0.0001631979288690994,0.0001993207905950661,0.00022705798799179048,0.0002035136227596873,0.00017835662977196048,0.00016706823548259591,0.00013836346143249734,0.00010643343187115181,6.095732916256877e-05,1.2901022044988098e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3865182868093764e-05 +2620881,6.732247780156874e-05,1.9907184296162798e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6691395894636386e-05,0.0001328352115762136,0.00019219481565931718,0.00023454282588933624,0.00021934097606317557,0.00019436650849162586,0.00017156373375238484,0.00014116003410006344,0.00012161479860928546,9.6278382232351e-05,6.225519452618184e-05,2.6784211598473582e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.198606142463427e-05,0.00012197674741467025,0.0001759071194170022,0.00021427369278778866,0.00024612518766164917,0.00022187461770086902,0.00019798599654547363,0.00018676558357854555,0.0001574477303423785,0.0001208909009985159,6.696052899618396e-05,1.2668208188467235e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5605549478482044e-05,0.00013500690440852226,0.00019436650849162586,0.0002334569794731819,0.00023490477469472102,0.00020884446070701702,0.00018350804433008252,0.0001733734777793087,0.00014369367573775692,0.00011148023205851166,6.732247780156874e-05,1.7011593853084573e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.415775425694294e-05,0.0001324732627708288,0.00019364261088085632,0.00023599062111087537,0.0002569836518231925,0.0002301994402247189,0.00020739666548547789,0.00018785142999469987,0.00015636188392622417,0.00012197674741467025,7.094196585541652e-05,1.954523549077802e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9586986337714604e-05,0.00013826444365698526,0.00019617625251854974,0.0002367145187216449,0.0002388862115539536,0.00021427369278778866,0.0001900231228270085,0.00016939204092007617,0.0001422458805162178,0.00011003243683697257,6.768442660695351e-05,2.533641637693447e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.198606142463427e-05,0.0001274059794954419,0.00018495583955162163,0.00022802774739241023,0.0002551739077962686,0.00023490477469472102,0.00020775861429086264,0.0001911089692431629,0.00015817162795314806,0.00012197674741467025,6.804637541233829e-05,1.7011593853084573e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1262163813864714e-05,0.000128853774716981,0.0001874894811893151,0.00022766579858702547,0.0002537261125747295,0.00023273308186241235,0.00020450107504239965,0.00018785142999469987,0.00015817162795314806,0.0001194431057769768,5.718791125079494e-05,5.7911808861564496e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5832931733093035e-05,0.00012378649144159415,0.00018350804433008252,0.00022223656650625378,0.00025336416376934467,0.00022513215694933204,0.00019943379176701277,0.000189299225216239,0.00015708578153699374,0.00012016700338774634,6.877027302310786e-05,1.4116003410006349e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7642675760016923e-05 +2620882,3.663188308850526e-05,6.8838438018667595e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.65519689500575e-05,8.063931310758204e-05,0.00012194237591878259,0.00015537818867070684,0.0001558698917994116,0.00013472665726510657,0.00011899215714655399,9.096507881038216e-05,7.424717243442004e-05,5.605415667234361e-05,3.909039873202909e-05,1.4751093861143057e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.556856269264796e-05,7.572228182053435e-05,0.0001155502352456206,0.0001482484933044877,0.0001733253528684309,0.00015193626676977343,0.00013030132910676364,0.00011604193837432538,9.36694460182584e-05,6.834673488996282e-05,3.663188308850526e-05,2.4585156435238424e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4831007999590814e-05,7.990175841452487e-05,0.00012071311809702067,0.00015390307928459256,0.00015832840744293546,0.00013669346977992564,0.00012169652435443023,0.00010547032110717284,8.506464126592496e-05,6.269214890985798e-05,3.7861140910267174e-05,4.917031287047685e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.507685956394319e-05,8.13768678006392e-05,0.00012366333686924928,0.0001575908527498783,0.0001716043919179642,0.0001514445636410687,0.00013153058692852557,0.00011727119619608727,9.465285227566793e-05,6.957599271172474e-05,3.909039873202909e-05,4.917031287047685e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7289523643114657e-05,8.186857092934396e-05,0.00012341748530489687,0.00015808255587858305,0.00017430875912584045,0.00015365722772024018,0.00013472665726510657,0.00010350350859235378,8.358953187981064e-05,6.342970360291514e-05,3.638603152415286e-05,1.1309171960209677e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3355898613476506e-05,7.572228182053435e-05,0.00011604193837432538,0.000149723602690602,0.00017775068102677383,0.00015808255587858305,0.00013915198542344947,0.00012169652435443023,9.858647730530609e-05,7.178865679089622e-05,3.835284403897194e-05,4.425328158342916e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2372492356066967e-05,7.572228182053435e-05,0.00011702534463173492,0.0001511987120767163,0.0001779965325911262,0.00015808255587858305,0.00013767687603733516,0.00011751704776043968,9.51445554043727e-05,6.736332863255328e-05,2.9502187722286114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.917031287047685e-07,4.917031287047685e-07,4.917031287047685e-07,7.375546930571527e-07,1.2292578217619212e-06,1.2292578217619212e-06,7.375546930571527e-07,4.917031287047685e-07,2.4585156435238424e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620883,7.273200032717991e-05,1.5385615453826523e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2217846388744564e-05,0.00015572107762357754,0.00023637900106333477,0.00029745523210731277,0.00029372538593668815,0.0002512983857458332,0.00022099338560950822,0.00017390407770537255,0.00014313284679771948,0.00010723307740545758,7.459692341249224e-05,2.890630782234074e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8954230989448034e-05,0.0001445315391117037,0.00021819600098153976,0.0002802046935681739,0.0003254290783869974,0.0002820696166534862,0.0002494334626605209,0.00022192584715216443,0.0001818300008179498,0.00013334200059982986,7.179953878452377e-05,6.5272307985930705e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9420461760776105e-05,0.00015478861608092138,0.00023264915489271018,0.0002965227705646566,0.00030444869367723395,0.00026575153965700354,0.00023311538566403821,0.00020327661629904138,0.00016551192382146713,0.00012355115440194025,7.459692341249224e-05,1.1189538511873835e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.848800021811994e-05,0.00015525484685224947,0.00023637900106333477,0.00030025261673528126,0.0003282264630149658,0.0002895293089947355,0.00025642692423044204,0.0002261219240941171,0.0001850936162172464,0.00013613938522779833,7.692807726913263e-05,1.1655769283201913e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.361653870272879e-05,0.0001566535391662337,0.00023637900106333477,0.0003007188475066093,0.0003263615399296535,0.00029092800130871966,0.0002550282319164578,0.00019954677012841673,0.0001617820776508425,0.00012308492363061218,7.13333080131957e-05,2.2845307795075745e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.522438481882341e-05,0.0001449977698830318,0.00022239207792349244,0.00028579946282411084,0.00033661861689887124,0.00029978638596395315,0.0002652853088856755,0.00023218292412138206,0.0001906883854731833,0.00013940300062709486,7.413069264116415e-05,1.0257076969217682e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3825692504839186e-05,0.00014593023142568792,0.00022658815486544515,0.0002890630782234074,0.0003370848476701993,0.00029978638596395315,0.00026388661657169123,0.0002275206164081013,0.00018462738544591827,0.00013334200059982986,5.92113079586657e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6832230934918035e-05,0.00013847053908443873,0.0002191284625241959,0.0002830020781961424,0.0003268277707009816,0.0002895293089947355,0.0002526970780598174,0.00022425700100880483,0.0001818300008179498,0.00013194330828584562,7.646184649780456e-05,1.0257076969217682e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.102830787687073e-05 +2620884,5.287005915041739e-05,1.234690004111544e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.735728730388774e-05,0.00010858940292570757,0.0001639921595204564,0.00020578166735192398,0.00019850016219947128,0.00016367557233991492,0.00015037891075717522,0.00011840360552249164,0.00010004154905108918,7.661409769102402e-05,5.160371042825171e-05,2.089475391573382e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.450800267901495e-05,9.909178750946494e-05,0.00014721303895176105,0.00018678643651943872,0.00021654563149033234,0.00019090206986647717,0.00017000731595074337,0.0001548111312847551,0.00013011733120252424,9.592591570405071e-05,5.192029760879314e-05,6.33174361082843e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.67241129428049e-05,0.00011143868755058037,0.00016525850824262206,0.00020546508017138258,0.00020863095197679678,0.0001810878672696931,0.00015892676463179355,0.00014183105688255686,0.00011840360552249164,9.022734645430513e-05,5.4452995053124505e-05,9.814202596784067e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5457764220639214e-05,0.00010985575164787325,0.0001646253338815392,0.00020641484171300684,0.00022382713664278501,0.00019913333656055413,0.00018045469290861027,0.00015987652617341786,0.0001307505055636071,9.782543878729924e-05,5.571934377529018e-05,1.044737695786691e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.957339756767769e-05,0.00011365479781437032,0.0001677912056869534,0.00020799777761571398,0.00021812856739303945,0.0001966006391162228,0.00017475612365886465,0.00014214764406309826,0.00011777043116140881,8.832782337105661e-05,5.255347196987597e-05,1.7412294929778186e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.292506677630784e-05,0.00010415718239812769,0.00015512771846529653,0.00019786698783838847,0.00022730959562874064,0.00020578166735192398,0.0001829873903529416,0.00016335898515937352,0.00013423296454956272,0.00010004154905108918,5.4452995053124505e-05,9.181028235701225e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.260847959576642e-05,0.00010574011830083479,0.00015987652617341786,0.00019818357501892987,0.0002276261828092821,0.00020229920836596836,0.000179504931366986,0.00015671065436800367,0.00013043391838306567,9.655909006513356e-05,4.3372443734174754e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620885,0.00028112245401080174,7.76581364670723e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019414534116768073,0.0005591385825629207,0.0008216230838216247,0.0010157684249893057,0.0009629608921916965,0.0008387078738443807,0.0007346459709785039,0.000599520813525798,0.00051565002614136,0.0004069286350874589,0.00026559082671738727,0.00011027455378324265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017706055114492485,0.0005109905379533358,0.000748624435542577,0.000930344474875526,0.0010747886087042805,0.0009645140549210381,0.0008588989893258196,0.000790559829234796,0.0006663068108874803,0.0005032247243066285,0.00027646296582277733,4.504171915090193e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001894858529796564,0.0005653512334802863,0.0008309420601976735,0.0010126620995306228,0.001017321587718647,0.000899281220288697,0.000790559829234796,0.0007330928082491624,0.0006103929526311882,0.0004690551442611167,0.00028267561674014314,6.367967190299929e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001848263647916321,0.0005622449080216035,0.0008293888974683321,0.0010250874013653542,0.0011105113514791338,0.000992470984049184,0.0008930685693713313,0.0008029851310695274,0.000664753648158139,0.0005094373752239943,0.0002935477558455333,7.144548554970651e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020657064300241232,0.0005839891862323836,0.0008402610365737222,0.0010250874013653542,0.0010514911677641588,0.0009427697767102577,0.0008418141993030635,0.0007191143436850895,0.0006057334644431638,0.0004612893306144095,0.00027956929128146034,9.940241467785253e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017395422568624192,0.0005389474670814817,0.0007890066665054544,0.0009862583331318182,0.0011120645142084751,0.001017321587718647,0.0009008343830180385,0.0008169635956336006,0.0006740726245341874,0.0005125437006826771,0.00028267561674014314,6.212650917365783e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00017240106295690052,0.000543606955269506,0.000801431968340186,0.0009847051704024768,0.0011074050260204509,0.0010095557740719397,0.0008868559184539656,0.000801431968340186,0.0006678599736168217,0.0005032247243066285,0.00023452757213055834,1.70847900227559e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014755045928743736,0.0005218626770587258,0.0007874535037761131,0.0009645140549210381,0.0011027455378324266,0.0009722798685677451,0.0008635584775138437,0.0008029851310695274,0.000664753648158139,0.0005016715615772869,0.00028578194219882605,5.2807532797609164e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00015686943566348605 +2620886,6.160547742070508e-05,1.837953470009986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.356630447431077e-05,0.00012116878431917683,0.0001769881119268875,0.000215448990095615,0.00020047307293257066,0.00017834955894170977,0.00016031038599531542,0.00013001818991552122,0.00011334046398394912,8.74729707023271e-05,5.6840412868827334e-05,2.450604626679981e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.948196342984414e-05,0.0001112982934617158,0.00015792785371937656,0.00019196402908993186,0.00022021405464749274,0.00019911162591774848,0.00018277426173988193,0.00017596702666577082,0.00014975917163044327,0.00011265974047653803,6.228620092811619e-05,1.191266137969435e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254521921319411e-05,0.0001259338488710546,0.00018073209121764858,0.00021715079886414274,0.00021715079886414274,0.00019298511435104852,0.00017290377088242085,0.00016371400353237098,0.0001364850632359267,0.0001041506966338992,6.330728618923284e-05,1.5997002424160986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.152413395207746e-05,0.00012389167834882128,0.00018005136771023745,0.00021851224587896495,0.0002392743128550037,0.00021374718132708721,0.00019366583785845957,0.00017971100595653194,0.00014975917163044327,0.00011538263450618243,6.637054197258281e-05,1.769881119268875e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.594883675024964e-05,0.00012899710465440455,0.000183454985247293,0.00022191586341602053,0.0002191929693863761,0.00019809054065663185,0.00017834955894170977,0.00016167183301013765,0.0001364850632359267,0.00010449105838760474,6.36476479429384e-05,2.280423749827205e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.880123992243303e-05,0.00011640371976729911,0.00016677725931572092,0.0002083013932677984,0.00023553033356424262,0.00021715079886414274,0.00019434656136587073,0.00018175317647876527,0.00014975917163044327,0.00011470191099877135,6.500909495776061e-05,1.5656640670455436e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8460878168727475e-05,0.00012116878431917683,0.00017460557965094865,0.0002113646490511484,0.00023518997181053706,0.000215448990095615,0.00019196402908993186,0.00018005136771023745,0.00015009953338414883,0.00011300010223024358,5.4117518839182904e-05,5.7861498129944e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.301509010943863e-05,0.000115722996259888,0.00017120196211389312,0.0002038766904696262,0.000231445992519776,0.00020762066976038728,0.0001871989645380541,0.00017868992069541528,0.00014907844812303222,0.00011300010223024358,6.466873320405506e-05,1.2933746640811011e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53976223853775e-05 +2620887,3.3612714008601026e-05,9.681923056825297e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.338275757120071e-05,6.686007243015205e-05,9.7367263948828e-05,0.00011855788799772861,0.00011052006508262837,9.718458615530298e-05,8.439714060855259e-05,7.124433947475217e-05,6.174509421145189e-05,4.859229307765149e-05,3.178593607335097e-05,1.3700834514375418e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.137330184242565e-05,6.1014383037351866e-05,8.859872985962771e-05,0.00010851060935385334,0.00012403822180347878,0.00011143345405025341,9.992475305817805e-05,9.444441925242788e-05,8.001287356395245e-05,6.064902745030185e-05,3.3430036215076026e-05,6.028367186325185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.28347241906257e-05,6.722542801720205e-05,9.8280652916453e-05,0.00011746182123657858,0.00011709646564952857,0.00010303027554810316,9.243496352365282e-05,8.768534089200268e-05,7.307111741000223e-05,5.663011599275173e-05,3.397806959565104e-05,8.037822915100245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.210401301652568e-05,6.686007243015205e-05,9.7915297329403e-05,0.00011910592137830366,0.00012878784443512894,0.00011453897654017851,0.00010449169789630319,9.590584160062793e-05,8.037822915100246e-05,6.137973862440187e-05,3.5439491943851084e-05,9.133889676250279e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4661502125875757e-05,6.960023933302712e-05,9.901136409055301e-05,0.00011892324358477864,0.00012166341048765372,0.00010851060935385334,9.754994174235299e-05,8.622391854380264e-05,7.288843961647722e-05,5.55340492316017e-05,3.397806959565104e-05,1.242208995970038e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0825268461850635e-05,6.430258332080196e-05,9.353103028480285e-05,0.00011526968771427853,0.00012915320002217896,0.00011819253241067862,0.00010540508686392823,9.754994174235299e-05,8.129161811862748e-05,6.156241641792689e-05,3.397806959565104e-05,8.037822915100245e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.064259066832563e-05,6.503329449490199e-05,9.48097748394779e-05,0.00011490433212722852,0.00012805713326102892,0.00011654843226895355,0.00010339563113515315,9.572316380710294e-05,8.037822915100246e-05,6.046634965677686e-05,2.8497735789900872e-05,2.7401669028750838e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7902423765450545e-05,6.22931275920269e-05,9.280031911070283e-05,0.00011234684301787842,0.00012714374429340387,0.00011179880963730342,0.00010083814202580308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620888,5.450407761707e-05,1.4427549957459709e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.879407877450277e-05,0.00011061121634052441,0.00016511529395759443,0.00020968039271508106,0.00020390937273209717,0.0001817871294639923,0.00015613815176184173,0.00011926774631500026,9.746611526817226e-05,7.790876977028241e-05,4.969489429791677e-05,1.9557345497889825e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.366428323407265e-05,0.0001038783596937099,0.0001548557028767342,0.00019845896497039023,0.00023244386042573973,0.00021000100493635793,0.00017697794614483905,0.00015549692731928796,0.0001276036640681992,9.746611526817226e-05,5.322162873196247e-05,7.694693310645176e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.783224211067213e-05,0.00011253488966818571,0.00016639774284270197,0.00021000100493635793,0.0002141689638129574,0.0001942910060937907,0.0001606267228597181,0.0001388250918128901,0.00011542039965967767,8.624468752348135e-05,5.0336118740470534e-05,1.0900815523414001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.687040544684147e-05,0.00011221427744690882,0.00016671835506397884,0.00021160406604274238,0.00022635222822147896,0.00021192467826401925,0.00018210774168526917,0.00015261141732779602,0.00012407692963415347,9.682489082561848e-05,5.7068975387285056e-05,1.3786325514905944e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0397139880887174e-05,0.00011381733855329324,0.00016800080394908638,0.00021320712714912676,0.00021929875935338756,0.0001981383527491133,0.00016864202839164013,0.00013561896960012125,0.00011189366522563197,8.75271364085889e-05,5.322162873196247e-05,1.8274896612782295e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.494673211918018e-05,0.0001070844819064787,0.00016094733508099492,0.00020583304605975846,0.00023276447264701663,0.0002141689638129574,0.00018339019057037672,0.00015581753954056483,0.0001269624396256454,9.714550304689535e-05,5.225979206813183e-05,1.0900815523414001e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.366428323407265e-05,0.00010548142080009432,0.00016030611063844118,0.00020487120939592787,0.00023276447264701663,0.0002135277393704037,0.00018082529280016166,0.0001548557028767342,0.00012728305184692233,9.61836663830647e-05,4.456509875748664e-05,1.6030611063844118e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8855099914919417e-05,0.00010131346192349481,0.00015677937620439547,0.00019942080163422085,0.00023148202376190908,0.00020615365828103536,0.0001766573339235622,0.00015517631509801108,0.00012600060296181478,9.61836663830647e-05,5.482468983834689e-05,9.938978859583354e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.238183434896512e-05 +2620889,7.588317511168378e-05,2.1263966652175124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.253450584655031e-05,0.0001496816476104092,0.00022056153645099295,0.00027476380438790993,0.0002618386481875682,0.0002326528116061514,0.0002038839155473262,0.00016135598224297596,0.00013592261036488417,0.00010840453587383398,6.962906727280875e-05,2.8768896058825172e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.669733853026695e-05,0.00013842425350043416,0.00020305003450214293,0.00025433371878091823,0.0002947769494723101,0.00026684193445866824,0.0002326528116061514,0.00021055496390879293,0.0001755319600110927,0.00013467178879710914,7.42154130213171e-05,1.2508215677750075e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.12836842787753e-05,0.00015260023126855094,0.000223063179586543,0.00027392992334272667,0.0002776823880460517,0.0002489134919872265,0.00021263966652175127,0.0001947112240503095,0.00016052210119779262,0.00012132969207417575,7.338153197613377e-05,1.709456142625844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9615922188408636e-05,0.00015051552865559257,0.0002222292985413597,0.00027726544752346,0.0003014479978337768,0.0002730960422975433,0.00024015774101280142,0.0002097210828636096,0.000172613376352951,0.0001350887293197008,7.83848182472338e-05,2.0430085606991787e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.545308950469201e-05,0.0001555188149266926,0.00022514788219950134,0.0002776823880460517,0.0002826856743171517,0.0002555845403486932,0.0002222292985413597,0.00018804017568884278,0.00015718657701705926,0.00012216357311935908,7.463235354390878e-05,2.6684193445866822e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.711427905285861e-05,0.0001446783613393092,0.0002122227259991596,0.0002672588749812599,0.00030103105731118515,0.00027726544752346,0.00024140856258057642,0.0002138904880895263,0.00017511501948850106,0.00013550566984229246,7.42154130213171e-05,1.709456142625844e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6280398007675283e-05,0.0001446783613393092,0.00021430742861211797,0.0002672588749812599,0.00030061411678859344,0.000276014625955685,0.00023848997892243477,0.0002097210828636096,0.0001755319600110927,0.00013342096722933412,6.295801891134205e-05,4.58634574850836e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.960934964620857e-05,0.0001392581345456175,0.00021055496390879293,0.0002618386481875682,0.0002993632952208184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620890,0.00012296417833992067,3.161936014455103e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.572359861411613e-05,0.00024452305178452796,0.0003653792727814786,0.00046375061545341514,0.00044899491405262464,0.0003955933280307162,0.00034711030914240463,0.0002663052776618854,0.00022344347835482727,0.00017706841680948575,0.00011453234896804041,4.496975665002813e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51838118992658e-05,0.00022765939304076742,0.00033797582732286773,0.0004314286028612074,0.0005052071098651599,0.0004567240909768482,0.0003941880231354029,0.0003464076566947479,0.0002859795461962727,0.00021782225877357378,0.00011945091610163723,1.686365874376055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.291298882348937e-05,0.0002494416189181248,0.0003695951874674188,0.00046304796300575843,0.0004714797923776387,0.0004236994259369838,0.000357650095857255,0.00031549094899785364,0.00026068405808063184,0.00019674268534387306,0.00011734295875866715,2.4592835667984133e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.080503148051929e-05,0.0002480363140228114,0.0003702978399150754,0.00046866918258701187,0.0005087203721034433,0.00046304796300575843,0.0004026198525072832,0.0003442996993517779,0.00028035832661501913,0.0002185249112212305,0.00012718009302586082,2.951140280158096e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.923686085239958e-05,0.000253657533604065,0.0003738111021533589,0.0004700744874823253,0.0004841275364354592,0.0004384551273377743,0.0003794323217346124,0.0003063564671783167,0.00025436018605172163,0.00019744533779152978,0.00011945091610163723,4.145649441174468e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.658911679457917e-05,0.0002367938748603044,0.0003527315287236581,0.0004518055238432514,0.0005122336343417267,0.00047077713992998207,0.0004068357671932232,0.0003520288762760015,0.0002859795461962727,0.00021922756366888715,0.00011874826365398053,2.3890183220327446e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.44811594516091e-05,0.00023538856996499103,0.0003555421385142849,0.000450400218947938,0.00051363893923704,0.0004700744874823253,0.0004033225049549398,0.00034781296159006134,0.00028668219864392934,0.00021711960632591707,9.977664756724992e-05,4.2159146859401375e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.394137273675875e-05,0.00022625408814545405,0.00034781296159006134,0.00044196838957605777,0.0005101256769987567,0.0004525081762909081,0.00039137741334477615,0.00034851561403771806,0.0002838715888533026,0.0002157143014306037,0.00012366683078757736,2.178222587735738e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.026524476566897e-05 +2620891,9.590183023965861e-05,2.299400608085382e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.673870057613669e-05,0.0001923644898959234,0.00029163129663521914,0.0003695865855434796,0.00035893082662796197,0.00030396954380055533,0.0002720022670540025,0.00021143269006053387,0.00017834375448076863,0.00013852486590172907,9.197602432341529e-05,3.645391207940239e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0008747576862406e-05,0.00017722209564755622,0.0002652723140547282,0.00033818013821353295,0.0003953847387073644,0.00034995755596226296,0.0003095778379666172,0.00027480641413703337,0.000229379231391932,0.00017105297206488815,9.309768315662766e-05,1.1777417748730003e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.505621232631812e-05,0.0001974119546453791,0.0002944354437182501,0.0003690257561268735,0.000376316538542754,0.0003280852087146216,0.0002854621730525511,0.0002540557257226044,0.00020862854297750295,0.00016039721314937055,9.590183023965861e-05,1.79465413313981e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.337372407649954e-05,0.0001968511252287729,0.0002955571025514625,0.0003746340502929354,0.00040379717995645735,0.0003606133148777806,0.00032247691454855964,0.00028153636713630767,0.0002288184019753258,0.0001744179485645253,9.982763615590193e-05,2.018985899782286e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.066450649238002e-05,0.00020189858997822868,0.00029948290846770585,0.000373512391459723,0.00039089810337451493,0.0003527617030452939,0.00031069949679982963,0.0002490082609731487,0.00020750688414429054,0.00015703223664973338,9.365851257323385e-05,3.1406447329946675e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.888708874365002e-05,0.0001861953663132553,0.0002781713906366706,0.00035724833837814344,0.0004082838152893068,0.000373512391459723,0.00032696354988140917,0.000288266320135582,0.0002338658667247815,0.00017722209564755622,9.590183023965861e-05,1.7385711914791912e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.832625932704382e-05,0.00018843868397968005,0.0002854621730525511,0.00035668750896153726,0.0004110879623723378,0.0003723907326265106,0.00032472023221498435,0.00028097553771970154,0.000229379231391932,0.0001721746308981005,7.795528890826048e-05,2.2433176664247626e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.935298866134477e-05,0.0001789045838973748,0.0002787322200532768,0.0003527617030452939,0.0004077229858727006,0.0003555658501283249,0.00031126032621643586,0.00028153636713630767,0.000229379231391932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620892,3.065521116311784e-05,6.916114713630242e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1682954237327247e-05,6.29927204998214e-05,9.589099589438687e-05,0.00012112546849817289,0.00011832163820886334,9.981635829942027e-05,8.916180320004392e-05,6.990883521345165e-05,5.81327479983515e-05,4.448744059037832e-05,3.0281367124543223e-05,1.1963009234387445e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9813734044454206e-05,5.794582597906419e-05,8.71056609878836e-05,0.0001115924455145204,0.00013009772542396346,0.00011346166570739344,0.00010093789041514408,9.009641329648045e-05,7.495572973420884e-05,5.5328917709041934e-05,2.9907523085968614e-05,3.364596347171469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.093526616017803e-05,6.392733059625792e-05,9.589099589438687e-05,0.00012112546849817289,0.00012392929878748244,0.00010766708310948701,9.402177570151382e-05,8.299337656356291e-05,6.80396150205786e-05,5.177739934258317e-05,3.121597722097974e-05,5.233816540044507e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.037450010231612e-05,6.37404085769706e-05,9.663868397153607e-05,0.00012262084465247135,0.00013290155571327305,0.00011794779417028875,0.00010579786291661395,9.27133215665027e-05,7.551649579207077e-05,5.663737184405306e-05,3.215058731741626e-05,5.794582597906419e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2617564333763768e-05,6.504886271198173e-05,9.73863720486853e-05,0.00012243392263318402,0.00012991080340467618,0.00011720010609313951,0.00010299403262730442,8.187184444783909e-05,6.729192694342939e-05,5.1029711265433956e-05,3.009444510525592e-05,9.906867022227103e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8879123948017692e-05,6.000196819122453e-05,9.065717935434238e-05,0.0001166393400352776,0.00013495769792543338,0.0001222470006138967,0.00010766708310948701,9.495638579795035e-05,7.757263800423109e-05,5.7758903959776876e-05,3.102905520169244e-05,5.046894520757204e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0093789041514408e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620893,3.201136935457405e-05,7.630617113590326e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2147400890664608e-05,6.40227387091481e-05,9.715078373888171e-05,0.00012376488733018454,0.00012060097291723246,0.00010310638733973269,9.249796842571689e-05,7.072279276010545e-05,5.936992339598326e-05,4.615592790659514e-05,3.0708581066887895e-05,1.191120720170197e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.991404954034549e-05,5.918381078345666e-05,8.840349095013183e-05,0.0001133425810286953,0.0001330705179565142,0.00011818150895438677,0.00010422306301489224,9.138129275055731e-05,7.630617113590326e-05,5.695045943313755e-05,3.108080629194108e-05,3.9083648630584595e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1589063053084824e-05,6.588386483441404e-05,9.845357202656784e-05,0.00012376488733018454,0.00012618435129303025,0.00011092311706584962,9.547577022614236e-05,8.468123869959993e-05,6.923389185989272e-05,5.304209457007909e-05,3.182525674204746e-05,5.955603600850985e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.103072521550504e-05,6.551163960936084e-05,9.882579725162102e-05,0.0001254399008429239,0.00013548998191935993,0.00012134542336733884,0.0001075730900403709,9.324241887582325e-05,7.556172068579689e-05,5.788102249577052e-05,3.3314157642260194e-05,6.7000540509573586e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.345018917835075e-05,6.718665312210019e-05,9.99424729267806e-05,0.0001252537882303973,0.0001306510539936685,0.00011855373417943993,0.00010366472517731249,8.244788734928084e-05,6.867555402231293e-05,5.211153150744612e-05,3.1266918904467676e-05,1.0422306301489226e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.95418243152923e-05,6.197549997135556e-05,9.287019365077006e-05,0.0001198565224671261,0.0001367927702070461,0.0001252537882303973,0.00010924810355311025,9.547577022614236e-05,7.723673419853621e-05,5.881158555840347e-05,3.182525674204746e-05,5.769490988324393e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.93557117027657e-05,6.271995042146194e-05,9.528965761361576e-05,0.00011948429724207288,0.00013809555849473223,0.0001252537882303973,0.00010868976571553051,9.342853148834982e-05,7.649228374842986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620894,9.771485743512937e-05,2.2549582485029855e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.764874745508958e-05,0.00019832068698372415,0.00030123929422309117,0.0003850774855135868,0.00037871734686396294,0.0003243670711308141,0.0002902536001919228,0.0002202920750460609,0.00018328763199370425,0.00014223582798249604,9.424569089897094e-05,3.584805420697055e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.07104143827727e-05,0.00018444402083909035,0.00027811151731536827,0.0003590587364923986,0.00042092553972055736,0.0003740917914824184,0.000323788876708121,0.0002827370726969128,0.00023301235234530853,0.00017461471565330812,9.482388532166403e-05,1.0985694031168392e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.591416418701036e-05,0.00020178985351988258,0.00030297387749117044,0.0003844992910908937,0.0003931722074312898,0.0003463384591931509,0.00029545734999616047,0.0002590311013664968,0.00021104096428297173,0.00016073804950867435,9.598027416705016e-05,1.6767638258099124e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.360138649623807e-05,0.00020005527025180334,0.0003047084607592496,0.0003897030408951314,0.0004226601229886365,0.00037871734686396294,0.00033246179304851714,0.00028562804481037813,0.00023069957465453623,0.00017634929892138733,0.00010176221839398088,1.9658610371564493e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.111791399124802e-05,0.00020525902005604104,0.00030702123845002187,0.0003897030408951314,0.00040993984568938897,0.000371200819368953,0.0003214760990173487,0.0002515145738714869,0.00020872818659219947,0.00015900346624059516,9.482388532166403e-05,3.122249882542595e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.013221996007961e-05,0.00019080415948871418,0.00028851901692384356,0.0003740917914824184,0.0004290202616382604,0.0003908594297405175,0.00033882193169814095,0.000291988183460002,0.00023648151888146698,0.00017924027103485274,9.655846858974324e-05,1.618944383540605e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.83976366920004e-05,0.00019080415948871418,0.0002937227667280812,0.0003735135970597253,0.0004324894281744188,0.0003908594297405175,0.00033708734843006173,0.00028736262807845745,0.00023474693561338774,0.00017461471565330812,7.863444148625797e-05,5.781944226930732e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.97247203516043e-05,0.00018097485430293195,0.00028389346154229897,0.0003654188751420222,0.000426129289524795,0.0003717790137916461,0.000323788876708121,0.0002867844336557644,0.0002318559634999224,0.00017288013238522893,9.94494407032086e-05,1.5611249412712976e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4928470155841966e-05 +2620895,2.7282282847551998e-05,7.090310796538938e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9113011712409307e-05,5.487284007756221e-05,8.123029977773956e-05,0.00010111399744629443,9.648988170942118e-05,8.292580888125974e-05,7.321516583382598e-05,5.90345442407481e-05,5.0711135914376314e-05,3.976739533710969e-05,2.6203322508948248e-05,1.0789603386037513e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.741750260888913e-05,5.0094587149459876e-05,7.36775774075133e-05,9.23281775462353e-05,0.0001068170735217714,9.587333294450477e-05,8.539200394092547e-05,7.78392815706992e-05,6.566244346359973e-05,4.9015626810856126e-05,2.6819871273864676e-05,4.00756697195679e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8650600138721988e-05,5.579766322493686e-05,8.230926011634331e-05,0.00010095986025506528,0.00010142227182875263,8.955370810411137e-05,7.860996752684474e-05,7.198206830399312e-05,6.011350457935186e-05,4.593288298627398e-05,2.7590557230010207e-05,5.70307607547697e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8188188565034663e-05,5.5489388842478646e-05,8.215512292511421e-05,0.00010219295778489815,0.00011051636611126995,9.864780238662869e-05,8.878302214796583e-05,7.968892786544848e-05,6.581658065482882e-05,4.994044995823077e-05,2.8669517568613963e-05,6.473762031622508e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.019197205101306e-05,5.764730951968614e-05,8.338822045494706e-05,0.00010219295778489815,0.00010558397599193852,9.4794372605901e-05,8.492959236723813e-05,7.105724515661847e-05,5.9959367388122745e-05,4.531633422135756e-05,2.7282282847551998e-05,9.402368664975547e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6955091035201807e-05,5.302319378281292e-05,7.78392815706992e-05,9.818539081294136e-05,0.00011097877768495729,0.00010142227182875263,8.986198248656957e-05,8.123029977773956e-05,6.674140380220348e-05,5.0402861531918095e-05,2.7590557230010207e-05,5.548938884247864e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.68009538439727e-05,5.348560535650023e-05,7.922651629176118e-05,9.787711643048316e-05,0.00011082464049372819,0.00010065158587260708,8.862888495673671e-05,7.922651629176118e-05,6.566244346359973e-05,4.9323901193314345e-05,2.265816711067878e-05,1.387234721061966e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620896,2.3644632508454672e-05,5.911158127113668e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6633724032110557e-05,4.7839140191524575e-05,7.175871028728687e-05,9.004205984324309e-05,8.63304024145903e-05,7.244605425555589e-05,6.584755216017318e-05,5.1688266413831145e-05,4.453988914383322e-05,3.450466720710536e-05,2.2819819746531834e-05,9.210409174805019e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5259036095572495e-05,4.3715076381910376e-05,6.41979266363275e-05,8.096911946209187e-05,9.416612365285727e-05,8.413090171612943e-05,7.533289892228581e-05,6.873439682690311e-05,5.801183092190623e-05,4.2890263619987545e-05,2.336969492114706e-05,3.1617822540375436e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6358786444802945e-05,4.935129692171644e-05,7.327086701747873e-05,9.01795286368969e-05,9.072940381151212e-05,7.94569627319e-05,6.997161596978738e-05,6.309817628709706e-05,5.2925485556715405e-05,4.0278356540565236e-05,2.4331976476723703e-05,4.673938984229412e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.608384885749533e-05,4.907635933440883e-05,7.28584606365173e-05,9.100434139881975e-05,9.815271866881766e-05,8.729268397016697e-05,7.931949393824621e-05,7.107136631901781e-05,5.8286768509213844e-05,4.3715076381910376e-05,2.5019320444992737e-05,5.086345365190831e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7733474381341003e-05,5.100092244556212e-05,7.437061736670917e-05,9.141674777978115e-05,9.457853003381869e-05,8.523065206535987e-05,7.657011806517009e-05,6.323564508075086e-05,5.333789193767682e-05,3.972848136595e-05,2.3782101302108477e-05,7.973190031920763e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.470916092095727e-05,4.6464452254986506e-05,6.832199044594172e-05,8.701774638285936e-05,9.884006263708669e-05,9.03169974305507e-05,8.028177549382286e-05,7.244605425555589e-05,5.924905006479049e-05,4.453988914383322e-05,2.4469445270377507e-05,4.536470190575606e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.470916092095727e-05,4.7289265016909345e-05,7.05214911444026e-05,8.688027758920552e-05,9.91150002243943e-05,8.949218466862787e-05,7.90445563509386e-05,6.983414717613357e-05,5.7874362128252435e-05,4.330267000094897e-05,1.9658037492494292e-05,9.622815555766437e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2372191428842565e-05,4.4952295524794644e-05,6.914680320786454e-05,8.536812085901369e-05,9.829018746247146e-05,8.550558965266749e-05,7.643264927151625e-05,7.065895993805641e-05,5.8286768509213844e-05,4.302773241364136e-05,2.460691406403131e-05,3.9865950159603815e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3471941778073011e-05 +2620897,5.7144553665773595e-05,1.1809874424259878e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2667933403777627e-05,0.00012762283652022774,0.00019200570031699927,0.0002400071253962491,0.0002346736337207769,0.00020572039319678498,0.00018133871696605493,0.00014248042047332885,0.00011733681686038846,8.762164895418619e-05,6.0954190576825174e-05,2.3619748848519756e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1144078639356994e-05,0.00011924163531591425,0.00017943389851052914,0.00022781628728088413,0.0002624839831714534,0.00023086399680972533,0.00020114882890352308,0.00018286257173047554,0.000150099694295432,0.00010857465196496985,5.790648104798392e-05,4.571564293261888e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.000118756604153e-05,0.0001268609091380174,0.00018971991817036833,0.00023886423432293365,0.0002438167623073007,0.00021105388487225717,0.00018933895447926323,0.00016571920563074343,0.00013600403772454116,0.00010019345076065639,6.0192263194614854e-05,8.38120120431346e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.000118756604153e-05,0.00012838476390243805,0.00019391051877252512,0.00024343579861619557,0.0002640078379358741,0.00023276881526525115,0.00020876810272562623,0.00018629124495042195,0.00015238547644206297,0.00011086043411160081,6.209708165014065e-05,8.762164895418619e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.381082447709309e-05,0.0001295276549757535,0.00019391051877252512,0.0002438167623073007,0.0002655316927002947,0.00023657845217630276,0.00020800617534341595,0.00016495727824853315,0.00013371825557791022,0.00010133634183397187,5.8287444739089075e-05,1.828625717304755e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7334441728305415e-05,0.00011924163531591425,0.00018171968065716003,0.00023124496050083053,0.0002720080754490823,0.00024038808908735435,0.00021562544916551904,0.00019086280924368384,0.0001580999318086403,0.00011390814364044206,6.0954190576825174e-05,7.619273822103147e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.581058696388478e-05,0.00012000356269812456,0.00018438642649489618,0.00023429267002967176,0.000271246148066872,0.00024115001646956462,0.00021410159440109843,0.00018591028125931677,0.00015200451275095779,0.00010819368827386469,4.7620461388144665e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0096131597307427e-05,0.00011428910733154719,0.0001786719711283188,0.00022667339620756864,0.00026362687424476885,0.00023543556110298722,0.0002045775021234695,0.00018324353542158072,0.00014971873060432684,0.0001062888698183389,6.171611795903549e-05,7.23831013099799e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314384112614869e-05 +2620898,2.382263980431059e-05,5.03940457398878e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7103433705658883e-05,5.085217342843222e-05,7.71181609049798e-05,9.788661611899415e-05,9.69703607419053e-05,8.276840239702781e-05,7.31477209375947e-05,5.680783337950987e-05,4.6729024231532314e-05,3.5123122788406635e-05,2.4128058263340208e-05,9.315263000403502e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.572905064002558e-05,4.733986114959156e-05,7.17733378719614e-05,9.254179308597575e-05,0.0001078127160374569,9.361075769257943e-05,8.276840239702781e-05,7.238417479002062e-05,5.894576259271723e-05,4.3674839641236085e-05,2.3517221345280966e-05,2.1379292132073603e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6187178328570016e-05,5.039404573988779e-05,7.60491962983761e-05,9.71230699714201e-05,0.0001000245453322015,8.78078069710166e-05,7.620190552789094e-05,6.627580560942818e-05,5.3753648789213636e-05,4.016252736239542e-05,2.4128058263340208e-05,3.6650215083554753e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5881759869540394e-05,5.069946419891741e-05,7.72708701344946e-05,9.880287149608303e-05,0.00010811813449648652,9.544326844675719e-05,8.383736700363151e-05,7.299501170807989e-05,5.955659951077647e-05,4.413296732978051e-05,2.5044313640429088e-05,4.12314919689991e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7561561394203318e-05,5.115759188746185e-05,7.71181609049798e-05,9.880287149608303e-05,0.00010689646066036802,9.559597767627198e-05,8.307382085605745e-05,6.429058562573563e-05,5.2379265723580334e-05,4.000981813288061e-05,2.3364512115766157e-05,7.482752246225762e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4812795262936712e-05,4.733986114959156e-05,7.268959324905028e-05,9.391617615160905e-05,0.00011056148216872351,9.880287149608303e-05,8.673884236441292e-05,7.513294092128724e-05,6.12364010354394e-05,4.535464116589902e-05,2.39753490338254e-05,3.512312278840664e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4354667574392277e-05,4.749257037910638e-05,7.391126708516876e-05,9.498514075821276e-05,0.00011101960985726795,9.910828995511264e-05,8.658613313489811e-05,7.391126708516876e-05,5.970930874029129e-05,4.336942118220646e-05,1.9394072148381054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2064029131670104e-05,4.520193193638419e-05,7.162062864244658e-05,9.299992077452018e-05,0.00010735458834891245,9.605410536481641e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620899,3.324406402881177e-05,6.830972060714747e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5729994762025544e-05,7.514069266786222e-05,0.00011339413620786478,0.00013889643190119984,0.00013206545984048508,0.00011703732130691267,0.0001058800669410786,8.333785914071992e-05,6.899281781321894e-05,5.1232290455360596e-05,3.50656565783357e-05,1.4117342258810478e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4819198487263583e-05,6.99036140879809e-05,0.00010474157159762612,0.00013138236263441364,0.0001480043946488195,0.00013047156635965167,0.00011794811758167465,0.00010952325204012646,9.039653027012517e-05,6.46665355080996e-05,3.438255937226423e-05,2.96008789297639e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3908402212501615e-05,7.491299359917173e-05,0.00011225564086441233,0.00013957952910727132,0.0001402626263133428,0.00012295749709286544,0.00011111714552095989,9.882139581167335e-05,8.151626659119596e-05,5.988485506559928e-05,3.574875378440717e-05,5.009379511190814e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.368070314381112e-05,7.673458614869566e-05,0.00011521572875738872,0.00014231191793155726,0.00015210297788524835,0.00013593634400822349,0.00012455139057369888,0.00011202794179572184,9.244582188833957e-05,6.648812805762354e-05,3.7114948196550123e-05,5.464777648571797e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.664079103678751e-05,7.764538242345763e-05,0.00011544342782607924,0.00014253961700024773,0.00015278607509131985,0.0001377579365577474,0.00012113590454334153,9.927679394905433e-05,8.128856752250548e-05,6.102335040905174e-05,3.483795750964521e-05,1.0929555297143594e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.231450873166817e-05,7.081441036274288e-05,0.00010724626135322153,0.000134797848664771,0.00015688465832774872,0.00013935183003858085,0.00012773917753536578,0.00011339413620786478,9.586130791869695e-05,6.808202153845699e-05,3.665955005916914e-05,4.781680442500323e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1403712456906207e-05,7.126980850012386e-05,0.00010997865017750742,0.0001373025384203664,0.00015597386205298673,0.00013935183003858085,0.00012568988591715133,0.00011043404831488842,9.153502561357762e-05,6.489423457679009e-05,2.8690082655001934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8215925495239325e-05,6.830972060714747e-05,0.00010610776600976908,0.00013297625611524707,0.00015301377416001034,0.0001377579365577474,0.00012204670081810348,0.0001108894464522694,9.039653027012517e-05,6.352804016464715e-05,3.597645285309767e-05,3.870884167738356e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9809818976072766e-05 +2620900,5.869082096232435e-05,1.2911980611711358e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.460502393136651e-05,0.00012990235039661124,0.00019602734201416337,0.0002418061823647763,0.00022967674603256263,0.0002034615126693911,0.00017959391214471254,0.00014516196384681558,0.00012051181904263933,8.842750358323535e-05,6.142972594056615e-05,2.5041416943925054e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.225739109287353e-05,0.00011933800262339285,0.00017842009572546604,0.00022537275249532551,0.00025589197939573417,0.00022537275249532551,0.00019994006341165162,0.00018702808279994027,0.00015572631162003397,0.00011190383196816511,5.9864637381570844e-05,5.869082096232436e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.186611895312471e-05,0.00012951107825686243,0.0001932884370359215,0.00024141491022502753,0.000244936359482767,0.00021363458830286067,0.0001901582599179309,0.00016981210865099183,0.0001412492424493273,0.00010446966131293736,6.33860866393103e-05,9.781803493720728e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1474846813375873e-05,0.00013029362253636008,0.00019641861415391212,0.000244936359482767,0.0002641086943304596,0.00023398073956979978,0.00021363458830286067,0.00019250589275642387,0.00015924776087777341,0.00011503400908615573,6.495117519830562e-05,1.0173075633469554e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.617011249036183e-05,0.0001322499832351042,0.00019680988629366099,0.000244936359482767,0.0002629348779112131,0.00023711091668779038,0.00020854805048612588,0.00017059465293048947,0.00013890160961083428,0.00010564347773218383,6.103845380081733e-05,1.9563606987441455e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8344669695385245e-05,0.00012051181904263933,0.00018350663354220083,0.0002320243788710556,0.00027115159284593854,0.00023984982166603218,0.00021872112611959546,0.00019407098131541921,0.00016511684297400582,0.00011816418620414637,6.33860866393103e-05,8.999259214223067e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.717085327613876e-05,0.00012168563546188584,0.0001882018992191868,0.00023593710026854388,0.000269977776426692,0.0002406323659455298,0.0002175473097003489,0.00019133207633717741,0.00015846521659827577,0.00011307764838741157,5.0474106027598944e-05,3.9127213974882897e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.130177117990632e-05,0.00011620782550540224,0.0001815502728434567,0.00022928547389281385,0.0002644999664702084,0.0002355458281287951,0.00020815677834637707,0.00019094080419742858,0.00015729140017902926,0.0001107300155489186,6.33860866393103e-05,8.21671493472541e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.482322043764578e-05 +2620901,3.1560769914979714e-05,7.403143560303885e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2988708950417327e-05,6.701793117748779e-05,0.00010091653590098454,0.00012507416225566035,0.0001190347556669914,0.00010189063373786662,9.156519666691646e-05,7.403143560303884e-05,6.175780285832451e-05,4.617223746821106e-05,3.1560769914979714e-05,1.285809144684359e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1430152411405982e-05,6.0978524588818834e-05,9.059109883003438e-05,0.00011416426648258096,0.0001309187492769529,0.00011494354475208663,0.00010208545330524304,9.565640758182125e-05,8.026566175908421e-05,5.8445870212925394e-05,3.13659503476033e-05,3.7015717801519424e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2209430680911653e-05,6.79920290143699e-05,0.00010072171633360809,0.00012468452312090753,0.00012624307965991886,0.0001094885968655469,9.682532498607976e-05,8.688952704988243e-05,7.286251819878034e-05,5.493911800014988e-05,3.3314146021367476e-05,5.649767453916122e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1430152411405982e-05,6.701793117748779e-05,0.00010052689676623169,0.00012526898182303677,0.00013578923846136335,0.0001203984926386263,0.00011007305556767615,9.916315979459676e-05,8.162939873071914e-05,5.9809607184560324e-05,3.3898604723496734e-05,6.0394065886689586e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.396280678729941e-05,6.916094641862839e-05,0.00010228027287261944,0.00012624307965991886,0.0001330617645180935,0.0001203984926386263,0.00010656630335490064,8.786362488676452e-05,7.24728790640275e-05,5.474429843277345e-05,3.214522861710897e-05,1.0520256638326573e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9871595872394636e-05,6.351117896471228e-05,9.487712931231557e-05,0.00012000885350387347,0.00013832189283725677,0.00012351560571664902,0.0001114367925393111,9.994243806410243e-05,8.377241397185973e-05,6.117334415619525e-05,3.311932645399106e-05,5.454947886539704e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.967677630501822e-05,6.429045723421795e-05,9.760460325558541e-05,0.00012078813177337916,0.00013812707326988036,0.0001223466883123905,0.00010987823600029975,9.702014455345615e-05,8.12397595959663e-05,5.903032891505465e-05,2.649546116319285e-05,7.792782695056718e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6364843659619112e-05,6.039406588668958e-05,9.40978510428099e-05,0.00011825547739748573,0.00013578923846136335,0.00011883993609961497,0.0001059818446527714,9.877352065984393e-05,8.143457916334273e-05,5.825105064554899e-05,3.3314146021367476e-05,4.870489184410451e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.831303933338329e-05 +2620902,2.3357487215440898e-05,5.063511214536138e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8457315072341406e-05,5.406523264553103e-05,8.150619664688817e-05,9.914681636204632e-05,9.261325350458034e-05,8.23228920040714e-05,7.497263378942219e-05,5.9455422002940465e-05,4.981841678817814e-05,3.658795200180952e-05,2.4990877929807394e-05,1.0127022429072276e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7967297858031462e-05,5.014509493105143e-05,7.480929471798554e-05,9.326660979032695e-05,0.00010372031036227252,9.195989721883375e-05,8.379294364700126e-05,7.889277150390177e-05,6.566230671753315e-05,4.6714974430881796e-05,2.4990877929807394e-05,2.286747000113095e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7150602500848214e-05,5.390189357409438e-05,8.052616221826826e-05,9.980017264779293e-05,9.980017264779293e-05,8.803975950435415e-05,7.938278871821172e-05,7.154251328925256e-05,5.912874386006717e-05,4.328485393071215e-05,2.6134251429863943e-05,3.920137714479591e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.698726342941156e-05,5.504526707415093e-05,8.26495701469447e-05,0.00010159690243359608,0.00010813046529106206,9.686006936193322e-05,8.950981114728401e-05,8.117951850401487e-05,6.74590365033363e-05,4.818502607381165e-05,2.695094678704719e-05,4.083476785916241e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9274010429524657e-05,5.586196243133418e-05,8.26495701469447e-05,0.00010159690243359608,0.00010813046529106206,9.816678193342642e-05,8.624302971855102e-05,7.186919143212585e-05,5.896540478863052e-05,4.4428227430768705e-05,2.548089514411734e-05,8.00361450039583e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.600722900079166e-05,5.063511214536139e-05,7.693270264666199e-05,9.63700521476233e-05,0.0001115605857912317,9.914681636204632e-05,9.179655814739709e-05,8.166953571832481e-05,6.990912257488606e-05,4.949173864530483e-05,2.6624268644173894e-05,3.5934595716062913e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5353872715045064e-05,5.1125129359671334e-05,7.889277150390177e-05,0.0,0.0,0.0,0.0,0.0,0.0,8.330292643269131e-06,2.10707402153278e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533562857465984e-07,1.9600688572397955e-06,1.4700516429298465e-06,9.800344286198978e-07,6.533562857465984e-07,3.266781428732992e-07,1.633390714366496e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.633390714366496e-07 +2620903,2.8980506507024464e-05,8.445747610618557e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.086596468505761e-05,5.7132998542419657e-05,8.429187321185974e-05,0.00010283939737635541,9.538726713169194e-05,8.495428478916315e-05,7.733655165017386e-05,6.143867379489187e-05,5.3986543550228435e-05,4.057270910983425e-05,2.6827668880788362e-05,1.142659970848393e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.904433284747322e-05,5.2330514606969886e-05,7.369328797500506e-05,8.992237161893874e-05,0.0001031706031650071,9.34000323997817e-05,8.760393109837679e-05,8.462307900051143e-05,7.220286192607238e-05,5.3655337761576724e-05,2.9477315190002024e-05,5.464895512753185e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.036915600208005e-05,6.027945353461089e-05,8.661031373242169e-05,0.00010482663210826565,0.0001038330147423105,9.207520924517486e-05,8.362946163455631e-05,7.89925805934324e-05,6.607555483601579e-05,4.9515265403430376e-05,3.0470932555957154e-05,7.452130244663435e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0037950213428345e-05,5.961704195730748e-05,8.627910794376998e-05,0.00010515783789691736,0.00011542521734512032,0.0001031706031650071,9.356563529410755e-05,8.743832820405096e-05,7.28652735033758e-05,5.564257249348698e-05,3.163015281623813e-05,7.948938927640995e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.185958205101274e-05,6.193548247786942e-05,8.843194557000609e-05,0.00010731067552315345,0.00010466102921393977,9.538726713169194e-05,8.644471083809584e-05,7.849577191045483e-05,6.657236351899335e-05,5.05088827693855e-05,3.0470932555957154e-05,1.0432982342528805e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8381921270169803e-05,5.4980160916183555e-05,7.833016901612898e-05,9.91961337011866e-05,0.00011277557103590662,0.00010432982342528807,9.389684108275926e-05,8.79351368870285e-05,7.253406771472411e-05,5.4814558021857706e-05,3.129894702758643e-05,7.286527350337579e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8381921270169803e-05,5.829221880270063e-05,8.379506452888216e-05,0.0001016801771160744,0.00011277557103590662,0.0001035018089536588,9.290322371680414e-05,8.743832820405096e-05,7.236846482039823e-05,5.4483352233206e-05,2.5668448620507387e-05,2.649646309213665e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.573227496095614e-05,5.547696959916113e-05,8.23046384799495e-05,9.754010475792804e-05,0.00010996032183236711,0.0001001897510671417,9.075038609056804e-05,8.611350504944413e-05,7.220286192607238e-05,5.4317749338880146e-05,3.080213834460886e-05,5.796101301404893e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7057098115562973e-05 +2620904,2.3829091827218814e-05,4.765818365443764e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.857025776879811e-05,5.505341904909176e-05,8.167626646984658e-05,9.663107582348045e-05,8.594906914231339e-05,7.921118800496187e-05,7.198029117463341e-05,5.850452889993033e-05,4.913723073336847e-05,3.5004114201362816e-05,2.2678721876939286e-05,8.874282473584938e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8405919204472467e-05,4.897289216904281e-05,7.082992122435388e-05,8.594906914231339e-05,9.33443045369675e-05,8.430568349905693e-05,7.937552656928751e-05,7.871817231198491e-05,6.770748850216657e-05,4.749384509011198e-05,2.4979461777498353e-05,2.4650784648847053e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.791290351149553e-05,5.620378899937129e-05,8.134758934119529e-05,9.811012290241126e-05,9.548070587320093e-05,8.578473057798776e-05,7.8225156619008e-05,7.198029117463341e-05,6.0640930236163756e-05,4.4535750932250335e-05,2.6622847420754818e-05,3.9441255438155285e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7091210689867286e-05,5.52177576134174e-05,8.266229785580045e-05,9.975350854566775e-05,0.00010780609819762446,9.876747715971385e-05,9.235827315101362e-05,8.529171488501081e-05,7.165161404598212e-05,5.094495494095058e-05,2.7937555935359997e-05,4.437141236792469e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9556289154752e-05,5.735415894965082e-05,8.348399067742868e-05,9.958916998134208e-05,0.00010123255562459856,9.498769018022396e-05,8.644208483529035e-05,7.707478666872845e-05,6.491373290863057e-05,4.732950652578634e-05,2.6129831727777874e-05,7.230896830328468e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6105179303913408e-05,5.193098632690445e-05,7.740346379737975e-05,9.482335161589833e-05,0.0001058340354257167,9.893181572403951e-05,9.235827315101362e-05,8.463436062770821e-05,7.181595261030775e-05,5.061627781229928e-05,2.711586311373176e-05,3.7797869794898816e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5776502175262114e-05,5.3245694841509636e-05,8.052589651956703e-05,9.548070587320093e-05,0.00010435498834678588,9.695975295213175e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.930156929769411e-07,6.57354257302588e-07,1.64338564325647e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620905,8.291647628554291e-05,1.829880855956809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.747685656340734e-05,0.000200143218620276,0.0002870625592782244,0.00034424633602687477,0.00030021482793041404,0.00027676947946346747,0.0002538959687640073,0.00019899954308530302,0.00017326684354841037,0.00012523247107954416,8.005728744811041e-05,3.2022914979244165e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.633318102843434e-05,0.00017669787015332937,0.0002504649421590883,0.0002996429901629276,0.0003333814184446312,0.000297927476860468,0.0002813441816033594,0.0002744821283935214,0.00024017186234433124,0.0001698358169434914,8.977852949538095e-05,9.721242047270552e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.576134326094782e-05,0.00020471792076016802,0.000289921748115657,0.0003459618493293342,0.00033395325621211777,0.00029907115239544103,0.00027505396616100795,0.0002493212666241153,0.00021615467610989813,0.00015611171052381533,9.606874493773249e-05,1.5439619722135577e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.17584788885423e-05,0.00019785586755033,0.00029163726141811646,0.00035168022700419923,0.0003819876286809839,0.0003505365514692263,0.00031851363648998217,0.000297927476860468,0.0002521804554615477,0.00018184441006070793,9.8927933775165e-05,1.6583295257108585e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.976420763335336e-05,0.00020643343406262756,0.000295640125790522,0.0003556830913766049,0.0003551112536091184,0.0003265193652347932,0.00030536136783779254,0.0002721947773235754,0.0002355971602044392,0.00016926397917600485,9.549690717024598e-05,2.6304537304379135e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.832745228362329e-05,0.000188706463270546,0.0002744821283935214,0.0003356687695145772,0.00037569741323863247,0.0003528239025391723,0.0003265193652347932,0.00029678380132549506,0.0002481775910891423,0.0001801288967582484,9.83560960076785e-05,1.4295944187162574e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7183776748650295e-05,0.000194424840945411,0.00028363153267330543,0.0003368124450495502,0.0003631169823539294,0.00034081530942195573,0.00031222342104763066,0.00028477520820827844,0.0002390281868093582,0.0001675484658735454,7.662626084319139e-05,3.4310266049190174e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8034372468866244e-05,0.00018298808559568094,0.0002756258039284944,0.00033052222960719863,0.00036826352226130784,0.00034481817379436127,0.0003162262854200361,0.0002882062348131974,0.00024360288894925025,0.0001709794924784644,9.035036726286744e-05,6.290215442351531e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.318091237624477e-05 +2620906,5.34695644402684e-05,1.2818046269927353e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4313817104606e-05,0.00012927915237955303,0.0001853123260738069,0.00021900547626904453,0.00019117200436863087,0.00017652280863157102,0.00015747885417339322,0.00012451816376500858,0.00010913650824109577,7.837319719327013e-05,5.1638414973135914e-05,2.124133381873676e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.248266763747352e-05,0.00011353126696221372,0.00015967623353395222,0.00019007331468835138,0.0002113146485070881,0.00019263692394233683,0.00018018510756583596,0.00017176182001702657,0.00015235163566542227,0.00010840404845424278,5.7864323161386337e-05,7.324597868529917e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.211643774404702e-05,0.0001311103018466855,0.00018421363639352741,0.0002212028556296035,0.0002138782577610736,0.00019117200436863087,0.0001783539580987035,0.00016114115310765818,0.00013806866982178894,9.998076090543338e-05,6.15266220956513e-05,1.0986896802794877e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.101774806376754e-05,0.0001289129224861265,0.00018750970543436585,0.00022340023499016246,0.0002450077987023257,0.000222301545309883,0.00019666545277002829,0.00018604478586065987,0.0001593100036405257,0.00011499618653591968,6.335777156278378e-05,1.1719356589647866e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5412506784885485e-05,0.0001325752214203915,0.00018934085490149833,0.00022742876381785397,0.00022486515456386844,0.00020582120010569066,0.00019190446415548386,0.00017102936023017358,0.00014795687694430431,0.00010767158866738978,6.11603922022248e-05,1.7579034884471802e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.845413880978207e-05,0.0001223207844044496,0.00017652280863157102,0.00021424448765450008,0.0002406130399812078,0.00022449892467044194,0.00020728611967939662,0.0001864110157540864,0.00015711262427996672,0.00011389749685564022,6.26253117759308e-05,1.0254437015941884e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7355449129502575e-05,0.0001252506235518616,0.00018055133745926242,0.00021570940722820606,0.00023072483285869238,0.0002138782577610736,0.00019813037234373427,0.00018018510756583596,0.00015125294598514278,0.00010840404845424278,4.9441035612576944e-05,3.2960690408384623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.149577083467865e-05,0.00011902471536361114,0.00017579034884471803,0.00020984972893338215,0.00022852745349813343,0.00021644186701505905,0.0001955667630897488,0.0001776214983118505,0.00015418278513255478,0.00010913650824109577,5.823055305481284e-05,5.493448401397438e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.479183987551711e-05 +2620907,2.2317146091845852e-05,5.465423532696943e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8369895762675843e-05,5.343969676414789e-05,7.636411213740451e-05,9.124220953196841e-05,8.076681442763263e-05,7.393503501176144e-05,6.695143827553756e-05,5.2376975521679036e-05,4.6152465387218645e-05,3.355162779794513e-05,2.2165328771493163e-05,9.109039221161573e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7762626481265065e-05,4.767063859074556e-05,6.740689023659563e-05,8.046317978692721e-05,8.972403632844149e-05,8.152590102939608e-05,7.545320821528838e-05,7.24168618082345e-05,6.361145722777831e-05,4.524156146510248e-05,2.429077125643086e-05,3.0363464070538577e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7610809160912372e-05,5.4046966045558656e-05,7.681956409846259e-05,9.184947881337917e-05,8.91167670470307e-05,7.92486412241057e-05,7.347958305070337e-05,6.695143827553756e-05,5.738694709331791e-05,4.174976309699054e-05,2.580894445995779e-05,4.554519610580787e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.70035398795016e-05,5.2984244803089813e-05,7.742683337987337e-05,9.321583469655342e-05,0.00010156578731595152,9.139402685232112e-05,8.304407423292299e-05,7.788228534093145e-05,6.649598631447949e-05,4.782245591109825e-05,2.6264396421015864e-05,4.7063369309334795e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.897716504408661e-05,5.4806052647322134e-05,7.848955462234221e-05,9.488582522043305e-05,9.473400790008036e-05,8.592860331962415e-05,8.031136246657452e-05,7.05950539640022e-05,6.133419742248792e-05,4.4482474863339025e-05,2.5657127139605093e-05,7.590866017634644e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5940818637032755e-05,5.009971571638865e-05,7.272049644893988e-05,8.896494972667805e-05,0.00010065488339383538,9.291220005584805e-05,8.577678599927146e-05,7.773046802057874e-05,6.512963043130524e-05,4.7518821270392873e-05,2.6264396421015864e-05,4.2508849698754e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5485366675974674e-05,5.1466071599562886e-05,7.454230429317221e-05,8.95722190080888e-05,9.670763306466537e-05,9.002767096914687e-05,8.24368049515122e-05,7.545320821528838e-05,6.270055330566216e-05,4.508974414474979e-05,2.0798972888318924e-05,1.3663558831742359e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620908,3.6011268225823826e-05,8.459022737609623e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9002363671804423e-05,8.483191374002794e-05,0.0001225349865133737,0.00014791205472620256,0.00013147738197884673,0.00012011812287405666,0.0001094839228610617,8.410685464823282e-05,7.419771372703298e-05,5.413774552070159e-05,3.528620913402872e-05,1.4501181835902212e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.803561821607761e-05,7.51644591827598e-05,0.00010730874558567637,0.00012906051833952968,0.00014452844563115873,0.000128818831975598,0.00012084318196585175,0.00011625114105114942,0.00010223333194311057,7.226422281557937e-05,3.866981822907256e-05,4.5920409147023676e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.827730458000931e-05,8.700709101541328e-05,0.00012446847742482732,0.00014863711381799764,0.000144286759267227,0.00012785208651987115,0.00011770125923473964,0.00010682537285781297,9.184081829404734e-05,6.718880917301357e-05,4.1570054596253005e-05,7.008904554019402e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7068872760350795e-05,8.483191374002794e-05,0.00012446847742482732,0.00015129566382124642,0.0001631382956538999,0.0001464619365426123,0.00013534436380175396,0.00012591859560841755,0.00010658368649388124,7.685626373028171e-05,4.205342732411641e-05,7.250590917951106e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0210795491462938e-05,8.84572091990035e-05,0.00012688534106414432,0.00015322915473270002,0.00015298746836876835,0.00014017809108038802,0.0001305106365231199,0.00011310921832003724,9.884972284806675e-05,7.105579099592084e-05,4.1086681868389605e-05,1.1842631832653473e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4893695484965463e-05,7.975650009746217e-05,0.0001160094546872177,0.0001435617001754319,0.00016192986383424136,0.0001496038592737245,0.0001387279728967978,0.00012543522288055415,0.00010416682285456422,7.661457736635001e-05,4.229511368804811e-05,6.525531826155995e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4893695484965463e-05,8.28984228285743e-05,0.00012060149560192006,0.0001440450729032953,0.0001563710774638122,0.0001462202501786806,0.00013341087289030034,0.00012084318196585175,0.00010126658648738378,7.226422281557937e-05,3.3111031858643384e-05,1.933490911453628e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0785027298126502e-05,7.830638191387194e-05,0.00011818463196260302,0.00014138652290004655,0.00015878794110312923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620909,3.3366000517405514e-05,7.291907397843589e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6295060010405673e-05,7.755937868615454e-05,0.00011291408122115375,0.00013722043921396575,0.00012153178996405982,0.00011026247853102882,0.00010142380289727901,7.711744490446705e-05,6.805780237987348e-05,5.015948422153014e-05,3.204019917234304e-05,1.2816079668937218e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5411192447030687e-05,6.827876927071724e-05,9.810929953462283e-05,0.00011777535281971615,0.00013235916761540333,0.00011556568391127869,0.00011004151164018507,0.0001067270082775289,9.368996171774794e-05,6.584813347143605e-05,3.513373564415547e-05,3.977404035187412e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6074093119561925e-05,8.087388204881072e-05,0.00011578665080212246,0.00013677850543227825,0.0001332430351787783,0.00011755438592887242,0.00010761087584090389,9.744639886209159e-05,8.396741852062315e-05,6.187072943624863e-05,3.800630522512416e-05,6.187072943624864e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4748291774499456e-05,7.822227935868577e-05,0.00011512375012959122,0.0001398720419040907,0.00014871071753784046,0.00013412690274215328,0.00012573016089009097,0.00011600761769296618,9.722543197124785e-05,7.00465043974672e-05,3.8669205897655396e-05,6.408039834468609e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7841828246311884e-05,8.197871650302944e-05,0.00011755438592887242,0.00014031397568577817,0.0001405349425766219,0.00012992853181612214,0.00012086888929152857,0.00010407540558740396,9.125932591846672e-05,6.474329901721733e-05,3.734340455259293e-05,1.038544386965602e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2538622866062005e-05,7.380294154181088e-05,0.0001067270082775289,0.00013258013450624708,0.00014738491619277797,0.00013788333988649695,0.00012749789601684095,0.00011622858458380995,9.567866373534165e-05,7.070940506999843e-05,3.8669205897655396e-05,5.745139161937373e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.298055664774949e-05,7.667551112277955e-05,0.00011203021365777878,0.00013191723383371585,0.00014384944593927808,0.0001356736709780595,0.00012329952509080978,0.00011026247853102882,9.346899482690417e-05,6.60691003622798e-05,3.0272464045593083e-05,1.3258013450624706e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9224119503405826e-05,7.20352064150609e-05,0.00010959957785849759,0.00013103336627034084,0.00014716394930193428,0.00013346400206962206,0.00012219469063659105,0.00011401891567537249,9.612059751702912e-05,6.739490170734226e-05,3.601760320753045e-05,3.093536471812432e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620910,2.7307647510331128e-05,5.649858105585751e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1657789404745378e-05,6.384339659311899e-05,9.32226587421649e-05,0.00011243217630115644,0.00010019081707238733,8.907942946473535e-05,8.342957135914959e-05,6.572668262831424e-05,5.668690965937703e-05,4.14322927742955e-05,2.655433309625303e-05,1.0546401797093401e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.128113219770633e-05,5.687523826289657e-05,8.173461392747387e-05,9.830753103719208e-05,0.00010904226143780499,9.69892308125554e-05,9.058605829289155e-05,8.87027722576963e-05,7.702639883948575e-05,5.386198060658416e-05,2.8625947734967807e-05,2.8249290527928755e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.128113219770633e-05,6.591501123183376e-05,9.472928757032108e-05,0.00011224384769763693,0.0001097955758518831,9.69892308125554e-05,8.889110086121581e-05,8.11696281169153e-05,6.930492609518521e-05,5.103705155379128e-05,3.088589097720211e-05,4.708215087988126e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.052781778362823e-05,6.459671100719709e-05,9.49176161738406e-05,0.00011469211954339074,0.00012203693508065223,0.00011073721886948072,0.00010452237495333642,9.680090220903588e-05,8.060464230635672e-05,5.7628552676974665e-05,3.1827533994799725e-05,5.084872295027176e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2976089629382056e-05,6.666832564591185e-05,9.623591639847729e-05,0.00011450379093987123,0.00011638707697506645,0.0001082889470237269,9.906084545127018e-05,8.568951460138388e-05,7.438979839021239e-05,5.292033758898654e-05,2.9944247959604475e-05,8.474787158378627e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8832860351952504e-05,6.083013893680658e-05,8.832611505065724e-05,0.00010885393283428544,0.00012053030625249602,0.00011243217630115644,0.00010376906053925829,9.604758779495778e-05,8.041631370283718e-05,5.781688128049418e-05,3.145087678776068e-05,4.331557880949076e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8832860351952504e-05,6.233676776496279e-05,9.209268712104775e-05,0.00010866560423076594,0.00011921200602785936,0.0001118671904905979,0.00010188577450406303,9.152770131048917e-05,7.740305604652479e-05,5.442696641714272e-05,2.4482718457538258e-05,5.649858105585751e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7665720703905004e-07,5.649858105585751e-07,3.7665720703905004e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620911,1.4067685780744403e-05,2.7942663537095048e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1080711402641137e-05,3.295307217133278e-05,4.8466068135030366e-05,5.723428324494641e-05,5.048950239116485e-05,4.682804992768342e-05,4.2395765366626965e-05,3.439838235428597e-05,2.900255767126072e-05,2.0619758610132205e-05,1.3296853683169365e-05,5.2031166586314905e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0888003378247378e-05,2.900255767126072e-05,4.191399530564256e-05,5.058585640336171e-05,5.501814096441818e-05,5.000773233018045e-05,4.653898789109278e-05,4.682804992768342e-05,4.0275977098295615e-05,2.8231725573685686e-05,1.4838517878319436e-05,1.445310182953192e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0598941341656741e-05,3.3531196244514055e-05,4.817700609843973e-05,5.800511534252144e-05,5.627074312297761e-05,5.058585640336171e-05,4.6249925854502146e-05,4.26848274032176e-05,3.603640056163291e-05,2.6400999341944976e-05,1.5898412012485113e-05,2.312496292725107e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0020817268475464e-05,3.256765612254526e-05,4.894783819601477e-05,5.887230145229335e-05,6.397906409872797e-05,5.8679593427899585e-05,5.4729078927827535e-05,5.06822104155586e-05,4.26848274032176e-05,3.0447867854213903e-05,1.657289009786327e-05,2.6015583293157452e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1562481463625536e-05,3.401296630549845e-05,4.933325424480228e-05,5.8968655464490236e-05,5.9546779537671503e-05,5.5981681086386974e-05,5.1067626464346114e-05,4.634627986669903e-05,3.883066691534242e-05,2.8231725573685686e-05,1.5609349975894472e-05,4.239576536662696e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.442693195294187e-06,3.092963791519831e-05,4.6057217830108385e-05,5.617438911078073e-05,6.253375391577477e-05,5.8775947440096475e-05,5.4825432940024405e-05,5.029679436677108e-05,4.2588473391020726e-05,3.0062451805426392e-05,1.609112003687887e-05,2.216142280528228e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.249985170900429e-06,3.1796824024970226e-05,4.7791590049652215e-05,5.655980515956824e-05,6.137750576941222e-05,5.7137929232749516e-05,5.270564467169306e-05,4.817700609843973e-05,4.037233111049249e-05,2.8231725573685686e-05,1.2622375597791212e-05,1.927080243937589e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.804674987947236e-06,3.0158805817623272e-05,4.5671801781320864e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620912,7.184788119057624e-05,1.36853107029669e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.47412428118676e-05,0.0001637349673390683,0.0002463355926534042,0.0002864140025692359,0.0002448693093638006,0.0002311839986608337,0.00020430213835143446,0.00017351018926975892,0.00014125195689847976,9.677469711383736e-05,6.207265925988559e-05,2.492681592326114e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.376372061879854e-05,0.0001383193903192726,0.00020332461615836538,0.0002468243537499387,0.00026637479761132003,0.00023802665401231722,0.00022727390988855751,0.0002365603707227136,0.00020088081067569274,0.0001427182401880834,7.478044776978344e-05,7.820177544552514e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.131991513612588e-05,0.00016520125062867186,0.00023851541510885174,0.0002937454190172538,0.00027859382502468333,0.00025513329239102583,0.00022727390988855751,0.0002170099268613323,0.00017742027804203516,0.00013147673496778916,8.064558092819782e-05,1.2219027413363305e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.985363184652228e-05,0.00016324620624253374,0.0002478018759430078,0.0002952117023068575,0.000326981173581602,0.00030058807436873726,0.0002746837362524071,0.000258065858970233,0.00021603240466826323,0.00015591478979451576,8.50444307970086e-05,1.4174071799501434e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7185048294540264e-05,0.00017057762269055173,0.00024926815923261144,0.0002996105521756682,0.0002937454190172538,0.0002771275417350797,0.00025024568142568044,0.00024144798168805885,0.00019550443861381288,0.00014516204567075608,7.917929763859421e-05,2.1016727150984885e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7409826363849615e-05,0.00015542602869798123,0.00023509408743311002,0.00028739152476230497,0.0003181834738439805,0.00029912179107913374,0.00027615001954201066,0.00025464453129449125,0.00021603240466826323,0.00015249346211877404,8.113434202473235e-05,1.1730266316828771e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.594354307424602e-05,0.000159824878566792,0.00024193674278459346,0.00028690276366577034,0.00030694196862368617,0.0002844589581830978,0.0002605096644529057,0.00024193674278459346,0.00020332461615836538,0.00014076319580194526,6.451646474255826e-05,1.9550443861381284e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.861212662622804e-05,0.00015249346211877404,0.000227762670985092,0.0002854364803761668,0.00030743072972022075,0.00028934656914844306,0.00026344223103211284,0.0002512232036187496,0.00020674594383410708,0.00014467328457422153,7.28254033836453e-05,3.421327675741725e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.203345430196977e-05 +2620913,3.660651071722639e-05,7.521885763813641e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.883389542795229e-05,8.600022723293596e-05,0.0001291257056121342,0.00015093917432719374,0.00012611695130660872,0.00011934725411917646,0.00010204691686240508,8.549876818201507e-05,7.070572617984824e-05,4.788933936294685e-05,3.1090461157096385e-05,1.278720579848319e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7830977326110475e-05,7.170864428169005e-05,0.00010580785974431189,0.00012737059893391098,0.00013890415710509193,0.00012436184462838554,0.0001158370407627301,0.00011633849981365098,0.00010104399876056324,7.24608328580714e-05,3.8612346920910025e-05,4.262401932827731e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682805922426866e-05,8.675241580931733e-05,0.00012386038557746462,0.00015269428100541692,0.00014617531334344512,0.0001291257056121342,0.0001145833931354278,0.00010756296642253507,8.900898153846143e-05,6.719551282340186e-05,4.1621101226435485e-05,6.769697187432278e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.65773296988082e-05,8.650168628385687e-05,0.0001291257056121342,0.00015194209242903552,0.00017024534778764874,0.00015645522388732375,0.00014090999330877555,0.0001283735170357528,0.00010806442547345599,7.948125957096415e-05,4.362693743011912e-05,7.521885763813641e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9836813529794115e-05,8.951044058938234e-05,0.00012987789418851555,0.0001572074124637051,0.00015244355147995647,0.00014316655903791965,0.00012561549225568783,0.000121854549373781,0.00010054253970964235,7.47173985872155e-05,4.137037170097503e-05,1.0781369594799553e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532368207150593e-05,8.19885548255687e-05,0.00012360965605200417,0.00015093917432719374,0.00016598294585482105,0.00015695668293824465,0.0001426650999869987,0.00012812278751029235,0.00010856588452437691,7.74754233672805e-05,4.1621101226435485e-05,6.518967661971822e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4571493495124562e-05,8.524803865655461e-05,0.00012636768083206917,0.00015068844480173327,0.00015795960104008646,0.00014416947713976144,0.0001323851894431201,0.0001200994426955578,0.00010004108065872143,7.095645570530867e-05,3.284556783531957e-05,1.7551066782231832e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620914,8.2335218284384e-05,1.7153170475913337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.6897364856062e-05,0.000200692094568186,0.00029903693863008915,0.0003516399947562233,0.0002910321257413296,0.0002750224999638105,0.00023213957377402715,0.0001886848752350467,0.00015895271307679687,0.00010749320164905689,7.147154364963889e-05,2.858861745985556e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.403850311007645e-05,0.0001681010706639507,0.00024643388250395495,0.00029503453218570935,0.0003224796049471707,0.0002910321257413296,0.0002658741423766567,0.00025844110183709425,0.00022813716732964737,0.0001652422089179651,8.805294177635512e-05,9.72012993635089e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232318606248513e-05,0.000200692094568186,0.00028588617459855556,0.0003522117671054205,0.0003390610030738869,0.0002956063045349064,0.0002658741423766567,0.00024414679310716647,0.00020240741161577737,0.0001526632172356287,9.491420996672046e-05,1.5437853428322e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232318606248513e-05,0.00020183563926658024,0.0002967498492333008,0.00034878113301023785,0.0003950946932952038,0.00035335531180381467,0.0003224796049471707,0.00028760149164614693,0.00024243147605957513,0.00018010828999709,9.948838876029734e-05,1.7153170475913337e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.861268190365335e-05,0.00020640981806015717,0.00029846516628089203,0.00036193189704177145,0.00035278353945461765,0.00033162796253432446,0.00028760149164614693,0.0002738789552654162,0.00022699362263125316,0.00016924461536234488,9.434243761752335e-05,2.458621101547578e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.889255196730245e-05,0.00019040019228263802,0.00028531440224935844,0.00034878113301023785,0.00038423101866045866,0.00036307544174016564,0.00032591023904235335,0.00028702971929694975,0.00024414679310716647,0.00017553411120351312,9.491420996672046e-05,1.4866081079124888e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6605462570514e-05,0.00019611791577460913,0.00028988858104293536,0.00034763758831184366,0.00036364721408936265,0.00033162796253432446,0.00030475466212206027,0.00027102009351943066,0.00022470653323446467,0.00016295511952117668,7.490217774482157e-05,4.574178793576889e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.745710498336023e-05,0.00018925664758424383,0.0002750224999638105,0.0003407763201214783,0.00036078835234337726,0.0003379174583754927,0.00030075225567768047,0.0002750224999638105,0.0002344266631708156,0.0001681010706639507,8.519408003036958e-05,4.002406444379778e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.145951142774002e-05 +2620915,3.0805014000971275e-05,6.725038267817673e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5381596043053794e-05,7.484316781926119e-05,0.00010911916931329965,0.00012907734739843598,0.00011020385290488316,0.00010261106776379868,9.133035841133033e-05,7.332461079104429e-05,6.226083815689264e-05,4.425509053660662e-05,2.8635646817804286e-05,1.1280709352468351e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.47307858881037e-05,6.486407877669304e-05,9.284891543954724e-05,0.00011172240993310005,0.0001230031192855684,0.00011063772634151656,0.00010261106776379868,0.00010065863729894839,8.807630763657984e-05,6.312858503015946e-05,3.340825462077166e-05,3.6879242113838856e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3863039014836902e-05,7.527704125589458e-05,0.00010738367556676607,0.00013037896770833616,0.0001251724864687354,0.00011215628336973343,0.00010044170058063171,9.219810528459711e-05,7.874802874896179e-05,5.7922103790558666e-05,3.579455852225536e-05,5.857291394550876e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3429165578203504e-05,7.50601045375779e-05,0.00011063772634151656,0.00013124671458160294,0.00014382904424397152,0.00013189752473655308,0.0001197490685108179,0.00010976997946824974,9.328278887618061e-05,6.811812955144351e-05,3.731311555047225e-05,6.2911648311842746e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6249342916320596e-05,7.744640843906157e-05,0.00011150547321478336,0.00013428382863803676,0.00013189752473655308,0.0001223523091306183,0.00011107159977814994,0.00010282800448211537,8.742549748162974e-05,6.399633190342624e-05,3.557762180393866e-05,9.545215605934759e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.212754526830331e-05,7.115524360787733e-05,0.00010478043494696567,0.0001275587903702191,0.0001420935504974379,0.00013384995520140337,0.00012213537241230162,0.00011020385290488316,9.328278887618061e-05,6.681650924154332e-05,3.644536867720545e-05,5.423417957917478e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.147673511335321e-05,7.28907373544109e-05,0.00010694980213013266,0.00012799266380685248,0.00013580238566625365,0.00012582329662368547,0.00011541033414448394,0.0001043465615103323,8.720856076331305e-05,6.161002800194255e-05,2.8418710099487588e-05,1.518557028216894e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.778881090196933e-05,6.96366865796604e-05,0.00010304494120043208,0.0001249555497504187,0.00013645319582120374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620916,6.87469683529144e-05,1.3844875571073039e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.442468327939056e-05,0.0001623192308332701,0.00023822734172294642,0.0002802393779386163,0.00024204661774255274,0.0002262921041616765,0.0002033764480440384,0.00016661591635532726,0.00014035839372053357,9.882376700731443e-05,6.301805432350485e-05,2.4825294127441306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.346986427448897e-05,0.00014035839372053357,0.0002033764480440384,0.00024538848425970837,0.00026734932137244483,0.00024061438923520033,0.00022581469465922572,0.00022867915167393047,0.0001962153055072765,0.0001389261652131812,7.304365387497154e-05,7.63855203921271e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156022626468579e-05,0.00016327404983817168,0.0002348854752057908,0.00028501347296312426,0.00027307823540185437,0.00024777553177196234,0.00022295023764452098,0.00020671831456119398,0.00017473187789699077,0.0001279457466568129,7.829515840193028e-05,1.193523756126986e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.965058825488261e-05,0.0001613644118283685,0.00024061438923520033,0.000287877929977829,0.0003150902716175243,0.00029074238699253375,0.0002678267308748957,0.0002482529412744131,0.00020958277157589875,0.0001503839932720002,8.211443442153663e-05,1.3367466068622243e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6334321289193736e-05,0.00016757073536022884,0.00024252402724500352,0.0002912197964949846,0.00029026497749008306,0.00027164600689450196,0.00024729812226951154,0.00023106619918618451,0.00019144121048276854,0.00014035839372053357,7.734033939702868e-05,2.0528608605384158e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.678613124017785e-05,0.00015324845028670498,0.00022867915167393047,0.0002778523304263624,0.0003103161765930163,0.0002912197964949846,0.00026878154987979724,0.0002468207127670607,0.00020910536207344798,0.00014847435526219705,7.924997740683188e-05,1.1457828058819064e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.583131223527626e-05,0.00015706772630631134,0.00023440806570334004,0.0002792845589337147,0.00029933575803664807,0.00027880714943126397,0.00025398185530382263,0.0002348854752057908,0.00019669271500972728,0.00013653911770092719,6.254064482105408e-05,1.9096380098031774e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.819276019606355e-05,0.00014847435526219705,0.00022390505664942258,0.00027546528291410834,0.0003022002150513529,0.00028262642545087024,0.0002592333598307813,0.00024109179873765116,0.00020051199102933366,0.00014035839372053357,7.208883487006996e-05,3.819276019606355e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2012036215669905e-05 +2620917,2.4323013519376324e-05,4.89725104416973e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8609553967844972e-05,5.550217850059027e-05,8.357975115383003e-05,9.745529577897761e-05,8.145760903468983e-05,7.688684139346476e-05,6.6439372499236e-05,5.6481628709424206e-05,4.6360643218140104e-05,3.1668890085630915e-05,2.0078729281095887e-05,8.32532677508854e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8119828863428e-05,4.6360643218140104e-05,6.823503121543157e-05,8.243705924352378e-05,8.945645240683372e-05,7.966195031849426e-05,7.52544243787415e-05,7.737656649788171e-05,6.6439372499236e-05,4.7666576829918704e-05,2.5302463728210267e-05,2.9383506265018373e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.730362035606638e-05,5.599190360500724e-05,8.06414005273282e-05,9.892447109222853e-05,9.337425324216951e-05,8.423271795971933e-05,7.492794097579686e-05,7.133662354340572e-05,5.827728742561978e-05,4.3912017696055236e-05,2.726136414587816e-05,4.407525939752756e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.730362035606638e-05,5.599190360500724e-05,8.390623455677471e-05,9.908771279370086e-05,0.0001108411152997082,0.00010137309661431341,9.141535282450161e-05,8.504892646708097e-05,7.133662354340572e-05,5.223734447114378e-05,2.8730539459129075e-05,5.060492745642054e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9425762475206594e-05,5.811404572414745e-05,8.439595966119167e-05,0.00010186282171873037,9.794502088339458e-05,9.206831963039092e-05,8.227381754205143e-05,8.06414005273282e-05,6.594964739481903e-05,4.913575214316962e-05,2.709812244440584e-05,7.019393163309945e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6487411848704757e-05,5.3216794679977734e-05,8.015167542291124e-05,9.778177918192226e-05,0.0001074130395687894,0.00010137309661431341,9.239480303333554e-05,8.439595966119167e-05,7.149986524487805e-05,5.0931410859365183e-05,2.7424605847350485e-05,4.244284238280431e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5834445042815457e-05,5.5012453396173295e-05,8.19473341391068e-05,9.72920540775053e-05,0.00010251578852461965,9.419046174953113e-05,8.619161837738723e-05,7.933546691554963e-05,6.578640569334668e-05,4.70136100240294e-05,2.1711146295819137e-05,1.1426919103062701e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3385819520730596e-05,5.272706957556075e-05,7.672359969199241e-05,9.663908727161598e-05,0.00010251578852461965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/test/channel_loss/channel_forcing/et/peadj_100.0_eloss_calculated_values.csv b/test/channel_loss/channel_forcing/et/peadj_100.0_eloss_calculated_values.csv new file mode 100644 index 000000000..66daa92ee --- /dev/null +++ b/test/channel_loss/channel_forcing/et/peadj_100.0_eloss_calculated_values.csv @@ -0,0 +1,260 @@ +key,202208010000,202208010100,202208010200,202208010300,202208010400,202208010500,202208010600,202208010700,202208010800,202208010900,202208011000,202208011100,202208011200,202208011300,202208011400,202208011500,202208011600,202208011700,202208011800,202208011900,202208012000,202208012100,202208012200,202208012300,202208020000,202208020100,202208020200,202208020300,202208020400,202208020500,202208020600,202208020700,202208020800,202208020900,202208021000,202208021100,202208021200,202208021300,202208021400,202208021500,202208021600,202208021700,202208021800,202208021900,202208022000,202208022100,202208022200,202208022300,202208030000,202208030100,202208030200,202208030300,202208030400,202208030500,202208030600,202208030700,202208030800,202208030900,202208031000,202208031100,202208031200,202208031300,202208031400,202208031500,202208031600,202208031700,202208031800,202208031900,202208032000,202208032100,202208032200,202208032300,202208040000,202208040100,202208040200,202208040300,202208040400,202208040500,202208040600,202208040700,202208040800,202208040900,202208041000,202208041100,202208041200,202208041300,202208041400,202208041500,202208041600,202208041700,202208041800,202208041900,202208042000,202208042100,202208042200,202208042300,202208050000,202208050100,202208050200,202208050300,202208050400,202208050500,202208050600,202208050700,202208050800,202208050900,202208051000,202208051100,202208051200,202208051300,202208051400,202208051500,202208051600,202208051700,202208051800,202208051900,202208052000,202208052100,202208052200,202208052300,202208060000,202208060100,202208060200,202208060300,202208060400,202208060500,202208060600,202208060700,202208060800,202208060900,202208061000,202208061100,202208061200,202208061300,202208061400,202208061500,202208061600,202208061700,202208061800,202208061900,202208062000,202208062100,202208062200,202208062300,202208070000,202208070100,202208070200,202208070300,202208070400,202208070500,202208070600,202208070700,202208070800,202208070900,202208071000,202208071100,202208071200,202208071300,202208071400,202208071500,202208071600,202208071700,202208071800,202208071900,202208072000,202208072100,202208072200,202208072300,202208080000,202208080100,202208080200,202208080300,202208080400,202208080500,202208080600,202208080700,202208080800,202208080900,202208081000,202208081100,202208081200,202208081300,202208081400,202208081500,202208081600,202208081700,202208081800,202208081900,202208082000,202208082100,202208082200,202208082300,202208090000,202208090100,202208090200,202208090300,202208090400,202208090500,202208090600,202208090700,202208090800,202208090900,202208091000,202208091100,202208091200,202208091300,202208091400 +2619299,0.003441656403440937,0.001169494894373134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025394746277816634,0.006699535037766096,0.00962327227369893,0.011544585314454795,0.0108261813079113,0.010324969210322811,0.009088646036271214,0.0071172117857565016,0.006215030010097226,0.004778221997010234,0.0030406867253701493,0.0015203433626850746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002088383739952025,0.005730524982428357,0.008219878400451172,0.01007436316152857,0.011761777223409806,0.011060080286785927,0.009690100553377398,0.00888816119723582,0.007752080442701917,0.005864181541785286,0.0036087271026370993,0.001019131265096588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025394746277816634,0.0068164845272034105,0.00967339348345778,0.011628120664052874,0.012446767090114068,0.011895433782766734,0.010174605581046266,0.009272423805386993,0.007885737002058846,0.006031252240981449,0.0037089695221547967,0.0012864443838104477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024058180684247326,0.006666120897926864,0.009489615714342002,0.011828605503088271,0.013616261984487205,0.013198585236496798,0.011511171174615566,0.009255716735467375,0.008036100631335393,0.006181615870257994,0.0038426260815117266,0.0015370504326046907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025728887676208954,0.006732949177605328,0.009589858133859699,0.011694948943731338,0.011845312573007886,0.011327393405499783,0.00962327227369893,0.00813634305085309,0.006983555226399573,0.005463211863714497,0.0033748281237624723,0.0014702221529262257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022721615090678035,0.0064489289889718545,0.009472908644422387,0.011611413594133257,0.013582847844647972,0.012964686257622173,0.01129397926566055,0.009439494504583154,0.00800268649149616,0.006148201730418763,0.0037590907319136452,0.0012697373138908317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022387473692285706,0.00646563605889147,0.009556443994020468,0.011527878244535179,0.013265413516175262,0.012647251929149464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619300,0.00963651248813978,0.0031809847048228403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007110436399015763,0.018898791481594523,0.02671091568314473,0.032324418103420335,0.03031291306948825,0.02848852478289867,0.024652631462377016,0.019319804163115194,0.016980844821333694,0.01323850987448329,0.00823313688307088,0.00392945169419292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005894177541289381,0.016232377831963612,0.023015359923129967,0.028161070475049264,0.032885768345447895,0.031342055179872104,0.026664136496309103,0.024418735528198864,0.021050634076033505,0.01627915701879924,0.009917187609153562,0.0026664136496309106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069233196516732395,0.01899234985526578,0.026757694869980364,0.032464755663927224,0.034242364763681164,0.032464755663927224,0.027880395354035477,0.025026864957062054,0.021378088383882915,0.01651305295297739,0.01001074598282482,0.0033213222653297307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00673620290433072,0.018805233107923265,0.02671091568314473,0.032792209971776634,0.037797582963189046,0.03611353223710637,0.03096782168518707,0.025120423330733315,0.021799101065403583,0.016887286447662436,0.010478537851181122,0.00406978925469981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007250773959522651,0.018852012294758892,0.02661735730947347,0.03251153485076285,0.032324418103420335,0.030780704937844544,0.026056007067445913,0.022313672120595512,0.01894557066843015,0.01492256060056597,0.00926227899345474,0.00392945169419292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0065490861569882,0.018384220426402594,0.026383461375295326,0.03213730135607781,0.03686199922647644,0.03522472768722939,0.030359692256323876,0.025354319264911464,0.021705542691732322,0.01670016970031991,0.010104304356496079,0.0032745430784941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00631519022281005,0.018009986931717552,0.026149565441117177,0.03190340542189966,0.03625386979761325,0.03452303988469495,0.029470887706446906,0.026102786254281543,0.022360451307431143,0.016887286447662436,0.008981603872440963,0.0015904923524114201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00547316485976871,0.01744863668968999,0.025541436012253987,0.03143561355354336,0.03639420735812015,0.03499083175305124,0.029798342014296313,0.02647701974896658,0.022594347241609292,0.017261519942347474,0.01001074598282482,0.0027131928364665403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619301,0.006278266342470894,0.0019639704968755106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004636258222132352,0.012556532684941788,0.01757914575891851,0.021152928138478865,0.019671901206408805,0.01831965922495353,0.015615175262042993,0.012395551496673306,0.010817935851642157,0.008532002978229678,0.0051835942622452,0.002318129111066176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003766959805482537,0.010882328326949551,0.015228820410198634,0.01844844417556832,0.02144269427736213,0.020026059820599473,0.017064005956459356,0.015904941400926267,0.013619008527513788,0.010656954663373677,0.006407051293085684,0.0015454194073774513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004507473271517565,0.01265312139790288,0.017611341996572202,0.021217320613786256,0.022118815268089773,0.020637788336019706,0.01774012694718699,0.01609811882684845,0.013747793478128576,0.01068915090102737,0.006342658817778288,0.001931774259221814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004410884558556475,0.012556532684941788,0.0176757344718796,0.02137830180205474,0.024533533092117036,0.023149094873008074,0.019671901206408805,0.01609811882684845,0.013973167141704454,0.010882328326949551,0.006729013669622652,0.0024469140616809647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004700650697439747,0.012556532684941788,0.017546949521264805,0.021249516851439956,0.020863161999595592,0.019510920018140324,0.016226903777463237,0.014134148329972939,0.012041392882482639,0.00953008634549428,0.005956303965933926,0.0023503253487198736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004249903370287991,0.012234570308404823,0.017289379620035236,0.0208309657619419,0.023728627150774614,0.022537366357587827,0.019253350116910744,0.016323492490424325,0.013940970904050757,0.010817935851642157,0.006407051293085684,0.001899578021568117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004088922182019505,0.01194480416952155,0.01703180971880566,0.020766573286634497,0.02337446853658395,0.022118815268089773,0.018706014076797898,0.016742043579922386,0.014391718231202515,0.01078573961398846,0.005763126540011744,0.0008049059413424226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003541586141906659,0.011558449317677185,0.016774239817576083,0.02044461091009753,0.02353544972485243,0.02240858140697304,0.01896358397802747,0.01690302476819087,0.014520503181817301,0.01120429070348652,0.006439247530739381,0.0015776156450311477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003960137231404719 +2619302,0.014777613257844414,0.004401842247017486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010768792640024923,0.029869643819047234,0.041660292694986924,0.04975653825646551,0.045904926290325214,0.0426035446050621,0.036315198537894264,0.029476622189849234,0.02554640589786934,0.020044103089097483,0.012026461853458492,0.005109281179573867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008725080168195376,0.02625384483042572,0.03647240718957346,0.04378260949265607,0.050856998818219895,0.047005386852079584,0.04016681050403456,0.03796588938052582,0.03230637792007477,0.02499617561699215,0.014856217583684017,0.0032227773594235174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010532979662506128,0.030184061122405625,0.041817501346666126,0.0500709555598239,0.05156443775077628,0.048027243087994366,0.041188666739949344,0.03788728505468622,0.03230637792007477,0.02507477994283175,0.014541800280325624,0.004166029269498692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010375771010826934,0.030184061122405625,0.04213191865002451,0.05038537286318228,0.057302553537066925,0.05407977617764341,0.045904926290325214,0.03788728505468622,0.03285660820095195,0.02554640589786934,0.015720865167919595,0.005345094157092662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011004605617543715,0.029869643819047234,0.041738897020826525,0.0503067685373427,0.048891890672229946,0.04559050898696682,0.03812309803220501,0.03324962983014994,0.028533370279774067,0.02248083719012502,0.013912965673608842,0.005266489831253064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009904145055789343,0.029162204886490847,0.04087424943659094,0.048891890672229946,0.055494654042756164,0.05250768966085144,0.044725861402731236,0.03851611966140301,0.03277800387511236,0.025389197246190143,0.014777613257844414,0.004087424943659094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009511123426591352,0.02837616162809487,0.040324019155713764,0.048891890672229946,0.05478721511019979,0.05140722909909707,0.04370400516681646,0.03945937157147818,0.03379986011102712,0.025310592920350546,0.013284131066892056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619303,0.0033366358474278767,0.0009770259663739085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024333476898369044,0.006783878408030157,0.00956748068958601,0.011410925909159422,0.010489203299372713,0.009733390759347618,0.008332372392471822,0.006673271694855753,0.005640942371894642,0.004442702979171924,0.0026361266639899792,0.001069198227352579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019356174805520829,0.006064934772396525,0.008516716914429163,0.010212686516436703,0.011908656118444242,0.011208146935006347,0.009420005072020137,0.008756364792973708,0.007410649782685117,0.005622507919698906,0.003355070299623611,0.0006820747312421624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023780443332497014,0.00689448512120456,0.00965965295056468,0.011410925909159422,0.011705877144291168,0.01100536796085327,0.009346267263237198,0.008553585818820632,0.007189436356336307,0.005493466754328768,0.003133856873274801,0.0009032881575909719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002341175428858233,0.006912919573400295,0.009751825211543351,0.011558401526725293,0.012830378728230946,0.012185172901380256,0.010507637751568448,0.008516716914429163,0.007281608617314978,0.005530335658720236,0.0034656770127980143,0.0011429360361355156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025070854986198403,0.006857616216813092,0.009641218498368945,0.011503098170138091,0.011042236865244739,0.0101573831598495,0.008719495888582241,0.007576559852446724,0.006433623816311208,0.004903564284065277,0.003152291325470535,0.0011429360361355156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022305687156838287,0.006636402790464284,0.009420005072020137,0.01122658138720208,0.012535427493099204,0.011963959475031446,0.01028642432521964,0.008645758079799302,0.007281608617314978,0.005585639015307439,0.0031891602298620035,0.0008664192531995036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002138396454705158,0.006470492720702677,0.009272529454454262,0.011152843578419143,0.012443255232120531,0.011798049405269836,0.0,0.0,0.0,0.0,0.0,0.0002580823307402777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619304,0.008815130296106196,0.0025399527971831414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00647438948301585,0.018078487556421184,0.025349724975808216,0.030081009598012107,0.027640662792875366,0.02549913396387781,0.022012924242253894,0.017779669580281987,0.015239716783098852,0.011902916049544524,0.007121828431317436,0.002988179761391931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005279117578459078,0.01608636771549323,0.022510954202485875,0.02684381485650418,0.031077069518476084,0.02918455566959453,0.024851695015576228,0.02340740813090346,0.019821592417233146,0.015090307795029255,0.008864933292129394,0.0017431048608119596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006275177498923055,0.01827769954051398,0.02554893695990101,0.030280221582104905,0.030877857534383286,0.02908494967754813,0.024752089023529836,0.022959181166694667,0.019323562457001158,0.014940898806959653,0.008416706327920605,0.0023407408130903455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006275177498923055,0.018476911524606773,0.025847754936040204,0.030678645550290498,0.034065249279868016,0.03232214441905606,0.027790071780944958,0.023108590154764266,0.019821592417233146,0.015189913787075649,0.009313160256338184,0.002988179761391931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006723404463131845,0.01827769954051398,0.02564854295194741,0.030628842554267295,0.02953317664175692,0.02709282983662017,0.023208196146810665,0.020269819381441935,0.01728163962005,0.013347202934217293,0.008466509323943805,0.0030379827574151296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005926556526760664,0.017530654600165996,0.024901498011599427,0.02963278263380332,0.03316879535145043,0.03142569049063848,0.02714263283264337,0.023457211126926655,0.01977178942120994,0.015140110791052453,0.008615918312013401,0.0022909378170671473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005677541546644669,0.017132230631980407,0.02445327104739064,0.029483373645733713,0.032720568387241654,0.03082805453836009,0.02644539088831859,0.023955241087158647,0.020369425373488327,0.015339322775145249,0.007868873371665417,0.0006972419443247839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049802996023198855,0.016783609659818014,0.024303862059321037,0.029035146681524935,0.03301938636338084,0.030877857534383286,0.026146572912179394,0.024054847079205046,0.02041922836951153,0.01563814075128444,0.008864933292129394,0.001842710852858357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005528132558575073 +2619305,0.006928816221219511,0.002040151442914634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005119625319012195,0.014358046947304876,0.020093567041536583,0.023788935692853654,0.021787277673390244,0.02005507361808536,0.017629987940658537,0.014165579830048779,0.012240908657487802,0.00943088874554878,0.005735520094231706,0.0023865922539756095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004234276579634147,0.012856803432707316,0.017783961634463413,0.021248369745073173,0.024558804161878042,0.023019067223829265,0.01986260650082926,0.018977257761451215,0.016013264155707314,0.012125428387134147,0.00704429649157317,0.001385763244243902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004965651625207315,0.014550514064560973,0.02024754073534146,0.024135376503914625,0.024404830468073166,0.022980573800378046,0.019554659113219505,0.018322869562780487,0.015435862803939023,0.011740494152621949,0.006697855680512193,0.0018476843256585366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004850171354853658,0.014550514064560973,0.02040151442914634,0.024250856774268293,0.027099370109658533,0.025521139748158533,0.021979744790646336,0.01863081695039024,0.015936277308804873,0.012279402080939021,0.0073137504557317075,0.0023096054070731705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005273599012817073,0.014512020641109754,0.020363021005695116,0.024443323891524385,0.023404001458341466,0.021671797403036583,0.01863081695039024,0.016475185237121947,0.014011606136243903,0.010893638836695122,0.006813335950865853,0.002425085677426829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00465770423759756,0.013857632442439023,0.01951616568976829,0.023327014611439024,0.0262525147937317,0.024751271279134138,0.021517823709231707,0.01886177749109756,0.01582079703845122,0.012086934963682926,0.006928816221219511,0.0018091909022073167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004503730543792682,0.013665165325182926,0.01947767226631707,0.023480988305243897,0.026021554253024385,0.024327843621170724,0.02105590262781707,0.01932369857251219,0.01628271811986585,0.012317895504390242,0.006197441175646341,0.0005774013517682926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619306,0.009035235432465188,0.002741026479511911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006700286949918006,0.018730347609998064,0.026344310053086704,0.031217246016663435,0.028526979286772114,0.026445829552327882,0.023501764074333607,0.018933386608480422,0.0162431198785891,0.012436138657044784,0.007613962443088641,0.00319786422609723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005634332207885596,0.016953756373277375,0.023400244575092422,0.028070141540186798,0.032384720257937025,0.030354330273113385,0.02659810880118966,0.02543063455991607,0.02136985459026879,0.016141600379347917,0.009289034180568142,0.001827350986341274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006497247951435641,0.019034906107721607,0.02659810880118966,0.03192788251135171,0.03208016176021347,0.030151291274631023,0.025836712556880793,0.024313920068263065,0.02040541934747756,0.015329444385418466,0.008781436684362235,0.0024364679817883658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006294208952953279,0.018933386608480422,0.026750388050051435,0.03192788251135171,0.035785623482516626,0.03360295424883121,0.028933057283736838,0.024973796813330746,0.02121757534140702,0.016344639377830286,0.009695112177532873,0.0029948252276148658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006852566198779777,0.019034906107721607,0.026801147799672024,0.032384720257937025,0.030912687518939885,0.028679258535633887,0.024719998065227792,0.022182010584198244,0.018730347609998064,0.014618807890730192,0.00913675493170637,0.0032486239757178203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006091169954470913,0.01801971111530979,0.025329115060674885,0.03055736927159575,0.034567389491622434,0.0324862397571782,0.028425459787530926,0.025176835811813115,0.020963776593304062,0.01598932113048615,0.009187514681326963,0.002385708232167774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005837371206367959,0.017968951365689195,0.02558291380877784,0.031064966767801665,0.034415110242760664,0.0319786422609723,0.02791786229132502,0.025735193057639605,0.02157289358875115,0.016293879628209693,0.00812155993929455,0.0007613962443088642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005025215212438503,0.01730907462062151,0.025176835811813115,0.030100531525010434,0.034212071244278296,0.03162332401362816,0.027816342792083844,0.02527835531105429,0.02136985459026879,0.016395399127450874,0.009390553679809326,0.0019288704855824565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005532812708644414 +2619307,0.016363110544602752,0.005034803244493154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011867750504876722,0.033085849892383584,0.04684165161394523,0.055742464492602777,0.05133701165367126,0.04702146601553427,0.04225638437342468,0.03443445790430139,0.029489561860602764,0.022746521801013716,0.014205337725534253,0.006203596854821922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01024942089057535,0.0301189122661644,0.0418967555702466,0.05043793964572605,0.05808005171326031,0.0536745988743288,0.047830630822684975,0.04576276520441099,0.03848028194005482,0.029399654659808237,0.016632832146986312,0.003326566429397262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011418214500904115,0.0336252930971507,0.04720128041712331,0.056731443701342504,0.05700116530372606,0.05241589806320552,0.04576276520441099,0.04342517798375345,0.0362326019201918,0.02742169624232878,0.016003481741424665,0.004405452838931509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011148492898520556,0.033085849892383584,0.04729118761791783,0.05682135090213701,0.06338457656013703,0.05852958771723293,0.051067290051287705,0.04549304360202743,0.03821056033767126,0.029849190663780844,0.017531904154931516,0.005304524846876716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012227379308054802,0.033895014699534265,0.04774072362189045,0.05763051570928769,0.055922278894191824,0.051067290051287705,0.04414443559010962,0.04072796195991783,0.03407482910112332,0.026792345836767133,0.016632832146986312,0.006113689654027401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010609049693753432,0.03155742747887673,0.044593971594082224,0.05430394927989045,0.06140661814265757,0.05718097970531509,0.05043793964572605,0.04585267240520552,0.037940838735287696,0.0292198402582192,0.016722739347780832,0.004405452838931509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01024942089057535,0.031737241880465776,0.045403136401232905,0.055203021287835656,0.06131671094186304,0.056641536500547984,0.049628774838575376,0.04603248680679455,0.03857018914084934,0.02912993305742468,0.014385152127123296,0.0014385152127123298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008810905677863018,0.030388633868547964,0.044504064393287704,0.05331497007115072,0.060507546134712355,0.05556265009101373,0.04908933163380825,0.04576276520441099,0.03821056033767126,0.029489561860602764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619308,0.011961495144322208,0.0037213540449002424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008638857604232705,0.023790084787040835,0.034090261161318296,0.040801988992299094,0.037944520707822116,0.034090261161318296,0.030767623621228795,0.02511913980307664,0.021796502262987138,0.016812545952852885,0.010765345629889988,0.0047845980577288835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077085190930076455,0.021730049512185347,0.030236001614814472,0.03641610743938095,0.041798780254325936,0.038010973458623906,0.03482124142013799,0.033957355659714715,0.028707588346373297,0.02192940776459072,0.01222730614752937,0.0025252045304680224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008373046601025546,0.02452106504586053,0.03462188316773261,0.04159942200192057,0.04159942200192057,0.03781161520621853,0.03322637540089503,0.03189732038485923,0.02664755307151781,0.02020163624374418,0.01222730614752937,0.003322637540089503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008173688348620176,0.024055895790248003,0.03455543041693082,0.041665874752722355,0.046051756305640505,0.04173232750352415,0.03708063494739885,0.03442252491532724,0.028774041097175088,0.022461029771005035,0.01295828640634906,0.0037878067957020332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008971121358241655,0.024986234301473054,0.035153505174146935,0.04246330776234384,0.04120070549710983,0.03741289870140779,0.03329282815169682,0.030900529122832372,0.02591657281269812,0.02020163624374418,0.012426664399934737,0.004518787054521724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077085190930076455,0.022660388023410406,0.0320302258864628,0.03947293397626329,0.0447227012896047,0.04146651650031699,0.03694772944579527,0.03462188316773261,0.02857468284476972,0.022128766016996086,0.0126924754031419,0.003322637540089503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007509160840602274,0.0233913682822301,0.03342573365330039,0.040469725238290136,0.04485560679120828,0.04120070549710983,0.03641610743938095,0.03468833591853441,0.028906946598778675,0.021862955013788925,0.010632440128286407,0.0011961495144322209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0064459168277736355,0.022328124269401457,0.032694753394480705,0.03894131196984898,0.04419107928319039,0.04007100873347941,0.03568512718056126,0.03415671391212009,0.02864113559557151,0.0220623132661943,0.01255956990153832,0.0027245627828733922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007110444335791534 +2619309,0.008247170067484863,0.002474151020245459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006209633933165073,0.017027980551101097,0.024450433611837474,0.02915617182681413,0.02677904633677438,0.024013818725911806,0.021830744296283455,0.01780418479274673,0.015621110363118385,0.011740089154890214,0.007665016886250635,0.0032988680269939443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005627480751930846,0.015524084832912682,0.021442642175460644,0.02576027826961448,0.029447248417431245,0.02663350804146582,0.024790022967557435,0.024498946376940327,0.020811976229123563,0.015524084832912682,0.008635272188307678,0.0016494340134969722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006015582872753665,0.017610133732335324,0.024887048497763145,0.029980888833562612,0.02964129947784265,0.02682755910187723,0.0239167931957061,0.02299505065875191,0.019356593276038,0.01431126570534138,0.008780810483616237,0.002231587194731198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005821531812342256,0.01731905714171821,0.024838535732660292,0.029932376068459766,0.03313421856524801,0.02978683777315121,0.026536482511260114,0.024935561262865998,0.02110305281974068,0.016057725249044058,0.009168912604439054,0.0025226637853483103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006403684993576482,0.017901210322952436,0.025323663383688813,0.03066006754500254,0.0294957611825341,0.026973097397185782,0.024207869786323215,0.022509923007723386,0.018968491155215185,0.014553829530855638,0.008780810483616237,0.0031048169665825365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00548194245662229,0.01620326354435261,0.02284951236344335,0.02823442928985994,0.03206693773298526,0.029544273947636947,0.02658499527636297,0.0251296123232774,0.020860488994226413,0.015815161423529796,0.009071887074233348,0.002183074429628346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053849169264165875,0.01688244225579254,0.024013818725911806,0.029107659061711276,0.03206693773298526,0.029253197357019835,0.0261483803904373,0.02527515061858596,0.021054540054637826,0.015718135893324093,0.007567991356044932,0.0007762042416456341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045601999196680995,0.016057725249044058,0.023577203839986134,0.027943352699242825,0.031484784551751036,0.02886509523619702,0.02585730379982019,0.024595971907146026,0.020811976229123563,0.015718135893324093,0.00887783601382194,0.0017464595437026765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005045327570696621 +2619310,0.006338137174181202,0.0018735374036887831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005022674741803973,0.013632974299182213,0.019452899000002685,0.023120248811478606,0.021127123913937344,0.018974549024592786,0.01718073661680565,0.014071461776641288,0.012437099360657455,0.009208237026640616,0.006098962186476253,0.0025910623668036364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00462404976229572,0.01231751186680498,0.016981424127051527,0.020369736452871663,0.023239836305331083,0.021127123913937344,0.01961234899180599,0.019373174004101035,0.016503074151641622,0.012197924372952506,0.006736762153689455,0.0012357374364755807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004823362252049847,0.013951874282788811,0.019731936485658467,0.02379791127664263,0.023319561301232736,0.02116698641188817,0.019213724012297737,0.018336749057379583,0.015506511702870996,0.011241224422132703,0.006896212145492757,0.0017140874118854827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004743637256148197,0.013951874282788811,0.019731936485658467,0.02379791127664263,0.026388973643446275,0.023837773774593455,0.021127123913937344,0.019971111473363414,0.016981424127051527,0.012795861842214882,0.007215112129099359,0.0018735374036887831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005142262235656447,0.014191049270493762,0.020050836469265063,0.02447557374180666,0.023638461284839332,0.021685198885248898,0.01933331150615021,0.01797798657582216,0.015187611719264395,0.011560124405739303,0.006936074643443581,0.002391749877049511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004424737272541595,0.012915449336067359,0.018177299065576285,0.022442586346314575,0.025591723684429763,0.023558736288937683,0.02132643640369147,0.020050836469265063,0.0167821116372974,0.012476961858608282,0.007135387133197706,0.0016343624159838325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004345012276639945,0.013353936813526434,0.018974549024592786,0.023120248811478606,0.02543227369262646,0.02319997380738025,0.020967673922134042,0.020250148959019186,0.016821974135248226,0.012516824356559104,0.005939512194672951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619311,0.014111085302596785,0.0039049544233601173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0111823694850767,0.031417133315215486,0.0447294779403068,0.05280563367952886,0.04748069582949233,0.04251075383612491,0.037807058735259316,0.031150886422713662,0.027512178891855373,0.020501010722640614,0.013578591517593138,0.005679933706705625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010294879843403945,0.02804467267685902,0.03913829319776845,0.04659320618781958,0.05253938678702703,0.04756944479365961,0.043841988298634046,0.04313199658529584,0.036919569093586554,0.027157183035186275,0.014909825980102265,0.002484970996683711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010738624664240321,0.031772129171884586,0.044995724832808615,0.053604374357034336,0.052361888858692494,0.04694820204448868,0.043043247621128565,0.04073577455277941,0.03452334706107013,0.025382203751840766,0.015353570800938644,0.0035499585666910155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010472377771738497,0.031505882279382766,0.045084473796975895,0.05387062124953617,0.05910681013540541,0.05307188057203068,0.04712569997282324,0.04455198001197224,0.03825080355609569,0.028310919569360847,0.01606356251427685,0.003816205459192842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011448616377578524,0.032215873992720974,0.045528218617812276,0.054846859855376184,0.05369312332120161,0.049078177184503295,0.04419698415530315,0.040558276624444854,0.0346120960252374,0.025825948572677136,0.015353570800938644,0.005147439921701973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009939883986734843,0.02990840092437181,0.042422004871957644,0.051385650252852445,0.05777557567289629,0.05307188057203068,0.048190687542830526,0.045084473796975895,0.03807330562776114,0.027689676820189923,0.015708566657607743,0.0033724606383564656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00967363709423302,0.030352145745208184,0.043309494513630385,0.052006893002023394,0.05679933706705625,0.05174064610952156,0.04721444893699052,0.04490697586864135,0.03771830977109204,0.027689676820189923,0.013046097732589483,0.0011537365341745798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008164904703389335,0.02893216231853178,0.042422004871957644,0.05058690957534697,0.055379353640379846,0.051030654396183345,0.045883214474481376,0.0436644903702995,0.03754081184275749,0.027512178891855373,0.015264821836771369,0.002484970996683711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00905239434506209 +2619312,0.0246849601520404,0.006333641091641942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020137730650348743,0.057814775092936706,0.08185013103044973,0.09662862691094759,0.08558535526398216,0.07714050047512624,0.06820844252537478,0.056028363502986414,0.04920751925044895,0.036215434959901364,0.02403535593751301,0.010068865325174372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018838522221293983,0.05115633189403108,0.07178126570527536,0.08509815210308662,0.09532941848189283,0.08655976158577325,0.07973891733323575,0.07779010468965361,0.06739643725721554,0.0487203160895534,0.026471371741990688,0.003735224233532428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019163324328557677,0.057977176146568554,0.08201253208408157,0.0974406321791068,0.0948422153209973,0.08477334999582294,0.07843970890418098,0.07291807308069827,0.061712400380100986,0.045309893963284664,0.0276081791174136,0.005684036877114563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018838522221293983,0.05716517087840933,0.0824997352449771,0.09825263744726605,0.10702229434338564,0.09662862691094759,0.08607255842487768,0.0813629278695542,0.06999485411532505,0.05066912873313554,0.028582585439204666,0.006008838984378252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020624933811244275,0.05878918141472779,0.08314933945950448,0.09971424692995265,0.0987398406081616,0.09029498581930563,0.08233733419134524,0.07470448467064855,0.06414841618457864,0.047258706606866804,0.0276081791174136,0.008607255842487768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017701714845871075,0.05472915507393166,0.07843970890418098,0.09419261110646993,0.10572308591433091,0.09727823112547497,0.08915817844388274,0.08201253208408157,0.06967005200806137,0.05018192557224001,0.02793298122467729,0.005359234769850875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017214511684975536,0.0552163582348272,0.07908931311870836,0.0948422153209973,0.102475064841694,0.09386780899920623,0.08623495947850954,0.08071332365502681,0.06739643725721554,0.04920751925044895,0.022736147508458253,0.0017864115899502916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014453693773234176,0.052617941376717686,0.07746530258238991,0.09240619951651961,0.10052625219811187,0.09370540794557439,0.08412374578129554,0.07892691206507652,0.06820844252537478,0.04888271714318525,0.026796173849254375,0.003410422126268738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01607770430955262 +2619313,0.008335869098395766,0.0019742847864621543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006800314264480756,0.019962212840895124,0.028627129403701247,0.033562841369856634,0.028846494379974816,0.0265431621291023,0.022704275044314777,0.018810546715458863,0.016507214464586348,0.011790867474704534,0.007732615413643441,0.003235633400035198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006306743067865217,0.017055626905270283,0.024239829878229792,0.028791653135906422,0.03202728653594162,0.028956176868111607,0.026927050837581058,0.025775384712144796,0.02275911628838317,0.01639753197644956,0.008829440295011301,0.00120650736950465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006471266800070396,0.0201267365731003,0.028133558207085706,0.03367252385799342,0.03284990519696752,0.029340065576590354,0.027036733325717842,0.02473340107484533,0.020894513990057803,0.015465230827286881,0.009377852735695235,0.001754919810188582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006251901823796823,0.019797689108689943,0.02857228815963285,0.03378220634613021,0.03756625218684933,0.0338370475901986,0.029723954285069108,0.027749669498606955,0.023746258681614247,0.017165309393407067,0.009761741444173987,0.0019742847864621543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006909996752617542,0.02007189532903191,0.02857228815963285,0.034385460030882525,0.03378220634613021,0.03125950911898412,0.0281883994511541,0.025775384712144796,0.021936497627357276,0.01617816700017599,0.009323011491626843,0.0027420622034196596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005977695603454858,0.018865387959527257,0.0274206220341966,0.03284990519696752,0.03646942730548147,0.03394673007833538,0.030930461654573763,0.027859351986743733,0.023855941169751038,0.017110468149338674,0.009432693979763629,0.001700078566120189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005758330627181286,0.019029911691732435,0.027530304522333373,0.03290474644103591,0.03498871371563485,0.03208212778001002,0.029669113041000714,0.02714641581385463,0.023143004996861925,0.01672657944085992,0.00756809168143826,0.000603253684752325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004880870722086993,0.01820729303070654,0.02670768586130748,0.032301492756283585,0.0346048250071561,0.032301492756283585,0.02857228815963285,0.026598003373170694,0.023143004996861925,0.01656205570865474,0.008829440295011301,0.000877459905094291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00531960067463414 +2619314,0.009640232719120782,0.0023136558525889877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007904990829679043,0.0233293631802723,0.03354800986254033,0.03939641771214027,0.033483741644412854,0.03084874470118651,0.02641423765039095,0.02146558485457561,0.01895912434760421,0.0134963258067691,0.008869014101591122,0.003663288433265898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007326576866531796,0.019794611183261344,0.028278015976087634,0.033676546298795275,0.03733983473206117,0.03386935095317769,0.03110581757369639,0.029820453211146954,0.026349969432263476,0.01908766078385915,0.010347183118522974,0.0013496325806769097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0075193815209142105,0.023393631398399773,0.032905327681265605,0.03952495414839522,0.03843239444022819,0.03444776491632494,0.03136289044620628,0.028599357066724986,0.024164850015929426,0.017930832857564655,0.011054133517925165,0.0020565829800791003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007326576866531796,0.023072290307762408,0.03341947342628538,0.03965349058465016,0.044152265853573194,0.03958922236652269,0.03541178818823701,0.03226264549999089,0.027635333794812908,0.020180220492026175,0.011439742826689995,0.0023136558525889877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008097795484061459,0.023393631398399773,0.03341947342628538,0.04036044098405235,0.03952495414839522,0.03663288433265898,0.032905327681265605,0.030077526083656842,0.025578750814733812,0.01895912434760421,0.010925597081670221,0.0031491426882461226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006940967557766963,0.021979730599595387,0.032005572627481,0.03856093087648313,0.04286690149102375,0.03991056345716005,0.03605447036951172,0.032391181936245836,0.027635333794812908,0.019923147619516284,0.011054133517925165,0.0019923147619516288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006683894685257076,0.02210826703585033,0.03213410906373595,0.03868946731273807,0.04093885494719959,0.03766117582269853,0.034576301352579865,0.03142715866433375,0.02660704230477336,0.019409001874496512,0.008869014101591122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619315,0.01314894887692226,0.002921988639316058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010957457397435217,0.032781060047327025,0.04812150040373634,0.05688746632168451,0.04748231538888594,0.04401245387969813,0.037620603731194246,0.029676447118053718,0.02584133702895139,0.017805868270832227,0.011870578847221485,0.004748231538888594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010318272382584828,0.027576267783545296,0.04008603164561718,0.04793887611377907,0.052869731942624926,0.048030188258757704,0.04373851744476224,0.0411817773853607,0.03679879442638661,0.026754458478737662,0.014336006761644409,0.0016436186096152824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010318272382584828,0.032872372192305654,0.04647788179412105,0.05670484203172726,0.05496991127713334,0.049125933998501216,0.04410376602467675,0.03962947092072404,0.03305499648226291,0.024836903434186493,0.015340440356409303,0.002556740059401551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010135648092627576,0.03259843575736977,0.04775625182382182,0.05679615417670589,0.06419243791997466,0.05606565701687687,0.05186529834786004,0.04583869677927066,0.038807661615916395,0.028763325668267448,0.01597962537125969,0.0028306764943374315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01114008168739247,0.033146308627241536,0.04775625182382182,0.0582571484963639,0.05697877846666313,0.05332629266751806,0.047025754663992815,0.04328195671986911,0.0364335458464721,0.027119707058652163,0.015340440356409303,0.00401773437905958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009587775222755819,0.03095481714775449,0.04583869677927066,0.05588303272691963,0.06209225858546624,0.058165836351385274,0.05241317121773179,0.04593000892424928,0.039172910195830905,0.028215452798395685,0.015431752501387931,0.002374115769444297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009131214497862682,0.03141137787264763,0.04620394535918517,0.05597434487189825,0.058713709221257036,0.05405678982734707,0.049491182578415734,0.04382982958974087,0.03689010657136523,0.026937082768694914,0.012235827427135994,0.0008218093048076412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007670220178204652,0.03022431998792548,0.04446901460459125,0.054513350552240214,0.058165836351385274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619316,0.003637516275618712,0.000763115302577352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030015868568042513,0.009131946454175645,0.013634326739382025,0.016101732884382127,0.013176457557835612,0.012438779432010839,0.010352930938299408,0.008190770914330245,0.00699522360695906,0.004705877699227004,0.0031796470940723006,0.0012464216608763417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002848963796288781,0.007605715849020941,0.011166920594381919,0.01340539214860882,0.014677250986237737,0.013278206264845925,0.012031784603969585,0.011344980831649967,0.010123996347526204,0.007402218435000314,0.003968199573402231,0.00043243200479383277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027980894427836246,0.00908107210067049,0.012947522967062407,0.016101732884382127,0.015516677819072823,0.013507140855619132,0.012133533310979897,0.010912548826856133,0.009004760570412754,0.006817163369691012,0.00429888287118575,0.0006868037723196167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027980894427836246,0.009131946454175645,0.013456266502113973,0.016025421354124395,0.01828933008510387,0.015872798293608922,0.014575502279227425,0.012769462729794356,0.010734488589588085,0.008038147853814773,0.004476943108453799,0.000763115302577352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003077898387061986,0.009284569514691116,0.013507140855619132,0.016534164889175963,0.016025421354124395,0.015084245814278991,0.013023834497320141,0.012184407664485053,0.010098559170773623,0.007580278672268363,0.004248008517680593,0.0010683614236082926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026454663822681533,0.008623202919124077,0.012972960143814986,0.01592367264711408,0.017577089136031676,0.01658503924268112,0.014702688162990316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619317,0.02636521588466232,0.005609620400991983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021503544870469266,0.06525858399820672,0.09779438232396022,0.1151842055670354,0.0931196986564669,0.08825802764227386,0.0731120525595955,0.05983595094391447,0.04955164687542918,0.0336577224059519,0.02243848160396793,0.008788405294887437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020381620790270873,0.05329139380942383,0.07872167296058748,0.09461559743006477,0.1037779774183517,0.09386764804326582,0.0850792427483784,0.08302238193468135,0.0725510905194963,0.0531044064627241,0.02879605139175885,0.003365772240595189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020194633443571135,0.06600653338500566,0.09386764804326582,0.11611914230053405,0.1114444586330407,0.09480258477676448,0.08694911621537574,0.07872167296058748,0.06413665991800833,0.048990684835329985,0.03103989955215564,0.005048658360892784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020007646096871404,0.06544557134490646,0.09629848355036238,0.11481023087363591,0.13107813003651264,0.11742805372743216,0.10433893945845088,0.09218476192296823,0.07685179949359017,0.05777909013021741,0.03253579832575349,0.0057966077476917155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0222514942572682,0.06675448277180458,0.09667245824376182,0.1187369651543303,0.11424926883353671,0.10751772435234633,0.09274572396306745,0.08937995172247226,0.07236410317279657,0.054600305236321964,0.0314138742455551,0.007666481214689044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018885722016673004,0.06133184971751235,0.09293271130976719,0.11424926883353671,0.1256554969822204,0.11854997780763055,0.10433893945845088,0.09199777457626852,0.07778673622708882,0.056657166050019026,0.030852912205455905,0.004861671014193051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018137772629874076,0.06357569787790913,0.09442861008336503,0.11424926883353671,0.11854997780763055,0.10789169904574579,0.09854233171075916,0.08769706560217466,0.07199012847939712,0.05273043176932464,0.024308355070965258,0.0018698734669973273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015332962429378087,0.06095787502411288,0.08994091376257145,0.11275337005993885,0.11780202842083164,0.11181843332644018,0.09629848355036238,0.08788405294887439,0.07498192602659283,0.054600305236321964,0.027300152618160982,0.0011219240801983966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01682886120297595 +2619318,0.010937766771553153,0.0023224025336859434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008615364237867209,0.02599592513512975,0.038881513386548536,0.045174475090729804,0.036484194642098525,0.034761121794525084,0.029367154619512573,0.024722349552140692,0.0200775444847688,0.013784582780587534,0.008989945291687524,0.0036708943274390716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008240783184046897,0.021276203856993803,0.031165143677850077,0.037308272960503215,0.04052967002335792,0.03663402706362665,0.033637378633064145,0.03416179210841259,0.029516987041040697,0.021500952489285994,0.011761845089957841,0.0014983242152812539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008016034551754708,0.026220673767421935,0.037308272960503215,0.04547413993378605,0.0431517374001001,0.03753302159279541,0.03401195968688446,0.03198922199625477,0.025771176502837567,0.019777879641712553,0.012660839619126594,0.002247486322921881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008090950762518768,0.026220673767421935,0.03858184854349229,0.04509955887996573,0.050643358476506375,0.04614838583066262,0.0407544186556501,0.03768285401432353,0.031090227467086014,0.023523690179915683,0.013260169305239095,0.002472234955214069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008989945291687524,0.026894919664298505,0.038881513386548536,0.0469724641490673,0.04502464266920168,0.042402575292459485,0.037158440538975095,0.03685877569591885,0.02974173567333288,0.022250114596926614,0.01273575582989066,0.003221397062854696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0076414534979343945,0.024647433341376625,0.037008608117446974,0.04509955887996573,0.04936978289351731,0.04682263172753918,0.04202799423863916,0.03783268643585166,0.031614640942434456,0.02307419291533131,0.012660839619126594,0.002097653901393755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007341788654878143,0.02547151165978132,0.03768285401432353,0.04494972645843761,0.04674771551677512,0.042402575292459485,0.038881513386548536,0.03536045148063759,0.028767824933400073,0.02112637143546568,0.009963856031620338,0.0008240783184046896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006218045493417204,0.024572517130612564,0.03558520011292978,0.04435039677232511,0.046298218252190736,0.043825983296976685,0.03820726748967197,0.036559110852862585,0.03049089778097351,0.022100282175398497,0.011162515403845339,0.0005244134753484387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006667542758001578 +2620679,0.002193531182974463,0.0007997249104594396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016337237456528556,0.004352788441214951,0.006569168907345398,0.008511357975604037,0.007860153405658493,0.007517414158318733,0.006854784946795196,0.005129664068518406,0.004192843459123062,0.003118927150791815,0.002193531182974463,0.0009596698925513276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014052309140930156,0.0037130085128473985,0.005632348297950053,0.0073231952514928676,0.00864845367453994,0.008477084050870063,0.007654509857254637,0.006820511022061221,0.005415280107968206,0.004135720251233103,0.0024677225808462707,0.0007426017025694797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015537512546069114,0.004318514516480974,0.006489196416299454,0.00835141299351215,0.00860275510822797,0.008214317294576246,0.007483140233584758,0.006374950000519534,0.005278184409032301,0.003987199910719206,0.0024677225808462707,0.0008796974015053838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014623541219829753,0.004124295609655111,0.006272128226317606,0.008180043369842268,0.009562425000779301,0.009356781452375444,0.008214317294576246,0.006854784946795196,0.00549525259901415,0.004204268100701055,0.002456297939268279,0.0009253959678173517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015994498209188793,0.004124295609655111,0.0061921557352716625,0.008031523029328374,0.008454234767714076,0.0081343448035303,0.007243222760446924,0.0061921557352716625,0.005003993011160495,0.003792981003893343,0.002262079032442415,0.0008796974015053838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013481077062030558,0.003884378136517279,0.00595223826213383,0.007780180914612548,0.009116863979237612,0.00892264507241175,0.00812292016195231,0.0066034428320793735,0.0053124583337662784,0.00401004919387519,0.002319202240332375,0.0007997249104594396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012909844983130952,0.003678734588113423,0.005643772939528046,0.0073231952514928676,0.00812292016195231,0.007951550538282429,0.007197524194134958,0.005883690412665879,0.004718376971710694,0.0036330360218014535,0.0019193397851026551,0.0003770131720737359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010624916667532553,0.0034845156812875586,0.005483827957436158,0.007197524194134958,0.008442810126136084,0.008237166577732227,0.007483140233584758,0.006340676075785558,0.005061116219050454,0.0038386795702053103,0.0021021340503505274,0.0005826567204775918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011538887993771914 +2620680,0.007335523359144955,0.002619829771123198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005314511821421346,0.014409063741177593,0.021782013239910022,0.028181883109368113,0.026048593152882084,0.025262644221545127,0.02264281445042193,0.016916615093538364,0.013997376205715372,0.010179909967793,0.007260671079970008,0.003218648004522787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00456598902967186,0.01227577378469156,0.018488512956212285,0.023952729335983528,0.02848129222606792,0.027807621713493373,0.025337496500720074,0.022680240590009407,0.01811425156033754,0.01377281936819053,0.008271176848831814,0.0025075513523607758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005164807263071449,0.014483916020352542,0.0218194393794975,0.028069604690605696,0.02934209343657982,0.027957326271843275,0.025636905617419874,0.02189429165867245,0.018226529979099966,0.013697967089015581,0.008495733686356657,0.003031517306585416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004977676565134079,0.01418450690365275,0.021557456402385173,0.028219309248955594,0.033159559674502195,0.03267301985986503,0.02878070134276772,0.02372817249845868,0.019237035747961772,0.01467104671828991,0.008570585965531608,0.0032560741441102605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005501642519358718,0.014409063741177593,0.021520030262797703,0.027845047853080847,0.029154962738642452,0.027882473992668327,0.02451412142979565,0.020846359750223167,0.01729087648941311,0.0126500351805663,0.007709784755019698,0.003031517306585416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00456598902967186,0.013398557972315785,0.020472098354348423,0.026647411386281673,0.03143795725347839,0.030577156042966472,0.02773276943431843,0.022343405333722137,0.018151677699925015,0.013660540949428106,0.00789691545295707,0.0026946820502981466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004341432192147014,0.012575182901391351,0.019424166445899144,0.025000661244432804,0.027957326271843275,0.027395934178031163,0.0244392691506207,0.0202101153772361,0.01609324002261393,0.012425478343041458,0.0065495744278079955,0.001272488745974125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035554832608100553,0.011789233970054394,0.018713069793737134,0.024289564592270798,0.028556144505242867,0.027845047853080847,0.025150365802782702,0.021258047285685384,0.016991467372713315,0.012949444297266096,0.007110966521620111,0.0019461592585486615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038174662379223748 +2620681,0.006277871070944013,0.0022398434474222356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004448139804035708,0.01217717705218286,0.018328859759891816,0.02359722392495538,0.021830586839664608,0.02167285138562079,0.019022895757684625,0.014164643773134984,0.011924800325712746,0.008706997063218832,0.00618322979851772,0.002807691081979985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038487450786691933,0.01047363414850961,0.015584262859529357,0.0200008555727563,0.023849600651425492,0.02296628210878011,0.02129428629591562,0.019022895757684625,0.015363433223868008,0.011640876508433873,0.007003454159545583,0.0021452021749959437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004321951440800653,0.012303365415417912,0.01842350103231811,0.02350258265252909,0.0248906546481147,0.0237549593789992,0.02145202174995944,0.018486595213935638,0.015394980314676773,0.01145159396358129,0.007066548341163109,0.00252376726470111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004101121805139304,0.011830159053286455,0.017761012125334062,0.023155564653632686,0.027162045186345702,0.02668883882421424,0.02353412974333785,0.019149084120919677,0.01586818667680823,0.012050988688947805,0.007035001250354346,0.00268150271874493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004479686894844471,0.011893253234903983,0.017634823762099013,0.02268235829150123,0.0237549593789992,0.022871640836353815,0.01946455502900732,0.01671995812864486,0.014196190863943746,0.01000042778637815,0.006309418161752777,0.002492220173892346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003691009624625374,0.011104575964684888,0.01684614649187991,0.02167285138562079,0.025963255735612673,0.02511148428377605,0.022713905382309996,0.018265765578274286,0.0151110564973979,0.011325405600346233,0.006530247797414123,0.0022398434474222356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003596368352199083,0.01047363414850961,0.0162467517665134,0.020757985752166634,0.02366031810657291,0.02302937629039763,0.0203478735716527,0.017130070309158783,0.013691437411003524,0.010568275420935901,0.005552287982342444,0.0011041481783067358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002965426536023804,0.00984269233233433,0.015741998313573178,0.02025323229922641,0.023881147742234255,0.023471035561720324,0.021010362478636746,0.0177294650345253,0.014322379227178803,0.010978387601449828,0.00608858852609143,0.001671995812864486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003186256171685152 +2620682,0.02083799140993901,0.007404362429927567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01544338449670607,0.041464429607594375,0.060504218713122414,0.0764764862405376,0.06981256005360278,0.06822591096147544,0.05986955907627147,0.0453781640348418,0.038714237847907,0.02951167311356845,0.020097555166946255,0.009096788128196727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013327852373869622,0.035329386451368676,0.0515132071910675,0.0651583893833626,0.07668803945282122,0.07372629448085022,0.06716814490005722,0.06113887834997334,0.05024388791736564,0.038079578211056064,0.023059300138917285,0.006769702793076633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014914501465996958,0.041464429607594375,0.06060999531926423,0.07668803945282122,0.0801786674555014,0.07679381605896306,0.06907212381061004,0.06060999531926423,0.050666994341932926,0.03829113142333972,0.024117066200335508,0.008250575279062146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014385618435287843,0.04082976997074345,0.06039844210698058,0.07689959266510489,0.09012166843283267,0.08694837024857802,0.07689959266510489,0.06304285726052614,0.05299407967705302,0.0400893337277507,0.023905512988051856,0.00888523491591308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015760714315131534,0.040935546576885265,0.05944645265170418,0.07499561375455208,0.07764002890809762,0.0741494009054175,0.06325441047280979,0.0561673778613077,0.046330153490118216,0.033319630934674056,0.021155321228364478,0.008462128491345791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013222075767727801,0.038079578211056064,0.05627315446744952,0.0712934325395883,0.0840924018827488,0.08081332709235232,0.07288008163171565,0.06039844210698058,0.05024388791736564,0.03797380160491424,0.022213087289782704,0.007404362429927567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012693192737018688,0.03638715251278691,0.05447495216303854,0.06875479399218457,0.07795735872652311,0.07488983714841026,0.06663926186934811,0.05690781410430044,0.04643593009626003,0.0354351630575105,0.018510906074818916,0.0037021812149637835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010471884008040415,0.03416584378380863,0.05257097325248574,0.06685081508163174,0.07880357157565768,0.07594760320982848,0.06812013435533362,0.058282909984144135,0.047493696157678254,0.03596404608821962,0.02020333177308808,0.0052888303070911195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011106543644891352 +2620683,0.012673739616565262,0.004405310561907711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009962779270775903,0.026160767336867338,0.03734347876324846,0.045747455835195475,0.041003275230064085,0.038698958936143134,0.03415810035694595,0.026906281431959406,0.022975388930564836,0.017892338282209787,0.011995999530117925,0.005489694700223457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008742847115170689,0.02216210082682803,0.031514914019801325,0.0390378289793668,0.04567968182655074,0.043239817515340305,0.038766732944787864,0.036530190659511644,0.03076939992470925,0.02317871095649904,0.014096993798104678,0.0039308925013945735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009623909227552234,0.026160767336867338,0.03734347876324846,0.0462218738957086,0.047509580059958555,0.045069715748748136,0.03998666510039309,0.03619132061628797,0.03009165983826191,0.02317871095649904,0.014706959875907285,0.00487972862242085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009352813192973297,0.025889671302288402,0.03727570475460372,0.046289647904353345,0.0541514329071425,0.050220540405747915,0.04567968182655074,0.037682348806472116,0.032734846175406535,0.02473751315532792,0.015045829919130956,0.005354146682933988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010166101296710103,0.026025219319577873,0.03686906070273531,0.045747455835195475,0.04676406596486648,0.04418865363636659,0.03856341091885366,0.034225874365590686,0.028939501691301436,0.02148436074038069,0.013554801728946807,0.0054219206915787225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008742847115170689,0.024466417120748988,0.03531025850390643,0.043714235575853445,0.05083050648355052,0.0485939641982743,0.043172043506695575,0.03714015673731426,0.031243817985222386,0.02358535500836744,0.013961445780815209,0.004473084570552447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008403977071947021,0.02358535500836744,0.03415810035694595,0.042426529411603506,0.04771290208589276,0.04493416773145866,0.03991889109174834,0.03510693647797223,0.029346145743169832,0.02216210082682803,0.01158935547824952,0.002304316293920957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006912948881762871,0.02195877880089383,0.032667072166761804,0.04086772721277463,0.04757735406860329,0.044459749670945535,0.04025776113497201,0.03490361445203803,0.02941391975181457,0.022026552809538563,0.012470417590631062,0.003185378406302499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007455140950920744 +2620684,0.007414325342337773,0.002552472658837594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005874738659229382,0.015476897709142238,0.02220246058798415,0.027185859588571837,0.024025655344296713,0.022891223051480006,0.0199741114413799,0.015679474904288077,0.013329579440596323,0.010412467830496217,0.007009170952046091,0.0032007196833042837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005185976195733523,0.01320803312350882,0.01883967914856319,0.023093800246625846,0.026659158881192645,0.02483596412488008,0.02244555322215916,0.02131112092934245,0.018110401246038164,0.013694218391858836,0.008305665000979472,0.002228349146604249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005672161464083541,0.015679474904288077,0.022364522344100825,0.027428952222746838,0.027955652930126026,0.02605142729575512,0.02325586200274252,0.021068028295167438,0.017462154221571474,0.013491641196712995,0.008629788513212817,0.0028360807320417705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005510099707966868,0.015517413148171405,0.022283491466042485,0.027428952222746838,0.031885650515955336,0.02892802346682606,0.026456581686046813,0.02224297602701332,0.019244833538854873,0.014504527172442197,0.00883236570835866,0.0030791733662167806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005955769537287719,0.015476897709142238,0.022040398831867473,0.027064313271484324,0.02730740590565934,0.025443695710317602,0.02244555322215916,0.01956895705108822,0.01713803070933813,0.012843394172246303,0.007981541488746127,0.0031196888052459487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005145460756704355,0.014545042611471366,0.021027512856138273,0.02597039641769678,0.029616785930321923,0.02807719924721353,0.024876479563909253,0.021918852514779975,0.018475040197300677,0.013896795587004677,0.008305665000979472,0.0025929880978667616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049428835615585144,0.014099372782150515,0.02041978127070075,0.025281633954200928,0.027996168369155194,0.02625400449090097,0.023336892880800854,0.020703389343904928,0.017462154221571474,0.01320803312350882,0.006847109195929418,0.0013370094879625494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004051543902916815,0.013167517684479652,0.01956895705108822,0.02430926341750089,0.028036683808184363,0.025929880978667618,0.023498954636917528,0.02066287390487576,0.017300092465454803,0.012924425050304639,0.007333294464279437,0.001782679317283399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00437566741515016 +2620685,0.007672301483857084,0.0025574338279523616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005924721701422969,0.01606920921896734,0.023400519525764107,0.028515387181668832,0.025318594896728375,0.023912006291354575,0.020757837903546666,0.01589871363043718,0.013426527596749898,0.010442854797472145,0.00720343861539915,0.0031967922849404514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005285363244434881,0.013639647082412594,0.01977748826949826,0.024295621365547432,0.028089148210343435,0.025148099308198224,0.023400519525764107,0.022505417685980782,0.019180753709642707,0.014364253333665762,0.008737898912170569,0.002301690445157125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005754226112892813,0.016495448190292732,0.023698886805691877,0.028984250050126767,0.02928261733005454,0.027364541959090265,0.024551364748342665,0.022164426508920466,0.01837089966412446,0.014236381642268144,0.009164137883495961,0.002898425005012676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005583730524362656,0.016282328704630037,0.023613639011426806,0.028856378358729142,0.03328926366051324,0.030390838655500563,0.027620285341885507,0.023912006291354575,0.020459470623618893,0.015557722453376865,0.009462505163423738,0.0031967922849404514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006095217289953128,0.016367576498895114,0.023613639011426806,0.028941626152994223,0.02932524122718708,0.027108798576295026,0.02395463018848712,0.021439820257667292,0.01913812981251017,0.014364253333665762,0.008823146706435647,0.003239416182072992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005370611038699959,0.015770841939039562,0.02301690445157125,0.02813177210747598,0.032010546746537055,0.0304334625526331,0.026938302987764867,0.023912006291354575,0.020246351137956194,0.015131483482051473,0.009036266192098344,0.0027279294164825186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005242739347302342,0.015301979070581628,0.022334922097450624,0.0274071658562228,0.03034821475836802,0.02796127651894582,0.02493497982253553,0.022207050406053003,0.018839762532582398,0.01410850995087053,0.00733131030679677,0.001406588605373799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004219765816121396,0.01410850995087053,0.021141452977739523,0.025957953353716468,0.03013509527270532,0.027662909239018048,0.024679236439740286,0.02195130702325777,0.01845614745838954,0.013810142670942754,0.007800173175254702,0.0017902036795666527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004432885301784093 +2620686,0.008850237706530813,0.0029500792355102706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069001853305155495,0.01875050361553138,0.027300733264213693,0.033150890392259484,0.029200784297254204,0.02755073997908744,0.02400064462788017,0.01850049690065763,0.015450414979197857,0.012050323656914837,0.00825022159083381,0.0037000993801315253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006150165185894295,0.016000429751920113,0.02305061911135991,0.0283007601237087,0.03265087696251199,0.028850774896430953,0.02700072520636519,0.02635070774769344,0.022450602995662906,0.016800451239516116,0.010200273966849072,0.002600069834687018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006700179958616548,0.019300518388253637,0.027700744008011695,0.03370090516498174,0.033450898450107985,0.03130084070219372,0.028350761466683454,0.02595069700389543,0.021400574793193145,0.01660044586761712,0.010750288739571325,0.003350089979308274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006450173243742794,0.019050511673379886,0.027600741322062198,0.033650903822006986,0.03865103811948203,0.03495093873935049,0.03210086218978972,0.0282007574377592,0.02395064328490542,0.01830049152875863,0.01110029814039458,0.0036500980371567755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007100190702414551,0.019200515702304136,0.027600741322062198,0.03375090650795649,0.03415091725175449,0.03180085413194122,0.0279007493799107,0.025700690289021683,0.022500604338637657,0.016900453925465617,0.010400279338748071,0.003750100723106276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006250167871843795,0.018550498243632384,0.027050726549339942,0.032700878305486736,0.03725100051618901,0.035450952169098,0.03155084741706748,0.0282007574377592,0.023800639255981172,0.017850479441985874,0.010650286053621826,0.0032000859503840224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006200166528869044,0.018000483470910128,0.026300706404718686,0.03210086218978972,0.035400950826123254,0.03235086890466348,0.0288007735534562,0.026200703718769185,0.02210059359483966,0.01655044452464237,0.008600230991657062,0.001650044318166762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004950132954500284,0.016650447210591866,0.024900668801425673,0.030450817871622963,0.035450952169098,0.03245087159061298,0.028850774896430953,0.02595069700389543,0.021700582851041653,0.016250436466793864,0.009200247107354065,0.002000053718990014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005150138326399286 +2620687,0.011331582742826923,0.003628652900792892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008594177922930532,0.024063698184205493,0.03494965688658417,0.04252526557420441,0.03685947420279095,0.03507697804099795,0.030557077059308563,0.022790486640067633,0.019607457779722996,0.014960235643619816,0.010567655816344213,0.004583561558896283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077029298420340335,0.020626027015033282,0.02985681071003274,0.03647751073954959,0.04150669633889414,0.03584090496748067,0.03431305111451524,0.0338037664968601,0.028774580897515556,0.021644596250343564,0.013050418327413034,0.003183028860344642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008594177922930532,0.02514592799672267,0.03603188669910135,0.04328919250068713,0.042907229037445774,0.0391512549822391,0.03577724439027378,0.03259421552992913,0.02711940589013635,0.020880669323860852,0.013687024099481958,0.004074276941241141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008148553882482283,0.024572982801860637,0.03533162034982553,0.043225531923480234,0.048827662717686814,0.04507168866248013,0.04067910883520453,0.03615920785351514,0.030620737636515457,0.023236110680515884,0.014196308717137103,0.004392579827275606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008976141386171891,0.024763964533481314,0.035522602081446204,0.043352853077894014,0.0435438348095147,0.040042503063135594,0.03526795977261863,0.032976178993170485,0.028774580897515556,0.021708256827550454,0.013496042367861283,0.004583561558896283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007893911573654714,0.024254679915826173,0.03482233573217038,0.04201598095654928,0.047172487710307597,0.044944367508066345,0.039724200177101134,0.035586262658653105,0.030111453018860316,0.022472183754033172,0.013496042367861283,0.0038196346324135704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007766590419240925,0.02349075298934346,0.03412206938289456,0.041252054030066564,0.044626064622031884,0.04074276941241141,0.036350189585135806,0.03361278476523943,0.028265296279860425,0.021071651055481533,0.011013279856792462,0.0019734778934136785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006175075989068606,0.02177191740475735,0.032275912643894664,0.03921491555944599,0.04488070693085946,0.04150669633889414,0.03673215304837717,0.03291251841596359,0.027692351084998387,0.020626027015033282,0.011777206783275176,0.0023554413566550347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063023971434823895 +2620688,0.018804317103446877,0.005652164678492702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014999975492922943,0.042282539614108876,0.059130338175000574,0.07195640417619557,0.06032598839545096,0.05630425583575423,0.05054339568267513,0.03902167537651692,0.03293472879967864,0.024347786307353177,0.017499971408410097,0.007391292271875072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01380432527247256,0.03586950661351138,0.05097817758102072,0.06173902956507414,0.06913032183694919,0.0626085933617653,0.05717381963244541,0.056412951310340624,0.04739122691966959,0.036304288511856964,0.021521703968106827,0.0045652099326287205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014782584543750144,0.04249993056328166,0.06043468387003735,0.07271727249830036,0.07108684037950437,0.06608684854853007,0.05891294722582778,0.05304339159816228,0.044673840055009635,0.03369559712178342,0.022934745137730004,0.0059782511022518975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014021716221645355,0.04163036676659048,0.05923903364958697,0.07271727249830036,0.08119551951603941,0.07663030958341069,0.06771728066732603,0.06043468387003735,0.05054339568267513,0.038043416105239335,0.023586917985248392,0.006521728475183887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015869539289614126,0.042391235088695266,0.05978251102251897,0.07293466344747314,0.07249988154912755,0.06619554402311645,0.05934772912417338,0.05619556036116782,0.04565209932628722,0.034999942816820194,0.022391267764798013,0.007391292271875072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013478238848713369,0.040978193919072085,0.056956428683272615,0.0689129308877764,0.07739117790551546,0.07249988154912755,0.06369554810762931,0.056630342259513425,0.04673905407215118,0.035217333765992995,0.02097822659517484,0.0053260782547335074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012717370526608578,0.03826080705441214,0.05532599656447664,0.06652163044687566,0.0705433630065724,0.06576076212477086,0.059130338175000574,0.05456512824237185,0.04489123100418242,0.033478206172610624,0.017391275933823697,0.002826082339246351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010434765560294221,0.03586950661351138,0.05271730517440309,0.06423902548056129,0.07228249059995476,0.06793467161649883,0.06065207481921015,0.05315208707274868,0.04402166720749123,0.033152119748851426,0.018913012578033274,0.002934777813832749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010760851984053414 +2620689,0.011324218747586608,0.0032163461531606943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009179987978812814,0.026266826917479,0.03638491585763034,0.04429176681748372,0.0361838942230578,0.03330258412751803,0.030287259608929862,0.023720552879560118,0.019968149034205972,0.01500961538141657,0.010520132209296438,0.004422475960595956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008576923075095184,0.022246394226028136,0.031493389416365127,0.03785907451116234,0.041745492779564845,0.03826111778030741,0.034374699511904916,0.03390564903123565,0.028411057686252798,0.021911358168407228,0.012865384612642777,0.00241225961487052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00891195913271609,0.025998798071382282,0.03665294470372707,0.04422475960595955,0.04281760816395174,0.039668269222315214,0.03504477162714673,0.031627403839413495,0.02686989182119663,0.019968149034205972,0.013736478362457132,0.003283353364684875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008375901440522643,0.02539573316766465,0.03625090143458199,0.04429176681748372,0.049384314893321485,0.04703906248997515,0.04074038460670213,0.03651893028067871,0.030220252397405688,0.022782451918221584,0.014138521631602218,0.0035513822107815997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009716045671006264,0.026199819705954818,0.03671995191525126,0.044559795663580454,0.04409074518291118,0.0404723557606054,0.03665294470372707,0.03484374999257418,0.027673978359486807,0.021308293264689596,0.013736478362457132,0.004154447114499231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008442908652046822,0.025596754802237193,0.03558082931934018,0.04321965143309682,0.04891526441265222,0.04556490383644317,0.04007031249146031,0.03524579326171927,0.028880108166922065,0.021576322110786323,0.012865384612642777,0.0029483173070639695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007839843748329191,0.023787560091084303,0.034307692300380735,0.041410456721943927,0.04328665864462101,0.04040534854908122,0.03638491585763034,0.03363762018513892,0.027271935090341717,0.020370192303351065,0.010453124997772255,0.001541165865056166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006432692306321389,0.022246394226028136,0.03256550480075202,0.03960126201079105,0.04409074518291118,0.04161147835651648,0.03698798076134799,0.03236448316617948,0.026266826917479,0.019700120188109252,0.011190204324538246,0.0014071514420078036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00656670672936975 +2620690,0.012964949505741022,0.0034294382563573034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010790183782197366,0.031952327168987556,0.04491727667472858,0.05411820858202866,0.04382989381295675,0.04006587621451581,0.0357163447674285,0.028439244077109346,0.023671488452417483,0.01798363963699561,0.012044856315011013,0.00493504529573368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010204669933550998,0.027100926708774786,0.038643914010660335,0.04659017338514678,0.0511069945032759,0.0467574630561886,0.04106961424076673,0.04073503489868308,0.034378027399093944,0.026180833518044778,0.014888780722721947,0.002342055394585475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010371959604592819,0.031534102991383,0.04483363183920767,0.05411820858202866,0.05202708769400592,0.047426621740355876,0.04207335226701764,0.03780746565545123,0.031785037497945735,0.023504198781375663,0.015976163584493778,0.003345793420836393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009786445755946449,0.03103223397825755,0.04466634216816585,0.054369143088591386,0.060558860917138725,0.05637661914109322,0.04943409779285771,0.043328024799831284,0.03613456894503304,0.027351861215337513,0.016478032597619235,0.003596727927399123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011292052795322825,0.031868682333466646,0.0451682111812913,0.054787367266195944,0.05403456374650775,0.04985232197046225,0.044415407661603123,0.04198970743149673,0.03412709289253121,0.025762609340440234,0.016059808420014688,0.00451682111812913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009786445755946449,0.030614009800652996,0.043578959306394015,0.05311447055577774,0.059722412561929616,0.05545652595036321,0.049099518450774066,0.043495314470873105,0.035799989602949396,0.026682702531170232,0.015474294571368317,0.003094858914273663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009200931907300083,0.029275692432318437,0.0425752212801431,0.05169250835192227,0.053783629239945015,0.04993596680598317,0.04466634216816585,0.040651390063162166,0.03303971003075938,0.0246752264786684,0.012128501150531925,0.0015056070393763767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007611680032402795,0.027268216379816607,0.04040045555659944,0.049183163286294976,0.054369143088591386,0.0502705461480668,0.04374624897743584,0.039145783023785796,0.031868682333466646,0.0238387781234593,0.013048594341261934,0.0011710276972927375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007778969703444613 +2620691,0.0034014344752700794,0.0008383817368623433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002850497905331968,0.008623355007726962,0.012479910997293741,0.01501900997179112,0.012216419594279862,0.011234315273955402,0.009940812022796357,0.007880788326506028,0.006563331311436632,0.004766799018160181,0.0030900355444354937,0.0012455957233383386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002682821557959499,0.007281944228747212,0.010659424940106937,0.012863171219859386,0.014156674471018428,0.012671541108576562,0.011497806676969282,0.011210361510045048,0.009605459328051421,0.007210082937016153,0.0040002785730288955,0.0005509365699381114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026588677940491464,0.008647308771637314,0.012503864761204094,0.015210640083073945,0.014731564804866893,0.01303084756723185,0.01166548302434175,0.010371979773182705,0.00852753995208555,0.006347747436243458,0.004239816212132422,0.0008144279729519906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002587006502318088,0.008623355007726962,0.012599679816845503,0.015330408902625707,0.01722275625154357,0.015138778791342884,0.013965044359735607,0.012120604538638452,0.010060580842348121,0.007593343159581795,0.004431446323415244,0.0008862892646830485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029223591970630254,0.008743123827278723,0.012623633580755859,0.01537831643044641,0.015234593846984295,0.01408481317928737,0.012455957233383387,0.011761298079983162,0.009677320619782478,0.007305897992657563,0.004383538795594538,0.0011497806676969281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024672376827663245,0.008192187257340614,0.012072697010817745,0.014731564804866893,0.016456235806412287,0.015066917499611827,0.013246431442425027,0.011785251843893516,0.009821043203244595,0.007329851756567918,0.004144001156491012,0.0007425666812209329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022995613353938562,0.007952649618237087,0.011785251843893516,0.014372258346211598,0.014923194916149712,0.01372550672063208,0.012312234649921273,0.011162453982224345,0.009030568994202955,0.0067549614227194535,0.003209804363987258,0.0003353526947449374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018923473489178605,0.007449620576119681,0.011162453982224345,0.013701552956721728,0.0147794723326876,0.01389318306800455,0.011928974427355628,0.01058756364837588,0.008838938882920134,0.006635192603167689,0.0034732957670011375,0.00021558387519317397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001988162404559272 +2620692,0.008637207650181907,0.0020536018189243692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007066806259239741,0.021321218884714777,0.031528827925838845,0.037266833008127526,0.030139626695390012,0.02832762509045674,0.02416002139911023,0.01975081749377261,0.016187214337403853,0.011294810004084029,0.0074896066337241714,0.003020002674888779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006704405938253089,0.017576415567852686,0.02579082284355017,0.030985227444358866,0.03406563017274542,0.030804027283865543,0.02814642492996342,0.02754242439498566,0.023737221024625797,0.017576415567852686,0.009664008559644091,0.0013288011769510626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006644005884755313,0.021623219152203648,0.030743627230367766,0.03775003343610973,0.036360832205660894,0.03134762776534552,0.028508825250950068,0.025911622950545717,0.02095881856372812,0.015945614123412753,0.010388809201617399,0.001932801711928818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006523205777759761,0.021321218884714777,0.03116642760485219,0.03744803316862085,0.04258203771593179,0.03799163365010083,0.0341260302262432,0.03020002674888779,0.025005622148079082,0.018784416637808204,0.010872009629599602,0.0021140018724221444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007308406473230843,0.021683619205701426,0.03128722771184774,0.03835403397108749,0.037266833008127526,0.034911230921714276,0.03050202701637666,0.0294148260534167,0.023737221024625797,0.017999215942337117,0.010630409415608501,0.0027180024073999005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0062212055102708825,0.020113217814759266,0.030079226641892234,0.03690443268714087,0.04089083621799406,0.038293633917589706,0.03382402995875431,0.030139626695390012,0.025247222362070193,0.018603216477314877,0.010388809201617399,0.001812001604933267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00597960529627978,0.020596418242741464,0.03038122690938111,0.036723232526647547,0.03799163365010083,0.03466963070772318,0.03140802781884329,0.028267225036958964,0.02295202032915472,0.016791214872381607,0.007972807061706376,0.0007852006954710823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004832004279822046,0.019026016851799304,0.02808602487646564,0.03497163097521205,0.036783632580145324,0.03473003076122095,0.02971682632090558,0.027059223967003453,0.022650020061665836,0.016670414765386058,0.008576807596684131,0.0004832004279822045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005073604493813147 +2620693,0.005353259938316703,0.0013199819025986389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004289941183445577,0.012796491222414585,0.018993072931835973,0.02207303070456613,0.01774642335715948,0.016976433913976942,0.014446468600662883,0.012136500271115267,0.009679867285723355,0.006673241840915343,0.004583270495134164,0.0018699743620147387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00410661036364021,0.010449856728905893,0.015216458043845422,0.018113084996770213,0.0199097270308628,0.018076418832809138,0.016939767750015867,0.016683104602288355,0.014226471616896445,0.010449856728905893,0.005829920069810654,0.0008799879350657595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004069944199679138,0.013053154370142097,0.018223083488653438,0.022366360016254718,0.021486372081188962,0.018883074439952758,0.017013100077938013,0.015803116667222596,0.012576494238648143,0.009679867285723355,0.006379912529226755,0.0012466495746764924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004033278035718064,0.012833157386375657,0.01858974512826416,0.02203636454060506,0.025189654641257365,0.02251302467209901,0.020129724014629247,0.01829641581657558,0.0151064595519622,0.011219846172088436,0.00663657567695427,0.0013566480665597122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00443660583928987,0.01308982053410317,0.01869974362014739,0.022769687819826526,0.02207303070456613,0.020643050310084274,0.018186417324692363,0.0178564218490427,0.014226471616896445,0.010669853712672333,0.0063432463652656835,0.001686643542209372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037399487240294773,0.011843170959426679,0.01759975870131519,0.021486372081188962,0.02361300959093121,0.022366360016254718,0.020129724014629247,0.017783089521120555,0.014739797912351471,0.010853184532477697,0.006086583217538169,0.0011366510827932727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003519951740263038,0.011916503287348825,0.01737976171754875,0.02086304729385071,0.021853033720799688,0.01994639319482388,0.018369748144497728,0.01671977076624943,0.0136031468295582,0.009826531941567648,0.00476660131493953,0.0005499924594160997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002896626952924791,0.011219846172088436,0.01616977830683333,0.02023972250651247,0.02137637358930574,0.020093057850668172,0.01774642335715948,0.016536439946444062,0.013566480665597125,0.009936530433450866,0.005169929118511336,0.0003666616396107331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030799577727301576 +2620694,0.006243129902452,0.0014111184026090139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0050030561547046845,0.015094690791544903,0.02240684978688252,0.025998787538978198,0.020952970220558084,0.019969463455103316,0.016933420831308162,0.014196706353520988,0.01150275303944923,0.00799633761478441,0.005345145464428083,0.002138058185771233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004789250336127561,0.012272453986326877,0.01800244992419378,0.021466104185143175,0.023390356552337285,0.02138058185771233,0.019712896472810763,0.019584612981664494,0.01684789850387731,0.012357976313757726,0.00679902503075252,0.0009407456017393425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0047037280086967125,0.015308496610122025,0.021466104185143175,0.026212593357555318,0.024972519609808,0.021679910003720295,0.019798418800241614,0.018472822725063447,0.014795362645536932,0.011288947220872111,0.007354920159053042,0.0013255960751781645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0047037280086967125,0.015137451955260329,0.022107521640874542,0.025827742884116493,0.02907759132648877,0.026298115684986165,0.02313378957004474,0.02155162651257403,0.01753207712332411,0.013213199588066219,0.007697009468776438,0.0014538795663244382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005131339645850959,0.015436780101268303,0.022321327459451673,0.026896771977002108,0.025998787538978198,0.024331102154076623,0.021466104185143175,0.021166776039135207,0.01706170432245444,0.012742826787196546,0.007397681322768466,0.0019242523671941095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004404399862688739,0.01423946751723641,0.021209537202850633,0.025870504047831918,0.028436173870757395,0.027025055468148377,0.024288340990361208,0.021765432331151153,0.018045211087909206,0.013213199588066219,0.007312158995337617,0.0012828349114627398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004190594044111616,0.014496034499528958,0.021337820693996905,0.025442892410677674,0.026469160339847864,0.023903490516922386,0.021808193494866575,0.019969463455103316,0.016120958720715093,0.011631036530595506,0.00560171244672063,0.000513133964585096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034208930972339725,0.01368357238893589,0.019584612981664494,0.024245579826645783,0.025442892410677674,0.02351864004348356,0.02048259741968841,0.019712896472810763,0.01624924221186137,0.011802081185457206,0.006029324083874877,0.0003420893097233972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003591937752095671 +2620695,0.0021936839368967035,0.0005258831355574289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017279017311172666,0.005183705193351799,0.007662868546693965,0.008864887142253803,0.007152010643581035,0.006851505994691075,0.005859840653354207,0.004943301474239831,0.003951636132902966,0.002794693234676622,0.0018781540555622464,0.0007662868546693965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016678008013392748,0.0042371155493484275,0.006175370534688666,0.0073323134329150086,0.008023474125361914,0.007287237735581514,0.006821455529802078,0.00680643029735758,0.005769689258687221,0.0042371155493484275,0.0023739867262306787,0.0003606055786679513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001637750336450279,0.0052888818204632855,0.007362363897804006,0.008985089001809785,0.008609458190697337,0.007617792849360468,0.006896581692024568,0.006460849951134126,0.005093553798684811,0.003966661365347465,0.002599365212898149,0.0005108579031129309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016527755688947768,0.00524380612312979,0.007602767616915973,0.008909962839587296,0.010081930970258139,0.009135341326254768,0.008053524590250912,0.0075126162222489854,0.006145320069799669,0.0045977211280163795,0.002719567072454133,0.0005409083680019268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018030278933397564,0.00533395751779678,0.007617792849360468,0.00916539179114376,0.0088799123746983,0.008248852612029385,0.00731728820047051,0.007242162038248022,0.005769689258687221,0.004327266944015414,0.002569314748009153,0.0006761354600024087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015025232444497972,0.004793049149794851,0.007076884481358543,0.008609458190697337,0.009495946904922715,0.009000114234254284,0.008158701217362395,0.0072722125031370165,0.005995067745354689,0.0044174183386824035,0.0024791633533421654,0.0004657822057794371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001412371849782809,0.00480807438223935,0.007001758319136054,0.008384079704029867,0.00880478621247581,0.008008448892917418,0.007392414362693002,0.00680643029735758,0.0054842098422417575,0.003966661365347465,0.00192322975289574,0.00021035325422297157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011869933631153393,0.0045977211280163795,0.006551001345801116,0.0081436759849179,0.00866955912047533,0.008038499357806412,0.007152010643581035,0.006791405064913081,0.005514260307130754,0.004041787527569953,0.0021035325422297155,0.0001502523244449797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012470942928933316 +2620696,0.0011805246494057512,0.0002910882697164865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009541226618484839,0.0028623679855454514,0.004228865696158958,0.004948500585180273,0.0039862921380618855,0.0037841475063143254,0.0032343141079609625,0.002684480709607599,0.0021508188817940402,0.0014958702749319449,0.0010268947292776053,0.00042046083403492505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009136937354989717,0.0023448777282716977,0.0034202871691687174,0.004091407346570618,0.004511868180605542,0.004083321561300715,0.00380031907685413,0.003703289653615302,0.003169627825801743,0.002336791943001795,0.0013098972137241898,0.00020214463174756016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009056079502290694,0.0029108826971648663,0.004083321561300715,0.005021272652609395,0.004835299591401638,0.004253123051968665,0.0038164906473939354,0.0035011450218677413,0.002805767488656135,0.0021346473112542354,0.0014150124222329207,0.00028300248444658416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008894363796892648,0.002854282200275549,0.004148007843459934,0.004956586370450175,0.0056681354742015855,0.0050293584378792965,0.004536125536415248,0.004042892634951203,0.003347515101739595,0.0024904218631299413,0.00147969870439214,0.00029917405498638896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009864658029280933,0.0029108826971648663,0.0041641794139997395,0.0050940447200385165,0.004948500585180273,0.004625069174384175,0.004067149990760909,0.003945863211712373,0.0031615420405318407,0.0023772208693513073,0.0014230982075028233,0.000380031907685413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008328358827999476,0.0026440517832580866,0.003937777426442471,0.004811042235591932,0.005312360922325882,0.004988929511529785,0.004463353468986128,0.003929691641172569,0.0032666572490405717,0.002417649795700819,0.001358411925343604,0.000258745128636877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007843211711805334,0.0026602233537978918,0.0038811769295531546,0.004681669671273492,0.004899985873560858,0.004487610824795835,0.004099493131840519,0.003711375438885204,0.0030240836909434994,0.0022074193786833563,0.0010673236556271177,0.00012128677904853608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006468628215921924,0.0024904218631299413,0.00363051758618618,0.004544211321685152,0.004811042235591932,0.004536125536415248,0.003970120567522081,0.0036386033714560823,0.003007912120403694,0.0022155051639532594,0.0011562672935960438,8.894363796892646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006872917479417045 +2620697,0.009693451888121495,0.0031671674485941525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00719810783771398,0.01924294161948871,0.027496771940067413,0.03282337173997576,0.029992115990474924,0.02792865841033025,0.02480947834732086,0.019770802860921068,0.01737143358168308,0.01324451842139373,0.00844577986291774,0.00407892777470459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005950435812510225,0.0165076606411574,0.02346583155094758,0.028552494422932128,0.03277538435439099,0.03056796461749204,0.026776961156296013,0.025385326974337978,0.022122184754574302,0.01660363541232692,0.010125338358384335,0.002639306207161794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007054145680959703,0.019578853318582033,0.027688721482406455,0.0330153212823148,0.03459890500661187,0.03287135912556052,0.028216582723838812,0.025913188215770336,0.022170172140159063,0.01689155972583548,0.010365275286308134,0.0033111296053484323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006718233981866382,0.01924294161948871,0.02716086024097409,0.033351232981408116,0.03810198415429934,0.03647041304441752,0.031719661871526285,0.026297087300448416,0.02284199553834571,0.0174674083528526,0.010797161756570972,0.003982953003535071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0072460952232987425,0.019338916390658233,0.02740079716889789,0.03320727082465384,0.03315928343906908,0.031383750172432966,0.02692092331305029,0.0233218693941933,0.019578853318582033,0.015451938158292681,0.009597477116951976,0.003886978232365551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006382322282773065,0.018523130835717317,0.02692092331305029,0.03277538435439099,0.03767009768403651,0.03570261487506134,0.031095825858924408,0.026776961156296013,0.022794008152760947,0.01737143358168308,0.010461250057477655,0.0033111296053484323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006286347511603545,0.018571118221302075,0.027208847626558855,0.03263142219763672,0.03671034997234131,0.034310980693103316,0.029512242134627328,0.026585011613956974,0.022554071224837144,0.01703552188258976,0.008829678947595818,0.001535596338712316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005134650257569307,0.017083509268174514,0.02533733958875322,0.03056796461749204,0.034790854548950916,0.03330324559582336,0.02831255749500833,0.02528935220316846,0.02140237397080291,0.016123761556479318,0.009405527574612937,0.002399369279237994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005374587185493106 +2620698,0.003359364216526135,0.0010664648306432172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025772900073877756,0.00691424698533686,0.009847025269605706,0.011802210792451607,0.010593550651055956,0.009793702028073545,0.008513944231301683,0.006807600502272537,0.006007751879290124,0.004568024357921781,0.0030216503534891163,0.0013686298659921292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002186252902818596,0.00588333098238175,0.008300651265173042,0.010149190304954618,0.011606692240167018,0.010380257684927315,0.009455988165036528,0.009047176646623294,0.007874065332915755,0.005918879810069856,0.003572657182654778,0.0009064951060467348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002506192352011561,0.00702089346840118,0.009882574097293814,0.011926631689359982,0.012211022310864841,0.011535594584790802,0.010042543821890296,0.009011627818935185,0.0077851932636954875,0.005918879810069856,0.0036793036657190993,0.0011375624860194317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024528691104794,0.006985344640713074,0.00977592761422949,0.011908857275515928,0.01354410334916886,0.012921998864626983,0.01109123423868946,0.009438213751192474,0.008282876851328988,0.0062565936731068745,0.0038392733903155818,0.0013508554521480755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026128388350758827,0.00691424698533686,0.009793702028073545,0.011926631689359982,0.0117666619647635,0.011037910997157301,0.009527085820412742,0.008460620989769525,0.007180863192997663,0.005670038016253104,0.0034837851134345097,0.0013508554521480755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284482135710245,0.006700954019208215,0.009562634648100848,0.011553368998634853,0.013046419761535357,0.012442089690837535,0.010877941272560818,0.009527085820412742,0.00819400478210872,0.006149947190042554,0.0036082060103428846,0.0011020136583313248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022573505581948094,0.006594307536143894,0.009491536992724633,0.011446722515570532,0.01270870589849834,0.011748887550919445,0.010202513546486778,0.009296018440440043,0.00799848622982413,0.005972203051602017,0.003074973595021277,0.000515458001477555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018485390397815766,0.0061321727761984995,0.008958304577403025,0.010860166858716764,0.012353217621617268,0.011553368998634853,0.00997144616651408,0.008904981335870863,0.0076785467806311635,0.005776684499317427,0.003323815388838027,0.0007820742091383593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001955185522845899 +2620699,0.002837798808262045,0.0008927906363071604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022957473505041265,0.006249534454150122,0.008688766014060757,0.010267092317532344,0.008975734432873772,0.008194542626105007,0.0071582677803913395,0.005882852585666825,0.005292973058106738,0.004033500553316279,0.0025986584592511994,0.0011797590551201758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020087789316911107,0.005340801127908907,0.00738146543946813,0.008864135603335377,0.009948238518851217,0.008927906363071602,0.008098886486500667,0.007939459587160105,0.006855356671644266,0.005149488848700229,0.003092881847206949,0.0007174210470325396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002200091210899788,0.006233591764216066,0.008624995254324532,0.010362748457136684,0.01037869114707074,0.009581556650367917,0.008433682975115854,0.0076206057884789765,0.006791585911908041,0.005069775399029946,0.003204480676745344,0.0009406187061093297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021363204511635624,0.006153878314545785,0.008593109874456419,0.010330863077268571,0.01168599172166337,0.01077725839542215,0.009374301681225184,0.008258313385841234,0.007206095850193508,0.005404571887645131,0.003284194126415625,0.001100045605449894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023276327303722397,0.006185763694413898,0.008609052564390474,0.01037869114707074,0.010091722728257722,0.009406187061093299,0.008226428005973119,0.007509006958940581,0.006233591764216066,0.004830635050019101,0.0029972257076026094,0.001131930985318007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020725496914273367,0.005962566035337106,0.008353969525445572,0.010075780038323665,0.011319309853180071,0.010617831496081585,0.009278645541620846,0.008306141455643403,0.007126382400523227,0.005292973058106738,0.003092881847206949,0.0008927906363071604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019609508618889417,0.005787196446062487,0.008194542626105007,0.009900410449049048,0.01077725839542215,0.009996066588653383,0.0086728233241267,0.008098886486500667,0.006935070121314549,0.005133546158766172,0.002630543839119312,0.00041450993828546725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016420970632078126,0.005420514577579188,0.007811918067687655,0.009422129751027354,0.010538118046411304,0.009820696999378766,0.008529339114720192,0.007811918067687655,0.006727815152171816,0.004958176569491552,0.002853741498196102,0.0006217649074282011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017377532028121517 +2620700,0.00648429178668542,0.0020215733217313365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053781478936626124,0.014570585073610766,0.02017759032445051,0.023991879610736046,0.0204445905744905,0.019033303538564847,0.01647772971675353,0.013273726716273679,0.012015011251799454,0.009116151394222442,0.006026577072331152,0.002708145393262734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004729718714994071,0.012320154394702295,0.016973587323970654,0.020368304788764783,0.022618735467673252,0.020253876110176223,0.018461160145622012,0.018156017002719176,0.015867443430947845,0.011824296787485176,0.007170863858216815,0.0016020015002399268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005187433429348335,0.01460872796647362,0.020101304538724798,0.023991879610736046,0.02376302225355892,0.02174144893182758,0.01918587511001627,0.0176220165026392,0.015676728966633573,0.011709868108896609,0.007514149893982514,0.0021360020003199027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005073004750759769,0.01434172771643363,0.020101304538724798,0.02410630828932461,0.026852596575450208,0.02452588011081602,0.02166516314610187,0.019262160895741978,0.016744729966793524,0.012510868859016575,0.007666721465433937,0.002479288036085601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005530719465114034,0.01453244218074791,0.02017759032445051,0.024182594075050325,0.023381593324930366,0.02166516314610187,0.01899516064570199,0.017545730716913486,0.014990156895102172,0.011175867608816637,0.00705643517962825,0.0025555738218113124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004844147393582635,0.014074727466393645,0.01960544693150768,0.023457879110656076,0.02612788161105595,0.02456402300367888,0.021207448431747603,0.019452875360056257,0.016782872859656378,0.01228201150183944,0.007323435429668239,0.0020215733217313365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004653432929268358,0.013693298537765089,0.019224018002879123,0.023114593074890378,0.024869166146581728,0.023114593074890378,0.019948732967273376,0.018766303288524862,0.016210729466713546,0.011900582573210887,0.00614100575091972,0.0009535723215713852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038524321791483956,0.012816012001919414,0.018346731467033448,0.022122877860456136,0.024487737217953165,0.022771307039124673,0.019796161395821955,0.018308588574170597,0.01582930053808499,0.011442867858856618,0.006636863358136839,0.001335001250199939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004119432429188383 +2620701,0.012606368146847884,0.003781910444054365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010381714944462961,0.028475560990526987,0.03930220657546693,0.04701433767706798,0.039450516788959264,0.03670677783935119,0.03203500611434285,0.025361046507188095,0.022988083091310847,0.01750060519209471,0.011716506865893912,0.005190857472231481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009269388343270504,0.024100409692503308,0.03314733271553532,0.03974713721594392,0.04397397830047526,0.039450516788959264,0.03596522677188954,0.03552029613141256,0.0309226795131504,0.02321054841154934,0.014015315175024998,0.003040359376592725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010010939410732143,0.028623871204019314,0.0393763616822131,0.04716264789056031,0.04605032128936786,0.042120100631821165,0.037300018693320496,0.03477874506395092,0.030477748872673415,0.022691462664326194,0.014831021349232806,0.004078530871039022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009714318983747488,0.028030630350049997,0.0393763616822131,0.047236802997306475,0.05242766046953796,0.04797835406476813,0.042490876165551986,0.03804156976078214,0.03314733271553532,0.02461949543972646,0.015201796882963624,0.004671771725008333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010752490478193783,0.028475560990526987,0.039598827002451584,0.04745926831754497,0.04590201107587553,0.042490876165551986,0.03744832890681283,0.034927055277443254,0.029810352911957938,0.022098221810356877,0.014089470281771165,0.0048942370452468255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009417698556762829,0.02773400992306534,0.038412345294512956,0.04612447639611403,0.051315333868345504,0.04790419895802196,0.04123023935086719,0.03774494933379749,0.03225747143458135,0.023358858625041667,0.014311935602009657,0.003781910444054365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008898612809539682,0.02639921800163439,0.037077553373082016,0.04464137426119073,0.04731095810405264,0.04382566808698294,0.03856065550800529,0.036113536985381875,0.0309226795131504,0.022691462664326194,0.011790661972640077,0.0018538776686541007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007415510674616403,0.02484196075996495,0.035371985917920234,0.042713341485790465,0.047088492783814155,0.044048133407221426,0.038412345294512956,0.035223675704427915,0.030329438659181085,0.02187575649011839,0.012680523253594048,0.0022988083091310847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007786286208347223 +2620702,0.0075959283501959044,0.002296443454710389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006138570003937386,0.0169141892914246,0.023317733540136266,0.02830808181671845,0.02371519490729768,0.022169511812781064,0.019740581235683542,0.015236019074520853,0.013513686483488064,0.01024567079793866,0.007065979860647352,0.003091366189033216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005564459140259791,0.014264446843681843,0.020005555480457814,0.02411265627445909,0.026806561096330894,0.02424514339684623,0.02221367418691011,0.02186037519387775,0.01863652188245739,0.014220284469552797,0.008567500581034915,0.0018548197134199299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006006082881550249,0.0169141892914246,0.02367103253316863,0.028484731313234635,0.027866458075427994,0.025437527498330465,0.02292027217297485,0.021021290085425876,0.018062411018779794,0.013602011231746156,0.00905328669645442,0.0024730929512265733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058294333850340664,0.01656089029839223,0.0234502206625234,0.028528893687363686,0.03184107174704212,0.029809602537106017,0.026232450232653293,0.0234502206625234,0.019961393106328766,0.014971044829746578,0.009274098567099652,0.002693904821871803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00644770662284071,0.016781702169037464,0.0234502206625234,0.02830808181671845,0.027778133327169902,0.025614176994846652,0.02278778505058771,0.021330426704329195,0.01757662490336029,0.01329287461284283,0.008611662955163961,0.0029588790666460786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005520296766130744,0.016207591305359863,0.022346161309297254,0.027071535341105173,0.030427875774912665,0.028573056061492734,0.024951741382910963,0.02221367418691011,0.018592359508328347,0.013778660728262337,0.008390851084518732,0.0021639563323232517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0051669977730983765,0.015147694326262761,0.02163956332323252,0.026144125484395198,0.027689808578911807,0.025834988865491886,0.02309692166949103,0.02159540094910347,0.017974086270521702,0.01333703698697188,0.0069776551123892595,0.0011040593532261488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004327912664646503,0.01430860921781089,0.020756315840651598,0.02530504037594333,0.028263919442589408,0.02667407397394376,0.023626870159039585,0.02106545245955492,0.017841599148134563,0.013116225116326647,0.0075959283501959044,0.0013248712238713785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004592886909420778 +2620703,0.0015422017590246224,0.00046624704342604855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012463142122350144,0.003452021379212091,0.004770065905820344,0.005792222885638989,0.0048238636416002715,0.00451900980551401,0.0040348301834946506,0.003138201253829173,0.002761617103369673,0.0020712128275272544,0.0014256399981681098,0.0006276402507658345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001138718740675157,0.0029140440214128036,0.00408862791927458,0.00493145911316013,0.005478402760256071,0.005012155716830023,0.004554874962700628,0.0045010772269207,0.003792740372484972,0.0028961114428194944,0.0017394601235510277,0.00037658415045950077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012104490550483953,0.003434088800618781,0.0048238636416002715,0.005828088042825607,0.005684627414079131,0.005191481502763117,0.00468936930215045,0.004285886283800985,0.0036492797437384958,0.002752650814073018,0.0018470555951108846,0.0004931459113160131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011745838978617766,0.0033623584862455427,0.004779032195116999,0.005819121753528953,0.006536424897261335,0.006070177853835286,0.0053977061565861776,0.004832829930896927,0.0040706953406812706,0.0030485383608626257,0.0018829207522975042,0.0005379773577992869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013001119480149433,0.0034161562220254714,0.004770065905820344,0.005783256596342333,0.005693593703375786,0.005254245527839703,0.004698335591447106,0.004438313201844117,0.0035954820079585675,0.002734718235479708,0.001757392702144337,0.0006007413828758702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011207861620818476,0.0032726955932789945,0.004536942384107319,0.005523234206739346,0.006213638482581763,0.005837054332122264,0.005119751188389879,0.004554874962700628,0.0037389426367050436,0.002815414839149601,0.0017035949663644085,0.00043934817553608425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010400895584119546,0.0030575046501592797,0.0043845154660641875,0.005308043263619629,0.005612897099705893,0.005254245527839703,0.00472523445933707,0.004375549176767532,0.003622380875848531,0.0026988530782930888,0.0013987411302781457,0.00023312352171302427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008697300617755138,0.0028961114428194944,0.0041962233908344375,0.00513768376698319,0.005756357728452369,0.0054246050244761415,0.004841796220193581,0.004285886283800985,0.003568583140068603,0.0026540216318098144,0.0015242691804313129,0.00025105610030633387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009145615082587877 +2620704,0.00789891183958643,0.002323209364584244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006412057846252514,0.017842247920006996,0.024672483451884674,0.02992293661584506,0.024811876013759723,0.023185629458550756,0.020723027532091456,0.016123072990214652,0.014171577123963887,0.010640298889795839,0.007294877404794526,0.003206028923126257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058544875987522945,0.015054396682505902,0.02114120521771662,0.025508838823135004,0.028250225873344414,0.025880552321468478,0.023417950395009178,0.02309270108396739,0.019561422849799334,0.014915004120630843,0.008874659772711813,0.0018585674916673952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006226201097085774,0.017749319545423626,0.024904804388343096,0.030062329177720122,0.02931890218105316,0.026809836067302178,0.024068449017092767,0.021977560588966952,0.01877153166584069,0.014125112936672207,0.009478694207503717,0.002462601926459299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005993880160627348,0.017377606047090145,0.024718947639176363,0.030062329177720122,0.03368653578647154,0.03127039804730392,0.02773911981313587,0.024811876013759723,0.02095534846854988,0.015751359491881174,0.009711015143962142,0.002741387050209408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0067373071572943075,0.01779578373271531,0.02495126857563478,0.030294650114178544,0.029830008241261686,0.02759972725126082,0.02462601926459299,0.02323209364584244,0.01886446004042406,0.014218041311255578,0.009199909083753604,0.003020172173959517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058544875987522945,0.017238213485215093,0.02392905645521772,0.029040117057303045,0.032617859478762785,0.030526971050636974,0.026716907692718804,0.023743199706050974,0.019561422849799334,0.014682683184172419,0.008874659772711813,0.002183816802709189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053898457258354454,0.016030144615631285,0.022999772709384015,0.027832048187719245,0.02931890218105316,0.02741387050209408,0.024533090890009622,0.022767451772925596,0.01881799585313237,0.013985720374797148,0.007248413217502841,0.001161604682292122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004507026167293433,0.015100860869797585,0.021884632214383578,0.026763371880010486,0.029876472428553374,0.028110833311469352,0.02499773276292646,0.022116953150842007,0.018446282354798896,0.01370693525104704,0.007852447652294745,0.0012545330568754915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004739347103751858 +2620705,0.0038849312426143434,0.0011031286244460481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031894805880722694,0.009040858509046958,0.012638017067023203,0.015156028057606569,0.012494130724704152,0.011630812670789853,0.010287873475812056,0.008153559398079486,0.007146355001846135,0.005347775722858015,0.0035731775009230676,0.0015347876514031971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029256889604873442,0.0075780140288032845,0.01069555144571603,0.012925789751661301,0.0142687289466391,0.01306967609398035,0.011702755841949377,0.011582850556683504,0.00988019550590808,0.007434127686484236,0.004364552383677843,0.0008393369968611234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003093556359859569,0.009064839566100134,0.012685979181129552,0.015275933342872444,0.014868255372968472,0.013597259349150202,0.012110433811853354,0.011055267301513653,0.009400574364844582,0.007074411830686613,0.004676306125369116,0.001151090738552398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029976321316468697,0.008872991109674735,0.01266199812407638,0.015275933342872444,0.017122474735966918,0.0157075923698296,0.013932994147894649,0.012374225439438277,0.010575646160450158,0.007937729884600913,0.004796211410634991,0.0012709960238182728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003333366930391318,0.009040858509046958,0.012733941295235904,0.015419819685191493,0.015036122772340696,0.013956975204947823,0.012302282268278753,0.011606831613736678,0.009568441764216807,0.007146355001846135,0.004532419783050067,0.0014148823661373224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029017079034341694,0.00870512371030251,0.012278301211225577,0.014868255372968472,0.01649896725258437,0.015443800742244673,0.01354929723504385,0.011918585355427955,0.010000100791173958,0.007410146629431061,0.004460476611890541,0.0010311854532865231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026858783899555948,0.008201521512185835,0.01175071795605573,0.014244747889585923,0.014988160658234348,0.013909013090841475,0.012398206496491452,0.011438964214364454,0.009520479650110457,0.007074411830686613,0.0035731775009230676,0.000503602198116674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022302383059452707,0.007721900371122336,0.011247115757939056,0.013669202520309726,0.015132047000553399,0.014196785775479573,0.012398206496491452,0.011031286244460481,0.009328631193685058,0.006882563374261212,0.0038849312426143434,0.0005515643122230241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023501435912111454 +2620706,0.005073492588153219,0.001585466433797881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003978079415711047,0.010982958386854412,0.015479917726353857,0.01888146389341113,0.016085277637440318,0.015191651102026969,0.013404398031200266,0.010118158513873748,0.008878612029268136,0.0067454390092491654,0.004727572638960955,0.002046693032720901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035745061416534046,0.009339838628191155,0.013289091381469508,0.016142930962305693,0.01813197067016122,0.015969970987709563,0.015018691127430836,0.014788077827969327,0.01259725148308498,0.009570451927652664,0.005765332486537749,0.0013260264719036823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003949252753278358,0.011213571686315923,0.015883491000411497,0.019112077192872636,0.018823810568545755,0.0171518641474498,0.01556639771365192,0.01424037124174824,0.012078371559296584,0.009166878653595018,0.006082425773297325,0.0017295997459613247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037762927786822256,0.010954131724421725,0.015624051038517299,0.019112077192872636,0.02138938352505505,0.019976877065853303,0.01775722405853627,0.01585466433797881,0.013462051356065645,0.010146985176306437,0.006255385747893458,0.0019025597205574573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004179866052739868,0.011127091699017856,0.015739357688248055,0.019140903855305327,0.01905442386800726,0.01752661075907476,0.01556639771365192,0.01461511785337319,0.01239546484605616,0.009368665290623843,0.005995945785999258,0.0020178663702882117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00366098612895147,0.010954131724421725,0.015335784414190414,0.01859319726908424,0.02089933026369934,0.01980391709125717,0.017382477446911314,0.01556639771365192,0.01308730474444069,0.009743411902248795,0.005909465798701193,0.001585466433797881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035168528167880265,0.010435251800633327,0.015076344452296213,0.01813197067016122,0.019371517154766833,0.01790135737069971,0.015969970987709563,0.01487455781526739,0.012453118170921536,0.009253358640893087,0.004842879288691708,0.0008359732105479735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002853839580836185,0.009714585239816106,0.01424037124174824,0.017324824122045935,0.01954447712936297,0.01827610398232466,0.016171757624738384,0.014470984541209746,0.012193678209027338,0.009022745341431578,0.005188799237883974,0.0009801065227114172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029691462305669407 +2620707,0.0029406303665615993,0.0009073945131104364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023693078953439172,0.006553404816908707,0.009023534324820452,0.010871930555230601,0.009157963141577552,0.008553033466170595,0.007511210136303058,0.005864457131028561,0.005276331057716241,0.004016060900618413,0.002755790743520585,0.001209859350813915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002134057466018989,0.0055283850891358075,0.007679246157249435,0.009208373947861469,0.010233393675634367,0.009157963141577552,0.008401801047318856,0.008300979434751029,0.0071751380944103035,0.005427563476567981,0.0032935060105489912,0.0007393584921640594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023188970890600045,0.006536601214814071,0.009090748733199002,0.010888734157325239,0.010670287330094948,0.00976289281698451,0.008704265885022334,0.008099336209615378,0.007057512879747841,0.005259527455621604,0.0034783456335900063,0.0009578053193943497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022348790785868163,0.006435779602246244,0.009040337926915087,0.010905537759419876,0.01213220071232843,0.011157591790839442,0.009947732440025524,0.008889105508063348,0.007696049759344073,0.0057300283142714585,0.003562363644063195,0.0010922341361514513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002486933110006381,0.006553404816908707,0.00910755233529364,0.010939144963609154,0.010687090932189584,0.009897321633741612,0.008754676691306248,0.008166550617993927,0.006956691267180013,0.005158705843053777,0.0033271132147382667,0.0011594485445300022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021844682723029026,0.006385368795962331,0.008855498303874075,0.010653483728000308,0.011930557487192777,0.011157591790839442,0.00967887480651132,0.008788283895495522,0.0074607993300191446,0.005444367078662619,0.003343916816832905,0.0008905909110157987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020500394555458008,0.006032493151974938,0.008553033466170595,0.010267000879823643,0.010905537759419876,0.010132572063066541,0.008956319916441902,0.008384997445224219,0.007091120083937115,0.005225920251432329,0.0027389871414259474,0.00043689365446058045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016971638115584086,0.005646010303798271,0.008116139811710015,0.009813303623268425,0.010905537759419876,0.010199786471445092,0.008956319916441902,0.00814974701589929,0.006956691267180013,0.005041080628391312,0.0029406303665615993,0.0005545188691230445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017811818220315975 +2620708,0.002887374943083906,0.0008274794044203874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023768025446117514,0.006725470904012512,0.009383968565022695,0.011197380876837583,0.00926072695159838,0.008591701050152108,0.007552950308432899,0.0060036271682415345,0.005352207211570168,0.004014155408677625,0.002676103605785084,0.0011619923551435232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021655312073129295,0.005669114217518399,0.007940281093480741,0.00954242206799681,0.010528354975391313,0.009577633957546614,0.008591701050152108,0.0085212772710525,0.007324073026359174,0.005493054769769382,0.0032570997833568445,0.000633814011896467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002306378765512144,0.006743076848787414,0.009401574509797594,0.011267804655937193,0.01095089764998896,0.009982570687369359,0.008891002111325442,0.008186764320329366,0.007042377909960746,0.0052817834324705585,0.003468371120655667,0.0008626912939701914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002218349041637635,0.006619835235363099,0.009383968565022695,0.01128541060071209,0.012553038624505028,0.011479075993236016,0.010158630135118377,0.00906706155907446,0.007817039480056428,0.005862779610042321,0.0035564008445301758,0.0009859329073945043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024648322684862607,0.006725470904012512,0.0094367863993474,0.011355834379811702,0.011003715484313663,0.010211447969443082,0.008961425890425048,0.008433247547177992,0.007095195744285451,0.0052641774876956565,0.0033275235624564523,0.0010739626312690135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021655312073129295,0.006496593621938788,0.009155091282948969,0.01105653331863837,0.0122889494528815,0.011496681938010919,0.010088206356018767,0.008961425890425048,0.007605768142757603,0.005598690438418792,0.00339794734155606,0.0008098734596454858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002042289593888616,0.00623250445031526,0.00887339616655054,0.010722020367915234,0.01128541060071209,0.010440325251516806,0.009225515062048576,0.008556489160602304,0.007218437357709764,0.005334601266795265,0.0026937095505599855,0.00038733078504784104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016901706983905793,0.005827567720492518,0.008450853491952895,0.010193842024668177,0.011250198711162292,0.01049314308584151,0.009119879393399165,0.008186764320329366,0.0070247719651858435,0.005123329929496442,0.002904980887858808,0.00044014861937254665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017605944774901866 +2620709,0.0030451958403628783,0.0008621940029943086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002494859242706936,0.0070259638967408574,0.009795991438275763,0.01163044676379557,0.009649235012234178,0.008952141988536652,0.007778090580203977,0.0062188035535121425,0.005613433296090608,0.004237591801950751,0.002806716648045304,0.00122908506809827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002238035497134163,0.0059252907014289745,0.00823670441158393,0.009851025098041359,0.010841630973822054,0.009814335991530962,0.008805385562495069,0.00873200734947428,0.007612989600907195,0.005668466955856199,0.003375397798956443,0.0006604039171871301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002403136476430946,0.0070809975565064515,0.009795991438275763,0.01172216953007156,0.011336933911712399,0.010327983482676507,0.009117242967833438,0.0085118727104119,0.007411199515100015,0.005503365976559417,0.003577187884763621,0.000917227662759903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023297582634101534,0.006934241130464866,0.009795991438275763,0.01172216953007156,0.012987943704680227,0.011832236849602749,0.0104197062489525,0.00935572216015101,0.00814498164530794,0.006053702574215361,0.003668910651039612,0.0010456395355462895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00254989290247253,0.0070259638967408574,0.00983268054478616,0.01181389229634755,0.011318589358457205,0.01051142901522849,0.009190621180854227,0.008640284583198286,0.00737451040858962,0.005448332316793823,0.0033937423522116413,0.00113736230182228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022563800503893616,0.006787484704423283,0.009539167692702992,0.011428656677988392,0.012657741746086661,0.01181389229634755,0.010254605269655718,0.00935572216015101,0.008053258879031949,0.00585191248840818,0.003558843331508424,0.0008621940029943086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002146312730858173,0.006640728278381699,0.009374066713406208,0.011300244805202007,0.011887270509368345,0.010951698293353242,0.009630890458978981,0.009007175648302248,0.0077047123671831865,0.005650122402601003,0.002861750307810897,0.00040358017161435734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017977662190094097,0.0062188035535121425,0.008933797435281454,0.010768252760801261,0.011795547743092352,0.010915009186842847,0.009502478586192594,0.008676973689708684,0.007502922281376006,0.005429987763538625,0.003100229500128472,0.0004953029378903476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018711444320302023 +2620710,0.0022243468707393668,0.0007037481624938109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017970712006538385,0.004850835548618054,0.0067861429954760326,0.008155938526044345,0.007075182419357419,0.006698174475164308,0.005755654614681524,0.00447382760442494,0.004021418071393205,0.0030663312794373186,0.002086110624535225,0.0009299529290096785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001570866434137971,0.0040842527287587235,0.005692819957316006,0.006899245378733967,0.007753796718905024,0.006874111515787759,0.006358867325390506,0.006145229490347741,0.005366079739015308,0.004033985002866308,0.002450551637255234,0.0005906457792358769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001759370406234527,0.004888536343037365,0.006811276858422241,0.008181072388990553,0.00820620625193676,0.0076029935412277785,0.0066856075436912046,0.0060321271070898075,0.005315812013122893,0.004008851139920101,0.002576220951986272,0.0007665828198593297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001709102680342112,0.0048382686171449495,0.0067861429954760326,0.008218773183409862,0.009198993838311955,0.008595781127602975,0.0075275919523891555,0.006547371297487062,0.005705386888789109,0.004272756700855281,0.002639055609351791,0.0008922521345903673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001859905858019357,0.004875969411564262,0.006811276858422241,0.00820620625193676,0.00804283614278641,0.007464757295023636,0.006534804366013958,0.005893890860885666,0.00513987497249944,0.0038580479622428564,0.002425417774309027,0.0008922521345903673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016337010915034895,0.00473773316536012,0.0066227728863256854,0.007954867622474682,0.008922521345903675,0.008470111812871937,0.0073139541173463905,0.006597639023379476,0.005692819957316006,0.004209922043489761,0.0025133862946207534,0.0007288820254400184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001596000297084178,0.00463719771357529,0.0065599382289601655,0.007904599896582267,0.008595781127602975,0.008017702279840201,0.006911812310207072,0.006371434256863608,0.0055043159852194495,0.004071685797285621,0.0021112444874814324,0.00035187408124690543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013069608732027913,0.0043104574952745915,0.006220631079186365,0.0075275919523891555,0.00844497794992573,0.007904599896582267,0.006861544584314656,0.00620806414771326,0.005366079739015308,0.003920882619608375,0.0022746145966317816,0.0004901103274510468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013823624620414143 +2620711,0.0023488705711680103,0.0007568582951541366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001892145737885342,0.005089219570864023,0.0071118581182586975,0.008521180460959508,0.007425040861081099,0.007033562432553098,0.006028767799331227,0.004789086108992554,0.004293213432857086,0.003275369518684281,0.002179229918805876,0.000991745352270938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016703079617194742,0.00430626271380802,0.005976570675527494,0.007255400208718964,0.008181899156235236,0.007281498770620833,0.006681231846877897,0.006446344789761095,0.005611190808901358,0.004214917747151486,0.002570708347333878,0.0006263654856448028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018399486140816084,0.005102268851814956,0.007085759556356829,0.008560328303812306,0.008638623989517908,0.00807750490862777,0.007059660994454965,0.0063289012612026945,0.005572042966048558,0.004214917747151486,0.0026751025949413453,0.0008090554189578704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001787751490277875,0.00503702244706029,0.007072710275405899,0.008560328303812306,0.009617320060837908,0.009108398103751508,0.007842617851510967,0.00681172465638723,0.005989619956478427,0.00446285408521922,0.0027533982806469456,0.0009525975094181376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001944342861689075,0.00507617028991309,0.007085759556356829,0.00857337758476324,0.008416786213352036,0.007907864256265636,0.006798675375436297,0.006120112765987761,0.005284958785128023,0.004006129251936551,0.002518511223530145,0.0009525975094181376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017225050855232081,0.0049065296375509545,0.006916118903994698,0.008338490527646437,0.009369383722770174,0.008808264641880038,0.007790420727707235,0.0068508724992400296,0.005963521394576559,0.00442370624236642,0.0026229054711376116,0.0007829568570560035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016572586807685405,0.004815184670894422,0.006824773937338164,0.00823409628003897,0.00904315169899684,0.00835153980859737,0.007216252365866166,0.006615985442123228,0.005702535775557892,0.004267114870955219,0.002205328480707743,0.0003784291475770683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013701744998480063,0.004475903366170154,0.006472443351662963,0.007842617851510967,0.00884741248473284,0.008299342684793636,0.0071640552420624325,0.006446344789761095,0.005598141527950424,0.004123572780494951,0.002374969133069878,0.0005350205189882691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014615194665045397 +2620712,0.002499164606312778,0.0008061821310686382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019079643768624439,0.005132692901136997,0.007403439236980327,0.008921748917159597,0.00802151220413295,0.007564675663194054,0.006436020679697962,0.005052074688030132,0.00443400172087751,0.0033456558439348486,0.002284182704694475,0.0010211640326869419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001639236999839564,0.004353383507770647,0.006180729671526226,0.0076318575074497755,0.008773948859797015,0.0076856029828543514,0.007134711859957449,0.006798802638678849,0.0059388750322056354,0.004460874458579798,0.002714146507931082,0.0006986911802594864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018945280080112999,0.005293929327350724,0.007497493818938336,0.009069548974522178,0.00927109450728934,0.008773948859797015,0.007672166614003206,0.006745057163274271,0.005804511343694195,0.004460874458579798,0.00280820108988909,0.0008868003441755021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001854218901457868,0.00528049295849958,0.007403439236980327,0.009042676236819891,0.01025194943342285,0.009862294736739673,0.008438039638518413,0.007161584597659738,0.006288220622335377,0.004756474573304965,0.0029156920406982418,0.0010211640326869419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00196170985226702,0.005186438376541573,0.007390002868129183,0.009029239867968747,0.008962058023713027,0.00835742142541155,0.007188457335362023,0.006382275204293386,0.005576093073224747,0.004380256245472934,0.002700710139079938,0.0010211640326869419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001746727950648716,0.005065511056881277,0.007255639179617744,0.008720203384392437,0.009795112892483955,0.009405458195800777,0.008236494105751255,0.007228766441915455,0.006301656991186521,0.004729601835602677,0.0027813283521868014,0.00084649123762207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001746727950648716,0.00507894742573242,0.007349693761575751,0.008881439810606165,0.009929476580995394,0.00920391266303362,0.007927457622174944,0.007175020966510879,0.00619416604037737,0.004622110884793526,0.0023782372866524826,0.0004165274343854631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001410818729370117,0.004729601835602677,0.006946602696041432,0.008411166900816126,0.009580130990865651,0.00886800344175502,0.007658730245152063,0.006798802638678849,0.0059120022945033475,0.004420565352026367,0.00253947371286621,0.0006046365983014786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014780005736258369 +2620713,0.004322851360798556,0.001419117870969223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003209389646653474,0.008514707225815338,0.012335409186117094,0.014911653936491992,0.013579866396043952,0.01296855408239567,0.011287445219862899,0.008885861130530366,0.007728734251124692,0.005851132144919259,0.003864367125562346,0.001877602106205434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026854076635263765,0.007335747763779369,0.01050147224517225,0.01288122375187449,0.014802491023340513,0.013536201230783359,0.012160748525074727,0.011505771046165856,0.010042988009936043,0.0075540735900823264,0.004606674934992401,0.0012444572099268572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003209389646653474,0.008820363382639479,0.01255373501242005,0.015108147180164653,0.01580678982433412,0.015086314597534355,0.013055884412916852,0.011724096872468814,0.00999932284467545,0.007641403920603509,0.004759503013404472,0.0015937785320115892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030783941508717,0.008689367886857707,0.012291744020856503,0.015173644928055539,0.017378735773715414,0.016811088625327722,0.01451866744914667,0.012073418194553546,0.01050147224517225,0.008012557825318536,0.004934163674446836,0.0018557695235751383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032748873945443605,0.008667535304227408,0.012422739516638274,0.015151812345425243,0.015173644928055539,0.014344006788104305,0.012291744020856503,0.010610635158323728,0.009191517287354506,0.0072047522679975955,0.004453846856580331,0.001768439193053955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028819009071990383,0.008340046564772975,0.012160748525074727,0.014824323605970807,0.01698574928637009,0.01630893922483092,0.01419117870969223,0.012248078855595907,0.01050147224517225,0.007947060077427652,0.004759503013404472,0.0015501133667509977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028819009071990383,0.008405544312663861,0.012335409186117094,0.014911653936491992,0.016854753790588314,0.015915952737485597,0.013667196726565136,0.012444572099268572,0.010654300323584321,0.008034390407948833,0.004170023282386488,0.0007641403920603508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023579189240719397,0.00790339491216706,0.0117895946203597,0.014278509040213416,0.01630893922483092,0.015522966250140274,0.013165047326068333,0.011767762037729404,0.00984649476626338,0.007401245511670256,0.0043446839434288535,0.0011352942967753784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024234166719628277 +2620714,0.009179045007832213,0.0031773617334803807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00695993522571893,0.018963301774422583,0.028697124227783116,0.03706922022393777,0.033437949671388766,0.032832737912630604,0.029857113432069603,0.02168675468883434,0.017752878256906256,0.013365093005909538,0.009330347947521753,0.0038834421186982435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005850380334662287,0.015987677293861597,0.024359773290016252,0.03162231439511426,0.03691791728424823,0.03641357415194976,0.033387515358158926,0.02960494186592037,0.023250218398959608,0.0178033125701361,0.010692074404727631,0.0030260587937908385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006657329346339847,0.01891286746119274,0.02859625560132343,0.0367666143445587,0.03711965453716762,0.03601009964611098,0.032984040852320144,0.028091912469024954,0.022796309579890983,0.017298969437837625,0.010944245970876867,0.003631270552549006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006253854840501067,0.018055484136285334,0.027688437963186176,0.03601009964611098,0.042011782920462815,0.04080135940294648,0.03646400846517961,0.030563193817287476,0.02415803603709686,0.018307655702434575,0.01084337734441717,0.0037825734922385477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006909500912489082,0.018055484136285334,0.02738583208380708,0.03540488788735281,0.037018785910707924,0.035657059453502046,0.032328394780332115,0.027335397770577242,0.021636320375604496,0.01639115179970038,0.009834691079820226,0.0035808362393191595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005799946021432442,0.016945929245228697,0.0262258428795206,0.03414403005660663,0.039994410391268914,0.039086592753131665,0.03621183689903037,0.029403204613000986,0.023351087025419305,0.017551141003986866,0.01013729695919931,0.003278230359940075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005547774455283205,0.01608854592032129,0.02486411642231472,0.032227526153872435,0.03540488788735281,0.03500141338151403,0.03207622321418288,0.02597367131337137,0.02062763411100755,0.015634637101252666,0.00827122736969496,0.0013617264572058773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004539088190686259,0.015332031221873585,0.024258904663556558,0.03177361733480381,0.0367666143445587,0.0365648770916393,0.033437949671388766,0.02794060952933541,0.022039794881443277,0.01654245473938992,0.009027742068142667,0.002219109782113282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004942562696525036 +2620715,0.010735621435066801,0.003674223378846392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008037363641226482,0.02204534027307836,0.03283837144843963,0.042138749376144556,0.03771819937347,0.037144101970525256,0.03392915651403466,0.024801007807213143,0.02026563832394963,0.015558039619802691,0.010563392214183379,0.004535369483263514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0068891688353369855,0.018543346115115388,0.027958543523409263,0.03616813638551918,0.04173688119408324,0.04081832534937164,0.03771819937347,0.0340439759946236,0.02681034871751977,0.020495277285127532,0.01222827468272315,0.003387174677374018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007750314939754107,0.02198793053278388,0.032895781188734104,0.042138749376144556,0.04311471496115063,0.04173688119408324,0.03812006755553132,0.032953190929028583,0.026523300016047392,0.020208228583655157,0.012802372085667897,0.004190911041496667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007291037017398309,0.02129901364925018,0.03214945456490593,0.04150724223290534,0.04828159158765337,0.047018577301174924,0.0431721247014451,0.035249580540807575,0.028245592224881644,0.021356423389544653,0.012687552605078948,0.004363140262380092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008094773381520958,0.021356423389544653,0.03191981560372803,0.04081832534937164,0.04208133963585009,0.04018681820613241,0.036110726645224696,0.03065680131724958,0.024801007807213143,0.018543346115115388,0.011424538318600502,0.0040760915609077165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006659529874159086,0.01986377014188831,0.03025493313518826,0.03886639417935949,0.045468514313224094,0.04449254872821803,0.04087573508966611,0.033814337033445704,0.026925168198108716,0.020208228583655157,0.0116541772797784,0.003674223378846392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006429890912981186,0.01900262403747119,0.02910673832929876,0.037373740931703155,0.04139242275231638,0.04030163768672136,0.03685705326905287,0.030599391576955116,0.02411209092367945,0.018428526634526435,0.009644836369471778,0.0017222922088342464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005396515587680638,0.01802665845246511,0.02830300196517611,0.036684824048169445,0.04282766625967825,0.04185170067467219,0.03823488703612027,0.03214945456490593,0.025317695469863424,0.019174853258354607,0.010505982473888904,0.0025260285729568946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005683564289153012 +2620716,0.007938552632657712,0.0026888646013840645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006060615450738686,0.01651731112278783,0.024242461802954744,0.030644520377678702,0.027187408747327762,0.02646184210885905,0.023986379459965783,0.017925764009227102,0.014767415112363277,0.011438344653506814,0.007682470289668756,0.0033717508493546202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00533504881226997,0.01404184847389456,0.0207853501726038,0.026291120546866414,0.030175036082198948,0.029108026319744948,0.026845965623342485,0.024797306879430818,0.01988906197214245,0.015066177845850393,0.009048242785609869,0.002475462648893266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005847213498247887,0.01651731112278783,0.02432782258395106,0.03077256154917318,0.03141276740664558,0.02974823217721735,0.02740081069981856,0.024114420631460264,0.019462258067160853,0.014980817064854074,0.009517727081089626,0.003072988115867502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005591131155258928,0.01617586799880255,0.024114420631460264,0.03077256154917318,0.03576616723745788,0.03465647708450572,0.031626169359136376,0.026333800937364572,0.021425556030076193,0.01626122877979887,0.009731129033580426,0.003286390068358302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006316697793727643,0.01673071307527862,0.024583904926940015,0.031028643892162144,0.03183957131162717,0.030388438034689744,0.026632563670851688,0.02385833828847131,0.01937689728616453,0.01451133276937432,0.008962882004613551,0.003243709677860142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005377729202768129,0.015919785655813586,0.023772977507474986,0.03021771647269711,0.03474183786550204,0.03350410654105541,0.030815241939671348,0.02582163625138665,0.020828030563101962,0.01570638370332279,0.009090923176108028,0.0028595861633767036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00516432725027733,0.015151538626846716,0.022791328526017306,0.028766583195759674,0.03166884974963454,0.030388438034689744,0.027614212652309365,0.023431534383489706,0.018694011038193976,0.014212570035887198,0.007383707556181639,0.001365772495941112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004182678268819655,0.01395648769289824,0.021681638373065155,0.02752885187131304,0.03196761248312165,0.03077256154917318,0.027955655776294646,0.023815657897973144,0.018950093381182934,0.014255250426385358,0.007853191851661395,0.0018352567914208698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004353399830812296 +2620717,0.008049369014864024,0.002712770772965223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006314974586246912,0.01721052933012363,0.02503754008490853,0.030907798150997208,0.0272611226856997,0.026193803037319937,0.023436560612338894,0.018099962370440092,0.014764588469253347,0.01151815787209824,0.007693595798737436,0.003424317205218397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005647899806009562,0.014586701861190052,0.021212978011547725,0.026371689645383233,0.03037413832680733,0.02855080059415857,0.0265051046014307,0.024859653476845243,0.02032354497123126,0.015342719945459046,0.00925010361929125,0.0024459408608702832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006092616326167796,0.01721052933012363,0.024993068432892708,0.031219099715107973,0.03148592962720292,0.029840478502617458,0.0272611226856997,0.024370465304671185,0.019700941843009735,0.015253776641427401,0.009783763443481133,0.0031130156411076325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00587025806608868,0.016943699418028688,0.02494859678087688,0.031174628063092152,0.03611098143684854,0.034510001964278905,0.0312635713671238,0.026327217993367402,0.021791109487753434,0.016676869505933747,0.009961650051544424,0.0033353739011867485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006492861194310206,0.017432887590202742,0.02521542669297183,0.03130804301913962,0.0320195894513928,0.030463081630838978,0.027038764425620587,0.02450388026071865,0.02005671505913632,0.014942475077316636,0.009161160315259605,0.0033353739011867485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005558956501977916,0.016321096289807158,0.02405916374056042,0.029884950154633272,0.03428764370419978,0.03286455083969343,0.029973893458664923,0.025615671561114235,0.020946148099452788,0.015831908117633103,0.009294575271307075,0.002846185729012693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005336598241898799,0.01565402150956981,0.02312525904822813,0.02881763050625352,0.031841702843329496,0.030151780066728213,0.027394537641747176,0.023703390524433838,0.019211753670835673,0.014586701861190052,0.007560180842689966,0.0014230928645063464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004402693549566509,0.014542230209174228,0.022235826007911665,0.027839254161905407,0.032464305971551026,0.030729911542933915,0.027750310857873755,0.02405916374056042,0.01947858358293062,0.014675645165221698,0.008138312318895669,0.0018678093846645795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004625051809645625 +2620718,0.0033650061251031876,0.0011279350140010688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002631848366002493,0.00714358842200677,0.010377002128809832,0.012670469990612006,0.011128958804810542,0.010696583716110134,0.009399458450008908,0.007425572175507035,0.006053251241805735,0.0047185281419044696,0.0031582180392029924,0.0014099187675013355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349864612502227,0.006053251241805735,0.008722697441608264,0.010809377217510241,0.012501279738511846,0.011561333893510954,0.01075298046681019,0.010207811876709669,0.008440713688107997,0.006335234995306003,0.003834979047603634,0.0010151415126009617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025378537815024045,0.007162387338906786,0.010339404295009796,0.012858459159612184,0.012914855910312238,0.012294491652611648,0.011110159887910528,0.01003862162460951,0.008139931017707712,0.006316436078405985,0.004060566050403847,0.0012783263492012111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024626581139023333,0.007105990588206732,0.010377002128809832,0.012820861325812146,0.014869943267914087,0.01408038875811334,0.012670469990612006,0.01075298046681019,0.008985882278208514,0.006936800336106573,0.004173359551803955,0.0013911198506013178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027070440336025648,0.007237583006506858,0.010452197796409901,0.012858459159612184,0.013121643996212433,0.01246368190471181,0.011053763137210473,0.010151415126009618,0.008421914771207979,0.0062788382446059485,0.003891375798303687,0.0014287176844013539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023686635294022443,0.006861604668506501,0.010095018375309565,0.01248248082161183,0.014381171428513627,0.013798405004613074,0.01253887757231188,0.010922170718910348,0.009042279028908567,0.006842805751606485,0.004041767133503829,0.0012407285154011757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002349864612502227,0.006824006834706467,0.01003862162460951,0.012426084070911775,0.01374200825391302,0.0128772580765122,0.011655328478011043,0.010170214042909638,0.008309121269807873,0.006260039327705932,0.0032522126237030814,0.0006203642577005879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018986906069017988,0.0062788382446059485,0.009493453034508995,0.01176812197941115,0.013779606087713057,0.012839660242712164,0.011542534976610938,0.010076219458409547,0.008215126685307784,0.0061848436601058595,0.0034402017927032597,0.0007707555929007303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019738862745018707 +2620719,0.010462707999738845,0.003526755505529949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00822909617956988,0.022159780426413176,0.031975916583471535,0.03885308981925494,0.034150749145215,0.03238737139245003,0.028507940336367086,0.022688793752242673,0.018633024920883225,0.01451847683109829,0.009757356898632859,0.004408444381912436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007347407303187395,0.018809362696159727,0.02686212110045311,0.03309272249355602,0.03826529723499995,0.035561451347426984,0.03268126768457752,0.03127056548236555,0.026097990740921624,0.019514713797265718,0.011873410201950827,0.003115300696551455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007935199887442384,0.022277338943264183,0.03191713732504603,0.03932332388665893,0.03949966166193542,0.03779506316759595,0.033680515077811016,0.030800331414961555,0.02521630186453913,0.019514713797265718,0.012519982044631318,0.003996989572933942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007758862112165889,0.022101001167987678,0.032152254358748036,0.03949966166193542,0.04567148379661284,0.04232106606635939,0.03861797278555295,0.03297516397670502,0.027802589235261098,0.021395650066881693,0.012931436853609814,0.004349665123486937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008464213213271876,0.022453676718540677,0.032211033617173535,0.03955844092036092,0.04026379202146692,0.03826529723499995,0.03373929433623651,0.030917889931812548,0.025980432224070624,0.01939715528041472,0.012049747977227325,0.004408444381912436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007406186561612893,0.021336870808456195,0.03121178622394005,0.038324076493425445,0.04426078159440085,0.04237984532478488,0.03826529723499995,0.03362173581938551,0.0279789270105376,0.021160533033179694,0.012578761303056817,0.0038794310560829443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007347407303187395,0.021219312291605195,0.031035448448663554,0.03838285575185096,0.04255618310006139,0.03967599943721192,0.035561451347426984,0.031446903257642045,0.025921652965645126,0.019514713797265718,0.010168811707611353,0.001998494786466971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005936705100975413,0.019455934538840224,0.029272070695898576,0.03614924393168198,0.04208594903265738,0.03908820685295693,0.034973658763171996,0.030917889931812548,0.025451418898241127,0.019103258988287224,0.010639045775015347,0.0024099495954454653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00623060139310291 +2620720,0.0035406167341184816,0.0011939288987143713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002820142398687395,0.007595857993544882,0.010910039936527878,0.013194972828895033,0.01146583442386043,0.010910039936527878,0.009592601151739606,0.007698782898606463,0.0063813441138181924,0.00487864049991907,0.0033347669239953137,0.0015232885949114392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025731226265395942,0.006443099056855143,0.009160316550480952,0.01119822967070031,0.012906783094722601,0.012021628911192983,0.01097179487956483,0.010621850202355442,0.008913296778333153,0.006628363885965993,0.004034656278414083,0.0010498340316281542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027172174936258113,0.00765761293658183,0.01088945495551556,0.013256727771931986,0.013112632904845769,0.01268034830358712,0.01128056959474958,0.010416000392232276,0.008583937082136086,0.006628363885965993,0.0042816760505618836,0.001317438784788272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002696632512613494,0.007616442974557197,0.01097179487956483,0.013421407620030521,0.015438735759237562,0.014162466936473926,0.012968538037759554,0.01128056959474958,0.009510261227690338,0.007307668259372447,0.0044051859366357835,0.0014409486708621725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029230673037489788,0.007698782898606463,0.011012964841589461,0.013462577582055156,0.013647842411166004,0.013071462942821136,0.01146583442386043,0.01058068024033081,0.008892711797320835,0.006669533847990627,0.0041375811834756665,0.001502703613899123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025731226265395942,0.007328253240384762,0.010683605145392393,0.013050877961808819,0.014985866176966598,0.014430071689634043,0.012989123018771871,0.011507004385885065,0.00955143118971497,0.0072459133163354965,0.004322846012586519,0.0012968538037759552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025319526645149605,0.007266498297347813,0.010621850202355442,0.01309204792383345,0.014532996594695625,0.013647842411166004,0.0120422138922053,0.01088945495551556,0.009016221683394738,0.006751873772039895,0.003499446772093848,0.0006793043734064528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020790830822439914,0.006731288791027578,0.01008664069603521,0.012433328531439318,0.014388901727609408,0.013380237658005889,0.011877534044106765,0.010683605145392393,0.008789786892259252,0.006566608942929042,0.003664126620192381,0.0008028142594803533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021614230062932593 +2620721,0.020869836289537515,0.006836670508641601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01619211436257221,0.04497809545158947,0.06524822380177246,0.07928138958266838,0.06884647143789961,0.06560804856538517,0.05757196217803453,0.04437838751223495,0.037061950652109724,0.028066331561791828,0.019430537235086656,0.008515852738834274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01463287372025044,0.03838130811868968,0.055413013596358224,0.06776699714706147,0.07784209052821751,0.06992594572873777,0.06476845745028884,0.06380892474732161,0.053613889778294656,0.04030037352462417,0.024228200749922862,0.005997079393545264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015952231186830403,0.04653733609391125,0.06680746444409423,0.08060074704924834,0.07952127275841019,0.0748435508314449,0.06764705555919058,0.06129015140203258,0.050375466905780215,0.03910095764591512,0.025667499804373724,0.007676261623737937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015352523247475875,0.04581768656668582,0.06572799015325609,0.08084063022499015,0.09187525630911343,0.08587817691556816,0.07736232417673389,0.0684866466742869,0.057092195826550916,0.04365873798500953,0.02638714933159916,0.008156027975221558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016791822301926735,0.04581768656668582,0.06560804856538517,0.08024092228563563,0.08096057181286105,0.07496349241931578,0.0659678733289979,0.061649976165645305,0.052534415487456514,0.03934084082165693,0.02458802551353558,0.008755735914576084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014273048956637729,0.043418854809267715,0.06284939204435436,0.0758030835344121,0.08551835215195545,0.08168022134008648,0.0730444270133813,0.06500834062603066,0.05409365612977827,0.04090008146397869,0.02434814233779377,0.006956612096512505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01391322419302501,0.04185961416694594,0.06117020981416169,0.07424384289209035,0.08108051340073194,0.07520337559505759,0.06692740603196513,0.0614100929899035,0.05109511643300564,0.03838130811868968,0.019910303586570276,0.0037181892239980634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011274509259865093,0.03922089923378602,0.05865143646887267,0.07172506954680133,0.08275969563092464,0.07688255782525025,0.06860658826215782,0.06117020981416169,0.05097517484513473,0.038261366530818776,0.02146954422889204,0.004317897163352589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011874217199219618 +2620722,0.005234138757842946,0.0016640325530714567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004023933264700068,0.01128516622355733,0.01630751902010027,0.01984737008754319,0.017033642315986,0.01609573305880027,0.014340935093743097,0.011043125124928756,0.00907654119857158,0.006746895624271541,0.00484082197257151,0.002087604475671464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036608716167572035,0.009590878533157302,0.01394761830847166,0.017003387178657427,0.01945405330227175,0.01739670396392886,0.016035222784143127,0.015974712509485983,0.013372770699228795,0.010135471005071598,0.006051027465714387,0.0014219914544428807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004023933264700068,0.011648227871500196,0.016791601217357427,0.020240686872814627,0.01996839063685748,0.01878844028104317,0.016791601217357427,0.015067058389628823,0.012404606304714494,0.00953036825850016,0.00641408911365725,0.001815308239714316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003842402440728635,0.01143644191020019,0.01630751902010027,0.020089411186171767,0.0226308427217718,0.021632423189928935,0.019090991654328888,0.01694287690400028,0.01394761830847166,0.010589298065000176,0.006474599388314393,0.0018758185143714602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004144953814014356,0.011254911086228758,0.0160654779214717,0.019726349538228903,0.019907880362200335,0.01818333753447173,0.016216753608114556,0.015399864900243115,0.012858433364643072,0.009802664494457308,0.006202303152357247,0.0021481147503286074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035095959301143444,0.010770828888971608,0.01536960976291454,0.0185463991824146,0.020906299894043207,0.019907880362200335,0.01782027588652887,0.015853691960171695,0.013070219325943074,0.009893429906443022,0.005869496641742957,0.0015732671410857405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003388575380800057,0.010317001829043028,0.015097313526957397,0.018213592671800304,0.01963558412624319,0.01833461322111459,0.016519304981400276,0.01515782380161454,0.012465116579371636,0.0093790925718573,0.004901332247228654,0.000907654119857158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002753217496900047,0.00971189908247159,0.014461955643057385,0.01766900019988601,0.020240686872814627,0.0189699711050146,0.01706389745331457,0.014946037840314537,0.012404606304714494,0.0093790925718573,0.005294649032500088,0.0009379092571857301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029044931835429063 +2620723,0.002691490276867096,0.0008971634256223655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002130763135853118,0.00586360381746046,0.008571114869785098,0.010397483271944915,0.008971634256223654,0.008587135645242642,0.0075778267914174795,0.006007790796578339,0.004918378065465468,0.0037328406816073425,0.0024832201959190474,0.0011214542820279568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001954534605820153,0.004982461167295637,0.00722536973135155,0.008875509603478401,0.010221254741911948,0.00930807054083204,0.008474990217039844,0.008362844788837049,0.006985058099488418,0.0051907312482436865,0.0031400719896782785,0.0007689972219620276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020666800340229485,0.005991770021120797,0.008667239522530353,0.010557691026520337,0.010301358619199659,0.009868797681846023,0.00893959270530857,0.008106512381516374,0.006568517937592318,0.005110627370955974,0.0033323212951687853,0.000993288078367619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00200259693219278,0.005927686919290629,0.008603156420700184,0.010493607924690168,0.011983540042241595,0.011102397392076774,0.010061046987336527,0.008843468052563317,0.007273432057724177,0.005639312961054868,0.003364362846083871,0.0010413504047402456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021467839113106604,0.005847583042002917,0.008442948666124762,0.010301358619199659,0.010413504047402456,0.009772673029100764,0.008635197971615266,0.008090491606058832,0.006856891895828078,0.005078585820040889,0.0031400719896782785,0.0011214542820279568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018423891776173577,0.005463084431021903,0.008026408504228663,0.00972461070272814,0.011070355841161688,0.010557691026520337,0.009628486049982886,0.008523052543412473,0.007049141201318586,0.005350939002819108,0.003172113540593363,0.0008971634256223655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018103476267022729,0.005318897451904024,0.007818138423280612,0.009580423723610258,0.01057371180197788,0.009804714580015852,0.008843468052563317,0.007946304626940952,0.006600559488507402,0.004950419616380552,0.0025633240732067584,0.0004806232637262672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014739113420938863,0.0050145027182107215,0.007545785240502395,0.0092920497653745,0.010894127311128723,0.010045026211878982,0.009067758908968908,0.008090491606058832,0.006632601039422487,0.004982461167295637,0.0027715941541548075,0.0005607271410139784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015860567702966814 +2620724,0.005114327163628373,0.0017149839590610114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004103711616324563,0.011239269874560556,0.01635359703818893,0.019814189669865614,0.016966091309282148,0.016200473470415623,0.014546738938463937,0.01166801586432581,0.009493661201944885,0.007227432398899976,0.004808080028081764,0.002174354662380925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037668397672232933,0.009585535342608868,0.01375049638604275,0.016843592455063502,0.01932419425299104,0.0180992057108046,0.01641484646529825,0.016016725189087658,0.013229876255613513,0.009861157764600814,0.005941194429604218,0.0015006109641783848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003919963334996597,0.011331144015224538,0.01635359703818893,0.01996731323763892,0.019599816674982985,0.018926072976780443,0.01705796544994613,0.015496105058658425,0.012556132557410976,0.009769283623936831,0.006339315705814808,0.001898732240388977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038893386214419357,0.011269894588115217,0.01644547117885291,0.020120436805412225,0.023060409306659663,0.021590423056035948,0.019507942534319003,0.016966091309282148,0.013964869380925378,0.010902398025459285,0.006523063987142775,0.002021231094607621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004226210470543207,0.01145364286944318,0.016537345319516894,0.020181686232521544,0.02042668394095883,0.019293569539436378,0.017119214877055453,0.015894226334869015,0.013260500969168176,0.009861157764600814,0.00606369328382286,0.0021437299488262637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003644340913004649,0.010626775603467337,0.015587979199322406,0.01901794711744443,0.021712921910254587,0.0207635557900601,0.01898732240388977,0.016598594746626217,0.013597372818269449,0.010320528467920729,0.006094317997377523,0.0017456086726156722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034912173452313444,0.010228654327256746,0.015067359068893173,0.018497326987015193,0.02036543451384951,0.01904857183099909,0.017302963158383415,0.015312356777330458,0.012586757270965638,0.009493661201944885,0.004930578882300407,0.0009187414066398274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028787230741381255,0.009554910629054204,0.014485489511354614,0.017915457429476637,0.020794180503614763,0.01932419425299104,0.0173948372990474,0.015587979199322406,0.012678631411629617,0.009524285915499545,0.005267450731401678,0.0010718649744131318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003062471355466092 +2620725,0.0017493255422928577,0.0005929917092518161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013836473215875708,0.0037160813779780464,0.005336925383266344,0.006463609630844796,0.005682837213663237,0.005336925383266344,0.004704400893397742,0.0037556141585948356,0.0031132064735720343,0.002431266007932446,0.0016406103955966915,0.0007511228317189673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012452825894288136,0.003152739254188822,0.004486970600005408,0.005504939700887693,0.006364777679302826,0.00590026750705557,0.005396224554191527,0.0051886774559533905,0.004368372258155046,0.003261454400884989,0.001986522225993584,0.0005238093431724375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001334231345816586,0.003745730963440639,0.005346808578420542,0.006532791996924175,0.006562441582386766,0.006275828922915054,0.0055444724815044795,0.005119495089874012,0.004220124330842092,0.003271337596039186,0.00209523737268975,0.0006621740753311946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013045817603539957,0.0037160813779780464,0.0053764581638831325,0.0065822079726951584,0.007600177073577444,0.006938002998246247,0.00638454406961122,0.0054752901154251025,0.004654984917626756,0.0035678334506650936,0.002164419738769129,0.000731356441410573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014330632973585556,0.0037654973537490323,0.0053764581638831325,0.0065822079726951584,0.006690923119391324,0.006345011288994431,0.005554355676658677,0.005070079114103028,0.004299189892075667,0.003202155229959807,0.0019964054211477804,0.0007511228317189673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012452825894288136,0.003548067060356699,0.0051590278704908,0.0062857121180692485,0.007214732462563761,0.006858937437012672,0.0061275809956020996,0.005406107749345723,0.0045166201854679984,0.003399819133043746,0.0020260550066103717,0.0006226412947144068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011859834185036322,0.0034097023281979425,0.00496136396740686,0.006088048214985313,0.0067798718757790975,0.006305478508377644,0.005623538042738055,0.005040429528640438,0.004200357940533697,0.003162622449343019,0.001650493590750888,0.0003261454400884989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009685531251112995,0.003162622449343019,0.004734050478860331,0.005831085140976192,0.0067798718757790975,0.0062857121180692485,0.005623538042738055,0.00503054633348624,0.0041904747453795,0.0031428560590346243,0.0017690919326012512,0.0004052110013220744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010377354911906783 +2620726,0.0027729839820195413,0.0009296709303880543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002179918043668541,0.0060428610475223524,0.008783787411252651,0.010659158081173382,0.009232594067302057,0.008847902647831139,0.00779000124428611,0.006235206757257813,0.005065103689700433,0.003927058240432299,0.0026126958905733255,0.001186131876702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020036011430777036,0.005161276544568163,0.007389281015670569,0.00907230597585584,0.010450783562293302,0.009697429532496084,0.008944075502698868,0.008591441701517192,0.007116791260212002,0.005321564636014381,0.003221790638068947,0.0008334980755203244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002131831616234677,0.006090947474956219,0.008767758602108029,0.010771359745185732,0.010691215699462625,0.010322553089136327,0.009200536449012814,0.008383067182637111,0.0068282726956088126,0.005305535826869759,0.0034301651569490278,0.0010579014035450275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020677163796561896,0.0060428610475223524,0.008815845029541894,0.010819446172619597,0.012454384705371005,0.011685001866429168,0.010482841180582543,0.009008190739277354,0.007517511488827542,0.005850515337786894,0.0035103092026721365,0.0011380454492681356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022600620893916496,0.006139033902390083,0.00886393145697576,0.01085150379090884,0.01102782069149968,0.010498869989727167,0.009328766922169785,0.008591441701517192,0.007148848878501245,0.005305535826869759,0.003269877065502812,0.001186131876702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00197154352478846,0.005770371292063786,0.00846321122836022,0.01035461070742557,0.011861318767020002,0.011332368065247489,0.010258437852557839,0.008928046693554246,0.007357223397381326,0.005578025582328325,0.003301934683792055,0.000993786166966541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018913994790653518,0.005561996773183704,0.008142635045467785,0.01003403452453314,0.011075907118933543,0.010386668325714814,0.009360824540459032,0.008254836709480138,0.0067962150773195696,0.0051292189262789195,0.0026607823180071905,0.000512921892627892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015387656778836764,0.005161276544568163,0.007822058862575353,0.009681400723351462,0.01125222401952438,0.010466812371437925,0.009408910967892894,0.008367038373492489,0.0068282726956088126,0.005145247735423541,0.0028531280277426492,0.0006251235566402434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016509673418960275 +2620727,0.010760494708251387,0.003774623798182423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007887273608142375,0.021577327085132356,0.03233782179338374,0.04146452411137706,0.037577224975935464,0.03712652362689876,0.03323922449145716,0.024506885853870952,0.020394236043911003,0.015323845867248043,0.010591481702362618,0.004676026496255837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006816857904180196,0.018422417641875407,0.027549119959868723,0.03543639356801111,0.04140818644274748,0.04022509540152611,0.03712652362689876,0.03346457516597551,0.0267040549304249,0.020281560706651824,0.012225274092620683,0.003492935455034481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007661922933624022,0.021746340091021124,0.03250683479927251,0.04146452411137706,0.04304197883300555,0.041239173436858706,0.03774623798182423,0.03273218547379086,0.026816730267684084,0.020281560706651824,0.012788650778916567,0.004338000484478307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007323896921846491,0.021182963404725235,0.03194345811297663,0.041351848774117884,0.048168706678298076,0.04709829097433591,0.0422532514721913,0.03459132853856728,0.0281688343147942,0.02135197641061401,0.012619637773027801,0.004507013490367072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008056286614031141,0.021295638741984417,0.031718107438458265,0.04050678374467406,0.041971563129043356,0.04022509540152611,0.03492935455034481,0.030140652716829794,0.024844911865648484,0.01785904095557952,0.011211196057288092,0.004168987478589541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006591507229661842,0.01971818402035594,0.029915302042311444,0.03847862767400888,0.045295485578189076,0.04405605686833813,0.04022509540152611,0.032844860811050036,0.0267040549304249,0.019999872363503885,0.011549222069065621,0.003774623798182423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006422494223773078,0.018760443653652936,0.02890122400697885,0.036844835283750814,0.04118283576822913,0.040056082395637356,0.03605610792293658,0.030196990385459383,0.02399984683620466,0.018422417641875407,0.009633741335659618,0.0018028053961468289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005295740851181309,0.017690027949690757,0.027943483640275848,0.03594343258567739,0.042084238466302534,0.04112649809959953,0.037239198964157935,0.03143641909531032,0.025070262540166834,0.01904213199680088,0.01047880636510344,0.0026478704255906544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005633766862958841 +2620728,0.010850342321905819,0.003715062860217753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008373633748427317,0.022467284916554985,0.03260999621746695,0.040217029693150906,0.0358533050636888,0.03443804302170108,0.03031019539923691,0.023705639203294233,0.019577791580830065,0.01527303620311743,0.010260649804410937,0.004599601636460075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007430125720435506,0.01904706831508467,0.027538640567010966,0.034320104518202096,0.03986321418265398,0.037622382616173435,0.034497012273450575,0.03231514995871951,0.02671307104251813,0.020108514846575453,0.012206635112144044,0.0033612473497208247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008078787489679877,0.022526254168304474,0.03260999621746695,0.04068878370714682,0.041514353231639656,0.03933249091690859,0.035440520301442374,0.03196133444822258,0.02606440927327376,0.020226453350074433,0.012855296881388418,0.004186816874213658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007842910482681924,0.022290377161306517,0.03266896546921643,0.04074775295889631,0.047470247658337954,0.04493456983310997,0.04062981445539734,0.0338483505042062,0.028600087098501748,0.021877592399060102,0.013150143140135856,0.004540632384710588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008668480007174757,0.022762131175302427,0.032845873224464896,0.0408067222106458,0.0418091994903871,0.039804244930904495,0.03496876628744647,0.03166648818947514,0.02630028628027171,0.01945985307733109,0.012088696608645071,0.004540632384710588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007548064223934482,0.021523776888563172,0.03154854968597616,0.03915558316166013,0.04534735459535639,0.043460338539372756,0.039096613909910635,0.03355350424545875,0.027774517574008915,0.020934084371068296,0.012383542867392511,0.0038919706154662177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007194248713437552,0.02058026886057136,0.030251226147487417,0.03774032111967241,0.0422219842526335,0.03986321418265398,0.035912274315438274,0.031135764923729742,0.025592655259277855,0.019341914573832115,0.010083742049162472,0.0019459853077331089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005837955923199325,0.019106037566834162,0.02901287186074817,0.03626608982593521,0.04251683051138094,0.040099091189651936,0.03608918207068675,0.03125370342722872,0.025651624511027343,0.019341914573832115,0.010791373070156332,0.0025946470769774785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0061917714336962556 +2620729,0.004987048247020253,0.0017493834164940155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037859790356960035,0.010182978096009938,0.014804483539583684,0.01853824217478733,0.016658307757062413,0.016188324152631186,0.014125618333183019,0.010914063702902963,0.009164680286408945,0.007101974466960778,0.004778166645050818,0.0021410364201867055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003315995431264775,0.008694696681977717,0.012611226718904616,0.015848891549430855,0.01838158097331025,0.017598274965924872,0.016057773151400292,0.014830593739829864,0.012167353314719569,0.009216900686901303,0.0055614726524361975,0.00156661201477076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003655428034465106,0.010209088296256118,0.014830593739829864,0.018642682975772044,0.019243217581434168,0.01827714017232553,0.016501646555585333,0.014621712137860425,0.01206291251373485,0.009243010887147485,0.00584868485514417,0.00195826501846345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035248770332342097,0.010052427094779043,0.014778373339337503,0.0186949033762644,0.021828127405805926,0.021018711198174365,0.01879934417724912,0.015587789546969062,0.013081210323335845,0.009921876093548148,0.0059792358563750675,0.0021410364201867055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039165300369269,0.010339639297487014,0.01493503454081458,0.018642682975772044,0.019086556379957095,0.018146589171094636,0.0156661201477076,0.014099508132936839,0.011488488108318907,0.008381374279023565,0.0052742604497282245,0.002010485418955809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003289885231018596,0.009504112889609279,0.013995067331952124,0.017546054565432512,0.020444286792758413,0.019713201185865396,0.017859376968386666,0.015013365141553115,0.012376234916689004,0.0093474516881322,0.005483142051697661,0.0017754936167401945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003159334229787699,0.009086349685670406,0.013472863327028534,0.01691940975952421,0.018956005378726198,0.018120478970848456,0.016266654753369726,0.013942846931459764,0.01138404730733419,0.00864247628148536,0.004517064642589025,0.0008877468083700972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025849098243717534,0.008511925280254464,0.01297676952235113,0.01637109555435444,0.019164886980695628,0.01838158097331025,0.016501646555585333,0.014203948933921556,0.011540708508811266,0.008668586481731539,0.0048564972457893546,0.0012271794115704285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027415710258488304 +2620730,0.006268036563803703,0.002101422663009333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0048912424052803445,0.01391286728613076,0.020615680952626045,0.02572431190925219,0.0222460950877195,0.021449003732784917,0.019854821022915775,0.015108504318532622,0.01166651892222423,0.009239013432196208,0.006086879437682206,0.0026448940413738163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00442023387736446,0.011811444623121427,0.017499778383336346,0.021883780835476506,0.024927220554317613,0.024166360624607336,0.02253594648951389,0.021195383756214832,0.016630224177953176,0.012536073127607406,0.007391210745756966,0.0018478026864392416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004710085279158851,0.013767941585233567,0.020470755251728853,0.02576054333447649,0.025543154783130694,0.024492443451626024,0.022934492166981173,0.02014467242471016,0.015796901397794303,0.012282453151037312,0.007862219273672852,0.0023550426395794253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004528928153037357,0.013478090183439172,0.020325829550831655,0.02572431190925219,0.02967353725870076,0.028514131651523195,0.026593866114635357,0.02260840933996248,0.017753398359906438,0.013478090183439172,0.00793468212412145,0.002463736915252322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005072399531401839,0.013804173010457865,0.020362060976055956,0.025434460507457794,0.025833006184925084,0.024564906302074623,0.021920012260700804,0.020362060976055956,0.016195447075261587,0.012101296024915815,0.007354979320532667,0.0024999683404766213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004202845326018666,0.012717230253728897,0.019202655368878392,0.02423882347505593,0.027934428847934414,0.026992411792102645,0.02507214625521481,0.021267846606663424,0.01670268702840177,0.012717230253728897,0.007318747895308367,0.002101422663009333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039854567746728745,0.012209990300588712,0.01844179543916812,0.023224343568775556,0.0251808405308877,0.024166360624607336,0.022282326512943797,0.019238886794102694,0.014963578617635427,0.01141289894565414,0.005869490886336415,0.0010144799062803678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032970596954111963,0.01137666752042984,0.01782586121035504,0.02264464076518678,0.026050394736270875,0.025035914829990503,0.023224343568775556,0.020035978149037265,0.015543281421224206,0.01170275034744853,0.006340499414252299,0.0012680998828504598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035144482467569893 +2620731,0.008131148635299686,0.00274135868275818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006458455201752322,0.01774913587819703,0.02592674821998414,0.03229227600876161,0.0281105424248932,0.026948949762707536,0.024858082970773326,0.01886426483389527,0.015100704608413704,0.011848245154293831,0.007805902689887698,0.003438314280069581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005807963310928348,0.015054240901926278,0.022023796875040295,0.027552977947044078,0.03145592929198793,0.03024787292331484,0.02806407871840578,0.026159066752421273,0.020955131625829477,0.01584412391221253,0.009432132416947635,0.002416112737346192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0062261366693151885,0.017609744758734756,0.02578735710052187,0.032431667128223894,0.03233873971524903,0.030944828520626237,0.028668106902742328,0.02527625632916017,0.020118784909055797,0.01556534167328797,0.00994323318830933,0.0030201409216827407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005947354430390628,0.017238035106835338,0.02555503856808473,0.03205995747632448,0.03693864665750429,0.03540534434341921,0.032478130834711315,0.02746005053406923,0.02193086946206544,0.016680470628986213,0.00994323318830933,0.003159532041145021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006504918908239748,0.01733096251981019,0.02527625632916017,0.03154885670496278,0.0321064211828119,0.030433727749264547,0.027181268295144674,0.02471869185131105,0.019932930083106086,0.015054240901926278,0.009153350178023075,0.003205995747632448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00548271736551636,0.016122906151137092,0.023975272547512215,0.030062018097365133,0.034615461333132945,0.03345386867094728,0.030944828520626237,0.026205530458908704,0.020862204212854625,0.01584412391221253,0.0091998138845105,0.00274135868275818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005250398833079225,0.015518877966800545,0.023185389537225962,0.029132743967616583,0.03168824782442506,0.030387264042777116,0.027924687598943496,0.024021736253999643,0.019003655953357554,0.014496676424077155,0.007480656744475712,0.0013474474881353764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0043675884098181164,0.014589603837052007,0.022441970233427134,0.028435788370305193,0.032663985660661025,0.0314094655855005,0.02871457060922975,0.024904546677260754,0.019654147844181527,0.014821922369489142,0.008084684928812258,0.0017191571400347904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004646370648742678 +2620732,0.005841024167234769,0.001969259576382008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004639442052832188,0.013017139572694628,0.018891541020885024,0.023063701140338434,0.019959614011465097,0.018991672863751904,0.017289431535014915,0.01348442150607341,0.010981125434401369,0.008511206643684951,0.005640760481501006,0.002536673352627672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004272291962320289,0.01108125727726825,0.015987717577745454,0.019692595763820084,0.02246291008313714,0.021127818844912053,0.019525709359041948,0.018624522773240008,0.01522004011576603,0.011448407367780147,0.0068757198768592135,0.0017689958906482444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004472555648054052,0.012983762291739002,0.018824786458973772,0.023230587545116567,0.023097078421294062,0.021962250868802737,0.020093123135287605,0.017990354435083088,0.014552494496653485,0.011281520963002011,0.0073096245292823695,0.002236277824027026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004305669243275915,0.012750121325049612,0.018824786458973772,0.0232639648260722,0.026701824764501808,0.025333356245321088,0.023030323859382806,0.019625841201908828,0.015987717577745454,0.012416348515493336,0.0074097563721492515,0.002369786947849535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004772951176654697,0.013150648696517138,0.019025050144707532,0.023364096668939075,0.02369786947849535,0.022429532802181514,0.020126500416243236,0.018424259087506247,0.015119908272899146,0.011214766401090757,0.0068757198768592135,0.0024699187907164166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041054055575421525,0.012349593953582084,0.018157240839861224,0.022362778240270262,0.0254668653691436,0.024298660535696646,0.022229269116447754,0.01915855926853004,0.015520435644366674,0.011815557458292048,0.0069424744387704684,0.0020693914192488902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003971896433719644,0.01178218017733642,0.017356186096926175,0.021428214373512694,0.023397473949894707,0.022029005430713993,0.020093123135287605,0.017589827063615567,0.014218721687097209,0.010780861748667603,0.0056073832005453786,0.0010346957096244451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032709735336514706,0.010947748153445742,0.016621885915902374,0.02062715963057764,0.0237646240404066,0.022362778240270262,0.02019325497815449,0.01779009074934933,0.014285476249008465,0.010780861748667603,0.00594115601010165,0.001268336676313836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033711053765183526 +2620733,0.0027518433895617495,0.0009223211360619048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147042644603123,0.0058968072633466045,0.008573050559788527,0.010720093204391648,0.009419771602730602,0.009041771137131461,0.00828577020593318,0.0062596877103217805,0.005110566294900391,0.003991684916726934,0.0026460032591939893,0.0011642414340453555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019202423652436378,0.005004726164532633,0.007318089013999376,0.009162731286123186,0.010508412943656129,0.01005481238493716,0.009313931472362844,0.00866377067153232,0.006970328585648166,0.0052920065183879785,0.0031600838924088223,0.0008316010243181112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002071442551483295,0.005866567226098674,0.008573050559788527,0.010765453260263545,0.01085617337200734,0.01029673268292061,0.009510491714474396,0.00839161033630094,0.006758648324912648,0.005231526443892117,0.00334152411589641,0.0010432812850536303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019807224397395008,0.005760727095730915,0.008512570485292663,0.01075033324163958,0.012443775327523733,0.011990174768804762,0.010977133520999067,0.009238331379243016,0.007484409218862999,0.005685127002611085,0.0033868841717683063,0.0011188813781734582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022226427377229512,0.005911927281970571,0.008588170578412492,0.010735213223015617,0.01093177346512717,0.010372332776040438,0.009177851304747154,0.008270650187309212,0.006667928213168854,0.005019846183156598,0.0030693637806650273,0.0011037613595494928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018597622907477757,0.005473446741875568,0.00810432998244559,0.010175772533928883,0.011672654377701486,0.011234173837606479,0.010372332776040438,0.008754490783276113,0.007030808660144029,0.005322246555635911,0.003099603817912959,0.0009525611733098362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017841621976279472,0.005231526443892117,0.007771689572718347,0.00978265204970578,0.010704973185767684,0.010251372627048713,0.009359291528234741,0.008013609870701797,0.006410887896561438,0.00486864599691694,0.0025250431102022642,0.00046872057734293534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014666418065246685,0.0048837660155409066,0.007484409218862999,0.009480251677226463,0.01093177346512717,0.010508412943656129,0.009540731751722327,0.008225290131437316,0.006562088082801094,0.004944246090036769,0.002721603352313818,0.0006048007449586261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015422418996444969 +2620734,0.0033222696155054154,0.0011139374593165218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026382729299601823,0.00748487801610926,0.01098303249361202,0.01342587779913071,0.011530229842048207,0.01100257525605617,0.01012315094606944,0.00787573326499225,0.006331855031904439,0.004866147848593226,0.003224555803284668,0.001446164420867063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024233025430745385,0.0063904833192368875,0.009282812160971014,0.011471601554715756,0.013054565312691866,0.012331483102258336,0.01139343050493916,0.010885318681391275,0.008833328624755572,0.006624996468566681,0.003967180776162349,0.0009966808846516245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025405591177394353,0.007465335253665111,0.010963489731167867,0.013523591611351455,0.01336724951179826,0.012780966638473775,0.011764742991377999,0.010474920670064133,0.008383845088540136,0.006527282656345933,0.004221236687936292,0.0012702795588697177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002462388067962837,0.0073676214414443615,0.01098303249361202,0.013601762661128051,0.015556038905543005,0.014735242882888723,0.013504048848907305,0.011491144317159908,0.009224183873638565,0.0072112793418911665,0.004279864975268741,0.0013093650837580166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002677358454848482,0.0075435063034417086,0.01098303249361202,0.013484506086463156,0.013621305423572204,0.012800509400917925,0.011549772604492357,0.01055309171984073,0.00867698652520238,0.006429568844125186,0.00392809525127405,0.0013875361335346146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002306045968409641,0.006976766192561372,0.010357664095399236,0.012780966638473775,0.014559358020891377,0.013914446860234443,0.012820052163362074,0.011041660780944469,0.008872414149643874,0.006781338568119876,0.003967180776162349,0.0011530229842048206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022278749186330437,0.006703167518343279,0.009966808846516248,0.012311940339814186,0.01342587779913071,0.012644167301364731,0.011647486416713102,0.010142693708513591,0.008149331939210342,0.006195055694795391,0.0032050130408405185,0.000586282873324485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018370196697500528,0.006292769507016139,0.009634581884965703,0.011960170615819497,0.0137776475231254,0.01295685150047112,0.011764742991377999,0.010377206857843387,0.00826658851387524,0.00625368398212784,0.0034199834277261624,0.0007035394479893819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019347334819708002 +2620735,0.0033959557469784418,0.0011319852489928138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002666880501864426,0.007463428167088214,0.01095531486737113,0.013737312513200926,0.01191462440041589,0.011492528205876196,0.010629149626135915,0.008000641505593278,0.00629307053677361,0.004988409571832738,0.003280838603013071,0.001419778108906241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023790876419509987,0.00629307053677361,0.009324488661195042,0.011684390112485147,0.01333440250932213,0.012931492505443332,0.012048927735042155,0.011185549155301873,0.008806461513350874,0.006676794349991512,0.003952355276144401,0.001016868105027443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025517633578990553,0.007348311023122844,0.010840197723405762,0.013718126322540034,0.013679753941218243,0.013161726793374073,0.012259975832312002,0.010705894388779495,0.008461110081454762,0.006561677206026142,0.004182589564075144,0.0012662885836190801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024558324045945794,0.007214007688496576,0.010782639151423074,0.013679753941218243,0.0158286072952385,0.015291393956733436,0.014178594898401514,0.012010555353720366,0.009477978186482204,0.007175635307174785,0.004240148136057829,0.0013430333462626605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027628114551689013,0.007405869595105529,0.010840197723405762,0.013622195369235559,0.013909988229148986,0.013219285365356761,0.011722762493806937,0.010744266770101284,0.008576227225420133,0.00644656006206077,0.0038947967041617153,0.0013430333462626605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002283156688646523,0.006830283875278673,0.01024542581291801,0.012931492505443332,0.014965228715498219,0.014485573948975837,0.013430333462626605,0.011300666299267246,0.008902392466655348,0.006753539112635094,0.0038947967041617153,0.0011511714396537092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002168039544681152,0.006523304824704351,0.009823329618378318,0.012413465357599166,0.013487892034609292,0.012969864886765122,0.01195299678173768,0.010187867240935325,0.007981455314932382,0.006082022439503763,0.003146535268386805,0.0005563995291659593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001803501922124144,0.006101208630164657,0.009458791995821308,0.012087300116363947,0.013890802038488092,0.013372774890643922,0.01237509297627737,0.010571591054153227,0.00826924817484581,0.00621632577413003,0.003376769556317547,0.0007098890544531205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018994328754286195 +2620736,0.0034579568997875234,0.001145831872118943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002700889412851794,0.007734365136802863,0.011478780004620121,0.014241053267764002,0.012235847491555853,0.011744776689219165,0.010803557651407177,0.008307281072862336,0.006404381713807664,0.005053937007381766,0.003335189199203352,0.001452751123579374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002475815295114144,0.006568071981253225,0.009698648346149625,0.012072157224110293,0.013668137331704532,0.01309522139564506,0.012215386208125158,0.011581086421773601,0.009207577543812932,0.006915913799575047,0.004092256686139082,0.0010026028881040749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025985829956983162,0.0076729812865107775,0.011437857437758735,0.014241053267764002,0.014036440433457049,0.013443063213966887,0.012563228026446983,0.01104909305257552,0.008634661607753462,0.006752223532129485,0.004358253370738122,0.0012890608561338106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025167378619755354,0.007550213585926606,0.011478780004620121,0.01430243711805609,0.016369026744556328,0.015591497974189902,0.014547972519224437,0.012460921609293503,0.009882799897025882,0.007550213585926606,0.004460559787891599,0.001350444706425897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002782734546574575,0.00783667155395634,0.011581086421773601,0.014322898401486784,0.014445666102070959,0.013627214764843142,0.012235847491555853,0.011294628453743866,0.009166654976951544,0.006854529949282962,0.004153640536431168,0.0014118285567179833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002373508877960667,0.007181910484174088,0.010864941501699263,0.013545369631120364,0.015448268990175032,0.014813969203823477,0.013770443748858007,0.011785699256080555,0.009330345244397107,0.007120526633882001,0.004133179253000472,0.0011662931555496384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002250741177376495,0.006936375083005744,0.010435254549654658,0.013013376261922276,0.01407736300031844,0.013340756796813407,0.012338153908709331,0.010721712517684393,0.008430048773446507,0.006424842997238358,0.0032942666323419606,0.0005933772194901668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018619767921932825,0.006445304280669054,0.010087412731332835,0.01262461187673907,0.01452751123579374,0.0138113663157194,0.012726918293892544,0.01104909305257552,0.008634661607753462,0.006527149414391834,0.00351934075007961,0.0006956836366436437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019642832093467594 +2620737,0.0017060336147037048,0.0005901954126542546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013094960718266274,0.003541172475925528,0.005191875270692896,0.006538258555810415,0.00580973609331532,0.005652965436829033,0.005071991827497501,0.0038270483789299326,0.003163078539693896,0.002452999683844246,0.0016507027947673682,0.0007377442658178183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011619472186630638,0.0030247514898530553,0.004444909201552356,0.00560685642021542,0.006436818719260464,0.006187830029546952,0.0056898526501199245,0.005265649697274678,0.004260473135097901,0.0032276311629529544,0.0019365786977717733,0.0005348645927179183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001263387055213014,0.0035503942792482505,0.005210318877338342,0.0065659239657785825,0.0067134728189421474,0.006298491669419624,0.00580973609331532,0.005164209860724728,0.004159033298547951,0.003218409359630232,0.002038018534321723,0.0006731916425587593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012080562352766776,0.0034858416559891913,0.005173431664047451,0.006575145769101305,0.007644874954537142,0.007395886264823628,0.006695029212296702,0.005579191010247251,0.004592458054715919,0.0034858416559891913,0.0020841275509353363,0.0007100788558496502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001355605088440241,0.0036057250991845874,0.005265649697274678,0.006621254785714919,0.006796469048846651,0.006473705932551355,0.005662187240151756,0.005108879040788392,0.004159033298547951,0.003098525916434837,0.0019181350911263273,0.0007008570525269275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011619472186630638,0.0034305108360528544,0.0050812136308202235,0.006436818719260464,0.007414329871469075,0.007183784788401005,0.006630476589037643,0.00560685642021542,0.004555570841425028,0.0034305108360528544,0.0020011313210308323,0.0006270826259451455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011342818086948958,0.0033198491961801825,0.004970551990947551,0.006243160849483286,0.006888687082073878,0.006593589375746752,0.005957284946478883,0.0050812136308202235,0.004076037068643446,0.003098525916434837,0.0016138155814764772,0.0003043195096498501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009129585289495499,0.0030339732931757776,0.004684676087943145,0.005920397733187991,0.0068794652787511545,0.006602811179069473,0.005957284946478883,0.005090435434142946,0.004076037068643446,0.003061638703143946,0.001696811811380982,0.00040575934619980006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000949845742240441 +2620738,0.009003874188954653,0.002984141159767828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006945845802907876,0.019448368248142053,0.02912110166256191,0.037095961658493166,0.03277410204779494,0.032208144241632077,0.029584158049422434,0.02181510089209585,0.017441790571746444,0.013325733799652888,0.009055324898605825,0.0037044510948842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005968282319535656,0.016309874959420715,0.02479924205186368,0.031590735725818046,0.03627275030407447,0.03580969391721393,0.03297990488639961,0.030047214436282964,0.0234100728912821,0.017853396248955797,0.010547395478489738,0.00277833832116315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006688592254652029,0.019396917538490883,0.029018200243259573,0.036993060239190835,0.037095961658493166,0.03642710243302798,0.03334005985395781,0.02906965095291074,0.023101368633375082,0.01775049482965346,0.011216254703954941,0.003498648256279523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006328437287093844,0.018830959732328022,0.028658045275701385,0.03704451094884201,0.04285844113942416,0.0411091170112844,0.038896736496284105,0.03215669353198091,0.025313749148375374,0.019036762570932696,0.011216254703954941,0.003601549675581861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007100197931861385,0.01898531186128153,0.028503693146747878,0.036375651723376805,0.037404665916400195,0.03544953894965576,0.032568299209190264,0.028709495985352555,0.022483960117561052,0.01697873418488592,0.010187240510931549,0.003498648256279523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005865380900233318,0.01769904412000229,0.027165974695817472,0.034935031853144054,0.040646060624423865,0.0399257506893075,0.03683870811023732,0.030561721532794652,0.023924579987793796,0.018007748377909305,0.010290141930233893,0.003087042579070167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005608127351977471,0.016772931346281245,0.025725354825584728,0.033185707725004294,0.036375651723376805,0.03529518682070225,0.03272265133814377,0.02706307327651513,0.021094790956979477,0.01605262141116487,0.008386465673140622,0.0012862677412792366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004579113158954081,0.015846818572560196,0.025005044890468352,0.032516848499539085,0.03791917301291188,0.037147412368144346,0.03406036978907419,0.028709495985352555,0.022329607988607544,0.016772931346281245,0.009055324898605825,0.0019551269667444394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004939268126512268 +2620739,0.004884822125639922,0.0016282740418799744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037292728055960704,0.010268631457662419,0.015048403645116537,0.019119088749816476,0.016886777563368118,0.016414052841531995,0.015074666129662986,0.01118781841678821,0.009086819653072115,0.007064608342995371,0.004700984733814763,0.002048473794623193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003256548083759949,0.008614094931235994,0.01294740488140044,0.016387790356985545,0.018751413966166152,0.01822616427523713,0.01691304004791457,0.015494865882406207,0.012290842767739158,0.009323182013990175,0.0055676467238476544,0.0014969616191477183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035716978983173628,0.010163581519476614,0.015022141160570086,0.019145351234362923,0.019407976079827433,0.018725151481619705,0.017201927377925537,0.014969616191477183,0.012001955437728197,0.00924439456035082,0.005856534053858616,0.0018646364027980352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034141229910386556,0.009979744127651456,0.014917091222384282,0.019092826265270018,0.02221806192629771,0.021587762297182886,0.01995948825530291,0.016545365264264256,0.013236292211411404,0.010058531581290808,0.005961583992044422,0.0019959488255302913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003860585228328326,0.010242368973115966,0.015048403645116537,0.01906656378072357,0.01956555098710614,0.018567576574340997,0.016414052841531995,0.014523153954187512,0.011713068107717233,0.008824194807607601,0.005383809332022495,0.0019171613718909374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032040231146670452,0.009480756921268884,0.014208004139630097,0.018094851852504878,0.020957462668068055,0.020353425523499676,0.018803938935259053,0.015678703274231362,0.012448417675017868,0.009375706983083076,0.005410071816568945,0.0016807990109728764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003046448207388339,0.009034294683979212,0.013630229479608172,0.017385764769750695,0.019040301296177117,0.018383739182515835,0.016860515078821667,0.014155479170537194,0.01118781841678821,0.008535307477596638,0.004438359888350252,0.000787874536393536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025211985164593155,0.008456520023957284,0.0131312422732256,0.016860515078821667,0.019539288502559687,0.018908988873444863,0.01735950228520424,0.014680728861466222,0.011581755684984978,0.008719144869421797,0.004779772187454119,0.0010767618664044992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026525109391915707 +2620740,0.0037962179738350345,0.0012724752984921907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029479011081735744,0.008186257753633092,0.012109723257317346,0.015375743190113969,0.013488238164017216,0.013148911417752636,0.012109723257317346,0.009013366697653015,0.007189485436480876,0.005577683391724102,0.0037325942089104255,0.001590594123115238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002566158518625917,0.00687136661185783,0.010370673682711353,0.0131277034961111,0.015015208522207849,0.014675881775943266,0.013636693615507973,0.012512673768506542,0.009798059798389866,0.007443980496179314,0.004411247701439593,0.0011664356902845081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002820653578324356,0.008101426067066948,0.0120248915707512,0.015354535268472434,0.015460574876680117,0.015078832287132459,0.01380635698864027,0.0120248915707512,0.009543564738691428,0.007380356731254704,0.0046657427611380324,0.0014633465932660191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002693406048475136,0.00788934685065158,0.01189764404090198,0.015290911503547819,0.017793446257249133,0.01724204029456918,0.01618164421249236,0.013445822320734144,0.01062516874240979,0.008059010223783874,0.004771782369345714,0.0015481782798321651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030751486380227937,0.008165049831991556,0.012109723257317346,0.015439366955038582,0.01594835707443545,0.015078832287132459,0.013573069850583364,0.01215213910060042,0.009628396425257575,0.007253109201405486,0.00436883185815652,0.0015269703581906285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025449505969843815,0.007613643869311606,0.01151590145135432,0.014739505540867873,0.01711479276471996,0.01669063433188923,0.015439366955038582,0.012830792593129588,0.010073762779729843,0.007592435947670069,0.004347623936514985,0.0013148911417752637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024177030671351622,0.007189485436480876,0.010943287567032837,0.013997228283414096,0.015290911503547819,0.014803129305792482,0.013636693615507973,0.011409861843146638,0.008907327089445334,0.006786534925291682,0.0035205149924950607,0.0005938218059630221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001972336712662895,0.006744119082008608,0.010497921212560574,0.013594277772224897,0.01573627785802009,0.015290911503547819,0.014082059969980243,0.011918851962543518,0.009267861757351455,0.006977406220065511,0.003775010052193498,0.0008271089440199238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020783763208705778 +2620741,0.006653611669232589,0.0022306906174305785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005153664529925821,0.014345648281062169,0.02169154324535942,0.027806712351763938,0.024768357890091252,0.024499136608677214,0.022229985808187493,0.016230197250960417,0.013114922423169435,0.009999647595378457,0.006884372767587474,0.002769133180258649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004346000685683713,0.012038037297513297,0.018345507319213552,0.023691472764435118,0.02742211052117246,0.02715288923975842,0.024883738439268704,0.022229985808187493,0.01734554255967571,0.013307223338465178,0.007922797710184469,0.0021153100682531354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004961363614630079,0.014345648281062169,0.02165308306230027,0.02765287161952735,0.02765287161952735,0.02676828740916694,0.025114499537623593,0.021614622879241128,0.01734554255967571,0.013191842789287733,0.008384319906894245,0.002653752631081206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004730602516275193,0.013961046450470693,0.021422321963945386,0.027806712351763938,0.0322680935866251,0.030998907545673218,0.02876821692824263,0.024076074595026593,0.01896087024815992,0.014268727914943876,0.008422780089953393,0.002807593363317798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053459654452215595,0.014153347365766431,0.021422321963945386,0.02749903088729076,0.028575916012946893,0.02742211052117246,0.02499911898844614,0.021537702513122828,0.016845560179906786,0.012845701141755402,0.0076151162457112846,0.002615292448022058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0044229210518020095,0.013230302972346883,0.02046081738746669,0.026422145761634618,0.03092198717955492,0.030229703884490255,0.027960553084000535,0.02288380892019301,0.017999365671681217,0.013499524253760916,0.007768956977947877,0.0023845313496671707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004153699770387973,0.012384178945045626,0.01915317116345566,0.024845278256209552,0.02722980960587672,0.026806747592226093,0.024652977340913804,0.02003775537381606,0.015730214871191497,0.011922656748335852,0.006230549655581963,0.00092304439341955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034229562922641634,0.011730355833040112,0.018614728600627586,0.024268375510322335,0.028152853999296273,0.027806712351763938,0.02542218100209677,0.021345401597827093,0.016691719447670193,0.01249955949422307,0.006730532035350883,0.0015384073223659164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036921775736782 +2620742,0.003546263115785601,0.001130970399088381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002741165543553195,0.007495075017687406,0.010677127326986918,0.012996575094608852,0.011386379950144037,0.010868817225137493,0.009354467029747964,0.00703501926212603,0.006249090679708682,0.004753909474134212,0.003316235238004914,0.0014760122157594128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023961237268821634,0.006364104618599026,0.00902859420289199,0.010983831164027834,0.012421505400157134,0.01081131025569232,0.010312916520500827,0.009910367734384624,0.008587707437145672,0.006517456537119484,0.003948811901901804,0.0009967874703829796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00270282756392308,0.0076484269362078645,0.01081131025569232,0.013092420043684138,0.013188264992759427,0.012268153481636675,0.010907155204767604,0.009776184805679225,0.008376848549180043,0.006402442598229139,0.004140501800052377,0.0012459843379787248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002587813625032736,0.007552581987132578,0.010715465306617034,0.013073251053869079,0.01479846013722424,0.013897517615916545,0.012191477522376443,0.010638789347356806,0.009162777131597391,0.006920005323235687,0.004255515738942722,0.0014185052463142403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002856179482443538,0.007629257946392808,0.010792141265877261,0.013111589033499198,0.01301574408442391,0.011980618634410814,0.010581282377911633,0.009469480968638307,0.0083960175389951,0.006344935628783969,0.003948811901901804,0.0014376742361292977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024919686759574495,0.007418399058427177,0.010485437428836345,0.012709040247382992,0.01428089741221769,0.013494968829800343,0.011769759746445185,0.010562113388096574,0.009009425213076933,0.006689977445454999,0.003987149881531918,0.001188477368533553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024344617065122772,0.007188371180646488,0.010312916520500827,0.012479012369602306,0.013590813778875627,0.012613195298307706,0.011098845102918179,0.010044550663090028,0.008626045416775786,0.0064216115880441965,0.003354573217635028,0.0005942386842667765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001974405950950902,0.00667080845563994,0.009776184805679225,0.01188477368533553,0.013494968829800343,0.012594026308492653,0.011060507123288064,0.009872029754754513,0.008415186528810157,0.006210752700078567,0.003584601095415715,0.0008050975722324067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020510819102111315 +2620743,0.007575962449643431,0.0024411434559962167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00572406051750837,0.015909521144251204,0.023232951512239856,0.028241504465059682,0.024748144002168543,0.023527572274170436,0.02032883257320987,0.015151924899286863,0.01304749088549702,0.010017105905639648,0.007070898286333869,0.0030724736601331695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005092730313371417,0.013594643729082381,0.01969750236907292,0.02411681379803159,0.027525996900371136,0.023527572274170436,0.022727887348930293,0.022180734505344937,0.01902408348466017,0.014268062613495128,0.008670268136814149,0.002146522694065639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005681971837232573,0.01662502870893975,0.02382219303610101,0.028746568628369242,0.02870447994809344,0.026431691213200416,0.023906370396652606,0.021675670342035373,0.018140221198868437,0.013973441851564553,0.00904906625929632,0.002735764217926794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005429439755577792,0.016330407947009174,0.02344339491361884,0.028620302587541852,0.03240828381236357,0.030051317716918942,0.02685257801595838,0.02369592699527362,0.020286743892934077,0.015362368300665844,0.009385775701502695,0.003030384979857372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005976592599163152,0.01637249662728497,0.023527572274170436,0.02870447994809344,0.02878865730864504,0.026389602532924612,0.023232951512239856,0.021254783539277403,0.018981994804384377,0.014268062613495128,0.008796534177641542,0.0031145623404089657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005261085034474606,0.0159936985048028,0.022980419430585073,0.027694351621474322,0.03093518000271068,0.029251632791678802,0.02575827232878767,0.023106685471412466,0.019781679729624514,0.014688949416253098,0.008796534177641542,0.002567409496823607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005134818993647214,0.015362368300665844,0.022307000546172327,0.027063021417337366,0.029504164873333582,0.026978844056785765,0.024032636437479993,0.021970291103965953,0.018729462722729594,0.013973441851564553,0.007281341687712854,0.001304749088549702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040826019867522935,0.01435223997404672,0.021296872219553203,0.025884538369615056,0.02967251959443678,0.027399730859543746,0.02420099115858318,0.021717759022311166,0.018434841960799017,0.013720909769909771,0.00782849453129821,0.0016414585307560768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00425095670785548 +2620744,0.002948914111048745,0.0009174399456596095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023099827203215168,0.006356548194927295,0.009010570894871164,0.01087821649853537,0.009403759443010997,0.008912273757836207,0.007716325257244215,0.005832296797407517,0.005209748262852781,0.00394826833757082,0.0027687026931513216,0.0012123313567644837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020314741653891352,0.005373576824577713,0.0076016452640367636,0.009223548025113572,0.010370347957188084,0.00897780518252618,0.008568233778213852,0.008371639504143935,0.007257605284414411,0.005455491105440178,0.003325719803016084,0.0008027599524521583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022772170079765302,0.0064712281881347455,0.009125250888078616,0.010960130779397836,0.010910982210880356,0.010108222258428199,0.009010570894871164,0.008207810942419007,0.0070446281541720005,0.0053408111122327274,0.0034895483647410146,0.0009993542265220746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002178919870941573,0.006372931051099787,0.009026953751043657,0.010960130779397836,0.01228714212936977,0.011467999320745116,0.010140987970773185,0.008961422326353686,0.007732708113416709,0.005815913941235025,0.0035878455017759733,0.0011467999320745115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002391897001183982,0.006438462475789759,0.009076102319561135,0.010992896491742822,0.010861833642362876,0.009977159409048253,0.00876482805228377,0.008027599524521584,0.007061011010344493,0.005308045399887741,0.003325719803016084,0.0011795656444194976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020970055900791074,0.006258251057892337,0.008813976620801247,0.010566942231258002,0.011779273588022486,0.011025662204087806,0.009583970860908422,0.008715679483766291,0.007454199558484327,0.005488256817785164,0.003309336946843591,0.0009502056580045954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020150913092166424,0.005963359646787463,0.008551850922041361,0.010304816532498113,0.011123959341122765,0.010304816532498113,0.009076102319561135,0.008371639504143935,0.007175691003551947,0.005308045399887741,0.002785085549323815,0.0004751028290022977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016382856172493028,0.005602936810992616,0.00817504523007402,0.009911627984358282,0.01115672505346775,0.010419496525705563,0.009141633744251108,0.008256959510936485,0.00709377672268948,0.0051933654066802885,0.003014445535738717,0.0006225485345547352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017201998981117683 +2620745,0.006359506618808882,0.002249825454767293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004589643927725279,0.011969071419362,0.01751864087445466,0.021928298765798552,0.020578403492938175,0.02021843142017541,0.017068675783501196,0.013618943419524682,0.011579101673869004,0.008849313455418022,0.005849546182394963,0.0029697696002928264,5.9995345460461145e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003929695127660206,0.010529183128310932,0.015148824728766441,0.018958529165505722,0.022168280147640395,0.020728391856589326,0.018898533820045263,0.017098673456231426,0.014548871274161828,0.011249127273836465,0.006809471709762341,0.00209983709111614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004499650909534586,0.012419036510315458,0.017968605965408117,0.022258273165831087,0.023878147493263543,0.022918221965896164,0.020098440729254485,0.017338654838073272,0.014788852656003673,0.011339120292027157,0.006959460073413493,0.00260979752753006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004349662545883434,0.012239050473934076,0.017758622256296496,0.022318268511291546,0.02636795432987268,0.025588014838886678,0.022168280147640395,0.018118594329059268,0.015508796801529206,0.011939073746631772,0.007199441455255338,0.002909774254832366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011999069092092229,0.0047096346186462,0.01244903418304569,0.01793860829267788,0.022288270838561317,0.022678240584054314,0.021718315056686942,0.018598557092742957,0.015508796801529206,0.013648941092254912,0.010559180801041164,0.006299511273348422,0.002729788218450983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004079683491311358,0.011759087710250384,0.01724866181988258,0.021628322038496243,0.025198045093393687,0.024328112584216993,0.021208354620273016,0.017608633892645345,0.01499883636511529,0.01136911796475739,0.006839469382492571,0.002399813818418446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038996974549299745,0.011309122619296926,0.016708703710738432,0.020818384874780018,0.023818152147803074,0.02264824291132408,0.0196184779655708,0.01712867112896166,0.01457886894689206,0.011069141237455084,0.005759553164204271,0.001259902254669684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003179753309404441,0.010529183128310932,0.015838771201561744,0.019888457020142872,0.023458180075040313,0.0224682568749427,0.019528484947380107,0.016918687419850045,0.014068908510478139,0.010739166837422546,0.0062695136006181915,0.0018898533820045263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003359739345785824 +2620746,0.008740765094235716,0.00302897800295297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006533938263512837,0.017308445731159833,0.02522705965316546,0.03137155788772719,0.02851566434208582,0.02734734425523253,0.023755841766016875,0.01886620584696422,0.01609685452997864,0.012288996469123481,0.00817824060797302,0.00402421363249466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005581973748299045,0.015015076671781154,0.021635557163949794,0.02678481976896984,0.0308090334014645,0.028558935456413727,0.026049210825395547,0.02388565510900057,0.0207268637630639,0.015880498958339144,0.009606187380793708,0.0028126224313134726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006404124920529137,0.017914241331750427,0.025876126368083948,0.03176099791667829,0.03327548691815479,0.03176099791667829,0.027866597627167332,0.02423182402362376,0.020683592648736,0.015837227844011245,0.009865814066761106,0.0034616891462319666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006144498234561741,0.017741156874438828,0.025529957453460757,0.03158791345936669,0.03704007386468204,0.035482313748877656,0.030592677829825,0.025616499682116548,0.021938454964245086,0.01678919235922504,0.0102552540957122,0.003937671403838863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.327111432789958e-05,0.006663751606496537,0.017914241331750427,0.02583285525375605,0.031804269031006194,0.03210716683130149,0.030592677829825,0.02630883751136295,0.02237116610752408,0.01968835701919431,0.015101618900436953,0.009086934008858913,0.0036780447178714646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005841600434266443,0.017005547930864538,0.024924161852870153,0.031111931201759802,0.035785211549172954,0.03457362034799177,0.030203237800873906,0.02574631302510025,0.021938454964245086,0.01661610790191344,0.009865814066761106,0.0032886046889203688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0057117870912827455,0.01678919235922504,0.024534721823919064,0.03041959337251341,0.034097638090384866,0.032366793517268885,0.027909868741495227,0.02466453516690276,0.020899948220375497,0.015880498958339144,0.008221511722300921,0.0016443023444601844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045867381187573554,0.015447787815060149,0.02302023282244258,0.02868874879939742,0.033448571375466384,0.031198473430415593,0.027433886483888333,0.024058739566312163,0.01981817036217801,0.014971805557453257,0.008740765094235716,0.0024231824023623763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004803093690396854 +2620747,0.010716850399970442,0.003516466537490301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00803763779997783,0.021880236233272985,0.03181564962491225,0.03912766734572542,0.03460649608323789,0.033545974429074144,0.028689901591587543,0.022103503949939034,0.019201023633280377,0.01456821851245982,0.009991230320805776,0.004632805120820557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007032933074980602,0.018921938987447814,0.027182844504091693,0.03326688978324158,0.03762061025822957,0.032876171279075994,0.03142493112074666,0.029750423245751285,0.025787421274928876,0.019591742137445963,0.011833188983300698,0.003125748033324712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007926003941644806,0.022661673241604164,0.0324854527749104,0.03957420277905752,0.040355639787388695,0.0377322441165626,0.033378523641574606,0.029471338599918722,0.025117618124930723,0.0193126574916134,0.0122797244166328,0.003963001970822403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007646919295812244,0.022550039383271134,0.03215055119991132,0.039295118133224956,0.0452117126248753,0.04242086616654968,0.03689499017906491,0.03192728348324528,0.02746192914992426,0.020819714579109243,0.012670442920798388,0.004465354333321018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008316722445810394,0.022661673241604164,0.0324854527749104,0.03951838584989101,0.03940675199155798,0.03678335632073188,0.03215055119991132,0.027796830724923335,0.025117618124930723,0.018977755916614325,0.011554104337468132,0.0042979035458214805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00720038386248014,0.02160115158744042,0.03131329726241363,0.038402047266560754,0.04320230317488084,0.04119289372488639,0.03611355317073373,0.03153656497907969,0.026903759858259133,0.02026154528744412,0.01194482284163372,0.0037397342541563524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007032933074980602,0.021154616154108324,0.030587677183248976,0.037453159470730045,0.04119289372488639,0.03834623033739424,0.03349015749990763,0.02997369096241733,0.025731604345762358,0.019424291349946426,0.01004704724997229,0.0018419586624949201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0056933267749842975,0.019647559066612478,0.029024803166586614,0.03566701773740163,0.04091380907905383,0.038067145691561666,0.033378523641574606,0.029862057104084305,0.024838533479098156,0.018531220483282228,0.010716850399970442,0.0026233956708260975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005916594491650349 +2620748,0.008139973082186204,0.0027282327363371333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006350968009178246,0.016906097939925188,0.024688270007509804,0.03045781136796046,0.02679035096829415,0.025940573558615374,0.022183662905298662,0.01735334920817718,0.014535666218189648,0.011270731959950125,0.0077374469407594125,0.0034885598923655153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005635365979975063,0.014625116471840047,0.02115498498831909,0.02585112330496497,0.029294958070505292,0.02647727508051775,0.024419919246558605,0.023212340822278237,0.019902681437213517,0.015206543120567632,0.00912392587234058,0.002415156848560741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0061273423750522514,0.017532249715477972,0.02504607102211139,0.030815612382562058,0.03121813852398884,0.028489905787651704,0.025806398178139775,0.02294399006132704,0.019097629154359936,0.014804016979140844,0.00948172688694217,0.0031307588777639236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005948441867751456,0.01730862408135198,0.025001345895286197,0.03045781136796046,0.03542230044555753,0.03197846568001723,0.028534630914476902,0.025090796148936587,0.02142333574927028,0.016235221037547206,0.009794802774718564,0.003354384511889918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0064851433896538436,0.017398074335002376,0.025180246402586984,0.030770887255736856,0.030815612382562058,0.028221555026700516,0.025090796148936587,0.021691686510221474,0.019679055803087524,0.014804016979140844,0.008989750491864982,0.003399109638715118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005680091106800261,0.0164588466716732,0.024106843358782215,0.029876384719232874,0.033364944611598384,0.03166538979224084,0.02831100528035091,0.02526969665623739,0.021512786002920677,0.016235221037547206,0.009660627394242964,0.0029518583704631284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005590640853149865,0.016414121544848,0.02388321772465622,0.029563308831456483,0.03215736618731802,0.02996583497288327,0.026656175587818548,0.023435966456404233,0.02012630707133951,0.015161817993742431,0.0077374469407594125,0.0014759291852315642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004472512682519892,0.015072367740092034,0.022452013666249854,0.027729578631623324,0.03197846568001723,0.0292055078168549,0.026208924319566566,0.023257065949103435,0.019097629154359936,0.014222590330413253,0.008095247955361005,0.0019231804534835535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0046961383166458865 +2620749,0.007534102610960925,0.002672194029503382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005641298506729365,0.01458572574437263,0.021154869400235112,0.026721940295033827,0.024866249996767592,0.023455925370085243,0.020598162310755244,0.016292960818777572,0.013843449625066135,0.010651662312048206,0.007125850745342355,0.0034144701488098782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0048247947754922185,0.01247023880434912,0.01803730969914783,0.022713649250778758,0.026647712683103175,0.025460070892212784,0.022936332086570702,0.020635276116720565,0.017480602609667963,0.013435197759447567,0.008127923506406124,0.002486624999676759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005492843282868064,0.014771294774199256,0.021303324624096412,0.02694462313082578,0.028726085817161365,0.027352874996444346,0.024420884325183693,0.020857958952512516,0.01774039925142524,0.013583652983308863,0.00842483395412872,0.003080445895121955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005307274253041441,0.014622839550337954,0.021303324624096412,0.026833281712929802,0.03202921454807527,0.030767345145254223,0.02646214365327655,0.021934259325506935,0.01877958581845433,0.014400156714546008,0.00864751678992067,0.003377356342844554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001113414178959743,0.0058268675365559875,0.01480840858016458,0.021451779847957708,0.027018850742756433,0.027798240668028246,0.026573485071172524,0.022862104474640058,0.01941052051986485,0.016552757460534844,0.01269292164014107,0.007682557834822225,0.0032660149249485793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005084591417249493,0.014103246266823412,0.020635276116720565,0.026053891787657983,0.030433320891566307,0.029468361936467857,0.02586832275783136,0.021563121265853687,0.018259992534939783,0.013880563431031457,0.008276378730267422,0.002857763059330007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0048247947754922185,0.013509425371378217,0.019818772385483418,0.025051819026594212,0.02857763059330007,0.027389988802409677,0.024123973877461097,0.02056104850478992,0.01740637499773731,0.013175401117690291,0.0068289402976197565,0.0014474384326476656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003971177238289749,0.012581580222245094,0.018853813430384975,0.02401263245956512,0.028651858205230717,0.02694462313082578,0.023975518653599797,0.020301251863032645,0.016886781714222768,0.012804263058037042,0.0073485335811343,0.002152600745988836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004230973880047023 +2620750,0.008660371373511618,0.002974268956559546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006560887404175469,0.017364481996384407,0.025325025380117314,0.0315797380387646,0.028299294336676863,0.026899638357119428,0.023444237657587012,0.01867665947721951,0.0157898690193823,0.012115772073044035,0.008179239630538751,0.0038927931931441112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005642363167590903,0.014958823281520072,0.021694667683140222,0.02681215985839709,0.03066121380218003,0.028474251334121545,0.025893635621812516,0.02392536940055988,0.020557447199749803,0.0157898690193823,0.009491417111373846,0.002711833460392528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00629845190800845,0.017845613739357277,0.02571867862436784,0.03184217353493162,0.03306687251704437,0.031273563293236405,0.02768694484562048,0.023969108649921054,0.020338750952943956,0.015614912021937618,0.009797591856902035,0.003367922200810075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006123494910563771,0.017758135240634937,0.025587460876284336,0.03153599878940342,0.03709088345827199,0.035035138738297,0.03018008205920716,0.025587460876284336,0.021957103179307234,0.016752132505328036,0.010191245101152564,0.003761575445060603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006692105152258981,0.01780187448999611,0.02584989637245135,0.03175469503620928,0.031885912784292786,0.030092603560484824,0.026024853369896035,0.02226327792483543,0.01950770521508173,0.014871344782797733,0.008966546119039808,0.0036303576969770935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005773580915674414,0.016752132505328036,0.02445024039289392,0.030486256804735348,0.03451026774596297,0.03324182951448905,0.02921781857326142,0.025018850634589127,0.021257275189528517,0.016139783014271658,0.009578895610096186,0.003149225954004225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005511145419507394,0.016271000762355162,0.02370667315375403,0.02961147181751195,0.03284817627023852,0.03114234554515289,0.027249552352008787,0.02392536940055988,0.020382490202305127,0.015439955024492939,0.007960543383732905,0.0015746129770021124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004548881933561659,0.015264998027048258,0.022656931169085952,0.02834303358603803,0.03315435101576671,0.03031129980729067,0.027293291601369955,0.023662933904392863,0.019551444464442902,0.014740127034714222,0.00852915362542811,0.0022744409667808294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004811317429728678 +2620751,0.002996449592552079,0.0010137242402663749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022361564123522977,0.005903452928610065,0.008586840623432823,0.010539750556887164,0.009585657154283516,0.009242779837722832,0.008065070793883954,0.0063208687922491616,0.005486037064970971,0.004159250926975274,0.0027430185324854857,0.0013715092662427428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001893279095791612,0.005128252038994603,0.007349500741931218,0.009063887324734649,0.010405581172146025,0.00961547257311488,0.00870610229875828,0.008154517050378046,0.007081161972448943,0.005351867680229833,0.003264788362034355,0.0009242779837722832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022063409935209337,0.006127068569845296,0.008795548555252372,0.010659012232212621,0.011195689771177172,0.010703735360459666,0.009302410675385559,0.008303594144534866,0.007066254263033261,0.0053816830990611976,0.003369142327944128,0.0011628013344231948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00210198702761116,0.006022714603935522,0.00863156375167987,0.010673919941628298,0.01240321423384741,0.011926167532545589,0.01036085804389898,0.00863156375167987,0.007438946998425311,0.005679837287374836,0.0034734962938539025,0.0013267861379956964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002265971831183662,0.006097253151013932,0.008721010008173963,0.010703735360459666,0.01080808932636944,0.01028631949682057,0.008840271683499417,0.007543300964335085,0.0066190229805628015,0.00509843662016324,0.0031157112678775354,0.0012522475909172866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019678176428700226,0.005799098962700292,0.008497394366938731,0.010524842847471481,0.012149783173780819,0.011657828763063312,0.010181965530910796,0.008735917717589645,0.0074538547078409935,0.005650021868543474,0.0033840500373598105,0.001132985915591831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019678176428700226,0.005814006672115973,0.00857193291401714,0.010509935138055803,0.011881444404298542,0.011195689771177172,0.009585657154283516,0.00857193291401714,0.007230239066605762,0.0055009447743866536,0.0028622802078109417,0.0005664929577959155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015653094886466086,0.005322052261398469,0.007975624537389862,0.009809272795518747,0.01128513602767126,0.01073355077929103,0.009257687547138514,0.008243963306872137,0.0067979154935509855,0.005113344329578921,0.002996449592552079,0.0008199240178625092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016249403263093366 +2620752,0.0046329115423244,0.0016417599154838897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034409488639593855,0.0089059852949537,0.013044119876447343,0.016440089016694838,0.01515816689090605,0.01466338993007529,0.012684282086752242,0.010142927697030606,0.008478677919690772,0.006522059938223672,0.004340543338197133,0.002136536876314651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00292368204127268,0.00773651247844463,0.011222441066115902,0.014033673798108864,0.01623768025999135,0.015293106062041711,0.013921224488829147,0.012526853053760638,0.010750153967141086,0.008321248886699165,0.005015239193875444,0.0015518004680601149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033509894165356094,0.009243333222792858,0.013336488080574608,0.01668747749711022,0.017789480728051463,0.016979845701237485,0.015000737857914441,0.012729261810464128,0.010817623552708917,0.008366228610411053,0.005150178365011106,0.0019116382577552139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003238540107255891,0.00915337377536908,0.01326901849500678,0.016530048464118614,0.019701118985806676,0.018913973820848647,0.01612523095071163,0.013493917113566211,0.011492319408387224,0.008838515709385871,0.005330097259858655,0.0021140470144587068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.995944742377476e-05,0.003508418449527216,0.009220843360936913,0.013403957666142437,0.01670996735896616,0.016979845701237485,0.01626017012184729,0.013966204212541035,0.011717218026946663,0.010165417558886546,0.007826471925868404,0.004655401404180344,0.001979107843323045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030811110742642862,0.008793535985673983,0.012909180705311678,0.01623768025999135,0.01864409547857732,0.018126828655890614,0.01583286274658436,0.013224038771294891,0.011267420789827788,0.008591127228970492,0.005150178365011106,0.0017766990866195512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029461719031286236,0.008456188057834827,0.012436893606336862,0.01560796412802492,0.017699521280627684,0.016934865977525596,0.014753349377499064,0.012751751672320075,0.010885093138276744,0.008231289439275391,0.0042505838907733575,0.0008995944742377476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024064152185859747,0.007893941511436235,0.011784687612514494,0.014933268272346614,0.017699521280627684,0.016597518049686445,0.01466338993007529,0.012481873330048751,0.010300356730022211,0.007826471925868404,0.004565441956756569,0.0013493917113566215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025413543897216365 +2620753,0.002760744143256053,0.0009649202830797855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002050455601544545,0.005360668239332143,0.007786370617629937,0.009541989466011211,0.008871905936094698,0.008590470853529755,0.007504935535064998,0.005883333392667027,0.005079233156767206,0.003859681132319142,0.002546317413682768,0.0012865603774397144,1.3401670598330356e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017154138365862855,0.004636978027022304,0.006647228616771857,0.008242027417973169,0.009595596148404533,0.008952315959684678,0.008054404029596543,0.007411123840876688,0.006432801887198571,0.004878208097792251,0.0029885725434276693,0.0008845102594898036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020370539309462147,0.005521488286512106,0.00793378899421157,0.009649202830797857,0.010319286360714374,0.009890432901567804,0.008603872524128088,0.007638952241048303,0.006513211910788552,0.004958618121382231,0.003082384237615982,0.0011123386596614195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001929840566159571,0.0054142749217254635,0.0077729689470316075,0.009729612854387839,0.011351214996785812,0.011016173231827554,0.009635801160199527,0.007839977300023261,0.006754441981558499,0.005173044850955518,0.003176195931804295,0.001273158706841384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0205011794991076e-05,0.002077258942741205,0.005481283274717115,0.007866780641219918,0.009716211183789509,0.009917236242764462,0.009501784454216223,0.008148215723784859,0.006848253675746811,0.005963743416257008,0.004623576356423973,0.002814350825649375,0.0011927486832514014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018226272013729284,0.005226651533348838,0.007719362264638284,0.009595596148404533,0.0112574033025975,0.010841951514049259,0.009474981113019561,0.007973994006006563,0.006767843652156829,0.005132839839160527,0.0030957859082143117,0.0010721336478664285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017958238601762677,0.005186446521553848,0.007679157252843295,0.009367767748232917,0.010707934808065955,0.010158466313534412,0.008737889230111394,0.007705960594039955,0.006526613581386884,0.004958618121382231,0.002586522425477759,0.0005360668239332143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014339787540213478,0.0047173880506122855,0.00711628708771342,0.008778094241906384,0.010238876337124394,0.009877031230969472,0.008496659159341445,0.007478132193868339,0.006204973487026955,0.004703986380013955,0.002760744143256053,0.0008041002358998214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014875854364146696 +2620754,0.0036342088641766186,0.0012702089234015363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002716835752831065,0.007109641612928046,0.01024988034022629,0.012437462374973382,0.011590656426039025,0.011220178823380238,0.009791193784553513,0.007674178912217618,0.006668596847858067,0.005080835693606145,0.003316656633326234,0.0016936118978687158,3.528358120559824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258149197158287,0.0061217013391712954,0.008732686348385565,0.010779134058310264,0.012525671327987377,0.011696507169655817,0.010426298246254281,0.009614775878525519,0.008379850536329583,0.006351044617007684,0.0038988357232186063,0.0011467163891819426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002699193962228266,0.007286059518956037,0.010408656455651484,0.012560954909192974,0.01347832802053853,0.012896148930646157,0.01114961166096904,0.010002895271787103,0.008538626651754774,0.006492178941830077,0.0040223282574382,0.0014466268294295282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002558059637405873,0.007127283403530844,0.01019695496841789,0.012719731024618163,0.014748536943940068,0.014325133969472886,0.012525671327987377,0.010144029596609493,0.008785611720193962,0.006721522219666465,0.004145820791657793,0.0016759701072659168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.292537180839737e-05,0.002752119334036663,0.00723313414714764,0.010320447502637487,0.012666805652809768,0.012878507140043358,0.012349253421959383,0.010549790780473873,0.00883853709200236,0.007709462493423217,0.005980567014348902,0.0036694924453822167,0.0015701193636491217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00241692531258348,0.006880298335091657,0.010144029596609493,0.012543313118590175,0.01469561157213167,0.014095790691636498,0.012296328050150986,0.010285163921431887,0.008697402767179965,0.00661567147604967,0.0040223282574382,0.00139370145762113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023639999407750823,0.006792089382077662,0.010038178852992697,0.012155193725328596,0.013919372785608505,0.01323134295209934,0.011326029566997034,0.010020537062389902,0.008503343070549176,0.006456895360624479,0.0033695820051346326,0.0007056716241119649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018876715944995057,0.006209910292185291,0.009350149019483533,0.01144952210121663,0.013284268323907734,0.012896148930646157,0.011008477336146651,0.009755910203347914,0.008150507258493193,0.006174626710979692,0.0036342088641766186,0.0010585074361679472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019935223381163003 +2620755,0.010090070284141446,0.003346455471122289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007504172874637858,0.01997732508518457,0.02895191021228525,0.035239190188333186,0.031892734717210894,0.030675841818620975,0.026619532156654562,0.02073788314680327,0.018151985737299682,0.013690045109136633,0.009177400610199005,0.004461940628163051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006337983846822516,0.017239316063357244,0.02469278506722052,0.03032091472319891,0.03468144760981281,0.03148710375101426,0.028799798599961512,0.02712657086440037,0.02367870765172892,0.017797058641877625,0.010850628345760146,0.0029915283757002277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0074534690038632785,0.020687179276028693,0.029611060532354794,0.03569552502530441,0.03721664114854181,0.035442005671431506,0.030777249560170136,0.02748149795982243,0.023475892168630597,0.017949170254201365,0.01125625931195679,0.003752086437318929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007149245779215798,0.02043365992215579,0.029002614083059833,0.03579693276685357,0.04107013532740989,0.039549019204172496,0.034225112772841584,0.028647686987637772,0.024844896679544263,0.018912543798918387,0.01161118640737885,0.004360532886613891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007656284486961599,0.02048436379293037,0.02930683730770731,0.03579693276685357,0.03589834050840273,0.03387018567741952,0.02915472569538357,0.025098416033417163,0.02215759152849152,0.01713790832180808,0.010495701250338085,0.004157717403515571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006692910942244578,0.01967310186053709,0.028596983116863192,0.035036374705234866,0.04015746565346745,0.03848423791790632,0.03361666632354662,0.029002614083059833,0.02479419280876968,0.01870972831582007,0.01115485157040763,0.0036506786957697687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006642207071469997,0.01957169411898793,0.02854627924608861,0.034529335997489065,0.03873775727177922,0.036303971474599364,0.031081472784817623,0.02808994440911739,0.023830819264052658,0.018050577995750522,0.009380216093297323,0.0017746354771103043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0052732025605563325,0.017898466383426785,0.026670236027429142,0.03255188503728044,0.037267345019316396,0.035442005671431506,0.030473026335522655,0.0272786824767241,0.022816741848561056,0.01713790832180808,0.010039366413366863,0.0026366012802781663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005526721914429235 +2620756,0.005494457326975063,0.00188783918414015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004170152227652868,0.01107344476667282,0.016032544713070824,0.019949106602555618,0.017892207192970078,0.016906022544538653,0.014764593022230429,0.01169333225997257,0.009974553301277809,0.0076640635535241905,0.005184513580325188,0.0024231965647172077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036347948470758108,0.009495549329182547,0.013665701556835413,0.016962375953020453,0.019582809447423945,0.018314857756583543,0.016539725389406984,0.015356303811289279,0.01310216747201746,0.010030906709759603,0.00602981470755212,0.0017187789586947631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004029268706448381,0.011270681696359107,0.01620160493851621,0.020118166828000997,0.020822584434023444,0.019695516264387532,0.01746955662935661,0.015328127107048381,0.012933107246572073,0.009918199892796013,0.006227051637238406,0.0021414295223082303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003916561889484789,0.01115797487939551,0.01608889812155262,0.019977283306796514,0.02349937133690874,0.02214688953334564,0.019301042405014967,0.016286135051238906,0.014003822007726189,0.010622617498818454,0.0064524652711655875,0.0023386664519945144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004282859044616461,0.011242504992118207,0.01620160493851621,0.020089990123760105,0.020399933870409982,0.019329219109255863,0.01684966913605686,0.014539179388303243,0.012679516908403993,0.009580079441905238,0.005832577777865836,0.0023386664519945144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037475016640394028,0.010735324315782047,0.015638070853698262,0.019582809447423945,0.022400479871513723,0.021470648631564095,0.01896292195412419,0.01620160493851621,0.013722054965317209,0.010397203864891276,0.006142521524515713,0.0020005460011037414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036066181428349134,0.010425380569132173,0.015159066881602993,0.0189065685456424,0.02104799806795063,0.01989275319407382,0.017525910037838408,0.015328127107048381,0.012961283950812972,0.009833669780073318,0.005071806763361597,0.0010143613526723194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002930377241053367,0.009664609554627931,0.014341942458616962,0.01797673730569277,0.02096346795522793,0.019160158883810476,0.01738502651663392,0.0151027134731212,0.012510456682958608,0.009382842512218955,0.005381750510011473,0.0014088352120448884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030712607622578564 +2620757,0.005379683819628735,0.001901908421080866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004075518045173284,0.010732197518956316,0.015459798451357325,0.01926361529351906,0.017524727594245122,0.016492263022801226,0.014563184481419205,0.011492960887388663,0.009835583549018196,0.00758046356402231,0.005107982616617182,0.002363800466200505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035321156391501796,0.009183500661790469,0.013177508346060287,0.01641075266189776,0.01918210493261559,0.018203980601774007,0.016356412421295447,0.015079416767141156,0.012742786421241804,0.009699732947512417,0.00586874598504953,0.0017388876992739347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003966837563968664,0.010840878000160937,0.015541308812260794,0.019453806135627142,0.02032324998526411,0.01934512565442252,0.0171715160303301,0.015052246646839998,0.012742786421241804,0.009699732947512417,0.006086106947458771,0.0021192693834901077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003803816842161732,0.01065068715805285,0.015459798451357325,0.01937229577472368,0.022877241293572704,0.02181760660182765,0.018964743970206352,0.01564998929346541,0.013503549789674153,0.010215965233234365,0.006194787428663393,0.002282290105297039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004157028406076751,0.01065068715805285,0.015269607609249239,0.019046254331109815,0.019508146376229454,0.01855719216568902,0.016111881338585054,0.013992611955094946,0.011846172451303682,0.008857459218176607,0.005515534421134511,0.002309460225598195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035592857594513353,0.010052944511427435,0.014617524722021512,0.018285490962677467,0.02127420419580454,0.020459100586769887,0.018203980601774007,0.015269607609249239,0.012960147383651045,0.009781243308415883,0.005787235624146065,0.0019290785413820215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003423435157945559,0.009699732947512417,0.014128462556600718,0.017714918436353214,0.020024378661951406,0.019046254331109815,0.016791134346113932,0.014590354601720359,0.012280894376122163,0.00929218114299509,0.00483628141360563,0.0010052944511427435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027985223910189884,0.009074820180585846,0.013530719909975305,0.017117175789727795,0.020160229263457185,0.018856063489001727,0.01698132518822202,0.014508844240816892,0.012117873654315233,0.009101990300887004,0.005216663097821805,0.001412846255660072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002988713233127076 +2620758,0.008279633368485684,0.002965838818562036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006178830872004242,0.01627092129627784,0.023561941725242844,0.029617195979807005,0.02731043245425875,0.026074666279857904,0.0228616742264157,0.017795032911372216,0.015241116150943798,0.011698586450994699,0.007908903516165432,0.003666106317389183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005313794549923648,0.013881773359102864,0.020060604231107105,0.025250822163590675,0.029781964803060453,0.028463814217032875,0.02574512863335101,0.023438365107802752,0.01956629776134677,0.014911578504436907,0.009021093073126195,0.002718685583681867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0060140620487507965,0.01635330570790456,0.023561941725242844,0.029781964803060453,0.03147084524140828,0.030070310243753978,0.026898510396125144,0.023438365107802752,0.019813450996226938,0.015076347327690353,0.00939182292544645,0.003295376465068929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005766908813870625,0.016106152473024393,0.023561941725242844,0.02986434921468717,0.03534291258786427,0.03406595420765006,0.02957600377399364,0.024179824812443268,0.020760871729934252,0.01573542262070414,0.009433015131259812,0.0035425296999490995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.1192205813361614e-05,0.006302407489444328,0.016147344678837754,0.023273596284549315,0.02928765833330011,0.030235079067007422,0.028916928480979855,0.02488009231127042,0.021667100257828212,0.018165762763692476,0.013387466889342526,0.008362017780112408,0.0035425296999490995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005354986755737009,0.015158731739317075,0.022202598933401912,0.027969507747272533,0.03295376465068929,0.03167680627047509,0.028340237599592796,0.02347955731361612,0.019813450996226938,0.01499396291606363,0.008815132044059384,0.0030070310243753983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005149025726670202,0.014540848652116651,0.021419947022948038,0.026980894807751864,0.030770577742581125,0.029493619362366913,0.026033474074044535,0.022326175550841997,0.01861887702763945,0.014128926593983035,0.007373404840591728,0.0015241116150943796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004242797198776246,0.013593427918409335,0.020554910700867447,0.026115858485671262,0.031017730977461293,0.029452427156553558,0.026404203926364788,0.022532136579908803,0.01857768482182609,0.01404654218235631,0.007991287927792155,0.002224379113921527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004531142639469778 +2620759,0.015629752215221913,0.00563572796221944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011121169845446359,0.029531214522029867,0.043507819868334074,0.05568099226672807,0.052524984607885176,0.05064640862047871,0.0440338211448079,0.03403979689180542,0.029005213245556053,0.02179148145391517,0.014953464859755582,0.007063445712648365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009618309055521178,0.025398347349735607,0.03727094759014457,0.047565544001132075,0.056958423938164485,0.05470413275327671,0.04997012126501237,0.04478525153977048,0.03689523239266327,0.02802835373210468,0.01698232692615458,0.005335155804234404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010820597687461323,0.029681500601022384,0.04358296290783034,0.05560584922723181,0.05988900247851859,0.05680813785917196,0.05102212381796,0.0445598224212817,0.03764666278762586,0.02840406892958598,0.017358042123635876,0.006387158357182033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010444882489980028,0.029305785403541087,0.04335753378934156,0.05620699354320187,0.06657673299368566,0.06514901524325672,0.05733413913564578,0.0465886844876807,0.03952523877503234,0.03028264491699246,0.01780890036061343,0.007063445712648365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00022542911848877763,0.011647171121920175,0.03005721579850368,0.04380839202631912,0.05613185050370563,0.058611570807082174,0.056282136582698136,0.047415257922139555,0.040877813485965,0.03501665640525679,0.025999491665705688,0.01585518133371069,0.00661258747567081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009693452095017435,0.028103496771600935,0.04177952995992011,0.05327641500284778,0.06402186965081284,0.061016148070962464,0.05432841755579541,0.04425925026329667,0.03727094759014457,0.028178639811097198,0.016381182610184508,0.005786014041211959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009317736897536143,0.02645034990268324,0.0399760970120099,0.05079669469947121,0.05846128472808966,0.056357279622194396,0.04959440606753108,0.0420049590784089,0.03434036904979046,0.026375206863186982,0.013826319267311694,0.003005721579850368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00766459002861844,0.02457177391527676,0.03824780710359594,0.04891811871206475,0.058010426491112106,0.056357279622194396,0.04997012126501237,0.04260610339437897,0.035091799444753054,0.02690120813966079,0.01502860789925184,0.0044334393302792935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008115448265595994 +2620760,0.003912305555755875,0.0013784289004735721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002858212867158437,0.007743527058542715,0.011696374640783104,0.015142446891967035,0.013926186097431532,0.013703204951766686,0.012223420985081826,0.009020600892804993,0.007480003886393355,0.0054731735754097715,0.0038920345425136156,0.0017027651123497068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024325215890710094,0.0065678082904917275,0.009892254462222106,0.012831551382349576,0.01522353094493607,0.014899194733059935,0.013682933938524428,0.012142336932112792,0.009669273316557264,0.007358377806939805,0.004439351900054594,0.0013176158607467968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027568578009471443,0.00780434009826949,0.011757187680509882,0.015101904865482517,0.01573030627599253,0.01522353094493607,0.013865373057704756,0.011818000720236655,0.009770628382768555,0.007358377806939805,0.00460152000599266,0.0016014100461384144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026555027347358526,0.0076016299658469046,0.011595019574571814,0.01518298891845155,0.017797949626702888,0.017493884428069012,0.015466783103843173,0.012689654289653768,0.010257132700582759,0.007784069085027231,0.004581248992750401,0.0017027651123497068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029392969201274704,0.00768271401881594,0.011493664508360523,0.014838381693333158,0.015527596143569947,0.015000549799271228,0.01317615860746797,0.011108515256757611,0.009162497985500803,0.0066083503169762445,0.004094744674936199,0.0015811390328961564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024325215890710094,0.007115125648032703,0.010905805124335024,0.014189709269580887,0.016784398964589962,0.016378978699744796,0.01493973675954445,0.01202071085265924,0.009730086356284038,0.0072975647672130295,0.00421637075438975,0.0014189709269580887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023311665228597177,0.006729976396429794,0.010399029793278565,0.013358597726648295,0.01493973675954445,0.014676213587395095,0.01319642962071023,0.010865263097850509,0.008655722654444344,0.006628621330218501,0.003506885290910706,0.0006486724237522693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019054752447722908,0.006344827144826884,0.010034151554917915,0.013074803541256676,0.01536542803763188,0.015081633852240256,0.013622120898797654,0.011432851468633747,0.009101684945774027,0.006912415515610118,0.0038109504895445815,0.0010135506621129207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020473723374680995 +2620761,0.003842267600892753,0.0013937637375787434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026933542496454105,0.007307842299737197,0.010961763449605795,0.014163653117016419,0.013278424797202898,0.012864062604949754,0.01135729099675652,0.00862626745690628,0.00721366907422512,0.005311369918881159,0.0037480943753806758,0.0017327873494222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002354330637801932,0.0063284407544115925,0.009379653261002896,0.01209184215575072,0.014446172793552656,0.013937637375787435,0.012845227959847338,0.011489133512473427,0.009304314680593234,0.007062991913405796,0.004237795148043478,0.0013372598022714974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002618015669235748,0.007383180880146858,0.011037102030015459,0.014163653117016419,0.015067716081932366,0.014163653117016419,0.01293940118535942,0.011244283126142026,0.009417322551207728,0.007062991913405796,0.004331968373555555,0.0015821101886028981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025426770888260864,0.007270173009532367,0.010924094159400965,0.014276660987630918,0.016819338076457004,0.016536818399920772,0.014540346019064733,0.011959999640033815,0.009944692614075362,0.0076091966213758435,0.004426141599067632,0.0017327873494222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8834645102415456e-05,0.0028440314104647337,0.0074961887507613515,0.011131275255527534,0.014389668858245408,0.01512422001723961,0.014446172793552656,0.01228018860677488,0.010547401257352653,0.009059464294261833,0.006629795076050241,0.004030614051916907,0.0016386141239101443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002373165282904347,0.007025322623200964,0.010622739837762319,0.013711621634558455,0.016367306593999032,0.015689259370312077,0.014107149181709175,0.01135729099675652,0.009436157196310142,0.007100661203610626,0.0040871179872241535,0.0014502676728859903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022601574122898547,0.006554456495640577,0.010095369774894685,0.012901731895154587,0.014691023179884055,0.014257826342528498,0.012506204348003864,0.010547401257352653,0.008437921005882124,0.006554456495640577,0.0034279054086396137,0.0007157165138917874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018457952200367144,0.006064755722977776,0.009643338292436713,0.012412031122491785,0.014634519244576809,0.014220157052323667,0.012713385444130433,0.010792251643684055,0.008758109972623187,0.006742802946664732,0.0037292597302782593,0.0010735747708376811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019588030906512073 +2620762,0.010620318571009991,0.0039045288864007315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007548755847041415,0.020147369053827777,0.030247083773317668,0.03920147001946334,0.03696287345792693,0.03488045805184654,0.0314965330169659,0.02394777716992449,0.01988706712806773,0.0149413305386268,0.010360016645249943,0.004737495048832889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0066116689143052385,0.01744022902592327,0.026030192576004883,0.033735129578502325,0.04013855695219952,0.03914940963431133,0.03550518267367064,0.03186095571302998,0.025769890650244834,0.01967882558745969,0.011765647044354203,0.003748347730944702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007288453921281366,0.020251489824131795,0.0304032649287737,0.03920147001946334,0.041335945810695746,0.03847262462733521,0.03550518267367064,0.030923868780293795,0.025769890650244834,0.019470584046851647,0.011921828199810237,0.0044251327379208295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007080212380673326,0.01993912751321974,0.03009090261786164,0.039409711560071385,0.04633374278528868,0.045396655852552516,0.03993031541159149,0.033006284186374184,0.027279641819653113,0.020980335216259933,0.012130069740418276,0.004789555433984898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206038515200976e-05,0.007861118157953473,0.020303550209283806,0.03029914415846968,0.03914940963431133,0.04117976465523972,0.03914940963431133,0.03368306919335032,0.029153815685125463,0.024676622562052625,0.018585557499267484,0.011036801652226069,0.004477193123072839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006507548144001221,0.019002040580483562,0.0287893929890614,0.037535537694599025,0.044407508534664325,0.04279363659495203,0.0384205642421832,0.03102798955059781,0.02571783026509282,0.01941852366169964,0.011245043192834106,0.004008649656704752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006247246218241171,0.017856712107139346,0.027435822975109145,0.035296941133062615,0.03987825502643948,0.03883704732339928,0.034203673044870424,0.02873733260390939,0.022854509081732283,0.017908772492291357,0.009422929712513768,0.0020303550209283807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005153978130048965,0.01665932324864312,0.02629049450176493,0.0341516126597184,0.04034679849280756,0.03852468501248722,0.035036639207302565,0.029830600692101594,0.024208079095684537,0.01863761788441949,0.01025589587494592,0.003019502338816566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055184008261130344 +2620763,0.0033424405313526974,0.0010313816496745466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002597553784365525,0.007276970528259303,0.010352015817103785,0.01262487537842362,0.010772208341045267,0.010141919555133045,0.009015039604562706,0.006914076984855296,0.005806296694464116,0.004297423540310611,0.003094144949023641,0.001317876552361921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023683578622156263,0.006188289898047282,0.008900441643487755,0.010829507321582742,0.012300181155377928,0.011039603583553482,0.010180118875491362,0.01006552091441641,0.008442049799187957,0.006436585480376338,0.0038390316960108133,0.0008785843682412806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002578454124186367,0.007448867469871727,0.010657610379970317,0.01283497164039436,0.01264397503860278,0.0117653906703615,0.010581211739253684,0.009511630769220819,0.007926358974350683,0.006054592276793172,0.0040682276181607125,0.0011268799505703383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024638561631114167,0.007296070188438462,0.0103902151374621,0.012815871980215204,0.014401143775085338,0.013637157367919006,0.012128284213765503,0.010791308001224426,0.009015039604562706,0.006818578683959503,0.004201925239414821,0.0012223782514661295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002750351065798791,0.007391568489334252,0.010485713438357892,0.012854071300573516,0.01294956960146931,0.01186088897125729,0.010600311399432844,0.01008462057459557,0.008384750818650482,0.006398386160018021,0.0040682276181607125,0.001336976212541079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023874575223947845,0.007238771207900988,0.010180118875491362,0.012300181155377928,0.013789954649352275,0.013045067902365102,0.01151709508803244,0.010237417856028835,0.008480249119546274,0.006398386160018021,0.003819932035831655,0.0010122819894953885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022537599011406765,0.006780379363601188,0.009874524312624826,0.01186088897125729,0.012701274019140254,0.011822689650898973,0.010600311399432844,0.00974082669137072,0.008060056595604792,0.006016392956434857,0.0031514439295611154,0.00055389014519559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018144677170200362,0.006302887859122231,0.009339733827608396,0.011364297806599174,0.012911370281110992,0.012070985233228027,0.010791308001224426,0.009473431448862505,0.007888159653992368,0.005939994315718224,0.0033806398517110146,0.0005920894655539066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018717666975575106 +2620764,0.003427728557641159,0.0010243786494100015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002718543338818851,0.007722239049398474,0.010775675408216747,0.013100226958800983,0.010952971712922324,0.010184687725864823,0.009219407844690013,0.007131251367046551,0.0059098768235192395,0.004373308849404238,0.0031913334847003903,0.0013395720799976943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025215474447015424,0.006540263684694626,0.00931790579174867,0.011248465554098287,0.012607737223507711,0.011366663090568671,0.010421082798805593,0.010302885262335209,0.00860872057292636,0.006619062042341548,0.003939917882346161,0.0008273827552926935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026791441599953885,0.007741938638810205,0.010992370891745786,0.013238124084683096,0.012922930654095407,0.012075848309390983,0.010736276229393285,0.009633099222336362,0.00809653124822136,0.006087173128224817,0.00417631295528693,0.001083477417645194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025215474447015424,0.0075843419235163585,0.010775675408216747,0.013238124084683096,0.01479439164820983,0.014045807250564061,0.01235164256115521,0.010992370891745786,0.009101210308219629,0.006835757525870588,0.004255111312933852,0.0011622757752921173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002856440464700966,0.0076434406917515515,0.010716576639981554,0.01306082777997752,0.01300172901174233,0.011878852415273674,0.010716576639981554,0.01016498813645309,0.008175329605868281,0.006303868611753856,0.004038415829404814,0.0013395720799976943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024230494976428887,0.0073479468505755876,0.010184687725864823,0.012331942971743481,0.013907910124681944,0.01300172901174233,0.011465161037627325,0.010184687725864823,0.00837232549998559,0.006303868611753856,0.003762621577640583,0.0009258807023513475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002265452782349042,0.006875156704694049,0.009948292652924054,0.011957650772920596,0.012647136402331172,0.011819753647038479,0.010657477871746363,0.009849794705865401,0.008057132069397897,0.006028074359989626,0.003132234716465197,0.0005318889141167315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018714609941144263,0.006481164916459434,0.009514901685865976,0.011583358574097712,0.013041128190565791,0.012292543792920019,0.011012070481157519,0.00961339963292463,0.007919234943515782,0.005968975591754432,0.003408028968229429,0.0005121893247050008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019305597623496184 +2620765,0.003938982497807361,0.001112183293498549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031511859982458882,0.009082830230238148,0.012604743992983553,0.015338861256167489,0.012535232537139895,0.011538901670047445,0.010542570802954995,0.008225522274833018,0.00685846364324105,0.005120677247149569,0.0036377661891515032,0.001529252028560505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00296582211599613,0.007715771598646183,0.01091329856745451,0.01313766515445161,0.014527894271324792,0.013230347095576486,0.011979140890390618,0.0118401179787033,0.009893797215080841,0.0076230896575213035,0.004471903659275416,0.0008573079554051313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030816745424022294,0.008990148289113271,0.012720596419389654,0.015362031741448706,0.014852281065261867,0.01376326825704454,0.012210845743202818,0.01098281002329817,0.009268194112487908,0.00690480461380349,0.004773119967931272,0.0011353537787797685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002896310660152471,0.008804784406863513,0.012558403022421113,0.015362031741448706,0.01714615910810263,0.01633519212325994,0.014203507477387719,0.012720596419389654,0.010473059347111333,0.00790113548089594,0.004912142879618591,0.0012280357199046478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033597203657768668,0.009059659744956929,0.012697425934108435,0.015385202226729927,0.015223008829761391,0.013902291168731859,0.01258157350770233,0.011979140890390618,0.009453557994737667,0.0072755323783030065,0.0047036085120876125,0.0014597405727168453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028267992043088113,0.008665761495176191,0.011979140890390618,0.014551064756606013,0.016451044549666036,0.015269349800323828,0.013531563404232345,0.011909629434546962,0.009708433332831083,0.007298702863584227,0.0043328807475880955,0.00099633086709245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002641435322059054,0.00804015839258326,0.011608413125891105,0.01399497310985674,0.014666917183012112,0.013693756801200883,0.012396209625452575,0.011469390214203786,0.009268194112487908,0.0069511455843659295,0.003568254733307845,0.0005560916467492745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021780256164346578,0.007553578201677646,0.011098662449704269,0.013531563404232345,0.015107156403355292,0.01427301893323138,0.012743766904670871,0.011145003420266707,0.009059659744956929,0.006812122672678612,0.003869471041963701,0.00048658019090561507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002247537072278318 +2620766,0.0032182326621907173,0.0009419217547875269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002531414715991478,0.007358763709277553,0.010380762672554202,0.012480463250934729,0.010204152343531541,0.009203360479069793,0.00855578927265337,0.006927049571666603,0.005573037049159534,0.004160154416978243,0.002943505483711021,0.0012558956730500356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024332978665344445,0.0062598549953587716,0.008889386560807285,0.010714359960708117,0.011931008893975343,0.010773230070382339,0.009693944726354964,0.009811684945703406,0.008202568614608047,0.0062009848856845505,0.003649946799801666,0.0007260646859820518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024332978665344445,0.007280270229711926,0.010400386042445609,0.012519709990717543,0.012186112702563631,0.011204944207993287,0.010066788754291693,0.009105243629612758,0.0074765039286259945,0.00559266041905094,0.003924673978281362,0.0009419217547875269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023351810170774106,0.007221400120037705,0.01032189256287998,0.012558956730500356,0.014148449691704305,0.013304644786373816,0.01198987900364956,0.010714359960708117,0.008693152861893216,0.0066326990232955015,0.0040424141976298025,0.0010007918644617474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002649154935339919,0.007378387079168959,0.010380762672554202,0.012558956730500356,0.012617826840174576,0.01155816486603861,0.010380762672554202,0.010027542014508877,0.008104451765151012,0.006142114776010331,0.0038854272384985476,0.0011774021934844085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002217440797728969,0.0068878028318837894,0.009752814836029185,0.011852515414409712,0.01340276163583085,0.01253933336060895,0.01130306105745032,0.010066788754291693,0.008222191984499453,0.006181361515793145,0.0036695701696930726,0.0008438049053304927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020800772084891214,0.006573828913621281,0.009517334397332301,0.011499294756364393,0.012205736072455037,0.011381554537015951,0.01034151593277139,0.009556581137115116,0.007692360997431468,0.005808517487856414,0.002963128853602428,0.0005102076171765769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017268565504437992,0.006181361515793145,0.009085620259721351,0.011126450728427663,0.01253933336060895,0.011793645304735492,0.010596619741359677,0.009379970808092454,0.007653114257648655,0.0056907772685079756,0.00319860929229931,0.00041209076771954293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017857266601180198 +2620767,0.009468859047579948,0.0026268447680383084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007697266064484345,0.022664172300981684,0.032194120761771826,0.0386695985620523,0.03146104780324951,0.028895292448421397,0.026146268853962693,0.021014758144306468,0.017105035698854097,0.012706597947720187,0.008613607262637244,0.0036042753794014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007330729585223186,0.019182075748000668,0.027490235944586945,0.033171551373134905,0.03659255851290574,0.033049372546714535,0.029811633646574288,0.0296894548201539,0.024985570002969026,0.018937718095159897,0.010873915551414391,0.0018937718095159899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007330729585223186,0.022480904061351104,0.03213303134856163,0.038913956214893075,0.0377532573638994,0.034454429050548976,0.030483617191886414,0.027490235944586945,0.022725261714191872,0.016982856872433713,0.011668077923146907,0.002565755354828115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007025282519172221,0.022297635821720525,0.03213303134856163,0.039036135041313466,0.043923288098128926,0.04019683389230713,0.036164932620434374,0.03194976310893105,0.026390626506803464,0.01991514870652299,0.012034614402408064,0.002810113007668888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008002713130535312,0.022786351127402068,0.03231629958819221,0.03928049269415423,0.039158313867733836,0.0361038432072242,0.032377389001402405,0.030850153671147577,0.024985570002969026,0.018815539268739516,0.011790256749567293,0.00342100713977082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006780924866331448,0.021381294623567623,0.03066688543151699,0.03738672088463826,0.04215169511503331,0.03897504562810327,0.034882054943020324,0.030850153671147577,0.025352106482230186,0.01905989692158028,0.011118273204255168,0.002382487115197535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063532989738600935,0.02052604283862492,0.029933812472994682,0.036287111446854765,0.03811979384316056,0.03537077024870187,0.032010852522141246,0.029322918340892744,0.02370269232555497,0.01783810865737642,0.008857964915478017,0.0012828776774140575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005253689536076617,0.019365343987631248,0.028528755969160234,0.03494314435623053,0.038730687975262496,0.03622602203364458,0.03188867369572086,0.02846766655595004,0.023336155846293814,0.017471572178115263,0.00952994846079014,0.0009774306113630915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005498047188917389 +2620768,0.0024976545564874076,0.0007389510522152095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019360517568038492,0.005616027996835593,0.007906776258702742,0.009576805636709115,0.007921555279747045,0.007138267164398924,0.00666533849098119,0.0052465524707279885,0.004226800018670999,0.003118373440348184,0.0022907482618671495,0.0009754153889240767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018325986094937198,0.004758844776265949,0.006798349680379928,0.00821713570063313,0.00920733011060151,0.008231914721677435,0.007463405627373617,0.007507742690506528,0.006295862964873586,0.004803181839398862,0.0028375720405064047,0.0005763818207278634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019064937147152403,0.005601248975791289,0.008010229406012872,0.009635921720886334,0.009414236405221769,0.00874918045822808,0.00783288115348122,0.006975697932911578,0.005763818207278635,0.004330253165981128,0.003044478335126663,0.0007537300732595138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001803040567405111,0.005527353870569767,0.007891997237658438,0.009680258784019246,0.010847801446519275,0.01040443081519015,0.009192551089557207,0.008202356679588827,0.006650559469936885,0.005039646176107728,0.003147931482436793,0.0007980671363924262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020542839251582825,0.005645586038924202,0.00796589234287996,0.009709816826107855,0.009798490952373678,0.008956086752848341,0.008084124511234393,0.007818102132436916,0.006295862964873586,0.004877076944620384,0.003118373440348184,0.0009458573468354681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001773482525316503,0.0054977958284811584,0.007714648985126788,0.009369899342088856,0.010640895151899019,0.009961060183861024,0.008867412626582513,0.00786243919556983,0.006399316112183714,0.004803181839398862,0.002852351061550709,0.0006798349680379928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016700293780063731,0.005172657365506466,0.007507742690506528,0.009000423815981252,0.009532468573576201,0.008882191647626818,0.00803978744810148,0.007419068564240702,0.005985503522943196,0.004507601418512777,0.0023350853250000614,0.0003990335681962131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013448909150316816,0.004803181839398862,0.007064372059177404,0.008601390247785038,0.009680258784019246,0.009118655984335686,0.008172798637500218,0.007108709122310316,0.005837713312500155,0.00437459022911404,0.0024680965143987995,0.0003399174840189964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013744489571202896 +2620769,0.014215025321091658,0.003577291140407173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011767405067128856,0.034737379758164384,0.0497055190035523,0.059684278500477556,0.04857584811710791,0.04471613925508965,0.03916192406340483,0.03116008861775722,0.0265472658314427,0.019675101272239454,0.012897075953573228,0.005271797470073727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01101429114283261,0.029183164566479562,0.04189196203897872,0.05074105064945963,0.055636291157385234,0.05102346837107072,0.04518683545777481,0.04443372153347856,0.037843974695886407,0.028430050642183315,0.016097810131832275,0.002447620253962802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011296708864443703,0.03483151899870141,0.049517240522478224,0.06024911394369974,0.05798977217081102,0.05252969621966321,0.04641064558475621,0.04160954431736764,0.03492565823923845,0.026264848109831606,0.017321620258813678,0.003483151899870141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010920151902295578,0.03436082279601626,0.0497055190035523,0.06034325318423676,0.06768611394612518,0.0619436202733663,0.05469489875201493,0.04772859495227463,0.04029159494984919,0.030406974693460966,0.017886455702035866,0.003953848102555295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01223810126981401,0.03483151899870141,0.04989379748462635,0.06090808862745897,0.059496000019403486,0.05507145571416305,0.04838756963603386,0.04565753166045996,0.03746741773373828,0.02824177216110925,0.017321620258813678,0.004801101267388573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010543594940147455,0.033325291150108925,0.04819929115495979,0.05893116457618131,0.06570918989484753,0.06137878483014412,0.05394178482771868,0.04744617723066354,0.03991503798770108,0.029559721528627687,0.017039202537202588,0.0032948734187960792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00997875949692527,0.0326663164663497,0.04763445571173762,0.05808391141134804,0.06034325318423676,0.055636291157385234,0.049517240522478224,0.044904417736163715,0.03699672153105313,0.02748865823681301,0.01327363291572135,0.0015062278485924935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008284253167258716,0.030501113933997997,0.04499855697670074,0.0552597341952371,0.06034325318423676,0.056201126600607415,0.04819929115495979,0.043021632925423096,0.03596118988514579,0.026641405071979728,0.014309164561628692,0.001223810126981401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008566670888869808 +2620770,0.00708795771781145,0.0018186207302279375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005875543897659491,0.017020424782902492,0.02434153900458932,0.02914456298442207,0.023781963395288413,0.0219167113642854,0.019072202017005803,0.01524843535344963,0.013243289420121391,0.009792573162765819,0.006435119506960395,0.0026579841441792935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005409230889908736,0.014269178037173052,0.02033124713793284,0.024667958110014845,0.027046154449543686,0.024854483313115152,0.022103236567385703,0.02168355486041002,0.01855925770847998,0.013849496330197369,0.007927321131762805,0.0012590451209270334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005642387393784113,0.017160318685227716,0.024248276403039167,0.029470982089847594,0.02839846217202087,0.025833740629391727,0.022756074778236754,0.020517772341033143,0.017393475189103093,0.013103395517796166,0.008533528041838784,0.0018186207302279375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005502493491458888,0.016927162181352342,0.02434153900458932,0.029517613390622675,0.03301496094875333,0.030263714203023886,0.02653321014101785,0.02322238778598751,0.019864934130182085,0.014968647548799174,0.008813315846489235,0.0020517772341033143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006062069100759792,0.017113687384452642,0.02438817030536439,0.029797401195273132,0.028864775179771623,0.02671973534411816,0.023362281688312735,0.0219167113642854,0.01818620730227937,0.013709602427872144,0.008393634139513557,0.002378196339528841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00526933698758351,0.016414217872826514,0.023595438192188116,0.028771512578221477,0.0319424410309266,0.02993729509759835,0.026253422336367405,0.023035862582887204,0.019631777626306707,0.014502334541048425,0.008440265440288634,0.0017253581286777867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005036180483708134,0.01622769266972621,0.023455544289862885,0.028771512578221477,0.03007718899992358,0.027838886562719965,0.024807852012340075,0.02270944347746168,0.019072202017005803,0.014082652834072746,0.006808169913160997,0.0007927321131762804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004290079671306929,0.015528223158100082,0.022756074778236754,0.027838886562719965,0.03035697680457404,0.02811867436737042,0.023968488598388717,0.021450398356534648,0.01818620730227937,0.013383183322446616,0.007227851620136674,0.0007461008124012051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004429973573632156 +2620771,0.0015367186028329345,0.00039657254266656374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012690321365330039,0.0036881246467990424,0.005224843249631977,0.006226188919865051,0.0050959571732653456,0.004709298944165445,0.00409461150303227,0.0032915521041324797,0.0028949795614659156,0.0021514060439661083,0.0014177468400329656,0.0005948588139998457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001169889000866363,0.003103180146365862,0.004372212282898866,0.005274414817465298,0.005789959122931831,0.00532398638529862,0.004709298944165445,0.004639898749198795,0.004015296994498957,0.002984208383565892,0.0017151762470328884,0.00028751509343325876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012293748822663477,0.0037079532739323702,0.005205014622498649,0.006285674801265035,0.006057645589231762,0.0055222726566319,0.004858013647665407,0.00443169816429885,0.0037872677824656842,0.002845407993632595,0.0018440623233995212,0.00041640116979989187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011897176279996914,0.0036583817060990512,0.005224843249631977,0.0062955891148317,0.007009419691631514,0.006414560877631669,0.005611501478731878,0.004967071096898711,0.004282983460798888,0.003202323282032503,0.0018936338912328421,0.0004659727376332123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013086893907996605,0.0037079532739323702,0.005234757563198642,0.006355074996231683,0.00612704578419841,0.005670987360131862,0.0049571567833320476,0.0046498130627654595,0.0039062395452656527,0.0029247225021659085,0.001784576441999537,0.000535372932599861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011401460601663709,0.0035493242568657452,0.0050761285461320155,0.006136960097765075,0.006801219106731568,0.006355074996231683,0.00554210128376523,0.0049274138426320556,0.004223497579398904,0.0031130944599325255,0.0018341480098328575,0.00039657254266656374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011004888058997145,0.0035096670025990895,0.005026556978298694,0.006136960097765075,0.006444303818331661,0.0059287595128651276,0.005224843249631977,0.00479852776626542,0.004054954248765614,0.002984208383565892,0.0014474897807329578,0.00016854333063328958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009220311616997606,0.003281637790565816,0.00479852776626542,0.005839530690765152,0.0063848179369316764,0.00585935931789848,0.005036471291865359,0.004550669927098819,0.0039062395452656527,0.0028553223071992586,0.0015664615435329267,0.0001883719577666178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009517741023997531 +2620772,0.004290844605470848,0.0011845890015103567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035274428044975064,0.010134817012921939,0.01416241961805715,0.01713705422184983,0.014004474417855772,0.012898858016446108,0.011503675414667241,0.009134497411646526,0.007818287409968353,0.005896620807518219,0.003974954205068085,0.001658424602114499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032642008041618717,0.008581689210941696,0.012135456215472762,0.014662579418694859,0.01611041042054085,0.014873173018963366,0.013135775816748177,0.012977830616546795,0.010977191413995974,0.008344771410639622,0.00484365280617568,0.0008686986011075949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003395821804329688,0.010108492812888377,0.014241392218157843,0.017189702621916957,0.016584246021144992,0.01526803601946682,0.013451666217150935,0.012214428815573454,0.010345410613190447,0.007739314809867663,0.005185867406612006,0.0011845890015103567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032378766041283084,0.00992422341265343,0.014188743818090715,0.017216026821950517,0.01919034182446778,0.017926780222856726,0.01574187162007096,0.01392550181775508,0.011714269014935746,0.008792282811210202,0.005317488406779822,0.001316210001678174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036590638046653232,0.010055844412821249,0.01416241961805715,0.017163378421883393,0.0167948396214135,0.015425981219668202,0.013714908217486574,0.012951506416513233,0.010503355813391829,0.00794990841013617,0.0050015980063770615,0.0015268036019466817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031062556039604906,0.009555684612183545,0.013451666217150935,0.016294679820775794,0.01824267062325949,0.016979109021648443,0.01489949721899693,0.013135775816748177,0.010924543013928843,0.008160502010404679,0.004817328606142117,0.0010529680013425392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002895662003691983,0.008976552211445145,0.012951506416513233,0.015768195820104525,0.0165052734210443,0.01534700861956751,0.013714908217486574,0.012609291816076906,0.010371734813224011,0.007739314809867663,0.0038696574049338316,0.0005264840006712696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002448150603121403,0.008529040810874569,0.01247767081590909,0.015215387619399692,0.01690013642154775,0.015820844220171652,0.013899177617721518,0.012372374015774835,0.010134817012921939,0.007555045409632718,0.004211872005370157,0.0005001598006377062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002527123203222094 +2620773,0.0023709654616643513,0.0005509990157388986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00198693584463421,0.006010898353515257,0.008815984251822378,0.010569162938264326,0.008548833213888364,0.007880955619053337,0.006795654527446415,0.005359717698551102,0.004541567644878193,0.003272600214691639,0.0021205113636012154,0.0008348469935437856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018533603256672042,0.005009081961262712,0.007346653543185314,0.008916165891047628,0.009751012884591416,0.008849378131564127,0.007880955619053337,0.007680592340602828,0.006595291248995906,0.004925597261908336,0.002704904259081866,0.0003339387974175142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001886754205408955,0.00607768611299876,0.008699105672726247,0.010702738457231329,0.010302011900330315,0.009133226109369013,0.008114712777245596,0.007179684144476555,0.0059274136541608785,0.004508173765136441,0.0029052675375323737,0.0005176051359971471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018199664459254527,0.005977504473773504,0.008782590372080623,0.010686041517360455,0.01207188752664314,0.010886404795810965,0.009650831245366162,0.00833177299556698,0.006979320866026048,0.0052929299390676,0.00303884305649938,0.0005676959556097742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020370266642468367,0.0060609891731278846,0.0087992873119515,0.010836313976198338,0.010569162938264326,0.009801103704204043,0.008515439334146613,0.008031228077891217,0.006561897369254155,0.004992385021391837,0.0029553583571450015,0.0007346653543185313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017531786864419501,0.005727050375710369,0.008498742394275737,0.010452284359168196,0.011621070150129495,0.010819617036327464,0.009517255726399157,0.00829837911582523,0.006996017805896923,0.005176051359971471,0.0028885705976614984,0.0004842112562553956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016696939870875713,0.005727050375710369,0.008482045454404862,0.010385496599684694,0.010719435397102205,0.00981780064407492,0.008765893432209747,0.00783086479944071,0.00642832185028715,0.004775324803070454,0.0022373899426973453,0.00020036327845050856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013691490694118086,0.005359717698551102,0.007997834198149466,0.009917982283300174,0.010619253757876949,0.009951376163041923,0.008415257694921359,0.007480229062152319,0.006311443271191019,0.004691840103716075,0.0024043593414061018,0.00011687857909612998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014359368288953112 +2620774,0.002753888500906006,0.0005658675001861656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002169158750713635,0.006526338502147109,0.009827232253233073,0.011468248003772956,0.009336813753071731,0.008865257502916592,0.00748831325246359,0.006262267002060233,0.005130532001687901,0.003489516251148021,0.002263470000744662,0.0009242502503040703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020748475006826072,0.005375741251768572,0.007903282752600113,0.009525436253133788,0.010336513003400626,0.009280227003053117,0.008506874752798689,0.008638910502842127,0.007507175502469796,0.005451190251793394,0.002942511000968061,0.0003583827501179049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00201826075066399,0.006564063002159519,0.009431125003102761,0.011543697003797778,0.01097782950361161,0.009563160753146196,0.008582323752823511,0.008035318502643551,0.006545200752153315,0.0050173585016506685,0.003168858001042527,0.0005281430001737545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020371230006701957,0.006620649752178137,0.009770645503214458,0.011468248003772956,0.012901779004244574,0.011751181753866038,0.010430824253431652,0.009544298503139993,0.00795986950261873,0.005979333251967148,0.003319756001092171,0.0006035920001985765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002244607750738457,0.006771547752227781,0.009846094503239282,0.011920942003921886,0.011430523503760545,0.010770344753543349,0.009374538253084144,0.009223640253034498,0.00748831325246359,0.005620950501849243,0.003168858001042527,0.0008110767502668372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001923949500632963,0.006205680252041616,0.00935567600307794,0.01144938575376675,0.012524534004120466,0.01186435525390327,0.010619446753493704,0.009525436253133788,0.008035318502643551,0.005828435251917505,0.0031499957510363213,0.0005092807501675489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018485005006081405,0.006413165002109877,0.0095820230031524,0.011392799003748132,0.01186435525390327,0.010770344753543349,0.009846094503239282,0.008902982002929005,0.007261966252389124,0.005356879001762367,0.0024898170008191287,0.00018862250006205518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015467045005088528,0.006186818002035411,0.008978431002953828,0.011279625503710899,0.011788906253878448,0.01110986525365505,0.009770645503214458,0.009242502503040704,0.007714660252538056,0.005564363751830628,0.002791613000918416,0.00011317350003723313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001678740250552291 +2620775,0.0036993236799191215,0.000781547256320941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029698795740195766,0.008961741872480125,0.013442612808720184,0.015735151427261614,0.012817375003663435,0.012192137198606678,0.010160114332172232,0.00846676194347686,0.0069557705812563755,0.004663231962714947,0.003126189025283764,0.0012504756101135057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028396216979660865,0.007346544209416847,0.010837455287650382,0.013025787605349018,0.014224160065041128,0.012817375003663435,0.01169715726960342,0.011645054119182022,0.010160114332172232,0.0073725957846275435,0.003959839432026102,0.0004689283537925646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027614669723339917,0.009039896598112218,0.012895529729295528,0.01583935772810441,0.015162016772626255,0.012947632879716927,0.011775311995235509,0.010915610013282478,0.008935690297269426,0.006799461129992188,0.0042724583345544785,0.0007033925306888469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027875185475446894,0.009039896598112218,0.013312354932666696,0.015604893551208126,0.01774112271848536,0.016125925055422086,0.01432836636588392,0.012895529729295528,0.010785352137228985,0.00807598831531639,0.0044808709362400626,0.000781547256320941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030740858748623686,0.009248309199797805,0.013390509658298792,0.01628223450668627,0.015683048276840215,0.014771243144465788,0.012791323428452735,0.012478704525924358,0.010108011181750838,0.007607059961523827,0.004324561484975874,0.0010941661588493173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026312090962805016,0.00846676194347686,0.012791323428452735,0.01565699670162952,0.017167988063850007,0.016256182931475575,0.014458624241937413,0.012895529729295528,0.01088955843807178,0.007867575713630807,0.0042724583345544785,0.0006773409554781489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025270027954377096,0.008779380846005238,0.013025787605349018,0.015578841975997423,0.016230131356264877,0.01471913999404439,0.013494715959141583,0.012140034048185285,0.009899598580065255,0.007242337908574053,0.003360653202180046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620776,0.0068748867111223175,0.0021045571564660154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005121089080733971,0.014065456995714539,0.01974776131817278,0.023430736341988306,0.021080647517267924,0.019081318218625208,0.016941685109551425,0.01396022913789124,0.012276583412718423,0.009435431251489303,0.005857684085497077,0.002665772398190287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004314342170755332,0.012066127697071823,0.01697676106215919,0.020414204417720353,0.02318520467373394,0.021431407043345594,0.018800710597763073,0.018239495356038804,0.015714026768279585,0.01185567198142522,0.007085342426768919,0.0016485697725650455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004945709317695138,0.014100532948322307,0.01967760941295724,0.02339566038938054,0.024027027536320345,0.022518761574186363,0.019326849886879577,0.018099191545607733,0.01564387486306405,0.01185567198142522,0.007190570284592221,0.0021045571564660154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004770329554656302,0.01396022913789124,0.01953730560252618,0.02353596419981161,0.026587572076687337,0.025044230161945586,0.021747090616815495,0.018555178929508705,0.016170014152180553,0.012311659365326192,0.007506253858062121,0.002595620492974752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005191240985949504,0.013995305090499005,0.019607457507741715,0.023500888247203842,0.02315012872112618,0.02167693871159996,0.01862533083472424,0.016626001536081524,0.01360946961181357,0.01083846935579998,0.006699506948083484,0.002595620492974752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004559873839009701,0.013399013896166968,0.019116394171232974,0.02304490086330288,0.02609650874017859,0.024483014920221313,0.021326179185522296,0.01883578655037084,0.01609986224696502,0.012241507460110657,0.007225646237199986,0.0021045571564660154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004454645981186399,0.0133639379435592,0.01922162202905628,0.023009824910695108,0.02553529349845433,0.02371134396285044,0.02065973608597472,0.019081318218625208,0.01634539391521939,0.012381811270541726,0.006348747422005815,0.00091197476780194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038583547868543625,0.012943026512265997,0.018800710597763073,0.022659065384617438,0.02567559730888539,0.024202407299359182,0.020764963943798016,0.018695482739939775,0.01638046986782716,0.012381811270541726,0.007120418379376685,0.0016134938199572786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004209114312932031 +2620777,0.00978449597782697,0.002844330226112491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0076796916105037255,0.02144624990488818,0.029922353978703405,0.03487148857213914,0.030434333419403655,0.02753311658876891,0.02446123994456742,0.02064983744157669,0.018374373260686694,0.013937218107951208,0.008817423700948722,0.0038114025029907382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006769505938147729,0.01871569288782019,0.02594029166214592,0.030718766442014902,0.03413196271334989,0.0306049932329704,0.02764688979781341,0.027874436215902416,0.02406303371291167,0.017919280424508695,0.01035336202304947,0.002104804367323243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007395258587892477,0.02144624990488818,0.029751694165136656,0.035212808199272645,0.03487148857213914,0.031685838718893154,0.027874436215902416,0.027078023752590916,0.023494167667689175,0.01752107419285295,0.010637795045660715,0.002844330226112491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007167712169803477,0.021218703486799183,0.02969480756061441,0.03515592159475039,0.039194870515830135,0.03595233405806188,0.03145829230080415,0.02872773528373616,0.025086992594312175,0.01871569288782019,0.011092887881838714,0.0034131962713349895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007850351424070477,0.02133247669584368,0.02969480756061441,0.03544035461736164,0.03424573592239439,0.03145829230080415,0.027703776402335664,0.02599717826666817,0.02144624990488818,0.01661088852049695,0.010125815604960467,0.0036407426894239886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006940165751714478,0.020422291023487686,0.02867084867921391,0.034075076108827644,0.03788647861181838,0.03498526178118364,0.03100319946462615,0.028898395097302906,0.024688786362656423,0.018488146469731195,0.010637795045660715,0.002787443621590241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0066557327291032285,0.02019474460539869,0.02872773528373616,0.0343595091314389,0.037260725962073644,0.03418884931787214,0.03003612718774791,0.02918282811991416,0.025086992594312175,0.018488146469731195,0.009215629932604472,0.0010808454859227467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005745547056747232,0.01956899195565394,0.028215755843035914,0.03373375648169415,0.037658932193729386,0.03413196271334989,0.03026367360583691,0.02895528170182516,0.024859446176223175,0.018374373260686694,0.010410248627571717,0.0019910311582787437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620778,0.010206325983892634,0.002855341197874725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00808000807058167,0.023024985404138748,0.03201627258042511,0.03705868363199111,0.03183401675928417,0.02855341197874725,0.0255765669001119,0.02187069853691279,0.019440620921700257,0.014762721512416132,0.00935579881856825,0.004009628065100679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007107977024496655,0.020108892265883707,0.027885140634563804,0.03268454392460855,0.035965148705145465,0.03207702452080543,0.029160931382550385,0.029889954667114145,0.025880326602013465,0.01901535733903806,0.010813845387695767,0.0020048140325503393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077762483686801024,0.023024985404138748,0.03207702452080543,0.03730169139351237,0.03626890840704704,0.03256304004384793,0.02928243526331101,0.028735667799888197,0.024908295555928453,0.01840783793523493,0.011299860910738273,0.0027945892574944117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007472488666778536,0.0228427295829978,0.03207702452080543,0.03760545109541393,0.04100755975671148,0.0369979316916108,0.0328667997457495,0.030801233772818837,0.02691310958847879,0.01980513256398214,0.011725124493400468,0.0032806047805369176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008262263891722608,0.023024985404138748,0.03201627258042511,0.03778770691655488,0.03645116422818797,0.03298830362651011,0.029586194965212576,0.028371156157606315,0.023754008688702498,0.017982574352572733,0.010753093447315454,0.0037058683631991107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007229480905257284,0.022113706298434045,0.03110499347472041,0.0365119161685683,0.03997477677024615,0.036208156466666724,0.03225928034194637,0.03092273765357947,0.02660934988657723,0.019562124802460883,0.011299860910738273,0.002673085376733785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006864969262975401,0.021627690775391534,0.030740481832438535,0.03632966034742735,0.03882048990302019,0.035236125420581715,0.03159100899776291,0.03092273765357947,0.02660934988657723,0.019440620921700257,0.009477302699328874,0.001032782986465326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006014442097651016,0.021020171371588407,0.03031521824977634,0.03578289288400453,0.03942800930682334,0.034628606016778585,0.03134800123624166,0.030740481832438535,0.02660934988657723,0.019440620921700257,0.010813845387695767,0.001822558211409399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006561209561073835 +2620779,0.005303318674545193,0.00140767100620644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004255749553647377,0.012276200635521277,0.01718668088972979,0.020100232507226843,0.017022998214589507,0.01548438106827084,0.013716608176755777,0.01135957765473569,0.010082852788641478,0.007562139591481107,0.004877743719180453,0.0020624017067675748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038301745982826387,0.010541164279034272,0.01476417729765359,0.0174813097049823,0.019249082596497366,0.017383100099898133,0.01577900988352335,0.01568080027843918,0.01368387164172772,0.010050116253613421,0.005696157094881873,0.0009493595158136455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004092066878507094,0.01224346410049322,0.017121207819673676,0.020263915182367125,0.019641921016834044,0.017644992380122584,0.015942692558663634,0.015091542647934157,0.01306187747619464,0.009624541298248683,0.006023522445162441,0.0013749344711783832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039611207383948655,0.01207978142535294,0.017219417424757844,0.020362124787451294,0.022391789959190816,0.020362124787451294,0.017841411590290922,0.016564686724196715,0.01440407541234497,0.010541164279034272,0.006187205120302724,0.0015713536813467238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004353959158731547,0.01224346410049322,0.017219417424757844,0.020558543997619635,0.019903813297058502,0.018234250010627607,0.016270057908944202,0.015222488788046386,0.012963667871110467,0.009690014368304795,0.005794366699966044,0.0018659824965992344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003797438063254582,0.011719679540044312,0.01666289632928088,0.019772867156946275,0.021868005398741903,0.02003475943717073,0.01767772891515064,0.016597423259224767,0.014174919667148568,0.010377481603893986,0.005990785910134385,0.0013094614011222698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620780,0.012433393204805522,0.0032086176012401345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01026757632396843,0.029679712811471245,0.04195267513621476,0.04949292649912908,0.041230736175935735,0.03770125681457158,0.03312897673280439,0.02679195697035512,0.023823985689208,0.017647396806820745,0.011551023364464483,0.004812926401860202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009385206483627392,0.025187648169735056,0.035535439933734494,0.04243396777640078,0.04668538609804396,0.04259439865646279,0.03818254945475761,0.037460610494478574,0.03264768409261837,0.02414484744933201,0.013636624805270574,0.002165816880837091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00978628368378241,0.029679712811471245,0.041551597936059746,0.049813788259253096,0.04828969489866402,0.04363719937686583,0.03898470385506764,0.03601673257392052,0.030882944411936297,0.022941615848866965,0.014599210085642616,0.0032086176012401345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009545637363689402,0.029278635611316228,0.04187245969618376,0.0500544345793461,0.05550908450145433,0.05077637353962513,0.044439353777175866,0.04026815089556368,0.034653070093393454,0.02574915624995208,0.015000287285797628,0.0036096948013951517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01050822264406144,0.029679712811471245,0.04195267513621476,0.050535727219532124,0.04901163385894306,0.0452415081774859,0.04002750457547068,0.03730017961441656,0.03152466793218432,0.02358333936911499,0.014117917445456594,0.004251418321643179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009144560163534385,0.028316050330944184,0.04050879721565671,0.04869077209881905,0.05398499114086526,0.0500544345793461,0.04411849201705185,0.04018793545553269,0.03417177745320744,0.025187648169735056,0.014518994645611611,0.0030481867211781285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008743482963379368,0.028075404010851176,0.04026815089556368,0.04869077209881905,0.051418097059873144,0.04740732505832299,0.042514183216431786,0.03954621193528466,0.033369623052897396,0.024626140089518037,0.011791669684557495,0.0012834470404960538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007540251362914315,0.027032603290448137,0.03962642737531566,0.04804904857857102,0.05286197498043122,0.047487540498353985,0.04211310601627676,0.03914513473512964,0.03369048481302142,0.024626140089518037,0.01339597848517756,0.0016043088006200672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008262190323193346 +2620781,0.010832287469350211,0.002599748992644051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009026906224458512,0.026791857674192864,0.038346297641499764,0.0454956073712709,0.03762414514354307,0.03437445890273801,0.029897113415406584,0.023758817182774804,0.020870207190948075,0.0151652024570903,0.009965704471802197,0.004044053988557413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00830475372650183,0.022531157936248443,0.03220800140886797,0.03863515864068243,0.04260699737944418,0.038924019639865096,0.03487996565130768,0.03358009115498566,0.029319391417041242,0.021664574938700422,0.01205994671587657,0.001660950745300366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008593614725684503,0.026791857674192864,0.037840790892930076,0.045784468370453565,0.04419573287494888,0.04007946363659579,0.0355299028994687,0.03199135565948096,0.027080718673375533,0.020364700442378404,0.012854314463628919,0.002527533742848383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00830475372650183,0.02643078142521452,0.03827408239170409,0.04600111411984057,0.051200612105128676,0.04628997511902323,0.04101826188393948,0.03646870114681238,0.031124772661932944,0.023181095184409455,0.013287605962402927,0.0028163947420310554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009171336724049845,0.026719642424397196,0.03827408239170409,0.046506620868410245,0.04520674637208823,0.04181262963169182,0.03682977739579073,0.03430224365294234,0.028669454168880226,0.021520144439109087,0.012637668714241915,0.003538547239987736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007943677477523491,0.025419767928075168,0.03697420789538206,0.04477345487331422,0.04961187660962398,0.04600111411984057,0.040946046634143814,0.036324270647221046,0.03090812691254594,0.022675588435839777,0.012854314463628919,0.0023831032432570474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0076548164783408175,0.0253475526782795,0.03682977739579073,0.04484567012310989,0.04701212761697994,0.04340136512719652,0.038924019639865096,0.03538547239987737,0.02975268291581525,0.021953435937883105,0.010326780720780538,0.0009387982473436852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006499372481610128,0.024408754430935813,0.03610762489783405,0.04412351762515321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620782,0.010438688687337177,0.0024143905807446527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008734412983282128,0.026203238949846382,0.03784912292755589,0.045021283182120876,0.036783950612521474,0.03373045664275618,0.02918572143194272,0.023078733492412126,0.020096251010315785,0.01448634348446792,0.009515539347640692,0.0037636088464549004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008095309594261484,0.0218715382020398,0.03152910052501841,0.037991145902893805,0.041754754749348706,0.03813316887823173,0.034085514081100984,0.03287831879072866,0.02854661804292207,0.021090411837681233,0.011716895465378465,0.0015622527287171284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008379355544937326,0.02627425043751534,0.03721001953853524,0.04537634062046568,0.04367206491641064,0.03941137565627302,0.03493765193312851,0.03110303159900465,0.026132227462177422,0.019812205059639945,0.012569033317405989,0.002343379093075693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008095309594261484,0.025848181511501582,0.03763608846454901,0.045447352108134643,0.050915236658644586,0.045944432521817374,0.040689582434314295,0.035647766809818106,0.030321905234646084,0.022723676054067322,0.01299510224341975,0.0026274250437515337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008947447446289006,0.026203238949846382,0.037707099952217965,0.046086455497155294,0.04466622574377608,0.04147070879867286,0.03614484722350084,0.033801468130425144,0.028049537629239348,0.021161423325350186,0.012427010342068065,0.0033375399204411374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007740252155916682,0.02485402068413613,0.03649990466184564,0.0444531912807692,0.04913994946692059,0.04573139805881048,0.04061857094664534,0.03550574383448019,0.030179882259308163,0.022155584152715638,0.012498021829737027,0.002201356117737772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007385194717571879,0.02485402068413613,0.03635788168650771,0.04452420276843815,0.04637050144783114,0.04274891557671415,0.0383462033412386,0.03451158300711474,0.028901675481266875,0.021374457788357074,0.010012619761323416,0.0008521378520275247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006320022402537473,0.024001882832108606,0.03543473234681123,0.04388509937941751,0.04743567376286553,0.04395611086708648,0.03792013441522484,0.034227537056438904,0.029256732919611672,0.021516480763694997,0.011290826539364697,0.0007811263643585642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620783,0.0015342732871187557,0.0003311381195220337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00128040072881853,0.0039074298103599974,0.005828030903587793,0.0069318246353279045,0.005596234219922368,0.005231982288448132,0.004371023177690844,0.0034659123176639522,0.0029250533891112974,0.0020309804664018064,0.0013355904154055357,0.0005187830539178527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012031351675967224,0.0032010018220463257,0.004746313046482482,0.005728689467731182,0.006291624270918639,0.005684537718461578,0.00511056497795672,0.004911882106243499,0.004282719679151636,0.0031568500727767214,0.001710880284197174,0.00018764493439581904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012141731049141234,0.003951581559629601,0.0056293480318745735,0.00699805225923231,0.006722103826297283,0.00580595502895299,0.005276134037717736,0.0046580095479432735,0.0038191263118207883,0.0029250533891112974,0.0018433355320059874,0.00029802430756983026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001192097230279321,0.003885353935725195,0.005750765342365985,0.006953900509962707,0.007936276931211407,0.007020128133867112,0.006269548396283838,0.005430665160161352,0.004547630174769262,0.0034327985057117493,0.0019316390305451961,0.0003311381195220337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013135145407707337,0.003962619496947002,0.005761803279683386,0.007119469569723723,0.006865597011423499,0.006435117456044854,0.005530006596017963,0.005231982288448132,0.004260643804516833,0.003234115633998529,0.0018654114066407896,0.000452555430013446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011258696063749145,0.0036756331266945734,0.005563120407970165,0.006865597011423499,0.007572024999737169,0.007108431632406322,0.006236434584331634,0.005397551348209148,0.004569706049404065,0.0033444950071725406,0.0018433355320059874,0.0002759484329350281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00108171785710531,0.0037639366252337817,0.005618310094557172,0.0068876728860583,0.007119469569723723,0.006512383017266662,0.005894258527492199,0.0051878305391785265,0.004293757616469037,0.003167888010094122,0.0014570077258969482,9.934143585661009e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000905110860026892,0.003620443440107568,0.005386513410891747,0.006799369387519092,0.007141545444358527,0.006755217638249488,0.005783879154318188,0.005132640852591522,0.0044041369896430475,0.003234115633998529,0.001622576785657965,5.518968658700561e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010044522958835022 +2620784,0.0014586108833457149,0.00037850029251376157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011816594497990602,0.003406502632623854,0.004800491514808683,0.005631345815448646,0.004754332942550908,0.004338905792230924,0.003831161497395391,0.0031387829135287545,0.0027972094788212137,0.0020863674660514656,0.0013478303099270532,0.0005631345815448646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010801105908319535,0.0029264534811429847,0.004108112930942045,0.0048743452304211244,0.005382089525256658,0.0048743452304211244,0.004421991222294921,0.004357369221134035,0.0038126980684922806,0.0027972094788212137,0.0015693914567643772,0.00024925629019198925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011355008775412847,0.003406502632623854,0.004763564657002462,0.005677504387706422,0.00549287009867532,0.0049205038026789005,0.004477381509004252,0.004191198361006042,0.0036096003505580675,0.0026679654764994406,0.001670940315731484,0.00036926857806220635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011078057341866192,0.0033603440603660784,0.004809723229260238,0.005705199531061088,0.006286797541509063,0.00574212638886731,0.00501282094719445,0.00463432065468069,0.00402502750087805,0.00293568519559454,0.0017078671735377045,0.0004154271503199822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012185863076052811,0.003415734347075409,0.004809723229260238,0.005760589817770419,0.005603650672093982,0.005142064949516224,0.004588162082422915,0.004265052076618483,0.0036372954939127324,0.002714124048757217,0.0016155500290221526,0.0004985125803839785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010524154474772882,0.003249563486947416,0.004643552369132245,0.005529796956481541,0.0061298583958326255,0.005640577529900203,0.004966662374936674,0.004643552369132245,0.0039327103563624975,0.00289875833778832,0.0016524768868283733,0.0003508051491590961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010062568752195124,0.0032126366291411954,0.0046066255113260245,0.0055205652420299844,0.005880602105640636,0.005391321239708213,0.004865113515969569,0.004588162082422915,0.003858856640750057,0.002861831479982099,0.0013478303099270532,0.0001384757167733274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008677811584461849,0.003092624341270978,0.004532771795713583,0.005446711526417544,0.006009846107962409,0.005299004095192661,0.004809723229260238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620785,0.0056405569915796,0.0016532667044285036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004505962194422783,0.01267504473395186,0.01757001085882841,0.020584791319845093,0.01750517687041945,0.015981578142808865,0.014004141496335557,0.011734951902021928,0.01053552311645615,0.007974580574302195,0.005121885084307911,0.002269189594313632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003954873292946616,0.010924527046909915,0.015106319299287895,0.017861763806668735,0.019644698487915162,0.01757001085882841,0.01594916114860439,0.016013995137013348,0.013906890513722117,0.010308604157024785,0.006094394910442326,0.001264262773974738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0043114602291959014,0.01270746172815634,0.01753759386462393,0.020682042302458528,0.020228204383595808,0.01831560172553146,0.016208497102240232,0.015300821264514777,0.013517886583268354,0.010049268203388941,0.00635373086407817,0.0017181006928374644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004084541269764538,0.012480542768724977,0.01747275987621497,0.020746876290867494,0.022918814902567683,0.020714459296663015,0.01828318473132698,0.016727169009511916,0.014522813403607246,0.010859693058500954,0.006548232829305053,0.001977436646473308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004570796182831745,0.0126102107455429,0.01753759386462393,0.020876544267685416,0.020066119412573406,0.01838043571394042,0.016240914096444712,0.015268404270310296,0.012804712710769783,0.009757515255548618,0.005964726933624404,0.0021071046232912297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004019707281355578,0.01215637282668017,0.017083755945761205,0.020260621377800287,0.022302892012682558,0.02055237432564061,0.017959014789282177,0.016792002997920878,0.014457979415198285,0.010665191093274073,0.006224062887260249,0.0016532667044285036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038576223103331756,0.01196187086145329,0.0169216709747388,0.020195787389391325,0.021622135134388466,0.019871617447346526,0.01750517687041945,0.016792002997920878,0.014490396409402766,0.010600357104865111,0.0053488040437392765,0.0007455908667030506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003338950403061487,0.011540449936795042,0.016662335021102957,0.019904034441551,0.02201113906484223,0.020033702418368923,0.017699678835646333,0.016792002997920878,0.014522813403607246,0.010600357104865111,0.006061977916237845,0.001134594797156816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036307033509018114 +2620786,0.004083362711797394,0.0011247585912735336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00327647067892725,0.009364837836038335,0.013081431441985663,0.015282046077086053,0.012836918704752284,0.011761062660925428,0.010391791332418516,0.008606848350614866,0.007702151222851372,0.005794951872431032,0.0037410448796706673,0.0015893327920169496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029097015730771853,0.0080444690549781,0.011198683365288661,0.013252590358049026,0.014548507865385925,0.013130333989432339,0.011883319029542115,0.011883319029542115,0.010318437511248503,0.007628797401681358,0.004401229270200784,0.0008068920328701438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031297630365872235,0.009389289109761674,0.013056980168262323,0.015453204993149415,0.014964179518682669,0.013521554369005742,0.01205447794560548,0.01151654992369205,0.010000570952845114,0.007384284664447982,0.004670193281157499,0.0011492098649968712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003007506667970536,0.009218130193698307,0.013105882715709,0.015502107540596092,0.01701808651144303,0.015453204993149415,0.013594908190175753,0.012543503420072233,0.010905268080608608,0.0080444690549781,0.004792449649774186,0.0013203687810602349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033498245000972635,0.009364837836038335,0.013081431441985663,0.015624363909212782,0.015013082066129342,0.013766067106239118,0.012201185587945508,0.011492098649968713,0.009804960763058411,0.00728647956955463,0.004401229270200784,0.001491527697123599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029097015730771853,0.009022520003911608,0.012763564883582273,0.015061984613576019,0.01665131740559296,0.015282046077086053,0.013399298000389054,0.012567954693795574,0.01078301171199192,0.007873310138914735,0.004645742007434161,0.001100307317550196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027874452044604967,0.008851361087848245,0.01259240596751891,0.01503753333985268,0.015991133015062848,0.014646312960279276,0.013056980168262323,0.012445698325178882,0.010611852795928555,0.00782440759146806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620787,0.00501993868232376,0.0013634401359397866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040903204078193605,0.011713190258755439,0.016392268907094252,0.019367047385508332,0.016051408873109307,0.014811917840436771,0.012983668567244786,0.010504686501899719,0.009420131848311255,0.00706509888623344,0.004617104096705185,0.0019521983764592397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003687485822200787,0.009946915537197077,0.013882299565932373,0.016578192561995133,0.018189530904469422,0.016547205286178316,0.014842905116253585,0.014718956012986333,0.01276675763652709,0.009482106399944882,0.005515735095392773,0.0009915928261380266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039043967529184794,0.011744177534572256,0.016361281631277442,0.0195219837645924,0.01887125097243932,0.017166950802514586,0.015214752426055347,0.014223159599917318,0.012332935775091708,0.009141246365959933,0.0058565951293777195,0.0013944274117566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00381143492546804,0.011527266603854558,0.016392268907094252,0.01958395831622602,0.021629118520135705,0.01973889469531009,0.017352874457415464,0.015710548839124355,0.013634401359397866,0.010101851916281147,0.006011531508461786,0.001611338342474293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004214269511086613,0.011713190258755439,0.016423256182911065,0.01973889469531009,0.018995200075706577,0.01750781083649953,0.015431663356773038,0.014502045082268638,0.012270961223458077,0.009141246365959933,0.0055777096470264,0.001797261997375173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036564985463839734,0.01124838112150324,0.015958447045658866,0.0190571746273402,0.021102334831249875,0.01958395831622602,0.017135963526697773,0.015679561563307548,0.013448477704496985,0.009822966433929823,0.005825607853560905,0.0013324528601229733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003501562167299906,0.011031470190785545,0.015772523390757985,0.019026187351523387,0.020110742005111853,0.018561378214271188,0.016485230734544696,0.015493637908406667,0.013200579497962479,0.009730004606479385,0.004803027751606067,0.0005887582405194534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003036753030047706,0.010690610156800598,0.015524625184223479,0.018747301869172065,0.020668512969814493,0.018654340041721625,0.01664016711362876,0.015369688805139415,0.013293541325412918,0.009699017330662573,0.005422773267942332,0.0007746818954203333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003315638512399026 +2620788,0.004168535290878136,0.0012053596021816297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003415185539514617,0.009441983550422764,0.01315850899048279,0.01551900487808848,0.013007839040210085,0.012003372705058728,0.010471561543952908,0.008613298823922894,0.007734390780665458,0.005800793085499092,0.0038169720735751612,0.0016824811113785247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003013399005454074,0.008010619022832078,0.01112446466180129,0.013208732307240355,0.014564761859694693,0.013058062356967652,0.01187781441316481,0.011852702754786025,0.010346003252058988,0.007659055805529104,0.004545210166559895,0.000929131360015006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003264515589241913,0.009542430183937902,0.013133397332104006,0.015594339853224835,0.015167441660785505,0.013811412108331172,0.012229377630467782,0.011526251195861833,0.010119998326649931,0.007508385855256401,0.004821438408726519,0.0012555829189391974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031891806141055613,0.009341536916907627,0.013183620648861572,0.015669674828361187,0.01735215593973971,0.0156445631699824,0.013836523766709956,0.012606052506149542,0.010973794711528586,0.008136177314726,0.004921885042241654,0.0014564761859694692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034905205146509685,0.009467095208801547,0.013208732307240355,0.015795233120255103,0.015117218344027936,0.013861635425088741,0.012229377630467782,0.011526251195861833,0.009843770084483307,0.007307492588226129,0.00457032182493868,0.001556922819484605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030636223222116413,0.00916575530825614,0.012857169089937382,0.015267888294300645,0.016824811113785247,0.0156445631699824,0.013510072207785762,0.012631164164528327,0.01092357139477102,0.007910172389316945,0.004746103433590166,0.0012053596021816297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029380640303177216,0.008989973699604652,0.012681387481285895,0.015217664977543075,0.016171907995936863,0.014891213418618883,0.013208732307240355,0.012555829189391977,0.010848236419634665,0.007935284047695727,0.004017865340605432,0.0005524564843332469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025362774962571786,0.008688633799059247,0.012480494214255624,0.015016771710512801,0.01649835955486106,0.015167441660785505,0.013384513915891847,0.012530717531013192,0.01092357139477102,0.007910172389316945,0.004520098508181111,0.0007784614097423025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027873940800450187 +2620789,0.0030386232838221843,0.000852946886686929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002398913118806987,0.006876884273913363,0.009560113021615992,0.011106079253736051,0.00943572493397415,0.008565008320481243,0.007569903619346494,0.006414871376957944,0.0057218520315248135,0.004318043613852577,0.002772077381732519,0.001190571696000505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002132367216717322,0.005952858480002524,0.008262922964779623,0.009720040562869793,0.010661836083586607,0.009560113021615992,0.008653856954511131,0.008778245042152976,0.0076232127997644256,0.005633003397494925,0.0032518600054939157,0.0006219404382092189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002292294757971121,0.006876884273913363,0.009542343294810017,0.011194927887765943,0.010857303078452365,0.009808889196899684,0.008742705588541021,0.0084406202328394,0.0073566668976747605,0.005437536402629172,0.003411787546747716,0.000852946886686929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021856763971352553,0.006770265913077498,0.009542343294810017,0.011248237068183873,0.012314420676542535,0.011141618707348006,0.009844428650511636,0.009151409305078509,0.00797860733588398,0.005881779572778615,0.003518405907583581,0.0009951047011347502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002452222299224921,0.006876884273913363,0.009560113021615992,0.011319315975407784,0.010892842532064323,0.009915507557735547,0.008813784495764932,0.008369541325615489,0.007090120995585096,0.005330918041793304,0.003216320551881961,0.001119492788776594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002132367216717322,0.006610338371823697,0.009311336846332306,0.010963921439288232,0.01203010504764689,0.010928381985676276,0.009595652475227949,0.009151409305078509,0.007889758701854092,0.005792930938748726,0.0033584783663297823,0.0008174074330749735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020435185826874337,0.006468180557375878,0.009186948758690461,0.010910612258870299,0.011621401331109405,0.010608526903168675,0.009453494660780128,0.009133639578272531,0.007854219248242138,0.0057396217583307926,0.002825386562150451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620790,0.0024127050926620575,0.0006395121932357261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019040022116790936,0.005508525482644096,0.0077032150548848825,0.008924101969243996,0.007645077582772543,0.006874756077284056,0.006148037675879821,0.005145166281941978,0.004578325928846675,0.0034446452226560703,0.0022092239402688725,0.0009301995537974196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017005210592859078,0.00478180708123986,0.00667127492489087,0.007848558735165729,0.008647948976710387,0.007775886895025305,0.007092771597705324,0.00710730596573341,0.0061771064119359904,0.00453472282476242,0.002543514404914819,0.0004360310408425405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018167960035105856,0.005479456746587925,0.0076596119508006285,0.008996773809384418,0.008735155184878895,0.007819489999109558,0.00710730596573341,0.006816618605171716,0.005900953419402381,0.0043312416723692345,0.002674323717167582,0.0006104434571795567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017586585313982463,0.005421319274475586,0.007688680686856797,0.009040376913468673,0.009883370259097586,0.008953170705300167,0.007906696207278067,0.007412527694323189,0.0064532594044695996,0.004709135241099438,0.0027469955573080048,0.0006976496653480648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019476053157633476,0.0054939911146160095,0.007688680686856797,0.009113048753609094,0.00883689576107549,0.008052039887558914,0.007223580909958088,0.0068311529731998,0.005799212843205788,0.0043312416723692345,0.002572583140970989,0.0008575277136569964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017005210592859078,0.005246906858138571,0.007456130798407443,0.00877875828896315,0.009679889106704398,0.008822361393047403,0.007848558735165729,0.007441596430379357,0.006380587564329176,0.004650997768987098,0.002659789349139497,0.0005813747211233873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016133148511173999,0.005159700649970064,0.007368924590238932,0.008764223920935066,0.00934559864205845,0.008488070928401455,0.007688680686856797,0.007397993326295104,0.006293381356160667,0.004621929032930927,0.0021946895722407874,0.00021801552042127024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014098336987242144,0.004970753865604962,0.007252649646014257,0.008618880240654216,0.0094909423223393,0.008168314831783591,0.007557871374604034,0.00729625275009851,0.006293381356160667,0.004592860296874758,0.0025289800368867342,0.0003778935687302017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001526108642948892 +2620791,0.004434711640042335,0.001209466810920637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035208922717911875,0.010078890091005306,0.014056692046922068,0.01628748638706458,0.01408356908716475,0.012578454833574622,0.011342110982411306,0.009541349286151692,0.008520021756929818,0.006423612618000716,0.004112187157130166,0.001747007615774253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031177366681509745,0.00881566919959931,0.012255930350662454,0.014352339489591555,0.015884330783424366,0.014244831328620833,0.013035364517700196,0.013196626759156282,0.011422742103139347,0.008358759515473735,0.004649727961983782,0.0007794341670377436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033596300303351027,0.010052013050762625,0.014029815006679387,0.016394994548035297,0.015938084863909727,0.014298585409106198,0.012981610437214835,0.012605331873817304,0.010938955378771093,0.008009357992318883,0.00489162132416791,0.0011288356901925944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032789989096070594,0.009998258970277263,0.01408356908716475,0.016502502709006026,0.01800761696259615,0.016233732306579214,0.01440609357007692,0.013599782362796494,0.011879651787264923,0.008654406958143223,0.005026006525381313,0.0012900979316486792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00360152339251923,0.010105767131247985,0.014056692046922068,0.016610010869976745,0.01612622414560849,0.014621109892018364,0.013223503799398965,0.012578454833574622,0.010589553855616243,0.00795560391183352,0.004703482042469143,0.0015857453743181682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031446137083936555,0.009648857447122414,0.013572905322553815,0.015964961904152405,0.017577584318713257,0.015991838944395088,0.014379216529834237,0.013707290523767218,0.011745266586051519,0.008546898797172499,0.004864744283925229,0.0010750816097072327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002983351466937571,0.009460718165423649,0.013465397161583091,0.015938084863909727,0.017093797594344998,0.015481175179784147,0.014056692046922068,0.013653536443281853,0.011718389545808838,0.008546898797172499,0.0040584330766448035,0.00037627856339753145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026070729035400394,0.009165070722754156,0.013250380839641644,0.015669314461482918,0.01725505983580108,0.014916757334687857,0.01378792164449526,0.013492274201825768,0.011637758425080793,0.008493144716687138,0.004676605002226462,0.0007256800865523819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028489662657241667 +2620792,0.006279676286331977,0.0018254872925383653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004855796198152051,0.013691154694037736,0.019131106825802064,0.022161415731415755,0.019386675046757437,0.017488168262517537,0.01558966147827764,0.013399076727231599,0.011829157655648608,0.009054416970990293,0.0056225008610181655,0.002409643226150642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004271640264539774,0.01208472587660398,0.016757973345502192,0.019751772505265112,0.022088396239714217,0.019788282251115875,0.017853265721025212,0.018145343687831352,0.01555315173242687,0.011573589434693233,0.006571754253138114,0.001241331358926088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004636737723047446,0.013691154694037736,0.018985067842398996,0.022343964460669594,0.022088396239714217,0.02000734072622048,0.017743736483472904,0.017524678008368308,0.015005505544665362,0.011208491976185562,0.00664477374483965,0.0017524678008368306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004527208485495146,0.013581625456485433,0.019021577588249763,0.022343964460669594,0.02471709794096946,0.022490003444072662,0.01971526275941434,0.018218363179532883,0.015954758936785312,0.011902177147350142,0.006973361457496555,0.0020445457676429688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004965325435704352,0.013654644948186969,0.019021577588249763,0.02252651318992343,0.02179631827290808,0.019788282251115875,0.017634207245920602,0.01664844410794989,0.013727664439888503,0.010733865280125586,0.006462225015585812,0.00230011398859834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004381169502092077,0.013070489014574692,0.01832789241708518,0.021613769543654238,0.024023412769804887,0.02194235725631115,0.019569223776011273,0.018546950892189783,0.01580871995338224,0.011829157655648608,0.00675430298239195,0.0016794483091352958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00419862077283824,0.012924450031171625,0.01832789241708518,0.021869337764609614,0.02369482505714798,0.021467730560251173,0.018985067842398996,0.018619970383891325,0.016027778428486846,0.011829157655648608,0.005805049590272,0.0005841559336122767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003614464839225962,0.012522842826813183,0.017999304704428277,0.021358201322698875,0.023804354294700285,0.021175652593445036,0.018985067842398996,0.018291382671234417,0.01580871995338224,0.01175613816394707,0.006608263998988883,0.001241331358926088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003979562297733636 +2620793,0.002474033669464479,0.0007090218442977468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001976209821340529,0.005491147900518722,0.007633299004567234,0.008809973554678389,0.007663470146877774,0.006894106017958944,0.006200169744816469,0.005310121046655467,0.0047368693427551605,0.0035752803637992777,0.002277921244445953,0.0009654765539373576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017499262540114605,0.004812297198531516,0.006637651308319334,0.007799240287275216,0.008644032271970406,0.007678555718033047,0.007029876158356385,0.00722598858337491,0.006230340887127011,0.004601099202357719,0.00260980380986192,0.0004827382769686788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018856963944089017,0.005491147900518722,0.007603127862256691,0.008930658123920557,0.00873454569890203,0.007874668143051574,0.007044961729511657,0.007029876158356385,0.006064399604419028,0.004465329061960279,0.0026852316656382756,0.0006788507019872045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018706108232536306,0.00547606232936345,0.007618213433411962,0.00894574369507583,0.009881049106702646,0.00894574369507583,0.007889753714206844,0.007422101008393437,0.006516966739077163,0.004797211627376245,0.002805916234880445,0.0007995352712293743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020063809636510716,0.00546097675820818,0.007603127862256691,0.009036257122007457,0.008689288985436217,0.007859582571896302,0.007060047300666927,0.006788507019872045,0.00561183246976089,0.004314473350407567,0.0025947182387066484,0.0009051342693162727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017800973963220032,0.005234693190879111,0.007286330867995995,0.008598775558504591,0.009534080970131404,0.008689288985436217,0.007799240287275216,0.0074824432930145224,0.0063811965986797226,0.004721783771599889,0.002715402807948818,0.0006637651308319334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016895839693903756,0.005144179763947482,0.007286330867995995,0.008704374556591489,0.009383225258578695,0.008478090989262421,0.0075729567199461474,0.007542785577635607,0.00648679559676662,0.0047368693427551605,0.0023080923867564956,0.0002413691384843394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620794,0.003809557815152449,0.0010884450900435568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00305237862207867,0.008518265922080012,0.011901910441128458,0.01377119657402935,0.011901910441128458,0.010766141651517791,0.009677696561474233,0.0082579855744609,0.0073115115831186754,0.005584196548919118,0.003572939317316893,0.0015143583861475572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002721112725108892,0.007500806381387119,0.010363890205197348,0.012185852638531128,0.013605563625544461,0.012162190788747572,0.011168393097838236,0.011405011595673793,0.009772343960608457,0.007216864183984453,0.00402251446320445,0.0007335173432902232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002934069373160893,0.008589251471430678,0.011925572290912016,0.013889505822947127,0.013605563625544461,0.012233176338098235,0.011050083848920459,0.010884450900435568,0.009417416213855124,0.0069329219865817875,0.004164485561905783,0.0010174595406928903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002886745673593781,0.008541927771863567,0.011972895990479127,0.014055138771432015,0.015332878659744021,0.013700211024678681,0.01220951448831468,0.011499658994808013,0.010079948007794678,0.007358835282685788,0.004306456660607117,0.0011594306393942235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031233641714293373,0.008565589621647123,0.011949234140695571,0.014173448020349796,0.013700211024678681,0.012280500037665348,0.011215716797405347,0.010671494252383569,0.008873193668833343,0.006767289038096898,0.004069838162771561,0.0013960491372297795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027447745748924476,0.008163338175326676,0.011381349745890236,0.013463592526843125,0.014930627213423576,0.013605563625544461,0.012256838187881793,0.011759939342427129,0.009985300608660458,0.007382497132469343,0.004211809261472893,0.0009937976909093346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026264653259746706,0.0080450289264089,0.011381349745890236,0.013534578076193796,0.014646685016020908,0.013250635878791125,0.011901910441128458,0.01178360119221068,0.010079948007794678,0.007382497132469343,0.003549277467533337,0.0003549277467533338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002247875729437781,0.0078320722783569,0.011239378647188904,0.01327429772857468,0.014646685016020908,0.012966693681388463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620795,0.004650822261319987,0.0013759829175502925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003605075243981766,0.01012723427317015,0.014145104392417005,0.01637419671884848,0.014420300975927064,0.013071837716727779,0.011695854799177485,0.009989635981415123,0.00880629067232187,0.006769835954347439,0.004265547044405907,0.0018713367678683975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003219800027067684,0.009053967597480924,0.012493924891356653,0.014750536876139133,0.01656683432730552,0.014888135167894164,0.013512152250343872,0.013677270200449908,0.011613295824124467,0.008696212038917845,0.0048709795281280345,0.0009356683839341987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034674769522267364,0.01015475393152116,0.014090065075714994,0.016649393302358536,0.01637419671884848,0.014860615509543157,0.013209436008482806,0.013044318058376771,0.011145461632157365,0.00828341716365276,0.004953538503181052,0.0012934239424972746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033298786604717074,0.010017155639766129,0.014117584734066,0.016649393302358536,0.018383131778471902,0.016594353985656528,0.014557899267682093,0.013594711225396888,0.011888492407634526,0.008861329989023881,0.005173695769989098,0.0014860615509543157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036876342190347833,0.01015475393152116,0.014172624050768013,0.016869550569166586,0.016346677060497472,0.014805576192841143,0.013236955666833812,0.012521444549707661,0.010374911198329203,0.008063259896844715,0.0048709795281280345,0.0017612581344643742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00324731968541869,0.009659400081203052,0.013512152250343872,0.015988921501934397,0.0178877779281538,0.01629163774379546,0.014612938584384106,0.013897427467257953,0.011778413774230502,0.008833810330672875,0.005063617136585075,0.0012659042841462688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031097213936636604,0.00960436076450104,0.013567191567045882,0.016264118085444458,0.01764010100299474,0.015988921501934397,0.014145104392417005,0.014035025759012982,0.011943531724336537,0.008833810330672875,0.0042930667027569125,0.00044031453361609356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026694068600475675,0.009219085547586959,0.013347034300237835,0.015796283893477356,0.01764010100299474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620796,0.002209076920586414,0.0006293300529577574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017467119837194902,0.004931892659913855,0.006858413230192703,0.007950108220017385,0.006832726289255654,0.006164865824892318,0.005458474949123406,0.004649336309606291,0.004161284431802316,0.0031594937352573136,0.002003581393090003,0.0008733559918597451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015412164562230795,0.004302562606956098,0.005972213767864433,0.006999691405346485,0.007706082281115396,0.006832726289255654,0.00621623970676642,0.006331830940983152,0.005484161890060459,0.004058536668054108,0.0023503550957401967,0.0004623649368669238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001669651160908336,0.004931892659913855,0.006832726289255654,0.007988638631422964,0.007821673515332127,0.006999691405346485,0.00619055276582937,0.006062118061144113,0.005304353303501099,0.0039557889043059045,0.00242741591855135,0.0006293300529577574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016054338085657082,0.004867675307571227,0.006807039348318601,0.008027169042828538,0.008797777270940079,0.007950108220017385,0.007063908757689115,0.006537326468479563,0.005715344358493919,0.004238345254613469,0.002530163682299555,0.0007449212871744884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017852423951250668,0.004906205718976804,0.006807039348318601,0.00805285598376559,0.007770299633458026,0.00707675222815764,0.006280457059109048,0.005972213767864433,0.0049575796008509065,0.0038016672586835957,0.0022989812138660935,0.0008091386395171167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015669033971601309,0.004726397132417444,0.006627230761759241,0.007808830044863604,0.008566594802506617,0.007834516985800653,0.00696116099394091,0.006588700350353665,0.005625440065214241,0.004199814843207892,0.0024017289776142987,0.0006164865824892318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015026860448175024,0.004636492839137764,0.006588700350353665,0.007795986574395077,0.008373942745478733,0.0076418649287727704,0.006742821995975972,0.006588700350353665,0.005689657417556869,0.004161284431802316,0.0020677987454326315,0.00024402593890198763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001297190517321092,0.004482371193515457,0.006473109116136934,0.007693238810646872,0.00850237745016399,0.007577647576430141,0.006781352407381551,0.006588700350353665,0.005676813947088344,0.004148440961333789,0.0023375116252716713,0.00042383452546134695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001412781751537823 +2620797,0.002584732581344129,0.0007447534556415286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001986009215044076,0.005636761448580982,0.007856418806571418,0.009126880583842261,0.008017051904847044,0.007228489422403071,0.006410720922090806,0.005461525341371208,0.0048335959572028625,0.0036799582514051997,0.0022634663847928807,0.0009784015985878905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001723155054229419,0.004935817019741894,0.0068342081811810845,0.008075463940583633,0.008995453503434935,0.00810466995845193,0.007286901458139662,0.0073453134938762515,0.006323102868485919,0.004716771885729681,0.0027015566528173097,0.0005403113305634617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018983911614391903,0.005636761448580982,0.007798006770834828,0.009199895628513,0.009126880583842261,0.00833831810139829,0.00730150446707381,0.007140871368798185,0.006147866761276147,0.0045999478142565,0.002745365679619752,0.000730150446707381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018399791257025999,0.005578349412844391,0.007798006770834828,0.009185292619578851,0.010222106253903332,0.00937513173572277,0.008177685003122666,0.007476740574283581,0.006527544993563986,0.004892007992939452,0.0028767927600270807,0.0008761805360488572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020298182418465186,0.005607555430712686,0.007798006770834828,0.009243704655315441,0.008937041467698343,0.00816308199418852,0.007199283404534775,0.0067465901275762,0.005549143394976096,0.004366299671310137,0.0026285416081465716,0.0009491955807195951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017815670899660092,0.005373907287766324,0.00753515261002017,0.008907835449830046,0.009915443066286233,0.009097674565973966,0.008060860931649486,0.00753515261002017,0.0064399269399591005,0.004818992948268715,0.0027891747064221956,0.0007155474377732333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017085520452952711,0.005315495252029735,0.00753515261002017,0.009010056512369082,0.009754809968010609,0.008893232440895899,0.007812609779768977,0.007593564645756761,0.006542148002498133,0.0048481989661370095,0.00239489346520021,0.0002628541608146571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014895069112830573,0.005154862153754109,0.007418328538546989,0.008805614387291015,0.009842428021615494,0.008878629431961754,0.007871021815505566,0.007520549601086024,0.006483735966761543,0.004818992948268715,0.0027161596617514567,0.0005111053126951666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016209339916903858 +2620798,0.005224597597178132,0.0015788619112351496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004076334389007113,0.011195566279667422,0.015645086211330112,0.01845833107134911,0.01627663097582418,0.014697769064589026,0.013004080832536777,0.010851087317216117,0.009616704368432273,0.007348884532294513,0.004621759412888346,0.0020955803549121076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035022027849216037,0.009616704368432273,0.013463386115805182,0.01610439149459852,0.01805643894848925,0.016334044136232725,0.014640355904180478,0.014439409842750547,0.01248736238885982,0.009358345146593797,0.0055403699794251615,0.0012343829487838443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00390409490778146,0.011195566279667422,0.015530259890513015,0.018573157392166216,0.01865927713277904,0.017223948122565263,0.014984834866631783,0.014066224300094968,0.012286416327429888,0.00918610566536814,0.005655196300242262,0.0016075684914394247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003789268586964359,0.011080739958850323,0.015472846730104463,0.018487037651553385,0.020898390388712527,0.0194056482180902,0.016850762579909685,0.014898715126018956,0.013004080832536777,0.009788943849657923,0.005913555522080741,0.00195204745389073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004105040969211389,0.011080739958850323,0.015501553310308738,0.018630570552574763,0.018113852108897807,0.016850762579909685,0.014726475644793303,0.013434679535600907,0.010994620218237496,0.008669387221691183,0.005310717337790957,0.001980754034095006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036457356859429806,0.010621434675581914,0.014984834866631783,0.018027732368284977,0.02026684562421846,0.01888892977441324,0.016592403358071207,0.015013541446836058,0.012889254511719675,0.009674117528840823,0.005626489720037987,0.0015788619112351496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035022027849216037,0.010564021515173362,0.015070954607244606,0.018171265269306354,0.019893660081562882,0.018400917910940555,0.016133098074802798,0.015214487508265985,0.013061493992945327,0.0097028241090451,0.004937531795135377,0.0006889579249026107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030428975016531974,0.010248249132926332,0.014783888805201857,0.017826786306855052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620799,0.0034869954939874288,0.0010441285942448231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777760714815113,0.0077423120290229346,0.01073679403515903,0.012588644749480038,0.010894398351271456,0.009909371375568793,0.00868793792569749,0.007289199620199708,0.006540579118665686,0.004964535957541423,0.0031520863222485223,0.001398738305497782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024231663602285523,0.006698183434778111,0.009259253571605036,0.010992901048841723,0.012194633959198974,0.01091409889078551,0.009889670836054737,0.009850269757026634,0.008530333609585064,0.006363274263039206,0.003743102507670121,0.0008077221200761841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002639872294883138,0.00772261148950888,0.01067769241661687,0.01266744690753625,0.012529543130937876,0.011386911839122788,0.010007874073139059,0.009377456808689356,0.00831362767493048,0.00620566994692678,0.00386130574475444,0.0010638291337588762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025413695973128714,0.007624108791938615,0.010638291337588764,0.012628045828508142,0.014125286831576192,0.012884152842190837,0.011288409141552522,0.01020487946827959,0.008884943320838024,0.006658782355750004,0.0039992095213528134,0.001260834528899409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002797476610995564,0.007663509870966721,0.010657991877102818,0.012726548526078412,0.012312837196283292,0.011327810220580629,0.009988173533625005,0.009298654650633141,0.007663509870966721,0.005949562933244086,0.003624899270585801,0.001319936147441569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024822679787707114,0.0073680017782559205,0.010342783244877965,0.012332537735797346,0.013691874962267021,0.012687147447050304,0.011150505364954148,0.010263981086821753,0.008825841702295865,0.006579980197693791,0.0038022041262122806,0.0010441285942448231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002364064741686392,0.007289199620199708,0.010323082705363914,0.012371938814825451,0.013396366869556222,0.012352238275311397,0.010815596193215244,0.010342783244877965,0.008904643860352075,0.006560279658179738,0.0033096906383609484,0.00045311240882322515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020685566489755934,0.007052793146031069,0.010145777849737433,0.012174933419684918,0.013573671725182705,0.012431040433367612,0.010933799430299564,0.010323082705363914,0.008884943320838024,0.006540579118665686,0.003743102507670121,0.0007486205015340244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002245861504602073 +2620800,0.0019008281020459702,0.000588843488133806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014876046016011938,0.004059920891869926,0.005692153718626791,0.006725212469738733,0.005950418406404775,0.0053822360932932085,0.0047417396676038065,0.003935953841736493,0.0035020691662694774,0.002675622165379925,0.0016942163518235823,0.0007747940633339551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001280992851378806,0.003481407991247239,0.004865706717737239,0.005847112531293582,0.006570253657071939,0.005960748993915896,0.00534091374324873,0.005216946693115299,0.004514466742359179,0.003398763291158284,0.002024795152179403,0.00046487643800037314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001425621076534478,0.004059920891869926,0.005640500781071194,0.00676653481978321,0.006828518344849926,0.006332650144316195,0.005506203143426643,0.005103310230492986,0.004462813804803581,0.003347110353602687,0.002076448089735,0.0005991740756449253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00138429872649,0.004018598541825448,0.005609509018537835,0.006735543057249852,0.0076446347582283585,0.0071177747951612705,0.006167360744138283,0.005402897268315447,0.004710747905070448,0.003553722103825075,0.0021590927898239554,0.0007231411257783582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001508265776623433,0.004018598541825448,0.005619839606048955,0.00678719599480545,0.006611576007116417,0.006167360744138283,0.0053822360932932085,0.0048760373052483584,0.003997937366803209,0.0031508291908914176,0.001931819864579328,0.0007334717132894777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001332645788934403,0.0038533091416475367,0.005454550205871046,0.006570253657071939,0.007417361832983731,0.006942154807472238,0.006084716044049328,0.005454550205871046,0.004679756142537089,0.0035227303412917158,0.0020557869147127612,0.000588843488133806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012913234388899253,0.0038429785541364172,0.005475211380893284,0.006632237182138656,0.00728306419533918,0.0067562042322720905,0.005919426643871418,0.005526864318448881,0.0047417396676038065,0.003533060928802836,0.0018078528144458953,0.00026859527528910445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011157034512008952,0.003719011504002985,0.005371905505782089,0.0065082701320052245,0.007334717132894778,0.006859510107383284,0.005960748993915896,0.005464880793382165,0.004721078492581568,0.0035227303412917158,0.002024795152179403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620801,0.0052830571857627,0.0015653502772630223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00394132837668011,0.010957451940841155,0.015373975937404683,0.01816924428966008,0.016184603759558745,0.014675158849340833,0.012997997837987597,0.01084564120675094,0.009475959714145795,0.007295650399386586,0.0044724293636086345,0.001984640530101332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033263693391839227,0.009531865081190902,0.013333430040258243,0.015933029607855764,0.0179735755050022,0.016520035961829396,0.014563348115250618,0.014255868596502526,0.012299180749923748,0.009280290929487919,0.0054507732868980235,0.0011740127079472667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038015649590673393,0.011041309991408819,0.015318070570359579,0.018197196973182637,0.018448771124885622,0.01721885304989325,0.014842874950476159,0.01403224712832209,0.012103511965265868,0.009168480195397705,0.0054787259704205775,0.0015653502772630223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003633848857932016,0.010901546573796047,0.015262165203314467,0.01825310234022775,0.020545222389077168,0.01920349357999458,0.016575941328874504,0.014535395431728064,0.01260666026867184,0.00958777044823601,0.005758252805646117,0.0019007824795336697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003997233743725218,0.010957451940841155,0.015318070570359579,0.018309007707272854,0.01786176477091199,0.01654798864535195,0.014172010545934859,0.012858234420374827,0.010649972422093062,0.008469663107333854,0.005171246451672484,0.0019287351630562241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034940854403192464,0.010482256320957737,0.014842874950476159,0.017777906720344322,0.019986168718626088,0.018644439909543495,0.016296414493648968,0.01464720616581828,0.012550754901626732,0.009503912397668351,0.00556258402098824,0.0015373975937404685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620802,0.0018287930078690622,0.0005309399055103729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013666786456655894,0.003864062645658825,0.005417553480300287,0.006361446645652062,0.005604365669276159,0.005053761322820958,0.004473660314948513,0.0038050693228243396,0.003323290519676038,0.0025563773228277215,0.0015534908346414612,0.0006784232125965876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001160202015744889,0.0033822838425105243,0.0047194658267588705,0.005614197889748572,0.006282788881872747,0.00572235231494513,0.005073425763765785,0.005053761322820958,0.0043556736692795415,0.003264297196841553,0.0018877863307035486,0.00038345659842415827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001307685322831104,0.003883727086603654,0.005397889039355459,0.006351614425179647,0.0063811110865968895,0.005889500062976174,0.005122586866127857,0.004925942456679571,0.004237687023610569,0.0031954716535346523,0.001897618551175963,0.0005211076850379587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012585242204690322,0.0038345659842415817,0.005378224598410629,0.006371278866124476,0.007108695401555549,0.0065777554960451765,0.00572235231494513,0.005122586866127857,0.004444163653531269,0.0033724516220381092,0.0019959407559001054,0.0006292621102345161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013863430866104184,0.003864062645658825,0.005388056818883044,0.0063909433070693045,0.006213963338565845,0.0057125200944727166,0.004935774677151985,0.004552318078727828,0.003785404881879511,0.0029889950236139523,0.001818960787396648,0.000658758771651759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012093631181069608,0.0036969148976277815,0.005230741291324416,0.0062041311180934325,0.006931715433052093,0.0064007755275417196,0.005624030110220988,0.005161915748017514,0.0044146669921140275,0.003333122740148452,0.0019271152125932055,0.0005112754645655442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011700342362173037,0.0036575860157381243,0.005240573511796831,0.00624345999998309,0.006803896566910705,0.006233627779510674,0.00544705014171753,0.005191412409434758,0.004463828094476098,0.0033527871810932804,0.0016813097007828477,0.00018681218897587202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010127187086586742,0.0035494315905415675,0.005132419086600272,0.006115641133841703,0.006882554330690019,0.006292621102345161,0.005466714582662358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620803,0.003067015426885877,0.000746030779512781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002569661573877357,0.007563923181171252,0.010858892457352701,0.012827584792178095,0.01071383091689188,0.009781292442500906,0.008496461655562228,0.006776446247241094,0.0059889693133109365,0.004310400059407179,0.002839061577590306,0.001160492323686548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023831538789991615,0.006382707780276016,0.009138877049031567,0.010921061688978767,0.012081554012665316,0.011003953997813521,0.009947077060170412,0.009532615515996646,0.008372123192310097,0.006154753930980443,0.0033778615850162032,0.000455907698591144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024453231106252265,0.007563923181171252,0.010672384762474507,0.012869030946595474,0.012475292479630393,0.011252630924317776,0.010092138600631233,0.009138877049031567,0.007729707798840758,0.005781738541224053,0.003605815434311774,0.000683861547886716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023831538789991615,0.00746030779512781,0.010817446302935324,0.012951923255430224,0.014402538660038409,0.012972646332638914,0.011584200159656796,0.010361538604344182,0.008869477045318618,0.006548492397945521,0.003730153897563905,0.0007667538567214693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002611107728294733,0.007563923181171252,0.010817446302935324,0.01311770787309973,0.012806861714969406,0.011832877086161054,0.010506600144804997,0.009719123210874842,0.008164892420223214,0.0061133077765630674,0.0035643692798943984,0.0010154307832257296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002258815415747032,0.007170184714206174,0.010423707835970245,0.012599630942882526,0.013967354038655955,0.012951923255430224,0.011625646314074168,0.010361538604344182,0.008828030890901242,0.006444877011902081,0.003605815434311774,0.0006631384706780274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021552000297035893,0.007149461636997484,0.01038226168155287,0.012620354020091212,0.013283492490769237,0.012247338630334823,0.011086846306648272,0.010092138600631233,0.008475738578353539,0.006258369317023885,0.0029012308092163704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620804,0.004569016222210782,0.0011121947383013085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037574146564233403,0.011031769431258925,0.015811200874229412,0.01860671737860838,0.01566090428797248,0.014338294328911464,0.012354379390319942,0.009949634010209006,0.008837439271907695,0.006372575257293984,0.0041782450979427534,0.001713381083329043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034568214839094725,0.009318388347929883,0.013316277542364315,0.01587131950873219,0.017554641274809844,0.01596149746048635,0.014488590915168397,0.013947523204643436,0.012264201438565782,0.008987735858164628,0.004929728029227422,0.0006913642967818945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035770587529150195,0.011031769431258925,0.015540667018966932,0.018696895330362538,0.01812576830258619,0.016292149950251602,0.014699006135928104,0.013406455494118475,0.01133236260377279,0.008476727464891056,0.005260380518992675,0.0010220167865471483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034568214839094725,0.010881472845001993,0.01575108223972664,0.018757013964865312,0.02089122548971377,0.018817132599368087,0.016712980391771014,0.015119836577447518,0.012925506418096287,0.009528803568689587,0.005440736422500997,0.0011422540555526956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038175332909261123,0.011031769431258925,0.01575108223972664,0.019057607137379175,0.01857665806135699,0.017163870150541813,0.01530019248095584,0.01409781979090037,0.011933548948800525,0.008897557906410468,0.005170202567238515,0.001502965862569336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033065248976525395,0.01043058308623119,0.015149895894698904,0.01827606488884313,0.02025997982743465,0.018817132599368087,0.016803158343525176,0.015119836577447518,0.012865387783593514,0.009378506982432656,0.005260380518992675,0.000961898152044375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003156228311395606,0.01043058308623119,0.015119836577447518,0.01830612420609451,0.01929808167539027,0.01776505649556955,0.01611179404674328,0.014729065453179492,0.012384438707571327,0.009138032444421565,0.004238363732445528,0.0003607118070166407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027053385526248047,0.010039811961963163,0.014789184087682268,0.017975471716329256,0.019478437578898597,0.01776505649556955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620805,0.0025885781282025382,0.0005833415500174734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021693013891274796,0.006380298203316114,0.009278776529965435,0.010992342333141765,0.009333464800279575,0.008677205556509918,0.007546981303351061,0.0059610214642410566,0.0051771562564050765,0.0036276552641711633,0.002406283893822078,0.0009661594422164403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020599248484992026,0.005468827031413812,0.00787511092523589,0.009406382494031758,0.010390771359686246,0.00944284134090785,0.008640746709633825,0.00823969939399681,0.00732822822209451,0.005268303373595307,0.0028073312094590913,0.0003281296218848287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002023466001623111,0.006398527626754161,0.009060023448708885,0.010974112909703716,0.010627753864380845,0.009552217881536127,0.008658976133071872,0.007783963808045661,0.006580821861134622,0.004867256057958294,0.0030078548672775973,0.0005104238562652892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002023466001623111,0.006380298203316114,0.009315235376841528,0.01106526002689395,0.012359549090995217,0.010955883486265673,0.010026182890925325,0.00907825287214693,0.007747504961169567,0.00566935068923232,0.003117231407905874,0.0005468827031413813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002223989659441617,0.006526133590820483,0.00935169422371762,0.01133870137846464,0.01115640714408418,0.010336083089372108,0.009315235376841528,0.008476681898691411,0.007218851681466232,0.005322991643909446,0.0030078548672775973,0.000820324054712072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018958600375567885,0.006033939157993241,0.008877729214328422,0.010773589251885212,0.012049648892548436,0.011320471955026595,0.010263165395619922,0.009114711719023023,0.007765734384607615,0.00557820357204209,0.0030443137141536888,0.0004739650093891971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018229423438046045,0.006143315698621516,0.008968876331518653,0.010791818675323257,0.011448077919092916,0.010591295017504752,0.009752741539354634,0.008677205556509918,0.007309998798656463,0.005268303373595307,0.002406283893822078,0.00014583538750436836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015312715687958677,0.005888103770488873,0.008695434979947963,0.010463689053438429,0.011375160225340731,0.010664212711256936,0.009661594422164405,0.008658976133071872,0.007474063609598878,0.005322991643909446,0.002770872362582999,0.00018229423438046043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620806,0.0043882495952094515,0.0010898920563265303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035851712379162183,0.010554744124425346,0.015086400569151445,0.017696405230354453,0.015000356459441457,0.013738376183694945,0.011845405770075184,0.009608258917615464,0.008547048231192261,0.006195175899119223,0.004044073156369494,0.001663519454393125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032983575388829205,0.008948587409838879,0.012734528237078407,0.015172444678861434,0.016807282763351233,0.015258488788571426,0.013881783033211593,0.013422881114758319,0.011816724400171853,0.008604410970998922,0.004732426034049408,0.0006596715077765841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003441764388399569,0.010583425494328676,0.014828268240021475,0.01778244934006444,0.017266184681804502,0.01548793974779806,0.014053871252631576,0.012877935086595056,0.010927601933168631,0.008145509052545647,0.005047921102986035,0.001003847946616541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00332703890878625,0.010411337274908698,0.015029037829344786,0.017839812079871103,0.01981882660320085,0.017897174819677758,0.015860797556541347,0.014455410431278189,0.012419033168141778,0.009091994259355527,0.005191327952502684,0.0011185734262298599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036712153476262067,0.010554744124425346,0.015029037829344786,0.01809794440900107,0.017667723860451123,0.01631969947499462,0.01462749865069817,0.013422881114758319,0.011415185221525239,0.008489685491385603,0.004933195623372717,0.001462749865069817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003154950689366272,0.009981116726358751,0.014455410431278189,0.017352228791514494,0.01924519920513426,0.017839812079871103,0.015975523036154668,0.014484091801181521,0.012332989058431788,0.00897726877974221,0.005019239733082704,0.0009464852068098817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030115438398496236,0.009981116726358751,0.014426729061374861,0.017380910161417826,0.018384758108034357,0.016893326873061217,0.015401895638088072,0.014168596732244894,0.011931449879785172,0.008776499190418903,0.0040727545262728235,0.00034417643883995696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026100046612030072,0.009579577547712133,0.014111233992438235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620807,0.003962070953348316,0.0009272932018474781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003343875485449997,0.009778728310391584,0.014021797203693684,0.016663177839259226,0.014330894937642844,0.013235002971823095,0.011773813684063434,0.009272932018474782,0.008092740670668898,0.00581665735704327,0.0038215719833714244,0.001545488669745797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032314763094684843,0.008542337374594951,0.01211101121200797,0.014415194319628977,0.016044982371360907,0.014555693289605867,0.013375501941799988,0.012841605855887802,0.011380416568128139,0.008148940258659657,0.004327368275288232,0.0005057962919168061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031471769274823494,0.009778728310391584,0.013909398027712171,0.016691277633254606,0.016101181959351663,0.014583793083601245,0.01334740214780461,0.011942412448035702,0.010256424808313014,0.007446445408775202,0.004636466009237391,0.0007867942318705873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003119077133486972,0.009778728310391584,0.014218495761661332,0.01694417577921301,0.018545864036949564,0.016691277633254606,0.015117689169513428,0.01393749782170755,0.011942412448035702,0.00868283634457184,0.004776964979214282,0.0008429938198613437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034843744554268873,0.010003526662354609,0.014302795143647466,0.017225173719166792,0.017028475161199142,0.015595385667434859,0.01435899473163822,0.01286970564988318,0.011099418628174358,0.008148940258659657,0.004608366215242013,0.0012925905237873936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029223785755193243,0.009244832224479402,0.013403601735795365,0.016241680929328553,0.01826486609699578,0.017084674749189902,0.015595385667434859,0.014021797203693684,0.011942412448035702,0.008598536962585708,0.004720765391223524,0.0007586944378752093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00283807919353319,0.009357231400460915,0.01360030029376301,0.016269780723323933,0.01744997207112982,0.016213581135333176,0.014920990611545785,0.013375501941799988,0.011324216980137384,0.008092740670668898,0.0037091728073899125,0.00022479835196302498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002360382695611762,0.00893573449053024,0.013263102765818475,0.015792084225402507,0.01736567268914368,0.016297880517319313,0.014920990611545785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620808,0.006129655805656365,0.0015518115963687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004927001818470622,0.014276666686592042,0.020057164883065446,0.02331596923543972,0.0201735507527931,0.01815619567751379,0.015983659442597612,0.013423170308589256,0.011910154002129776,0.008806530809392374,0.005702907616654974,0.0024053079743714856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0044614583395600135,0.012336902191131165,0.017302699299511008,0.020406322492248406,0.022656449306983024,0.02044511778215763,0.018854510895879705,0.018544148576605968,0.016177635892143702,0.011754972842492906,0.006440018124930107,0.0009698822477304377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0046942300790153175,0.014237871396682823,0.019863188433519363,0.023471150395076593,0.02285042575652911,0.020406322492248406,0.01881571560597049,0.0177294474885124,0.015207753644413262,0.011173043493854642,0.006789175734113063,0.0014354257266410476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045778442092876655,0.01404389494713674,0.020057164883065446,0.023587536264804247,0.02583766307953886,0.023432355105167373,0.020561503651885277,0.01943644024451797,0.016875951110509615,0.012142925741585079,0.006983152183659151,0.001590606886277918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005043387688198275,0.014276666686592042,0.02001836959315623,0.023820308004259553,0.023354764525348935,0.021376204739978845,0.019358849664699536,0.01800101451787692,0.015362934804050129,0.011367019943400732,0.0066727898643854115,0.002133740945006963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0043838677597415774,0.01350076088840769,0.019281259084881104,0.022811630466619895,0.0252557337309006,0.023199583365712064,0.021027047130795888,0.01959162140415484,0.01675956524078196,0.012026539871857428,0.006750380444203845,0.0013578351468226124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00418989131019549,0.013423170308589256,0.01920366850506267,0.022811630466619895,0.02444103264280703,0.022268496407890845,0.02044511778215763,0.019397644954608755,0.01648799821141744,0.011987744581948208,0.005586521746927321,0.00046554347891061013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620809,0.002405376182398666,0.0006089559955439662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019334352858520923,0.005602395159004489,0.00791642794207156,0.009240907232379686,0.00791642794207156,0.007170456847530201,0.006241798954325654,0.005237021561678109,0.004628065566134144,0.0033949296751576113,0.002207465483846878,0.0009286578932045484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017507484871889028,0.004795528464908734,0.006744187650649426,0.007992547441514555,0.008875533635053307,0.008007771341403154,0.0073835914459705896,0.007216128547195999,0.006317918453768649,0.004597617766356944,0.0025423912813960585,0.00038059749721497887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018420918865204973,0.005602395159004489,0.007840308442628566,0.009301802831934084,0.009058220433716497,0.008083890840846151,0.0074140392457477874,0.0069420983492012155,0.00593732095655367,0.004384483167916556,0.00269463028028205,0.0005632842958781686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018116440867432997,0.005526275659561494,0.00791642794207156,0.009332250631711283,0.010291356324693027,0.009332250631711283,0.008190458140066343,0.007657621643965374,0.006622396451540632,0.004765080665131536,0.0027555258798364476,0.0006394037953211645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00197910698551789,0.005602395159004489,0.00790120404218296,0.009454041830820076,0.009210459432602488,0.008464488338061129,0.007611949944299578,0.007079113448198607,0.0060286643558852635,0.004475826567248152,0.002633734680727654,0.0008220905939843541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017050767875231051,0.005297917161232505,0.007596726044410978,0.009042996533827898,0.010017326126698244,0.009240907232379686,0.008297025439286537,0.007688069443742574,0.006561500851986235,0.004719408965465738,0.0026794063803934516,0.0005328364961009704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016441811879687083,0.005282693261343906,0.007596726044410978,0.009058220433716497,0.009651952529371862,0.008829861935387512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620810,0.00318376303099198,0.0007796970688143622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002642306733204228,0.007558729917117013,0.010850784207666542,0.012821685131613957,0.011370582253542785,0.010395960917524831,0.009313048321949327,0.007407122153736443,0.006454159069629998,0.004656524160974664,0.00309713002334594,0.0012778368627790937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123572217351673,0.006670741588745102,0.009378023077683859,0.011153999734427685,0.012518469604852818,0.011435557009277317,0.010699176444285972,0.010244353154144263,0.008966516291365165,0.0064108425658069785,0.0034436620539300996,0.0004548232901417113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025123572217351673,0.007667021176674563,0.010850784207666542,0.01297329289499453,0.012648419116321878,0.011283949245896744,0.01046093567325936,0.00961626384871047,0.008100186214904763,0.005912702771842248,0.0036169280692221807,0.0006714058092568121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024690407179121477,0.007580388169028522,0.011002391971047111,0.01310324240646359,0.014337762765419666,0.01292997639117151,0.011608823024569396,0.010937417215312583,0.009334706573860839,0.0067357163444796316,0.0037468775806912416,0.0007147223130798323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027072814889387586,0.0077753124362321124,0.011132341482516173,0.013384799681313219,0.013211533666021139,0.012128621070445635,0.011175657986339191,0.01002777063502916,0.008641642512692517,0.006302551306249429,0.0036169280692221807,0.0010829125955755033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002295774702620067,0.0071255648788868114,0.010309327909878794,0.012496811352941308,0.014077863742481543,0.01308158415455208,0.012063646314711107,0.010959075467224093,0.009204757062391778,0.006670741588745102,0.0037035610768682216,0.000649747557345302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022307999468855364,0.007342147398001912,0.01052591042899389,0.01262676086441037,0.01368801520807436,0.012648419116321878,0.011673797780303925,0.010699176444285972,0.008901541535630638,0.006454159069629998,0.0029455222599653686,0.00019492426720359055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018842679163013755,0.006973957115506241,0.010309327909878794,0.012301887085737716,0.01340645793322473,0.012648419116321878,0.011327265749719763,0.01046093567325936,0.009053149299011208,0.006432500817718489,0.003508636809664631,0.0003898485344071811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021008504354164763 +2620811,0.0047475227364643414,0.0012540626096320903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003821905096021609,0.010987977151062128,0.01540705491833711,0.01791518013760129,0.0157056412539638,0.014063416408017015,0.012480908829195569,0.010450521746934087,0.009226317770864665,0.006897344352976497,0.004508653667962992,0.0019109525480108045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034636014932695833,0.00961448000717936,0.013436385103200969,0.015825075788214474,0.017616593801974608,0.015914651688902486,0.014600871812145052,0.014451578644331707,0.012510767462758237,0.009136741870176662,0.005016250438528361,0.0007763244726293893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003642753294645596,0.010958118517499456,0.015287620384086436,0.018064473305414636,0.017586735168411936,0.01573549988752647,0.014451578644331707,0.013705112805264989,0.011794160257254185,0.008659003733173957,0.005225260873467043,0.0011346280753814155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035531773939575903,0.010808825349686114,0.01540705491833711,0.018154049206102647,0.01985599131917477,0.017974897404726627,0.01573549988752647,0.014929316781334412,0.012988505599760938,0.00940546957224068,0.005404412674843057,0.0012540626096320903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038816223631469465,0.011017835784624796,0.01540705491833711,0.018333201007478657,0.018004756038289303,0.016422248459467853,0.014899458147771742,0.013854405973078333,0.011764301623691515,0.008748579633861968,0.005135684972779038,0.001701942113072123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003403884226144246,0.010420663113371418,0.014809882247083737,0.017497159267723935,0.019437970449297407,0.017795745603350614,0.0161833793909665,0.015138327216273088,0.0129287883326356,0.009315893671552672,0.005225260873467043,0.0011047694418187463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003254591058330902,0.010331087212683413,0.014720306346395727,0.017556876534849268,0.01890051504516936,0.01716871429853457,0.01573549988752647,0.015018892682022415,0.012779495164822253,0.009286035037990003,0.004329501866586979,0.0003583036027520259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027768529213282,0.009942924976368717,0.014451578644331707,0.01722843156565991,0.018751221877356016,0.016750693428657207,0.0152279031169611,0.014630730445707724,0.012689919264134248,0.009196459137301998,0.00504610907209103,0.0007166072055040518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620812,0.005958714980510126,0.0014316393134991856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004643154530267629,0.013465148137776124,0.0200042574345697,0.02426048242064836,0.022519299471798,0.019849485616894116,0.017876144941530375,0.014200314271735166,0.012343052459628114,0.009015458379602981,0.006152179752604608,0.0025924279460660935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004449689758173145,0.01214958768753363,0.017837451987111473,0.02193890515551455,0.024570026055999537,0.021435896748068888,0.01953994198154294,0.019036933574097286,0.016328426764774497,0.011607886325669071,0.006229565661442403,0.0007351661339590414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004488382712592041,0.013735998818708406,0.0200429503889886,0.02429917537506726,0.024144403557391673,0.021126353112717714,0.01895954766525949,0.017527908351760303,0.014742015633599724,0.010988799054966724,0.0066938811144691655,0.0011220956781480102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0043723038493353504,0.013581227001032816,0.020120336297826395,0.024647411964837333,0.026272516050431002,0.023215772651338142,0.021706747429001163,0.02015902925224529,0.01690882108105795,0.012072201778695836,0.006771267023306959,0.0011607886325669073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049140052111999065,0.014045542454059581,0.020468572887596466,0.024724797873675125,0.025653428779728652,0.023409237423432632,0.020855502431785435,0.017760066078273684,0.01516763813220759,0.011104877918223413,0.006461723387955784,0.002089419538620433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004062760213984176,0.01280736791265488,0.018804775847583898,0.023486623332270425,0.026582059685782183,0.023680088104364914,0.02193890515551455,0.02015902925224529,0.017063592898733538,0.012265666550790321,0.0066938811144691655,0.0010834027237291136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004024067259565278,0.01303952563916826,0.019462556072705146,0.02360270219552711,0.026349901959268795,0.023641395149946013,0.021590668565744476,0.01953994198154294,0.016483198582450086,0.011801351097763556,0.005339627709807775,0.00019346477209448455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003366287034444031,0.012304359505209216,0.018843468802002796,0.02309969378808146,0.02615643718717431,0.02317707969691925,0.021087660158298813,0.01992687152573191,0.01675404926338236,0.011646579280087969,0.006539109296793577,0.0008512449972157321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036758306697952073 +2620813,0.007412890908465441,0.001929983431789819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005395180957048813,0.015527593973945363,0.023028211402037608,0.028291802579646207,0.026317955888042983,0.022633442063716966,0.020396415813233315,0.01649258568984027,0.014387149218796833,0.010658772134657407,0.007281301129025227,0.003070428186938348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0050442748785415725,0.014036243140289591,0.020352552553419907,0.02522137439270786,0.028730435177780265,0.02561614373102851,0.023159801181477833,0.022150946205769517,0.018992791499204353,0.01381692684122257,0.007500617428092252,0.0010965814953351246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005307454437422002,0.015878500052452605,0.023379117480544855,0.028204076060019394,0.027940896501138967,0.024212519416999548,0.021975493166515897,0.0202648260337931,0.017238261106668158,0.013071251424394682,0.007895386766412896,0.001535214093469174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005175864657981788,0.0158346367926392,0.02324752770110464,0.028511118878713236,0.030572692089943267,0.027063631304870873,0.02508978461326765,0.023072074661851016,0.019343697577711594,0.014123969659916401,0.008070839805666516,0.001622940613095984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005789950295369458,0.01649258568984027,0.023773886818865497,0.028686571917966856,0.029388384074981337,0.026624998706736822,0.024212519416999548,0.020528005592673527,0.01772075696461561,0.012983524904767871,0.007719933727159276,0.002587932328990894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004781095319661144,0.015045098115997906,0.021800040127262277,0.027326810863751303,0.030792008389010292,0.02789703324132556,0.02522137439270786,0.023335254220731454,0.01947528735715181,0.014387149218796833,0.007895386766412896,0.001491350833655769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004824958579474547,0.015352140934691741,0.02250185228427675,0.027326810863751303,0.03052882883012986,0.02763385368244514,0.024870468314200624,0.022633442063716966,0.018992791499204353,0.013992379880476186,0.006404035932757127,0.0004386325981340497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004035419902833258,0.014562602258050453,0.02210708294595611,0.026800451745990442,0.030484965570316457,0.02684431500580385,0.024212519416999548,0.022940484882410805,0.019255971058084787,0.013904653360849376,0.00785152350659949,0.0012720345345887442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004342462721527092 +2620814,0.011653952750034892,0.0031319998015718778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008958976176589323,0.024910324003199587,0.03649143954854676,0.0442850204501326,0.04071599742043441,0.03634576513917132,0.0326310677000977,0.02571153325476448,0.02265237065788032,0.016461208259424282,0.011216929521908586,0.004661581100013956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008303441334399862,0.02236102183912945,0.03131999801571877,0.038312369665739705,0.04384799722200628,0.03925925332668004,0.0370741371860485,0.035981579115732736,0.030882974787592464,0.022433859043817173,0.012236650387536635,0.0019666045265683877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008667627357838452,0.0257843704594522,0.03736548600479938,0.04515906690638521,0.04406650883606944,0.03925925332668004,0.035908741911045004,0.03328660254228716,0.027969486600083745,0.02083144054068737,0.012673673615662942,0.0026949765734455683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008521952948463014,0.02571153325476448,0.03729264880011165,0.04537757852044836,0.04938362477827286,0.04370232281263084,0.04035181139699581,0.037511160414174814,0.03168418403915737,0.02359925431882066,0.013183534048476974,0.0028406509828210053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009323162200027912,0.026585579711017094,0.03816669525636427,0.04639729938607641,0.045523252929823795,0.04180855549075018,0.03794818364230112,0.03365078856572575,0.029207719079774947,0.021486975382876836,0.012673673615662942,0.004078883462512213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077935809015858325,0.023744928728196096,0.033869300179788904,0.04275543915169051,0.04850957832202024,0.04494055529232206,0.040861671829809834,0.037875346437613394,0.03153850962978193,0.023089393886006625,0.013037859639101534,0.0026221393687578505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077935809015858325,0.0249831612078873,0.03605441632042045,0.043556648403255405,0.04807255509389394,0.043993671631381716,0.04013329978293266,0.03729264880011165,0.030810137582904747,0.022870882271943477,0.010634231884406839,0.000874046456252617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006555348421894627,0.02367209152350838,0.035398881478230976,0.04217274151418876,0.046979997023578156,0.043775160017318564,0.03925925332668004,0.03700129998136078,0.03117432360634333,0.02279804506725576,0.012746510820350663,0.0019666045265683877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007283720468771808 +2620815,0.0033868776995256127,0.0007526394887834694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002634238210742143,0.0077477594433592424,0.011311728787304494,0.013813148264731907,0.0124406880204797,0.01115677359843731,0.010271315376339112,0.007769895898911699,0.006906574132365954,0.005047111865959736,0.0032761954217633365,0.001328187333147299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002545692388532323,0.006818028310156135,0.009850722720842467,0.01195368599832569,0.013458964975892631,0.01182086726501096,0.0111125006873324,0.01075831739849312,0.009407993609793368,0.00661880021018404,0.003541832888392797,0.0003984561999441896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002612101755189688,0.008035533365541159,0.011599502709486412,0.013791011809179455,0.013525374342549995,0.011931549542773234,0.010846863220702942,0.009872859176394922,0.008433989565485349,0.00622034401023985,0.0038296068105747125,0.0006419572110211945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025014194774274127,0.007836305265569063,0.011533093342829044,0.014056649275808913,0.01498638040901202,0.013392555609235263,0.012639916120451794,0.011621639165038864,0.009717903987527738,0.0069729834990233195,0.0038738797216796212,0.0006419572110211945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002811329855161782,0.008190488554408343,0.011798730809458507,0.014145195098018733,0.014255877375781007,0.013171191053710715,0.01208650473164042,0.010337724742996478,0.009009537409849179,0.006463845021316856,0.0037410609883648917,0.0010846863220702941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022800549219028628,0.007349303243415054,0.010625498665178392,0.0133261462425779,0.014919971042354657,0.013813148264731907,0.012750598398214068,0.011688048531696233,0.009629358165317918,0.007061529321233138,0.003896016177232077,0.0005976842999162844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023243278330077736,0.007659213621149425,0.011178910053989766,0.0133261462425779,0.014676470031277653,0.013658193075864727,0.012462824476032154,0.011134637142884856,0.009385857154240913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620816,0.008209273837860995,0.0020392463673667444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063268925756763085,0.01814406383272462,0.02656249114416169,0.03241878840429183,0.029542928142620783,0.02656249114416169,0.02405264946124878,0.018457794043088734,0.016366259307327973,0.011712594520260274,0.007895543627496882,0.003241878840429184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005960873996918176,0.016000240728569842,0.022745440251398304,0.02797427709080021,0.03168675124677557,0.028340295669558344,0.026667067880949736,0.025778165618251407,0.022431710041034187,0.016000240728569842,0.00862758078501315,0.0011503441046684197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006222315838888271,0.018771524253452847,0.02724223993328394,0.03283709535144398,0.032000481457139685,0.028444872406346376,0.02583045398664543,0.023738919250884664,0.02013102183169735,0.014849896623901421,0.009150464468953338,0.00172551615700263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006013162365312195,0.01856237077987678,0.027189951564889923,0.033203113930202116,0.03576524398150906,0.03168675124677557,0.029699793247802843,0.027503681775254037,0.023111458830156438,0.016836854622874143,0.009307329574135395,0.00172551615700263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0066406227860404225,0.019346696305787062,0.027869700354012174,0.033830574350930356,0.03346455577217221,0.03090242572086528,0.028183430564376284,0.024366379671612894,0.021333654304759787,0.015477357044629646,0.009045887732165301,0.002771283524883012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005490278681372005,0.017150584833238263,0.024680109881977007,0.03132073266801744,0.03545151377114494,0.032523365141079875,0.03006581182656097,0.027451393406860015,0.022850016988186343,0.016732277886086104,0.009359617942529415,0.001620939420214592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005542567049766024,0.018091775464330603,0.026301049302191598,0.03168675124677557,0.034876341718810724,0.03220963493071576,0.02928148630065068,0.02671935624934375,0.022222556567458113,0.016209394202145917,0.007477236680344729,0.0004705953155461717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0046536647870676975,0.017098296464844242,0.02583045398664543,0.03090242572086528,0.03477176498202269,0.03194819308874566,0.028967756090286574,0.02692850972291983,0.022745440251398304,0.016209394202145917,0.008993599363771282,0.0011503441046684197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00512426010261387 +2620817,0.004886844624456468,0.001085965472101437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00380087915235503,0.011179056330455968,0.016417242725298195,0.019930660429155783,0.018046190933450352,0.016097841115856597,0.014724414195257718,0.011274876813288448,0.009997270375522053,0.007346237017156781,0.004854904463512308,0.001980289978537915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036731185085783903,0.009901449892689571,0.014436952746760278,0.01756708851928795,0.01961125881971419,0.017215746748902194,0.01587425998924748,0.015554858379805877,0.013510688079379643,0.009518167961359653,0.005078485590121425,0.0005749228969948783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037369988304667098,0.01153039810084173,0.016640823851907315,0.019898720268211625,0.01954737849782587,0.017119926266069712,0.015554858379805877,0.014309192102983639,0.012169201319724928,0.009007125386253095,0.005493707682395506,0.0008943245064364774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036092381866900695,0.011274876813288448,0.016640823851907315,0.02025006203859738,0.02152766847636378,0.019068276083663467,0.01801425077250619,0.016672764012851476,0.013989790493542044,0.009901449892689571,0.005557588004283824,0.0009262646673806374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040564004399083085,0.011753979227450848,0.016960225461348916,0.0203139423604857,0.020697224291815624,0.019100216244607626,0.017215746748902194,0.014788294517146038,0.012839944699552287,0.009230706512862214,0.005334006877674705,0.0015970080472079958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033217767381926305,0.01066801375534941,0.015427097736029238,0.01925991704932843,0.02152766847636378,0.019802899785379142,0.01826977206005947,0.016768584495683952,0.013893970010709562,0.01012503101929869,0.005557588004283824,0.0008304441845481576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003353716899136791,0.01095547520384685,0.01612978127680076,0.019227976888384266,0.021304087349754662,0.01957931865877003,0.01795037045061787,0.016002020633024118,0.013510688079379643,0.009645928605136293,0.0043758020493499085,0.00015970080472079955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.388032188831982e-05,6.388032188831982e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620818,0.007859946988289814,0.0021230891290208117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005601341531884697,0.01603609874047635,0.02367018518312565,0.02900049406024173,0.027012921258605226,0.023444324637485137,0.020959858635439504,0.0170298851412946,0.014816451794017586,0.01115751095464129,0.007543742224393099,0.003162047638967167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005194792549731775,0.014545419139248967,0.02100503074456761,0.02597396274865887,0.02972324780629137,0.026696716494708513,0.024121906274406673,0.022947431437076008,0.01960469536159644,0.014455074920992765,0.007859946988289814,0.0012648190555868668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0054658252045003885,0.016352303504373066,0.02398638994702237,0.02900049406024173,0.028684289296345016,0.025070520566096828,0.0227215708914355,0.02109537496282382,0.01779781099647234,0.013596804847558817,0.008176151752186533,0.0017165401468678912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053754809862441855,0.016307131395244964,0.023896045728766163,0.029271526715010352,0.031620476389671665,0.02800670765942348,0.02579327431214646,0.02357984096486945,0.019875728016365054,0.014726107575761382,0.008447184406955145,0.0018972285833803002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005962718404909516,0.016984713032166494,0.024347766820047186,0.029497387260650865,0.029994280461059987,0.027103265476861427,0.024528455256559594,0.021230891290208123,0.018114015760369057,0.013506460629302613,0.008085807533930327,0.0027554986568142452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049689320040912635,0.01549403343093912,0.02245053823666689,0.028097051877679687,0.03166564849879978,0.028955321951113625,0.026019134857786973,0.024031562056150476,0.020011244343749356,0.014861623903145686,0.008176151752186533,0.0017165401468678912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049689320040912635,0.015810238194835832,0.023128119873588423,0.02814222398680779,0.03134944373490306,0.028548772968960703,0.02556741376650595,0.023444324637485137,0.019559523252468333,0.014545419139248967,0.006730644260087255,0.0005420653095372287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004246178258041623,0.015087484448786197,0.0227215708914355,0.027509814459014355,0.031213927407518747,0.027735675004654868,0.024889832129584417,0.023625013073997548,0.019740211688980745,0.014500247030120865,0.008221323861314635,0.0014003353829711743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045172109128102395 +2620819,0.003665087923988884,0.0010180799788858013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002565561546792219,0.007370899047133202,0.010791647776189493,0.013153593327204552,0.012257682945785046,0.010730562977456346,0.009427420604482518,0.007818854237842954,0.006780412659379437,0.005253292691050734,0.0035021951273671564,0.0014863967691732699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023619455510150585,0.006719327860646288,0.00973284459814826,0.011952258952119306,0.013662633316647453,0.01229840614494048,0.011056348570699799,0.010465862182946038,0.008898019015461904,0.00665824306191314,0.003644726324411168,0.0006108479873314808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002504476748059071,0.007431983845866348,0.010893455774078074,0.013112870128049119,0.012970338931005106,0.011422857363098688,0.01030296938632431,0.009671759799415112,0.008103916631930979,0.006251011070358819,0.0037465343222997482,0.0008348255826863571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002443391949325923,0.007411622246288635,0.010852732574922643,0.013255401325093135,0.014334566102712082,0.012746361335650233,0.01162647335887585,0.01064911657914548,0.008999827013350484,0.006760051059801721,0.0038890655193437613,0.0009366335805749371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027284543434139474,0.007717046239954375,0.010995263771966652,0.01327576292467085,0.013560825318758874,0.012155874947896467,0.010974902172388936,0.009651398199837397,0.00814463983108641,0.006169564672047955,0.0037058111231443175,0.0013235039725515416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023008607522819104,0.007106198252622892,0.01030296938632431,0.012787084534805664,0.014375289301867511,0.013112870128049119,0.011769004555919862,0.010873094174500357,0.009081273411661346,0.006780412659379437,0.0037261727227220326,0.0008348255826863571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022804991527041944,0.007187644650933756,0.010506585382101467,0.012766722935227947,0.014212396505245785,0.012929615731849677,0.011504303761409554,0.01064911657914548,0.008898019015461904,0.00665824306191314,0.0031153247353905523,0.0002647007945103083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019547135594607384,0.006882220657268016,0.01030296938632431,0.01246129894156221,0.014151311706512636,0.012502022140717639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0361599577716025e-05 +2620820,0.0029430538518731755,0.0008287910272516414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021142628246215347,0.005919935908940295,0.008727676940037692,0.010622056430898587,0.00981017950624392,0.008693848734843749,0.007763573092010275,0.006224389755685797,0.005480169241419018,0.0041101269310642626,0.0027739128259034536,0.001167073079191087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019451217986518117,0.005361770523240211,0.007628260271234496,0.009353498736125669,0.010723541046480422,0.009624124377677222,0.00891373206860439,0.008575450016664942,0.007340720527085967,0.0054294269336280995,0.0029768820570671203,0.0005074230779091683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020635205168306175,0.006105991037506992,0.008879903863410444,0.010689712841286475,0.010520571815316756,0.009336584633528697,0.008423223093292192,0.007932714117979998,0.006647242320610105,0.005074230779091682,0.0030614525700519823,0.0006934782064758634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002029692311636673,0.0061229051401039646,0.008862989760813471,0.010791197456868311,0.01168764489450784,0.010385258994540977,0.009556467967289336,0.008812247453022556,0.0074422051426678015,0.0055985679595978236,0.00319676539082776,0.0007611346168637524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022326615428003406,0.00632587437126763,0.009032130786783195,0.010909596175047116,0.010858853867256199,0.009844007711437864,0.008896817966007416,0.007966542323173943,0.006782555141385881,0.005091144881688654,0.0030614525700519823,0.0010486743610122811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018774653882639228,0.005716966677776629,0.00818642565693458,0.01026686027636217,0.011569246176329038,0.010672798738689506,0.009641038480274196,0.008930646171201363,0.0074422051426678015,0.005547825651806907,0.003095280775245926,0.0006934782064758634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018774653882639228,0.005936850011537268,0.008592364119261914,0.010368344891944006,0.011467761560747202,0.01048674361012281,0.009454983351707504,0.008829161555619528,0.007323806424488995,0.005480169241419018,0.0025709435947397865,0.00023679743635761184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016068397467123663,0.005666224369985711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620821,0.002919868507872857,0.0007477712032357316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002172097304637125,0.00621362261736358,0.009186903354038989,0.011269980277338526,0.010397580540230173,0.009186903354038989,0.008296699540663118,0.006534095990178893,0.005750716634408127,0.004130545694064041,0.0028486522028027873,0.001192873109923667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002047468770764503,0.0055192636429304,0.007958422091580286,0.00988126232847217,0.011234372124803492,0.010059303091147343,0.00931153188791161,0.00895545036256126,0.007709165023835042,0.005554871795465435,0.0030088888892104435,0.0004272978304204181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021186850758345734,0.006391663380038754,0.009382748192981683,0.011323392506141077,0.011127547667198387,0.009756633794599547,0.008830821828688641,0.008189875083058013,0.006943589744331793,0.0051987902701150866,0.0031691255756181,0.0006231426693631096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002083076923299538,0.0063738593037712355,0.009347140040446645,0.011448021040013698,0.012320420777122055,0.010860486523185624,0.010166127548752445,0.009382748192981683,0.007887205786510218,0.005768520710675645,0.003240341880688171,0.0006409467456306271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023145299147772644,0.006640920447783997,0.009560788955656855,0.011608257726421359,0.011661669955223912,0.010646837607975416,0.009738829718332028,0.008314503616930636,0.007264063117147107,0.00530561472772019,0.003115713346815548,0.001014832347248493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019050361606243636,0.005946561473350817,0.008581564760943397,0.010860486523185624,0.012284812624587018,0.011180959896000939,0.010255147930090034,0.009453964498051751,0.007887205786510218,0.005768520710675645,0.003204733728153136,0.000587534516828075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019228402368918812,0.006178014464828545,0.009044470743898848,0.010949506904523214,0.012142380014446877,0.01110974359093087,0.010094911243682378,0.009222511506574023,0.007655752795032489,0.005626088100535503,0.0025993951350575433,0.0001780407626751742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016201709403440856,0.005893149244548267,0.00890203813375871,0.01070024983677797,0.012124575938179361,0.01091389875198818,0.009863458252204652,0.009275923735376576,0.007815989481440149,0.005608284024267988,0.0031513214993505833,0.0004807100592229703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001744799474216707 +2620822,0.0017693572391980195,0.00043155054614585836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013054404020912216,0.0037760672787762605,0.005642523390857099,0.006991118847562907,0.006602723356031634,0.005664100918164391,0.005070718917213835,0.004034997606463775,0.003484770660127807,0.0025893032768751507,0.0017585684755443733,0.0007336359284479592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012191302928620498,0.0034092493145522805,0.005005986335291957,0.0062466941554613,0.007174527829674896,0.006257482919114947,0.005620945863549805,0.0053620155358622915,0.004563647025492452,0.003301361678015817,0.0017909347665053124,0.00022656403672657565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001283862874783929,0.0038839549153127256,0.005718044736432624,0.006969541320255614,0.006980330083909261,0.0060632851733493105,0.005415959354130522,0.004887309935101847,0.004153674006653887,0.0031395302232111195,0.0019096111666954234,0.0003452404369166867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001240707820169343,0.0038407998606981393,0.005707255972778978,0.007055851429484785,0.007541345793898875,0.006678244701607159,0.006171172809885776,0.005642523390857099,0.00466074589837527,0.003398460550898635,0.0019203999303490696,0.00035602920057033324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013917505113203931,0.004002631315502837,0.005815143609315442,0.007088217720445726,0.007347148048133238,0.006667455937953511,0.005976975064120139,0.004962831280677372,0.004239984115883059,0.0031071639322501803,0.0018340898211198983,0.0006041707646042017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011436089472865246,0.0036466021149325033,0.005329649244901351,0.006721399756221745,0.0076384446667816935,0.006818498629104561,0.006149595282578481,0.005664100918164391,0.00472547848029715,0.003484770660127807,0.0019096111666954234,0.00032366290960939383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011543977109401712,0.0037221234605080283,0.005513058227013341,0.006732188519875391,0.0076168671394744,0.0,0.0,0.0,0.0,0.0,1.078876365364646e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.078876365364646e-05,3.2366290960939385e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620823,0.004338130621175865,0.0010567241256710443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033926406139965096,0.009760793897645696,0.014432626874296629,0.017574990721686834,0.016184564240540725,0.014293584226182019,0.012930966274658829,0.01003887919387492,0.00892653800895803,0.0065071959317637975,0.00442155621004463,0.0018353629551128663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003225789436258976,0.008731878301597575,0.012708498037675452,0.015600585118459359,0.01754718219206392,0.015378116881475983,0.014043307459575717,0.01370960510410065,0.011874242148987786,0.008425984475745432,0.004532790328536321,0.0005561705924584442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003309215025127744,0.01003887919387492,0.014599478052034159,0.01754718219206392,0.01735252248470346,0.01521126570373845,0.013570562455986038,0.012625072448806684,0.01067847537520213,0.007981048001778675,0.00489430121363431,0.0008620644183105887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031979809066360544,0.009899836545760307,0.01457166952241124,0.01785307601791606,0.018937608673210028,0.01674073483299917,0.01571181923695105,0.014599478052034159,0.012263561563708697,0.008787495360843417,0.004922109743257232,0.0008620644183105887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035873003213569648,0.010316964490104141,0.014877563348263385,0.017936501606784828,0.018353629551128663,0.016796351892245015,0.015100031585246757,0.012847540685790061,0.011151220378791809,0.008092282120270362,0.004727450035896776,0.0015016605996377992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029477041400297545,0.009343665953301862,0.013570562455986038,0.016991011599605473,0.019076651321324637,0.017130054247720086,0.015906478944311506,0.014599478052034159,0.012263561563708697,0.00892653800895803,0.004922109743257232,0.000806447359064744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029755126696526767,0.009593942719908164,0.014126733048444482,0.016991011599605473,0.018909800143587105,0.01710224571809716,0.015628393648082283,0.01409892451882156,0.011902050678610707,0.008592835653482962,0.003893194147209109,0.0001946597073604555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002474959136440077,0.009009963597826798,0.013765222163346495,0.01665730924413041,0.018854183084341263,0.016685117773753325,0.01521126570373845,0.014432626874296629,0.012207944504462854,0.00853721859423712,0.004755258565519699,0.0006395961813272109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620824,0.004714663420130149,0.0010830983532731425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036952767346966034,0.01073541603097203,0.016087196129498146,0.019527626192836364,0.01825339283604443,0.01618276363125754,0.01449440443350823,0.01169109104856598,0.009907164349057274,0.007263130133714015,0.004969510091488535,0.00207062920478689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035678533990174104,0.009779741013378081,0.01452626026742803,0.018030401998605842,0.02013288703731253,0.017648131991568262,0.016055340295578348,0.015354511949342784,0.012997180239277711,0.009270047670661308,0.004969510091488535,0.0005415491766365713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003504141731177814,0.010799127698811625,0.015959772793818952,0.01959133786067596,0.01962319369459576,0.017202150316691086,0.015450079451102178,0.014112134426470652,0.011754802716405577,0.008696642660104939,0.005288068430686519,0.0008601075158345543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003440430063338217,0.010799127698811625,0.01615090779733774,0.01987804036595414,0.02131155289234507,0.018890509514440396,0.01758442032372867,0.01615090779733774,0.013475017748074684,0.009652317677698889,0.005383635932445913,0.0008919633497543526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003854555904295595,0.011053974370170014,0.016278331133016934,0.01990989619987394,0.020992994553147085,0.019145356185798785,0.016851736143573305,0.014207701928230046,0.01185037021816497,0.008824065995784131,0.00509693342716773,0.0016246475299097139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032174392258996288,0.010066443518656265,0.015067809444064603,0.018890509514440396,0.021693822899382643,0.01924092368755818,0.017775555327247457,0.016119051963417945,0.013793576087272667,0.00981159684729788,0.005319924264606317,0.0007963958479949578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031218717241402343,0.01019386685433546,0.015513791118941776,0.019145356185798785,0.021534543729783653,0.01924092368755818,0.017552564489808867,0.015768637790300164,0.013252026910636094,0.009429326840260299,0.0042049700774133775,9.556750175939494e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026440342153432597,0.009716029345538483,0.015004097776225004,0.018667518677001813,0.02127969705842527,0.01898607701619979,0.017138438648851485,0.015959772793818952,6.371166783959661e-05,3.1855833919798306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620825,0.002993751807974794,0.0008607036447927533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024137123951796773,0.0066985196703436,0.009411607246320758,0.010964615996707684,0.009767115273517766,0.00873801308952643,0.007839887547133993,0.006604964926344389,0.005819105076751006,0.004415783916762821,0.0028814861151757395,0.0012162116719897599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002189181009581568,0.005968792667149745,0.008270239369530369,0.009767115273517766,0.010983326945507525,0.009935513812716349,0.009056099219123752,0.009056099219123752,0.007746332803134779,0.005725550332751795,0.0031808612959732187,0.0005613284639952738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023014467023806232,0.006717230619143443,0.009411607246320758,0.01109559263830658,0.010889772201508312,0.009785826222317608,0.00888770067992517,0.00858832549912769,0.007390824775937772,0.0054074642031544705,0.003255705091172588,0.0008045707983932259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002264024804780938,0.0066985196703436,0.009449029143920444,0.011189147382305791,0.0122930933614965,0.011058170740706896,0.009785826222317608,0.009224497758322334,0.007989575137532732,0.005912659820750217,0.0034053926815713286,0.0008794145935925956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002451134292779363,0.006773363465542972,0.009486451041520126,0.011338834972704534,0.011058170740706896,0.010066490454315244,0.009018677321524067,0.008457348857528791,0.007110160543940137,0.0054074642031544705,0.003236994142372746,0.0011226569279905476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002151759111981883,0.006380433540746278,0.00898125542392438,0.01070266271350989,0.011993718180699015,0.010945905047907843,0.009898091915116662,0.00935547439992123,0.007933442291133203,0.005837816025550848,0.003311837937572116,0.000767148900793541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002058204367982671,0.006343011643146594,0.009018677321524067,0.010814928406308941,0.011769186795100908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620826,0.010419923339432313,0.0030102000758360013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007351834800599464,0.020897735141861475,0.03050721999933794,0.037859054799937404,0.03577507013205094,0.032243873889243324,0.02813379301646724,0.021997615938801552,0.01806120045501601,0.014414227286214698,0.008914823301514314,0.003531196242807617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006194065540662541,0.019508412029937163,0.02842323533145148,0.03536985089107302,0.040869254875773406,0.037338058632965784,0.032128096963249635,0.028886343035426247,0.024023712143691166,0.018466419695993927,0.01030414641343862,0.0017366538899053856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007178169411608927,0.021418731308833087,0.03085455077731902,0.03814849711492163,0.038322162503912176,0.03450152394612032,0.029812558443375787,0.02703391221952717,0.02217128132779209,0.016440323491104317,0.009609484857476468,0.0023155385198738473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007004504022618387,0.0211871774568457,0.03079666231432217,0.03826427404091533,0.04179547028372295,0.0386116048188964,0.033517420075173936,0.02819168147946409,0.02321327366173532,0.018119088918012855,0.010767254117413388,0.0030102000758360013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007699165578580543,0.021476619771829932,0.03097032770331271,0.03849582789290271,0.03803272018892795,0.034443635483123486,0.02934945073940101,0.02518148140362809,0.020897735141861475,0.016324546565110624,0.010246257950441774,0.0035890847058044637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006715061707634157,0.020376738974889858,0.029754669980378942,0.03716439324397525,0.04144813950574186,0.03843793942990587,0.03322797776018971,0.028481123794448324,0.023271162124732167,0.018003311992019162,0.009783150246467004,0.0023734269828706938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0064835078556467725,0.020087296659905624,0.02969678151738209,0.03722228170697209,0.041390251042745026,0.03809060865192479,0.03276487005621494,0.02842323533145148,0.023618492902713246,0.017945423529022318,0.008741157912523773,0.0005209961669716155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00561518091069408,0.01927685817794978,0.029060008424416778,0.03618028937302886,0.04115869719075764,0.037743277873943715,0.032417539278233855,0.028886343035426247,0.023676381365710087,0.018234865844006548,0.010419923339432313,0.002026096204889616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006194065540662541 +2620827,0.006866308323222954,0.0020524291183546877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004888512990990256,0.013732616646445909,0.01962868575008301,0.02369622709373139,0.021979650012925653,0.019927220894570965,0.017688207310911308,0.01432968693542182,0.012165307137884149,0.00959044151667554,0.005933385996698095,0.0025375487281476135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041794920228313635,0.012575792961555086,0.017912108669277275,0.0216811148684377,0.0249276845647442,0.022949889232511508,0.020076488466814937,0.018807714102741138,0.015859679550922587,0.012202624030945143,0.006866308323222954,0.0013434081501957952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004739245418746278,0.013956518004811874,0.019777953322326992,0.02377086087985338,0.02392012845209735,0.021643797975376706,0.018882347888863126,0.01780015799009429,0.014777489652153747,0.011232384811359289,0.006605090071795995,0.0017538939738667326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0046272947395632966,0.013695299753384915,0.019777953322326992,0.02395744534515835,0.02642036028718398,0.024293297382707305,0.021345262830888754,0.018695763423558154,0.015598461299495629,0.012202624030945143,0.0072394772538328985,0.0021643797975376706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005112414349356223,0.014068468683994856,0.019927220894570965,0.02414402981046333,0.02373354398679238,0.021606481082315707,0.018546495851314182,0.016717968091325454,0.01403115179093386,0.01097116655993233,0.00682899143016196,0.002500231835086619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00440339338119733,0.013172863250530995,0.01895698167498511,0.023061839911694488,0.025860606891269063,0.02406939602434133,0.02108404457946179,0.01891966478192412,0.01563577819255662,0.012127990244823155,0.006754357644039973,0.0017538939738667326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004291442702014347,0.013135546357470001,0.019031615461107102,0.02321110748393847,0.025785973105147072,0.02384549466597537,0.02078550943497384,0.018807714102741138,0.015747728871739603,0.011904088886457187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620828,0.007375276531916576,0.002196009304447071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005303569640928774,0.014999157890751694,0.021545751666273146,0.026186375102085817,0.024363273038016556,0.02233300028484851,0.019681215464384123,0.015579235820228273,0.013093187551042908,0.010151363765840233,0.006215120672963406,0.0025274824070051186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004392018608894142,0.013880436169618275,0.019722649602203882,0.02411466821109802,0.027843740614876062,0.02581346786170802,0.022457302698307778,0.02071706890987803,0.017278035470838275,0.013134621688862666,0.00745814480755609,0.0013673265480519498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005137833089649751,0.015289196855489984,0.02179435649319168,0.02660071648028338,0.02672501889374265,0.024073234073278268,0.02117284442589534,0.019598347188744616,0.016117879611885103,0.011974465829909497,0.0069609351537190155,0.0018231020640692662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005054964814010237,0.01520632857985047,0.021877224768831197,0.026683584755922897,0.029459671989846555,0.027512267512318018,0.023866063384179483,0.02021985925604095,0.016780825817001195,0.013051753413223156,0.007831052047933893,0.0022788775800865833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005510740330027556,0.015372065131129495,0.02196009304447071,0.026973623720661196,0.026062072688626554,0.02399036579763875,0.020344161669500222,0.017982415813774126,0.014999157890751694,0.011725861002990962,0.007375276531916576,0.0025689165448248754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004847794124911458,0.01458481651255413,0.020924239598976806,0.02573059958606851,0.028796725784730453,0.026932189582841434,0.02349315614380168,0.020344161669500222,0.016739391679181443,0.012844582724124375,0.007126671704998041,0.0017816679262495103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004640623435812677,0.014377645823455349,0.021007107874616314,0.025937770275167287,0.028713857509090942,0.02660071648028338,0.02307881476560412,0.020551332358599003,0.01707086478173949,0.012968885137583644,0.006380857224242433,0.0004972096538370727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004019111368516337,0.01383900203179852,0.020468464082959485,0.02510908751877217,0.02846525268217241,0.02660071648028338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620829,0.0025371059170687747,0.0007411770094807657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018101823116164855,0.005116972046222979,0.007397516690779181,0.009065164962110902,0.00850928220500033,0.007753851791491087,0.0068273805296401304,0.005359279914707075,0.004489822268970023,0.0034920839869766853,0.002152264008299916,0.0008552042417085758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001510860827018484,0.004774890349539549,0.0068273805296401304,0.008423761780829474,0.00972082154742081,0.008965391133911569,0.007796612003576516,0.00709819520618118,0.005915162671817649,0.004518329077026976,0.0025371059170687747,0.00044185552488276426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017531686955025807,0.0052309992784507885,0.007483037114950038,0.00923620581045262,0.00927896602253805,0.008352494760687092,0.0073262496706368,0.0067133532974123205,0.005501813954991839,0.004047966744087259,0.00236606506872706,0.000598642969196003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017246618874456278,0.005216745874422312,0.007525797327035469,0.009250459214481097,0.010219690688417481,0.009521273891022143,0.008209960720402327,0.00694140776186794,0.005729868419447459,0.004475568864941546,0.002665386553325061,0.0007696838175377181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018814493317588672,0.005259506086507742,0.00755430413509242,0.009364486446708908,0.009093671770167854,0.008309734548601663,0.007069688398124228,0.006171723944330221,0.005131225450251456,0.004019459936030307,0.002522852513040299,0.0008694576457370521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016676482713317228,0.004988691409966692,0.007183715630352037,0.008922630921826142,0.010020143032018815,0.009321726234623478,0.008110186892202992,0.006969914569924893,0.0057156150154189815,0.0043900484407706905,0.002423078684840965,0.000598642969196003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015821278471608653,0.004917424389824311,0.0072122224384089904,0.009008151345996997,0.009991636223961863,0.009207699002395667,0.007981906255946707,0.007055434994095751,0.005815388843618316,0.004447062056884594,0.002180770816356869,0.00014253404028476263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013683267867337216,0.00473213013745412,0.007026928186038798,0.008680323053342045,0.009877608991734052,0.009250459214481097,0.007953399447889756,0.007083941802152704,0.005843895651675268,0.004489822268970023,0.002565612725125728,0.0004988691409966692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015251142310469602 +2620830,0.005048059258242896,0.0014583282301590588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003561686254426932,0.010152208063799606,0.014779595717188926,0.018285192424302047,0.017303625346310376,0.01564898370055298,0.013685849544569629,0.010657013989623895,0.008749969380954355,0.006955103866912436,0.004290850369506463,0.001682686419414299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029727460076319277,0.009479133496033883,0.013741939091883442,0.017107311930712035,0.019771565428118015,0.018116923782360617,0.015592894153239167,0.014050431602109394,0.01166662584127247,0.008946282796552688,0.004991969710929085,0.0008413432097071495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003477551933456218,0.010404611026711749,0.01497590913278726,0.01853759538721419,0.01862172970818491,0.016770774646829176,0.014555237527933685,0.01318104361874534,0.010797237857908417,0.00793667094490411,0.004627387653389323,0.0011498357199331045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033934176124855026,0.010292431932084126,0.014947864359130357,0.018565640160871102,0.02030441612759921,0.018818043123783244,0.016294013494661794,0.013685849544569629,0.011245954236418896,0.008806058928268164,0.005216327900184325,0.0014583282301590588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003729954896368363,0.01043265580036865,0.01503199868010107,0.018733908802812525,0.018369326745272765,0.016658595552201557,0.014190655470393922,0.012199476540753667,0.010124163290142698,0.007908626171247206,0.004963924937272182,0.0017107311930712036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032812385178578826,0.009899805100887457,0.014386968885992255,0.018004744687732995,0.020080057938343963,0.01862172970818491,0.016125744852720364,0.013769983865540346,0.011273999010075801,0.008693879833640544,0.0047395667480169415,0.0011498357199331045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031410146495733575,0.009759581232602932,0.01441501365964916,0.018060834235046806,0.020052013164687063,0.01845346106624348,0.015901386663465127,0.013826073412854155,0.011470312425674136,0.008721924607297449,0.004262805595849558,0.0002524029629121448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027203430447197835,0.009394999175063168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620831,0.0028007252141503416,0.0008136184979654624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019871067161848794,0.005679682976181979,0.00824571054668844,0.01017023122456828,0.00962260338939922,0.008715105833976203,0.007619850163638081,0.005930027129402122,0.004897357497369035,0.0038490413557596883,0.002362622946015093,0.0009074975554230158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001642883505507184,0.005319813255928024,0.0076824362019431176,0.009560017351094184,0.011030789251262522,0.010123291695839505,0.008730752343552462,0.007854547807281963,0.006493301474147441,0.004975590045250327,0.0027850787045740825,0.0004693952872877668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001940167187456103,0.00580485505279205,0.008355236113722249,0.01035798933948339,0.010404928868212166,0.0093253197074503,0.008151831489230883,0.007369506010417939,0.006023906186859674,0.004427962210081267,0.002566027570506459,0.0006258603830503558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018932276587273259,0.005789208543215791,0.008386529132874767,0.010373635849059646,0.0113437194427877,0.010561393963974753,0.009137561592535193,0.0076042036540618215,0.006242957320927299,0.004881710987792776,0.0028946042716078953,0.0008292650075417214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002080985773642433,0.005836148071944567,0.008402175642451026,0.0104675149065172,0.010201524243720799,0.009262733669145262,0.007870194316858222,0.006774938646520101,0.005601450428300683,0.004381022681352489,0.0027537856854215653,0.0009387905745755336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018306416204222904,0.005554510899571908,0.00805795243177333,0.010076352167110727,0.011218547366177627,0.010389282358635907,0.009012389515925121,0.007619850163638081,0.006242957320927299,0.00480347843991148,0.0026129670992352354,0.0006258603830503558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017524090725409961,0.005460631842114354,0.00805795243177333,0.010107645186263246,0.011187254347025109,0.010295403301178353,0.008871570929738795,0.007745022240248153,0.0063681293975373695,0.004881710987792776,0.0023782694555913525,0.00014081858618633002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015177114288971129,0.005257227217622988,0.007854547807281963,0.009747775466009292,0.011093375289567555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620832,0.0027610528297651875,0.0008471412091325005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020707896223238907,0.005694671461390698,0.008016465886420514,0.00949111910231783,0.00864397789318533,0.007985090286082274,0.007232075877964495,0.005882925063420143,0.005067159454625884,0.003843511041434494,0.0024002334258754186,0.0010510826113310657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017727214191106029,0.0051455984554714855,0.007043822275935052,0.008502787691663247,0.009789187305531119,0.009067548497751581,0.008141968287773478,0.007890963485067551,0.006635939471537921,0.005035783854287642,0.0028551796307799103,0.0005804486062574541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001976662821309168,0.0057887982624054216,0.008063529286927877,0.00974212390502376,0.00975781170519288,0.009130299698428062,0.007953714685744032,0.007561519681516024,0.006322183468155514,0.004737715651074355,0.0027610528297651875,0.0007687022082868987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019295994208018072,0.005710359261559821,0.008094904887266115,0.009695060504516394,0.010934396717876906,0.010181382309759129,0.008769480294538294,0.00787527568489843,0.006667315071876162,0.005176974055809727,0.0030120576324711135,0.000909892409808982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020864774224930113,0.0057887982624054216,0.008157656087942599,0.00991468970688408,0.009506806902486953,0.008753792494369172,0.007592895281854264,0.007043822275935052,0.005867237263251022,0.004627901049890513,0.0028551796307799103,0.0010197070109928248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018354726197870844,0.0053966032581774116,0.007561519681516024,0.009208738699273663,0.010510826113310655,0.00980487510570024,0.00865966569335445,0.007906651285236672,0.006573188270861441,0.005020096054118522,0.0029022430312872706,0.0007530144081177784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017570336189414828,0.005443666658684772,0.0077654610837145895,0.00949111910231783,0.010526513913479777,0.009695060504516394,0.008518475491832366,0.008016465886420514,0.006714378472383523,0.005067159454625884,0.00249436022689014,0.0002510048027059261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015060288162355568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620833,0.012914181076127771,0.0038958982017368695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00937901418936654,0.026621971045201948,0.03787678807244178,0.04516356063494965,0.04155624748519328,0.03852610443939793,0.033764451081719535,0.02712699488616783,0.022870365369455324,0.01767583443380617,0.010749793186273953,0.00440092204270276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007719650140478612,0.024529729418343256,0.03448591371167081,0.04141195495920302,0.04783297236576935,0.04480282931997401,0.038814689491378444,0.03636171654954412,0.03030143045795344,0.022942511632450452,0.013202766128108282,0.0024529729418343257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00909042913738603,0.027054848623172707,0.03823751938741743,0.045885023264900904,0.04624575457987654,0.04242200264113481,0.03665030160152462,0.034341621185680564,0.028497773883075256,0.021355293846557655,0.0121927184461765,0.003246581834780725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008873990348400649,0.02691055609718245,0.03838181191340769,0.046029315790891166,0.050790969148569565,0.04804941115475473,0.04177268627417866,0.03520737634162208,0.02943567530201191,0.022653926580469948,0.013707789969074175,0.004184483253717379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009739745504342173,0.02719914114916296,0.03852610443939793,0.046534339631857054,0.04458639053098862,0.04141195495920302,0.03520737634162208,0.03131147813988522,0.026261239730226316,0.02034524616462588,0.012914181076127771,0.004545214568693015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008585405296420141,0.02590050841525067,0.037011032916500264,0.04458639053098862,0.04978092146663778,0.0468950709468327,0.04090693111823714,0.035423815130607474,0.02936352903901678,0.02236534152848944,0.012553449761152136,0.003246581834780725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008224673981444504,0.025539777100275038,0.036938886653505136,0.04480282931997401,0.04956448267765241,0.04624575457987654,0.040041175962295616,0.03600098523456848,0.030084991668968056,0.022726072843465076,0.0113991095532301,0.0009379014189366538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007142480036517593,0.024529729418343256,0.03614527776055874,0.04357634284905684,0.04934804388866703,0.04595716952789603,0.03989688343630536,0.03621742402355386,0.030157137931963184,0.023014657895445583,0.013202766128108282,0.00259726546782458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007863942666468868 +2620834,0.005669004137757106,0.0016879619061861049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004108435582981273,0.01159279497833476,0.016624832359040505,0.02006445284711785,0.018567580968047157,0.01713440576468159,0.015000567128559537,0.011911278356860436,0.010000378085706358,0.007739146098174028,0.004713554002180066,0.0018790519333015132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033759238123722097,0.010732889856315422,0.015223505493527512,0.018503884292342017,0.021370234699073145,0.019937059495707583,0.017261799116091867,0.01592416892628401,0.013217060208815728,0.01006407476141149,0.005732700813462243,0.0010509951491347448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039491938937184345,0.011783885005450166,0.016784074048303347,0.020351087887790966,0.0205103295770538,0.018503884292342017,0.01621080396695712,0.015032415466412105,0.01238900342464896,0.009236017977244725,0.005286824083526292,0.0013694785276604248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003917345555865867,0.011783885005450166,0.01687961906186105,0.020478481239201235,0.02248492652391302,0.0212109930098103,0.01844018761663688,0.015446443858495487,0.012834880154584912,0.009936681410001222,0.005987487516282786,0.001783506919743809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0042676772722441145,0.01187943001900787,0.016943315737566186,0.020637722928464077,0.019873362820002443,0.018312794265226612,0.01557383720990576,0.013726633614456816,0.011433553289071918,0.008885686260866476,0.005637155799904539,0.0019745969468592172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037581038666030264,0.011306159937661648,0.01624265230480969,0.01980966614429731,0.022070898131829636,0.020733267942021783,0.018089855900258633,0.015510140534200623,0.012803031816732344,0.009777439720738383,0.005446065772789131,0.0013694785276604248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035988621773401855,0.011115069910546239,0.01621080396695712,0.019873362820002443,0.021975353118271933,0.020478481239201235,0.017707675846027816,0.015764927237021168,0.013089666857405457,0.009936681410001222,0.004936492367148043,0.0003503317163782482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031211371095516654,0.010701041518462852,0.015828623912726308,0.01933194107650879,0.02187980810471423,0.020446632901348665,0.017643979170322684,0.01592416892628401,0.013153363533110592,0.01006407476141149,0.005764549151314812,0.0011146918248398803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034714688259299144 +2620835,0.0035495162940750737,0.001064854888222522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002563539545720887,0.007315947472788069,0.0104316339975873,0.01248246563416401,0.011516208420776908,0.01064854888222522,0.009248461899562277,0.00743426468259057,0.006251092584565546,0.004851005601902602,0.002957930245062561,0.0011831720980250246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021099902414779604,0.006783520028676808,0.009583693994002699,0.011535927955743994,0.013290966567814444,0.012423307029262759,0.01070770748712647,0.00995836515837729,0.008301924221142256,0.006290531654499714,0.003608674898976325,0.0006704641888808472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002484661405852552,0.00743426468259057,0.010549951207389803,0.012659941448867762,0.012758539123703184,0.011614806095612325,0.010017523763278541,0.009386498644331864,0.007749777242063912,0.005836982350256787,0.0033128818744700686,0.0008676595385516847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002425502800951301,0.007394825612656404,0.010569670742356888,0.012719100053769012,0.013941711221728206,0.01317264935801194,0.011496488885809824,0.009623133063936865,0.008025850731603085,0.006172214444697213,0.0037664311787129956,0.0011437330280908572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002681856755523389,0.007493423287491824,0.010609109812291052,0.012817697728604433,0.012344428889394425,0.011417610745941487,0.00968229166883812,0.008558278175714345,0.007177910728018484,0.005560908860717616,0.0035297967591079896,0.001242330702926276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023663441960500493,0.007158191193051399,0.010254158182883548,0.012344428889394425,0.01374451587205737,0.012916295403439856,0.011259854466204818,0.009702011203805204,0.008025850731603085,0.006132775374763045,0.003411479549305488,0.0008873790735187684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022677465212146307,0.007000434913314729,0.01017528004301521,0.012364148424361506,0.013665637732189036,0.012738819588736098,0.010983780976665646,0.009820328413607705,0.008203326546306837,0.006211653514631379,0.003095966989832148,1.9719534967083743e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620836,0.0038517586828453105,0.0011189466564690289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002775848436240475,0.00798325402980788,0.011340093999214968,0.013470396287492543,0.012416004245819803,0.011512239638671741,0.00987685606383239,0.007940217619943686,0.00667064352894998,0.005185887388635307,0.0031201397151540233,0.0012265376811295126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022378933129380578,0.007359226086777076,0.010436329392066904,0.012480558860616093,0.014374160894640602,0.013513432697356734,0.011512239638671741,0.010716066056184161,0.008930055046820136,0.006713679938814173,0.0038947950927095054,0.0007101007627591915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027112938214441853,0.008090845054468361,0.011490721433739642,0.013642541926949314,0.0137286147466777,0.01276029552473335,0.010823657080844644,0.010113556318085453,0.008327545308721427,0.006304834045104337,0.0035505038137959577,0.0009468010170122554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026682574115799926,0.008112363259400459,0.011533757843603838,0.013750132951609798,0.014869079608078825,0.014309606279844313,0.012459040655683994,0.010242665547678036,0.008585763767906587,0.006498497889493206,0.004045422527234181,0.0012480558860616092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029264758707651523,0.008176917874196752,0.011533757843603838,0.013793169361473987,0.01316914141844319,0.012243858606363026,0.010479365801931097,0.00910220068627691,0.0076604809558264274,0.0058529517415303045,0.003765685863116924,0.001312610500857899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025821845918516054,0.007832626595283203,0.011275539384418679,0.013405841672696251,0.014826043198214636,0.014029869615727058,0.01217930399156674,0.010371774777270614,0.008628800177770781,0.006541534299357402,0.0036365766335243435,0.0009252828120801587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002474593567191122,0.0076604809558264274,0.0111033937449619,0.01334128705789996,0.014718452173554152,0.013814687566406088,0.011856530917585288,0.010565438621659486,0.008843982227091748,0.006692161733882078,0.0033568399694070866,0.00023670025425306384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021518204932096715,0.0074022624966412695,0.010931248105505127,0.013104586803646897,0.014804524993282539,0.013750132951609798,0.0117704580978569,0.010780620670980453,0.008930055046820136,0.006778234553610464,0.003873276887777408,0.0007531371726233847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023454843375985417 +2620837,0.003469499497995356,0.0010584913722697694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002548219970279075,0.00715461760886048,0.010094871420720953,0.011976633860311652,0.010976947564279091,0.01023208326527444,0.00911478681676746,0.007291829453413967,0.006213736389065128,0.0047436094831348925,0.002920652119781401,0.0012153049089023281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021365844366186093,0.006507761770251177,0.008977574972213973,0.010800532335567463,0.012505879546446535,0.011761015247441881,0.01034969341774886,0.009800846039534905,0.008193507289051181,0.006213736389065128,0.0035675079583907055,0.000705660914846513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002469813201962796,0.007291829453413967,0.0101928798811163,0.0122706592414977,0.012349066009813978,0.011525794942493048,0.009898854499930252,0.00931080373755816,0.007801473447469784,0.005821702547483733,0.003332287653441867,0.0009212795277162807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024306098178046563,0.007233024377176759,0.01025168495735351,0.0122706592414977,0.013799591223665145,0.012917515080107004,0.011153362792990718,0.009565625734586065,0.008095498828655831,0.006252939773223267,0.0037047198029441933,0.0011368981405860488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026266267385953545,0.007291829453413967,0.010290888341511649,0.012486277854367466,0.011878625399916305,0.011055354332595371,0.009448015582111646,0.008487532670237226,0.00717421930093955,0.005586482242534895,0.003508702882153495,0.001234906600981398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023326013574093076,0.006899795611832573,0.009702837579139555,0.011761015247441881,0.013309548921688398,0.012545082930604676,0.010957345872200023,0.009663634194981414,0.007997490368260482,0.00609612623659071,0.003508702882153495,0.000901677835637211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002214991204934888,0.006860592227674432,0.009800846039534905,0.01195703216823258,0.013250743845451189,0.012349066009813978,0.010800532335567463,0.009859651115772113,0.00823271067320932,0.006233338081144198,0.003097067348493029,0.0002744236891069773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001920965823748841,0.006605770230646525,0.009663634194981414,0.011564998326651189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620838,0.0019263200540268672,0.0005503771582933907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013979579820652122,0.003962715539712413,0.005668884730421924,0.006802661676506307,0.006274299604544653,0.005822990334744074,0.004953394424640515,0.003929692910214809,0.0032472252339310055,0.0025207273849837293,0.0014860183273921546,0.0005613847014592585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010897467734209134,0.0036875269605657172,0.00523959054695308,0.006318329777208124,0.00729800111897036,0.006835684306003913,0.005767952618914734,0.0053276508922800205,0.004414024809512993,0.0033022629497603435,0.0019263200540268672,0.00034123383814190227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013539278094017412,0.0040507758850393556,0.005778960162080601,0.0068907220218332515,0.006912737108164986,0.0063953825793692,0.005448733867104568,0.005030447226801591,0.004105813600868694,0.003082112086442987,0.0017171767338753788,0.0004513092698005804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001342920266235873,0.004061783428205223,0.005789967705246469,0.006923744651330854,0.007386061464297303,0.007209940773643419,0.006274299604544653,0.005019439683635723,0.004160851316698033,0.003115134715940591,0.0019923653130220743,0.0006164224172885975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014640032410604194,0.004072790971371091,0.005778960162080601,0.006934752194496723,0.006527473097359613,0.0061422090865542395,0.00523959054695308,0.0044690625253423315,0.003753572219560924,0.00281793105046216,0.0018382597086999246,0.0006164224172885975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001287882550406534,0.003940700453380677,0.005668884730421924,0.0067806465901745746,0.007463114266458377,0.0070668427124871355,0.006131201543388372,0.005063469856299194,0.004204881489361505,0.0031811799749357976,0.001750199363372982,0.0004403017266347125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012438523777430627,0.0038526401080537344,0.005591831928260849,0.006747623960676971,0.007419084093794906,0.006989789910326062,0.005955080852734487,0.0052175754606213435,0.004347979550517787,0.00326924032026274,0.0016731465612119078,9.906788849281031e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010897467734209134,0.0037205495900633203,0.005525786669265641,0.006637548529018291,0.007474121809624245,0.007000797453491928,0.005944073309568618,0.005349665978611756,0.0044250323526788616,0.003335285579257948,0.001893297424529264,0.00035224138130777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011998222050795919 +2620839,0.0029787622644678008,0.0008770800000932968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021678769813626773,0.006139560000653079,0.008704605283944794,0.010376021887896169,0.009548587925544007,0.008886640755662274,0.0075958437743928915,0.0060237192459237756,0.004981152453360044,0.003888939623055184,0.0023168150945860667,0.0008770800000932968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016879652831984205,0.005643099623241777,0.00799301207632193,0.009565136604791049,0.011071066416271992,0.010442216604884345,0.008787348680180012,0.008108852831051236,0.006768409812040725,0.005047347170348217,0.0029953109437148443,0.0005626550943994734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021016822643745033,0.006271949434629426,0.00883699471792114,0.010425667925637302,0.010541508680366605,0.009697526038767395,0.008373631699003929,0.007695135849875152,0.006354692830864642,0.0047494709439014375,0.0026808860380210207,0.0007281418868699069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020520362266333737,0.00620575471764125,0.0088204460386741,0.010442216604884345,0.011335845284224686,0.010955225661542691,0.009614782642532179,0.007628941132886977,0.006371241510111685,0.0047660196231484805,0.0030780543399500605,0.0009598233963285135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022340716983508505,0.006238852076135337,0.008787348680180012,0.01047531396337843,0.009879561510484872,0.009333455095332443,0.007959914717827844,0.00685115320827594,0.005775489057218124,0.004302656604231268,0.002829824151244411,0.000976372075575557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019858415096452005,0.006040267925170818,0.008638410566956621,0.010276729812413914,0.011352393963471728,0.010822836227566343,0.009366552453826529,0.007744781887616281,0.006437436227099858,0.004865311698630741,0.002730532075762151,0.0007115932076228635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001919646792657027,0.005940975849688558,0.008522569812227319,0.010227083774672782,0.011286199246483554,0.010740092831331127,0.009134870944367922,0.008026109434816018,0.00670221509505255,0.005030798491101176,0.0026146913210328463,0.00018203547171747673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001671416603951377,0.005742391698724038,0.008456375095239145,0.01011124301994348,0.011368942642718774,0.010756641510578169,0.009167968302862008,0.008208144906533495,0.006834604529028897,0.005130090566583435,0.0029456649059737133,0.0005792037736465167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018534520756688538 +2620840,0.011291473162256344,0.0032534753179382678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008229378745373264,0.023539850829788645,0.03336407041728851,0.0394244656173696,0.03629857756680145,0.033619244952028775,0.02896230969301909,0.023157089027678265,0.01958464554131467,0.015182884817045253,0.0090586959832791,0.003572443486363588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006634537903246663,0.021498454551866598,0.030365769634090507,0.03610719666574627,0.04172103643003191,0.03936067198368454,0.03342786405097358,0.031131293238311267,0.026091596177191208,0.01958464554131467,0.011482854063311534,0.002105189911607115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008037997844318074,0.02385881899821396,0.03368303858571384,0.039743433785794924,0.04006240195422024,0.03776583114155793,0.03189681684253204,0.029664039663554794,0.024560548968749672,0.01869153466972378,0.010525949558035574,0.0028069198821428195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007910410576947947,0.02398640626558409,0.03393821312045409,0.040126195587905304,0.04357105180689876,0.041976210964772165,0.03655375210154172,0.02979162693092493,0.02519848530560031,0.018882915570778966,0.011865615865421916,0.0037000307537337165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00861214054748365,0.02398640626558409,0.03387441948676903,0.040253782855275436,0.03808479930998326,0.03546926032889562,0.03049335690146063,0.02647435797930159,0.02239156542345749,0.01703290019391211,0.010972504993831022,0.003827618021103845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007591442408522627,0.023029501760308133,0.032981308615178125,0.03910549744894429,0.04331587727215851,0.04114689372686633,0.03572443486363588,0.03023818236672037,0.02519848530560031,0.019138090105519222,0.010717330459090764,0.0027431262484577555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00733626787378237,0.022582946324512687,0.03253475317938268,0.038977910181574156,0.04306070273741825,0.040636544657385816,0.03489511762573005,0.031131293238311267,0.026091596177191208,0.0197122328086848,0.01001560048855506,0.0007017299705357049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620841,0.0013760142454351488,0.0004051597500447938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010014325897333585,0.0028437627738993067,0.004021019406104934,0.004777827241094266,0.004395601061806725,0.004089820118376692,0.0034935472786881278,0.0027749620616275505,0.0023239351700682516,0.0018193966134086971,0.0010778778255908666,0.0004204487972162955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007873859293323351,0.0025762044483980287,0.0036464377504031443,0.004365022967463722,0.005060674613767048,0.004777827241094266,0.004013374882519184,0.0037075939390891505,0.0031189656229863374,0.0023392242172397535,0.0013913032926066507,0.0002675583255012789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009784990189761057,0.0028896299154138124,0.004074531071205191,0.0047854717646800176,0.004861917000537525,0.004525557962764488,0.0038681289343899185,0.0035470589437883835,0.0029507861040998194,0.0022245563634534908,0.0012689909152346374,0.00035164808494453804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009555654482188535,0.0028743408682423105,0.004082175594790942,0.004816049859023021,0.005259432226996569,0.0050530300901812965,0.004418534632563978,0.0035241253730311306,0.0029737196748570714,0.0022322008870392417,0.0014295259105354043,0.00045102689155929876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010320106840763614,0.0028819853918280614,0.004059242024033689,0.004823694382608772,0.004571425104278994,0.004280933208020463,0.0036540822739888953,0.003164832764500842,0.0026679387314270386,0.002010509703052467,0.0013072135331633917,0.00045867141514504964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009249873538758499,0.0027826065852133014,0.0039751522645904295,0.00472431557599401,0.005236498656239316,0.004991873901495292,0.004319155825949217,0.0035852815617171377,0.0029966532456143237,0.002270423504967995,0.0012842799624061389,0.0003440035613587872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008867647359470959,0.002729094920113045,0.003921640599490174,0.004701382005236759,0.005205920561896312,0.0049536512835665365,0.0,0.0,0.0,0.0,0.0,9.173428302900994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.644523585750826e-06,3.822261792875413e-05,3.05780943430033e-05,2.2933570757252484e-05,7.644523585750826e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620842,0.006998612767709902,0.002060702648270138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005248959575782426,0.014813730358319293,0.02068478884678705,0.02426185759472766,0.021656818397857866,0.019712759295716222,0.01753541310131759,0.01473596799423363,0.012869671256177656,0.009836939056836698,0.006026583216639083,0.002605039196869797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004510217116968604,0.013180720712520317,0.01811863083196008,0.02161793721581503,0.02453402586902749,0.022395560856671683,0.01994604638797322,0.019751640477759055,0.01679667064250376,0.012636384163920657,0.007231899859966897,0.0014386037355848132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005015672483525429,0.014852611540362127,0.02060702648270138,0.02453402586902749,0.024456263504941823,0.02266772913097152,0.019790521659801892,0.0190906603830309,0.016213452911861274,0.012208691161449495,0.007154137495881233,0.0019440591021416397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0048601477553541,0.014697086812190794,0.02068478884678705,0.02449514468698466,0.027333470976111454,0.025272768327841314,0.02189010549011486,0.019673878113673396,0.017068838916803594,0.012986314802306151,0.007620711680395226,0.002332870922569968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005365603121910926,0.014852611540362127,0.020723670028829883,0.02480619414332732,0.02391192695634217,0.02200674903624336,0.019323947475287897,0.017807581375617422,0.014774849176276462,0.011625473430807004,0.007115256313838401,0.0025661580148269646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004704623027182767,0.014113869081548304,0.019751640477759055,0.023600877499999503,0.02651696615321196,0.024456263504941823,0.02161793721581503,0.01994604638797322,0.016913314188632265,0.012791908892091988,0.007348543406095397,0.0019051779200988065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004510217116968604,0.014074987899505472,0.01994604638797322,0.02402857050247066,0.026283679060954964,0.02402857050247066,0.02107360066721537,0.02010157111614455,0.017185482462932094,0.012869671256177656,0.006376513855024578,0.0006609800947281573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620843,0.005539529960787403,0.001618289651465983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004139086993172612,0.011483632334441303,0.016027291740480412,0.018952661495053532,0.0172410089790799,0.015716082192121568,0.013911066811640279,0.01139026946993365,0.00986534268297532,0.007624633934791653,0.004668143225382643,0.0019917411094965945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003454425986783157,0.010207673186170049,0.014128913495491467,0.016836436566213402,0.019388354862755915,0.018019032849977003,0.01559159837277803,0.015155905005075649,0.012884075302056095,0.009740858863631784,0.005632892825295058,0.0011203543740918344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003983482218993189,0.011545874244113075,0.016027291740480412,0.019108266269232958,0.019263871043412376,0.018081274759648772,0.015529356463106263,0.014689090682537386,0.012448381934353717,0.00949189122494471,0.005446167096279751,0.0014938058321224462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003921240309321421,0.011545874244113075,0.01618289651465983,0.01923275008857649,0.021566821701267818,0.02013525777881714,0.01739661375325932,0.015031421185732113,0.012946317211727863,0.009989826502318857,0.005912981418818016,0.0018361363353171733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004232449857680264,0.011545874244113075,0.016120654604988065,0.01932611295308415,0.01867257290153057,0.017365492798423435,0.01493805832122446,0.013382010579430245,0.011265785650590115,0.008807230218555253,0.0054772880511156355,0.0019606201546607106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003734514580306115,0.01101681801190304,0.015498235508270378,0.01848584717251527,0.020819918785206594,0.019543959636935334,0.017054283250064594,0.015218146914747417,0.012821833392384328,0.009803100773303552,0.005601771870459173,0.0014626848772865614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003578909806126694,0.010861213237723617,0.01543599359859861,0.018610330991858805,0.02057095114651952,0.019170508178904727,0.01668083179203398,0.015498235508270378,0.01313304294074317,0.009927584592647087,0.004979352773741487,0.0004979352773741486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031120954835884293,0.01045664082485712,0.015218146914747417,0.01817463762415643,0.020633193056191285,0.018797056720874113,0.016494106063018675,0.015218146914747417,0.013070801031071406,0.009989826502318857,0.005664013780130942,0.0011514753289277185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003454425986783157 +2620844,0.0029951268072789887,0.0008904431048667265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022503925741177264,0.0063140511072367865,0.008791101926229677,0.010361519765721907,0.009309177914515774,0.008418734809649048,0.00741496258234474,0.006249291608701026,0.005439797877004,0.004193177530190584,0.0025256204428947145,0.0011009114751079525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018942153321710358,0.005601696623343405,0.007738760075023549,0.009244418415980012,0.010507228637427372,0.009681545031096406,0.008451114558916931,0.008273025937943584,0.00705878534039805,0.005326468754566418,0.0030760761804486916,0.0006152152360897384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021370634516801436,0.006297861232602847,0.0087587221769618,0.010377709640355844,0.010410089389623726,0.009713924780364284,0.00843492468428299,0.008030177818434478,0.006832127095522882,0.0051969497574948925,0.0030113166819129285,0.0008256836063309644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020561140785104407,0.006249291608701026,0.008774912051595739,0.010393899514989785,0.011640519861803205,0.010798646380838299,0.009341557663783657,0.008208266439407821,0.007123544838933812,0.005455987751637941,0.003237974926788096,0.0010199621019382503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022665824487516665,0.006297861232602847,0.008774912051595739,0.010458659013525549,0.010134861520846741,0.009357747538417597,0.00814350694087206,0.007366392958442918,0.0061197726116295,0.004856962390182142,0.002978936932645048,0.0010847216004740122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019913545799746793,0.006038823238459798,0.00849968418281875,0.010086291896944918,0.011300532494490454,0.010474848888159492,0.009163469042810311,0.008305405687211467,0.00709116508966593,0.005358848503834299,0.0030760761804486916,0.000809493731697024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019265950814389174,0.005957873865290096,0.00846730443355087,0.01016724127011462,0.011154823622784993,0.010264380517918262,0.008953000672569085,0.008402544935015108,0.0071883043374695735,0.005423608002370061,0.002719898938502,0.00027522786877698813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016837469619298095,0.0057959751189506905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620845,0.0028265085802251086,0.0008463556765645804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002139842653955732,0.005940458710981583,0.008319835990380121,0.009773012718066477,0.008798905241265732,0.008064332389907796,0.007233945688372735,0.005972396661040623,0.005205885859623646,0.003960305807321056,0.0024592221545461403,0.001069921326977866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018364321283948447,0.005333637659859809,0.007265883638431776,0.008719060366118131,0.009964640418420722,0.00910231576682662,0.008192084190143958,0.008064332389907796,0.006818752337605205,0.005157978934535085,0.002938291405431751,0.0005908520760922541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020440288037786095,0.0059883656360701434,0.008319835990380121,0.00998060939345024,0.009964640418420722,0.009277974492151344,0.008080301364937316,0.007760921864346907,0.00656324873713288,0.0049184443090922805,0.0028903844803431908,0.0007824797764464989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001980152903660528,0.005908520760922542,0.008351773940439162,0.009932702468361681,0.01113037559557571,0.010331926844099691,0.008894719091442856,0.008032394439848753,0.006930535162811847,0.005301699709800769,0.003082012180697435,0.0009421695267417029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002155811628985252,0.0059883656360701434,0.008383711890498202,0.010124330168715924,0.009709136817948397,0.008974563966590457,0.007888673664583071,0.007265883638431776,0.006020303586129185,0.004742785583767554,0.002906353455372711,0.001037983376918825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019003080285129263,0.0056370481854206966,0.00785673571452403,0.009485571167535107,0.010731151219837698,0.0099486714433912,0.008798905241265732,0.008128208290025878,0.006834721312634724,0.0051899168845941255,0.0030021673055498324,0.0007665108014169785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018364321283948447,0.0056849551105092565,0.008032394439848753,0.009773012718066477,0.010731151219837698,0.009804950668125516,0.008607277540911487,0.008239991115232518,0.006978442087900409,0.005221854834653167,0.002586973954782303,0.0002555036004723262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015809285279225179,0.005461389460095973,0.007904642639612592,0.009405726292387508,0.010651306344690097,0.009773012718066477,0.008639215490970529,0.007952549564701152,0.006850690287664244,0.005237823809682687,0.0029702293554907913,0.0006068210511217748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620846,0.005812335318415061,0.0016979855986381076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004244963996595269,0.012049167036489651,0.01701250955558566,0.020147252199225245,0.01854722730820087,0.017208430970813135,0.014726759711265127,0.011787938482853018,0.009959338607396593,0.00780420303989438,0.004636806827050218,0.001861253444661003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003395971197276215,0.010873638545124806,0.015347177526152127,0.018318652323768815,0.02119216641377177,0.01995133078399777,0.01684924170956276,0.015706366787402497,0.01325734909705907,0.009991992176601175,0.00587764245682422,0.0011428749221602647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004147003288981532,0.012245088451717123,0.01724108454001771,0.02027786647604356,0.02057174859888477,0.019428873676724502,0.016359438171494076,0.015151256110924653,0.012636931282172073,0.009665456484555381,0.005453146057164691,0.0015020641834106337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004081696150572375,0.0122777420209217,0.017371698816836027,0.02047378789127103,0.022335041335932036,0.02142074139820382,0.018645188015814603,0.015151256110924653,0.012898159835808703,0.00973076362296454,0.006073563872051693,0.0019265605830701609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004408231842618164,0.012245088451717123,0.01724108454001771,0.02047378789127103,0.01946152724592908,0.01792680949331387,0.015412484664561287,0.013387963373877388,0.011396095652398068,0.008685849408418014,0.005551106764778429,0.0019592141522747396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003885774735344901,0.01175528491364844,0.01688189527876734,0.01995133078399777,0.02213911992070456,0.02102889856774887,0.0181880380469505,0.015379831095356707,0.012930813405013281,0.009828724330578277,0.005551106764778429,0.001469410614206055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037551604585265848,0.011559363498420966,0.01658801315592613,0.019853370076384037,0.02200850564388624,0.020767670014112238,0.01773088807808639,0.015836981064220813,0.013387963373877388,0.010089952884214909,0.0051592639343234796,0.000391842830454948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032653569204578996,0.011232827806375176,0.016457398879107812,0.019592141522747394,0.02213911992070456,0.02070236287570308,0.017632927370472656,0.016065556048652868,0.013518577650695704,0.010253220730237805,0.005844988887619639,0.0011755284913648437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003624546181708269 +2620847,0.0016519426843509535,0.0004825899976755594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012064749941888987,0.0033874105606072923,0.004779497092363715,0.0056889936264445775,0.005243525936282523,0.004872302861147476,0.004157698441512513,0.003322446522458659,0.0028027342172695954,0.0021994967201751465,0.0012992807629726602,0.0005197123051890641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009558994184727427,0.0030347486392289995,0.0042783459409314025,0.005132159013742008,0.00596741093279586,0.005614749011417567,0.004723813631093458,0.004389712863471917,0.0037122307513504584,0.0028027342172695954,0.0016612232612293295,0.00032482019074316505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001169352686675394,0.00344309402187755,0.004844461130512347,0.00570755478020133,0.005828202279620219,0.005494101511998677,0.004640288439188073,0.00425978478717465,0.003573022098174816,0.0027192090253642105,0.001549856338688816,0.00042690653640530267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011600721097970183,0.0034523745987559253,0.004881583438025852,0.005772518818349962,0.006338634007930907,0.006050936124701247,0.005262087090039275,0.0042412236334178986,0.003619424982566696,0.0027377701791209633,0.0017261872993779626,0.0005568346127025687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012435973017024034,0.0034338134449991733,0.004835180553633971,0.005753957664593209,0.005494101511998677,0.005057914398714998,0.0043340294022016605,0.0037679142126207142,0.00320179902303977,0.00243151114213455,0.0015591369155671922,0.0005568346127025687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011043886485267614,0.003313165945580283,0.004733094207971834,0.005614749011417567,0.006255108816025522,0.005958130355917485,0.005141439590620384,0.00430618767156653,0.003628705559445073,0.0027656119097560906,0.0015776980693239446,0.00041762595952692653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001020863456621376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620848,0.021175023992977562,0.00650690841450873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015770981411436413,0.043011767485735666,0.06021647448002994,0.07168627914289279,0.0658410902281646,0.060878193979810494,0.05282727339914714,0.042791194319142155,0.037387151737601,0.029005371407047384,0.017756139910778058,0.007830347414069827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012903530245720699,0.03716657857100749,0.051834694149476314,0.06253249272926187,0.0724582852259701,0.06782624872750624,0.05845188914728181,0.05503300506508231,0.047202657651012475,0.03628428590463342,0.021726456909461348,0.004962896248354116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015219548494952623,0.04323234065232918,0.06010618789673317,0.07201713889278306,0.07455373030860848,0.06992169381014465,0.05999590131343641,0.055474151398269334,0.047533517400902746,0.03650485907122695,0.02161617032616459,0.006396621831211971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014888688745062346,0.04290148090243891,0.06010618789673317,0.0724582852259701,0.08271493747256858,0.07808290097410477,0.06683366947783544,0.05580501114815961,0.04841581006727682,0.03749743832089776,0.022939609325725686,0.008050920580663343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015991554578029928,0.042791194319142155,0.05999590131343641,0.07234799864267334,0.07102455964311223,0.06672338289453866,0.055915297731456357,0.049077529567057354,0.04135746873628429,0.032865401822433915,0.020403017909900255,0.007830347414069827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014337255828578557,0.041467755319581044,0.05867246231387533,0.0705834133099252,0.08061949238993019,0.0760977424747631,0.06551023047827433,0.056687303814533685,0.04841581006727682,0.03716657857100749,0.021947030076054867,0.006396621831211971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013785822912094766,0.04080603581980051,0.058341602563985046,0.0705834133099252,0.07918576680707233,0.07433315714201498,0.06374564514552619,0.057900456230798,0.0495186759002444,0.03760772490419451,0.01941043866022943,0.002536591415825437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011910950996049876,0.039592883403536165,0.05723873673101747,0.0692599743103641,0.07929605339036909,0.07554630955827932,0.06418679147871323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620849,0.0052284087353398805,0.0015344243027627907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003892891286638933,0.010854631178803448,0.015088505643834113,0.017816371070967955,0.016225116238473215,0.014832768260040312,0.012985776043751769,0.010684139589607579,0.0092633763463087,0.007160646746226357,0.004319120259628597,0.0018469922162885444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032393401947214476,0.009575944259834455,0.013213098162679588,0.015770472000617576,0.018128938984493713,0.01685025206552472,0.014605446141112493,0.014065556108658917,0.011962826508576574,0.009092884757112835,0.005313654529937812,0.0010797800649071493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003750814962309045,0.010911461708535403,0.015088505643834113,0.017986862660163826,0.018214184779091643,0.01707757418445254,0.014690691935710423,0.013809818724865117,0.01176391965451473,0.008979223697648921,0.005199993470473902,0.001449178508164858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036655691677111107,0.010854631178803448,0.015145336173566068,0.018015277925029802,0.020345329644039966,0.019066642725070977,0.016281946768205168,0.014008725578926962,0.01210490283290646,0.009320206876040656,0.005597807178597589,0.001818576951422567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003949721816370887,0.010797800649071494,0.015088505643834113,0.018100523719627733,0.01750380315744221,0.016253531503339195,0.013838233989731094,0.012303809686968304,0.01042840220581378,0.008240426811133506,0.0050863324110099915,0.0018469922162885444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003523492843381224,0.01042840220581378,0.01463386140597847,0.01747538789257623,0.019663363287256506,0.018413091633153494,0.015969378854679417,0.014150801903256849,0.012048072303174506,0.009178130551710767,0.005313654529937812,0.0014207632432988804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003381416519051336,0.01022949535175194,0.014520200346514557,0.017532218422308187,0.019407625903462705,0.018043693189895783,0.015599980411421709,0.01449178508164858,0.012303809686968304,0.009320206876040656,0.00474534923261826,0.00048305950272161925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029267722811956933,0.009945342703092162,0.014292878227586734,0.017162819979050475,0.019464456433194662,0.01818576951422567,0.015486319351957795,0.014349708757318693,0.012332224951834283,0.00940545267063859,0.005342069794803789,0.0011081953297731267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003267755459587425 +2620850,0.009495120065151831,0.002756647760850532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007095815532559703,0.019807024652037156,0.027566477608505318,0.03246718473890626,0.029251095684580647,0.026494447923730114,0.023278358869404495,0.0195007304563871,0.017050376891186624,0.0131196013803442,0.007963649086901538,0.0034202851847589936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005921687782567809,0.01730562205422834,0.02389094726070461,0.02858745826067218,0.03256928280412295,0.030169978271530826,0.026290251793296745,0.025626614369388276,0.022002133054195912,0.016693033662928222,0.009699316195585207,0.0020419613043337276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006789521336909646,0.019807024652037156,0.027413330510680296,0.0326203318367313,0.0329776750649897,0.030833615695439288,0.026596545988946802,0.02526927114112988,0.021695838858545854,0.016437788499886506,0.009648267162976861,0.0026545496956338456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0065853252064762705,0.019653877554212128,0.02746437954328863,0.0326203318367313,0.03695949960844048,0.03440704797802331,0.0295573898802307,0.02577976146721331,0.02241052531506266,0.017203523989011656,0.010260855554276981,0.0033181871195423073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00719791359777639,0.019704926586820472,0.02746437954328863,0.03282452796716467,0.03185459634760615,0.02950634084762236,0.02511612404330485,0.022818917575929406,0.019143387228128694,0.015212611717286268,0.009290923934718462,0.0034202851847589936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063811290760428995,0.018939191097695325,0.026596545988946802,0.03175249828238946,0.03578537185844858,0.03328396926063976,0.028944801488930593,0.026035006630255028,0.022308427249845976,0.016948278825969942,0.009852463293410236,0.002603500663025503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0060748348803928405,0.01868394593465361,0.026545496956338458,0.03195669441282284,0.035223832499756795,0.03251823377151461,0.028230115032413784,0.026545496956338458,0.022716819510712714,0.017203523989011656,0.008678335543418342,0.0009188825869501773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005309099391267691,0.018173455608570175,0.02613710469547171,0.03124200795630604,0.03542802863019017,0.03287557699977301,0.028230115032413784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620851,0.0040677823109991915,0.0012203346932997572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003018722662373084,0.008306839666672033,0.011561065515471385,0.013744822335060422,0.01252448764176067,0.011454018612550352,0.010019590113408533,0.008221202144335207,0.007172142495709099,0.005545029571309423,0.003404091512888796,0.0014986566408944386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002504897528352133,0.007172142495709099,0.009955361971655915,0.011967843746571305,0.013766231715644627,0.012867037731107967,0.011154287284371464,0.010640462150350517,0.009141805509456077,0.0070008674510354495,0.004153419833336017,0.0009420127457050759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002911675759452052,0.008328249047256238,0.011539656134887178,0.01383045985739725,0.014194419327328754,0.01335945348454471,0.011432609231966146,0.010640462150350517,0.00916321489004028,0.0070008674510354495,0.004153419833336017,0.0011989253127155511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002847447617699434,0.008242611524919414,0.011539656134887178,0.013873278618565663,0.01584294163231264,0.01485811012543915,0.012695762686434317,0.010811737195024165,0.009398718076466552,0.007236370637461719,0.004388923019762285,0.0014986566408944386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030615414235414962,0.008242611524919414,0.011539656134887178,0.013916097379734075,0.013573547290386772,0.012695762686434317,0.010640462150350517,0.009505764979387585,0.00796428957732473,0.006358586033509262,0.003917916646909747,0.0014772472603102327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027404007147784023,0.00796428957732473,0.01119710604553988,0.01348790976804995,0.015329116498291686,0.014429922513755024,0.012460259500008047,0.010940193478529401,0.009398718076466552,0.0071507331151248925,0.00423905735567284,0.0011989253127155511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026333538118573714,0.007835833293819493,0.01119710604553988,0.013530728529218357,0.015115022692449624,0.01406596304382352,0.012139118791244956,0.01119710604553988,0.009569993121140203,0.0073005987792143364,0.00372523222165189,0.00047100637285253796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00229080372251007,0.00762173948797743,0.010983012239697814,0.01325240658162368,0.01513643207303383,0.014344284991418198,0.012203346932997572,0.011090059142618847,0.00959140250172441,0.00734341754038275,0.004196238594504429,0.0009420127457050759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025263069089363397 +2620852,0.005493412192106588,0.0016539305524621989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004016688484551054,0.01113449675496873,0.01565327130008867,0.01872485661180418,0.017218598430097536,0.01588954709329755,0.01364492705781314,0.01095728991006207,0.009244290409297648,0.007354084063626563,0.004341567700213272,0.0018311373973688631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031897232083199544,0.009864514366470971,0.013822133902719804,0.016627908947075318,0.019404149517279732,0.0182227705512353,0.015239788661973116,0.014147013118382021,0.012050065453653162,0.009214755935146536,0.005522946666257699,0.0011813789660444277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003898550587946612,0.011282169125724287,0.015712340248390893,0.018665787663501954,0.01916787372407084,0.018075098180479747,0.015446529981030892,0.01399934074762647,0.011754720712142057,0.009067083564390984,0.005227601924746593,0.001535792655857756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00383948163964439,0.011311703599875395,0.015919081567448663,0.018961132405013063,0.02123528691464859,0.02005390794860416,0.017100460533493088,0.013910737325173136,0.01196146203119983,0.009126152512693202,0.005729687985315475,0.001949275293973306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004105291907004386,0.011193565703270954,0.01568280577423978,0.018783925560106395,0.018075098180479747,0.01659837447292421,0.014294685489137574,0.012374944669315383,0.010514272797795406,0.00806291144325322,0.005198067450595483,0.001919740819822195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003691809268888837,0.010868686487608735,0.015387461032728672,0.01834090844783974,0.02052645953502193,0.01969949425879083,0.016805115791981982,0.014058409695928692,0.01193192755704872,0.009185221460995428,0.005286670873048813,0.0015062581817066453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003514602423982173,0.010602876220248738,0.015121650765368675,0.018252305025386405,0.02037878716426638,0.019315546094826396,0.016362098679715324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620853,0.0057392656950090515,0.0018836564332337402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004149930579468084,0.011095913677017498,0.01571675836479402,0.019278046308876563,0.018100761038105474,0.017011772162642217,0.014304016039868713,0.011066481545248221,0.00953601069324581,0.007505193601165684,0.004473684028930134,0.002060249223849403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034141272852361536,0.009800899879169305,0.01395083045863739,0.017247229216796438,0.019837256812492828,0.018601107278183183,0.01592278328717896,0.014421744566945824,0.012449791738404251,0.00962430708855364,0.005827562090316882,0.0014421744566945824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004061634184160253,0.011301938599402444,0.015863919023640403,0.01936634270418439,0.02007271386664704,0.01892486072764523,0.016305401000179565,0.014539473094022932,0.012273198947788588,0.009388850034399423,0.0055921050361626675,0.001854224301464463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00397333778885242,0.01121364220409461,0.01595221541894824,0.019484071231261505,0.022309555881112112,0.020573060106724755,0.0178064397204127,0.014539473094022932,0.012508656001942805,0.009594874956784365,0.006004154880932548,0.002266274146234344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004238226974775915,0.01121364220409461,0.015775622628332573,0.019278046308876563,0.018865996464106673,0.017747575456874148,0.014774930148177146,0.012920705846712687,0.010889888754632562,0.008388157554244,0.005444944377316281,0.0021779777509265117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038261771300060346,0.010919320886401839,0.015599029837716912,0.01892486072764523,0.021367727664495243,0.0205141958431862,0.01765927906156631,0.014627769489330766,0.012420359606634975,0.009447714297937978,0.005650969299701222,0.0017659279061566315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003649584339390372,0.010654431700478344,0.015363572783562695,0.018895428595875955,0.0211617027421103,0.02024930665726271,0.01707063642618077,0.015039819334100642,0.012861841583174133,0.009477146429707255,0.005297783718469894,0.0008240996895397612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031786702310819363,0.010301246119247015,0.015069251465869921,0.018571675146413905,0.02127943126918741,0.02060249223849403,0.01762984692979704,0.015451869178870523,0.013097298637328348,0.01003635693332352,0.005886426353855438,0.001501038720233137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620854,0.007424758731413436,0.0022157656947150045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005364485366152117,0.014849517462826872,0.020835972146793728,0.02495651887731636,0.023012864759145307,0.02138019529988162,0.01823147562844451,0.014655152051009764,0.012594878685748446,0.009951509085035807,0.0059087085192400125,0.002487877271258952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004314912142339746,0.013177974921199763,0.0183869679578982,0.02211878386478662,0.02569510744222137,0.023906945653503996,0.020214002828978988,0.018892318028622665,0.016054583016092926,0.012361640191567918,0.007385885649050015,0.0016326694592636872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005247866119061852,0.01512162903937082,0.020952591393883988,0.02499539195967978,0.025733980524584792,0.02406243798295768,0.020563860570249778,0.018775698781532405,0.015899090686639243,0.012322767109204496,0.007152647154869488,0.0020991464476247407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00513124687197159,0.01512162903937082,0.021185829888064514,0.025267503536223732,0.02849396937238769,0.02690017299548742,0.022896245512055047,0.018697952616805565,0.016171202263183186,0.012439386356294761,0.007774616472684227,0.0026433696007126368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005481104613242379,0.014888390545190294,0.020874845229157148,0.02511201120677005,0.024295676477138203,0.022585260853147673,0.019164429605166615,0.0165599330868174,0.014149801980285294,0.01100108230884818,0.006958281743052381,0.002604496518349216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004936881460154483,0.0145385328039195,0.02052498748788636,0.024528914971318733,0.027599888478029005,0.026239330595309262,0.022390895441330567,0.01897006419334951,0.016093456098456346,0.012439386356294761,0.007230393319596329,0.0020214002828978983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004742516048337377,0.014149801980285294,0.020175129746615564,0.024373422641865043,0.02725003073675821,0.02569510744222137,0.02180779920587925,0.019475414264073985,0.016676552333907663,0.012206147862114235,0.0065695509194181705,0.0007385885649050016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620855,0.00458629416128124,0.0014483034193519704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033552362548320645,0.00917258832256248,0.012865762041910006,0.015496846587066081,0.014362342241907041,0.01334852984836066,0.011345043451590434,0.009076034761272346,0.0077725616838555745,0.0061552895322458745,0.0036931737193475252,0.0015931337612871677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002703499716123678,0.008110499148371033,0.011345043451590434,0.013758882483843719,0.01605202956448434,0.014989940390292897,0.012600239748362144,0.011707119306428428,0.009920878422560998,0.007676008122565441,0.004610432551603773,0.001062089174191445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032586826935419332,0.00926914188385261,0.012889900432232537,0.015448569806421017,0.015979614393516743,0.01494166360964783,0.012817485261264938,0.01163470413546083,0.009751909690303266,0.007531177780630246,0.00441732542902351,0.001375888248384372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032104059128968683,0.00926914188385261,0.013010592383845202,0.015641676929001282,0.017717578496739102,0.01655893576125753,0.014241650290294377,0.011562288964493229,0.009969155203206063,0.007676008122565441,0.004827678064506569,0.0017138257128998318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034276514257996636,0.009148449932239948,0.012793346870942406,0.015520984977388613,0.01503821717093796,0.014048543167714114,0.011948503209653757,0.010331231058044054,0.008762235687079421,0.006758749290309195,0.004344910258055911,0.0016896873225772987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030897139612842037,0.008931204419337152,0.012624378138684675,0.01520718590319569,0.01708998034835325,0.016365828638677266,0.013976127996746515,0.011682980916105893,0.009920878422560998,0.007627731341920376,0.004465602209668576,0.0013276114677393063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00296902200967154,0.008713958906434355,0.012431271016104414,0.01513477073222809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620856,0.004934677509110349,0.00160314396235057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035569756664653274,0.00951866727645651,0.013451379809097753,0.01640717648968162,0.01540521151321251,0.014403246536743403,0.012148825339687913,0.00951866727645651,0.008241161931458399,0.006487723222637462,0.003932712532641242,0.0017784878332326637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029557966805838637,0.008366407553517037,0.011773088473512,0.014503443034390311,0.01678291335585753,0.015780948379388426,0.013401281560274297,0.012274070961746554,0.010545681377337343,0.008216112807046674,0.004959726633522075,0.0012524562205863828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003481828293230144,0.009643912898515149,0.013476428933509478,0.016432225614093347,0.01705845372438653,0.016056488747917423,0.013777018426450212,0.01239931658380519,0.010445484879690435,0.008090867184988033,0.0048344810114634386,0.00160314396235057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003406680919994961,0.009593814649691694,0.013576625431156392,0.016557471236151984,0.018987236304089567,0.017659632710268002,0.015204818517918689,0.01239931658380519,0.01069597612380771,0.008291260180281855,0.005185168753227625,0.0019538317041147574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036321230397005104,0.009568765525279967,0.013401281560274297,0.016432225614093347,0.016081537872329153,0.014979376398213139,0.01259970957909901,0.01102161474116017,0.009343323405574417,0.007264246079401021,0.004659137140581344,0.0018786843308795738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032814352979363233,0.009318274281162688,0.013250986813803932,0.01610658699674088,0.01821071344732601,0.017409141466150718,0.014929278149389682,0.012449414832628647,0.010620828750572527,0.008140965433811488,0.004884579260286893,0.001527996589115387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031311405514659577,0.009067783037045415,0.013025544694098381,0.016056488747917423,0.018035369576443916,0.017158650222033445,0.014503443034390311,0.01285020082321629,0.01102161474116017,0.008115916309399762,0.004508842394110979,0.0007013754835283743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620857,0.00608489361628823,0.0018477687421189384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004428273364733318,0.012137929150815787,0.016980357578437837,0.020389172326829665,0.018891842484078113,0.017553803050129914,0.014941440345754864,0.012010496823773099,0.010353876572218191,0.008187527012492538,0.00493800267290406,0.002134491477964981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035999632389558623,0.010672457389824903,0.014877724182233524,0.017967958113018646,0.020898901635000414,0.0194652879557702,0.016470628270267088,0.015419311572164933,0.013125529685396596,0.010194586163414832,0.006116751698048901,0.0014017555974695397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004300841037690632,0.012265361477858472,0.017044073741959175,0.020421030408590335,0.02115376628908578,0.01975201069161624,0.01688478333315582,0.015419311572164933,0.013061813521875257,0.010162728081654162,0.005957461289245542,0.0017840525785975958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004237124874169291,0.012265361477858472,0.01717150606900186,0.02061217889915437,0.023447548175854118,0.02214136682366659,0.01882812632055677,0.015387453490404265,0.013348536257721299,0.010353876572218191,0.006435332515655613,0.0022619238050076663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004491989528254661,0.012137929150815787,0.016948499496677163,0.020548462735633023,0.01994315918218027,0.018541403584710726,0.015674176226250308,0.01360340091180667,0.011596341760884374,0.009079553301791337,0.005734454716920844,0.002198207641486324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004077834465365933,0.011851206414969742,0.01669363484259179,0.02003873342746228,0.022651096131837335,0.021536063270213835,0.018318397012386026,0.015578601980968292,0.013252962012439282,0.010290160408696847,0.006021177452766886,0.0017521944968369248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003886685974801905,0.011532625597363034,0.01640691210674575,0.019975017263940936,0.022396231477751966,0.021121908207325107,0.0179042419494973,0.01599275704385702,0.013730833238849353,0.010130869999893488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620858,0.002972011995336737,0.0009202676736829491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022026078747165666,0.005959110345979753,0.008357840839677931,0.010017339923368496,0.00929319486866716,0.008659567945803488,0.007422486810688705,0.005913851280060918,0.005174619870053304,0.004058229577388743,0.0024741622702295686,0.0011163902926645613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001780189926140787,0.005144447159440748,0.007211277836400815,0.008719913367028601,0.010122944410512442,0.009459144777036214,0.00808628644416493,0.0075733503637514825,0.006502219137005755,0.005038842672296803,0.003032357416561849,0.0007241450547013371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021271760981851776,0.006004369411898587,0.008388013550290487,0.010047512633981053,0.010500103293169385,0.00979104459377433,0.008433272616209323,0.007678954850895428,0.006592737268843423,0.005114274448828193,0.003032357416561849,0.0009202676736829491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002081917032266344,0.005944023990673474,0.008372927194984212,0.010122944410512442,0.01161649358583395,0.010997953018276557,0.009383713000504827,0.007694041206201707,0.00668325540068109,0.005204792580665861,0.003198307324930905,0.001161649358583395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022327805853291226,0.005959110345979753,0.008357840839677931,0.010077685344593607,0.009941908146837106,0.009383713000504827,0.00773930027212054,0.006743600821906202,0.005732815016385585,0.004556079302495912,0.0028211484422739587,0.0011163902926645613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002006485255734955,0.005793160437610697,0.00822206364192143,0.009896649080918274,0.01132985283501467,0.01074148497806983,0.009202676736829491,0.007829818403958208,0.006698341755987368,0.005189706225359582,0.0030776164824806826,0.0009202676736829491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001946139834509843,0.005687555950466751,0.00814663186539004,0.009851390014999442,0.01113373021603306,0.010530276003781943,0.00893112234131649,0.007995768312327263,0.006864291664356425,0.005204792580665861,0.0027306303104362925,0.0003771588826569464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001674585438996842,0.005506519686791417,0.007995768312327263,0.00970052646193666,0.011163902926645613,0.010650966846232165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620859,0.005259107606338754,0.001770138657743288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00377116496649657,0.0099538231768753,0.014161109261946305,0.017521807293313995,0.01657260250582846,0.01559774353489738,0.013288867024797434,0.010159056644439737,0.008825039105270886,0.0068496669799631565,0.004155977718179893,0.0019753721253077273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031811187472488072,0.008773730738379774,0.012519241521430788,0.015572089351451822,0.017906620044997316,0.016931761074066232,0.01462288456396629,0.01298101682345078,0.011236532349153045,0.008773730738379774,0.0053360701566754175,0.001436634272951074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036942024161599044,0.010107748277548628,0.014289380179174077,0.017573115660205103,0.018317086980126195,0.01744484474297733,0.014982043132204059,0.01326321284135188,0.011185223982261936,0.00859415145426089,0.005207799239447644,0.0017957928411888424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035915856823776847,0.010030785727211963,0.014340688546065189,0.017701386577432875,0.02034376747232503,0.018984095749710623,0.01641867740515513,0.013365829575134101,0.011467420000163039,0.008825039105270886,0.005541303624239857,0.002154951409426611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003822473333387679,0.010056439910657518,0.014238071812282968,0.017521807293313995,0.017213957091967335,0.016162135570699586,0.013519754675807431,0.011800924384955253,0.010005131543766409,0.007773217584003135,0.00497691158843765,0.0020779888590899465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034633147651499108,0.009799898076201971,0.014084146711609638,0.01723961127541289,0.019471525235176167,0.01870189973180952,0.01613648138725403,0.013340175391688544,0.011390457449826375,0.008645459821152,0.005259107606338754,0.0017444844742977327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003335043847922136,0.009569010425191975,0.013878913244045199,0.017162648725076224,0.019266291767611726,0.018471012080799525,0.015572089351451822,0.013750642326817424,0.011749616018064143,0.008748076554934217,0.004899949038100986,0.0008722422371488664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002898922729347703,0.009261160223845318,0.013596717226144094,0.016906106890620675,0.019471525235176167,0.0188814790159284,0.01613648138725403,0.014161109261946305,0.01200615785251969,0.009184197673508651,0.005387378523566529,0.0014879426398421837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003258081297585471 +2620860,0.0042680494195073745,0.0013733822389503927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030848277982578054,0.008303680306269297,0.011684313509839497,0.014219788412517143,0.013332372196579968,0.012423827023120476,0.010670123548768437,0.008345938221313926,0.007289490345198238,0.005725947488547023,0.0034862779911817667,0.0016058007716958443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002577732817722276,0.007226103472631298,0.010184157525755222,0.012487213895687419,0.014452206945262596,0.013649306559414674,0.011642055594794868,0.010627865633723808,0.009169967564684162,0.007141587642542043,0.004310307334552003,0.001098705791160314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030214409256908645,0.008388196136358552,0.011747700382406436,0.014262046327561772,0.01487478609570887,0.014008498837294006,0.012022376830196514,0.010796897293902319,0.009169967564684162,0.007120458685019729,0.0042680494195073745,0.001394511196472707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029580540531239227,0.008324809263791613,0.011789958297451065,0.014367691115173341,0.016522844782449343,0.01555091273642291,0.013311243239057656,0.010839155208946946,0.009381257139907298,0.007268361387675925,0.004521596909775138,0.001711445559307413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003148214670824746,0.008324809263791613,0.011684313509839497,0.014262046327561772,0.014008498837294006,0.013036566791267575,0.011008186869125457,0.009592546715130436,0.00813464864609079,0.006402074129261063,0.004035630886761924,0.0016480586867404713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028735382230346677,0.00813464864609079,0.011578668722227929,0.014029627794816323,0.015888976056779927,0.015170591501021262,0.013015437833745263,0.010881413123991575,0.009296741309818045,0.007183845557586671,0.004310307334552003,0.0013522532814280788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027467644779007854,0.00792335907086765,0.011367379147004787,0.013945111964727067,0.015698815439079104,0.01493817296827581,0.012635116598343614,0.011219476444348595,0.009634804630175065,0.007162716600064356,0.003908857141628041,0.0006338687256694121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620861,0.005470466634301835,0.0018495387192163349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003933526008474177,0.01034178692294204,0.014718160230383508,0.01818278909877467,0.01721894497749292,0.01620300117397972,0.013910615155796092,0.010706484698562165,0.00932584311942884,0.007241855830171,0.004454522830788637,0.002162136812605011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033343796628125468,0.009039294867155889,0.012946771034514346,0.016098801809516828,0.018599586556626236,0.017739941799807375,0.015213107211582247,0.01362406690352314,0.01172242850207536,0.00914349423161878,0.005548616157649003,0.0015369406258276585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003829326644011285,0.010472036128520656,0.014874459277077846,0.01828698846323756,0.01919873290228787,0.018260938622121838,0.015708054192780985,0.013910615155796092,0.01180057802542253,0.009091394549387335,0.005522566316533281,0.0019276882425635032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003751177120664115,0.01041993644628921,0.014926558959309293,0.0184432875099319,0.02125667035042999,0.0201365271824539,0.01732314434195581,0.01406691420249043,0.012113176118811205,0.00932584311942884,0.005835164409921957,0.002292386018183626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004011675531821347,0.010445986287404932,0.014822359594846398,0.018260938622121838,0.018026490052080332,0.01711474561303003,0.014405562136994832,0.012477873894431328,0.010602285334099269,0.008231749792568473,0.005209968223144605,0.002214236494836457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036209279150855,0.010211537717363425,0.014666060548152062,0.018000440210964606,0.020397025593611125,0.019589480519023712,0.016932396725219966,0.013988764679143265,0.011982926913232592,0.00914349423161878,0.005574665998764726,0.0018755885603320575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003490678709506885,0.009898939623974751,0.01445766181922628,0.017896240846501717,0.020162577023569623,0.01930293226675076,0.016385350061789778,0.014431611978110555,0.012347624688852714,0.009299793278313118,0.005079719017565989,0.0009638441212817516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030478314105395936,0.009638441212817518,0.014171113566953324,0.017635742435344482,0.020397025593611125,0.019719729724602328,0.0168542472018728,0.014822359594846398,0.012634172941125666,0.009612391371701796,0.005600715839880449,0.0015890403080591044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620862,0.006302815536156766,0.002141147861565217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004614022856612369,0.01221358991456215,0.017310124965330062,0.02110990849430495,0.019903628008916104,0.018697347523527245,0.01613400149207593,0.012605631072313533,0.01103746644130802,0.008594748458395588,0.005337791147845682,0.0025633460314513157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038902545653790553,0.010554954247152476,0.015018192043091239,0.018486248438584197,0.02153210666419105,0.020597239288014692,0.01752122405027311,0.01589274539499816,0.013691283509163498,0.01061526827142192,0.006453600596830371,0.0017792637159485605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004493394808073483,0.012273903938831593,0.0173704389895995,0.02120037953070912,0.02234634599182853,0.02123053654284384,0.018244992341506425,0.016254629540614813,0.013872225581971829,0.010705739307826085,0.006483757608965092,0.0022316188979693806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004402923771669319,0.01221358991456215,0.017400596001734225,0.02141147861565217,0.02472874995047152,0.023552626477217387,0.020235355142398038,0.01640541460128842,0.014203952715453761,0.010977152417038578,0.006815484742447027,0.002683974079990201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004704493893016532,0.01221358991456215,0.017310124965330062,0.02123053654284384,0.021049594470035512,0.02008457008172443,0.01700855484398285,0.014595993873205138,0.012394531987370483,0.009710557907380278,0.006061559439078995,0.0025935030435860376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004282295723130434,0.01197233381748438,0.017129182892521737,0.020959123433631346,0.023914510622834038,0.02291932922238824,0.019782999960377218,0.01643557161342314,0.014083324666914879,0.010826367356364969,0.006574228645369259,0.0021713048736999377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620863,0.0028006924887144036,0.0009153482767993417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020629491014432927,0.0055194134899542386,0.007855600882979425,0.009399397230417121,0.00875728724519967,0.00822447257661498,0.007213490897761977,0.00566969455032428,0.004986598821369548,0.0038526599113046923,0.002404496965920659,0.0011476008246439507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016804154932286424,0.00472702244436675,0.006735323887493662,0.008210810662035885,0.009549678290787162,0.00907151128051885,0.007773629395504855,0.0071998289831828825,0.0062161711334880665,0.004740684358945844,0.002896325890768066,0.0007650672164293005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020083014431269137,0.005574061148270619,0.007882924712137614,0.00942672105957531,0.009973197642739096,0.009495030632470782,0.008087853430824032,0.007377433872711112,0.006298142620962633,0.004849979675578602,0.0029373116345053495,0.0009563340205366256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019263299556523462,0.00549208966079605,0.007773629395504855,0.009549678290787162,0.010956855492433911,0.010519674225902883,0.009098835109677038,0.007377433872711112,0.006393776023016297,0.00495927499221136,0.003060268865717202,0.0011749246538021402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020902729306014824,0.005505751575375145,0.007800953224663046,0.009467706803312595,0.009467706803312595,0.00901686362220247,0.007609686420555722,0.006516733254228149,0.005533075404533333,0.004371812665310289,0.0027050590866607408,0.0011339389100648563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018580203827568724,0.005328146685846914,0.007732643651767573,0.009399397230417121,0.010861222090380249,0.010314745507216462,0.008907568305569715,0.007514053018502058,0.006380114108437203,0.0049319511630531694,0.0029646354636635396,0.0009563340205366256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018170346390195891,0.005300822856688726,0.0077463055663466686,0.00931742574294255,0.010615307627956545,0.010082492959371855,0.008620668099408726,0.007677995993451194,0.006544057083386338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620864,0.005484855647726461,0.0016706744214339223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004129402815242336,0.01125341072550774,0.01588716808306975,0.018787206701407873,0.017179576597763913,0.015761079447489834,0.014279537979425789,0.011663198791142476,0.01011861300528847,0.007659884611480057,0.00485441246982687,0.0021119846459636375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003593526114027682,0.010181657323078432,0.013901272072686032,0.016738266373234202,0.019260039084832575,0.01768393114008359,0.016107823195334606,0.015729557288594855,0.01327082889478644,0.010055568687498512,0.00567398860109634,0.0011663198791142474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039402698618724585,0.0114740658377726,0.016013256718649668,0.019354605561517517,0.019323083402622537,0.017999152729033387,0.01569803512969987,0.01506759195180028,0.012640385716886846,0.009456647668493898,0.0055794221244114,0.0015445857858540034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038772255440824993,0.01134797720219268,0.01607630103643963,0.019228516925937595,0.02162420100195605,0.02001657089831209,0.017305665233343835,0.01582412376527979,0.013459961848156317,0.010402312435343291,0.0060207323489411164,0.001796763057013841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004192447133032296,0.011537110155562557,0.01623391183091453,0.01970134930936229,0.01888177317809282,0.017400231710028774,0.015288247064065135,0.014216493661635828,0.011820809585617374,0.009299036874019001,0.00570551075999132,0.002048940328173678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036565704318176407,0.010654489706503126,0.014878458998430402,0.018188285682403264,0.02074158055289662,0.019323083402622537,0.017179576597763913,0.015918690241964732,0.013239306735891462,0.01011861300528847,0.005863121554466217,0.001513063626959024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035304817962377223,0.010875144818767984,0.015445857858540038,0.01888177317809282,0.020867669188476545,0.01916547260814764,0.016832832849919138,0.016139345354229586,0.013523006165946275,0.01011861300528847,0.004980501105406787,0.0005358767012146543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620865,0.006190979414119581,0.0019076855171414986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004679228626950846,0.012813887624573084,0.018177003512385978,0.02141646948489041,0.019652760233193553,0.017817062848774375,0.016161335796160997,0.013209822354545847,0.01155409530193247,0.008746558125761965,0.005615074352341015,0.0024475965125589035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041753116978946,0.011626083434654794,0.015873383265271716,0.019040861105053826,0.021812404214863176,0.019796736498638192,0.018284985711469453,0.018069021313302493,0.01529747820349315,0.01155409530193247,0.006478931945008863,0.0012957863890017724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004499258295145045,0.013101840155462369,0.01835697384419178,0.02217234487847478,0.021992374546668973,0.020228665294972116,0.01774507471605205,0.017169169654273488,0.014469614677186462,0.010762225841986944,0.006478931945008863,0.0017637092516968572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004391276096061562,0.012921869823656566,0.018392967910552935,0.02202836861303014,0.024547953258311356,0.02238830927664174,0.01958077210047123,0.01821299757874714,0.01551344260166011,0.011914035965544079,0.006838872608620467,0.0020156677162249796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004787210826034328,0.01324581642090701,0.018644926375081063,0.022532285542086382,0.021596439816696206,0.01983273056499935,0.01760109845060741,0.016449288327050282,0.013749733349963256,0.010726231775625783,0.006550920077731184,0.002339614313475423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004139317631533441,0.012165994430072198,0.016953205256106524,0.020804570356750682,0.023612107532921194,0.021848398281224334,0.019544778034110064,0.018392967910552935,0.015261484137131989,0.011698071567377115,0.0067668844758981455,0.001727715185335697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004031335432449959,0.0125259350936838,0.01774507471605205,0.021560445750335052,0.023720089732004672,0.021704422015779695,0.01914884330413731,0.018608932308719902,0.01554943666802127,0.011626083434654794,0.005687062485063335,0.0006118991281397259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003455430370671394,0.011878041899182918,0.01738513405244045,0.02066059409130604,0.02336014906839307,0.021380475418529245,0.019004867038692665,0.018033027246941336,0.015261484137131989,0.011698071567377115,0.006622908210453505,0.0013677745217240936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003815371034282997 +2620866,0.005078564046806936,0.0012091819159064134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003808923035105202,0.010943096338953044,0.01632395586473658,0.020646781214102006,0.020465403926716044,0.018681860600754087,0.015145003496727828,0.01163837594059923,0.009038634821400441,0.006892336920666557,0.004171677609877127,0.0014812478469853564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003174102529254336,0.010247816737306854,0.015356610332011448,0.019860812968762843,0.023246522333300802,0.020828158501487976,0.01710992411007575,0.015386839879909112,0.012424344185938399,0.009220012108786401,0.005048334498909276,0.0006650500537485275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036880048435145602,0.011094244078441342,0.016444874056327222,0.020949076693078612,0.02088861759728329,0.018560942409163447,0.015417069427806773,0.013482378362356509,0.010580341764181116,0.0076480756181080654,0.004504202636751389,0.0009673455327251307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035973161998215804,0.010973325886850703,0.0163844149605319,0.020828158501487976,0.021100224432566914,0.020344485735125404,0.017593596876438314,0.014570642086672282,0.01175929413218987,0.008947946177707458,0.005380859525783539,0.001360329655394715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003990300322491164,0.011215162270031985,0.016626251343713185,0.021221142624157554,0.02167458584262246,0.018591171957061108,0.015870512646271675,0.013119623787584585,0.01064080085997644,0.00819220748026595,0.004957645855216296,0.001541706942780677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035066275561285985,0.010580341764181116,0.016142578577350616,0.020646781214102006,0.023155833689607816,0.02067701076199967,0.017895892355414916,0.014963626209341867,0.012091819159064135,0.008947946177707458,0.0047762685678303315,0.000997575080622791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003325250268742637,0.010429194024692815,0.015870512646271675,0.020344485735125404,0.022944226854324196,0.02079792895359031,0.01735176049325703,0.014812478469853564,0.01191044187167817,0.008706109794526174,0.004171677609877127,0.00015114773948830167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002871807050277732,0.010066439449920892,0.015719364906783374,0.019921272064558158,0.023065145045914837,0.02076769940569265,0.01720061275376873,0.015205462592523146,0.012091819159064135,0.009008405273502778,0.0049878754031139555,0.0009371159848274705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032043320771519956 +2620867,0.0037476750865741556,0.0009313748735864766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027497734363029313,0.007872335241028554,0.011797415065428706,0.014924173569611874,0.014613715278416381,0.013216652968036665,0.010999093745211725,0.00842672504673479,0.006697028852931331,0.005033859435812623,0.0031932852808679193,0.0011753063880972205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002306261591737942,0.0074066478042353135,0.011087796114124722,0.01432543257944914,0.016742572132328326,0.014946349161840126,0.012307453686678443,0.010999093745211725,0.008981114852441022,0.006741380037387832,0.003681148309889408,0.0005100386212497372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026832466596181824,0.0080275643866263,0.011908293026569951,0.015123753899666118,0.015212456268579118,0.013682340404829909,0.01119867407526597,0.009735084988201505,0.007850159648800302,0.005632600425975358,0.003281987649780917,0.0007317945435322317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026167198829334343,0.0079832132021698,0.011863941842113451,0.015057227122981373,0.015500738967546359,0.014857646792927127,0.012817492307928178,0.010577757492874984,0.008626305376789033,0.006563975299561834,0.003925079824400151,0.000997901650271225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028828269896724276,0.008094091163311046,0.01199699539548295,0.015301158637492115,0.015655968113144108,0.013460584482547413,0.011597834735374459,0.009535504658147259,0.007717106095430805,0.006009585493855599,0.003636797125432909,0.0011753063880972205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025280175140204365,0.0076505793187460576,0.011620010327602707,0.014835471200698879,0.01663169417118708,0.01501287593852487,0.012972721453525926,0.010888215784070477,0.008848061299071527,0.006652677668474832,0.003548094756519911,0.000753970135760481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00239496396065094,0.0075397013576048106,0.011464781182004962,0.014680242055101133,0.016542991802274084,0.01501287593852487,0.01261791197787393,0.010777337822929228,0.008781534522386778,0.006430921746192339,0.0030380561352701743,0.00013305355336949666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002084505669455447,0.00722924306640932,0.011309552036407216,0.014347608171677392,0.01658734298673058,0.014901997977383626,0.012418331647819686,0.010999093745211725,0.00875935893015853,0.006608326484018333,0.003681148309889408,0.0006874433590757328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023284371839661917 +2620868,0.011736983809162299,0.0030557827668824923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008403402608926852,0.023960114876692265,0.03555819946917809,0.04500334620317852,0.04375325325309023,0.03965572636113416,0.03333581200235446,0.025557455868471753,0.02020983602642739,0.01611230913447132,0.010070193209044577,0.0038197284586031157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007083860050500323,0.0225711227099275,0.03368306004404565,0.04305875716970784,0.05035096604522288,0.04521169502819324,0.03785003654433995,0.03368306004404565,0.02736314568526595,0.020834882501471537,0.011459185375809347,0.0016667906001177233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008195053783912137,0.02444626213505994,0.03597489711920752,0.04555894306988443,0.046114539936590336,0.04180866421961955,0.03444700573576628,0.030071680410457248,0.024585161351736412,0.01798744855960376,0.010417441250735768,0.0023612866835001074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00805615456723566,0.0243768125267217,0.03597489711920752,0.045489493461546196,0.04792022975338453,0.04569784228656091,0.03930847831944297,0.03236351748561912,0.026390851168530616,0.020418184851442107,0.01222313106752997,0.0031252323752207307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008820100258956284,0.024585161351736412,0.03618324594422224,0.046045090328252096,0.046809036019972716,0.041669765002943074,0.03541930025250162,0.028891037068707194,0.02354341722666284,0.018473595817971433,0.01132028615913287,0.0038197284586031157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00770890652554447,0.023265618793309885,0.035072052210810424,0.04465609816148732,0.05007316761186992,0.04597564071991387,0.03958627675279592,0.03305801356900151,0.02701589764357476,0.02048763445978035,0.010903588509103437,0.0023612866835001074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007292208875515039,0.022848921143280455,0.03472480416911924,0.044378299728134375,0.05014261722020817,0.04576729189489914,0.03861398223606058,0.03305801356900151,0.02701589764357476,0.020418184851442107,0.009584045950676908,0.00034724804169119225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006319914358779701,0.021946076234883347,0.0339608584773986,0.04312820677804609,0.04986481878685521,0.044794997378163795,0.03798893576101644,0.03333581200235446,0.026876998426898283,0.02055708406811858,0.011528634984147584,0.002083488250147154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007083860050500323 +2620869,0.011264695713790436,0.003146563048544815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007866407621362037,0.022340597644668187,0.033164774531662354,0.04172342602370425,0.03989841945554825,0.03599668127535269,0.03115097418059367,0.02397681042991149,0.019382828379036064,0.015732815242724074,0.00988020797243072,0.003901738180195571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006733644923885903,0.020956109903308467,0.030962180397680984,0.0391432443238975,0.04543637042098713,0.041345838457878877,0.03536736866564372,0.031339767963506356,0.025864748259038384,0.019886278466803225,0.010950039408935956,0.0017620753071850963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007740545099420246,0.022969910254377147,0.03354236209748773,0.04184928854564604,0.0423527386334132,0.03826220667030496,0.032283736878069805,0.02875958626369961,0.023662154125057004,0.017557821810880066,0.010320726799226994,0.00239138791689406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0074888200555366605,0.022718185210493565,0.03341649957554594,0.042038082328558726,0.045499301681958024,0.04216394485050052,0.03650013136311985,0.0305845928318556,0.025046641866416728,0.01957162216194875,0.01157935201864492,0.0030207005266030228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008243995187187415,0.02315870403728984,0.03373115588040042,0.042289807372442305,0.04260446367729679,0.038576862975159436,0.03291304948777876,0.027249236000398094,0.02259232268855177,0.01774661559379276,0.010950039408935956,0.0038388069192246735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007174163750682179,0.021837147556901016,0.032220805617098905,0.0408423883701117,0.04581395798681251,0.0423527386334132,0.03650013136311985,0.031088042919622774,0.02536129817127121,0.019634553422919646,0.010572451843110576,0.00239138791689406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006922438706798594,0.02158542251301743,0.0323466681390407,0.0408423883701117,0.0458768892477834,0.04222687611147142,0.03593375001438179,0.030836317875739188,0.025613023215154792,0.01950869090097785,0.009250895362721757,0.00044051882679627406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005978469792235149,0.02070438485942488,0.031654424268360834,0.03989841945554825,0.045625164203899816,0.041345838457878877,0.03530443740467282,0.031339767963506356,0.025487160693212996,0.019634553422919646,0.01120176445281954,0.002139662873010474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006544851140973214 +2620870,0.01936569086788196,0.0057886575963777605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01368228159143834,0.038520885095895636,0.0555711129252265,0.06799041467745515,0.06399097851995779,0.05736033436410688,0.050519193568387716,0.040731099814512596,0.03431095229853,0.02736456318287668,0.01736597278913328,0.007367382395389875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011893060152557939,0.03557393213773968,0.0512559318079267,0.06293849532061636,0.07251609243462323,0.0660959449186406,0.057676079323909314,0.05304515324680711,0.04462528765207582,0.034521448938398286,0.019260442547947818,0.0035784428777607966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013261288311701777,0.03915237501550048,0.05599210620496306,0.06799041467745515,0.06851665627712586,0.061991260441209096,0.05346614652654366,0.04988770364878288,0.0412573414141833,0.031048254380571624,0.018628952628342972,0.00484142271697049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01284029503196521,0.03831038845602736,0.05578160956509478,0.06862190459706,0.07525254875291087,0.06872715291699415,0.060202039002328706,0.052939904926872956,0.04388854941253684,0.034521448938398286,0.020312925747289233,0.005893905916311901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014208523191109044,0.03957336829523704,0.056413099484699615,0.06893764955686242,0.06893764955686242,0.06241225372094566,0.05388713980628023,0.047572240610231756,0.03978386493510533,0.031153502700505754,0.019260442547947818,0.007156885755521593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012314053432294506,0.03694216029688352,0.05367664316641196,0.06630644155850889,0.07441056219343774,0.06883240123692827,0.05999154236246041,0.05367664316641196,0.04420429437233926,0.034416200618464135,0.019049945908079537,0.00484142271697049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011998308472492085,0.036836911976949376,0.05388713980628023,0.06651693819837715,0.07409481723363533,0.06830615963725757,0.059254804122921424,0.052939904926872956,0.04452003933214168,0.03367946237892514,0.01631348958979187,0.0014734764790779752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010314335353545825,0.0353634354978714,0.052624159967070545,0.06472771675949676,0.07367382395389875,0.06672743483824543,0.05809707260364588,0.05378189148634609,0.044414791012207536,0.034205703978595854,0.01968143582768438,0.004104684477431502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011261570232953095 +2620871,0.007209003625381015,0.002233223949166945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005132497146331049,0.014182931045586565,0.020373271115207214,0.02456546344083639,0.022880750637078874,0.020451629850265707,0.018414302738744982,0.01508405649875919,0.013085908754767712,0.010186635557603607,0.006542954377383856,0.0028992731971641036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004583986000921623,0.01296837065217998,0.01825758526862801,0.021979625183906244,0.025270692056362797,0.022919930004608124,0.0208826028930874,0.02025573301261948,0.017160562977809157,0.013125088122296957,0.007287362360439503,0.001488815966111297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00497577967621407,0.014653083455937495,0.020725885422970415,0.024839719013541102,0.02491807774859959,0.02241059822672794,0.019785580602268545,0.01892363451662516,0.01578928511428559,0.012106424566536595,0.0073265417279687476,0.001998147743991477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004858241573626337,0.01433964851570354,0.02064752668791193,0.02491807774859959,0.0274647366380005,0.024722180910953375,0.022175522021552468,0.020529988585324194,0.017121383610279914,0.013360164327472421,0.0077575147707904385,0.002233223949166945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005367573351506518,0.014927339028642211,0.021039320363204377,0.02534905079142129,0.024839719013541102,0.022449777594257182,0.020020656807444016,0.018492661473803473,0.015515029541580877,0.012067245199007353,0.007444079830556484,0.002742555727047125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004544806633392379,0.013516881797589402,0.01927624882438837,0.023742696722722258,0.026837866757532584,0.02480053964601186,0.02209716328649398,0.020725885422970415,0.017082204242750667,0.013281805592413936,0.007561617933144218,0.0019589683764622326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00446644789833389,0.013987034207940337,0.020020656807444016,0.024173669765543953,0.026877046125061827,0.02464382217589488,0.021862087081318513,0.020608347320382685,0.0171997423453384,0.013046729387238467,0.006307878172208388,0.0007444079830556485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038787573853952192,0.013360164327472421,0.019589683764622324,0.023311723679900566,0.02648525244976938,0.02386023482530999,0.021313575935909088,0.020451629850265707,0.017082204242750667,0.013164267489826199,0.007522438565614973,0.0016455334362282749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004192192325629177 +2620872,0.0037856102048283813,0.001072589558034708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026499271433798664,0.007550189241852159,0.011083425433025316,0.013859539583232794,0.013165511045680926,0.011861578641795595,0.010305272224255037,0.00803390610135801,0.006498630851622053,0.005257791951150529,0.0032598310097133277,0.0012829012360807289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022503349550924263,0.00706647238234631,0.010368365727668841,0.012997261703244107,0.015037284980290513,0.013712321408600582,0.011756422802772584,0.010452490398887253,0.008685872303300674,0.00666688019405887,0.003701485533609972,0.0006099038663334614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026078648077706625,0.007718438584288976,0.011209612439852929,0.013901601918841999,0.01400675775786501,0.012555607179347464,0.010810020251565489,0.009716399525726177,0.007970812597944204,0.005930789320897798,0.003449111519954747,0.0008202155443794826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002523740136552254,0.007634313913070569,0.011188581272048326,0.013964695422255808,0.01520553432272733,0.01400675775786501,0.012156014991060024,0.010200116385232025,0.008370404786231642,0.0065406931872312585,0.0038907660438513916,0.001051558390230106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00277611415020748,0.007760500919898181,0.011251674775462133,0.014027788925669612,0.013985726590060409,0.01263973185056587,0.010767957915956283,0.009106495659392715,0.0075291580740475565,0.005909758153093194,0.00368045436580537,0.0012829012360807289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024185842975292435,0.00736090873161074,0.010810020251565489,0.013586134401772967,0.015163471987118121,0.014048820093474213,0.012092921487646215,0.010326303392059638,0.00843349828964545,0.0065406931872312585,0.003533236191173155,0.0008202155443794826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002334459626310835,0.007255752892587729,0.010788989083760886,0.013565103233968364,0.015142440819313525,0.013943664254451201,0.011945703313014002,0.01024217872084123,0.008538654128668458,0.006498630851622053,0.0031336440028857148,0.00016824934243681692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020189921092418034,0.0069613165433233025,0.010578677405714863,0.013270666884703936,0.015100378483704317,0.013754383744209784,0.011777453970577183,0.010473521566691854,0.008538654128668458,0.006603786690645064,0.0037645790370237782,0.0007150597053564719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022293037872878245 +2620873,0.0050530072157332195,0.0013888382405816448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036050694755523542,0.010283312930264093,0.015188571396999268,0.019089138370547716,0.018232195626359044,0.01657740963758091,0.014095230654413716,0.01075610892705785,0.008539877692087135,0.006914641453108614,0.004225614221344154,0.001595686489178911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002954974979960947,0.009692317934271905,0.0143611784026102,0.018202645876559433,0.02109852135692116,0.019059588620748105,0.016104613640787156,0.01439072815240981,0.011731250670444957,0.008983123939081279,0.00496435796633439,0.0007387437449902367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003516420226153527,0.01054926067846058,0.015395419645596533,0.019295986619144986,0.01956193436734147,0.01728660363277154,0.01483397439940395,0.013179188410625821,0.010667459677659018,0.007948882696094945,0.00446201221974103,0.0010342412429863311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003516420226153527,0.010578810428260187,0.015424969395396141,0.019325536368944594,0.02047797661112936,0.01938463586854381,0.016872907135577004,0.013681534157219183,0.011169805424252378,0.008628526941485965,0.005200755964731267,0.0013888382405816448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037528182245504015,0.01054926067846058,0.015424969395396141,0.019502834867742253,0.019355086118744206,0.01728660363277154,0.014745325150005125,0.012233596417038316,0.00992871593266878,0.007771584197297289,0.004875708716935563,0.001625236238978521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00330957197755626,0.01004691493186722,0.014981723148401998,0.018941389621549665,0.021009872107522334,0.019355086118744206,0.01669560863677935,0.01388838240581645,0.011258454673651207,0.008658076691285576,0.004550661469139858,0.0010342412429863311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031322734787586036,0.00986961643306956,0.01486352414920356,0.018852740372150838,0.02106897160712155,0.019266436869345375,0.016370561388983643,0.013977031655215279,0.011465302922248474,0.00880582544028362,0.004166514721744935,0.00014774874899804735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00274812673136368,0.009485469685674637,0.014568026651207466,0.01835039462555748,0.020950772607923114,0.019089138370547716,0.016252362389785207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620874,0.002066334442354008,0.0005379805648732329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014794465534013904,0.004218256701846939,0.006309044806240639,0.00795966699391988,0.0077640376976023375,0.00701820100539172,0.005905559382585715,0.004511700646323249,0.0035702346577950912,0.002861078458644011,0.0018217978219570838,0.0007091561991510796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001271590426064005,0.003973720081450016,0.0059422398756452536,0.007617315725364184,0.008913359813467883,0.007996347486979416,0.006675849736836026,0.005930013044625407,0.00482959825283925,0.0036802761369737064,0.0020174271182746236,0.0002934439444763089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001442766060341852,0.00431607135000571,0.006370178961339871,0.008057481642078647,0.008204203614316802,0.00747059375312603,0.006101188678903255,0.005269764169553713,0.004352751843065247,0.003191202896179859,0.001858478315016623,0.0004157122546747708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014183123983021592,0.004303844518985863,0.006357952130320025,0.008033027980038956,0.008399832910634342,0.008106388966158031,0.006969293681312334,0.005758837410347561,0.004682876280601095,0.003655822474934014,0.0021641490905127776,0.0005379805648732329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015528075395204674,0.004340525012045402,0.006419086285419254,0.008155296290237417,0.008350925586554954,0.007458366922106182,0.006333498468280332,0.005110815366295713,0.004193803039807247,0.0032890175443386275,0.002005200287254777,0.0006847025371113872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013449514121830824,0.004095988391648478,0.006199003327062023,0.007898532838820646,0.00888890615142819,0.008155296290237417,0.00701820100539172,0.005881105720546023,0.004817371421819403,0.003655822474934014,0.0019440661321555458,0.0004157122546747708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012838172570838512,0.004034854236549247,0.006150096002982639,0.00784962551474126,0.008901132982448035,0.008143069459217571,0.006859252202133718,0.005881105720546023,0.004817371421819403,0.0036435956439141676,0.001687302680738776,6.1134155099231e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620875,0.0015529666463147916,0.0004202145042969436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011144819461788502,0.0032246895655830667,0.004814196603575855,0.006029164626869191,0.005773381885123224,0.005261816401631292,0.00439398209927891,0.0033434458385365514,0.0026583134945741427,0.0021193427173237154,0.0012606435128908308,0.0004567548959749387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009043746940303784,0.0031059332926295833,0.004594954253507882,0.0058373275705597165,0.006741702264590096,0.00611138050814468,0.005079114443241318,0.004558413861829889,0.0036997146573970025,0.002804475061286124,0.0015438315483952926,0.0002192423500679706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011144819461788502,0.0033617160343755487,0.0049238177786098385,0.00617532619358117,0.0062118665852591666,0.005481058751699264,0.00469544033062237,0.004174739749210939,0.0033343107406170525,0.0024573413403451696,0.001361129590005317,0.0003105933292629583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001096211750339853,0.0033617160343755487,0.004914682680690339,0.006157055997742173,0.0063306228582126495,0.006129650703983678,0.0053714375766652795,0.004275225826325425,0.0034713372094095345,0.0026674485924936425,0.0016260474296707814,0.00042934960221644233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001169292533695843,0.0033434458385365514,0.004905547582770842,0.0062118665852591666,0.006083975214386183,0.005417113066262773,0.00462235954726638,0.003836741126189486,0.003087663096790585,0.002393395654908679,0.0015164262546367966,0.0004932952876529337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010231309669838627,0.0032064193697440694,0.004814196603575855,0.006065705018547187,0.006650351285395108,0.006074840116466685,0.005280086597470291,0.004311766218003422,0.0034713372094095345,0.0026491783966546448,0.0013793997858443149,0.0003105933292629583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009957256732253666,0.0031607438801465756,0.004750250918139362,0.0060108944310301934,0.0066594863833146075,0.006065705018547187,0.00513392503075831,0.004375711903439912,0.0035718232865240207,0.002731394277930133,0.0013063190024883247,3.65403916779951e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008586992044328847,0.0030419876071930917,0.004677170134783372,0.0058555977663987124,0.0066594863833146075,0.006047434822708189,0.005115654834919312,0.0044670628826349,0.0036174987761215137,0.002740529375849632,0.001525561352556295,0.0002649178396654644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009409150857083735 +2620876,0.004813806534771844,0.001268308308562642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034878478485472647,0.009915864957853382,0.014729671492625225,0.01856342160714412,0.017900442264031834,0.01637270725599047,0.01366313950587937,0.010405893167979857,0.008157528439164265,0.006572143053460962,0.00397787605867374,0.0014989098192103945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028825188830969134,0.009454661936557878,0.014037866960681966,0.017900442264031834,0.02078296114712874,0.01876519792896091,0.015536776779892361,0.014095517338343905,0.011357124399401838,0.00861873146045977,0.004756156157109907,0.0006918045319432593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003430197470885327,0.010261767223825009,0.014989098192103948,0.018909323873115755,0.019139925383763506,0.017150987354426633,0.014326118848991662,0.01268308308562642,0.010232942034994042,0.0074657239072210045,0.004237302758152463,0.0009512312314219816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003401372282054358,0.010204116846163075,0.014931447814442009,0.01882284830662285,0.01948582764973513,0.018851673495453813,0.01637270725599047,0.013259586862245801,0.010809445811613423,0.00827282919448814,0.005015582856588628,0.001297133497393611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036319737927021103,0.010232942034994042,0.015017923380934918,0.01908227500610157,0.01908227500610157,0.016891560654947912,0.014354944037822628,0.01187597779835928,0.009627613069543689,0.007523374284882944,0.004669680590617,0.0015277350080413641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003199595960237574,0.009714088636036598,0.014700846303794259,0.01856342160714412,0.020552359636480992,0.018851673495453813,0.0163438820671595,0.013519013561724523,0.01098239694459924,0.00830165438331911,0.004381428702307309,0.0009512312314219816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030554700160827283,0.009569962691881753,0.014499069981977471,0.018419295662989277,0.020667660391804867,0.018794023117791877,0.01588267904586399,0.013576663939386462,0.011097697699923118,0.008416955138642988,0.00397787605867374,0.00011530075532387652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00265191737244916,0.00922406042591012,0.01423964328249875,0.017929267452862798,0.02058118482531196,0.018649897173637034,0.015767378290540115,0.013807265450034214,0.011126522888754086,0.008474605516304926,0.004727330968278939,0.0008359304760981048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00296899444958982 +2620877,0.005066508603122266,0.0012891116564157244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036574795833190315,0.010582707318947691,0.015919029989691854,0.019996220344867165,0.0194266128687765,0.01771779044050449,0.014569959651582372,0.011092356113344604,0.00869400884559442,0.006775331031394271,0.004077190355175314,0.0014989670423438655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003027913425534608,0.010133017206244531,0.015139567127673042,0.0194266128687765,0.02260442299854549,0.020206075730795307,0.016578575488323154,0.01516954646851992,0.012201591724679064,0.009113719617450704,0.00500654992142851,0.0006895248394781782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036574795833190315,0.011062376772497728,0.016278782079854375,0.020535848480110957,0.020595807161804713,0.018557211984217056,0.015289463831907428,0.013550662062788542,0.0107026246823352,0.007644731915953714,0.004436942445337841,0.0009893182479469513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003537562219931523,0.010942459409110218,0.016098906034773118,0.020266034412489062,0.020236055071642185,0.0200861583674078,0.017537914395423227,0.014240186902266723,0.011512066885200888,0.008753967527288175,0.005306343329897285,0.0013790496789563564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00389731431009405,0.011062376772497728,0.016308761420701257,0.020655765843498472,0.02071572452519222,0.01807754253066702,0.01537940185444806,0.012771199200769735,0.010312893251325795,0.007974504665269366,0.0049166118988878795,0.0015889050648844976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034176448565440137,0.010432810614713302,0.015949009330538732,0.020116137708254676,0.022274650249229838,0.02017609638994843,0.017567893736270105,0.014539980310735496,0.011751901611975904,0.008783946868135053,0.004616818490419106,0.0009893182479469513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003267748152309627,0.010372851933019551,0.015709174603763712,0.019876302981479656,0.022334608930923594,0.020236055071642185,0.016968306919332557,0.014539980310735496,0.011841839634516538,0.008813926208981929,0.004167128377715945,0.00011991736338750924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028180580396064666,0.009923161820316391,0.015529298558682446,0.019366654187082742,0.022364588271770472,0.020116137708254676,0.016818410215098167,0.0149297117417449,0.01190179831621029,0.008933843572369437,0.0049465912397347565,0.0008993802254063193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00311785144807524 +2620878,0.0058167129435466244,0.0014628858899937618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0042145045878391706,0.01198173205137748,0.017902936844209374,0.022814053760617004,0.02239608636347592,0.019748959514915787,0.016858018351356682,0.012991819927801742,0.01055367677781214,0.008080703011394113,0.005189761847835012,0.0019505145199916823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036223841085559812,0.011250289106380597,0.016858018351356682,0.021769135267764313,0.025530841842033993,0.022848884377045426,0.019122008419204174,0.01671869588564299,0.013688432256370201,0.010414354312098447,0.005677390477832934,0.0008011041778537267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004075182122125479,0.012155885133519591,0.017972598077066214,0.02291854560990227,0.02316235992490123,0.020968031089910584,0.01717149389921249,0.01462885889993762,0.012190715749948015,0.008951468422104687,0.005224592464263434,0.001149410342137956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0040403515056970565,0.012155885133519591,0.018111920542779908,0.02302303745918754,0.02438143149989603,0.02288371499347385,0.019609637049202093,0.016370389721358763,0.01330529547565755,0.010275031846384756,0.006095357874974007,0.001497716506422185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0043886576699812855,0.012260376982804862,0.01814675115920833,0.023232021157758076,0.023998294719183383,0.02135116787062324,0.018111920542779908,0.01462885889993762,0.011946901434949055,0.009369435819245759,0.005607729244976087,0.0018808532871348366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038313678071265197,0.011598595270664827,0.017554630679925142,0.02246574759633277,0.0253915193763203,0.023232021157758076,0.019853451364201052,0.016753526502071413,0.013688432256370201,0.010379523695670023,0.00553806801211924,0.001149410342137956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036223841085559812,0.011354780955665868,0.017310816364926183,0.02225676389776223,0.0252521969106066,0.023057868075615967,0.019470314583488406,0.01668386526921457,0.013583940407084931,0.010100878764242642,0.004702133217837092,0.00020898369857053742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031695860949864842,0.01093681355852479,0.017032171433498798,0.021803965884192738,0.025217366294178183,0.022291594514190657,0.019017516569918902,0.01668386526921457,0.013514279174228087,0.010275031846384756,0.005781882327118202,0.001044918492852687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003517892259270713 +2620879,0.0029180012528773006,0.000725183743318619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021582849503530336,0.006250393216222385,0.009410122383539225,0.011792868968728974,0.011602939893097904,0.010618761955736924,0.008581340962603662,0.006509387410264748,0.00505901992362751,0.0038849129106354597,0.0023309477463812757,0.0008633139801412134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001778426799090899,0.005922333903768722,0.008892133995454498,0.011464809656275313,0.013381366692188805,0.01189646664634592,0.009703649136787236,0.00894393283426297,0.007182772314774893,0.0053007478380670495,0.002900734973274476,0.00039712443086495813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002141018670750209,0.0064748548510590994,0.009582785179567468,0.01213819456078546,0.01210366200157981,0.010860489870176461,0.008926666554660144,0.007873423498887866,0.00611226297939979,0.00433383618030889,0.002572675660820815,0.0005525209472903765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002054687272736088,0.006371257173442154,0.009461921222347697,0.011913732925948743,0.011602939893097904,0.011689271291112028,0.010256170084077613,0.008374145607369769,0.0067338490451014634,0.005128085042038807,0.003073397769302719,0.0007942488617299163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022964151871756274,0.006492121130661922,0.009634584018375941,0.012207259679196754,0.012362656195622173,0.010566963116928453,0.009047530511879917,0.007476299068022906,0.006077730420194142,0.004661895492762551,0.002848936134466004,0.0008978465393468617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020028884339276147,0.00611226297939979,0.009392856103936401,0.011913732925948743,0.013225970175763387,0.011810135248331799,0.010307968922886088,0.008564074683000836,0.006941044400335355,0.005128085042038807,0.0027108058976434094,0.0005697872268932008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019165570359134937,0.006094996699796966,0.009254725867113806,0.0117410701299205,0.013208703896160565,0.011965531764757216,0.009962643330829602,0.008529542123795187,0.006906511841129707,0.00505901992362751,0.002417279144395397,6.906511841129706e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016402965622683053,0.0058187362261517776,0.00918566074870251,0.011430277097069666,0.013277769014571863,0.011913732925948743,0.009859045653212654,0.008805802597440375,0.006975576959541003,0.0051798838808472785,0.0028662024140688283,0.000517988388084728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018302256378993722 +2620880,0.006031227806031934,0.0018061430862983336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041928321646211315,0.01193344539161399,0.017190611874946644,0.020996413378218132,0.019738563728831794,0.01757764253629628,0.015448973898873246,0.012643001604088334,0.010740100852452592,0.008579179659917087,0.005482934369119942,0.0023544365232103276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037412963930465483,0.010965868738239884,0.015868257115335363,0.019416038177707085,0.02231876813782941,0.020222352055518842,0.017738905311858632,0.016545560772697237,0.013900851253474674,0.010740100852452592,0.005966722695806995,0.0011288394289364584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00406382194417125,0.012062455612063868,0.01731962209539652,0.02093190826799319,0.021060918488443076,0.018932249851020034,0.016416550552247354,0.015416721343760776,0.012772011824538214,0.009740271643966014,0.005902217585582055,0.0015158700902861012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003934811723721369,0.011772182616051638,0.01725511698517158,0.021125423598668015,0.02309282946052869,0.020867403157768253,0.01848071407944545,0.016513308217584764,0.013707335922799853,0.010772353407565062,0.006289248246931697,0.0018061430862983336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004418600050408425,0.012288223497851164,0.017448632315846403,0.021189928708892955,0.021383444039567774,0.019222522847032263,0.016803581213596996,0.01486842790684878,0.012449486273413517,0.009740271643966014,0.005998975250919464,0.0022576788578729167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037735489481590186,0.011417404509814467,0.01661006588292218,0.020448119941306134,0.022931566684966345,0.02109317104355554,0.01848071407944545,0.016771328658484526,0.013868598698362202,0.010772353407565062,0.005966722695806995,0.0015158700902861012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003676791282821608,0.011417404509814467,0.016674570993147113,0.020448119941306134,0.02280255646451646,0.02093190826799319,0.018254946193658157,0.016513308217584764,0.013900851253474674,0.01054658552177777,0.005095903707770298,0.0004837883266870537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031930029561345534,0.010965868738239884,0.016319792886909944,0.019932079059506606,0.022705798799179052,0.02035136227596872,0.017835662977196045,0.016706823548259586,0.013836346143249734,0.010643343187115182,0.0060957329162568755,0.0012901022044988098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033865182868093764 +2620881,0.0067322477801568725,0.00199071842961628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004669139589463637,0.013283521157621358,0.01921948156593172,0.023454282588933627,0.02193409760631756,0.019436650849162587,0.017156373375238485,0.014116003410006347,0.012161479860928545,0.0096278382232351,0.006225519452618185,0.002678421159847358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004198606142463426,0.012197674741467024,0.017590711941700216,0.021427369278778863,0.024612518766164916,0.022187461770086903,0.019798599654547364,0.018676558357854547,0.01574477303423785,0.012089090099851589,0.0066960528996183955,0.0012668208188467234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004560554947848204,0.013500690440852224,0.019436650849162587,0.023345697947318188,0.023490477469472103,0.0208844460707017,0.01835080443300825,0.017337347777930872,0.014369367573775691,0.01114802320585117,0.0067322477801568725,0.001701159385308457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004415775425694293,0.013247326277082881,0.01936426108808563,0.02359906211108754,0.02569836518231925,0.023019944022471886,0.020739666548547787,0.018785142999469984,0.015636188392622413,0.012197674741467024,0.007094196585541651,0.0019545235490778016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004958698633771461,0.013826444365698527,0.019617625251854974,0.023671451872164493,0.023888621155395362,0.021427369278778863,0.01900231228270085,0.016939204092007616,0.014224588051621781,0.011003243683697258,0.00676844266069535,0.0025336416376934468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004198606142463426,0.012740597949544191,0.01849558395516216,0.022802774739241024,0.025517390779626864,0.023490477469472103,0.020775861429086266,0.01911089692431629,0.015817162795314806,0.012197674741467024,0.006804637541233828,0.001701159385308457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004126216381386471,0.0128853774716981,0.018748948118931505,0.022766579858702545,0.02537261125747295,0.02327330818624123,0.020450107504239964,0.018785142999469984,0.015817162795314806,0.011944310577697681,0.005718791125079494,0.000579118088615645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003583293173309303,0.012378649144159414,0.01835080443300825,0.02222365665062538,0.025336416376934467,0.0225132156949332,0.019943379176701276,0.018929922521623895,0.01570857815369937,0.012016700338774635,0.006877027302310786,0.0014116003410006347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037642675760016925 +2620882,0.003663188308850525,0.0006883843801866759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026551968950057495,0.008063931310758204,0.012194237591878262,0.015537818867070683,0.01558698917994116,0.013472665726510657,0.011899215714655397,0.009096507881038218,0.007424717243442004,0.005605415667234361,0.003909039873202909,0.0014751093861143057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002556856269264796,0.007572228182053436,0.01155502352456206,0.01482484933044877,0.017332535286843094,0.015193626676977346,0.013030132910676366,0.011604193837432537,0.009366944601825841,0.006834673488996281,0.003663188308850525,0.0002458515643523842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002483100799959081,0.007990175841452488,0.012071311809702069,0.015390307928459256,0.015832840744293544,0.013669346977992563,0.012169652435443021,0.010547032110717284,0.008506464126592495,0.006269214890985799,0.003786114091026718,0.0004917031287047684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002507685956394319,0.008137686780063921,0.012366333686924927,0.015759085274987827,0.01716043919179642,0.015144456364106872,0.013153058692852557,0.01172711961960873,0.009465285227566794,0.006957599271172474,0.003909039873202909,0.0004917031287047684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027289523643114657,0.008186857092934395,0.012341748530489688,0.015808255587858304,0.01743087591258404,0.015365722772024014,0.013472665726510657,0.010350350859235377,0.008358953187981065,0.006342970360291513,0.0036386031524152864,0.0011309171960209676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023355898613476507,0.007572228182053436,0.011604193837432537,0.014972360269060202,0.017775068102677382,0.015808255587858304,0.013915198542344949,0.012169652435443021,0.009858647730530608,0.007178865679089621,0.0038352844038971943,0.00044253281583429155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022372492356066967,0.007572228182053436,0.011702534463173491,0.015119871207671633,0.017799653259112622,0.015808255587858304,0.013767687603733517,0.011751704776043967,0.009514455540437271,0.006736332863255329,0.0029502187722286115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9170312870476846e-05,4.9170312870476846e-05,4.9170312870476846e-05,7.375546930571529e-05,0.0001229257821761921,0.0001229257821761921,7.375546930571529e-05,4.9170312870476846e-05,2.4585156435238423e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620883,0.007273200032717993,0.0015385615453826524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005221784638874456,0.015572107762357753,0.023637900106333473,0.029745523210731272,0.02937253859366882,0.02512983857458332,0.022099338560950827,0.01739040777053725,0.014313284679771948,0.010723307740545758,0.007459692341249223,0.0028906307822340748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004895423098944803,0.01445315391117037,0.021819600098153976,0.028020469356817394,0.03254290783869973,0.028206961665348623,0.024943346266052092,0.022192584715216443,0.018183000081794982,0.013334200059982988,0.007179953878452379,0.000652723079859307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00494204617607761,0.015478861608092141,0.023264915489271013,0.029652277056465656,0.0304448693677234,0.026575153965700357,0.023311538566403826,0.020327661629904136,0.016551192382146716,0.012355115440194027,0.007459692341249223,0.0011189538511873836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004848800021811995,0.015525484685224945,0.023637900106333473,0.030025261673528123,0.03282264630149658,0.02895293089947355,0.025642692423044205,0.022612192409411706,0.018509361621724632,0.013613938522779834,0.0076928077269132625,0.0011655769283201913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005361653870272879,0.015665353916623367,0.023637900106333473,0.03007188475066093,0.03263615399296535,0.02909280013087197,0.02550282319164578,0.01995467701284167,0.016178207765084253,0.012308492363061219,0.007133330801319572,0.0022845307795075743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004522438481882342,0.01449977698830318,0.02223920779234925,0.028579946282411093,0.03366186168988712,0.02997863859639531,0.026528530888567544,0.023218292412138207,0.019068838547318327,0.013940300062709484,0.007413069264116414,0.0010257076969217682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004382569250483918,0.014593023142568795,0.022658815486544512,0.02890630782234074,0.03370848476701993,0.02997863859639531,0.026388661657169125,0.022752061640810128,0.018462738544591822,0.013334200059982988,0.00592113079586657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003683223093491803,0.01384705390844387,0.021912846252419592,0.028300207819614242,0.03268277707009816,0.02895293089947355,0.025269707805981746,0.022425700100880477,0.018183000081794982,0.013194330828584563,0.007646184649780455,0.0010257076969217682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004102830787687073 +2620884,0.005287005915041739,0.001234690004111544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003735728730388774,0.010858940292570757,0.016399215952045635,0.0205781667351924,0.019850016219947125,0.01636755723399149,0.015037891075717524,0.011840360552249162,0.010004154905108918,0.0076614097691024,0.005160371042825171,0.002089475391573382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034508002679014952,0.009909178750946495,0.014721303895176101,0.018678643651943876,0.021654563149033232,0.019090206986647717,0.01700073159507434,0.015481113128475511,0.013011733120252425,0.009592591570405073,0.005192029760879314,0.000633174361082843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036724112942804897,0.011143868755058038,0.016525850824262205,0.02054650801713826,0.020863095197679676,0.018108786726969313,0.015892676463179357,0.014183105688255685,0.011840360552249162,0.009022734645430514,0.0054452995053124505,0.0009814202596784068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003545776422063921,0.010985575164787327,0.01646253338815392,0.020641484171300684,0.022382713664278502,0.019913333656055413,0.018045469290861028,0.015987652617341787,0.013075050556360709,0.009782543878729923,0.005571934377529019,0.001044737695786691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00395733975676777,0.011365479781437031,0.016779120568695342,0.020799777761571398,0.021812856739303946,0.01966006391162228,0.01747561236588647,0.014214764406309827,0.011777043116140879,0.008832782337105662,0.005255347196987598,0.0017412294929778185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032925066776307837,0.01041571823981277,0.015512771846529657,0.019786698783838843,0.022730959562874062,0.0205781667351924,0.01829873903529416,0.01633589851593735,0.013423296454956272,0.010004154905108918,0.0054452995053124505,0.0009181028235701224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032608479595766415,0.010574011830083479,0.015987652617341787,0.01981835750189299,0.02276261828092821,0.02022992083659684,0.017950493136698602,0.015671065436800365,0.013043391838306566,0.009655909006513355,0.004337244373417475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620885,0.028112245401080177,0.007765813646707229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019414534116768075,0.055913858256292054,0.08216230838216249,0.10157684249893056,0.09629608921916964,0.08387078738443807,0.0734645970978504,0.05995208135257982,0.051565002614136005,0.04069286350874589,0.02655908267173873,0.011027455378324268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017706055114492483,0.05109905379533357,0.0748624435542577,0.0930344474875526,0.10747886087042806,0.0964514054921038,0.08588989893258196,0.07905598292347961,0.06663068108874802,0.05032247243066285,0.027646296582277734,0.004504171915090193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018948585297965635,0.05653512334802864,0.08309420601976736,0.10126620995306229,0.10173215877186473,0.08992812202886971,0.07905598292347961,0.07330928082491625,0.06103929526311882,0.04690551442611167,0.02826756167401432,0.006367967190299929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01848263647916321,0.056224490802160354,0.08293888974683321,0.10250874013653544,0.11105113514791339,0.0992470984049184,0.08930685693713313,0.08029851310695274,0.06647536481581387,0.05094373752239943,0.02935477558455333,0.007144548554970651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020657064300241234,0.05839891862323835,0.08402610365737223,0.10250874013653544,0.10514911677641588,0.09427697767102577,0.08418141993030637,0.07191143436850894,0.06057334644431638,0.04612893306144094,0.027956929128146027,0.009940241467785252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017395422568624194,0.05389474670814817,0.07890066665054543,0.09862583331318182,0.11120645142084751,0.10173215877186473,0.09008343830180386,0.08169635956336005,0.06740726245341874,0.05125437006826772,0.02826756167401432,0.006212650917365783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01724010629569005,0.054360695526950595,0.08014319683401859,0.09847051704024765,0.11074050260204509,0.10095557740719398,0.08868559184539655,0.08014319683401859,0.06678599736168217,0.05032247243066285,0.023452757213055835,0.0017084790022755907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014755045928743738,0.05218626770587258,0.0787453503776113,0.0964514054921038,0.11027455378324266,0.09722798685677451,0.08635584775138438,0.08029851310695274,0.06647536481581387,0.0501671561577287,0.028578194219882603,0.005280753279760916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015686943566348602 +2620886,0.006160547742070509,0.0018379534700099854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004356630447431077,0.012116878431917683,0.017698811192688752,0.0215448990095615,0.020047307293257068,0.017834955894170973,0.016031038599531543,0.013001818991552122,0.011334046398394913,0.008747297070232711,0.005684041286882734,0.0024506046266799804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003948196342984414,0.01112982934617158,0.015792785371937654,0.019196402908993188,0.022021405464749278,0.019911162591774847,0.018277426173988195,0.017596702666577084,0.01497591716304433,0.011265974047653804,0.0062286200928116184,0.001191266137969435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004254521921319412,0.01259338488710546,0.018073209121764862,0.021715079886414274,0.021715079886414274,0.019298511435104856,0.017290377088242086,0.016371400353237094,0.013648506323592671,0.010415069663389922,0.006330728618923283,0.0015997002424160984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004152413395207746,0.012389167834882128,0.01800513677102375,0.021851224587896494,0.023927431285500372,0.021374718132708723,0.019366583785845957,0.017971100595653197,0.01497591716304433,0.011538263450618244,0.006637054197258281,0.001769881119268875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004594883675024964,0.012899710465440459,0.018345498524729303,0.022191586341602055,0.021919296938637606,0.01980905406566318,0.017834955894170973,0.016167183301013768,0.013648506323592671,0.010449105838760476,0.006364764794293838,0.0022804237498272044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038801239922433037,0.01164037197672991,0.016677725931572095,0.020830139326779844,0.023553033356424263,0.021715079886414274,0.01943465613658707,0.018175317647876527,0.01497591716304433,0.011470191099877134,0.006500909495776061,0.0015656640670455434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003846087816872747,0.012116878431917683,0.017460557965094867,0.02113646490511484,0.023518997181053707,0.0215448990095615,0.019196402908993188,0.01800513677102375,0.015009953338414884,0.011300010223024359,0.00541175188391829,0.0005786149812994399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033015090109438637,0.0115722996259888,0.01712019621138931,0.020387669046962622,0.0231445992519776,0.020762066976038725,0.01871989645380541,0.017868992069541526,0.01490784481230322,0.011300010223024359,0.0064668733204055065,0.0012933746640811014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00353976223853775 +2620887,0.003361271400860103,0.0009681923056825296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023382757571200714,0.006686007243015204,0.0097367263948828,0.011855788799772863,0.011052006508262838,0.009718458615530298,0.008439714060855258,0.0071244339474752175,0.006174509421145189,0.004859229307765149,0.0031785936073350967,0.0013700834514375417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002137330184242565,0.006101438303735185,0.008859872985962771,0.010851060935385333,0.012403822180347879,0.01114334540502534,0.009992475305817804,0.009444441925242787,0.008001287356395246,0.006064902745030186,0.003343003621507602,0.0006028367186325186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00228347241906257,0.006722542801720206,0.009828065291645299,0.011746182123657857,0.011709646564952856,0.010303027554810317,0.009243496352365283,0.008768534089200268,0.007307111741000224,0.005663011599275173,0.0033978069595651033,0.0008037822915100245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022104013016525674,0.006686007243015204,0.009791529732940299,0.011910592137830366,0.012878784443512897,0.011453897654017848,0.01044916978963032,0.009590584160062792,0.008037822915100247,0.0061379738624401875,0.0035439491943851085,0.000913388967625028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002466150212587575,0.006960023933302713,0.009901136409055303,0.011892324358477865,0.012166341048765371,0.010851060935385333,0.009754994174235298,0.008622391854380263,0.007288843961647723,0.005553404923160171,0.0033978069595651033,0.0012422089959700379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020825268461850638,0.006430258332080196,0.009353103028480286,0.011526968771427854,0.012915320002217894,0.011819253241067864,0.010540508686392822,0.009754994174235298,0.008129161811862748,0.006156241641792688,0.0033978069595651033,0.0008037822915100245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020642590668325626,0.006503329449490198,0.009480977483947791,0.01149043321272285,0.012805713326102891,0.011654843226895355,0.010339563113515316,0.009572316380710294,0.008037822915100247,0.006046634965677686,0.002849773578990087,0.0002740166902875084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017902423765450545,0.006229312759202689,0.009280031911070283,0.011234684301787843,0.012714374429340387,0.011179880963730343,0.01008381420258031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620888,0.005450407761707,0.0014427549957459708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003879407877450276,0.011061121634052441,0.016511529395759447,0.02096803927150811,0.020390937273209717,0.018178712946399233,0.015613815176184171,0.011926774631500022,0.009746611526817226,0.007790876977028241,0.004969489429791678,0.0019557345497889823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033664283234072657,0.010387835969370991,0.015485570287673419,0.019845896497039023,0.02324438604257397,0.0210001004936358,0.01769779461448391,0.015549692731928794,0.01276036640681992,0.009746611526817226,0.005322162873196248,0.0007694693310645179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0037832242110672123,0.011253488966818572,0.016639774284270197,0.0210001004936358,0.02141689638129574,0.019429100609379073,0.01606267228597181,0.013882509181289006,0.011542039965967766,0.008624468752348133,0.005033611874047054,0.0010900815523414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036870405446841475,0.011221427744690881,0.016671835506397885,0.021160406604274238,0.022635222822147895,0.021192467826401926,0.01821077416852692,0.015261141732779603,0.012407692963415349,0.009682489082561847,0.005706897538728506,0.0013786325514905942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004039713988088718,0.011381733855329326,0.01680008039490864,0.02132071271491268,0.021929875935338756,0.019813835274911328,0.01686420283916401,0.013561896960012122,0.011189366522563193,0.00875271364085889,0.005322162873196248,0.0018274896612782295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034946732119180185,0.01070844819064787,0.016094733508099493,0.020583304605975846,0.023276447264701662,0.02141689638129574,0.018339019057037675,0.015581753954056482,0.01269624396256454,0.009714550304689536,0.005225979206813183,0.0010900815523414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033664283234072657,0.010548142080009431,0.01603061106384412,0.020487120939592787,0.023276447264701662,0.021352773937040367,0.01808252928001617,0.015485570287673419,0.012728305184692229,0.00961836663830647,0.004456509875748664,0.00016030611063844118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028855099914919416,0.01013134619234948,0.015677937620439546,0.019942080163422082,0.02314820237619091,0.020615365828103534,0.01766573339235622,0.015517631509801105,0.012600060296181478,0.00961836663830647,0.005482468983834689,0.0009938978859583354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032381834348965115 +2620889,0.00758831751116838,0.002126396665217513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005253450584655031,0.014968164761040922,0.0220561536450993,0.027476380438790998,0.02618386481875682,0.02326528116061514,0.020388391554732623,0.016135598224297595,0.013592261036488416,0.010840453587383397,0.006962906727280875,0.002876889605882518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004669733853026694,0.013842425350043418,0.020305003450214288,0.025433371878091818,0.029477694947231008,0.026684193445866825,0.02326528116061514,0.02105549639087929,0.017553196001109272,0.013467178879710915,0.0074215413021317105,0.0012508215677750076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0051283684278775315,0.015260023126855092,0.0223063179586543,0.02739299233427267,0.027768238804605168,0.02489134919872265,0.02126396665217513,0.01947112240503095,0.016052210119779264,0.012132969207417571,0.007338153197613377,0.0017094561426258437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004961592218840864,0.015051552865559259,0.02222292985413597,0.027726544752346,0.030144799783377682,0.027309604229754335,0.02401577410128014,0.020972108286360956,0.017261337635295103,0.013508872931970083,0.00783848182472338,0.0020430085606991787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055453089504692,0.015551881492669258,0.022514788219950132,0.027768238804605168,0.028268567431715172,0.025558454034869324,0.02222292985413597,0.01880401756888428,0.015718657701705926,0.012216357311935908,0.007463235354390877,0.0026684193445866825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004711427905285861,0.01446783613393092,0.02122227259991596,0.026725887498125985,0.030103105731118518,0.027726544752346,0.02414085625805764,0.021389048808952628,0.01751150194885011,0.013550566984229248,0.0074215413021317105,0.0017094561426258437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004628039800767528,0.01446783613393092,0.021430742861211795,0.026725887498125985,0.030061411678859343,0.027601462595568504,0.023848997892243477,0.020972108286360956,0.017553196001109272,0.013342096722933412,0.006295801891134205,0.00045863457485083607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003960934964620857,0.01392581345456175,0.02105549639087929,0.02618386481875682,0.029936329522081844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620890,0.012296417833992065,0.003161936014455103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008572359861411612,0.024452305178452795,0.03653792727814786,0.04637506154534152,0.04489949140526246,0.03955933280307162,0.034711030914240465,0.02663052776618854,0.022344347835482725,0.017706841680948576,0.011453234896804042,0.0044969756650028135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007518381189926578,0.022765939304076745,0.033797582732286766,0.04314286028612074,0.05052071098651598,0.04567240909768482,0.03941880231354028,0.03464076566947479,0.028597954619627265,0.021782225877357377,0.011945091610163725,0.001686365874376055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008291298882348938,0.02494416189181248,0.03695951874674187,0.046304796300575844,0.04714797923776388,0.04236994259369838,0.035765009585725496,0.031549094899785364,0.026068405808063185,0.019674268534387307,0.011734295875866716,0.0024592835667984134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008080503148051931,0.024803631402281142,0.037029783991507546,0.04686691825870119,0.050872037210344334,0.046304796300575844,0.04026198525072831,0.034429969935177794,0.028035832661501916,0.02185249112212305,0.012718009302586084,0.002951140280158096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008923686085239956,0.025365753360406494,0.03738111021533589,0.04700744874823254,0.04841275364354592,0.04384551273377743,0.03794323217346123,0.030635646717831668,0.025436018605172167,0.019744533779152976,0.011945091610163725,0.004145649441174469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007658911679457917,0.023679387486030438,0.035273152872365814,0.04518055238432513,0.05122336343417268,0.047077713992998205,0.04068357671932232,0.035202887627600155,0.028597954619627265,0.021922756366888715,0.011874826365398052,0.0023890183220327444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0074481159451609096,0.023538856996499102,0.0355542138514285,0.04504002189479379,0.05136389392370401,0.04700744874823254,0.04033225049549398,0.03478129615900614,0.028668219864392934,0.021711960632591704,0.009977664756724992,0.00042159146859401377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063941372736758765,0.022625408814545403,0.03478129615900614,0.04419683895760577,0.05101256769987567,0.045250817629090806,0.03913774133447761,0.034851561403771804,0.02838715888533026,0.02157143014306037,0.012366683078757738,0.0021782225877357377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007026524476566896 +2620891,0.009590183023965861,0.002299400608085382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00667387005761367,0.019236448989592342,0.02916312966352191,0.03695865855434796,0.0358930826627962,0.030396954380055533,0.027200226705400246,0.021143269006053386,0.01783437544807686,0.01385248659017291,0.009197602432341528,0.003645391207940239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006000874757686239,0.01772220956475562,0.026527231405472824,0.0338180138213533,0.039538473870736446,0.034995755596226294,0.030957783796661725,0.027480641413703346,0.022937923139193198,0.017105297206488814,0.009309768315662766,0.0011777417748730003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006505621232631811,0.01974119546453791,0.029443544371825007,0.036902575612687345,0.0376316538542754,0.03280852087146216,0.028546217305255105,0.025405572572260438,0.02086285429775029,0.016039721314937055,0.009590183023965861,0.00179465413313981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006337372407649954,0.019685112522877295,0.02955571025514625,0.03746340502929353,0.04037971799564573,0.036061331487778056,0.03224769145485596,0.02815363671363077,0.02288184019753258,0.01744179485645253,0.009982763615590192,0.002018985899782286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007066450649238002,0.020189858997822864,0.029948290846770576,0.0373512391459723,0.039089810337451486,0.03527617030452938,0.031069949679982962,0.024900826097314865,0.020750688414429053,0.015703223664973336,0.009365851257323383,0.0031406447329946673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058887088743650035,0.018619536631325533,0.02781713906366706,0.035724833837814336,0.04082838152893069,0.0373512391459723,0.03269635498814092,0.028826632013558205,0.023386586672478154,0.01772220956475562,0.009590183023965861,0.0017385711914791912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005832625932704382,0.018843868397968006,0.028546217305255105,0.03566875089615372,0.04110879623723378,0.037239073262651065,0.03247202322149843,0.028097553771970152,0.022937923139193198,0.017217463089810054,0.007795528890826049,0.00022433176664247626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004935298866134478,0.01789045838973748,0.02787322200532768,0.03527617030452938,0.040772298587270064,0.03555658501283249,0.031126032621643585,0.02815363671363077,0.022937923139193198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620892,0.0030655211163117834,0.0006916114713630241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021682954237327245,0.00629927204998214,0.009589099589438687,0.012112546849817291,0.011832163820886333,0.009981635829942024,0.008916180320004394,0.006990883521345162,0.00581327479983515,0.004448744059037832,0.003028136712454323,0.0011963009234387447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001981373404445421,0.005794582597906419,0.008710566098788359,0.01115924455145204,0.013009772542396346,0.011346166570739344,0.010093789041514407,0.009009641329648045,0.0074955729734208845,0.005532891770904193,0.0029907523085968613,0.00033645963471714684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002093526616017803,0.006392733059625792,0.009589099589438687,0.012112546849817291,0.012392929878748245,0.010766708310948699,0.009402177570151382,0.008299337656356293,0.00680396150205786,0.005177739934258316,0.0031215977220979737,0.0005233816540044507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002037450010231612,0.00637404085769706,0.009663868397153608,0.012262084465247134,0.013290155571327305,0.011794779417028873,0.010579786291661397,0.009271332156650271,0.007551649579207074,0.005663737184405307,0.0032150587317416267,0.0005794582597906419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002261756433376376,0.006504886271198173,0.009738637204868532,0.012243392263318404,0.012991080340467615,0.01172001060931395,0.010299403262730442,0.00818718444478391,0.006729192694342938,0.005102971126543395,0.003009444510525592,0.0009906867022227105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018879123948017686,0.006000196819122453,0.009065717935434234,0.01166393400352776,0.01349576979254334,0.012224700061389671,0.010766708310948699,0.009495638579795034,0.007757263800423109,0.005775890395977688,0.0031029055201692445,0.0005046894520757203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010093789041514406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620893,0.003201136935457405,0.0007630617113590327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002214740089066461,0.00640227387091481,0.00971507837388817,0.012376488733018456,0.012060097291723249,0.01031063873397327,0.009249796842571689,0.007072279276010547,0.0059369923395983255,0.004615592790659514,0.00307085810668879,0.0011911207201701973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001991404954034548,0.005918381078345665,0.008840349095013182,0.011334258102869532,0.013307051795651422,0.011818150895438674,0.010422306301489225,0.009138129275055732,0.007630617113590326,0.005695045943313756,0.003108080629194108,0.00039083648630584594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002158906305308482,0.006588386483441403,0.009845357202656784,0.012376488733018456,0.012618435129303026,0.01109231170658496,0.009547577022614237,0.008468123869959996,0.00692338918598927,0.005304209457007909,0.0031825256742047457,0.0005955603600850986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002103072521550504,0.006551163960936085,0.009882579725162106,0.012543990084292389,0.013548998191935994,0.012134542336733884,0.010757309004037093,0.009324241887582326,0.007556172068579687,0.0057881022495770516,0.0033314157642260196,0.0006700054050957358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023450189178350757,0.006718665312210019,0.009994247292678062,0.012525378823039729,0.013065105399366849,0.011855373417943993,0.010366472517731247,0.008244788734928083,0.006867555402231293,0.005211153150744613,0.0031266918904467676,0.0010422306301489225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00195418243152923,0.006197549997135557,0.009287019365077006,0.011985652246712608,0.013679277020704608,0.012525378823039729,0.010924810355311025,0.009547577022614237,0.007723673419853622,0.005881158555840347,0.0031825256742047457,0.0005769490988324393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019355711702765703,0.006271995042146194,0.009528965761361578,0.01194842972420729,0.013809555849473226,0.012525378823039729,0.01086897657155305,0.009342853148834982,0.007649228374842986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620894,0.009771485743512937,0.002254958248502986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006764874745508956,0.01983206869837241,0.03012392942230912,0.038507748551358675,0.037871734686396305,0.0324367071130814,0.029025360019192273,0.02202920750460609,0.01832876319937042,0.014223582798249606,0.009424569089897096,0.0035848054206970544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0060710414382772705,0.018444402083909038,0.027811151731536823,0.035905873649239854,0.04209255397205574,0.03740917914824184,0.0323788876708121,0.028273707269691282,0.023301235234530853,0.017461471565330813,0.009482388532166403,0.0010985694031168394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006591416418701036,0.020178985351988258,0.03029738774911704,0.03844992910908938,0.03931722074312898,0.034633845919315086,0.029545734999616043,0.02590311013664968,0.021104096428297175,0.016073804950867434,0.009598027416705018,0.0016767638258099124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0063601386496238066,0.02000552702518034,0.030470846075924964,0.03897030408951314,0.04226601229886366,0.037871734686396305,0.03324617930485171,0.02856280448103782,0.023069957465453622,0.017634929892138735,0.01017622183939809,0.0019658610371564487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007111791399124803,0.020525902005604103,0.030702123845002195,0.03897030408951314,0.04099398456893889,0.0371200819368953,0.03214760990173487,0.025151457387148687,0.020872818659219947,0.015900346624059515,0.009482388532166403,0.003122249882542595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006013221996007962,0.01908041594887142,0.028851901692384357,0.03740917914824184,0.04290202616382604,0.03908594297405175,0.0338821931698141,0.029198818346000202,0.023648151888146698,0.01792402710348527,0.009655846858974323,0.001618944383540605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058397636692000396,0.01908041594887142,0.02937227667280812,0.03735135970597253,0.04324894281744187,0.03908594297405175,0.033708734843006176,0.028736262807845747,0.023474693561338772,0.017461471565330813,0.007863444148625795,5.781944226930732e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0049724720351604305,0.018097485430293193,0.0283893461542299,0.03654188751420222,0.0426129289524795,0.03717790137916461,0.0323788876708121,0.028678443365576435,0.023185596349992236,0.017288013238522887,0.009944944070320861,0.0015611249412712976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0054928470155841975 +2620895,0.0027282282847552,0.0007090310796538937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019113011712409312,0.00548728400775622,0.008123029977773956,0.010111399744629442,0.00964898817094212,0.008292580888125973,0.007321516583382599,0.005903454424074811,0.005071113591437631,0.003976739533710969,0.002620332250894825,0.001078960338603751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017417502608889125,0.005009458714945988,0.007367757740751331,0.00923281775462353,0.010681707352177137,0.009587333294450476,0.008539200394092545,0.00778392815706992,0.006566244346359972,0.004901562681085612,0.002681987127386467,0.000400756697195679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018650600138721983,0.005579766322493686,0.00823092601163433,0.010095986025506532,0.010142227182875262,0.008955370810411136,0.007860996752684474,0.007198206830399313,0.006011350457935185,0.004593288298627397,0.002759055723001021,0.0005703076075476971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018188188565034665,0.005548938884247864,0.008215512292511423,0.010219295778489816,0.011051636611126996,0.009864780238662869,0.008878302214796581,0.007968892786544848,0.006581658065482883,0.004994044995823078,0.0028669517568613956,0.0006473762031622508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002019197205101306,0.005764730951968613,0.008338822045494706,0.010219295778489816,0.010558397599193851,0.009479437260590102,0.008492959236723814,0.0071057245156618465,0.005995936738812276,0.004531633422135755,0.0027282282847552,0.0009402368664975546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016955091035201807,0.005302319378281292,0.00778392815706992,0.009818539081294137,0.011097877768495728,0.010142227182875262,0.008986198248656959,0.008123029977773956,0.006674140380220347,0.00504028615319181,0.002759055723001021,0.0005548938884247863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00168009538439727,0.005348560535650024,0.007922651629176117,0.009787711643048315,0.011082464049372817,0.010065158587260712,0.00886288849567367,0.007922651629176117,0.006566244346359972,0.0049323901193314345,0.0022658167110678777,0.00013872347210619658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620896,0.0023644632508454675,0.0005911158127113669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016633724032110555,0.004783914019152457,0.0071758710287286856,0.00900420598432431,0.008633040241459031,0.007244605425555589,0.006584755216017319,0.005168826641383114,0.004453988914383322,0.0034504667207105365,0.002281981974653184,0.0009210409174805019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015259036095572494,0.004371507638191037,0.006419792663632752,0.008096911946209187,0.009416612365285728,0.008413090171612944,0.007533289892228583,0.0068734396826903126,0.005801183092190624,0.004289026361998754,0.002336969492114706,0.0003161782254037544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016358786444802946,0.004935129692171644,0.007327086701747874,0.009017952863689692,0.009072940381151213,0.00794569627319,0.006997161596978737,0.006309817628709706,0.005292548555671541,0.004027835654056524,0.002433197647672371,0.0004673938984229412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016083848857495328,0.004907635933440883,0.007285846063651731,0.009100434139881975,0.009815271866881766,0.008729268397016697,0.00793194939382462,0.007107136631901782,0.005828676850921385,0.004371507638191037,0.0025019320444992737,0.0005086345365190831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017733474381341002,0.005100092244556212,0.007437061736670919,0.009141674777978117,0.00945785300338187,0.008523065206535988,0.007657011806517009,0.0063235645080750875,0.005333789193767683,0.003972848136595,0.0023782101302108486,0.0007973190031920762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014709160920957265,0.00464644522549865,0.006832199044594172,0.008701774638285935,0.009884006263708668,0.009031699743055071,0.008028177549382285,0.007244605425555589,0.0059249050064790485,0.004453988914383322,0.0024469445270377506,0.0004536470190575607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014709160920957265,0.004728926501690935,0.007052149114440261,0.008688027758920552,0.009911500022439427,0.008949218466862788,0.007904455635093859,0.006983414717613356,0.005787436212825243,0.004330267000094898,0.0019658037492494293,9.622815555766437e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012372191428842562,0.004495229552479464,0.006914680320786453,0.008536812085901369,0.009829018746247146,0.008550558965266748,0.007643264927151626,0.007065895993805641,0.005828676850921385,0.0043027732413641355,0.0024606914064031313,0.0003986595015960381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013471941778073011 +2620897,0.005714455366577359,0.001180987442425988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004266793340377762,0.012762283652022772,0.01920057003169993,0.024000712539624915,0.023467363372077697,0.020572039319678496,0.018133871696605495,0.014248042047332881,0.011733681686038848,0.008762164895418619,0.006095419057682517,0.002361974884851976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004114407863935699,0.011924163531591425,0.01794338985105291,0.02278162872808841,0.026248398317145344,0.023086399680972536,0.020114882890352313,0.018286257173047552,0.015009969429543198,0.010857465196496984,0.005790648104798393,0.0004571564293261889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004000118756604153,0.01268609091380174,0.018971991817036838,0.02388642343229336,0.02438167623073007,0.021105388487225717,0.018933895447926324,0.016571920563074344,0.013600403772454117,0.010019345076065637,0.006019226319461485,0.0008381201204313462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004000118756604153,0.012838476390243802,0.019391051877252506,0.024343579861619554,0.026400783793587405,0.023276881526525114,0.020876810272562624,0.018629124495042195,0.015238547644206296,0.011086043411160077,0.006209708165014066,0.0008762164895418619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004381082447709309,0.01295276549757535,0.019391051877252506,0.02438167623073007,0.02655316927002947,0.023657845217630275,0.02080061753434159,0.016495727824853312,0.013371825557791022,0.010133634183397187,0.005828744473908909,0.0018286257173047557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003733444172830542,0.011924163531591425,0.018171968065716006,0.023124496050083054,0.027200807544908234,0.02403880890873543,0.021562544916551903,0.019086280924368385,0.01580999318086403,0.011390814364044205,0.006095419057682517,0.0007619273822103146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035810586963884784,0.012000356269812457,0.018438642649489613,0.02342926700296718,0.027124614806687198,0.024115001646956458,0.021410159440109846,0.018591028125931677,0.015200451275095778,0.01081936882738647,0.004762046138814467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030096131597307425,0.011428910733154718,0.01786719711283188,0.022667339620756864,0.02636268742447689,0.023543556110298722,0.02045775021234695,0.018324353542158067,0.014971873060432683,0.01062888698183389,0.00617161179590355,0.0007238310130997991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033143841126148685 +2620898,0.0023822639804310587,0.0005039404573988779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017103433705658883,0.005085217342843223,0.00771181609049798,0.009788661611899412,0.00969703607419053,0.008276840239702783,0.00731477209375947,0.005680783337950987,0.004672902423153232,0.003512312278840664,0.002412805826334021,0.0009315263000403499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001572905064002558,0.004733986114959156,0.007177333787196138,0.009254179308597576,0.010781271603745689,0.009361075769257945,0.008276840239702783,0.007238417479002064,0.005894576259271724,0.004367483964123609,0.0023517221345280975,0.00021379292132073604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016187178328570017,0.005039404573988779,0.007604919629837611,0.009712306997142008,0.010002454533220153,0.008780780697101658,0.007620190552789093,0.0066275805609428175,0.005375364878921364,0.004016252736239541,0.002412805826334021,0.00036650215083554755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015881759869540392,0.005069946419891742,0.007727087013449462,0.009880287149608305,0.010811813449648653,0.009544326844675715,0.00838373670036315,0.007299501170807989,0.0059556599510776475,0.004413296732978051,0.0025044313640429088,0.00041231491968999094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001756156139420332,0.005115759188746185,0.00771181609049798,0.009880287149608305,0.010689646066036803,0.0095595977676272,0.008307382085605743,0.006429058562573563,0.005237926572358034,0.004000981813288061,0.002336451211576616,0.0007482752246225761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014812795262936715,0.004733986114959156,0.007268959324905027,0.009391617615160906,0.011056148216872352,0.009880287149608305,0.008673884236441292,0.007513294092128726,0.0061236401035439396,0.004535464116589901,0.00239753490338254,0.0003512312278840664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014354667574392277,0.004749257037910638,0.007391126708516874,0.009498514075821276,0.011101960985726795,0.009910828995511265,0.008658613313489811,0.007391126708516874,0.005970930874029129,0.004336942118220646,0.0019394072148381056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0012064029131670104,0.004520193193638419,0.007162062864244658,0.009299992077452019,0.010735458834891248,0.009605410536481642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620899,0.003324406402881177,0.0006830972060714747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025729994762025542,0.007514069266786222,0.01133941362078648,0.013889643190119984,0.013206545984048511,0.011703732130691268,0.010588006694107858,0.008333785914071992,0.006899281781321895,0.00512322904553606,0.0035065656578335707,0.0014117342258810478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024819198487263583,0.006990361408798091,0.010474157159762612,0.013138236263441364,0.014800439464881953,0.013047156635965167,0.011794811758167462,0.010952325204012644,0.009039653027012514,0.006466653550809961,0.0034382559372264226,0.000296008789297639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002390840221250162,0.007491299359917172,0.011225564086441233,0.013957952910727135,0.014026262631334283,0.012295749709286543,0.011111714552095987,0.009882139581167333,0.008151626659119596,0.005988485506559928,0.0035748753784407175,0.0005009379511190815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002368070314381112,0.007673458614869565,0.011521572875738875,0.014231191793155722,0.015210297788524835,0.013593634400822346,0.012455139057369889,0.011202794179572186,0.009244582188833957,0.006648812805762354,0.0037114948196550128,0.0005464777648571797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002664079103678751,0.007764538242345761,0.01154434278260792,0.014253961700024773,0.015278607509131984,0.013775793655774738,0.012113590454334152,0.009927679394905433,0.008128856752250549,0.006102335040905175,0.0034837957509645215,0.0010929555297143595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002231450873166817,0.007081441036274288,0.010724626135322154,0.013479784866477098,0.015688465832774872,0.013935183003858086,0.012773917753536576,0.01133941362078648,0.009586130791869695,0.006808202153845698,0.003665955005916914,0.00047816804425003225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021403712456906205,0.007126980850012387,0.010997865017750743,0.013730253842036641,0.015597386205298672,0.013935183003858086,0.012568988591715135,0.01104340483148884,0.009153502561357761,0.0064894234576790095,0.0028690082655001936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018215925495239326,0.006830972060714745,0.010610776600976906,0.013297625611524708,0.015301377416001032,0.013775793655774738,0.01220467008181035,0.01108894464522694,0.009039653027012514,0.006352804016464715,0.003597645285309766,0.0003870884167738356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019809818976072764 +2620900,0.005869082096232435,0.001291198061171136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004460502393136651,0.012990235039661124,0.019602734201416335,0.024180618236477634,0.02296767460325626,0.020346151266939106,0.01795939121447125,0.014516196384681558,0.012051181904263937,0.008842750358323534,0.0061429725940566155,0.002504141694392506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004225739109287353,0.011933800262339285,0.017842009572546603,0.02253727524953255,0.025589197939573417,0.02253727524953255,0.019994006341165164,0.01870280827999403,0.015572631162003395,0.011190383196816511,0.005986463738157086,0.0005869082096232436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00418661189531247,0.012951107825686243,0.01932884370359215,0.024141491022502754,0.024493635948276696,0.021363458830286067,0.01901582599179309,0.01698121086509918,0.01412492424493273,0.010446966131293735,0.006338608663931032,0.0009781803493720727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004147484681337588,0.013029362253636007,0.019641861415391215,0.024493635948276696,0.02641086943304596,0.023398073956979973,0.021363458830286067,0.01925058927564239,0.01592477608777734,0.011503400908615576,0.006495117519830562,0.0010173075633469553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004617011249036183,0.01322499832351042,0.019680988629366097,0.024493635948276696,0.026293487791121308,0.023711091668779043,0.02085480504861259,0.01705946529304895,0.013890160961083432,0.010564347773218383,0.006103845380081733,0.0019563606987441453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038344669695385245,0.012051181904263937,0.01835066335422008,0.02320243788710556,0.027115159284593852,0.023984982166603223,0.021872112611959545,0.01940709813154192,0.016511684297400585,0.011816418620414637,0.006338608663931032,0.0008999259214223067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003717085327613876,0.012168563546188583,0.018820189921918678,0.02359371002685439,0.0269977776426692,0.02406323659455299,0.02175473097003489,0.019133207633717737,0.015846521659827573,0.01130776483874116,0.005047410602759893,3.9127213974882904e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003130177117990632,0.01162078255054022,0.018155027284345666,0.022928547389281385,0.02644999664702084,0.023554582812879504,0.020815677834637707,0.019094080419742854,0.015729140017902928,0.01107300155489186,0.006338608663931032,0.0008216714934725409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003482322043764578 +2620901,0.0031560769914979717,0.0007403143560303886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022988708950417323,0.00670179311774878,0.010091653590098452,0.012507416225566033,0.011903475566699141,0.01018906337378666,0.009156519666691646,0.007403143560303884,0.006175780285832449,0.004617223746821107,0.0031560769914979717,0.001285809144684359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021430152411405982,0.006097852458881883,0.009059109883003437,0.011416426648258097,0.013091874927695289,0.011494354475208664,0.010208545330524304,0.009565640758182123,0.00802656617590842,0.005844587021292538,0.0031365950347603294,0.0003701571780151943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022209430680911655,0.006799202901436987,0.01007217163336081,0.01246845231209075,0.012624307965991887,0.010948859686554692,0.009682532498607977,0.008688952704988241,0.0072862518198780315,0.005493911800014988,0.003331414602136748,0.0005649767453916122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021430152411405982,0.00670179311774878,0.010052689676623167,0.012526898182303675,0.013578923846136334,0.012039849263862631,0.011007305556767618,0.009916315979459677,0.008162939873071914,0.005980960718456033,0.003389860472349673,0.0006039406588668959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023962806787299414,0.006916094641862839,0.010228027287261944,0.012624307965991887,0.013306176451809348,0.012039849263862631,0.010656630335490065,0.008786362488676452,0.007247287906402748,0.005474429843277346,0.003214522861710897,0.001052025663832657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019871595872394637,0.006351117896471227,0.009487712931231556,0.01200088535038735,0.013832189283725678,0.012351560571664899,0.011143679253931109,0.009994243806410244,0.008377241397185972,0.006117334415619525,0.0033119326453991066,0.0005454947886539704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019676776305018215,0.006429045723421794,0.009760460325558542,0.012078813177337916,0.013812707326988036,0.01223466883123905,0.010987823600029976,0.009702014455345616,0.008123975959596632,0.005903032891505466,0.0026495461163192845,7.79278269505672e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001636484365961911,0.006039406588668958,0.009409785104280989,0.011825547739748572,0.013578923846136334,0.011883993609961497,0.010598184465277138,0.00987735206598439,0.008143457916334274,0.005825105064554898,0.003331414602136748,0.000487048918441045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018313039333383288 +2620902,0.00233574872154409,0.0005063511214536139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018457315072341405,0.005406523264553104,0.008150619664688817,0.009914681636204632,0.009261325350458037,0.00823228920040714,0.007497263378942218,0.005945542200294048,0.0049818416788178135,0.003658795200180952,0.0024990877929807398,0.0010127022429072278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017967297858031462,0.005014509493105145,0.007480929471798553,0.009326660979032692,0.01037203103622725,0.009195989721883374,0.008379294364700125,0.007889277150390176,0.0065662306717533155,0.00467149744308818,0.0024990877929807398,0.0002286747000113095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017150602500848214,0.005390189357409438,0.008052616221826826,0.009980017264779293,0.009980017264779293,0.008803975950435415,0.00793827887182117,0.007154251328925255,0.005912874386006717,0.004328485393071215,0.002613425142986394,0.0003920137714479592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001698726342941156,0.005504526707415093,0.008264957014694473,0.010159690243359608,0.010813046529106208,0.009686006936193323,0.0089509811147284,0.008117951850401489,0.006745903650333629,0.004818502607381165,0.002695094678704719,0.0004083476785916241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019274010429524658,0.005586196243133418,0.008264957014694473,0.010159690243359608,0.010813046529106208,0.009816678193342643,0.008624302971855102,0.007186919143212585,0.005896540478863052,0.004442822743076869,0.002548089514411734,0.000800361450039583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001600722900079166,0.0050635112145361386,0.007693270264666197,0.00963700521476233,0.011156058579123168,0.009914681636204632,0.00917965581473971,0.008166953571832484,0.0069909122574886035,0.004949173864530484,0.0026624268644173895,0.0003593459571606292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015353872715045062,0.005112512935967134,0.007889277150390176,0.0,0.0,0.0,0.0,0.0,0.0,0.0008330292643269132,0.00210707402153278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533562857465985e-05,0.0001960068857239796,0.00014700516429298465,9.80034428619898e-05,6.533562857465985e-05,3.2667814287329924e-05,1.6333907143664962e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6333907143664962e-05 +2620903,0.002898050650702446,0.0008445747610618559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020865964685057616,0.005713299854241966,0.008429187321185973,0.01028393973763554,0.009538726713169195,0.008495428478916314,0.007733655165017387,0.006143867379489187,0.005398654355022844,0.004057270910983426,0.0026827668880788362,0.0011426599708483933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019044332847473222,0.005233051460696987,0.007369328797500506,0.008992237161893873,0.01031706031650071,0.009340003239978172,0.00876039310983768,0.008462307900051143,0.007220286192607239,0.0053655337761576724,0.0029477315190002025,0.0005464895512753186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020369156002080055,0.00602794535346109,0.00866103137324217,0.010482663210826563,0.01038330147423105,0.009207520924517485,0.00836294616345563,0.00789925805934324,0.006607555483601578,0.004951526540343037,0.0030470932555957154,0.0007452130244663434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020037950213428342,0.0059617041957307475,0.008627910794376999,0.010515783789691735,0.011542521734512031,0.01031706031650071,0.009356563529410755,0.008743832820405098,0.00728652735033758,0.0055642572493486975,0.0031630152816238136,0.0007948938927640998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021859582051012745,0.006193548247786942,0.008843194557000607,0.010731067552315345,0.010466102921393975,0.009538726713169195,0.008644471083809583,0.007849577191045483,0.006657236351899335,0.005050888276938549,0.0030470932555957154,0.0010432982342528808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018381921270169807,0.005498016091618356,0.007833016901612899,0.00991961337011866,0.011277557103590663,0.010432982342528808,0.009389684108275929,0.008793513688702854,0.00725340677147241,0.0054814558021857715,0.003129894702758642,0.000728652735033758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018381921270169807,0.005829221880270064,0.008379506452888218,0.010168017711607443,0.011277557103590663,0.01035018089536588,0.009290322371680414,0.008743832820405098,0.007236846482039824,0.005448335223320599,0.0025668448620507385,0.00026496463092136655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001573227496095614,0.005547696959916111,0.00823046384799495,0.009754010475792807,0.010996032183236712,0.010018975106714172,0.009075038609056806,0.008611350504944413,0.007220286192607239,0.005431774933888015,0.0030802138344608854,0.0005796101301404892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001705709811556297 +2620904,0.002382909182721882,0.00047658183654437637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001857025776879811,0.005505341904909176,0.008167626646984658,0.009663107582348045,0.00859490691423134,0.007921118800496186,0.00719802911746334,0.005850452889993032,0.004913723073336846,0.0035004114201362814,0.002267872187693929,0.0008874282473584938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018405919204472466,0.00489728921690428,0.007082992122435385,0.00859490691423134,0.009334430453696752,0.008430568349905692,0.007937552656928751,0.007871817231198492,0.006770748850216657,0.004749384509011199,0.0024979461777498353,0.00024650784648847055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017912903511495529,0.005620378899937129,0.008134758934119527,0.009811012290241125,0.009548070587320092,0.008578473057798776,0.0078225156619008,0.00719802911746334,0.006064093023616376,0.004453575093225035,0.0026622847420754822,0.0003944125543815529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017091210689867287,0.005521775761341739,0.008266229785580044,0.009975350854566776,0.010780609819762447,0.009876747715971386,0.009235827315101362,0.00852917148850108,0.0071651614045982115,0.005094495494095058,0.0027937555935359996,0.0004437141236792469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019556289154752,0.00573541589496508,0.008348399067742868,0.00995891699813421,0.010123255562459858,0.009498769018022398,0.008644208483529033,0.007707478666872845,0.006491373290863057,0.004732950652578633,0.002612983172777787,0.0007230896830328469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016105179303913405,0.0051930986326904445,0.007740346379737975,0.009482335161589833,0.010583403542571668,0.00989318157240395,0.009235827315101362,0.008463436062770823,0.007181595261030775,0.005061627781229929,0.002711586311373176,0.00037797869794898816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015776502175262116,0.0053245694841509645,0.008052589651956705,0.009548070587320092,0.010435498834678586,0.009695975295213174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.930156929769411e-05,6.57354257302588e-05,1.64338564325647e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620905,0.008291647628554293,0.0018298808559568092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006747685656340734,0.020014321862027597,0.02870625592782244,0.03442463360268747,0.0300214827930414,0.027676947946346737,0.025389596876400734,0.019899954308530296,0.01732668435484104,0.012523247107954416,0.00800572874481104,0.003202291497924416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0066333181028434334,0.01766978701533294,0.02504649421590883,0.029964299016292755,0.033338141844463126,0.029792747686046804,0.028134418160335947,0.02744821283935214,0.024017186234433125,0.016983581694349135,0.008977852949538095,0.0009721242047270549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006576134326094784,0.0204717920760168,0.028992174811565692,0.03459618493293343,0.03339532562121177,0.029907115239544105,0.027505396616100786,0.02493212666241153,0.02161546761098981,0.01561117105238153,0.00960687449377325,0.0015439619722135577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006175847888854231,0.019785586755033,0.02916372614181165,0.03516802270041993,0.038198762868098396,0.03505365514692263,0.03185136364899821,0.029792747686046804,0.02521804554615478,0.01818444100607079,0.0098927933775165,0.0016583295257108584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006976420763335335,0.020643343406262758,0.0295640125790522,0.035568309137660487,0.03551112536091183,0.032651936523479315,0.030536136783779252,0.02721947773235754,0.023559716020443915,0.016926397917600484,0.009549690717024599,0.0026304537304379133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005832745228362329,0.0188706463270546,0.02744821283935214,0.03356687695145772,0.03756974132386325,0.03528239025391723,0.032651936523479315,0.029678380132549503,0.024817759108914227,0.018012889675824845,0.009835609600767849,0.0014295944187162574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0057183776748650295,0.0194424840945411,0.02836315326733055,0.03368124450495502,0.03631169823539293,0.03408153094219557,0.03122234210476306,0.028477520820827846,0.023902818680935824,0.016754846587354537,0.007662626084319139,0.0003431026604919018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004803437246886625,0.018298808559568093,0.02756258039284944,0.033052222960719864,0.03682635222613079,0.034481817379436126,0.031622628542003615,0.028820623481319745,0.024360288894925024,0.017097949247846436,0.009035036726286744,0.0006290215442351532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005318091237624476 +2620906,0.0053469564440268395,0.0012818046269927352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0044313817104606,0.012927915237955303,0.018531232607380693,0.02190054762690445,0.019117200436863085,0.017652280863157104,0.01574788541733932,0.012451816376500861,0.010913650824109576,0.00783731971932701,0.005163841497313592,0.0021241333818736757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0042482667637473515,0.011353126696221372,0.01596762335339522,0.019007331468835133,0.021131464850708808,0.019263692394233683,0.0180185107565836,0.017176182001702657,0.015235163566542226,0.010840404845424275,0.005786432316138634,0.0007324597868529917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004211643774404703,0.01311103018466855,0.01842136363935274,0.022120285562960352,0.021387825776107358,0.019117200436863085,0.01783539580987035,0.01611411531076582,0.013806866982178893,0.009998076090543338,0.00615266220956513,0.0010986896802794876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041017748063767534,0.012891292248612655,0.01875097054343659,0.022340023499016246,0.024500779870232577,0.0222301545309883,0.01966654527700283,0.018604478586065988,0.01593100036405257,0.01149961865359197,0.006335777156278378,0.0011719356589647869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045412506784885485,0.013257522142039152,0.018934085490149834,0.022742876381785397,0.022486515456386847,0.02058212001056907,0.019190446415548387,0.017102936023017358,0.014795687694430432,0.01076715886673898,0.00611603922022248,0.0017579034884471804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003845413880978207,0.01223207844044496,0.017652280863157104,0.021424448765450015,0.024061303998120783,0.0224498924670442,0.020728611967939663,0.01864110157540864,0.01571126242799667,0.011389749685564022,0.006262531177593079,0.0010254437015941884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003735544912950258,0.012525062355186158,0.018055133745926242,0.021570940722820606,0.023072483285869243,0.021387825776107358,0.019813037234373426,0.0180185107565836,0.015125294598514277,0.010840404845424275,0.004944103561257694,0.00032960690408384623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031495770834678648,0.011902471536361115,0.0175790348844718,0.020984972893338213,0.022852745349813342,0.021644186701505905,0.01955667630897488,0.017762149831185046,0.015418278513255475,0.010913650824109576,0.005823055305481282,0.0005493448401397438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034791839875517113 +2620907,0.0022317146091845857,0.0005465423532696943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018369895762675836,0.005343969676414789,0.007636411213740452,0.009124220953196841,0.008076681442763262,0.007393503501176142,0.006695143827553756,0.005237697552167905,0.004615246538721865,0.0033551627797945133,0.002216532877149316,0.0009109039221161572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017762626481265067,0.004767063859074556,0.006740689023659564,0.008046317978692723,0.00897240363284415,0.008152590102939608,0.0075453208215288375,0.007241686180823451,0.006361145722777832,0.004524156146510246,0.002429077125643086,0.0003036346407053858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017610809160912373,0.005404696604555866,0.00768195640984626,0.00918494788133792,0.00891167670470307,0.007924864122410568,0.007347958305070334,0.006695143827553756,0.00573869470933179,0.004174976309699054,0.0025808944459957787,0.0004554519610580786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017003539879501602,0.0052984244803089805,0.007742683337987338,0.009321583469655344,0.010156578731595154,0.00913940268523211,0.0083044074232923,0.007788228534093144,0.006649598631447949,0.004782245591109825,0.002626439642101587,0.00047063369309334794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018977165044086611,0.005480605264732213,0.00784895546223422,0.009488582522043305,0.009473400790008036,0.008592860331962417,0.008031136246657453,0.007059505396400219,0.006133419742248791,0.004448247486333902,0.0025657127139605096,0.0007590866017634644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015940818637032754,0.005009971571638866,0.007272049644893988,0.008896494972667804,0.010065488339383536,0.009291220005584805,0.008577678599927148,0.007773046802057875,0.0065129630431305235,0.004751882127039288,0.002626439642101587,0.00042508849698754005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015485366675974676,0.005146607159956289,0.007454230429317221,0.008957221900808882,0.009670763306466535,0.009002767096914688,0.008243680495151222,0.0075453208215288375,0.006270055330566216,0.004508974414474978,0.0020798972888318927,0.00013663558831742358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620908,0.0036011268225823816,0.0008459022737609622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029002363671804423,0.008483191374002793,0.012253498651337366,0.014791205472620259,0.013147738197884671,0.012011812287405667,0.01094839228610617,0.008410685464823282,0.007419771372703299,0.005413774552070158,0.0035286209134028712,0.0014501181835902212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028035618216077605,0.0075164459182759805,0.010730874558567638,0.012906051833952966,0.014452844563115871,0.0128818831975598,0.012084318196585177,0.01162511410511494,0.01022333319431106,0.0072264222815579355,0.003866981822907256,0.00045920409147023677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028277304580009307,0.008700709101541327,0.012446847742482732,0.014863711381799767,0.014428675926722699,0.012785208651987115,0.011770125923473962,0.010682537285781297,0.009184081829404734,0.006718880917301357,0.0041570054596253014,0.0007008904554019401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002706887276035079,0.008483191374002793,0.012446847742482732,0.015129566382124641,0.016313829565389987,0.014646193654261236,0.013534436380175395,0.012591859560841754,0.010658368649388126,0.00768562637302817,0.004205342732411641,0.0007250590917951106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0030210795491462943,0.00884572091990035,0.012688534106414432,0.01532291547327,0.015298746836876832,0.014017809108038804,0.013051063652311987,0.011310921832003723,0.009884972284806675,0.007105579099592084,0.00410866818683896,0.0011842631832653472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024893695484965463,0.007975650009746217,0.01160094546872177,0.014356170017543187,0.016192986383424136,0.01496038592737245,0.013872797289679781,0.012543522288055413,0.01041668228545642,0.007661457736635,0.0042295113688048105,0.0006525531826155995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024893695484965463,0.00828984228285743,0.012060149560192007,0.014404507290329526,0.01563710774638122,0.014622025017868063,0.013341087289030036,0.012084318196585177,0.01012665864873838,0.0072264222815579355,0.003311103185864339,0.00019334909114536282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020785027298126507,0.007830638191387195,0.011818463196260303,0.014138652290004657,0.015878794110312924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620909,0.0033366000517405514,0.0007291907397843591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026295060010405676,0.007755937868615453,0.011291408122115374,0.013722043921396573,0.012153178996405981,0.011026247853102883,0.0101423802897279,0.0077117444904467045,0.006805780237987351,0.005015948422153014,0.003204019917234305,0.0012816079668937217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002541119244703069,0.006827876927071723,0.009810929953462284,0.011777535281971618,0.013235916761540335,0.011556568391127871,0.011004151164018507,0.010672700827752889,0.009368996171774793,0.006584813347143604,0.0035133735644155466,0.00039774040351874115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026074093119561924,0.008087388204881071,0.011578665080212245,0.013677850543227824,0.013324303517877834,0.011755438592887241,0.010761087584090388,0.00974463988620916,0.008396741852062316,0.006187072943624863,0.0038006305225124163,0.0006187072943624863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0024748291774499454,0.007822227935868578,0.011512375012959122,0.013987204190409065,0.014871071753784045,0.013412690274215329,0.012573016089009095,0.011600761769296617,0.009722543197124787,0.007004650439746719,0.003866920589765539,0.0006408039834468609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027841828246311885,0.008197871650302944,0.011755438592887241,0.014031397568577816,0.014053494257662186,0.012992853181612214,0.012086888929152858,0.010407540558740396,0.009125932591846672,0.006474329901721733,0.003734340455259292,0.001038544386965602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022538622866062007,0.007380294154181086,0.010672700827752889,0.013258013450624705,0.014738491619277799,0.013788333988649695,0.012749789601684092,0.011622858458380993,0.009567866373534163,0.007070940506999844,0.003866920589765539,0.0005745139161937373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022980556647749493,0.007667551112277955,0.011203021365777874,0.013191723383371583,0.01438494459392781,0.013567367097805953,0.012329952509080977,0.011026247853102883,0.009346899482690418,0.006606910036227979,0.0030272464045593083,0.00013258013450624708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019224119503405824,0.007203520641506092,0.010959957785849758,0.013103336627034086,0.014716394930193426,0.013346400206962206,0.012219469063659106,0.011401891567537247,0.009612059751702913,0.006739490170734225,0.003601760320753046,0.00030935364718124317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620910,0.0027307647510331134,0.0005649858105585751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002165778940474538,0.006384339659311899,0.009322265874216489,0.011243217630115645,0.010019081707238734,0.008907942946473535,0.00834295713591496,0.0065726682628314236,0.005668690965937704,0.0041432292774295516,0.0026554333096253033,0.0010546401797093402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021281132197706327,0.005687523826289656,0.008173461392747387,0.009830753103719206,0.0109042261437805,0.00969892308125554,0.009058605829289154,0.00887027722576963,0.007702639883948573,0.005386198060658416,0.002862594773496781,0.00028249290527928753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021281132197706327,0.0065915011231833754,0.009472928757032107,0.011224384769763689,0.01097955758518831,0.00969892308125554,0.008889110086121583,0.008116962811691528,0.0069304926095185215,0.005103705155379128,0.003088589097720211,0.00047082150879881266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002052781778362823,0.006459671100719708,0.00949176161738406,0.011469211954339075,0.012203693508065223,0.011073721886948072,0.010452237495333642,0.009680090220903588,0.00806046423063567,0.0057628552676974665,0.003182753399479973,0.0005084872295027176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022976089629382053,0.006666832564591187,0.00962359163984773,0.011450379093987124,0.011638707697506644,0.01082889470237269,0.009906084545127015,0.00856895146013839,0.007438979839021239,0.005292033758898654,0.002994424795960447,0.0008474787158378627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018832860351952507,0.006083013893680659,0.008832611505065724,0.010885393283428546,0.012053030625249601,0.011243217630115645,0.010376906053925827,0.009604758779495778,0.00804163137028372,0.005781688128049418,0.003145087678776068,0.0004331557880949076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018832860351952507,0.00623367677649628,0.009209268712104774,0.010866560423076595,0.011921200602785934,0.011186719049059785,0.010188577450406305,0.009152770131048916,0.00774030560465248,0.005442696641714273,0.002448271845753825,5.6498581055857516e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.766572070390501e-05,5.6498581055857516e-05,3.766572070390501e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620911,0.0014067685780744402,0.00027942663537095045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011080711402641139,0.003295307217133278,0.0048466068135030365,0.00572342832449464,0.005048950239116484,0.004682804992768342,0.004239576536662697,0.003439838235428597,0.002900255767126072,0.00206197586101322,0.0013296853683169366,0.000520311665863149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010888003378247378,0.002900255767126072,0.004191399530564257,0.005058585640336171,0.005501814096441816,0.005000773233018044,0.004653898789109278,0.004682804992768342,0.004027597709829562,0.002823172557368569,0.001483851787831944,0.0001445310182953192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010598941341656743,0.003353119624451405,0.004817700609843974,0.005800511534252144,0.005627074312297761,0.005058585640336171,0.004624992585450214,0.00426848274032176,0.0036036400561632914,0.0026400999341944973,0.0015898412012485112,0.00023124962927251072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010020817268475463,0.0032567656122545257,0.004894783819601477,0.005887230145229336,0.006397906409872796,0.0058679593427899595,0.005472907892782754,0.005068221041555859,0.00426848274032176,0.0030447867854213905,0.0016572890097863269,0.0002601558329315745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0011562481463625535,0.0034012966305498452,0.0049333254244802284,0.005896865546449024,0.0059546779537671506,0.005598168108638697,0.005106762646434612,0.004634627986669902,0.0038830666915342423,0.002823172557368569,0.0015609349975894474,0.00042395765366626964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009442693195294186,0.0030929637915198304,0.004605721783010839,0.005617438911078074,0.006253375391577477,0.005877594744009647,0.005482543294002441,0.005029679436677109,0.004258847339102073,0.0030062451805426393,0.0016091120036878868,0.00022161422805282277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009249985170900429,0.0031796824024970223,0.0047791590049652225,0.005655980515956824,0.006137750576941221,0.005713792923274952,0.005270564467169306,0.004817700609843974,0.00403723311104925,0.002823172557368569,0.001262237559779121,1.9270802439375892e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007804674987947237,0.0030158805817623274,0.004567180178132087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620912,0.007184788119057623,0.00136853107029669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00547412428118676,0.01637349673390683,0.024633559265340423,0.02864140025692359,0.024486930936380064,0.023118399866083376,0.020430213835143447,0.017351018926975895,0.014125195689847981,0.009677469711383736,0.0062072659259885575,0.0024926815923261144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0053763720618798545,0.013831939031927261,0.020332461615836534,0.02468243537499388,0.026637479761132,0.023802665401231715,0.022727390988855744,0.023656037072271353,0.020088081067569277,0.014271824018808341,0.007478044776978344,0.0007820177544552514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005131991513612589,0.016520125062867187,0.023851541510885168,0.029374541901725386,0.027859382502468333,0.025513329239102583,0.022727390988855744,0.02170099268613323,0.01774202780420352,0.013147673496778913,0.008064558092819783,0.0012219027413363306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004985363184652229,0.016324620624253373,0.024780187594300777,0.029521170230685744,0.03269811735816021,0.03005880743687373,0.027468373625240707,0.025806585897023303,0.021603240466826323,0.015591478979451574,0.00850444307970086,0.0014174071799501432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005718504829454026,0.017057762269055175,0.024926815923261143,0.029961055217566826,0.029374541901725386,0.027712754173507978,0.025024568142568045,0.02414479816880589,0.01955044386138129,0.014516204567075605,0.007917929763859423,0.002101672715098489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004740982636384963,0.01554260286979812,0.023509408743311,0.028739152476230493,0.03181834738439805,0.029912179107913377,0.02761500195420107,0.025464453129449127,0.021603240466826323,0.015249346211877403,0.008113434202473235,0.0011730266316828772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0045943543074246015,0.015982487856679203,0.024193674278459344,0.028690276366577037,0.03069419686236862,0.028445895818309773,0.02605096644529057,0.024193674278459344,0.020332461615836534,0.014076319580194525,0.006451646474255826,0.00019550443861381285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038612126626228036,0.015249346211877403,0.0227762670985092,0.028543648037616682,0.030743072972022074,0.0289346569148443,0.026344223103211283,0.025122320361874957,0.02067459438341071,0.01446732845742215,0.007282540338364529,0.0003421327675741725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004203345430196978 +2620913,0.0036606510717226387,0.0007521885763813642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00288338954279523,0.008600022723293597,0.01291257056121342,0.015093917432719373,0.012611695130660872,0.011934725411917646,0.010204691686240507,0.008549876818201504,0.007070572617984824,0.0047889339362946854,0.0031090461157096388,0.0012787205798483192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027830977326110478,0.007170864428169005,0.010580785974431189,0.012737059893391097,0.013890415710509191,0.012436184462838555,0.011583704076273005,0.011633849981365097,0.010104399876056325,0.0072460832858071405,0.0038612346920910033,0.00042624019328277296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002682805922426865,0.008675241580931733,0.012386038557746462,0.015269428100541691,0.01461753133434451,0.01291257056121342,0.01145833931354278,0.010756296642253506,0.008900898153846143,0.006719551282340187,0.004162110122643548,0.0006769697187432276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00265773296988082,0.008650168628385687,0.01291257056121342,0.015194209242903557,0.017024534778764876,0.015645522388732375,0.014090999330877556,0.012837351703575282,0.010806442547345597,0.007948125957096413,0.0043626937430119115,0.0007521885763813642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029836813529794115,0.008951044058938233,0.012987789418851554,0.015720741246370507,0.01524435514799565,0.014316655903791964,0.012561549225568782,0.012185454937378097,0.010054253970964235,0.007471739858721549,0.0041370371700975034,0.0010781369594799555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025323682071505924,0.00819885548255687,0.012360965605200416,0.015093917432719373,0.016598294585482103,0.015695668293824468,0.014266509998699871,0.012812278751029235,0.010856588452437687,0.00774754233672805,0.004162110122643548,0.0006518967661971822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002457149349512456,0.008524803865655461,0.012636768083206918,0.015068844480173328,0.015795960104008647,0.014416947713976145,0.013238518944312012,0.01200994426955578,0.010004108065872142,0.0070956455705308685,0.003284556783531957,0.00017551066782231828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620914,0.0082335218284384,0.0017153170475913335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0066897364856062,0.0200692094568186,0.029903693863008913,0.035163999475622335,0.02910321257413296,0.027502249996381047,0.02321395737740271,0.01886848752350467,0.01589527130767969,0.010749320164905688,0.00714715436496389,0.002858861745985556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006403850311007645,0.016810107066395068,0.02464338825039549,0.02950345321857093,0.03224796049471707,0.02910321257413296,0.02658741423766567,0.025844110183709423,0.022813716732964735,0.01652422089179651,0.008805294177635514,0.0009720129936350889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006232318606248513,0.0200692094568186,0.02858861745985556,0.035221176710542056,0.03390610030738869,0.029560630453490645,0.02658741423766567,0.02441467931071665,0.020240741161577737,0.015266321723562869,0.009491420996672046,0.0015437853428322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006232318606248513,0.020183563926658023,0.02967498492333007,0.03487811330102378,0.03950946932952038,0.03533553118038147,0.03224796049471707,0.028760149164614692,0.024243147605957516,0.018010828999709003,0.009948838876029733,0.0017153170475913335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006861268190365334,0.020640981806015715,0.029846516628089202,0.036193189704177134,0.03527835394546176,0.03316279625343245,0.028760149164614692,0.027387895526541625,0.02269936226312531,0.01692446153623449,0.009434243761752335,0.002458621101547578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005889255196730244,0.019040019228263802,0.02853144022493585,0.03487811330102378,0.03842310186604587,0.036307544174016555,0.032591023904235336,0.028702971929694975,0.02441467931071665,0.017553411120351314,0.009491420996672046,0.0014866081079124888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005660546257051399,0.019611791577460912,0.028988858104293528,0.03476375883118437,0.03636472140893626,0.03316279625343245,0.030475466212206034,0.02710200935194307,0.02247065332344647,0.016295511952117668,0.007490217774482157,0.0004574178793576889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004745710498336023,0.018925664758424384,0.027502249996381047,0.03407763201214782,0.03607883523433771,0.03379174583754927,0.030075225567768045,0.027502249996381047,0.02344266631708156,0.016810107066395068,0.008519408003036955,0.0004002406444379778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005145951142774 +2620915,0.0030805014000971275,0.0006725038267817674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025381596043053795,0.00748431678192612,0.010911916931329963,0.012907734739843598,0.011020385290488313,0.01026110677637987,0.009133035841133032,0.00733246107910443,0.006226083815689264,0.004425509053660663,0.002863564681780429,0.0011280709352468352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00247307858881037,0.006486407877669303,0.009284891543954722,0.011172240993310005,0.012300311928556842,0.011063772634151656,0.01026110677637987,0.010065863729894839,0.008807630763657984,0.006312858503015943,0.003340825462077167,0.00036879242113838843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0023863039014836904,0.007527704125589459,0.010738367556676608,0.013037896770833616,0.012517248646873539,0.011215628336973342,0.010044170058063169,0.009219810528459712,0.007874802874896178,0.0057922103790558664,0.003579455852225536,0.0005857291394550875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00234291655782035,0.0075060104537577905,0.011063772634151656,0.013124671458160297,0.014382904424397151,0.013189752473655308,0.011974906851081794,0.010976997946824977,0.009328278887618061,0.006811812955144352,0.003731311555047225,0.0006291164831184274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002624934291632059,0.007744640843906158,0.011150547321478334,0.013428382863803675,0.013189752473655308,0.01223523091306183,0.011107159977814994,0.010282800448211539,0.008742549748162975,0.0063996331903426245,0.003557762180393866,0.0009545215605934761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022127545268303315,0.007115524360787732,0.010478043494696566,0.01275587903702191,0.014209355049743794,0.013384995520140337,0.012213537241230159,0.011020385290488313,0.009328278887618061,0.006681650924154334,0.0036445368677205446,0.0005423417957917478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002147673511335321,0.007289073735441089,0.010694980213013267,0.012799266380685249,0.013580238566625366,0.01258232966236855,0.011541033414448395,0.010434656151033226,0.008720856076331305,0.006161002800194255,0.0028418710099487586,0.00015185570282168936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001778881090196933,0.00696366865796604,0.010304494120043209,0.012495554975041867,0.013645319582120374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620916,0.006874696835291438,0.0013844875571073036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005442468327939057,0.01623192308332701,0.023822734172294642,0.028023937793861628,0.02420466177425527,0.022629210416167653,0.02033764480440384,0.016661591635532724,0.014035839372053356,0.009882376700731443,0.006301805432350488,0.0024825294127441304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005346986427448897,0.014035839372053356,0.02033764480440384,0.024538848425970834,0.026734932137244483,0.024061438923520036,0.022581469465922575,0.02286791516739305,0.019621530550727653,0.013892616521318117,0.007304365387497156,0.000763855203921271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005156022626468578,0.016327404983817167,0.02348854752057909,0.028501347296312422,0.027307823540185443,0.024777553177196227,0.0222950237644521,0.020671831456119394,0.017473187789699075,0.012794574665681291,0.007829515840193028,0.001193523756126986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004965058825488261,0.016136441182836848,0.024061438923520036,0.0287877929977829,0.03150902716175243,0.029074238699253376,0.02678267308748956,0.024825294127441305,0.020958277157589876,0.015038399327200025,0.008211443442153665,0.0013367466068622243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005633432128919373,0.016757073536022883,0.02425240272450035,0.029121979649498454,0.0290264977490083,0.027164600689450195,0.024729812226951146,0.023106619918618444,0.019144121048276855,0.014035839372053356,0.00773403393970287,0.0020528608605384162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0046786131240177855,0.015324845028670498,0.02286791516739305,0.027785233042636234,0.031031617659301635,0.029121979649498454,0.02687815498797972,0.024682071276706068,0.020910536207344798,0.014847435526219708,0.007924997740683188,0.0011457828058819065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004583131223527626,0.015706772630631135,0.023440806570334007,0.02792845589337148,0.029933575803664805,0.027880714943126394,0.025398185530382266,0.02348854752057909,0.019669271500972727,0.013653911770092722,0.006254064482105406,0.00019096380098031774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003819276019606355,0.014847435526219708,0.022390505664942256,0.027546528291410837,0.030220021505135284,0.028262642545087025,0.025923335983078128,0.024109179873765117,0.020051199102933365,0.014035839372053356,0.007208883487006995,0.0003819276019606355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004201203621566991 +2620917,0.002432301351937632,0.000489725104416973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018609553967844973,0.005550217850059026,0.008357975115383005,0.00974552957789776,0.008145760903468984,0.007688684139346475,0.006643937249923599,0.0056481628709424215,0.004636064321814011,0.003166889008563092,0.002007872928109589,0.000832532677508854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018119828863428,0.004636064321814011,0.006823503121543157,0.008243705924352378,0.008945645240683373,0.007966195031849425,0.0075254424378741495,0.007737656649788173,0.006643937249923599,0.00476665768299187,0.002530246372821027,0.0002938350626501837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017303620356066377,0.0055991903605007234,0.00806414005273282,0.009892447109222853,0.009337425324216952,0.008423271795971932,0.007492794097579685,0.007133662354340573,0.005827728742561977,0.004391201769605523,0.0027261364145878156,0.0004407525939752755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0017303620356066377,0.0055991903605007234,0.00839062345567747,0.009908771279370085,0.01108411152997082,0.01013730966143134,0.00914153528245016,0.008504892646708097,0.007133662354340573,0.0052237344471143775,0.002873053945912908,0.0005060492745642054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019425762475206595,0.005811404572414745,0.008439595966119167,0.010186282171873036,0.009794502088339457,0.009206831963039092,0.008227381754205145,0.00806414005273282,0.006594964739481901,0.004913575214316962,0.002709812244440584,0.0007019393163309946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016487411848704753,0.005321679467997773,0.008015167542291124,0.009778177918192228,0.01074130395687894,0.01013730966143134,0.009239480303333556,0.008439595966119167,0.007149986524487805,0.005093141085936518,0.0027424605847350485,0.00042442842382804316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001583444504281546,0.005501245339617329,0.00819473341391068,0.009729205407750527,0.010251578852461966,0.009419046174953113,0.008619161837738724,0.00793354669155496,0.006578640569334669,0.004701361002402939,0.0021711146295819135,0.00011426919103062701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013385819520730594,0.0052727069575560755,0.007672359969199242,0.009663908727161599,0.010251578852461966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/test/channel_loss/channel_forcing/qlat/202208010000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010000NEXOUT.parquet new file mode 100644 index 000000000..86d7ef4ae Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010100NEXOUT.parquet new file mode 100644 index 000000000..437dc154e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010200NEXOUT.parquet new file mode 100644 index 000000000..dcadd4f85 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010300NEXOUT.parquet new file mode 100644 index 000000000..c76e83e47 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010400NEXOUT.parquet new file mode 100644 index 000000000..083167829 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010500NEXOUT.parquet new file mode 100644 index 000000000..c93b685fa Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010600NEXOUT.parquet new file mode 100644 index 000000000..75048f8b4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010700NEXOUT.parquet new file mode 100644 index 000000000..ade20d9de Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010800NEXOUT.parquet new file mode 100644 index 000000000..bdf219566 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208010900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208010900NEXOUT.parquet new file mode 100644 index 000000000..0e33a4e38 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208010900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011000NEXOUT.parquet new file mode 100644 index 000000000..e7bd8583d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011100NEXOUT.parquet new file mode 100644 index 000000000..25cb9369c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011200NEXOUT.parquet new file mode 100644 index 000000000..6b73e0238 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011300NEXOUT.parquet new file mode 100644 index 000000000..f4c74a31e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011400NEXOUT.parquet new file mode 100644 index 000000000..8a6c8bcb5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011500NEXOUT.parquet new file mode 100644 index 000000000..26a93cb5d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011600NEXOUT.parquet new file mode 100644 index 000000000..d8add9da2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011700NEXOUT.parquet new file mode 100644 index 000000000..e71b3c0d2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011800NEXOUT.parquet new file mode 100644 index 000000000..b7177df27 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208011900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208011900NEXOUT.parquet new file mode 100644 index 000000000..8cf3ff6df Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208011900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208012000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208012000NEXOUT.parquet new file mode 100644 index 000000000..ec245cc3a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208012000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208012100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208012100NEXOUT.parquet new file mode 100644 index 000000000..5dc86b941 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208012100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208012200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208012200NEXOUT.parquet new file mode 100644 index 000000000..5d4462a2b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208012200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208012300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208012300NEXOUT.parquet new file mode 100644 index 000000000..18e1814cb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208012300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020000NEXOUT.parquet new file mode 100644 index 000000000..23b295b8e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020100NEXOUT.parquet new file mode 100644 index 000000000..f1b3bf396 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020200NEXOUT.parquet new file mode 100644 index 000000000..d9c8007ac Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020300NEXOUT.parquet new file mode 100644 index 000000000..629eff444 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020400NEXOUT.parquet new file mode 100644 index 000000000..fcdb1513d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020500NEXOUT.parquet new file mode 100644 index 000000000..3641d093a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020600NEXOUT.parquet new file mode 100644 index 000000000..fdc2e7e24 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020700NEXOUT.parquet new file mode 100644 index 000000000..0f4b359f0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020800NEXOUT.parquet new file mode 100644 index 000000000..326ec23b9 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208020900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208020900NEXOUT.parquet new file mode 100644 index 000000000..da81f223f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208020900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021000NEXOUT.parquet new file mode 100644 index 000000000..417a1cee2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021100NEXOUT.parquet new file mode 100644 index 000000000..afcd76a79 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021200NEXOUT.parquet new file mode 100644 index 000000000..6141f140c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021300NEXOUT.parquet new file mode 100644 index 000000000..dd767a48f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021400NEXOUT.parquet new file mode 100644 index 000000000..347e8a665 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021500NEXOUT.parquet new file mode 100644 index 000000000..f2f8d415c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021600NEXOUT.parquet new file mode 100644 index 000000000..fa72e20d5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021700NEXOUT.parquet new file mode 100644 index 000000000..c851d7022 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021800NEXOUT.parquet new file mode 100644 index 000000000..4df6c72a7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208021900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208021900NEXOUT.parquet new file mode 100644 index 000000000..21b4369ef Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208021900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208022000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208022000NEXOUT.parquet new file mode 100644 index 000000000..eb7bc6ada Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208022000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208022100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208022100NEXOUT.parquet new file mode 100644 index 000000000..3f760cdaf Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208022100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208022200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208022200NEXOUT.parquet new file mode 100644 index 000000000..ce688b1eb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208022200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208022300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208022300NEXOUT.parquet new file mode 100644 index 000000000..176a7b4bf Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208022300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030000NEXOUT.parquet new file mode 100644 index 000000000..cf1b85a6a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030100NEXOUT.parquet new file mode 100644 index 000000000..cfbce63a0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030200NEXOUT.parquet new file mode 100644 index 000000000..51dfe25bb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030300NEXOUT.parquet new file mode 100644 index 000000000..7c3ab6c70 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030400NEXOUT.parquet new file mode 100644 index 000000000..3197b4938 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030500NEXOUT.parquet new file mode 100644 index 000000000..52a3b3c64 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030600NEXOUT.parquet new file mode 100644 index 000000000..ca999777e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030700NEXOUT.parquet new file mode 100644 index 000000000..4b49ea5e1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030800NEXOUT.parquet new file mode 100644 index 000000000..66a569853 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208030900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208030900NEXOUT.parquet new file mode 100644 index 000000000..fdb9f915b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208030900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031000NEXOUT.parquet new file mode 100644 index 000000000..35f334977 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031100NEXOUT.parquet new file mode 100644 index 000000000..caabb0745 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031200NEXOUT.parquet new file mode 100644 index 000000000..c8cc68333 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031300NEXOUT.parquet new file mode 100644 index 000000000..30e079652 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031400NEXOUT.parquet new file mode 100644 index 000000000..f99feaedc Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031500NEXOUT.parquet new file mode 100644 index 000000000..79b417348 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031600NEXOUT.parquet new file mode 100644 index 000000000..da66e4f5f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031700NEXOUT.parquet new file mode 100644 index 000000000..5ac2faffe Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031800NEXOUT.parquet new file mode 100644 index 000000000..1e6cf54b4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208031900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208031900NEXOUT.parquet new file mode 100644 index 000000000..f2d2050c2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208031900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208032000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208032000NEXOUT.parquet new file mode 100644 index 000000000..1dc515768 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208032000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208032100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208032100NEXOUT.parquet new file mode 100644 index 000000000..67bc9cca3 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208032100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208032200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208032200NEXOUT.parquet new file mode 100644 index 000000000..b73ae3122 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208032200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208032300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208032300NEXOUT.parquet new file mode 100644 index 000000000..b40866eff Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208032300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040000NEXOUT.parquet new file mode 100644 index 000000000..f94992b20 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040100NEXOUT.parquet new file mode 100644 index 000000000..2ec5b9e5b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040200NEXOUT.parquet new file mode 100644 index 000000000..a9976fd32 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040300NEXOUT.parquet new file mode 100644 index 000000000..10ec6562c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040400NEXOUT.parquet new file mode 100644 index 000000000..bddf23f2b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040500NEXOUT.parquet new file mode 100644 index 000000000..de52fd5bd Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040600NEXOUT.parquet new file mode 100644 index 000000000..14d5a6acb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040700NEXOUT.parquet new file mode 100644 index 000000000..5f3b62239 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040800NEXOUT.parquet new file mode 100644 index 000000000..5ab3d7e8d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208040900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208040900NEXOUT.parquet new file mode 100644 index 000000000..330bcc1b3 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208040900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041000NEXOUT.parquet new file mode 100644 index 000000000..fa455b208 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041100NEXOUT.parquet new file mode 100644 index 000000000..f03cec4da Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041200NEXOUT.parquet new file mode 100644 index 000000000..d9f9acd55 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041300NEXOUT.parquet new file mode 100644 index 000000000..fe6f1a54d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041400NEXOUT.parquet new file mode 100644 index 000000000..e049b047b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041500NEXOUT.parquet new file mode 100644 index 000000000..31f3abb71 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041600NEXOUT.parquet new file mode 100644 index 000000000..4fc7550e7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041700NEXOUT.parquet new file mode 100644 index 000000000..04a5ae3a8 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041800NEXOUT.parquet new file mode 100644 index 000000000..a06f2c504 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208041900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208041900NEXOUT.parquet new file mode 100644 index 000000000..94f8cc413 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208041900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208042000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208042000NEXOUT.parquet new file mode 100644 index 000000000..10db8ecf7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208042000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208042100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208042100NEXOUT.parquet new file mode 100644 index 000000000..3ade11366 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208042100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208042200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208042200NEXOUT.parquet new file mode 100644 index 000000000..a5058fc67 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208042200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208042300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208042300NEXOUT.parquet new file mode 100644 index 000000000..c9c681d65 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208042300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050000NEXOUT.parquet new file mode 100644 index 000000000..8d492dbe3 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050100NEXOUT.parquet new file mode 100644 index 000000000..77df46d06 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050200NEXOUT.parquet new file mode 100644 index 000000000..4c91f5fc0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050300NEXOUT.parquet new file mode 100644 index 000000000..b0242bc18 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050400NEXOUT.parquet new file mode 100644 index 000000000..5b9290fba Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050500NEXOUT.parquet new file mode 100644 index 000000000..5c19ab0b4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050600NEXOUT.parquet new file mode 100644 index 000000000..8d116a44a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050700NEXOUT.parquet new file mode 100644 index 000000000..e4d64af35 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050800NEXOUT.parquet new file mode 100644 index 000000000..9afe7d121 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208050900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208050900NEXOUT.parquet new file mode 100644 index 000000000..c1b31f95e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208050900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051000NEXOUT.parquet new file mode 100644 index 000000000..4683582a0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051100NEXOUT.parquet new file mode 100644 index 000000000..4164ef63e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051200NEXOUT.parquet new file mode 100644 index 000000000..d6af5f92a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051300NEXOUT.parquet new file mode 100644 index 000000000..508a31ae0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051400NEXOUT.parquet new file mode 100644 index 000000000..91f6d5f73 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051500NEXOUT.parquet new file mode 100644 index 000000000..8edcac8b1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051600NEXOUT.parquet new file mode 100644 index 000000000..ff964b427 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051700NEXOUT.parquet new file mode 100644 index 000000000..9d50099db Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051800NEXOUT.parquet new file mode 100644 index 000000000..07e40c0ce Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208051900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208051900NEXOUT.parquet new file mode 100644 index 000000000..fbf05f65c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208051900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208052000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208052000NEXOUT.parquet new file mode 100644 index 000000000..40114063d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208052000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208052100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208052100NEXOUT.parquet new file mode 100644 index 000000000..ed91e1ad1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208052100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208052200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208052200NEXOUT.parquet new file mode 100644 index 000000000..467b0d22e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208052200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208052300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208052300NEXOUT.parquet new file mode 100644 index 000000000..ae8d7e59e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208052300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060000NEXOUT.parquet new file mode 100644 index 000000000..2a9526751 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060100NEXOUT.parquet new file mode 100644 index 000000000..74433aae8 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060200NEXOUT.parquet new file mode 100644 index 000000000..57b99e8e4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060300NEXOUT.parquet new file mode 100644 index 000000000..84b7d3444 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060400NEXOUT.parquet new file mode 100644 index 000000000..03292a7fb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060500NEXOUT.parquet new file mode 100644 index 000000000..0df2339bf Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060600NEXOUT.parquet new file mode 100644 index 000000000..ba22c8934 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060700NEXOUT.parquet new file mode 100644 index 000000000..ac19b99b6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060800NEXOUT.parquet new file mode 100644 index 000000000..fd852be91 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208060900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208060900NEXOUT.parquet new file mode 100644 index 000000000..6fbc3a64b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208060900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061000NEXOUT.parquet new file mode 100644 index 000000000..92aafe19f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061100NEXOUT.parquet new file mode 100644 index 000000000..683ca9516 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061200NEXOUT.parquet new file mode 100644 index 000000000..0d1459659 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061300NEXOUT.parquet new file mode 100644 index 000000000..fe1dc0e07 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061400NEXOUT.parquet new file mode 100644 index 000000000..10e68e4d1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061500NEXOUT.parquet new file mode 100644 index 000000000..9926812b6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061600NEXOUT.parquet new file mode 100644 index 000000000..e52a29579 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061700NEXOUT.parquet new file mode 100644 index 000000000..9f4ed60fe Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061800NEXOUT.parquet new file mode 100644 index 000000000..f6c116305 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208061900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208061900NEXOUT.parquet new file mode 100644 index 000000000..02625d93c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208061900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208062000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208062000NEXOUT.parquet new file mode 100644 index 000000000..9eb06ea94 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208062000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208062100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208062100NEXOUT.parquet new file mode 100644 index 000000000..7aa3a3df1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208062100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208062200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208062200NEXOUT.parquet new file mode 100644 index 000000000..2a14b2d57 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208062200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208062300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208062300NEXOUT.parquet new file mode 100644 index 000000000..a963b0188 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208062300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070000NEXOUT.parquet new file mode 100644 index 000000000..508773930 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070100NEXOUT.parquet new file mode 100644 index 000000000..d5a97793e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070200NEXOUT.parquet new file mode 100644 index 000000000..34d91d1d4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070300NEXOUT.parquet new file mode 100644 index 000000000..716d1a521 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070400NEXOUT.parquet new file mode 100644 index 000000000..e5640bd61 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070500NEXOUT.parquet new file mode 100644 index 000000000..9eb76b84c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070600NEXOUT.parquet new file mode 100644 index 000000000..772d7daec Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070700NEXOUT.parquet new file mode 100644 index 000000000..00ca3886e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070800NEXOUT.parquet new file mode 100644 index 000000000..1b12b5c77 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208070900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208070900NEXOUT.parquet new file mode 100644 index 000000000..c32a381d6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208070900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071000NEXOUT.parquet new file mode 100644 index 000000000..fd242e066 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071100NEXOUT.parquet new file mode 100644 index 000000000..1a7461bbf Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071200NEXOUT.parquet new file mode 100644 index 000000000..ad1808786 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071300NEXOUT.parquet new file mode 100644 index 000000000..5263c6628 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071400NEXOUT.parquet new file mode 100644 index 000000000..39d2d6bd7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071500NEXOUT.parquet new file mode 100644 index 000000000..6b46d3b2f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071600NEXOUT.parquet new file mode 100644 index 000000000..b78c83769 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071700NEXOUT.parquet new file mode 100644 index 000000000..8ce809ddb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071800NEXOUT.parquet new file mode 100644 index 000000000..8e9fd3c7b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208071900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208071900NEXOUT.parquet new file mode 100644 index 000000000..f586c3372 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208071900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208072000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208072000NEXOUT.parquet new file mode 100644 index 000000000..8d0dc1aae Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208072000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208072100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208072100NEXOUT.parquet new file mode 100644 index 000000000..8c7b962c0 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208072100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208072200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208072200NEXOUT.parquet new file mode 100644 index 000000000..ccf40a1a7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208072200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208072300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208072300NEXOUT.parquet new file mode 100644 index 000000000..4f9f011ff Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208072300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080000NEXOUT.parquet new file mode 100644 index 000000000..32452a2e8 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080100NEXOUT.parquet new file mode 100644 index 000000000..4f0c21057 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080200NEXOUT.parquet new file mode 100644 index 000000000..563b4d268 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080300NEXOUT.parquet new file mode 100644 index 000000000..006888680 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080400NEXOUT.parquet new file mode 100644 index 000000000..d509b7765 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080500NEXOUT.parquet new file mode 100644 index 000000000..1079cdd66 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080600NEXOUT.parquet new file mode 100644 index 000000000..99317c01c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080700NEXOUT.parquet new file mode 100644 index 000000000..9e50a3eb5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080800NEXOUT.parquet new file mode 100644 index 000000000..8e9d3da7f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208080900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208080900NEXOUT.parquet new file mode 100644 index 000000000..46856f3ad Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208080900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081000NEXOUT.parquet new file mode 100644 index 000000000..3538b1210 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081100NEXOUT.parquet new file mode 100644 index 000000000..ee586b25f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081200NEXOUT.parquet new file mode 100644 index 000000000..d741e9c9c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081300NEXOUT.parquet new file mode 100644 index 000000000..b55a68aaf Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081400NEXOUT.parquet new file mode 100644 index 000000000..310036a93 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081500NEXOUT.parquet new file mode 100644 index 000000000..581ca38b9 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081600NEXOUT.parquet new file mode 100644 index 000000000..21afa7c57 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081700NEXOUT.parquet new file mode 100644 index 000000000..9a07f0df8 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081800NEXOUT.parquet new file mode 100644 index 000000000..2aac23bfd Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208081900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208081900NEXOUT.parquet new file mode 100644 index 000000000..acf11fd1c Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208081900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208082000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208082000NEXOUT.parquet new file mode 100644 index 000000000..24cfb2735 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208082000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208082100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208082100NEXOUT.parquet new file mode 100644 index 000000000..f0e975824 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208082100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208082200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208082200NEXOUT.parquet new file mode 100644 index 000000000..fe980076b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208082200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208082300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208082300NEXOUT.parquet new file mode 100644 index 000000000..b8efa7386 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208082300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090000NEXOUT.parquet new file mode 100644 index 000000000..949ffd420 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090100NEXOUT.parquet new file mode 100644 index 000000000..782f93c1a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090200NEXOUT.parquet new file mode 100644 index 000000000..6089303b5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090300NEXOUT.parquet new file mode 100644 index 000000000..2f33cbeef Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090400NEXOUT.parquet new file mode 100644 index 000000000..de6257924 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090500NEXOUT.parquet new file mode 100644 index 000000000..9d8ad4f56 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090600NEXOUT.parquet new file mode 100644 index 000000000..9e7f88cf5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090700NEXOUT.parquet new file mode 100644 index 000000000..3539832c4 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090800NEXOUT.parquet new file mode 100644 index 000000000..bee23ea59 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208090900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208090900NEXOUT.parquet new file mode 100644 index 000000000..5df94cc8b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208090900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091000NEXOUT.parquet new file mode 100644 index 000000000..ab5f8acdc Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091100NEXOUT.parquet new file mode 100644 index 000000000..e107ffa14 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091200NEXOUT.parquet new file mode 100644 index 000000000..0a8b4994d Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091300NEXOUT.parquet new file mode 100644 index 000000000..d8e92b711 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091400NEXOUT.parquet new file mode 100644 index 000000000..93f0fb08e Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091500NEXOUT.parquet new file mode 100644 index 000000000..af59dd3ef Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091600NEXOUT.parquet new file mode 100644 index 000000000..6c7cc71de Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091700NEXOUT.parquet new file mode 100644 index 000000000..ee6539dd9 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091800NEXOUT.parquet new file mode 100644 index 000000000..2e8472544 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208091900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208091900NEXOUT.parquet new file mode 100644 index 000000000..15fa9704a Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208091900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208092000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208092000NEXOUT.parquet new file mode 100644 index 000000000..960b3c3e6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208092000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208092100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208092100NEXOUT.parquet new file mode 100644 index 000000000..be443bf2f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208092100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208092200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208092200NEXOUT.parquet new file mode 100644 index 000000000..71ce87eed Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208092200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208092300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208092300NEXOUT.parquet new file mode 100644 index 000000000..686aaaaeb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208092300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100000NEXOUT.parquet new file mode 100644 index 000000000..38492a999 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100100NEXOUT.parquet new file mode 100644 index 000000000..440bca2c2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100200NEXOUT.parquet new file mode 100644 index 000000000..d6eaa1a77 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100300NEXOUT.parquet new file mode 100644 index 000000000..9fa6278f6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100400NEXOUT.parquet new file mode 100644 index 000000000..7d4aa82ba Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100500NEXOUT.parquet new file mode 100644 index 000000000..e3fac72c7 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100600NEXOUT.parquet new file mode 100644 index 000000000..bc25f8020 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100700NEXOUT.parquet new file mode 100644 index 000000000..c041bda80 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100800NEXOUT.parquet new file mode 100644 index 000000000..7f99c5443 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208100900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208100900NEXOUT.parquet new file mode 100644 index 000000000..0f9370a7b Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208100900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101000NEXOUT.parquet new file mode 100644 index 000000000..0b9e4c16f Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101100NEXOUT.parquet new file mode 100644 index 000000000..6841f1939 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101200NEXOUT.parquet new file mode 100644 index 000000000..eaba41925 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101300NEXOUT.parquet new file mode 100644 index 000000000..44d5d5dc1 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101300NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101400NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101400NEXOUT.parquet new file mode 100644 index 000000000..e018627f5 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101400NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101500NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101500NEXOUT.parquet new file mode 100644 index 000000000..c8a3a1fc6 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101500NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101600NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101600NEXOUT.parquet new file mode 100644 index 000000000..d3e627e42 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101600NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101700NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101700NEXOUT.parquet new file mode 100644 index 000000000..53ca22556 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101700NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101800NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101800NEXOUT.parquet new file mode 100644 index 000000000..ebab39e56 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101800NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208101900NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208101900NEXOUT.parquet new file mode 100644 index 000000000..d516d69be Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208101900NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208102000NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208102000NEXOUT.parquet new file mode 100644 index 000000000..b374cb7cb Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208102000NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208102100NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208102100NEXOUT.parquet new file mode 100644 index 000000000..332339f49 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208102100NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208102200NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208102200NEXOUT.parquet new file mode 100644 index 000000000..8fb3d05d2 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208102200NEXOUT.parquet differ diff --git a/test/channel_loss/channel_forcing/qlat/202208102300NEXOUT.parquet b/test/channel_loss/channel_forcing/qlat/202208102300NEXOUT.parquet new file mode 100644 index 000000000..8fca8d735 Binary files /dev/null and b/test/channel_loss/channel_forcing/qlat/202208102300NEXOUT.parquet differ diff --git a/test/channel_loss/domain/09112500.gpkg b/test/channel_loss/domain/09112500.gpkg new file mode 100644 index 000000000..25e4a4bad Binary files /dev/null and b/test/channel_loss/domain/09112500.gpkg differ diff --git a/test/channel_loss/examine_outputs.ipynb b/test/channel_loss/examine_outputs.ipynb new file mode 100644 index 000000000..2fd38e528 --- /dev/null +++ b/test/channel_loss/examine_outputs.ipynb @@ -0,0 +1,943 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "783cc0d4", + "metadata": {}, + "source": [ + "### Examining the output of T-Route at the Taylor Dam, Colorado using Channel Loss\n", + "#### Author: Tadd Bindas\n", + "\n", + "In the following lines of this notebook, we will plot the output of a T-Route run with inputs taken from a NGEN run using initial versions (uncalibrated) CFE + NOAH-OWP-Modular + Evapotranspiration to see how t-route works with and without the channel loss algorithm. \n", + "\n", + "The algorithm implemented in T-route is from the following site: https://www.weather.gov/media/owp/oh/hrl/docs/533chanloss.pdf\n", + "\n", + "where\n", + "```\n", + "Q = Q - SSOUT # Subsurface outflow\n", + "```\n", + "and\n", + "```\n", + "E = ET * PEADJ\n", + "ELOSS = E * 0.27778/TIMINT * (dx * tw)\n", + "Q = Q - ELOSS \n", + "```\n", + "where ET is directly taken from NGEN outputs from the evapotranspiration module and TIMINT is 1 to represent hourly\n", + "\n", + "*NOTE* to run this code, you will need to have run the following commands with all YAML files in this folder. That includes the following commands:\n", + "```sh\n", + "python -m nwm_routing -f -V4 taylor_dam.yaml\n", + "python -m nwm_routing -f -V4 taylor_dam_eloss_base.yaml\n", + "python -m nwm_routing -f -V4 taylor_dam_eloss_high.yaml\n", + "python -m nwm_routing -f -V4 taylor_dam_ssout_base.yaml\n", + "python -m nwm_routing -f -V4 taylor_dam_ssout_high.yaml\n", + "```\n", + "This ensures that you are running the model both with and without Channel Loss (both the ELOSS and SSOUT)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "ca9c85ca", + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import xarray as xr\n", + "import geopandas as gpd\n" + ] + }, + { + "cell_type": "markdown", + "id": "4796158b", + "metadata": {}, + "source": [ + "Let\"s plot / examine the sample basin to see where we\"re modeling. You can see the tile of the Taylor Lake on the middle-right of the output" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "0f8941db", + "metadata": {}, + "outputs": [], + "source": [ + "lakes = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"lakes\")\n", + "divides = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"divides\")\n", + "nexus = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"nexus\")\n", + "fp = gpd.read_file(\"./domain/09112500.gpkg\", layer=\"flowpaths\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "2285121f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "divide_ex = divides.explore(color=\"grey\", tiles=\"OpenStreetMap\")\n", + "lakes_ex = lakes.explore(m=divide_ex, color=\"blue\")\n", + "nexus_ex = nexus.explore(m=lakes_ex, color=\"black\")\n", + "fp.explore(m=nexus_ex, color=\"orange\")\n" + ] + }, + { + "cell_type": "markdown", + "id": "bc32b535", + "metadata": {}, + "source": [ + "#### Examining ELOSS\n", + "\n", + "first, we'll examine the differences between running with and without the ELOSS. Two different PEADJ values are shown to denonstrate how the adjustment setting is used." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "296f57de", + "metadata": {}, + "outputs": [], + "source": [ + "# Load t-route output datasets for \n", + "ds = xr.open_dataset(\"./output/base_output/troute_output_202208020000.nc\", engine=\"netcdf4\")\n", + "ds_base_eloss = xr.open_dataset(\"./output/eloss_base/troute_output_202208020000.nc\", engine=\"netcdf4\") \n", + "ds_high_eloss = xr.open_dataset(\"./output/eloss_high/troute_output_202208020000.nc\", engine=\"netcdf4\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "eae62788", + "metadata": {}, + "outputs": [], + "source": [ + "# Process base model stream data at the downstream-most nexus\n", + "df = ds.sel(feature_id=2619318).to_dataframe().reset_index()\n", + "df[\"time\"] = pd.to_datetime(df[\"time\"])\n", + "df = df.set_index(\"time\")\n", + "df[\"flow\"] = df[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "# Process channel loss (ET) stream data at the downstream-most nexus\n", + "df_base_eloss = ds_base_eloss.sel(feature_id=2619318).to_dataframe().reset_index()\n", + "df_base_eloss[\"time\"] = pd.to_datetime(df_base_eloss[\"time\"])\n", + "df_base_eloss = df_base_eloss.set_index(\"time\")\n", + "df_base_eloss[\"flow\"] = df_base_eloss[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "df_high_eloss = ds_high_eloss.sel(feature_id=2619318).to_dataframe().reset_index()\n", + "df_high_eloss[\"time\"] = pd.to_datetime(df_high_eloss[\"time\"])\n", + "df_high_eloss = df_high_eloss.set_index(\"time\")\n", + "df_high_eloss[\"flow\"] = df_high_eloss[\"flow\"] * 0.028316846592 # convert to cms\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d743bae4", + "metadata": {}, + "outputs": [], + "source": [ + "# Process ELOSS outputs for plotting losses\n", + "eloss_base_vals = pd.read_csv(\"./channel_forcing/et/peadj_1.0_eloss_calculated_values.csv\")\n", + "row_data = eloss_base_vals[eloss_base_vals['key'] == 2619318]\n", + "time_columns = [col for col in eloss_base_vals.columns if col != 'key']\n", + "values = row_data[time_columns].values.flatten()\n", + "parsed_columns = pd.to_datetime(time_columns, format='%Y%m%d%H%M', errors='coerce')\n", + "valid_parsed = parsed_columns[~pd.isna(parsed_columns)]\n", + "valid_values = values[~pd.isna(parsed_columns)]\n", + "result_series = pd.Series(valid_values, index=valid_parsed, name=2619318)\n", + "\n", + "result_series = result_series.reindex(df_base_eloss.index)\n", + "eloss_vals_base_df = pd.DataFrame({\n", + " 'datetime': df_base_eloss.index,\n", + " 'value': result_series.values\n", + "})\n", + "\n", + "eloss_high_vals = pd.read_csv(\"./channel_forcing/et/peadj_100.0_eloss_calculated_values.csv\")\n", + "row_data = eloss_high_vals[eloss_high_vals['key'] == 2619318]\n", + "time_columns = [col for col in eloss_high_vals.columns if col != 'key']\n", + "values = row_data[time_columns].values.flatten()\n", + "parsed_columns = pd.to_datetime(time_columns, format='%Y%m%d%H%M', errors='coerce')\n", + "valid_parsed = parsed_columns[~pd.isna(parsed_columns)]\n", + "valid_values = values[~pd.isna(parsed_columns)]\n", + "result_series = pd.Series(valid_values, index=valid_parsed, name=2619318)\n", + "result_series = result_series.reindex(df_base_eloss.index)\n", + "\n", + "eloss_vals_high_df = pd.DataFrame({\n", + " 'datetime': df_base_eloss.index,\n", + " 'value': result_series.values\n", + "})\n" + ] + }, + { + "cell_type": "markdown", + "id": "02ad1a9d", + "metadata": {}, + "source": [ + "Now, we will plot the outputs via hydrographs to see how using channel loss impacts the routing. The top plot will be the hydrograph and the bottom plot will be the ELOSS values for the specific catchment" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "affb8514", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKYAAAPeCAYAAAA2yBLEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd1hT59sH8G/YyJQhW1DBvffGWdyjbq1114laW2ets2ortWqrdfTnatW6qtZt1ap11olacddVBUVRFJH9vH88L5GwDBByAnw/15VLOTnjTghJzn2e575VQggBIiIiIiIiIiIiPTNSOgAiIiIiIiIiIiqYmJgiIiIiIiIiIiJFMDFFRERERERERESKYGKKiIiIiIiIiIgUwcQUEREREREREREpgokpIiIiIiIiIiJSBBNTRERERERERESkCCamiIiIiIiIiIhIEUxMERERERERERGRIpiYIiIiIsoF9+7dg0qlwurVq5UOpUCZNm0aVCqV0mEQERGRlpiYIiIiokytXr0aKpUqw9vp06fV66pUKowYMeK9+7x69So++ugjeHh4wNzcHO7u7ujVqxeuXr2a7vpXrlxB586d4e3tDQsLC3h4eKB58+b44YcfNNaLi4vDwoULUaVKFdja2sLe3h7lypXDJ598guvXr+fsiSAiIiIinTNROgAiIiLKG2bMmIFixYqlWe7r65ul/WzduhU9evSAg4MDBgwYgGLFiuHevXtYsWIFtmzZgg0bNqBjx47q9U+ePInGjRujaNGiGDRoEFxdXfHw4UOcPn0aCxcuRGBgoHrdTp06Ye/evejRowcGDRqE+Ph4XL9+Hbt27ULdunVRunTp7D8BlCdMnjwZEyZMUDoMIiIi0hITU0RERKSVli1bonr16jnax507d9C7d28UL14cf/31F5ydndX3jRo1Cg0aNEDv3r1x+fJlFC9eHAAwa9Ys2NnZ4ezZs7C3t9fY39OnT9X/P3v2LHbt2oVZs2Zh0qRJGustWrQIL1++zFHsZNjevHkDKysrmJiYwMSEX3GJiIjyCk7lIyIiIr0JCgpCdHQ0li9frpGUAgAnJycsW7YMb968wdy5c9XL79y5g3LlyqVJSgFAkSJFNNYDgHr16qVZz9jYGI6OjhnG9eTJE5iYmGD69Olp7rtx4wZUKhUWLVoEAIiIiMDnn3+OChUqwNraGra2tmjZsiUuXbqU+YMH0KhRIzRq1CjN8r59+8LHx0djWVJSEhYsWIBy5crBwsICLi4uGDx4MF68ePHe4wDA9evX0bVrVzg7O8PS0hKlSpXCF198obHOxYsX0bJlS9ja2sLa2hpNmzbVmJoJvJvKefz4cYwcORLOzs6wt7fH4MGDERcXh5cvX+Ljjz9G4cKFUbhwYYwbNw5CCPX2ybW2vv32W8yfPx/e3t6wtLSEv78//vnnH41jXb58GX379kXx4sVhYWEBV1dX9O/fH8+fP9dYL7mOVEhICHr27InChQujfv36GveldODAAdSvXx/29vawtrZGqVKl0iQvnz59igEDBsDFxQUWFhaoVKkS1qxZo7FOyseyfPlylChRAubm5qhRowbOnj2r1e+FiIiINPFyEhEREWklMjISz54901imUqkyTfiktnPnTvj4+KBBgwbp3t+wYUP4+Phg9+7d6mXe3t44deoU/vnnH5QvXz7DfXt7ewMA1q1bh3r16mVp1IyLiwv8/f2xadMmTJ06VeO+jRs3wtjYGF26dAEA/Pvvv9i+fTu6dOmCYsWK4cmTJ1i2bBn8/f0REhICd3d3rY+bmcGDB2P16tXo168fRo4cibt372LRokW4ePEiTpw4AVNT0wy3vXz5Mho0aABTU1N88skn8PHxwZ07d7Bz507MmjULgKzz1aBBA9ja2mLcuHEwNTXFsmXL0KhRIxw9ehS1atXS2GdgYCBcXV0xffp0nD59GsuXL4e9vT1OnjyJokWLYvbs2dizZw+CgoJQvnx5fPzxxxrb//zzz3j9+jWGDx+OmJgYLFy4EE2aNMGVK1fg4uICQCaQ/v33X/Tr1w+urq64evUqli9fjqtXr+L06dNpEk5dunSBn58fZs+erZEMS+nq1ato06YNKlasiBkzZsDc3By3b9/GiRMn1Ou8ffsWjRo1wu3btzFixAgUK1YMmzdvRt++ffHy5UuMGjVKY5/r16/H69evMXjwYKhUKsydOxcffvgh/v3330x/L0RERJQOQURERJSJVatWCQDp3szNzTXWBSCGDx+e7n5evnwpAIj27dtnerx27doJAOLVq1dCCCH++OMPYWxsLIyNjUWdOnXEuHHjxP79+0VcXJzGdklJScLf318AEC4uLqJHjx5i8eLF4v79+1o9zmXLlgkA4sqVKxrLy5YtK5o0aaL+OSYmRiQmJmqsc/fuXWFubi5mzJihsQyAWLVqlXqZv7+/8Pf3T3PsPn36CG9vb/XPx44dEwDEunXrNNbbt29fustTa9iwobCxsUnz2JOSktT/79ChgzAzMxN37txRL3v8+LGwsbERDRs2VC9L/v0HBARobF+nTh2hUqnEkCFD1MsSEhKEp6enxmNMfh4sLS3Ff//9p17+999/CwDi008/VS+Ljo5O81h+/fVXAUD89ddf6mVTp04VAESPHj3SrJ98X7L58+cLACI8PDztE/X/FixYIACItWvXqpfFxcWJOnXqCGtra/VrMfmxODo6ioiICPW6v//+uwAgdu7cmeExiIiIKH2cykdERERaWbx4MQ4cOKBx27t3r9bbv379GgBgY2OT6XrJ97969QoA0Lx5c5w6dQrt2rXDpUuXMHfuXAQEBMDDwwM7duxQb6dSqbB//3589dVXKFy4MH799VcMHz4c3t7e6Nat23trTH344YcwMTHBxo0b1cv++ecfhISEoFu3bupl5ubmMDKSX6ESExPx/Plz9fSwCxcuaP18ZGbz5s2ws7ND8+bN8ezZM/WtWrVqsLa2xuHDhzPcNjw8HH/99Rf69++PokWLatyXPOIoMTERf/zxBzp06KCu5QUAbm5u6NmzJ44fP65+/pMNGDBAY8RSrVq1IITAgAED1MuMjY1RvXp1/Pvvv2ni6tChAzw8PNQ/16xZE7Vq1cKePXvUyywtLdX/j4mJwbNnz1C7dm0ASPe5HTJkSIbPQ7LkKaC///47kpKS0l1nz549cHV1RY8ePdTLTE1NMXLkSERFReHo0aMa63fr1g2FCxdW/5w8AjC9x01ERESZY2KKiIiItFKzZk00a9ZM49a4cWOtt09OOCUnqDKSXgKrRo0a2Lp1K168eIEzZ85g4sSJeP36NTp37oyQkBD1eubm5vjiiy9w7do1PH78GL/++itq166NTZs2YcSIEZke18nJCU2bNsWmTZvUyzZu3AgTExN8+OGH6mVJSUmYP38+/Pz8YG5uDicnJzg7O+Py5cuIjIzU+vnIzK1btxAZGYkiRYrA2dlZ4xYVFaVR9D215ORIZtMew8PDER0djVKlSqW5r0yZMkhKSsLDhw81lqdOctnZ2QEAvLy80ixPrw6Wn59fmmUlS5bEvXv31D9HRERg1KhRcHFxgaWlJZydndWdINN7btPrEplat27dUK9ePQwcOBAuLi7o3r07Nm3apJGkun//Pvz8/NQJx2RlypRR359S6uciOUmlbf0vIiIieoc1poiIiEgv7Ozs4ObmhsuXL2e63uXLl+Hh4QFbW9s095mZmaFGjRqoUaMGSpYsiX79+mHz5s1p6kIBcvRP9+7d0alTJ5QrVw6bNm3C6tWrM6091b17d/Tr1w/BwcGoXLkyNm3ahKZNm8LJyUm9zuzZs/Hll1+if//+mDlzJhwcHGBkZITRo0dnOCInmUqlSrcWUmJiosbPSUlJKFKkCNatW5fuflIXjtcHY2NjrZen9xi10bVrV5w8eRJjx45F5cqVYW1tjaSkJLRo0SLd5zblCKuMWFpa4q+//sLhw4exe/du7Nu3Dxs3bkSTJk3wxx9/ZPi4MpPRNtl93ERERAUZE1NERESkN23atMFPP/2E48ePq7uopXTs2DHcu3cPgwcPfu++qlevDgAIDQ3NdD1TU1NUrFgRt27dwrNnz+Dq6prhuh06dMDgwYPV0/lu3ryJiRMnaqyzZcsWNG7cGCtWrNBY/vLlS40EVnoKFy6c7nSv1CNySpQogYMHD6JevXpaJV9SSp6al7rjXUrOzs4oVKgQbty4kea+69evw8jIKM1IqJy6detWmmU3b95UdyN88eIFDh06hOnTp2PKlCmZbpdVRkZGaNq0KZo2bYrvvvsOs2fPxhdffIHDhw+jWbNm8Pb2xuXLl5GUlKQxaur69esA3hXWJyIiIt3jVD4iIiLSm7Fjx8LS0hKDBw/G8+fPNe6LiIjAkCFDUKhQIYwdO1a9/PDhw+mOREmuTZQ8He3WrVt48OBBmvVevnyJU6dOoXDhwu8daWRvb4+AgABs2rQJGzZsgJmZGTp06KCxjrGxcZp4Nm/ejEePHmW6b0AmnK5fv47w8HD1skuXLml0iAPkyKHExETMnDkzzT4SEhIyrZfl7OyMhg0bYuXKlWmej+S4jY2N8cEHH+D333/XmEr35MkTrF+/HvXr1093xFpObN++XeM5OnPmDP7++2+0bNlSHVPKGJMtWLAgR8eNiIhIs6xy5coAgNjYWABAq1atEBYWplFfLCEhAT/88AOsra3h7++foxiIiIgoYxwxRURERFrZu3evegRJSnXr1tUooH3u3Dl89dVXadZr1KgR6tevjzVr1qBXr16oUKECBgwYgGLFiuHevXtYsWIFnj17hl9//RUlSpRQbxcYGIjo6Gh07NgRpUuXRlxcHE6ePImNGzfCx8cH/fr1AyATPD179kTLli3RoEEDODg44NGjR1izZg0eP36MBQsWaDVtq1u3bvjoo4/w448/IiAgQF08O1mbNm0wY8YM9OvXD3Xr1sWVK1ewbt06jecgI/3798d3332HgIAADBgwAE+fPsXSpUtRrlw5jWLj/v7+GDx4MObMmYPg4GB88MEHMDU1xa1bt7B582YsXLgQnTt3zvA433//PerXr4+qVavik08+UT/Hu3fvRnBwMADgq6++woEDB1C/fn0MGzYMJiYmWLZsGWJjYzF37tz3Ppas8vX1Rf369TF06FDExsZiwYIFcHR0xLhx4wAAtra2aNiwIebOnYv4+Hh4eHjgjz/+wN27d3N03BkzZuCvv/5C69at4e3tjadPn+LHH3+Ep6enetTeJ598gmXLlqFv3744f/48fHx8sGXLFpw4cQILFix4b8F+IiIiygHlGgISERFRXrBq1SoBIMPbqlWr1Otmtt7MmTPV612+fFn06NFDuLm5CVNTU+Hq6ip69Oghrly5kub4e/fuFf379xelS5cW1tbWwszMTPj6+orAwEDx5MkT9XpPnjwRX3/9tfD39xdubm7CxMREFC5cWDRp0kRs2bJF68f76tUrYWlpKQCItWvXprk/JiZGfPbZZ8LNzU1YWlqKevXqiVOnTgl/f3/h7++vXu/u3btpnh8hhFi7dq0oXry4MDMzE5UrVxb79+8Xffr0Ed7e3mmOtXz5clGtWjVhaWkpbGxsRIUKFcS4cePE48eP3/s4/vnnH9GxY0dhb28vLCwsRKlSpcSXX36psc6FCxdEQECAsLa2FoUKFRKNGzcWJ0+e1Fgn+fd/9uxZjeVTp04VAER4eLjG8j59+ggrK6s0z0NQUJCYN2+e8PLyEubm5qJBgwbi0qVLGtv+999/6pjt7OxEly5dxOPHjwUAMXXq1PceO+V9yQ4dOiTat28v3N3dhZmZmXB3dxc9evQQN2/e1NjuyZMnol+/fsLJyUmYmZmJChUqpPndpXwsqaWOkYiIiLSjEoJVGomIiIgod9y7dw/FihVDUFAQPv/8c6XDISIiIgPDGlNERERERERERKQIJqaIiIiIiIiIiEgRTEwREREREREREZEiWGOKiIiIiIiIiIgUwRFTRERERERERESkCCamiIiIiIiIiIhIESZKB2CIkpKS8PjxY9jY2EClUikdDhERERERERFRniGEwOvXr+Hu7g4jo8zHRDExlY7Hjx/Dy8tL6TCIiIiIiIiIiPKshw8fwtPTM9N1mJhKh42NDQD5BNra2iocDRERERERERFR3vHq1St4eXmp8yuZYWIqHcnT92xtbZmYIiIiIiIiIiLKBm3KI7H4ORERERERERERKYKJKSIiIiIiIiIiUgQTU0REREREREREpAjWmMqBxMRExMfHKx0GERFRgWdqagpjY2OlwyAiIiKiLGJiKhuEEAgLC8PLly+VDoWIiIj+n729PVxdXbUqsklEREREhoGJqWxITkoVKVIEhQoV4hdgIiIiBQkhEB0djadPnwIA3NzcFI6IiIiIiLTFxFQWJSYmqpNSjo6OSodDREREACwtLQEAT58+RZEiRTitj4iIiCiPYPHzLEquKVWoUCGFIyEiIqKUkj+bWf+RiIiIKO9gYiqbOH2PiIjIsPCzmYiIiCjvYWKKiIiIiIiIiIgUwcQUaVCpVNi+fbvSYWilb9++6NChg9JhGIwjR45ApVJlqVukj48PFixYkGsxGYobN27A1dUVr1+/VjoUg9e9e3fMmzdP6TC0tnr1atjb2ysdhlZOnDiBChUqwNTUFB06dMjW36zSGjVqhNGjRysdBhERERHlI0xMFSBhYWEIDAxE8eLFYW5uDi8vL7Rt2xaHDh1SOrRcYUgnfX379oVKpcKQIUPS3Dd8+HCoVCr07dtX/4G9x7Rp06BSqdLcSpcurV7nfSeqERERGD16NLy9vWFmZgZ3d3f0798fDx480FgvPDwcQ4cORdGiRWFubg5XV1cEBATgxIkT6nUuXbqEdu3aoUiRIrCwsICPjw+6deum7sSVkYkTJyIwMBA2NjYA3r02km8uLi7o1KkT/v33X/U2Pj4+6T72r7/+Os3+AwICYGxsjLNnz6a5L/l3r1KpYGpqChcXFzRv3hwrV65EUlKSxrq5nSi8evUqOnXqpH5s6R1r8uTJmDVrFiIjI3N8vJSPXaVSwdHRES1atMDly5dzvO9k3bp1w82bN3O8n8TERMyfPx8VKlSAhYUFChcujJYtW2q8/rSV0d/EmDFjULlyZdy9exerV6/OcczZkfL3YWdnh3r16uHPP//UevutW7di5syZWq9/7949qFQqBAcHZyNaIiIiIioImJgqIO7du4dq1arhzz//RFBQEK5cuYJ9+/ahcePGGD58uNLhFQheXl7YsGED3r59q14WExOD9evXo2jRogpGlrly5cohNDRU43b8+HGtto2IiEDt2rVx8OBBLF26FLdv38aGDRtw+/Zt1KhRQyMR1KlTJ1y8eBFr1qzBzZs3sWPHDjRq1AjPnz8HIBNXTZs2hYODA/bv349r165h1apVcHd3x5s3bzKM4cGDB9i1a1e6ib8bN27g8ePH2Lx5M65evYq2bdsiMTFRff+MGTPSPPbAwMA0+z958iRGjBiBlStXphtDixYtEBoainv37mHv3r1o3LgxRo0ahTZt2iAhIUGr51IXoqOjUbx4cXz99ddwdXVNd53y5cujRIkSWLt2rU6OmfzYQ0NDcejQIZiYmKBNmzY62TcgO7EVKVIkR/sQQqB79+6YMWMGRo0ahWvXruHIkSPw8vJCo0aNdDaK9M6dO2jSpAk8PT0VHeW1atUqhIaG4sSJE3ByckKbNm00/hYz4+DgoE7wEhERERHphKA0IiMjBQARGRmZ5r63b9+KkJAQ8fbtWwUiy76WLVsKDw8PERUVlea+Fy9eqP8PQPz000+iQ4cOwtLSUvj6+orff/9dfX9CQoLo37+/8PHxERYWFqJkyZJiwYIFGvvr06ePaN++vQgKChKurq7CwcFBDBs2TMTFxanX8fb2FrNmzRL9+vUT1tbWwsvLSyxbtkxjPw8ePBBdunQRdnZ2onDhwqJdu3bi7t27aY6TkcOHDwsAGo8vpYiICNG7d29hb28vLC0tRYsWLcTNmzfV99+7d0+0adNG2Nvbi0KFComyZcuK3bt3q7ft2bOncHJyEhYWFsLX11esXLkyw1iSYy1fvrxYu3atevm6detExYoVRfv27UWfPn3Uy2NiYkRgYKBwdnYW5ubmol69euLMmTMa+9y9e7fw8/MTFhYWolGjRmLVqlVpHu+xY8dE/fr1hYWFhfD09BSBgYEarwFvb28xf/78DOOeOnWqqFSpUob3CyGEv7+/GDVqVLr3DRkyRFhZWYnQ0FCN5dHR0cLDw0O0aNFCCCFfgwDEkSNHMjzOtm3bhImJiYiPj880ntSCgoJE9erVNZal99pYt26dACCuX78uhHj/c5Ns2rRponv37uLatWvCzs5OREdHa9yf0ev00KFD6r+3ZNoeUxcyO9b06dNF/fr1c3yM9B77sWPHBADx9OlT9bJx48YJPz8/YWlpKYoVKyYmT56s8X4RHBwsGjVqJKytrYWNjY2oWrWqOHv2rBBCiFWrVgk7Ozv1usmv2Z9//ll4e3sLW1tb0a1bN/Hq1asM49ywYYMAIHbs2JHmvg8//FA4Ojqq/27Se0yjRo0S/v7+6vsBaNzu3r2bZtmqVavSfR1u2bJFlC1bVpiZmQlvb2/x7bffqu/74YcfRLly5dQ/b9u2TQAQS5YsUS9r2rSp+OKLLzJ8rADEtm3b1D8/evRIABBLly4VQghx5MgRUaNGDWFmZiZcXV3F+PHjNf7mUv+9v++9PPXjTn6eckte/YwmIiIiym8yy6ukxhFTOiCEQNybuCzfrm66ij0j9uDqpqvZ2l4IoVV8ERER2LdvH4YPHw4rK6s096e+cj99+nR07doVly9fRqtWrdCrVy9EREQAAJKSkuDp6YnNmzcjJCQEU6ZMwaRJk7Bp0yaNfRw+fBh37tzB4cOHsWbNGqxevTrN1JV58+ahevXquHjxIoYNG4ahQ4fixo0bAGSr74CAANjY2ODYsWM4ceIErK2t0aJFC8TFxWn5m8lc3759ce7cOezYsQOnTp2CEAKtWrVStxkfPnw4YmNj8ddff+HKlSv45ptvYG1tDQD48ssvERISgr179+LatWtYsmQJnJyc3nvM/v37Y9WqVeqfV65ciX79+qVZb9y4cfjtt9+wZs0aXLhwAb6+vggICFD/Hh4+fIgPP/wQbdu2RXBwMAYOHIgJEyZo7OPOnTto0aIFOnXqhMuXL2Pjxo04fvw4RowYke3nLCuSkpKwYcMG9OrVK83oHEtLSwwbNgz79+9HREQErK2tYW1tje3btyM2Njbd/bm6uiIhIQHbtm3T+rUPAMeOHUP16tXfu56lpSUAZOn1JYTAqlWr8NFHH6F06dLw9fXFli1btNq2SZMmqFSpErZu3ar18datW6d+rjK6HTt2TOv9ZaRmzZo4c+ZMhr+L7IqKisLatWvh6+sLR0dH9XIbGxusXr0aISEhWLhwIX766SfMnz9ffX+vXr3g6emJs2fP4vz585gwYQJMTU0zPM6dO3ewfft27Nq1C7t27cLRo0fTnYKZbP369ShZsiTatm2b5r7PPvsMz58/x4EDB7R6jAsXLkSdOnUwaNAg9UgxLy8vhIaGwtbWFgsWLEBoaCi6deuWZtvz58+ja9eu6N69O65cuYJp06bhyy+/VL93+vv7IyQkBOHh4QCAo0ePwsnJCUeOHAEg3zdPnTqFRo0aaRUroPm6f/ToEVq1aoUaNWrg0qVLWLJkCVasWIGvvvoq031k9l5+5swZAMDBgwcRGhqapdc7ERERERUMJkoHkB/ER8djjvWcbG9/dnHaujTamBg1EWZWZu9d7/bt2xBCaNQFykzfvn3Ro0cPAMDs2bPx/fff48yZM2jRogVMTU0xffp09brFihXDqVOnsGnTJnTt2lW9vHDhwli0aBGMjY1RunRptG7dGocOHcKgQYPU67Rq1QrDhg0DAIwfPx7z58/H4cOHUapUKWzcuBFJSUn43//+p27/vWrVKtjb2+PIkSP44IMPtHosGbl16xZ27NiBEydOoG7dugDkSb+Xlxe2b9+OLl264MGDB+jUqRMqVKgAAChevLh6+wcPHqBKlSrqhIePj49Wx/3oo48wceJE3L9/H4Ashrxhwwb1iSUAvHnzBkuWLMHq1avRsmVLAMBPP/2EAwcOYMWKFRg7diyWLFmCEiVKqItUlypVSp08SzZnzhz06tVLXevGz88P33//Pfz9/bFkyRJYWFhoFfOVK1fUCbmUj2Pp0qWZbhceHo6XL1+iTJky6d5fpkwZCCFw+/Zt1KxZE6tXr8agQYOwdOlSVK1aFf7+/ujevTsqVqwIAKhduzYmTZqEnj17YsiQIahZsyaaNGmCjz/+GC4uLhnGcf/+/fcmpkJDQ/Htt9/Cw8MDpUqVUi8fP348Jk+erLHu3r170aBBAwDyZDs6OhoBAQHq52XFihXo3bt3psdLVrp06SzVW2rXrh1q1aqV6ToeHh5a7y8j7u7uiIuLQ1hYGLy9vXO0r127dqlfP2/evIGbmxt27doFI6N310VSPsc+Pj74/PPPsWHDBowbNw6A/HsbO3as+j3Mz88v02MmJSVh9erV6ilnvXv3xqFDhzBr1qx0179582amr9PkdbRhZ2cHMzMzFCpUSCMh6+rqqq7rlNE0yu+++w5NmzbFl19+CQAoWbIkQkJCEBQUhL59+6J8+fJwcHDA0aNH0blzZxw5cgSfffYZFi5cCEAmgeLj49Xvae8THR2NyZMnw9jYGP7+/vjxxx/h5eWFRYsWqWvJPX78GOPHj8eUKVM0fmcpZfZe7uzsDABwdHTM8HETERERUcHGEVMFQFZGlwBQJwIAwMrKCra2thrFpRcvXoxq1arB2dkZ1tbWWL58eZpC1uXKlYOxsbH6Zzc3tzQFqlMeR6VSwdXVVb3OpUuXcPv2bdjY2KhHgjg4OCAmJgZ37tzJ0uNJz7Vr12BiYqJxku/o6IhSpUrh2rVrAICRI0fiq6++Qr169TB16lSNBMLQoUOxYcMGVK5cGePGjcPJkye1Oq6zszNat26N1atXY9WqVWjdunWakVZ37txBfHw86tWrp15mamqKmjVrqmO7du1amgRFnTp1NH6+dOkSVq9erTGaJiAgAElJSbh7965W8QIy6RUcHKxxmzFjhtbba/v669SpEx4/fowdO3agRYsWOHLkCKpWraox0m7WrFkICwvD0qVLUa5cOSxduhSlS5fGlStXMtzv27dvM0zCeXp6wsrKSl2n6rfffoOZ2btk79ixY9M89pRJrpUrV6Jbt24wMZE5/h49euDEiRNav0aFEOrEqzZsbGzg6+ub6S15BExOJO8jOjo63fuHDBmi8brKTOPGjdXP3ZkzZxAQEICWLVuqk7MAsHHjRtSrVw+urq6wtrbG5MmTNd5TxowZg4EDB6JZs2b4+uuv3/v8+vj4aNRBSu/9J7Wsvk/mhmvXrmn83QNAvXr1cOvWLSQmJkKlUqFhw4Y4cuQIXr58iZCQEAwbNgyxsbG4fv06jh49iho1aqBQoUKZHqdHjx6wtraGjY0NfvvtN6xYsQIVK1bEtWvXUKdOHY3XZL169RAVFYX//vsvw/1l9l5ORERERPQ+BjFiavHixQgKCkJYWBgqVaqEH374ATVr1sxw/c2bN+PLL7/EvXv34Ofnh2+++QatWrVS39+3b1+sWbNGY5uAgADs27cvV+I3LWSKiVETs7TNrd23sKXbFqiMVRCJAp03doZf68xHAaR3XG34+flBpVLh+vXr2u031RQZlUql7h62YcMGfP7555g3bx7q1KkDGxsbBAUF4e+//9Z6H9qsExUVhWrVqmHdunVp4ku+Ap/bBg4ciICAAOzevRt//PEH5syZg3nz5iEwMFB9Yr1nzx4cOHAATZs2xfDhw/Htt9++d7/9+/dXT6dbvHhxrsUfFRWFwYMHY+TIkWnuy0qxdTMzM/j6+mb5+M7OzrC3t1cn01K7du0aVCqVxr4tLCzQvHlzNG/eHF9++SUGDhyIqVOnahQud3R0RJcuXdClSxfMnj0bVapUwbfffpvmbz6Zk5MTXrx4ke59x44dg62tLYoUKZJuQWcnJ6cMH3tERAS2bduG+Ph4LFmyRL08MTERK1euzHB0TurnoFixYu9dL9m6deswePDgTNdJOaIru5KnjGb0tzZjxgx8/vnnWu3LyspK4zn83//+Bzs7O/z000/46quvcOrUKfTq1QvTp09HQEAA7OzssGHDBvVoQEB2h+zZsyd2796NvXv3YurUqdiwYQM6duyY7jG1ef9JqWTJkpm+TpPXAQAjI6M0Sazk6b/Zde8eYGYGaJMba9SoEZYvX45jx46hSpUqsLW1VSerjh49Cn9///fuY/78+WjWrBns7Ox08n6a1eebiIiIiCglxRNTGzduxJgxY7B06VLUqlULCxYsQEBAAG7cuJFup6WTJ0+iR48emDNnDtq0aYP169ejQ4cOuHDhAsqXL69er0WLFhq1fMzNzXPtMahUKq2m1KVUrms5mFiY4N6Re/Bp5INS7Uq9f6NscnBwQEBAABYvXoyRI0emqTP18uVLrTtEJU99S562AUAnI5hSq1q1KjZu3IgiRYrA1tZW5/svU6YMEhIS8Pfff6unvTx//hw3btxA2bJl1et5eXlhyJAhGDJkCCZOnIiffvpJ3ZXN2dkZffr0QZ8+fdCgQQOMHTtWq8RUcp0slUqlngKWUokSJWBmZoYTJ06op1HFx8fj7Nmz6ml5ZcqUwY4dOzS2O336tMbPVatWRUhISLaSSrpgZGSErl27Yt26dZgxY4bGNJ63b9/ixx9/REBAABwcHDLcR9myZTPtiGZmZoYSJUpk2pWvSpUqCAkJSfe+YsWKZbs72rp16+Dp6Zkmvj/++APz5s3DjBkzNEYNpvbnn3/iypUr+PTTT7U+pr6m8v3zzz/w9PTMsG5akSJFst0JT6VSwcjISN2d8uTJk/D29sYXX3yhXiflaKpkJUuWRMmSJfHpp5+iR48eWLVqVYaJqazq3r07evbsiZ07d6apMzVv3jw4OjqiefPmAOTf/T///KOxTnBwsEZyxszMTKO74/tERQEWFoCfXxmcOHFC474TJ06gZMmS6teSv78/Ro8ejc2bN6trSTVq1AgHDx7EiRMn8Nlnn733eK6urum+L5QpUwa//fabxki+EydOwMbGBp6enlo/npSSRyBm5fkgIiIiooJF8cTUd999h0GDBqkLQC9duhS7d+/GypUr0xRzBmRh2RYtWmDs2LEAgJkzZ+LAgQNYtGiRRs0bc3Nzg69nUapdqVxNSKW0ePFi1KtXDzVr1sSMGTNQsWJFJCQk4MCBA1iyZEmGowVS8/Pzw88//4z9+/ejWLFi+OWXX3D27NksjfrQRq9evRAUFIT27dtjxowZ8PT0xP3797F161aMGzcuSydJV65c0RgNo1KpUKlSJbRv3x6DBg3CsmXLYGNjgwkTJsDDwwPt27cHAIwePRotW7ZEyZIl8eLFCxw+fFhdb2bKlCmoVq0aypUrh9jYWOzatSvDGjWpGRsbq5/v9BIXVlZWGDp0KMaOHQsHBwcULVoUc+fORXR0NAYMGABATqWaN28exo4di4EDB+L8+fNpisuPHz8etWvXxogRIzBw4EBYWVkhJCRE/feirYSEBISFhWksU6lUGnWdwsPDERwcrLGOm5sbZs+ejUOHDqF58+aYO3cuypcvj7t372Ly5MmIj49Xjxh7/vw5unTpgv79+6NixYqwsbHBuXPnMHfuXPXvY9euXdiwYQO6d++OkiVLQgiBnTt3Ys+ePRpJ6NQCAgIwcOBAJCYmZpooSs/r16/TPPZChQrB1tYWK1asQOfOnTUS4oBMZk6cOBH79u1D69atAQCxsbEICwtDYmIinjx5gn379qmT6x9//LHW8djY2KQ7sktbcXFx6iRdcrHr4OBgWFtbayQqjh07luM6bsmSHzsAvHjxAosWLUJUVJQ6AeTn54cHDx5gw4YNqFGjBnbv3o1t27apt3/79i3Gjh2Lzp07o1ixYvjvv/9w9uxZdOrUSSfxATIxtXnzZvTp0wdBQUFo2rQpXr16hcWLF2PHjh3YvHmzOqHfpEkTBAUF4eeff0adOnWwdu1a/PPPP6hSpYp6fz4+Pvj7779x79499TTkjOozAUB8PODqCnz++WeoU6cGZs6ciW7duuHUqVNYtGgRfvzxR/W6FStWROHChbF+/Xrs2rULgExMff7551CpVGmmAmbFsGHDsGDBAgQGBmLEiBG4ceMGpk6dijFjxmQaf2aKFCkCS0tL7Nu3D56enrCwsICdnV22YyQiIiKifChX+gJqKTY2VhgbG2u0rhZCiI8//li0a9cu3W28vLzStDifMmWKqFixovrnPn36CDs7O+Hs7CxKliwphgwZIp49e5ZhHDExMSIyMlJ9e/jwYYZtDfNyK+rHjx+L4cOHC29vb2FmZiY8PDxEu3btxOHDh9XrIFUrcSGEsLOzE6tWrRJCyOeqb9++ws7OTtjb24uhQ4eKCRMmiEqVKqnXf187dSHSb1VfqVIlMXXqVPXPoaGh4uOPPxZOTk7C3NxcFC9eXAwaNEj9e0nvOCklt2JPfTM2NhZCCBERESF69+4t7OzshKWlpQgICBA3b95Ubz9ixAhRokQJYW5uLpydnUXv3r3Vr6OZM2eKMmXKCEtLS+Hg4CDat28v/v333wxjeV+s7du3F3369FH//PbtWxEYGKh+7PXq1RNnzpzR2Gbnzp3C19dXmJubiwYNGoiVK1emaT1/5swZ0bx5c2FtbS2srKxExYoVxaxZs9T3p/d7SGnq1KnpPofm5ubqdfz9/dNdZ+bMmUIIIcLDw0VgYKDw8vISpqamwsXFRfTt21fcv39fvY+YmBgxYcIEUbVqVWFnZycKFSokSpUqJSZPniyio6OFEELcuXNHDBo0SJQsWVJYWloKe3t7UaNGDfVrMyPx8fHC3d1d7Nu3T70s+bWR8rlKzdvbO93HNXjwYHHu3DkBIM3vJFnLli1Fx44dhRDyd5+8rYmJiXB2dhbNmjUTK1euFImJiRrbeXl5iR9++CHTx5MTd+/eTfcxpfzbfPv2rbCzsxOnTp3K8fFSPnYAwsbGRtSoUUNs2bJFY72xY8cKR0dHYW1tLbp16ybmz58v7OzshBDyc6J79+7Cy8tLmJmZCXd3dzFixAj1e/CqVavU6wohX7Mp34+EEGL+/PnC29s701jj4+NFUFCQKFeunDAzMxO2trYiICBAHD9+PM26U6ZMES4uLsLOzk58+umnYsSIERrP4Y0bN0Tt2rWFpaWlACDu3r0rhNB8LxXi3evwzz9fiPBwuWzLli2ibNmywtTUVBQtWlQEBQWlOX779u2FiYmJeP36tRBCiMTERFG4cGFRu3btTB+jEOm/x6d05MgRUaNGDWFmZiZcXV3F+PHjRXx8vPp+f39/MWrUKPXP2ryX//TTT8LLy0sYGRlpPE+5IS9/RhMRERHlJ5GRkRnmVVJTCaFcxdfHjx/Dw8MDJ0+e1CjcPG7cOBw9ejRN3SJATgtYs2aNumscAPz444+YPn06njx5AkDWQSpUqBCKFSuGO3fuYNKkSbC2tsapU6fSHTExbdo0jU5zySIjI9NMI4uJicHdu3dRrFgxrbuaEZGykke+7N+/X+lQMpSYmAhbW1usWbMGnTt3ViyOJUuWYNu2bfjjjz8Ui6EgiY8HYmMBc3PAVLuygZQJfkYTERERGYZXr17Bzs4u3bxKaopP5csN3bt3V/+/QoUKqFixIkqUKIEjR46gadOmadafOHEixowZo/751atX8PLy0kusRJT7Bg8ejJcvX+L169c5mgqXW/777z/8/PPPSExMRP369RWNxdTUFD/88IOiMRQkpqaAsTHw9i3w6hXg6Kh0RERERERE+qVoYsrJyQnGxsbqkU7Jnjx5kmF9KFdX1yytDwDFixeHk5MTbt++nW5iytzcPFeLoxORskxMTDSKaxuaypUrw9HREb/88ovitfEGDhyo6PELoqQkILnMn50dYJIvLxkREREREaUve9VMdcTMzAzVqlXDoUOH1MuSkpJw6NAhjal9KdWpU0djfQA4cOBAhusDcjTC8+fP4ebmppvAiYh06NmzZ7hx4wa6dOmidCikR2/fAmFhQHQ0UKgQYGMDsHkdERERERU0iiamAGDMmDH46aefsGbNGly7dg1Dhw7Fmzdv1F36Pv74Y0ycOFG9/qhRo7Bv3z7MmzcP169fx7Rp03Du3DmMGDECABAVFYWxY8fi9OnTuHfvHg4dOoT27dvD19cXAQEBijxGIiKi1KKigP/+A548AcqWBUqVkrWmiIjSc/gwUKMGcOmS0pEQERHpluITBrp164bw8HBMmTIFYWFhqFy5Mvbt26duRf/gwQONNtV169bF+vXrMXnyZEyaNAl+fn7Yvn27umW7sbExLl++jDVr1uDly5dwd3fHBx98gJkzZ3K6HhERGQwzM6BwYcDKSulIiCgvmDABOHcOuHABqFRJ6WiIiIh0R9GufIYqs+rx7PhDRERkmPgZTflZx47Anj3Arl1A8+ZKR0NERJS5At+Vj4iIKC+JiQHu3pWF0MuVUzoaIjJE27YBCQlKR0FERKR7TEwREREpICkJSJ6pbmICvHkj/5+YCBgbKxcXERmumBjgzz8BlQpo21bpaIiIiHSDiSkiIiI9S0gAgoNlnany5WViqkQJwMLiXbKKiCi1LVuAfv2A6tWZmCIiovyDX39Jg0qlwvbt25UOQyt9+/ZFhw4dlA7DYBw5cgQqlQovX77UehsfHx8sWLAg12IyFDdu3ICrqytev36tdCgFQkhICDw9PfEmeQhQHqDvv4XYWPlvylFThQsDlpZyJERGhBD45JNP4ODgAJVKheDgYDRq1AijR4/O9Zh1JTvvVUQF3bffykRUXJxMYtepI98/iIiI8gMmpgqQsLAwBAYGonjx4jA3N4eXlxfatm2LQ4cOKR1arjCkk5++fftCpVJhyJAhae4bPnw4VCoV+vbtq//A3mPatGlQqVRpbqVLl1av876T4oiICIwePRre3t4wMzODu7s7+vfvjwcPHmisFx4ejqFDh6Jo0aIwNzeHq6srAgICcOLECfU6ly5dQrt27VCkSBFYWFjAx8cH3bp1w9OnTzN9HBMnTkRgYCBsbGwAvHttJN9cXFzQqVMn/Pvvv+ptfHx80n3sX3/9dZr9BwQEwNjYGGfPnk1zX/LvXqVSwdTUFC4uLmjevDlWrlyJpFRnFbmdHLl69So6deqkfmwZHWvx4sXw8fGBhYUFatWqhTNnzmjcHxMTg+HDh8PR0RHW1tbo1KkTnjx5or6/bNmyqF27Nr777rscx3zv3j2N59/MzAy+vr746quvoMveHWfPnsUnn3yS4/1cvXoVXbt2hbOzM8zNzVGyZElMmTIF0dHRGusVKiS7apUsmf5+Mnr/2rdvH1avXo1du3YhNDRU3ZFWn1K+L5iYmMDHxweffvopoqKitNq+bt26CA0NhZ2dndbH5IUIKugOH5ZFzxMTgdu3ge+/5+hKIiLKP/iRVkDcu3cP1apVw59//omgoCBcuXIF+/btQ+PGjTF8+HClwysQvLy8sGHDBrx9+1a9LCYmBuvXr0fRokUVjCxz5cqVQ2hoqMbt+PHjWm0bERGB2rVr4+DBg1i6dClu376NDRs24Pbt26hRo4ZGIqhTp064ePEi1qxZg5s3b2LHjh1o1KgRnj9/DkAmrpo2bQoHBwfs378f165dw6pVq+Du7p7pyJwHDx5g165d6Sb+bty4gcePH2Pz5s24evUq2rZti8TERPX9M2bMSPPYAwMD0+z/5MmTGDFiBFauXJluDC1atEBoaCju3buHvXv3onHjxhg1ahTatGmDBD1Wso2Ojkbx4sXx9ddfw9XVNd11Nm7ciDFjxmDq1Km4cOECKlWqhICAAI3k36effoqdO3di8+bNOHr0KB4/fowPP/xQYz/9+vXDkiVLdPb4Dh48iNDQUNy6dQvTp0/HrFmzMny+s8PZ2RmFChXK0T5Onz6NWrVqIS4uDrt378bNmzcxa9YsrF69Gs2bN0dcXJx6XZUKMDWVCapk8fHA8+fylpE7d+7Azc0NdevWhaurK0xMlJmRn/y+cO/ePXzzzTdYvnw5PvvsM622NTMzg6urK1SZDQ0jIg1TpwKLFwNNmyodCRERUS4QlEZkZKQAICIjI9Pc9/btWxESEiLevn2rQGTZ17JlS+Hh4SGioqLS3PfixQv1/wGIn376SXTo0EFYWloKX19f8fvvv6vvT0hIEP379xc+Pj7CwsJClCxZUixYsEBjf3369BHt27cXQUFBwtXVVTg4OIhhw4aJuLg49Tre3t5i1qxZol+/fsLa2lp4eXmJZcuWaeznwYMHokuXLsLOzk4ULlxYtGvXTty9ezfNcTJy+PBhAUDj8aUUEREhevfuLezt7YWlpaVo0aKFuHnzpvr+e/fuiTZt2gh7e3tRqFAhUbZsWbF79271tj179hROTk7CwsJC+Pr6ipUrV2YYS3Ks5cuXF2vXrlUvX7dunahYsaJo37696NOnj3p5TEyMCAwMFM7OzsLc3FzUq1dPnDlzRmOfu3fvFn5+fsLCwkI0atRIrFq1Ks3jPXbsmKhfv76wsLAQnp6eIjAwUOM14O3tLebPn59h3FOnThWVKlXK8H4hhPD39xejRo1K974hQ4YIKysrERoaqrE8OjpaeHh4iBYtWggh5GsQgDhy5EiGx9m2bZswMTER8fHxmcaTWlBQkKhevbrGsvReG+vWrRMAxPXr14UQ739ukk2bNk10795dXLt2TdjZ2Yno6GiN+zN6nR46dEj995ZM22PqQkbHqlmzphg+fLj658TEROHu7i7mzJkjhBDi5cuXwtTUVGzevFm9zrVr1wQAcerUKfWy2NhYYW5uLg4ePJijOO/evSsAiIsXL2osb9q0qRg2bJj65zNnzohmzZoJR0dHYWtrKxo2bCjOnz+vvj8pKUlMnTpVeHl5CTMzM+Hm5iYCAwPV96d+Pt73XphaUlKSKFu2rKhevbpITEzUuC84OFioVCrx9ddfZ/iYkv8Gli49LPbulfenvPXp00f06dNHY5m3t7cQIu3fYGbvbUlJScLJyUnj91epUiXh6uqq/vnYsWPCzMxMvHnzJt3Hmt77wqBBg9T7eN/7V+q/v1WrVgk7Ozuxb98+Ubp0aWFlZSUCAgLE48eP1cdL/XwcPnw43djy6mc0UXbcvi1EFj8SiYiI9CazvEpqHDGlQ2/eyFvK2SVxcXJZcj2R1OumnMkTHy+XxcS8f92siIiIwL59+zB8+HBYWVmlud/e3l7j5+nTp6Nr1664fPkyWrVqhV69eiEiIgIAkJSUBE9PT2zevBkhISGYMmUKJk2ahE2bNmns4/Dhw7hz5w4OHz6MNWvWYPXq1Vi9erXGOvPmzUP16tVx8eJFDBs2DEOHDsWNGzf+/7mIR0BAAGxsbHDs2DGcOHEC1tbWaNGihcaog5zo27cvzp07hx07duDUqVMQQqBVq1aIj48HIKfYxcbG4q+//sKVK1fwzTffwNraGgDw5ZdfIiQkBHv37sW1a9ewZMkSODk5vfeY/fv3x6pVq9Q/r1y5Ev369Uuz3rhx4/Dbb79hzZo1uHDhAnx9fREQEKD+PTx8+BAffvgh2rZti+DgYAwcOBATJkzQ2MedO3fQokULdOrUCZcvX8bGjRtx/PhxjBgxItvPWVYkJSVhw4YN6NWrV5rROZaWlhg2bBj279+PiIgIWFtbw9raGtu3b0ds6j+W/+fq6oqEhARs27YtS1O4jh07hurVq793PUtLSwDI0utLCIFVq1bho48+QunSpeHr64stW7ZotW2TJk1QqVIlbN26VevjrVu3Tv1cZXQ7duyY1vtLLS4uDufPn0ezZs3Uy4yMjNCsWTOcOnUKAHD+/HnEx8drrFO6dGkULVpUvQ4gR8VUrlw5R/Fk5Ny5czh//jxq1aqlXvb69Wv06dMHx48fx+nTp+Hn54dWrVqp64r99ttvmD9/PpYtW4Zbt25h+/btqFChQqbHyey9MLXg4GCEhIRgzJgxMEo1v6ZSpUpo1qwZfv31V43lz5+n/WywtARKlvTCli2/AZCj+kJDQ7Fw4UIsXLgQM2bMgKenJ0JDQ9OdOgpk/t6mUqnQsGFDHDlyBADw4sULXLt2DW/fvsX169cBAEePHkWNGjWyNILM0tJS/bfzvvev9ERHR+Pbb7/FL7/8gr/++gsPHjzA559/DgD4/PPP0bVrV/XIw9DQUNStW1fr2Ijyo3r1AF9fIMXbLhERUZ7FxJQOWVvL27Nn75YFBcllqXMBRYrI5SnL7CxeLJcNGKC5ro+PXH7tWvbiun37NoQQGnWBMtO3b1/06NEDvr6+mD17NqKiotQ1ZkxNTTF9+nRUr14dxYoVQ69evdCvX780ianChQtj0aJFKF26NNq0aYPWrVunqWXVqlUrDBs2DL6+vhg/fjycnJxw+PBhAHI6UVJSEv73v/+hQoUKKFOmDFatWoUHDx6oT6hy4tatW9ixYwf+97//oUGDBqhUqRLWrVuHR48eqYu/P3jwAPXq1UOFChVQvHhxtGnTBg0bNlTfV6VKFVSvXh0+Pj5o1qwZ2mrRHuejjz7C8ePHcf/+fdy/fx8nTpzARx99pLHOmzdvsGTJEgQFBaFly5YoW7YsfvrpJ1haWmLFihUAgCVLlqBEiRKYN28eSpUqhV69eqWZqjZnzhz06tULo0ePhp+fH+rWrYvvv/8eP//8M2JSZz8zceXKlTTJj/RqZaUWHh6Oly9fokyZMuneX6ZMGQghcPv2bZiYmGD16tVYs2YN7O3tUa9ePUyaNAmXL19Wr1+7dm1MmjQJPXv2hJOTE1q2bImgoCCN2kbpuX//Ptzd3TNdJzQ0FN9++y08PDxQqlQp9fLx48dnmvg5ePAgoqOjERAQAED+fpN/R9ooXbo07t27p/X67dq1Q3BwcKY3bZJwGXn27BkSExPh4uKisdzFxQVhYWEAZK06MzOzNAntlOskc3d3x/3797MdT0p169aFtbU1zMzMUKNGDXTt2hUff/yx+v4mTZqoE4RlypTB8uXLER0djaNHjwKQf7Ourq5o1qwZihYtipo1a2LQoEGZHjOz98LUbt68CQCZvt6T10kWFiYvXqRUtChQvLgxHB0dAABFihSBq6sr7OzsYGdnBxsbGxgbG8PV1RXOzs5pjqPNe1ujRo3U76N//fUXqlSporHsyJEj8Pf3z/S5Sen8+fNYv349mjRpotX7V3ri4+OxdOlSVK9eHVWrVsWIESPUnxnW1tawtLRU155zdXWFmZmZ1vER5XVXrgAHDgDh4e+WFSsmu3mGhCgXFxERka4wMVUAZGV0CQBUrFhR/X8rKyvY2tpq1JdZvHgxqlWrBmdnZ1hbW2P58uVpClmXK1cOxsbG6p/d3NzSFKhOeRyVSgVXV1f1OpcuXcLt27dhY2OjTgg4ODggJiYGd+7cydLjSc+1a9dgYmKiMeLC0dERpUqVwrX/zwCOHDkSX331FerVq4epU6dqJEmGDh2KDRs2oHLlyhg3bhxOnjyp1XGdnZ3RunVrrF69GqtWrULr1q3TjLS6c+cO4uPjUa9ePfUyU1NT1KxZUx3btWvXNGIHgDp16mj8fOnSJaxevVojqRIQEICkpCTcvXtXq3gBoFSpUmmSHzNmzNB6e21ff506dcLjx4+xY8cOtGjRAkeOHEHVqlU1RtrNmjULYWFhWLp0KcqVK4elS5eidOnSuHLlSob7ffv2LSwsLNK9z9PTE1ZWVuo6Vb/99pvGCe/YsWMzTfysXLkS3bp1U9f56dGjB06cOKH1a1QIkaU6OzY2NvD19c30ljzyyxBYWlqmKfqd7MGDBxqvzdmzZ2e6r40bNyI4OBiXLl3Cpk2b8Pvvv2uMEnzy5AkGDRoEPz8/2NnZwdbWFlFRUer3pi5duuDt27coXrw4Bg0ahG3btr23/tX73gvTk5X3W1tbwNxc69W1os17m7+/P0JCQhAeHo6jR4+iUaNG6sRUfHw8Tp48iUaNGmV6nOSEtaWlJWrWrIk6depg0aJFWr1/padQoUIoUaKE+uf0PjOICqqffgI++AD45pt3y77+Wo66HDxYubiIiIh0RZmqqflUckOilLMfxo4FRo+WV7VSSv6+nfIccvhwYNAgIEU+BwCQPKAiu+ebfn5+UKlU6mka72Nqaqrxs0qlUncP27BhAz7//HPMmzcPderUgY2NDYKCgvD3339rvQ9t1omKikK1atWwbt26NPGlN0ogNwwcOBABAQHYvXs3/vjjD8yZMwfz5s1DYGAgWrZsifv372PPnj04cOAAmjZtiuHDh+Pbb79973779++vnk63ePHiXIs/KioKgwcPxsiRI9Pcl5Vi68ld0LLK2dkZ9vb2GZ6MXrt2DSqVSmPfFhYWaN68OZo3b44vv/wSAwcOxNSpUzVGgzk6OqJLly7o0qULZs+ejSpVquDbb7/FmjVr0j2Ok5MTXrx4ke59x44dg62tLYoUKaLu2Jd624wee0REBLZt24b4+HgsWbJEvTwxMRErV67ErFmz0t0u9XNQrFix966XbN26dRj8nrOQvXv3okGDBlrvMyUnJycYGxunGYX25MkT9XRMV1dXxMXF4eXLlxqjplKukywiIkIj2ZCSu7s7goOD1T87ODhkGpuXl5f6d1GmTBncuXMHX375JaZNmwYLCwv06dMHz58/x8KFC+Ht7Q1zc3PUqVNHPb3My8sLN27cwMGDB3HgwAEMGzYMQUFBOHr0aJr3omTavI8lK/n/7fWuXbuGKlWqpLn/2rVr6nWSp/p5egok50GTpxAny8028BUqVICDgwOOHj2Ko0ePYtasWXB1dcU333yDs2fPIj4+/r1T5UqVKoUdO3bAxMQE7u7u6oTu+0YwZiS95zqrF1WI8itHR9nBM0WuHJ6eysVDRESkaxwxpUNWVvKWcgCEmZlclvqqePK6KUuRmJrKZakHd6S3blY4ODggICAAixcvTrd7Wep25Jk5ceIE6tati2HDhqFKlSrw9fXVyQim1KpWrYpbt26hSJEiaUaEZKXFeEbKlCmDhIQEjYTa8+fPcePGDZQtW1a9zMvLC0OGDMHWrVvx2Wef4aefflLf5+zsjD59+mDt2rVYsGABli9frtWxk+tkJdfRSq1EiRIwMzPDiRMn1Mvi4+Nx9uxZdWxlypRJM6Xo9OnTGj9XrVoVISEh6Y6q0cc0GCMjI3Tt2hXr169PM8Xr7du3+PHHHxEQEJBpQqJs2bKZdtwzMzNDiRIlMl2nSpUqCMlgrkOxYsVQokSJdJNS77Nu3Tp4enri0qVLGiOq5s2bh9WrV2t090vPn3/+iStXrqBTp05aHzO3p/KZmZmhWrVqGtNuk5KScOjQIfWIvGrVqsHU1FRjnRs3buDBgwdpRu39888/6SZpAMDExETjNfm+xFRqxsbGSEhIUCeeTpw4gZEjR6JVq1YoV64czM3N8SzlvGrIEVxt27bF999/jyNHjuDUqVOZjrbLisqVK6N06dKYP39+muTVpUuXcPDgQfTo0QPAu+R6aGioep3kJN2rV0BwMPDsmfwbfd/rKDVt3ttUKhUaNGiA33//HVevXkX9+vVRsWJFxMbGYtmyZahevXq69QhTSk5Y+/j4aLyfaPP+lR1mZmZZfi6I8oupU4EbN4AUs5eJiIjyFY6YKiAWL16MevXqoWbNmpgxYwYqVqyIhIQEHDhwAEuWLMl0ikVKfn5++Pnnn7F//34UK1YMv/zyC86ePZulUR/a6NWrF4KCgtC+fXt1sd/79+9j69atGDduHDyzcKnwypUrGokHlUqFSpUqoX379hg0aBCWLVsGGxsbTJgwAR4eHmjfvj0AYPTo0WjZsiVKliyJFy9e4PDhw+r6MVOmTEG1atVQrlw5xMbGYteuXRnWlknN2NhY/Xwbpx4eBzllaOjQoRg7diwcHBxQtGhRzJ07F9HR0Rjw/wXIhgwZgnnz5mHs2LEYOHAgzp8/n6a4/Pjx41G7dm2MGDECAwcOhJWVFUJCQnDgwAEsWrRI6+cvISEhTWJJpVJp1CEKDw/XGP0CyKk4s2fPxqFDh9C8eXPMnTsX5cuXx927dzF58mTEx8erR4w9f/4cXbp0Qf/+/VGxYkXY2Njg3LlzmDt3rvr3sWvXLmzYsAHdu3dHyZIlIYTAzp07sWfPHo2C8qkFBARg4MCBSExMTPf5zszr16/TPPZChQrB1tYWK1asQOfOnVG+fHmN+728vDBx4kTs27cPrVu3BgDExsYiLCwMiYmJePLkCfbt24c5c+agTZs2GnWS3sfGxiZbSbRkcXFx6iRdXFwcHj16hODgYFhbW6tHI40ZMwZ9+vRB9erVUbNmTSxYsABv3rxRF+m3s7PDgAEDMGbMGDg4OMDW1haBgYGoU6cOateurT7WvXv38OjRI40i6Tnx/PlzhIWFISEhAVeuXMHChQvRuHFj2NraApDvTb/88guqV6+OV69eYezYsRrTGpOThbVq1UKhQoWwdu1aWFpawtvbWyfxqVQqrFixAs2bN0enTp0wceJEuLq64u+//8Znn32GOnXqYPTo0QAAMzNL1K5dG19//TWKFSuGp0+fYvLkyQDkBYiEBMDR0RsqlQq7du1Cq1atYGlpqW6+kBk/P7/3vrcBss7UZ599hurVq6v327BhQ6xbtw5jx47N9vOgzftXdvj4+GD//v24ceMGHB0dYWdnl+FIN6KC4uJFYOZMWYf055+VjoaIiCgHcqkzYJ6WWVvDvNyK+vHjx2L48OHC29tbmJmZCQ8PD9GuXTuNttsAxLZt2zS2s7OzE6tWrRJCyDbgffv2FXZ2dsLe3l4MHTpUTJgwQaN1eJ8+fUT79u019jFq1Cjh7++v/jm9VvWVKlUSU6dOVf8cGhoqPv74Y+Hk5CTMzc1F8eLFxaBBg9S/l/SOk1JyS/LUN2NjYyHEu5bqdnZ2wtLSUgQEBKhbqgshxIgRI0SJEiWEubm5cHZ2Fr179xbPnj0TQggxc+ZMUaZMGWFpaSkcHBxE+/btxb///pthLO+LtX379qJPnz7qn9++fSsCAwPVjz11u3UhhNi5c6fw9fUV5ubmokGDBmLlypUaLdiFEOLMmTOiefPmwtraWlhZWYmKFSuKWbNmqe9P7/eQUnpt2gEIc3Nz9Tr+/v7prjNz5kwhhBDh4eEiMDBQeHl5CVNTU+Hi4iL69u0r7t+/r95HTEyMmDBhgqhataqws7MThQoVEqVKlRKTJ08W0dHRQggh7ty5IwYNGiRKliwpLC0thb29vahRo4b6tZmR+Ph44e7uLvbt26delrpdfXq8vb3TfVyDBw8W586dEwDS/E6StWzZUnTs2FEIIX/3yduamJgIZ2dn0axZM7Fy5UqRmJiosZ2Xl5f44YcfMn08OXH37t10H1PKv00hhPjhhx9E0aJFhZmZmahZs6Y4ffq0xv1v374Vw4YNE4ULFxaFChUSHTt2FKGhoRrrzJ49WwQEBOg8ZmNjY+Hp6SkGDRoknj59ql7vwoULonr16sLCwkL4+fmJzZs3a7y+t23bJmrVqiVsbW2FlZWVqF27tjh48KB6+9R/C+97L8zI5cuXRadOnYSDg4MwNTUVJUqUEJMnTxZv3rxRr/PwoRCbNoWIatXqCEtLS1G5cmXxxx9/CADi4MHDIipKiIQEIWbMmCFcXV2FSqVSvz/Mnz9feHt7axzT399fjBo1Sv3z+97bhBDi4sWLAoAYP368etn8+fMFAI2/lfRMnTpV4z0/tfe9f6X++1u1apWws7PT2Me2bdtEyq8oT58+Vb+XAdD43Ep97Lz6GU2UVefPCwEIYWUlREyM0tEQERFpyiyvkppKCBZxSO3Vq1ews7NDZGSk+mp8spiYGNy9exfFihXLsKAyERmWxYsXY8eOHdi/f7/SoWQoMTERtra2WLNmDTp37qx0ODkSFxcHPz8/rF+/XqMINkn//gtERMgaManKclEO8TOa8psffwR++AHo31/WLU0pKUl2f27aFKhaNfslH4iIiHJDZnmV1DiVj4jyvcGDB+Ply5d4/fp1jqbC5Zb//vsPP//8MxITE1G/fn2lw8mxBw8eYNKkSUxKZaBYMZmU4kkkEb1PcDBw/bqsP5eakREwfrzeQyIiItI5JqaIKN8zMTHBF198oXQYGapcuTIcHR3xyy+/pOlslxclFzSn9KlUQGb9B968ASIjZSfWwoX1FxcRGZ6ZM4FOnQAdlcMjIiIySExMEREpLHX3OCrYXr8GHj+WSSkmpvK38HCgXDnAzU0WsuYoOkrNxQVIp4Gvhj17gJAQOd0viw1OKR8YPRr49Vfg3DnAy0vpaIiIsodfgYiIiPQkJgZ48EAmJDJibQ04OgJ2dvqLi5QRFiZfC5cvA7NmAS9fKh0R5UWBgbL+1JUrSkdC+hYVBSxcCDx9Cpw/r3Q0RETZxxFTREREevL2rTyBsLICnJ3TX8faWt4o//PzAy5dAipVAqZMka+JIUOUjooMxZUrwPHjQK1asrh5Rlq3fve+QgWLtbWc+n3gANChg9LREBFlHxNT2ZSUlKR0CERElMeYm8tOfKamSkeSP+W1z2YLC6BiReC774BduwAfH6UjIkOyZw8wYQLQowewfn3G633/vf5iIsNjayvrkBGltHatHFHHix2UVzAxlUVmZmYwMjLC48eP4ezsDDMzM6hUKqXDIiKiPMDICHBykv+Picl83YQE+a8JP6nfSwiBuLg4hIeHw8jICGaZVZc3QKNHA59+qnQUZGh8fORoqIYNlY6EDFFiImBsrHQUZIji4oDeveX/GzSQtQyJDJ1KCCGUDsLQvHr1CnZ2doiMjIStrW2a++Pi4hAaGoro6GgFoiMiovwuIkIWQbe3Z62prChUqBDc3NzyTGLqyBHg/n05Vat0aaWjobwuLi7zjp+Uv7RsKX/fs2fLkXX//CPrTLEAPgFAq1bAn38Cu3cDTZsqHQ0VVO/Lq6TE67DZYGZmhqJFiyIhIQGJiYlKh0NERHlEaKisI/S+UVB79gA//AB89BEwebJ+YsvrjI2NYWJikqdGMa9aBfz8M/D11zIx9fYtsHMn8OGHHClH2nv5Utag+u8/mdA2N1c6Ispt//0H7N8v/79woaxHdv8+cPWqHCFDtHGjrEGWhz4SqYDj155sUqlUMDU1hSkLhRARkRYSE4FSpYCkJHkC4eGR8boDBgCDBsnaIZR/VagAfPABULYsIARQuTJw86ZMTrVpo3R0pKS4ODn1V5sEpZ0d8OwZEB8P3LkjX0+Uv3l6AiEhwNGjcsrnokXy86JKFaUjI6U9eyZfCzY2SkdClDVGSgdARERUEDx9Kk80jYxkAfTM2NszKVUQfP65HPXQtq28qt2qFVC0KPDmjdKRkdJ27JCjHZLrxGRGpZLTQsPCgDJlcj00MhClSwODB8v/t2kja5GxoyuNHQu4u8sRU8nevlUuHiJtMTFFRESkB25uQHQ08OABC9ZS+mbOBO7eBbp1UzoSUlpICBAbq33NqKpVARcXTtshKsiSkoCTJ4HnzwEvL2DvXqBkSaBfP6UjI3o/JqaIiHIJW0tQatqMlkr23Xfyy+Tdu7kbExkOa2v5GiGaPFlOy/viC6UjIUPTtq0cbfn06btlcXHAgQNySh+/exRcRkayztiBA0CdOkDhwsCtW7IIelKS0tERZY5d+dKRlerxRESp/fcfMH48cPs2cPo0r2BT9lSuDFy6xHpD+VV4uKwF5OYGBAdrJqSEkCcX5csrFh7lMWFhcupOTIz8/KH86dIl+dlgYiK/a7i4yOXR0TKxLYR8LSQvp4ItMRH4/XegWTOWByBlsCsfEZGCbG2BLVvkFcxr11iIlqR584CHD2XNmGrV3r/+wIHAixeAr2/ux0b6FxYmi9QCmkmpxESgdm3g3Dng4kV5Ekr0PuHhwOjRsj7duHG8IJJflS8v649du6aZfCpUSDZSsLZmPaGCKiEhbbMEY2PZ5ZUoL2BiiohIx8aOlUmpNWtkcVIiQCYrT58G6tfXLjE1YkTux0TKKVkSuHwZiIrSXG5sLLtsXbnybnQEFSwPHwJLlwLFi8sOndrw85MnoKVKyRNUNo3On4yN5VS+tm3T3rdvn/7jIcMxbZqsKTV9OkdZU97EqXzp4FQ+IsoJJydZePLyZdkOngiQicqrV4FPPuEoKMrc/fty5GXhwkpHQko4cECOfilfXiYoiYgyI4RMTt+5A2zYkLaBxs8/A9u2AXPnyvWI9IVT+YiIFDRvnpym4+2tdCRkSPr0yfo2UVGyjghH3hUsfO8o2Nzc5IjJIkWUjoQMydGjwD//ALVqAdWrZ7xeelO6KH9TqeSI7F9/Bdq3T3v/L78ABw8CDRoAY8boPz4ibXDEVDo4YoqIdOHWLXnlqmRJtn+nrLt/X07pMjOTNUPYrS1/OXxY/o5r1QLKlFE6Gsov4uOByEg5cpfyl5EjgR9+ACZMAObMSXv/gwdypN3z57JjH+uMUbLNm4Hr14EuXXihi/QrK3kVfs0lIsolu3cDU6YAP/6odCSktFevZBIiPl77bTw85FVvGxtZ2Jjyl9WrgX79ZCHj9Fy8CLRrx6Q2aW/dOsDSEujbV+lIKDdUrizriGVUo9DFRXYDfvYMePxYr6GRgevSBfjySyalyLAxMUVEpEPPn8uaIM+fAx07ygKU/fsrHRUpbc8eOfqpeXPttzExASIi5EkGW3/nPxUrAgEBGXftNDEBdu6Ut5gY/cZGyoqOljVjssrNTXZ1fPhQ9zGR8vr3B377DejcOf37zc3lSMz//gPc3fUbGylnzRqgRw/g5EmlIyHKGSamiIh0aNcuecLZs6esE7NzZ/ZqC1H+Ehkpu2R5emZtOxub3ImHlPfZZ7KLVnrdtQBZ+HrePODECTmdkwqOjh0BCwtg06asbVenjkxKBAfnSliUBzRoIEfbchpfwXH8uCwb8b6ujImJwKlTWX9fIdIXlsYjItKhhARZ28PNTelIyJAMHgwMGiRrRRFpQ6VikdqC6skTIC5OdmbMCktLmZSg/Cd5BB0TTpRaly5yRHajRpmvd/Ik0LAh4OAAdOoEGBvrIzoi7bH4eTpY/JyIckqId18go6KAvXuBFi04Aoay5swZYNkyOfpuyhSloyEifYiJkcWrnZyAQoWUjoYMwfPncnqehwdw82bGXffCw4EtW4DXr4Fx4/QbIxm2hATZjKdmTWDxYsDRUemIqCBg8XMiIoWlvKpZty7QtatMThFlRWgosHJlxgWyKW8KD5dJhwoVgKSkzNc9cQL44gvg0SP9xEbKs7AAihbNXlLq4EHZvY3TdfKXx4/lKLrXrzNOSgHyvWXYMGDmzOzVKaP8y8QEuHNHTvtjUooMEafyERHlspYtZTHbhASlIyGl9O8vp+V88QXg7Kz9dlWqANOmyXpDlH+EhckRECoVYPSeS4Rjx8q6IMWKAQMH6ic+yrtOnQJ++EEmMLp2VToa0pUyZYC7d4EXLzJfz89P1q0rW1aOvLO01E98pJwbN+T3isKF3z/Vk1NByZBxKl86OJWPiLJryBCZhPryS/kFEQBiY2XxYn4hKJhiY+UICODdSBkq2GJjgVu35DTf2rUzX3fhQjml85NPAH9//cRHynn4EFiyBChePHuJyBMngN9/l7Vk2rTRfXxEZDhSfr+IiJDJKW0kJb3/ogiRLmQlr8LEVDqYmCKi7CpSRCYfgoOBSpWUjoYMwdu3wIoVcirW7NlMUBJRxg4cAD74QI6SvHJF6WiIyJCFhQGlS8sLorGx7/9+8eyZLC8RGgq8fMkC6JT7spJX4VQ+IiIdmjdPfuB7e6e9TwjZbcnVVf9xkXIsLYERI7K//Zs3si6EgwPg6am7uIjI8Li5AYGBWZvyS/nf77/L0XSNGwPlyr1//YQEOV3YxSX3YyPluLrKBFNcnHYXvQoXBu7dA+Lj5cWyokVzO0Ii7XEQHxGRDvXuLTvh2NtrLr9zR3ZDqVgRSExUJDTKo4YPl6Pv1qxROhLSlcOHgVWrgJAQ7bd59owjaAqC8uWB77+X08GzKzFRfuZEROguLlLW6tUyYfnXX+9f9+BBwNoaaN0618MiA2Fmpt16xsbA0aMyOeXhkashEWUZE1NERHpQtKi8OhUeLguYUsHx6BFw/768QpkdJUrIq5xMaOYfq1bJgvi7dmm3/s6dcppwv365GxflD+3bA76+wNatSkdCutKgAdCpk3ajpYoWldO67t9nZz5Kq04dOaqf0/jI0DAxRUSkI8+fA5cvy5ENqZmaAufOyY46vr76j42UM2sW4OMDTJ+eve0nTZIjH6ZM0WlYpKBKlYAWLWTnLG3UqCH/TUiQnbYo/4qOznkywddXFkR+Xwc3yjvGjAG2bJFF7d+nRAk5Yu7JE9Y0zO9+/11e5NiwQelIiHKOiSkiIh3Zs0eecPbokf79ZcumneJH+V9cnExMenllb3te1cx/PvsM2LtX+65prq6yyG1w8LsOTJQ/dewImJsDmzZlfx+zZsnadGPH6i4uyjuMjWVXR3Zdy/9On5YjcE+f1n6bf/8FfvwRWL8+9+Iiyg4WPyci0pGEBMDJSRavJUr2v/8By5dzKh7lTJEiSkdA+vDkiZz2m5Om0FZWuouHlJeUJEc+cfQTpdayJWBj825UrTYuXJC1K+vUAXr2zL3YiLJKJQRnH6eWlbaGRESpCZH+F8gbN2TNj8KFgSFD9B8X5V1jxgCXLgFLlwJ+fkpHQ0pK/tbGk9T8KTYWePoUcHQEChVSOhoyBMHBQK1asnnK2bPabXP5siyY7uICjB+fm9FRXhMSAkycCFSpAkybpnQ0lN9lJa/CQZ5ERDqW0QnjjRuyXtD//qffeCjvO3wY+PNP4Pp1pSOhnAoPl0mH8uXlSIisGD0a8PQELl7MldDIAJiby2m/OU1KTZkiu7Ldvq2buEg5jx7JKeFZGXV7/z4wfz6wbl3uxUV5U9mysjYVk1JkaDiVj4hIT8qVAz7+GKhQQelISF/u3ZOjnUqXBmbPzv5+Jk6UIymqVtVZaKSQsDBZzN7YOOs1YC5fBh4/Bv75h68FytyePcD588CgQWy4kdd98IFMNEVHa79N9ervpmtR/nX7thyFX7gwa4pR3sepfOngVD4iyo4hQ2TB2cmTgVKllI6GDMHBg0Dz5kCZMnL4PFFsrDyZiIqS03Oy4sgRWX+oShVZz47ylwcPgCVLZFe1gQNztq+1a+XnUYsWsjU8EeU/Njbys+TmzaxP809KkrVRzcxyJzYiIGt5FSam0sHEFBFlh6urLFx74YI8cSR68ADYsUN2UsvpiSYR5W8HDsjRMeXLA1euKB0NERmy2Fj5vfPlS3mzs9N+28BA2ZTl22/l/4lyS1byKpzKR0SkI/PmyWk2xYplvl50tKwVYWOjn7hIOUWLAiNG5Hw/8fHyimhoKNCsWc73R0SGx80NGDkScHZWOhIyJGvWAK9eyZphxYtrv50QwMOH8nMjq6MzyfCZmwMvXsj6Y6amWdvWwkJu9++/uRMbUXZwxFQ6OGKKiHLLkCHAsmVAUBDw+edKR0N5xb17MuFpagq8fSvrE1He9Oef8vdZu7YsQpsVcXHAsWNy+wEDciM6yi+EAP77T468Cgjge0ZeVr26rBe2cyfQpo322yVPJff1BW7dyr34KO959Ehe8PL0BEw4TIVyEUdMEREZKEdH+e+jR8rGQfpx9SpgbQ14eOTsy5+XlxxF4eUlh+wnv44o71m9GvjlF+Cbb7KemIqPfzdirmNHwMFB5+FRPpGUJGsdvn0rO8KWLKl0RJRdrVvLCxNZLWJftaq8mGFnJ6d9mZvnTnyU93h4KB0BUVpMTBER6cDz5/LqtLt75tMwPvtMjpQqXFh/sZFyunWTyak//pBXrrPL2Bh4+lR3cZFyKlUCnj3LelIKAKysgIYNAVtbWdiaian85c0bwNJSN921jI3la+3VKzndh/Ku6dOzt52Dg/z9W1joNh4yDH/+KZsc1K8P9O+vdDREOcfGkkREOrBvH1C5skxEZMbBgUmpgsTUVN68vJSOhAzFZ58Be/ZkbUpOSkePyik9fE3lPx07ylEtmzbpZn8nTsjEOOsLFVxMSuVfFy4Aq1YBhw9nb/vly4Fx44CICN3GRZRdHDFFRKQDCQlAkSJyxBRRsosX5ZQaIqL3efJEfpZkpbtWZnQx8oqUlZgof48qldKRkKFp2BCYPRsoUyZ728+YIctKdOrE5DUZBn5kERHpQJ8+8qTil1/ev+68ecDgwXJ9yv+MjHRzgnjokKwvNHJkzvdFRIbn7FnZRa1BA6UjIUOxe7cc9dSuXfa2f/wY6NABqFZNFsSn/KNmTWDiRPn7zY6PPgJGjeIofjIcHDFFRKRD2lzV/PFH2aL3o48AF5fcj4nyhzdvZHKK9WLyrqdPgdKl5cjKy5ezl7A8flx293RzAw4c0H2MpBwzM9klS1diYoCePeV0vuBgWb+K8pbHj2U3zuyOmLK3B3btkiOvHj3S7euL8ravv1Y6AiJNTEwREenZoEGyU5Kbm9KRUG76/XdgzRqgRQvgk09yvr+aNWU9idKlc74vUkZYmEwsmphkfxRdoUIy0RAertvYKP8xNweOHZPF9kNC5KgZylsGDJBd+RITs7d9oULAihVAiRKZN2ahvOfuXcDGRtYu5bRdyg+YmCIi0oGhQ4HXr4Evvnj/fP8JE/QTEynr/Hlg2zZZe0wXXF2Bvn11sy9SRqlSMqn0+nX291G6tGy2UKKE7uIi5T14IEfTlighL17ogkoFLFkip+qUKqWbfZJ+6aJ5Rp8+uomFDEvjxsD9+8CpU0Dt2tnbR1IS8PIlO7ySYVAJwRnHqb169Qp2dnaIjIyEra2t0uFQHjRrFrBunWzl6uqqdDSkD+7uQGgocO4cr0qTdPGi7IpVtizQpInS0RCRIfvjDyAgAKhQQU7zJCLKjKennJ555w5QvHjWtz9/HqhXT47ev3tX9/ERAVnLqxjEwL/FixfDx8cHFhYWqFWrFs6cOZPp+ps3b0bp0qVhYWGBChUqYM+ePRmuO2TIEKhUKixYsEDHURNlbOlS4No1eaWSCoZvvwWCgrT/chAdDdy7l6shkcKqVAFGjNBtUioyEti5E9i6VXf7JCLlubvLQsTduysdCRmSBQuA77+X04CzKyFBXigNCmKX2Pzkv/9k/TEfn+xt7+YGxMbKi6oJCToNjShbFJ/Kt3HjRowZMwZLly5FrVq1sGDBAgQEBODGjRsoks78h5MnT6JHjx6YM2cO2rRpg/Xr16NDhw64cOECypcvr7Hutm3bcPr0abizfzvp2aRJwKVLQNOmSkdC+tKzp/brXrggR1W5u8urXUTa+vNP4MMPgXLl5L+Ut/z5p7wyXaeOHEmXXSEhwMmTctpX48a6i4+UU768TELoWlycfK3cuCG7wVLeMnu2rCfXqFH2R+ALAbRpI2tbtm3LOoX5ialp9rd1dZWjrby8ZN1DIqUpPmLqu+++w6BBg9CvXz+ULVsWS5cuRaFChbBy5cp011+4cCFatGiBsWPHokyZMpg5cyaqVq2KRYsWaaz36NEjBAYGYt26dTDNyV8tUTYMHSpHTTVsqHQkZIiKFpX/vnkjTxoo/xFCdk+7d0+3V6jr15cnFfXqZb8YLiln1Spg4EDZJSsntmyRdYjWrdNNXJR/xcbK5OWQIbIIOuUdQgC9egFduuSsm56pKdCundwPPzcomZGRHOXP02QyFIrmR+Pi4nD+/HlMnDhRvczIyAjNmjXDqVOn0t3m1KlTGDNmjMaygIAAbN++Xf1zUlISevfujbFjx6JcuXLvjSM2NhaxsbHqn1+9epXFR0L0zj//AB4estgoFQwREbJwrbu7doWuHR3lCYKDQ/ZbQJNhi4gAGjSQ/3/7FrCw0M1+nZ3lNGHKm6pUka8NLb6aZKpqVaBlS6BSJd3ERcqLipId1HTdXcvGRo62sbWVRfednHS7f8o9KhUwf75u9rVhg272Q4bh7FnZLKFqVSAwUOloiHRD0RFTz549Q2JiIlxcXDSWu7i4ICyDydRhYWHvXf+bb76BiYkJRo4cqVUcc+bMgZ2dnfrmldP2F1SgdesmEw4HD8qaADnpvkR5w/798oSza1ft1lepZHKKSan868ULeSXSy0t3SSnK+8aMAXbvlu3fc6JNG2DPHp6Q5CcdOwJmZsCmTbrf9+HDwO+/A8WK6X7fRKR///wDrF4tPwdy4vhxYPx44NdfdRIWUY4oPpVP186fP4+FCxdi9erVUGl51jdx4kRERkaqbw8fPszlKCm/io19N0x60iRZWHD3bmVjotyXmAi4uMgRU0QA4Osrazfcv597x+C0HKL84+lT+VliZ6d0JGQo4uN1X6w8KorT+fKDatWAOXOA3r1ztp8zZ4C5c2XimkhpiiamnJycYGxsjCdPnmgsf/LkCVwzqPDn6uqa6frHjh3D06dPUbRoUZiYmMDExAT379/HZ599Bp8M2haYm5vD1tZW40aUHebmwPXr8oSxWjU5JJ95zvzvo4/k6Lis1Hs5fFjW/Fi+PPfiIuXlxqi4ly/laCxXV3mSQQWXEDzJzC/OnpVdtpKnAOcGvlbyluXL5YjbTz7Rzf4aNZKJz+Bg3eyPlFOxIjBhQtYa76Snbl1g5Eg5YpNIaYompszMzFCtWjUcOnRIvSwpKQmHDh1CnTp10t2mTp06GusDwIEDB9Tr9+7dG5cvX0ZwcLD65u7ujrFjx2L//v2592CIUnB0BGbMkNP4xo5VOhrSl6wkIa5eBZYtA/buzb14KH+yt5dX0YUArlxROhrS1pMnsvZguXK6GQXRsydgbQ3s2JHzfZHyzMxkfcpChXS/79BQeSLr7Kz7ETiUex4/lqOmzM11sz8LC/n7v3RJN/ujvK92bWDhQlmGhEhpijeHHDNmDPr06YPq1aujZs2aWLBgAd68eYN+/foBAD7++GN4eHhgzpw5AIBRo0bB398f8+bNQ+vWrbFhwwacO3cOy/9/2IGjoyMcHR01jmFqagpXV1eUKlVKvw+OCjRnZ6UjIENWrx7w5ZdA9epKR0K5Ydo04PJlYPhwoGlT3e9/xw7Ax0cWNKa84ckTOdrN1FQ3Ba6FAKKj5ZRRosw4OQE3bsgusPfuyRGXZPimTpUjq010dLa2cKH8zHBz083+SDkPHgCWlrKmrbGx0tEQ6Ybiialu3bohPDwcU6ZMQVhYGCpXrox9+/apC5w/ePAARim+wdWtWxfr16/H5MmTMWnSJPj5+WH79u0oX768Ug+BCIC8qlWtmiyC/cMPPGEsSIYNAyIjgS++AMqW1W6bKlXkjfKnI0eAo0dle+7cULFi7uyXck+pUkBICKCrxr8zZsibt7du9kfKuX9fdtgqUUJ307ZSMjUF/vhDJrOLFtX9/il3mJnJBhq6wuvz+ceHHwLnzwO7duW8mYYQshyFrS1gZaWb+IiyQyWEEEoHYWhevXoFOzs7REZGst4Uae3cOaBGDTlV49kzeUV8xQrZsW3ECKBhQ6UjpNzi5SVrg5w5I18DRIcOAdeuyS+M7IRFRJn54w8gIACoUEGOtCQiykzFinIq/99/AzVr5mxf9esDJ04A27YBHTroJDwitazkVRQfMUWUX5QpI+sFPX36bprG4cPA5s1ApUpMTOVnQUEyMVWiRNa2i4mR0ypcXWXdIMo/mjbNnSl8Ka1eLbt+jh/PKaFEeZmHBzB6NEsAkKapU+VUrX79dDcKf9Mm4MABOUWwWjXd7JP07/JlOVNDF9PCPTzkfp4+zfm+iHKCI6bSwRFTpCu7d8upGx98IJNTRCklX6XauBHo2lXpaCiv+fBDeYXz669lcooM29GjwK1bclSlLj4PEhKAn3+WNaamTNFdgWTKn16+BLZskbXOvvhC6WjofWJiZA0hAIiIkKPxdaFTJ2DrVnlB7fPPdbNPyttevJCNNExNlY6E8iOOmCIyEK1b53zuN+VfxYvL7ji6qjlDhuH5c5mQ9vHRbX2Q1D7+WI6UatUq945BurN2LfC//wEzZ+omMWVsDIwaBURFAb17A6VL53yflH9FRQGDBsnXzeefM5Fp6OLi5N/3kye6HVHdtStQsiTQoIHu9kl5m66SnkQ5xcQUkQ6Ehckpew0aAJUrKx0N6VNEhCxc6+4O/H/PBq0tXw6sWQOoVLkTGynj2DGgY0dZ9+Hvv3PvOB06sB5EXlKxItCmjfYNEt5HpZIJKZWKSYa8LioKKFRIN9NyMuLhId8vihcH3r7la8bQ2doCCxbofr/duskb5V3XrgHffCMvRkyYoHQ0RLqTix+BRAXH4cPAyJHpd9N59Qo4fhx49Ej/cVHuO3gQqFo1e93XLCyYlMqPhJAFz7Nac4zyt8BAYOdOOQVTV378EVi8mAX287qOHWUHtk2bcu8YKpWc+jtvHmsaEuVlt27Ji5pbt+pmf1FRMsHVq5f8/kKkFCamiHSgcGGgRQvZVSe1Xr3kSKpt2/QfF+W+hARZvNzDQ+lIyFB07Aj8+y+wfn3uHys2VtYpO3cu949FRLnj6VMgMZEJI3onJgZISsqdfScmAv/8Azx4kDv7p9xVujQwZ076F8Ozw9xc1hxbv17OACFSChNTRDrQooXsyDdzZtr7KlcGPD1z7wsGKatnTyA0NHtJiDdvgKFDgZYtZYKLKKvmzZNF9OfOVToSUooQQGSk0lFQTpw7J0dV66PuT1ISTz7zgqlTZcJg6lTd73vwYKBCBWDFCt3vm3JfyZJyhNPAgbrZn6kpMGmS/D7BKb6kJNaYIspl06aln7Ci/CU7U/IsLICVK2WR00ePAG9v3cdF+VuDBrLFvKOj0pHQ+5QpI9t7790L+PnpZp/nzgGNG8v6drdv62afpH+mprJOYW67dAmoWxdwcAAePsz941H2PX4sL1hZWel+31WqyC5sMTG63zflTTxPIUOgEoKzSVPLSltDotev5RUGMzOlI6G86Lvv5PSNjh3ZGSW/+OYb4ORJOcw+t7tyJiXJpChrlRk+c3OZhL5/HyhaVDf7fPRIjsg1M5MjME14uZEy8fKl/JyxsJDTB21slI6IMhIfLzvyWVrq/sJDTIxMhhob63a/pB+PHsnfn6Mjf4dk+LKSV+FUPqIcWrAAsLMDZsxQOhJSwvDhcjrf1avZ237MGKB/fyal8pPTp4EdO/QzIsHIiEmpvEAI4MIF2QjD1VV3+3Vzkx2aXr1iUiqvun8fGDcOWLYs949lbw/cvCkvqDEpZdhMTWXSOTdGw1pYMKGRl/XvL0fJrl2r2/3Gx8uyFLNn63a/RNpiYooohy5fllefMvvyEBQkh07roxgy6deuXcCvv8quJkQAMGqUPMn091c6EjIUKhVQrhxQr55uR9caGclCuKwLknfduCG/IyxerJ/j+fkxiUmUl8XGyn+LFNHtfi9elA2bpk2TtVOJ9I0fTUQ5tGmTvALp4JDxOo8eAcHBwNmzcnQN5R9BQcB//wG+vtnbXgjgzh05raJuXd3GRspo1Eje9OXgQeDzz4FSpYCNG/V3XCLKOQ8P4NNPAScnpSMhQ5GUBEyZIkfjBwbKEU669vvvwMKFQMOGMhFBeceRI7nTMKdmTeDDD+WFdEtL3e+f6H1YYyodrDFFunbxohyuX6OG/BJKlOyPP4CAAHkV++ZNpaOhvOjQIaBZM1lcOyRE6WgoPY8fy6LnHh6yi6sunTsnTzJLlgR699btvin/OX0a2LpVjrTr31/paCg9ybXAADkiPzdGRK5eDfTrJxto/PWX7vdPRARkLa/CEVNEelClirwRpVatmrwa6ugoCyOziH7ed+6c7KTk6yvrhOS2qlWBPXsAH5/cPxZlz5UrsrV35cq6T0ydPw989RXQpg0TU/R+ly/Lkb5t2jAxZahUKjlSKrm5Tm5o2hT46Segdu3c2T8RUVYxMUWUA5s2yauPrVvLD3kqWF69Av79F3B2zv5IOEdHuR99JDAo9wkB1Kkjh9k/fCiL1+a2woWBli1z/ziUfXZ2MhFQrJju912jBjBkCFCr1rtl8fF8T8kroqLktBl9FaOuXl3WwateXT/Ho6yzswO+/z53j+HlJZPllLc8egRMmgR4e+du06ULF2Rx9W+/lbUMifSBU/nSwal8pK3+/YFVq4CZM4HJkzNf9/p14NQpObqhUiX9xEe5a98+mRCoVEnWECOKiQHKlpVTMe7fZ+cr0r/ERDmts0YN4LvvZPcmMlwffCCn465fD3TrpnQ0RGTITp6UTTSKFZMXRnPD27ey42tkpOww3LZt7hyHCgZO5SPSk3btZNHzhg3fv+4338g5/VOmMDGVXyQmypM+XbZ/p7zNwiL3vixm5swZ4No1+YU1u4X4KX/46y/g1i3g+XNgxQqlo6H3efFCFru2slI6EjIUSUlyOp9KlbvHef4cOHZMHqd9+9w9FumGpyfw9de5UxA/maUlMHy4vLhWokTuHYcoNY6YSgdHTFFuWLFCDovt3Zt1HUjTf/8Bgwe/695IlFVt2gC7dwPLlwODBikdDSnt3Dng7l2gSxelI6H3iYmRIxNsbfXXCSspCXjyRE4ZK1RIP8ck7f3yiyxM3r498NtvuXecLVvke0TVqrJWHVEyIXI/MUoFQ1byKpw1SqQnAwYAhw8zKUVpFS4M7N8PXLokk1NEWVWzJtC8uax3RoZn/Hg5km3ZMv0cr3p1JqXyCgsLOfJWn+3Za9cG3N3ldxIyPJGRckR2btcdq1kTqFBB/sthCpQSk1KkBE7lI8qm2FggPFzOw9ZX0VLKn6ysgDVr5IlrkSJKR0M5cfas7JBWqVLuFiZNbcoU/R2Lsu7hQ+DOHVm7Q19evpQd2ADtpptTweHuLgsah4crHQmlZ9Ag4MMPcz85ULTou/cIyhvCwuTrwtERMMnls/i4OODqVeDpUyAgIHePRQRwxBRRtl28KLua+PllbbuEBFlTgvK+BQuAHj1kEfSc6tVLdtViJ6287d9/ZbHQv/5SOhIyJLNnA8ePA5066e+Yx48D/v7Ap5/q75iUNbGxwIQJsmZMfLz+jrt6tTx23776OyZpz9xcJg/d3JSOhAzNmDGyrmlud20EZEKqalVZKiAxMfePR8TEFFE2hYfLqxUeHtpvs2aNLJY+enSuhUV69NdfwIYNyhS7JsNUvbqcrjVypNKRkCHx8ZGF6b289HfMokXlKMxixfR3TMqaFy9kY5RJk/Q78trePvdHW1DeEhWldASkjdhYOWJKH6Pr3dzkOU6VKsCrV7l/PCJ+LBFlU9u2smhpVt6s3dyA169Z4Dq/GDJETpFp0CDn+0pIkC3Dz5+XV9CNeNkgTypRQpkuNqGhQIsW8kT3/n3WhyCgYkXZnY8Ml6kpMGqUnDLD93xKtnGjnP7bsiVQrlzuHis4WBZZNzcHbt7M3WNRzv32m/y+qI+aYMbGsjkPkb6wK1862JWPcsvbt8D16/KEgXWpKKX4eNkhKfk1UqqU0hFRXvL27bvuWhERsqA+GY716+WJ3wcfADY2SkdDBd3Tp8C338oLZUuWKB0NpRYQAPzxB/Dzz7KTc256/hxwcpKJ0RcvZHdIIiJdyUpehSOmiPTI0lIOiSVKzdQU6NhR/p+XC/Kue/dkksjdXSYa9cXSUp7IuLkx8WGIBg0CoqNlAXT+fkhpiYlAUJBMRnz/PWsbGpoPPpBTtfRxgcrRUdajq1CBSSkiUhZHTKWDI6ZIG599Jv8dORLw9lY2FlLG5csy+eDpyRFwJPXuDaxdK0/6Pv9c6WjIECQlyakyL18CO3fK+j76Mn488OefwMyZcqonGZaEBJkc0vc0vqQk+f7k5SWnpFta6vf4RJR1r14BI0bIpOXcufp539i2DVi4UJasmDkz949H+Q9HTBHpwYoVQGQkMGBA1rZ79kx2c7t9WxbOprwpIQGoVEn+PzxcDoUnMjeXiQcHB6UjIUNhZCQTUkq4fRs4d07+S4Zn9Wrgk0+ALl1kXSF9MTICvvtOf8cjopwLCwN++UWOuv32W/0c88UL4OhRwMJCP8ejgo2JKaJsSEoCZsyQRYazOlrK1BSYM0fuY968rHX1I8MRFSVb9r58qfsREC9fAtbW7JqUF/3vf/KmhOvXgdOnZQe4Ro2UiYEMy5gxQN++nEJuqCIj5dRtTqWjlITQbwOLV6+An36Sxc+XLdPfcSlr7O2Br7+W5w/60rgxsG4dUKaM/o5JBRen8qWDU/kot335pTx57NxZv3VoyPDVrQucOiVHOVSrpnQ0lJfMmSPbzvfpI0diEJFhi4uTIxL01f49paQk4MkT+X83N/0emzIWGwtYWckkxL//6qfuU1TUu9p3L1/yeykR6U5W8ipsTkukgJkz5RRAfvhTaslfDq9eVTYOynvKlweaN5dFbMlwHDsG+PkB3bsrHQkZGjMzwMVF/0kpQI76dncHpk/X/7EpY5GRsjj98+cyQaUP1tbAsGHAlClsvkJEyuFEEaJsCAsD4uPllzoWvSZdWrQIKFyYNavyql695BTMoCD9n2y2bStvZFiePpU1nlxd9X/s6Gjg7Fng9WugTRv9H58Ml5eXrDX15o3SkVBKjo7Af//JBJU+v18uXqy/Y1H2vHwJxMTIGpZmZvo77tWrwK1bQO3aynyOUcHBEVNE2fDdd0DRou8682VHeDiwdau8KkZ5z9GjcgTE/Pm63a+fH5NSeVVSkmxo8PPP+q0BQYatcWPZjl2JYtMPHsh6Yx99pP9j0/v98ousGRMSov9jf/SRnDb2yy/6PzZlzNhY1h4tW1bpSMjQLFokp90OH67f4w4cCHTsKD/HiHITR0wRZUN0tBwVkdXC5yk1bw5cugRs2iQ78lDeEhIiuyjFxQGffqp0NGQIkpKAH3+UVzULF1Y6GjIUDg5AvXrKHNvdXSa73d3lKF8W2TYsK1cCR47ImpP6TkSYm+v3eGT4oqPfjcghw/P2raxHp+/vF5Ury+mlfM+g3Mbi5+lg8XPSRmIikJCQ/TfqUaOAQ4fknP6uXXUbG+W+K1fk78/HB+jQQbf7XrcOOHAAGDECqF5dt/um/K1JEyA4GDh8GKhUSeloiCgz8+YB//wDBAYCVasqHQ0ZgqtXgb17gdKl9Tv9NigIGDcO6N8fWLFCf8elrElKkhcZmCSivCIreRWOmCLKJmPjnM3/nz9f1negvKlChdwrMr11q7yVL8/EFGXNy5eyy9d//zExZShOnQIePZJXnX19lY6GDElOygHowqxZ8iLLjBlAyZLKxkLS6dPA2LEyKaXPxFRyTcTwcP0dk7LOyIhJKcq/eFpMpBAmpSgjPXrIkXSNGikdCWXF69fA9euy2LVS/vc/OQKjSRPlYiBNS5bI6drbtikdCZGm7dvllPTr15WOhJIVKybrf+n7879zZ3lh4/ff9XtcIqJkHDFFlEUPH8qaQqVKyauNOSWErFOU+grIjh3yytns2Tk/BunevXtyrr+LC2Bhodt9d+4sb5S3/PWXvMJdrRpw7pwyMXA6kOHx85M1pooXV+b4330HrF8vC9gOGaJMDJSWEPKm5EWqoUNl9zcW2jYcTZooc2HBykr/x6SsmTxZdtEMDNTv58njx0DPnjJxGRysv+NSwcMxG0RZdOsW8Ntv8pZTa9bIAurjx2suT0qS3frYtc9w9e8v60tt3ap0JGQo4uMBe3sWjiVNX34puxl16qTM8cPCgPPnOSrG0Lx5I5uo2NvLotNK6N9fXmjjFFMiw7dmDbBgARARod/j2trKTtSXLgGvXun32FSwcMQUURb5+gILF+pmjreFhRyBdeKEbNu8ebMcwm1kBEybJu+7fl25jk6UMWNj+RrIre4oQsgRc8bGQM2auXMM0q0OHeRNyZYiYWHAvn3yPeTjj5WLgwxH795AgwYcFWNoIiPle0VUFGBpqXQ0RDLpce0aMGGCnFJIhuWzz+RnfNGi+j2utbWc8uvhofsZAkQpsStfOtiVj/QlIgK4cAGoUQNo1kxO/1m7FujVS47EsbICatcG7OyUjpQyIoSc0qdr8+YBn38OtGghO/QQaePoUVmbxNdXju4kIsOUlCTr0b1+Lad7KhXDkydyZHb58srEQJq6dJFdVX/4Qdab1KfKleWomD17gJYt9XtsIsqf2JWPKI9wcJAJKQBo107WLbK3lz9/+KFSUVFW5EZSCgDatwemTgVcXeXJA4vlkzaKFweaN1fuRJfSqlpVjnzctg3w9FQ6GjIURkby/d3VVbkYLl6UnV/d3GQdGVJeeLhMFCrxmd+vn7xgytFSRKQEjphKB0dMUWauXpUjmNzc5MmGriQkyC8EyS17id6+5RSPvGTZMuDUKaBbN15tJikpSdYREkJOwXBx0X8MCQlyuvjjx0D37rmXTKe8JzxcJsY8PYE7d+RrlZT15Anw7JmcNpV8oZIoLk6eIxQurJtSIln18KGsVejkBNSvr//jU96VlbwKr8ETZVGHDoCXl/yir0smJppJqdhY2eVr7VrdHodyLjJSnuANG5a79YSYlMpbjh6VxUlv3FA6EjIkx44Bu3YpVxQ/KUlO7+zZk800DMnly8A338gOvEpxcpLfNe7fZ1LKULi4AOXKMSlFms6flxfES5dW5vhbtgAdO8oppkS5hR9DRFkghPzyZmKS+8UHIyMBf395dbtTJyYpDEl4uCwEaW0N/Phj7h/vyRP5rxKjLUh7vXvLGh0NGigdiZRb9c9Ie0ZGyjevMDMD6tSRRWvfvlU2Fnrn1ClZZLp9ezmVXwkqFRNSpOnNG+DFC047NjSvX8u/19xquPM+pUvLab8lSihzfCoY+HFElAUqlexYkpiY+/P/nZ2BKlXkFZLISCamDEnhwsD8+fJ1kNtmzZK1psaMAebOzf3jUfa1bGkYU/hGjwZ+/hn46is5qo/o5EmlI6DUfH2BPn1kDTIiQI5unD9flov46CP9d0D76y95QbRUKdkRmgzHBx/IadnR0coc31C+31D+xsQUUTbosrZURlQq2bGPDI+jozz514eyZWUC7PZt/RyP8r7ERHnF+7//lI6EQkNlUsjDQ3ZYJUrWtKm8KW3LFnkLCJDFr0k5UVGyGy8gp97qm7u7/DcyUv/HpvczMpIj9YnyKyamiIgMWKtWsmZRyZJKR0Lvc/u2/NLo7Kyf5HVGxowBhgwBvL2Vi4GkM2eAzp2BWrWA06eVjoYorZCQd1PTmZhSVlKSHCn16pUyo+SLFZNJKfZ9IiIlsPg5URasWydPMtav1+9x2TvTsDx/LovFRkXl/rHMzZmUyiuSp97evatsHMWKyeK5vLKqPGtrWWOqcmVl41i/HqhWTdY0IsNgKJ/rLVoA330npxWSsuztgV9+AX7/XZn6gMbGTEoZqg0bgE8/BQ4eVC6Gfv3k94s//1QuBsrfmJgiyoLTp4HffgP++Uc/x7t4UZ7Q1Kmjn+ORdpYvB3x8gJEj9XvchAQgPl6/xyTtJCUBpqbyZMLOTuloyFA0bQocPw4sXapsHFFRcmr41avKxkHvdOggExG//qpsHDVryhNeQ2naQERp7d8PLFgAnDunXAxhYcC9e8C//yoXA+VvnMpHlAW9egF+frIzhT7Y2gKXLskCmImJyk4Ponfi4+VIJn12R5k7F5g3T17Z7tVLf8cl7RgZARERMkGldCe82Fh5svvoETBpkvLxkPICAoBdu9hRyZBERMhpU+yKR4Zk0ybg0CGZOGWxa8PRtq3szFy3rnIxTJ8OTJ4sa58S5QaVEIYymNhwvHr1CnZ2doiMjIQtx7SSghITgT17gDJl5AkFTzANiz6ThdOnA9Omyamkmzfr55iUN8XFyWS2EMDTp7LmFREZlvBwOS3czU35UZahocCDB0DFiuwArKSNG4Hhw2VC6JdflIlh+HDgxx+BL76QnV2JiHIiK3kVXqchMmDGxvIqCRkmfY5g699fjtT74AP9HZPyJjMzoEsXWd8oMVHpaAq2L74A/vhDFqTv0UPpaMiQODsbTtK4WjWZnDp7Vn8jwimt58/lLTpauRhat5avy8aNlYuBiAomJqaItBQTA5w/LztdeXoqHQ0VNF5e8kaG6epVICgIKFUKmDhR6WjklXdS3vXrsibIy5dKRwIcOwY8fChPPJUeoUOGpVgxeaFFHw09KGO9egH+/rJUgFJatZI3Mizh4bK8h5KvjTdvZPH158/lxVIiXeNUvnRwKh+l58oVOczdwUG+KevLgwfyg8DGRo6CIOVNnChPND/9lB3zSNqxA2jfXhYS/vtvpaMhQ3HliuzgWa6cPPlXkre3/Dw5fRqoVUvZWAq6pCSZyLazA/r2lVNvlY7HiO2QiAyWlZUcSXfnDlC8uDIxPHokL8wbG8uL9ayPR9rgVD6iXBAVJTuxFSmi3+OePAkMGCALHjIxZRg2bJCdST7+WL/HffFCnsw8eyY7A5LhKF0a+Pprw5mak4xNE5RVoYK8GYK6dWWtQr4elPf6NTBhgvx/376KhgKASSnS9OaNHF1ZqhRrmxqCuDjg7Vv5f3023UnNzQ2oXRvw8JCvEY68JV3jiKl0cMQUZUYI/X5Qh4QAo0bJK9wsRGkYli0DHj8Ghg4FXF31d9zISNleHJCJUisr/R2b8pZVq2Rdo9atgbVrlY6GiFJ6+RIYPVq+j2/ZonQ0ZCh27QLCwuR0Pj8/ZWKIjX03gu/ZM8DRUZk4SFNS0rvvgEwWUl7CEVNEuUjfHwhlywIHDuj3mJS5wYOVOa6dnUw2uLrKLylEGbG0lCe/Dx8qHUnBtmOHTCDXrctuZ/SOvT2werXSUbwTEgLMmCEbJvzvf0pHU3AtWgTs3y8vLCiVmDI3lyN/Y2NlXSMmpgyDkZGyo6WI9IGJKSKiPGTePKUjoPQ8ewYkJMgvjkoWJ00WEAD88w8L5itJCODDD+V0yv/+k9MfiAzR69eyYULRokpHUrDVqSPr9ihVQyjZ3bsckU1E+sdZ5URaGjhQ1ni6fFmZ4wshiw2SsmJjZTHj16+VjoQMycSJsv7C3LlKRyIVLiwLbnM2unLi4mQ9jnLl3k3BVdKffwJVqwLduikdCRkaX19g4ULgu++UjqRgmzpVTudr2FDZOJiUMiyXLslmO4YwmnH1atnIY/hwpSOh/IiJKSIt7d0ra0HExur/2PPnyxPM5GKppJwrV2QR/LJllTm+EMDTp7LGFRmO+Hg5zdcQEhBkGMzNgePH5cg1QzjREwK4eFG5iyv0zq+/yuRxr15KRyI5OgIjRwKdOikdCRGlduUKsGCBbLyjNCFk85/bt5WOhPIjTuUj0tLChXK+fcmS+j+2jY0sknrjhv6PTZrevJEnnErN9Q8KAsaPB3r3Bn7+WZkYKK3Vq4GVKw2r9tfGjcCtW/K14u2tdDSktCpV5GgMTu9UXkSErAHHUdBkiE6eBNaskd93P/tM6WiobFn5va9YMaUjAVq2BI4dU366KeVP7MqXDnblI0Pz7JkcJePrC5iZKR0NAXKajhK/i19/BXr2BDp2BLZu1f/xKe+oVg24cAHYuRNo00bpaIgo2evXctSrqanhnOA9eiRj8vVlkWUlxMcD7u6yycn58/JfpaxbB3z0EdC4sZwCTESUXezKR5TPODnJGxkOpRKEH34or7IbQoFtMmzt2slRMq6uSkdSMB09CowdC9SoASxerHQ0ZEhsbIBSpZSOQtOHHwJnzgDbtwPt2ysdTcETGSkvQj57pvzU3+rVZb2r8uWVjYOIChYmpoi08PIlcP26PMHz8VE6GirImJAyTKNGyRpTEyYYTiJo6lSlIyjYHj0Czp41rAL0Z84AN28CDRpweidpKloUCA2VXSRJ/+ztZT26V69kZz4llSoFTJumbAz0zqtX8rufoXz/O3AAuHZNJrD5OUK6ZBDFzxcvXgwfHx9YWFigVq1aOHPmTKbrb968GaVLl4aFhQUqVKiAPXv2aNw/bdo0lC5dGlZWVihcuDCaNWuGv//+OzcfAuVzp0/LNr4dOyoXw4EDwBdfAH/9pVwMBKxfDwwdCuzerXQkZEh++knWoXv7VulIyFA0aiSnUX75pdKRvDNhgqw5dvy40pEUbDt3AsuWySShodi8GXjwQI6cIv0zMZEdPOvUUToSMjS9ewMWFobRlQ+QSctRo+SFDiJdUjwxtXHjRowZMwZTp07FhQsXUKlSJQQEBODp06fprn/y5En06NEDAwYMwMWLF9GhQwd06NAB//zzj3qdkiVLYtGiRbhy5QqOHz8OHx8ffPDBBwgPD9fXw6J8Rgh5VaBoUeVi2LIFmD1bJqhIOUeOAEuXyto9Spk3T9Z/SPG2RwoSApgyRZ70OzsrHU1aCQlKR1AwubvL2l7+/kpH8k7NmrJuDLtHKuvHH4EhQ2SRaSJD9OaNnCnw6pXSkdCLF/JfJeuOpdSsmUxgOzoqHQnlN4oXP69VqxZq1KiBRYsWAQCSkpLg5eWFwMBATJgwIc363bp1w5s3b7Br1y71stq1a6Ny5cpYunRpusdILrp18OBBNG3a9L0xsfg5GaItW4CDB2XdmFatlI6m4Nq9W07PadIEaNhQmRgaNpRdUX79FejeXZkYyPAdPAh07gyULi1HfRKRYZg1Czh3DhgzRk6rJLp1S46IL1FCjrZUWo0a8jX6++/yeycpJylJ1iCzsAAsLZWOhihr8kzx87i4OJw/fx4TJ05ULzMyMkKzZs1w6tSpdLc5deoUxowZo7EsICAA27dvz/AYy5cvh52dHSpVqqSz2In0rXNneSNltW4tb0oaOBBo2xbgWxplxtpafpkNDVU6koLp4kUgIgIoU0aOniJK9sUXSkeQ1rlzwDffAJ6ewPz5SkdT8Bw/Lj/bW7UyjMSUpydw4wYQFaV0JGRkxE6ZVDDkODEVGxsL82xWY3v27BkSExPh4uKisdzFxQXXr19Pd5uwsLB01w8LC9NYtmvXLnTv3h3R0dFwc3PDgQMH4JRBW7PY2FjExsaqf37FcatEZMA+/ljpCCilmBjZIMHeXl7RNBSVKgEhIYCbm9KRFExffw1s2gR8/z0QGKh0NESZe/lSjswuV07pSAomNzc59bdGDaUjkTZuVK77MBEVTFmuMbV371706dMHxYsXh6mpKQoVKgRbW1v4+/tj1qxZePz4cW7EmWWNGzdGcHAwTp48iRYtWqBr164Z1q2aM2cO7Ozs1DcvLy89R0uGbsYMWfj84EFl4xACePIEiI5WNo6C7NEjOQpF2UnQZEhOnJAnFdWqKR2JJktLOVqH9YSU4eEhT/INabTU9etAlSqGc/JLhqNcOZlEnTVL6UgKphYtZFH8KVOUjkRiUsowxMUBn34qz0Pi4pSORjp6VHYoN4SRfZS/aJ2Y2rZtG0qWLIn+/fvDxMQE48ePx9atW7F//37873//g7+/Pw4ePIjixYtjyJAhWhUad3JygrGxMZ48eaKx/MmTJ3DNoN+2q6urVutbWVnB19cXtWvXxooVK2BiYoIVK1aku8+JEyciMjJSfXv48OF7Y6eC5dgxYPt25afENGkiW9ErnSAryMqXlyf6N24oF4MQwNOnwNWrysVA77x5A6hUhlOYlAzDd9/JBgWdOikdyTuWlkBwMHD5MpPrSklIABwc5Indy5dKR/OOm5sc2de+vdKREFGyiAhgwQLZCc9E0QI875iZAffvyxuRLmn9Ep87dy7mz5+Pli1bwsgobT6ra9euAIBHjx7hhx9+wNq1a/Hpp59muk8zMzNUq1YNhw4dQocOHQDI4ueHDh3CiBEj0t2mTp06OHToEEaPHq1eduDAAdR5T3/VpKQkjel6KZmbm2d7OiIVDOPHyw4USrfxdXeXJ8D//adsHAVVUhKQ/Dai5CiUa9fk1W17+3fdWkg57drJk82YGKUjSWvbNpkc6dxZjp6igs3dXTZwcHeXiSmVSumICp5Xr+T79osXgJWV0tEQpe/hQ2DmTPnZtnKl0tEUXGZm8hwkJkbWmjIEFSrIhiqpKusQ5ZjiXfk2btyIPn36YNmyZahZsyYWLFiATZs24fr163BxccHHH38MDw8PzJkzBwBw8uRJ+Pv74+uvv0br1q2xYcMGzJ49GxcuXED58uXx5s0bzJo1C+3atYObmxuePXuGxYsXY/369Th//jzKaTF5nl35yFCFh8uCxuzKoay3b2UtIaVO6l6/lqNzXF2B27eBQoWUiYMMX/PmcoTlmjWsTUZkCBIS5Pt2ZCRQq5bS0Wh68AAIC5OdPPn1V7/695ej8+fMMYxGN3fvAsWLy8RITAyT2ESUPXrvypeYmIgrV67A29sbhbPYNqBbt24IDw/HlClTEBYWhsqVK2Pfvn3qAucPHjzQGKFVt25drF+/HpMnT8akSZPg5+eH7du3o3z58gAAY2NjXL9+HWvWrMGzZ8/g6OiIGjVq4NixY1olpYgMmbOz0hEQoHxi0MZGJsc40JPep2VLwNsbKFZM6UgKnvr15XvFr78CGfReoQLIxEQmfgxRixZyRO6hQ7J0AOnPvXsyYRkfr3QkkoeHnD7m6QkkJhrONDIiyr+yNWJq9OjRqFChAgYMGIDExET4+/vj5MmTKFSoEHbt2oVGebwaGkdMUUoJCbKNsqMj4OvLq0ZEpGnDBjmsvXVrOUKJKCbmXQL7xQvDKkB/8aKsT1e5sqyZR5SsZUv52li+XCapSH9u35bNbfz8gCJFlI6GDEXyaDVDuxC5Zw/w77+ylEHRokpHQ4YsK3mVbM1W3bJlCypVqgQA2LlzJ+7evYvr16/j008/xRdffJGdXRIZrKdPZW2pMmWULxb79CkwaRLw2WfKxlFQXbkCDB0qOxcRJfvjD2DhQpnAJgIAY2Ngxw7gl18Mb0rUwoVA797Arl1KR1Iw3boFLFtmmE1M9u6V0/mYlNI/X1+gXj0mpUjT8uWydMRHHykdiabp02WzhIsXlY6E8pNsDcx89uyZugvenj170KVLF3XHvoULF+o0QCKlRUfL7jlGRsoXHoyJkfUHzMyAb7/l6C19u34dWLoUaNAAGDlS2Vh27gQ2bgQaNgQ++UTZWAq6tm1lEdC6dZWOJGNxcWz/rU+mpvJ1YYiqVJGFjT08lI6kYDp1ChgyBPjgA6BZM6WjIcpYdLRMVFpbyyl9pH/JDW4MrVFCkyaAl5ecTUKkK9lKTLm4uCAkJARubm7Yt28flixZAgCIjo6GsbGxTgMkUpqvrywCaQhcXOQVCldXOcXQ1FTpiAqWMmWAqVMN44Tuxg1g3To5io+JKWV17ChvhujsWXny6+IC3LypdDRkCEaNkjdShpsb0L69TBASAfJzfOVK2dSkbVvDmbY1YQLwww+yK9zXXysdTcH05ZfKXwhNz//3JCPSqWwlpvr164euXbvCzc0NKpUKzf7/ks/ff/+N0oZa0ZEoHzA35zQyJZUvbzg1WZo0AebOBapVUzoSMmT29rI9fVKS0pEULE+eyFo9bm4yoU2UrHlzw61Fd+yYnOpZsiQwe7bS0RQc0dHAwIHy/69fG05iytNTJssSE5WOpOAyMgKy2FeMKM/KVmJq2rRpKF++PB4+fIguXbrA/P/fQY2NjTFhwgSdBkhERGlVrSpvpLznz+UwewsLpSNJy8dHdtlyc1M6koLl6FGgWzc51fboUaWjIdLOs2fAb78BtWsrHUnBEh8vm2e8emVYU7bGjgXGjVM6CiIqKLLd/LNz585plvXp0ydHwRAZorVrgS1b5ND7fv2UjkYO+Y6IkNP4DK2obn4XESGLGtvYKF9vjAxHmTJAeDhw+TJQoYLS0WgyNTXc1vT5mbk5UK6cnApuaMLCZPe1Fy/kNHXWKqRkVavKqVvFiysdScFib2+YzQj43qC8H36Q79U9exrW58kffwCDBsnvP/v2KR0N5RfZTkydPXsWhw8fxtOnT5GUao7Ad999l+PAiAxFcDDw+++yha8h6NlTtqdfsIB1QvRt8GCZpPz+e1nrS2nh4cD9+zLxYG2tdDQF16tX8l87O2XjIMPRvr28GSJbW/m5BsjXLl+3+jVgAPDnn3KqXI8eSkejydsbGDFC6SiIKNmyZXJaeL16hpWYMjWVhfENaYQf5X3ZSkzNnj0bkydPRqlSpeDi4gJVipS6iul1yme6dZMfBhUrKh2JlNxKOLlTB+lPVJT811Dm+9euDfz7L/DXX7JTICkjOlrWBbGxUTqS9O3eDZw/D7RqBVSvrnQ0pLRCheQVbhcXnlQo4eFD4N492cCEyJDFxMhEZWgosHWr4dS+Kkh69fo/9u47vqbzjwP452bvm72niNhC7b0panQYbVG/LqWtVlVLqepCq4oW1VJaHVZVUbX33puEEBLZZO/knt8fX0mEhIybPOec+32/XvcVTY/4SB7nnvOc5/l+6XwRECA6SUlPPAEcPUrNmBjTF40kSVJFf5ObmxtmzZqFl156qRoiiZeamgqtVouUlBTY8V4pJjPp6dT2nVu/i5GVRdv45HCB1q0b1Q/6+Wegd2/RaZhcDR0KrFoFfPst8M47otMwZthu3KDi+LVqFT9okpOICMrXsCFPXNaUf/4BJkyg9/QffhCdppgk0bVOXh6tzvb1FZ2IMaY0FZlXqdSKKSMjI7Rr165S4RhjVcNbtsSytBSdoNj27Vzrij1et260mqt+fdFJDMe0acChQ9Tm+6mnRKdhchIQIL/VD/fr0AGIigKOHQNatBCdxjDExgLXrsmn628hjYa6/9rYcE1Txlj1q9TE1LvvvosFCxZg7ty5eo7DmPycPk1PDf39eZUSkxeelBLv+nUqTurvL9+ab6++Si9Wc06eBHbskF8NoUIXLtB7W926PPnASvLzo/eW7GzRSQzHoEHULEGO28F5la04BQW05VcOK/RLs3EjrbB85hnA01N0GqYGldrKp9Pp0LdvX4SFhaF+/fowNTUt8f/XrVunt4Ai8FY+dj9nZ2oHf/68PJ5mJSQA33xDF408N1xzdDpg7FiqLzVlCtVpYWzbNqBXL6pBd/as6DRMLg4epC1brVvLq2BtoQkT6H1k/Hj6yGrOkiU0AdG/v7xW4DLG5OXSJZqw9PKiVYxy06QJdSPeuhXo2VN0GiZX1b6V7+2338bu3bvRpUsXODk5ccFzplqSRG188/IAJyfRaUhODjBrFmBsDMyZw6tmakpqanHth48/Fpul0LVrwCef0Bj49VfRaQyTry/wwQc0gS132dmAhYXoFIahXTt6yVXjxrTFMzBQdBLDkptbvHoxKYknppj8padTwX5LS1oZzGpOYZMjub5vd+8O1KlD90mM6UOlVkzZ2tpi5cqV6Nu3b3VkEo5XTDE5y80FJk6kjkrvvcfbC2tKaipNBBZ+lIPQUNqKY2NDufgZAStNWBh14zMzAxITRadhzHClp1OXrZQUYOdOesDE2J49tDK/eXPaSikn06fTA7DXXgMWLxadxrDodHRtl5nJW+WYclX7iilHR0cE8mM2xoQwM+MtfCLY2dHFmZz4+VFhUl9fWt3HE1OsNI6OQFoa/TonR771KtRkzx46ZzRqBDxQ7YAZMBsb6sAmZ9u30wRESAhtW2fV7+uvgc2bgaVLgf/9T3SaktzdAa2WV+eLYGREq5F4RRIzFJWamPrkk08wbdo0LFu2DFZcaIUxxoSwsADef190CsOWmUkXj3Jdag/QNuQrVwAPD15hWRPy84EuXejXCQnK2ObJWKGYGOCvv4ons1n1a9iQVsb4+opO8rDXXgNef110CsaYIajUVr6mTZsiPDwckiTB39//oeLnp06d0ltAEXgrHyt0+DDVc2reXF5PDnU64O5dusnkIVozMjOp1pidHa9MYsXefpu68k2ZAnz2meg0TA5SU4E2bWi71o0b8lwxlZ1NhdmjoymjtbXoREwurl6lpg516gA9eohOw5jh2rIFOHoU6Nix+GGHnGzYALz5JtCsGbB+veg0TK6qfSvfwIEDK/PbGFOcq1dp2X1mpugkJY0YAfz+e3FXJVb9fv+dnhz27y+vrRhJScD169QtsFYt0WkMT0oKfZRjm28mhp0dcPGi6BSPZm5O72+ZmbRCRo6dA9Xo33/pRq5zZ2DZMtFpShcURC/GmFj//QfMnw9MmiTPiSkTEyqM7+IiOglTi0pNTE2bNk3fORiTpdatgUWLqNC4nLi60sfkZKExDErhBITc9vp/+inVHHv/fao3xWrWzz8D8+bRBZqcbdtGK0C7dKGnr8ywaTRU08beHvDxEZ3GcMTFARERQHy86CSMlY8k0UO527eB336jmoWsZrRvT3UhW7cWnaR0bdvSii4PD9FJmFpUaivf8ePHodPp0KpVqxKfP3r0KIyNjdG8eXO9BRSBt/IxuUtPp218XC+mZmVlFW/nk4u5c2lCatQo4IsvRKdhcvXGG8APPwBTp9JkJmOs5t25QyvVrKyAxo1FpynbjRs0ida0KTdLqG4FBUD9+nRdsWMHFRqXGxcX6uh69qy8xy1jTH4qMq9SqR4LY8eORWRk5EOfv337NsaOHVuZL8kYqwAbG56UEsHSUl6TUgAwbhzVieFJKfYonTsDr75K9fJY9Tp9GujVi/5tMnY/Jyda/SD3m/umTalO2o0bopOoX2oqEBYGnDhB1xhy9PnnwJIlvDKGMVa9KrX54NKlS2jWrNlDn2/atCkuXbpU5VCMyUVYGC1j9vGhJ5yMyQ0XYhfrs8/oiffrr8v7on3IEHqx6hcdTVsn794VneTRQkNpG4afH9Cpk+g0TE78/Gj7utzqa6qRtTWwfz99v+X6wJG78omRlyfP5hn3W78euHULGDq0uMwIY5VVqYkpc3NzxMXFodYDlXZjYmJgIvdCG4xVwOjRwO7dVPj6+edFpymWmAh8/TVdNH73neg0hmHRInrzHTZM/k+7Wc2ZN4+25zz3nLwnpljNadIE+PVX+a2ufND69cCHH1IzDZ6Yqhl79wKxsUCLFvJuVnH2rOgEhsPMjGoJMfYgPz+qJXv0KNCokeg0pZs4kbYnh4TwxBSrukpt5evZsycmTZqElMJqwACSk5MxefJk9ODeskxFCrduOTmJTlJSXh7VFVq4kFZrsOr3xx/AzJn0Biw3r74KdOgA3LwpOonhef11YMwY5VyQ8QqI6uftDQwfDgwYIDrJo9WvD3TvDjRoIDqJ4Zg3j1YWbN0qOglj5ZeeDly6JM/rHzW7e5dqm8q562+vXvRgTs4ZmXJUannT7Nmz0bFjR/j5+aFp06YAgDNnzsDNzQ0rVqzQa0DGRPr3X9EJSufiQvVLPDyA/HzA2Fh0IvUbOpTq8wQHi07ysH37aNvpjRv0hI3VHKXU9oqPBwIDaWIqN5fPGQx46il6sZrTsCHdbAYEiE7C5OLmTaov5ecn3xqAS5YA774LDB4MrFolOo3hiI0FkpLoYYdc8a4Npk+V6soHABkZGfj9999x9uxZWFpaonHjxhg2bBhM5b4Zthy4Kx9jTElWr6ZaaF26KGflDqtZ+fm0ZUSSgJgYwN1ddCL1ioqijmYeHoCnp+g0jFXcxo3A8uW0xezdd0WnUbdffwVGjqSVJ1u2iE5TulWrqLNrv36UlzHGyqsi8yqVLghlbW2N1157rbK/nTHGmJ4MHiw6gWHS6WgrrRKex5iY0Ko6Nzdecl/dliwBpk+nGoWLFolOw1jF3bwJrFtHzTV4Yqp62dsD7drJt4YQQNcY3DyDMVbdyl1j6siRI+X+opmZmbh48WKlAjEmF3FxwMCB9JRIjnQ6ICGBOrmw6peZSd9zxgrdvEmrkLRa0UnKp3ZtnpSqCVZWgJcXbbmWu1ataJUl16dj9+vSBViwAHjzTdFJ1K9/f+DAAWpoI1fc/bfmXb9ODzjkXiFnzRrqXD50qOgkTA3KPTE1fPhw9OrVC2vWrEFGRkapx1y6dAmTJ09GYGAgTp48qbeQjIkQEwP88w/w99+ik5TupZfohuLHH0UnMQxOTlSXR443cJmZwMmTVGuK1ZzCQuJybfHNxJg4kbbzffqp6CSPFxdHDziio0UnUT9JAurWBZo2pe+5nDVoQE0dOncWnYQxw3TxIvDJJ/Kv4WRkRO93kZGikzA1KPdWvkuXLmHRokWYMmUKnn/+edSpUweenp6wsLBAUlISrly5gvT0dAwaNAjbtm1DIzmvSWWsHDw9gR9+EJ2ibIW1hFJTxeYwBDodkJ1Nv7ayEpulNCdPAh07Uvvx8HDRaQxHvXpUyLhwbMjd3r3A7t20SubJJ0WnYXKwciWd04KCRCdRv+xsIDSUfm1hITYLYxX15pt0fbF4MeDrKzqN+nl5Aa+9Jv/vdZcuwLFjXE+R6Uelip+fOHECBw4cwM2bN5GVlQVnZ2c0bdoUXbp0gaOjY3XkrFFc/JwpQUYGrdRQQn0bpZMkWh2TmUkrp4zKvda0ZkRG0mRDUBCwZw8vu2el++gj4MsvgbFjge+/F52GMcOSnw8cP07b73v1kvd5WpKoy2tcHNCiBdWoY9VjyhRg61aq5fX886LTlC0oCLh2jVZmd+ggOg1jTCmqvfh58+bN0VyuPU0ZMxDW1qITGA6Nhr7fcv2e+/jwVhz2eG3b0hNYvqmoXp98Aly4ALz1FtCpk+g0TC5MTIA2bUSnKB9JAurUoeYOUVG0eoNVj7Aw4MQJ4M4d0UkebepUmlytXVt0EsaYWvEzEMbKEBVFq5I8PABeOMcYe9D581SDrk4dZRT+7NuXXqx67d1LKxeffVZ0kse7fh3Yv58KtffpIzoNkwsjI8Dfn7axp6eLTqNuU6YAI0cC9euLTvJoI0aITmBYdDr5rc4vy19/0T3T8OGACjZOMYEUMuQZq3nffEOFSr/8UnSS0t25Q0V2x44VnUT9YmJoG9S8eaKTMDk5dQqYNg1Yvlx0EiYnEyZQRzMlLCzfvZsaafDWzuoXFQWsXg0cOiQ6Sflcu0YTl8HBopOoW+PG9MAgIEB0EiYnI0dS/b+FC0Unebx33qEX1zhlVcUrphgrg5ERtYF3dhadpHQFBdReWKMB5s7lWlPVKSqKJih9fYFx40SnKd2PP1Jb4eefB954Q3QawxAUBIweTUXQlSQ9nbalyrnGjZIpaVVacDDQo4cyJtGU7vBhYMgQoH17WqXGmJJkZAAREfS+IffVXWqQlARkZSmj62+fPkBysjybAzFl4YkpxsrwzTf0qnh7gJrh7EzFMt3caJKKJ6aqj7Mz1YuR85bO27eBAwf4grEmtW1LL6XIzaWxnJZG3QQdHEQnYqK1bw9s2yY6hWFwcKD6biEhopMwOdm1i67hWrQA7O1Fpynb6tXA//5Hhfu3bBGdRv1WrKBGCUrYGrd4segETC0qNTGVnZ0NC+51ywyEXFcVGBkBc+aITmEYAgKA+fNFp3i0Z5+lSanGjUUnYXJlZgYYG9OvY2J4Yqq6XLxI32t/f35gwIp1704vpVizBvjzT6BnT1oZyqrHq6/SlslDh+RdHN/Tk94zeFVMzXBw4PdoZngqNTFlb2+Pli1bolOnTujcuTPatm0LS0tLfWdjjDFWTo0a0YvVHEmS78R1Wc6cAZycABsb0UnUq3Vr2i4ZHg7UqiU6DWOVc+0aNXfQanliqjrVq0dbq+U+CdGrF620ZYyx6lKp4uc7duxA7969cfToUQwYMAAODg5o3749PvroI2zfvl3fGRkT4vnnadlyQoLoJGUrKADi42lvN6s+Op18t3Qycd5+G7CwAL74QnSS8vPz40mp6iRJtB3Hzk45Kwt69qSufCdPik7C5KR3byq8/MoropOo26ZNwLlz1GyHsUILFlD92Ph40Ukeb8UKwNsbGDVKdBKmdJWamGrfvj0mT56Mbdu2ITk5Gbt370bt2rXx1VdfoXfv3vrOyFiNy8+nJezLlsl7QuKVV6jGFO/vrl6LF9MWqOefF53k0U6fBtatoxpCrPplZgI5Ocpp6cyqn0YDREZSbRB3d9FpyicpCUhMBKKjRSdRt6++Apo2VUaXLYCyvvEG0K6d6CSMGZ5PP6U6snFxopM8nkZDdU4jI0UnYUpX6eLnYWFh2LNnT9ErJycH/fr1Q+fOnfUYjzExdDrghx9o2bKcCw+6utLHlBSxOdQuM5MmKAvr88jVU0/RxcGRI0CrVqLTqN+33wLTpgG2tqKTlN/hw8DWrUCDBsBzz4lOw+Tgxx8BExMgMFB0EnW7cYO20sp5FTZjjzJhAtXQmz2b3kNY9Rk8GLhzR76dwe/Xqxdw/Djg5SU6CVM6jSRVfD2Il5cXsrKy0LlzZ3Tu3BmdOnVC48aNoVFasY0ypKamQqvVIiUlBXZybsPFDF5mJhXZNeH+mtUqO5u2Sxob05YXuRo0iIpaf/utvIuoMnHmzAHeew8YOpRWhTLGakZoKE1O1aoF1KkjOs3jFRRQ3vh4ej9RySW+rKSk0FZaa2tg+3b5P/xq3py2/G7cCPTrJzoNY0wJKjKvUqnbWRcXF1y5cgWxsbGIjY1FXFwcsrKyYKWUggqMqQT/k6sZFhbK2Jbz99+iEzC5a94ceP11nrisLpGRtKrAzU3+nTxZzQoOppdSZGcDQUH065QUqpvG9CstDTh2jLp3yn1SCgAmTgQyMoAmTUQnYYypUaVWTAFAcnIy9u3bh71792Lv3r24dOkSQkJC0KVLF3yhpEqwpeAVU+zuXXpK6OYm/04pjDExli+n+jyDBgH+/qLTMDk4dQp44gkqBKuUehuRkcDOnbRqg7d3svu5u9O42LuXxjTTr8xMYMcOIDcXePZZ0WkYq7yVK4HYWGoaxbfO7H4VmVep9MRUoTt37mDPnj34559/8Oeff0Kn06GgoKAqX1I4nphiy5bRyfXJJ4HNm0WnKdvdu8DMmUBqKtXEYtVj/XrgyhWge3daccIYQE+Nz50Dtm0DevQQnYbJQVwcsHo1YG4OvPaa6DTls3Ej0L8/TaidOCE6jXrt3QtkZdF7iBLqxjDGxIiKoi6N9vb0ayVwdqaaWOfPAw0bik7D5KTat/KtW7euqOj5pUuX4OjoiPbt2+Obb75Bp06dKhWaMTnJzwe0WsDJSXSSR9PpgK+/pl/Pn0/1ppj+rVpFT4MsLeU9MXXhAnVRsrSkyRJWvZ56CmjUSJkrCbKyaJww/XJzA956S3SKiqlVi+rc8M1E9Xr3Xeqc+t9/ADewZkqUmUl1xwoKgMaNRadRr8xM2jKppPqxTz1F1xV8H8KqolJDfvTo0ejYsSNee+01dOrUCY0aNdJ3LsaEevVVelVtPWH1c3QExo+nmyGFL1SUtS5d6CZe7jduZmbAgQOAjQ2NXS5WW70+/1x0gopLT6cC/tnZdOHLdepYgwbUqZFVr7p16bzMq6VYoYQEWnXr4qKMiZ5t22jreqtW1P2XVY+AACA8HMjJEZ2k/JYtE52AqUGVt/KpEW/lY4wpUU4OFUD396cLR56YYg+SJJrAzM+n2kJKXO0lZ8nJtJ3BwYEeHDCmZEuXAps2Uev6YcNEp1Gf9etpoqdNG+DQIdFpHu/oUaBPH9r2y6uyGWPlUe1b+QCgoKAA69evx+XLlwEA9evXx4ABA2CshLYSjDGmQubmwNCholMwOdNo6EmsvT1gays6jfqsXEnbaQcO5C6ZTPkuXKDJk+BgnpiqDhYWtGIxMFB0kvJp1Yom3hljrDoYVeY3Xbt2DfXq1cOIESOwbt06rFu3DsOHD0eDBg0QHh6u74yM1bjJk4FRo4CzZ0UnebyCAiq4m5QkOgljhiMvj7pVubhQK3Ul8fWlrjm8ok7/JInGhdIm/Z57jraYbdkiOgmTk2eeARYtoo9M/3r3psm/FStEJ2FycvUq8N131JhCKZYsAby8gNGjRSdhSlapiam3334bgYGBiIyMxKlTp3Dq1CncunULAQEBePvtt/WdkbEat2EDtYJPSBCd5PFee41aOi9cKDqJetWvT8Xwjx4VneTxwsOBdeuobT2rPpmZ9EpMpKfejAG0Wio9Hfj1V9FJKiY9nVZCREeLTqJOubnUOKNTJ6rtphTt29ONZosWopMwZjiOHwfefhuYO1d0kvKTJHr/uH1bdBKmZJXayrd3714cOXIEjvcVUHBycsLMmTPRrl07vYVjTJRJk4Bbt6hYqdy5udHKh7Q00UnUKzkZSE1VRreRH38EvvqKLmqaNROdRr1sbIDr1+kmUwnj4n6bNtGFb8+eAL9lMwCYPZvOGwEBopOoU3o6cPIk/Vpp5wvG7jdlCr1/fPopbe1j+uftTXXd5N5w5379+9M1p5eX6CRMySo1MWVubo60Uu6C09PTYcbvuEwFXnhBdILymzqVLhCU1FZWaU6coAkIHx/RSR6vQQO6WFRCViUzNlbuTfxff9GKUEtLnphipEED0QnUzdqaJoQzMwFTU9Fpyi8nB7h5k7p4KqFrnNL89BOwejVtpX3tNdFpyufwYWDXLmDECJ6Yqi4dO9JLSdzc6MVYVVTqVrZfv3547bXXsHTpUrRs2RIAcPToUYwePRr9+/fXa0DG2KNZWopOoH6enqITlN+IEfRirCxdu9J5IyREdBL1+ekn2vI7eDCtSGMMoMYUffuKTlFx584BLVvSg45bt0SnUZ/Ll4EdO6jLnVKMGwcMHw60bSs6CWNMbSo1MTV//nyMHDkSbdq0gem9Rz/5+fno378/5s2bp9eAjNW07Gzgxg0qBOviIjoNY0yOoqJo5ZG7OzBkiOg0FTN8OL2Y/u3aRZ35GjZU1sRUVBSwfTut7Bk8WHQaJheOjtQo4TEdvlkljRhBtceUUDaiEK8/YKXJzwf+/JMaMY0ezVuWWeVoJEmSKvubr169iitXrgAA6tWrh9q1a+stmEipqanQarVISUmBHb8bG5xTp+jplaenMor4JSUBX35JncF+/FF0GvXJygK+/x6wsqLCxkaVahnB1GbnTqB7d5qAOH9edBomFxs2UJetHj2UVTD6v/+APn1oFd3p06LTqE9iIl1bODtz7T/G2KNNmQIsXQq88w7wwQei05SPTkclRSQJiImhh3aMARWbV6lSVZqgoCAEBQVV5UswJjsZGYC9PV1AKsXs2fRx/nzuEKZvycnAxIk0ITVmjOg05TNwIN1cbtoENGokOo06OTkBQ4dSkVIlkiTqFGZuLjqJuvTvr8wVBX5+wJNPAsHBopOo0/HjNPHXtCl3TGXKlpUFXLtG9ceaNxedRp3u3AFiY2kHh1IYGQGDBnG9W1Y15R4+48ePL/cXnTNnTqXCMCYHHTrQKiSdTnSS8rG3ByZMAFxdlZNZSUxMaLl9QQF1P1SCqCiqBxIRwRNT1SUkhJatK9H+/bSip3ZtWt3DWP36wObNolOol4UFFQ/niT92v3PnaIKndm3AwUF0mvI5coTqFNatSzWymP5Nm0bb4ZRWTuSvv0QnYEpX7omp0+Vc261Ryp0bY4+hlC1bGg3w9deiU6iXiwvwyy+iU1TM3Lk0ocadtlhpbGzoZujuXdFJ1Cc6mv7tOTryk2NWrEsX4OxZ0Skq56OPgEuXgOnTuTOfvr35Jj0oWLMGePZZ0WnKx8ODVgw7OopOol7u7rwVjhmmcl827d69uzpzMMYY05P27UUnYHJWvz6tpuMbC/3r2BEIDwcOHADatROdhrGq27EDOHYMGDWKJ6b0zdUV8PWlle9KUbcu1UxjjDF9q9CakOvXr6MKtdIZU4Tly+kCbONG0UnKLy8PiIujAuiMseo3dy7g5ga8/77oJBVnbk41hWxtRSdRn8Lt1NbWYnNURqdOVFuRi5+z+737LrBoEW8Lrw5r1wI3b1IjDcYK/f03sGwZEBkpOknFTJhAjaMWLRKdhClVhSamgoKCkJCQUPTfQ4YMQVxcnN5DMSbS/v00OaWk2isvvkjLfpcvF51EfTZvptoP/fqJTlJ+ycl0YfPHH6KTqNfdu0B8PBWCZazQ9etUj06JK0uSk6no7n2XeUxPliyh7XwLF4pOUnFDh1K9m4AA0UkYMwxffgn8739Ug0xJMjKoIx9PDbDKqlAFhAdXS23evBkzZszQayDGRBsyBKhTh54eK4WzM9WaysgQnUR90tLohk1J39ubN4Gnn6b6WM8/LzqNOr39NtUEUdIWjPstXUoF8l95BfDxEZ1GXZRSn/BBv/xCdbFq1RKdRH1CQ4E9e4AnnhCdhLGqmzQJOHOG6o61bCk6jfp06EDXb56eopNUzIQJwKuv0vZUxipDI1Vgb56RkRFiY2Ph6uoKALC1tcXZs2dRS2VXMampqdBqtUhJSYGdnZ3oOIw9VnY2YGoKGBuLTqI+6enA7dt0wxYYKDpN+aSkAD17Av7+tGqKxwV7UIMGVNB4507qsMQYqz7nzwMXL9JDr2bNRKepmPR0KupvasqrpvStf3+6tli8WFkd2Dp1AvbtA1atAgYPFp2GMSZnFZlXqdCKKY1G81DXPe7Cx5h4FhaiE6iXjY3yWnxrtcDRo6JTMDl79lnasnXvORPTg4wMqsdjbQ3Mns0TwqxYo0bKrdG0dCnwzju0mnzlStFp1EOnK65l+sMPYrNU1HvvUS1WXi3FGNOnCm/le+mll2Bubg4AyM7OxujRo2H9QJXPdevWVSjEggUL8PXXXyM2NhZNmjTBd999h5aPONutWbMGU6dORUREBIKCgjBr1iz06dMHAJCXl4cpU6Zg8+bNuH79OrRaLbp3746ZM2fCU2lrIpkQERGApSW1w+V234yx0vz3H9VS6NABCAoSnabipk8XnUB9kpOBn36iCak5c0SnqbgrV4BDh2hrZ48eotMwuXB0BOzsADMz0UnURZKAX3+lCW2lbQnv3190AiZHsbHA9u30sPy550SnYUpUoUoII0eOhKurK7RaLbRaLV588UV4enoW/XfhqyJWrVqF8ePHY9q0aTh16hSaNGmCXr16IT4+vtTjDx06hGHDhuHll1/G6dOnMXDgQAwcOBAX7lWqzszMxKlTpzB16lScOnUK69atQ2hoKPrzWZSVU7t2VEhcSUUHr18Hxo8Hpk4VnUR9Dh+mp5m8Aond77vvgJdfBg4eFJ2EyYW1NfDpp8BHH1HNP6XZto3G9JIlopOoz5kzwJEj1DRBaYYPp+3hv/4qOom6GBvT93b0aJ70Y8UkiWo01akDJCaKTlMxly8DI0YA06aJTsKUqkI1pqpDq1at0KJFC3z//fcAAJ1OBx8fH7z11lv48MMPHzp+yJAhyMjIwKZNm4o+17p1a4SEhOCHMtbCHj9+HC1btsTNmzfhW46KbFxjyrB5edFKiKtXlVNT6PhxWlLt7a289rJy9/77tC3nvffoo1LMm0erNl58EfjiC9Fp1Gf6dPp3N2EC0Lmz6DSVI0nUQY5XhjIA2LoVmD8f6NgR+OAD0WnUpWNH6vi7Zg1to2VMyZKTqcmKpSVNoDD9ycoCrKzo1ykptFpRKcLCgDffpAYaStueyqpPtdWY0rfc3FycPHkSkyZNKvqckZERunfvjsOHD5f6ew4fPozx48eX+FyvXr2wfv36Mv+clJQUaDQa2JexVjYnJwc5OTlF/52amlr+vwRTndu3ae+/kp54+/nRBArvVtW/Bg2AQYOAJk1EJ6mY/HzquhYeLjqJOin9ieD8+cDEidS18eefRadhctCrF72Y/nl4UOFwR0fRSZhcZGTQ9lk7O+VtB1+xorgz7Zo1otOoi5kZcPIkkJlJNU6VpE4dWnnLWGUJnZhKTExEQUEB3NzcSnzezc0NV65cKfX3xMbGlnp8bGxsqcdnZ2fjgw8+wLBhw8qcpZsxYwamc8ENdh+ltft2dQW++kp0CnV66SV6Kc3gwUDbtspZ9cdqlrk5kJOjzK1FcpWdTR3MbGy4IQUradUq0QkqLzMTeOstOlesWcMrLPXl8mWgRQvatnXzpug0FePqCri5Aba2opOoj7Gx8jp3MqYvCrv9rpi8vDwMHjwYkiRh0aJFZR43adIkpKSkFL0ieS8UY0zhfHyANm246xor3ZAh1Ojht99EJ1GPrVup5XuXLqKTMKY/pqa0qnL9etpaxPRDp6PSEe7uopNU3JAhVOiaV9syxvRJ6HMPZ2dnGBsbIy4ursTn4+Li4F7Gmdrd3b1cxxdOSt28eRO7du165J5Gc3Pzok6DzLBFRFDxWm9v+qgkeXnAnTvU3YWf1jNWvZo0oZUEmzcrbxsGQOcJpXWCkrusLPpYWB9EaXJygMaNqeDuzZvK20bCqoepKa3ItrOjlZZMP1q2BKKiRKdgcpOQQF1/nZ2Bew3nFaVjR+DaNerO16CB6DRMaYSumDIzM8MTTzyBnTt3Fn1Op9Nh586daNOmTam/p02bNiWOB4Dt27eXOL5wUurq1avYsWMHnJycqucvwFQnKgpYtgz480/RSSquaVOqY8FdwvRr0CBaar95s+gkFbd+PdUS4u1a+nftGr2MjUUnYXIxdCg9ILivN4uimJlRXbq7d+khB9OfXr2A/v2V+319/33g9dd5spKx6hYaCowcCbzzjugklRMXRw2klHquY2IJ3yk+fvx4jBw5Es2bN0fLli0xd+5cZGRkYNSoUQCAESNGwMvLCzNmzAAAjBs3Dp06dcI333yDvn37YuXKlThx4gR+/PFHADQp9eyzz+LUqVPYtGkTCgoKiupPOTo6wox7srJH8PEBZsxQ5sWXszMVbOel9voVHU2dDgsKRCepuHfeoZUPLVsCrVuLTqMuBw/SiikvL9FJKiczE/jxRyApCfjkE2U1e5AzExPl1uDRaIBdu2hljIeH6DTqkZdXXBBYafUrGStNWhpNVCYlAf/+y+Nan2xsaCJbqefg336j90Du1sgqQyNJkiQ6xPfff4+vv/4asbGxCAkJwfz589GqVSsAQOfOneHv74/ly5cXHb9mzRpMmTIFERERCAoKwldffYU+99Y7RkREICAgoNQ/Z/fu3ehcjr7eFWlryJhcpKdT615ewaFf4eG0gqB2bcDBQXSaihk9mp5aTZmivK6CrHplZBRPwKelKXMynjElyM8HVq+mf3OjRilz4jI5mVZCODnRQzBWdf/+Syv0O3akDndKkpNTXDIiKYm3hTPGylaReRVZTEzJDU9MMcYYUzNJAoYPB7Ra4Msv6SOrmg0bgL17ga5dgb59RadhTH8GD6aOfPPnU4c+VnXffANMmAC8+CKwYoXoNBU3fz6trhw8WLl19Rhj1a8i8yoKfG7DWPVJTqYnQfb2XOSTMVa6tDRg3Tq6KB80SHSaytFouCOfvu3ZA3z7LRWLVurE1IkTwNmztMKyeXPRaZhcODnR5LUSt7TLVffuwIIFtBpbiZS2yovVjAsXgNOnaVyXUS6asTLxrmDG7jN7NrXuff990Ukq7uhRYPx44IcfRCdRl2XLgN9/p20YjAHA7dvASy8BL78sOgmTk65dgYkTgU6dRCepvOXLgVdeAf75R3QS9UhLA44dA8LCRCepvIUL6cGdUgsyy1GTJsCYMUDPnqKTMDlZtgyoVw+YPFl0kspZtQoYMYKumxmrKF4xxdh9cnLooxJ3cF6+TE/re/Wi2kKs6iSJbtJ0OiqCbm0tOlHF/PcfjYX69enXTD/MzIDevdWxfUGS6MXFa6uuXz96KVlICK32UuoqDjk6exbo0AEIClLu5BQ3R2APio2lumOenoCLi+g06hEbC1y5Qt9bJapXD+jRAwgOFp2EKRHXmCoF15gybDodFStVWgPHs2eBP/4AGjak2jGs6vLzgWefpdVS69YBtraiE1XMrl1At250gXDliug0TG7+9z96qjlvHk9mM1ZdDhwAXngBCAykczJjAHX7zcqiVfpKvNV46ilg0ybgp5/oAR7Tj6goarrj4kIPFRlTOq4xxVgVGBkpb1IKoGXh3HlNv0xMgPXrRaeovObNgSNHAG9v0UmYHBkZAbm51LmRVV1GBtWXUuL7B6s+7dsDN2+KTlE1Fy4Ac+ZQR76vvhKdRh0mTgRWrgTmzgXGjROdpuLc3OjF9Mvbm6/ZmOHixfuMMaZSdnZAq1aAl5foJEyOPv2UbpjHjxedRB1696amGX/9JToJY/p19y7VvuHaY/pjbk7v0UpbiV1oyRLadsarpRhj+sITU4zd59NPgXffVW4diNxculDQ6UQnYUy9/v6btkeOGSM6SdV4egK+voClpegk6pCZSR+VXHssLIzGdoMGopMwOQkKAr78EvjoI9FJ1GP5ciAlhbZUM1bo0CG6xrhxQ3SSyrl+nd4/GjcWnYQpEU9MMXafFStoWXV8vOgkFafT0Q2mh4cy88vRhQtAQADQpYvoJJW3bRvVELp2TXQS9UhIoBv46GjRSZicHD4MJCVRXTelsrSksX31KhXFZ1W3di0wcCCwaJHoJJXn4QFMmkTdthhj1eebb4Cnn1ZuwxozM+DSJWrIxO8hrKK4xhRj93n7bWoF7+8vOknFGRkBjo5UL+buXSqoyaomJQWIiKBaU0o1axYV3HVy4k5b+jJgAFC3LqDVik5SNbdu0ZNZa2vejqEPZmbKry/l7g7s3Uu1hJh+XLxIW+A8PEQnYUx/jh6lB7mBgcDnn4tOox7BwUDbtoCPj+gklePmBuzcCTg4iE7ClIi78pWCu/IxpUpOpnoFxsaik6hDWho9+dFogJYtRaepnM8/B86dA15/XdkrOZj+7d4NdO1K7Z0vXRKdhjF1OnUKOH6cJrM7dRKdpvISE+nBl58fYGEhOo3yjRsHpKYCU6cCtWqJTlNxGzbQQ5oWLYBjx0SnYYzJVUXmVXhiqhQ8McUYY0ztrl8HJk+m7aozZohOo3yTJ1NB43ffVWb7d8YexdubVpSfOAE88YToNMrn5UXbwU+dApo2FZ2m4iIiaMWtvz8waJDoNIwxueKJqSriiSnDlJ9PW+Ds7PhpIGOsbCdOUDe7Ro2AOnVEp2FyUFBQvOU3Ph5wcRGbpyr27qWadJ070zYdxgCgSRM6723cCHToIDqN8v30E11z/u9/yj5fMPagPXuoVECXLsrdksj0pyLzKlz8nLF7IiJob7SSa2ts2kRP6zduFJ1EHUJDgT//pFoKSsePIPRn8WLg2WeB1atFJ2FyUVAAjB8PjB6t3Pbvhb74gmqOHTokOok6XL9OhYDT0kQnqZrTp6lcAE9K6cerrwIffMCTUqyknj2pdMTly6KTVN5HHwEjR9IWZsYqgiemGLun8KJRyQWN9+6lYpR79ohOog5btwLPP0/fU6W6cAHw9eWVPfoUGAi0a0db4NRAknjisqrMzKib0qJFyl9x26YN0K8f4OoqOok6jB0L1K8P/PWX6CRVY8R3DOw+kkSrYs6eBfLyRKdRjzNnaEKnoEB0kspr1Yom2LgAOqsoBfeaYky/mjal7XyZmaKTVF7XrlT4XMkFVuXEw4O+p40aiU5SeXZ2QGQkYGoK6HR8c6EPH35ILzVo1oy6hh0+TL9mbPp00QnUxdqabtC4MgQrVFBAq/StrKgTpkYjOlHlBAUBubm0xdPXV3QadVi7lori+/mJTlJ5c+aITsCUimtMlYJrTDHG1CI/Hzh5kgqtenkp9wKYVY9GjWhV3fbtQPfuotMol05HLxN+3MdUatMmYN062so3apToNMoWHU3vx0ZG9B6t1PdlPz8gJ4c6vNarJzoNY0yOKjKvwpdQjDGmYiYmtKyasdKsW0ed5NzdRSdRthMn6N9ZUBAQFiY6DWP6d+ECsGwZbeHiiamqyckBbGxohbtSJ6UAWinFGGP6wps6GLtn1y4qHL5mjegkVZObCyQkiE7BmHo9+yzQvDlw7JjoJFUXFERbMMzMRCdRtowM+mhqKjaHPuzYQTXpBgwQnYTJSefOwJdfAkOGiE6ifAEBVNc0KUl0EiYn2dnAP//QOVjJ1qwBGjQAxowRnYQpDa+YYuyeI0eoyHVaGvDcc6LTVM6VK7Sc2sGB2hCzqnn/fSqA/sEHwAsviE5TeQcO0IqONm149ZQ+nD9Pq2JyckQnYXLRoQOQmKiOIsAaDXD1Kk9W6svIkbTK6KuvlL0ysXVrejH9UfJqKaZ/8fHAwIG0ijk7W3SaysvKAi5dAry9RSdhSsMTU4zd07o1MHEi0KKF6CSVV9gBIy2NimsaG4vNo3TXr9MkRGqq6CRVs2IF8OOPwCef8MSUPixfTk+6GzQQnaTqTp4E9u8HgoOBJ58UnUa5TEwAJyfRKfTjiSeAffsANzfRSdRh5Upayfz556KTMKZfy5fTw7vnngOeflp0GnVo1Ur51+49egA7d1IdNcYqgiemGLuna1d6KZmLC62U0mq5+5o+fPYZ8MYbtK1Fydq0AZKTuTipvrRpIzqB/uzYQR0GR47kiSlG7O1pBRirOkkCvv2WtnoqfeJSpwPu3AFSUoDatUWnUbZTp4CFC4H69YHx40WnqbwTJ2jiNTCQJ6b0wdeXdm8onYcHvRirKO7KVwruyscYY8wQ/Pcf8OuvQKdOwOjRotMo1+HDNMnXtCnQr5/oNIzp361b1IXNzIy2GfE2tMpbuRIYNozqdu3eLTpN5e3cCZw7Rw9reJsnY6w03JWPsUpITaV93ebmopMwxuRKpwM2bgSsrIAuXWgLl5I9+SSvlNKH/fuBjz+mlWdqmJj6918gJoZWQTg6ik7D5KBwHFhaUg0ZKyuxeZSsUSPgiy+UX4OnWzd6MXa/vDxgyxZaqf/CC7yDg5Ufr5gqBa+YMkwdO9LNxdq1wDPPiE5TecuWAWfPAiNGAM2aiU6jbP/9R7W62rUrrt+lZDodXyBUVVoaUPi2kJlJN2mMbdkC/P03rRx46SXRaarO359awR85wnXpqiI7m76PtraAp6foNFUjSfR+qPTJeMbkatcu4KOPqNbt/Pmi01RednbxtVFyMpUXYYaLV0wxVgmFBa6VPhe5Zg1NqDRpwhNTVTV6NG1fOHoUaNlSdJrKS06mJ7RxcUB6Onfbqor8fJp8yMwELCxEp9EfSeKtOVXRuze91KJLFyAhQV1jXIQrV2h7p7s7rUBTMo2GJ6VYSbm5QGwsfeS6Y1UXHU0PA2xsRCepGgsLoG1bwNqaxgZj5cVvMYzdc/IkrYZQ+gqIZ56hSamGDUUnUb6mTQFXV+VvZbGzo0mpvDy6iPT1FZ1IuRwcgEOHRKfQn7g4ICSEJubT03lyipFly0QnUIe8PFotYG8vOgmTk+RkumG3s1P25O/hw1Qnq04dIDRUdBrl69wZ+OcfdZwvDh4UnYApEW/lKwVv5WOMqc3p09S10cND+a2Imf7cXysmJUX5K0ZF4RVnzBAsWECd2F59lVZEsMqZMAH45hvg/feBr74Snabyzp6l1eRBQcCFC6LTMMbkqCLzKlxthDHGDEDTplRolSel2P0sLWnS8uZN5W8fEGnwYPpeLlkiOglj1WfrVmD5cuDiRdFJlC0vjz4qvYB848ZUT4gnpRhj+sATU4yB3ljHjwc++YRqyChdTg6QlCQ6BWPqc/w4FYMeNUp0Ev0JCaHtnVwYv/IyM+l9RC0Tvz//TKsgxo8XnYTJyQsvADNmUHFmVnnz5lEh+SlTRCepGo2GV4rqU2gosHs3EBEhOknVffgh0KAB8McfopMwJeHLUMZAkzjffgt89pnybyzWraOaBf37i06ibHfv0g17u3bUzU7pTp8G5s4FNm8WnUTZ4uKAY8f4CTEr6bffgBs3lN3R9X7Z2cC1a+q4QRJp+3bq0vjjj6KT6MeQIXTDGRIiOonyGRlxMXlW0g8/AF27AosXi05SdbGxwKVLQGSk6CRMSfiUyBgAc3Ng4kQqRqn0pz+FRRN5xVTVpKVR/QRzc3WsJNm+HfjgA2D4cKBPH9FplKtFC2DDBuo2oxbbttEFZLdu1L2RVZyDA73UYsAAGgs+PqKTKNu5c8Avv9BK7NdeE52GMf378EPaCv7ll0BAgOg0yubiAtSvD3h6ik5Sde++C4wYAQQHi07ClISLn5eCi58zJcvJoW0lWq06JlREycwE9u+nycqnnhKdpuq2bweWLgU6dQLeeEN0GiYnzzxDKy0XLADGjBGdhjH1OH4c2LULqFdPHauY8/NpNXFeHuDlJTqNcs2eDURFAS+/rPyHAXXqAFevAnv3Ah07ik7DGJObisyr8IopxlTG3JxerGqsrIBevUSn0J8ePejF2IM6dADMzIBatUQnUa7vv6eb9uefB1xdRadhctGihbrqMa1dCwwbBnTpQhNurHJWraLuht27K39iasIEepDn7y86CWNM6XhiijHQqhiAbs4YY6ws4eFUd8fPD6hdW3Qa/XjnHdEJlO/TT4GEBLrRVMPEVG4u8O+/QGIirerg1bcMKN6uWnjNxCrnlVfoXFGnjugkVcdbVFlp4uOpHqe5OT8UZeXHlxqMgQrXmpsDAweKTqIfX30FjBtHxQdZ5cTGAv/9B5w8KTqJfhUUqKOYuygrVtANxZw5opMwORk8mFaSODuLTqIfkgQ8/TTddKakiE6jXPHxQEwMFZNXg+7daWXggQOikyjb669Td0M1TEwx/Rk7liZxDh0SnaTqTpygMhgffig6CVMSnphiDEBqKn20tBSbQ18WLADmz6eClKxyDh2iIuFqWk3SoAFNwF69KjqJcjk5AQ0bclFoVtL331NbbHd30Un0w9ycukP160f1hFjlvPkmFTJeskR0Ev0wNlZ+52KmX5mZdK0ZFyc6ifIdPQrs2KGOhwGenkDz5nS9xFh58VY+xgC89RYwciQ9JVaDV18FMjKowwerHGtroFkzdXUU0eloxdTt2+r6e9Wkt96il5ps307dGuvWBfbsEZ2GycXOnaITKJ9OR51+1dTFk1XdnTtUx9LCQvmdoL/4gjryvfUWPRBllTdzJk3wNWkiOknVhYRQ8wfGKoInphgDPQFUU6vvKVNEJ1C+Xr3UVfwcANavB2xtATc30UmYnJiZ0cWwVis6CWPqsnYtPfBSy0MvAJg4keqpzZ5NK0hZxUgSPTSUJCoZoPT3YwcHeg8pKBCdRPm6dxedgDGxNJKkprdL/ahIW0PGGGNMydLTqai7szO3gK+MW7eA+vUBR0f6NWNq5uQE3L0LXLxI455VTHZ2cdmI1FR6WKRkBQXUHEHpK78YY9WjIvMqXGOKMVBB408/Bc6cEZ1Ef3Jy6IaTMaY/779PTzW3bxedRH9sbGjrAE9KVU5GRvFLTT75BAgKopqFjBV6/30q3O3oKDqJMllYUN221FQ69yqdsTFPSunL/v1UNFwtXS979aLaphERopMwpeCJKcYA/P47MG0acO6c6CT68cUXdPHz/vuikyjXggVAx47ADz+ITqI/V68C334L/Pqr6CTKdfIk1d65c0d0EiYXtWvTirODB0Un0a/kZODaNSAyUnQS5Xr/faq9ExUlOon+fPghvdRS6F8EExNaKcUTOqyQTkfXnC1aAElJotPox6VL9EpIEJ2EKQXXmGIM1NLU3x+oV090Ev0oXCnJN8+VFxZGT686dBCdRH/OnwfGjwfatAFGjBCdRpmmTQNeeYW+h2ry559U72TECK4bU1GmpkCtWqJT6N8bbwDPPqvOv1tN+fln2vY2ZozoJIxVj5gY4LPPqGbWokWi0yhXbi41pcnMVE+zhJ9/phV13GyHlRfXmCoF15hiSpeeDuTn0wSVEa+LrJTz54HQUKBOHaBxY9Fp9OPiReDzz4FGjYDJk0WnYXLi60srY44doye2jLGqmz2bVp6NH6+erW95ebSiw9RUXU1jasqtW8C8eYCnJ/Dee6LTVF1EBBAQAJibU/0sxhi7X0XmVXhiqhQ8McUYY8yQjBlDN9BTp6pn5WhNCQ0Ftm2jlUV9+4pOw1j1eust4PvvgY8+ogcdrGIOHKCV2HXq0LlD6TIzgZkzaZJy3Dh+GMoYK6ki8yq8lY8x0BNAU1PRKRhjcnfwIJ0rGjemOm5qsXCh6ATKdfQo8PbbQM+e6pqYSk4Gdu2i98chQ0SnYXLh6Ei1kTIzRSdRJg8PYOJE9aw2s7Ki5kGMPejqVeDKFSqV0qiR6DRMCXjFVCl4xZRhKSigQpQWFrSVxdlZdKKqS08H5syhG4tvvuECm5Vx8iSQlVXcBl5NCgqoHoQJP5qoMDs7IC2NapAFBYlOw+Rg925g8WKarFTTFtnz5+nv5OzMxWsrIz+f6jxaW6uj+1qhnBx67zA2Fp2EMfUIDaUHHH5+wI8/ik6jHxMm0D3IhAnA11+LTsNEqci8Ci+4ZAYvPZ0+ZmdTlxS1mDaNOrDxU83KGTeOltvv2SM6iX717k21ILZuFZ1Emfz9qR6Tms4VrGq6dAFWrlTXpBQAuLkBbdsC7dvTRDarmBs3qHOdp6foJPplbs6TUqyk9HSqnZWRITqJcsXH05bwvXtFJ9Gf2rWpZqXazoGs+vDzcmbw7Oyoa05KCl1wqYG1NTB6NGBvTy1oWcV5e9OKGLWtljIxoRVT0dGikyjTuXOiE1SP2bPp9dJLVC+EMVdX2rrKKicriz6qpcMW04/cXPpoaqqe1exdugAnTgAbNwL9+olOo0x16gC//AJYWopOoj+jR9OLsfLiiSlm8DQa2uuvlv3+AP2duG1v1axcKTpB9ViwgJaJu7mJTsLkJD8fiIujF2Os6ho3pocAOTmik+jX7dtUKsDIiLfnVMaCBdSl8YUXgN9+E51GPxwcADMzXqFfFW5uwIgRolMwJhZv5WOMMQPi50fLqnkrBrvfiBHAmTPArFmikyjPBx9QQeM5c0QnYXJjZKSuFRBAcQ3Ln34SnUSZCidv1DQu/v2XymEMHiw6CWNMyXhiihm8K1eAzz4D/vxTdBL9y86mF2Os6m7dos5rL74oOon+eXoCTZrQ9i1WMYmJQGys+lbGAMDLL1OdkC1bRCdhcuHuTl3lJk3i2mOVMXEikJREW6fVQk3bEkWJjQVOnwaiokQn0Z+rV6lGYffuopMwpeCJKWbwzpwBPv6YuiqpyQsv0BO5JUtEJ1GmwtbviYmik+jXtWt0Qfzzz6KTKM/du8D27cCuXaKTMDn5/HO6oXjpJdFJ9C8mBggP55p0lXHkCDXRWLZMdBL90mppZeUHH/BkRGWYmlL9T61WdBImJ3/+CTRrRv+u1OTgQeDYMdEpmFJwjSlm8AICgNdeU1/r98KuYWqbWKkJBQU0AaFGoaHA++8DTzwB/O9/otMoi48PsGKFOrdBpqQAf/9Nq35ef110GmXx8KCXGn3+OfDRR0BwsOgkynP2LDB/PjBgADBqlOg0jFWfffuoLmejRsAbb4hOo0zm5rRy2dlZdBL98fYG1q5VXxMhVn00ksQLcR+UmpoKrVaLlJQU2NnZiY7DWKUkJdHTTK2Wn2pWVEEB8Ndf1Pr4hReoqKdaXL4MfPEF3WhOnSo6DZOLGzeAWrUAC4vibmKMsco7ehT45x+gbl31FTXOy6NrDFtbddVKqgl//kkPiPr1A5o3F51GP378kR5o9O9PY54xxgpVZF6FV0wxplJq6jJY04yN1VvEs1499XQCYvrj7Az06kVPNgsK1LkqrLr89ReQlgb06AF4eYlOw+SiVSt6qVHr1sCpU1T0uk8f0WmUZfVqYP16WmWplompFi2oJEbDhqKTMMaUjCemmMGTJF5RxBh7vPh4IDKSJnH8/ESn0S9bWy5wXVnTpwPnzwPbtqlvYio6mmolWVvTxCVjAE1gazRAaqroJMrTpw8VkFfTJE7TpvRi7EEnTlCtwtatARcX0WmY3HHxc2bwRo0CrKyA774TnUS/bt4EPv1UXZ1fakp6OnDoEHDxougk1UeSuKNSRf3zDz3hfust0UmYnHTqBDz5pDrrTB05AjzzDL2XsIrJyAAyM9V5nl2/nrbzDR0qOonyvPoqsGgR0K6d6CRMTmbPBp57Tn0PiF59lbZ4njghOglTAp6YYgYvJYVqqpiaik6iX9HRwLRpwMKFopMoz8WLdNHYt6/oJNUjMJDG+9WropMoi5kZFfN0cxOdhMnJd98BmzerawVEIV9fOheGhIhOojxvvUUrzWbOFJ1E/6ytebsvKyZJtHru1i3RSZTr4EEqFB4RITqJfjVqRA/0zM1FJ2FKwFv5mMFbvpyKeNrbi06iX76+1G1QbVtLaoJGQ4Wgvb1FJ6keOh3VEbp7V3QSZRk5kl5qNWQIsHcvsHSpeidlWcU0bw4cOCA6hTJlZNBHGxuxOZi8qLGGX3Jycee1nBx1NYypKW+8AXTvDnToIDqJfv36q+gETEm4K18puCsfY0zNrl2j7auuroAJP55g9/TuDWzdSpP1ap6AY6wmFBTQVj4TE/V1rjtyBFizhrq7vvaa6DTK4uND9QqPHFFPXSadjsa5qSkQFcW1hBhjxbgrH2OMsTLVri06AZOjOXOoboy/v+gkypGbS6srrayAkyepiDxjAK2KUet4uHyZzhdPPskTUxWVkUHnDQsL0Un0x8iIanNaWnIzIcZY5XGNKWbw5swB5s+n7XxqlJ0N5OeLTsGY8n3/PRWC/vtv0UmqR/36QJMmgFYrOolyZGQAt29TvTa11tDo2ZMms7kmHSsUEgJMnAgMGyY6ifJcvUq1mNT2gMjKiielquLKFRobOTmik+jX2rVA+/bAlCmikzAl4BVTzOBNmULFz/v3BxwcRKfRr4YNqZD3wYNA27ai0yjHhg3ATz8BXboA48eLTqN/hw7RKySEahqw8jl6FFi3DmjTRnQSJhe2trRSKiNDvXVVbtwAwsNp+1FQkOg0yjFrFq0iefVVqvmoJk2bqmcbWk1zcqIXY/fr2ROIjASOH6fafmpx9y7dgzg7i07ClIAnpphBkyRg+HDqzFdYuFFNrKzo4507YnMoTWgosGmT+iYqC/37L/Dll9Q1iiemyu9//6MJXrVOTIWHA/v3U9fBJ58UnUYZTEyAZs1Ep6heS5fStrTGjUUnUZaFC2llzFNPqW9iirEHLVtGkyovvECdPFnF2NoCdnbF1+1q0b07rZoKCBCdhCkBT0wxg6bRAIsXi05RfTZsoD3/aq1zUV1696aJylq1RCepHs2bAy++CLRoITqJsnTpQi+12r8fGDWKJqV4YooV6thRdAJleuUVIC4O8PQUnaR65OZSCQRXV97CVV5pacC339I12bvvik6jX//+C/z1F9CgAU9MVcbFi6ITVI9atdR7Lc30T3iNqQULFsDf3x8WFhZo1aoVjh079sjj16xZg7p168LCwgKNGjXC5s2bS/z/devWoWfPnnBycoJGo8GZM2eqMT1j8ubuTvVijIT/S1eWRo2Al19W7yTEoEHAihW0WpCxQoGBNCmrpm0E1S0mhtphb90qOgmTm6lTqS6dt7foJPqXk0M11dzdacU5K5/ERGDaNHXW23nmGeDjj/n9gzFWeUJvV1etWoXx48dj2rRpOHXqFJo0aYJevXohPj6+1OMPHTqEYcOG4eWXX8bp06cxcOBADBw4EBcuXCg6JiMjA+3bt8esWbNq6q/BGGPMAISGAmFhVJNOjTp0AP77D/j0U9FJlOPCBWDkSCoErVbh4bQS4sgR0UmYXJibFxe7Tk4WnUY5LC2pi+GIEaKT6N+wYcD06UCrVqKTMDnJy6MaU5s2iU7ClEAjSZIk6g9v1aoVWrRoge+//x4AoNPp4OPjg7feegsffvjhQ8cPGTIEGRkZ2HTf6G7dujVCQkLwww8/lDg2IiICAQEBOH36NEJCQiqUKzU1FVqtFikpKbCzs6v4X4wpxr59tGWlWTPaxqI2R48CW7ZQt63nnhOdRjlu3KBixl5e6q0zBVCNNd6CUX716lHnnD17gE6dRKdhcnDsGK0S8PcHHrgMUY2ZM4FJk2ib588/i06jDJJUvKpIrefYpCSqiWNsLDoJY8qWnAy8/jpgbU01/dR0zkhLo/MEAGRm0uQsMywVmVcRtmIqNzcXJ0+eRPf7Ku8aGRmhe/fuOHz4cKm/5/DhwyWOB4BevXqVeXx55eTkIDU1tcSLGYaUFDpR5uaKTlI9jhwBPvmECg+y8ps0ibbzrVghOkn1uHYNcHGhbRis/GxtaWustbXoJEwuWrakyX+1TkoB1Na+bVuuE1IRcXF0A2ZuTpNUauTgwJNSrJgkAamptF2RVUxKCrB6NfDnn+qalAIAGxsgOJhqmmZmik7D5E5Y8fPExEQUFBTAzc2txOfd3Nxw5cqVUn9PbGxsqcfHxsZWKcuMGTMwffr0Kn0Npkw9egDXrwM6negk1aNZM3oK07Kl6CTKYm1NEzdaregk1cPGhi4eNRoa+1yDrHweUwJR8XJzgSZNqL1zWJh6xz+rmGefpRcrv4wM+qjmFVOM3W/1amDoUGqWsHev6DTKotUC8+YBBQWik+ifRkMrzRkrD+7KB2DSpEkYP3580X+npqbCx8dHYCJWUyws1N3CtEMHerGKWbpUdILq5eICnD9PnQf5pokVMjMDIiKA7GzapsMTU4xVTkAAbc9Raz06gFZiHzoE9OsHdO0qOo0yrFlD9aW6dwc2bhSdRr+cneljWprYHEpkbw+8/bboFIyJJ2xiytnZGcbGxoiLiyvx+bi4OLiXsb/E3d29QseXl7m5OczNzav0NRhjTCmMjYGGDUWnYHK0YwdtWVRri3t9W7AA+O474PnnqdYUYwCtQtVq1T25u3UrsGQJ4OTEE1PllZFBE/9qXBnToQOQns5b3RljlSdsA4eZmRmeeOIJ7Ny5s+hzOp0OO3fuRJs2bUr9PW3atClxPABs3769zOMZe5xdu4D589W/RSc7W3QCxpQtKwsYPBh46SX11qQDgHbtgMaNafUUe7yYGOrWqOa6Kqmp1Gmrdm0gP190GiYXvXtTN0q+BC+/wYNpVeqPP4pOon9mZjwpVVlpaVRWRK3vI59+CrRvD/z9t+gkTO6EbuUbP348Ro4ciebNm6Nly5aYO3cuMjIyMGrUKADAiBEj4OXlhRkzZgAAxo0bh06dOuGbb75B3759sXLlSpw4cQI/3neGv3v3Lm7duoXo6GgAQGhoKABabVXVlVVMfdauBRYtoifdaqzDlJxMKx+ysqhDEN9sls/o0XQz9umndDOmRv/8A1y9Cjz1FBWmZI+Wnk7bMADuTMaKvfYa1SpU8+WFlRVw/DgVN757F3B1FZ1I/i5epJo7deoAL7wgOk31eOYZerHys7IC/PxEp2Bys20b1fFr1w44cEB0Gv0LCwMOHgQGDRKdhMmd0ImpIUOGICEhAR9//DFiY2MREhKCLVu2FBU4v3XrFozuq8rbtm1b/PHHH5gyZQomT56MoKAgrF+/Hg3v25OyYcOGooktABg6dCgAYNq0afjkk09q5i/GFOOJJ+gJVuPGopNUD1vb4tVSSUnAA70DWBk2bKCVEBMnik5SfebPpxWDnp48MVUelpa0ZSs7W93F4o8eBS5fpnNjo0ai08ifry+91MzEBNi0ieqgqHlrmj6dPUsPNrp1U+/EFGMPmjEDuHkTmDIF8PYWnUY5CgpotZmtregk1WPMGODpp6m5CmOPopEktTayrbzU1FRotVqkpKTAzs5OdBzGqiQigto629lxoevy+uUXmsgbPpzqZ6jRjBnApUu04oML5LNCL71E43/mTOCDD0SnYUyZjh6lf0fBwcC4caLTVJ/cXKqb5OAgOoky7NoFnDsHtG5NL7WpXRsID6dVP+3aiU6jPJLE1+lMfSoyr8Jd+RhTOX9/0QmUZ+RI0Qmq36RJohMwOWraFIiLU/8qIH3Zu5e2tzVvDnAzX1aoVSt6qdnevUDnzkD9+rR1kT3eunXUMGHqVHVOTI0eTdvePTxEJ1EmnpRiho4nphhjjLHHyMig7Z1aLeDiIjpN9Rk3Tt0rPPTt44+BffuAVavUPTF1/jwVeW/QAKhXT3QaJgeF2zqTksTmUJInngCGDVPvlqYJE0QnYHKUnEyT10ZG3CyBPZqKK2Uw9niNGlGNnTNnRCepPhs3AtOnA0eOiE6iDPn5tMXt5k1aVs0YQJMPQUHUiYqxQg0b0soYta8w+/Zb4LnngPXrRSdRBp1OdILq16ABcOcOEBkpOolyjBoF/PEHF41nJa1aBbz6Kq2oU6ODB6kr31tviU7C5I4npphBi46mVRBq7la3ahXwySf0xsAeLz6eLrgDA0UnqV5r1tDKn4EDRSdRhoICwMaGXowVWrCAJv3VuC3nfg0aUM0YbqBRPuPG0XXF55+LTlJ9TE0BR0fA2Fh0EiYXkgSkpdH2ZlZ+hw8DS5YAJ06ITlI93Nyo/piaVxUz/eCtfMygnThBS0xr1RKdpPp060Y309xhq3xyc6ngubGxuvf7m5gAiYk0Eccer18/uuBWu8OH6am+jw+wfbvoNEwu3nuPXqx8MjKAvDyetGGGZc4c2s734ovAihWi0yhHv370oLBtW9FJqkfz5sDVq6JTMCXgrnyl4K58jDG1S04GoqIAV1d6MQbQ6p82bQA/P+royRiruLQ0Osfa2Ki7Y928ebTtfdw4OmewR+vaFbhwAfjtN6BnT9Fp9G/5cnqw8dRTwIYNotMwxuSAu/Ixxhh7JHt7ejF2vwYNgD17AGdn0UnkLzSUnnQHBQGbN4tOw+TE1pZeard4MXD5Mk1E8MTU4yUmAgkJVARajYYOBQYPBqysRCdhjCkRT0wxgxUdDaxeDfj7G0adnbw8qgnBGKu4tWuB//6jp9xDhohOU31sbYFOnUSnUIaYGODaNfXeZN7v0iXgpZcAa2tg927RaZhcjBxJXfk8PUUnUYZNm4DUVPVO4llYiE6gTPHxVDrC3l691+nDhlGjhN9+o/suxkpjAJdTjJXu/Hng3XeBadNEJ6leu3fT06uWLUUnUYZ9++gNdP580UmqlyQBS5cCX38NZGaKTiN/u3cDP/9M5w3GAKBpUzpfLF4sOkn1MzYGjh8HTp8WnUQZliwBZs9W/3bYDz4AZs4EgoNFJ1EGX1/q5GkIq+lY+T39NJVU2LhRdJLqc+gQNWGKixOdhMkZr5hiBsvRkVY+qL1LhLU1kJXFXVLK6/x5YOVKKoL+9tui01QfjYZa92ZlAc8+CwQEiE4kb888A3h5Uctjtdu8mS4eBwyg8yQrnVYLdOggOkXN8PWlmjG8xbN8vv2WVpk1a8arA5jhyM+nLtAJCcDcuYClpehEypCfTx/VvAXy22/pY+3aYnMweePi56Xg4udMTbKzacuJkxPAw/nxzp0Ddu6km4lBg0SnqV4jRtDHL75Q/wQtKz9/fypofOQI0KqV6DSMKc+UKfRvaOpUoE4d0WmqV24ulQqwthadRN4kCfj+e5p8eP55dU7aSBJt58vNpfHv6ys6kXLodPTRELaGM8NSkXkVnpgqBU9MMcYYM1QjRtAT75kzgSZNRKeRr0OHaGVZ06a8KoYZppkzgUmTgFdeAX76SXQaecvNBczN6ddJSeptPvLRR4CZGTBmDODiIjoNY0w07srHGGOM6dHly1QDwtGRtkGq2a+/ik6gDPPnA6tW0RaFd94Rnab6HT0K3LoFtG1L21oZK7zH4FIBj1dQQB3rMjPVvWXriy9EJ2ByFB0NXL9O11FqX0XKKo8XDDKD9dRTdHG9YYPoJNVv6VJg+nR6Y2CPduUKcPt28Z5/xrKygPr1qb5OSoroNEwugoKA1q2BWrVEJ6kZ771HN9ZHjohOIm8FBcXbctRuxAialFqzRnQS+bO0pInsjRtpRRFjhcaOpWZMycmik1Sf+fOpJuOiRaKTMDnjiSlmsCIjaaLGEC4QZs2igpTh4aKTyF+vXoC3N3DypOgk1e+jj2iyZcYM0Unk7e5dwMGBamdotaLTMLn47DPg8GGgf3/RSWpG06ZU/N/GRnQSeTt8mK4r2rUTnaT62djQuZHr4rBCkkQPcPghTvkUFAALF1Kx+Lw80Wmqj7c3FT7nayj2KLyVjxmszZupKLghdIh49lm6ueaOSo9nYkKt0d3cRCepfvn5wJ07VE+Ilc3Li/795OWpfxsfQBfJ8+dT19Lp00WnYXLx3XeiEyhDTAzdbPJkDbufJBnG+8e77wLz5lHtsS+/FJ1G/nQ64NNPaYunmssav/kmvRh7FJ6YYgbL05NehoAvDsovPJwuFAzhAvKtt2grhoeH6CTKYGoqOkHNSEsDQkOpqxJjrGIGDaLt4NnZopNUv7Q0WumRmgp8/bXoNPK2YAFN9I8YAXzzjeg01cfRkT6qeVuaPpmaUvdOxhhPTDHG2EMM5Um3tze9GLvfkCFUO4lbfZctORlo0YK6Tu3bRystGQNoLBjKQ6+CAuDjj+nXn31G251Z6W7fBhIT1b1dC6BadBMmqLvAO2OsevClFDNIMTHAypXU4nvQINFpak5BAW1TY4yV359/Atu2UcOEp58Wnab6+fvTi5UtPh64dg2IizOcSalt26guXaNGwM8/i07D5MDODnj1VVolU1AgOo28ffgh8Pzz6q/RZm0tOoGy5OXRikNra3VP7EZGAmPG0K83bhSbRQkKm2gYGRnWfZuBrAtgrKTLl4Hx44EpU0QnqRlz5tDTq7FjRSeRtz17gGHDgO+/F52kZiQkUMfGpUtFJ5G3AweA5cuB06dFJ2Fy4e1NK6VWrxadpOZkZwMnTgAXLohOIm9LltB77vXropNUPyMj4McfgZkzeULicbRamtQNCBCdhMnJmTNU/zU4WHSS6rdpE7B1K9VbY49mbEzbPA1pUgrgFVPMQNnbA0OHGk5tHTMzanl/547oJPJ27hytpCsoMIwijdHRwCuvUKH3l18WnUa+nnmGJiIMocsWAKSnAzt30jlj6FDRaeTJyopaXxuSVq3oSbeXl+gk8vbdd/ReUr8+UKuW6DSM1ay7d6mGVkYG1R9jj5aVRR/VvvXR1RX46SdaXWkojQBYxWkkiectH5SamgqtVouUlBTYqblFAjMYd+9S614XF/UvI6+Ks2eB3bvpZsIQWsDHxhZPTPGqKVYoIoKe6ltYFF80M8bK55NPgLAw6rRlCF1/ASA3lz6amYnNIWfffgs4OdGDDjWvLouPp2sKjYbGhaFsda6K/HxakcrX56zQvn10vggKUv55tSLzKjwxVQqemGKMMWao0tKAHj3oyeY//xhON8KKOHMGuHEDaNAAqFNHdBrGxBk0CFi/nuqOjRolOo08ZWcDlpb067t3AQcHsXmqU0EB8M479CB04kR1101irDpIEk1eZ2VRLcvAQNGJqqYi8yo8j80YY4w9wqVLtAzdyckwlp/b2gJHjohOIW+//ELbVCZOBGbNEp2m5uzdSysinnySn+4zUrj65+5dsTnkLDsbGDmS/u3Y24tOU72MjWk7K2MPunaNVurXrUt1tVjpMjJopVRUlOFtnefi58wgDRxI9aXWrROdpGakpwPz5wOffy46ibxdvkxvBPn5opMwucjKolUxLi7UOYcxAPDxAVq3NrzVUs89BwweTKvF2MPy8w2vO928eTQp9e67opPIl709NdDYvNkwHm6w8luwAJgwgRpLqN3IkVSbcd8+0UnkzcaGSovcuWN4Kw55YooZpKgomrU3lC0q+fnAuHHA1KlATo7oNPLVowfdcBpS97W+fenJ1e7dopPI0927tKXNwoJaozMGUFfXw4cNr2lAq1aGV/S9IrZsAczNgd69RSepOU5OtDXNiO8o2D2SRHVNMzJEJ5G/tWupWHxYmOgk1c/fn+ruGVqnOVZ+vJWPGaSNG4GYGMPpmGNnR0+5HR2BvDy6cGYlSRJNVJqYAO7uotPUnLQ0eiqTmCg6iTx5edH3Jy/PsJ50v/oqsH8/rYbo1Ut0GiYXGzeKTiBvMTG0YspQHnqx8jG0LmTPPQf89RewcCHwxhui08jbqFFAs2ZA06aik1S/338XnYDJHU9MMYPk4UEvQ2FkBKxaJTqFvGk0tD1FpzOsC8gffqCLZj8/0UnkzdBuNKOigNBQutFmjJXPqFG0CtWQtoOHhgKrV9PKW56EKN1HHwE//gi89x4waZLoNNWvsLh7UpLYHEowYoToBExuvv+eHgINHw68+KLoNDWLF94yxth9jIwMa2Kqfn2qocSFjNn9Pv0U2LMH6NNHdBL5kST6N9OmDRUzZqyQiQng6Qn4+opOUnPCw4GPPwaWLBGdRL5u36aVt4ay3fGbb4DMTGDyZNFJGFOeEyeAbduAyEjRSWqegZwiGSsWHw/MmUP7ug2RJIlOwJhy/Pkn8NJLhtMooVCLFkCnTtSNkJWUnk6dGo8cKe5IZiiWLaOx8dlnopMwuQgMpK2/Q4aITiJfc+cC587RCghDYGcHWFqKTiF/aWm0OtlQGibs2AE89RTVu2Vle/ttapbQt6/oJDWPJ6aYwblyhZZTG9qTnJEj6ULh559FJ5GnnTuBoUOpQ4ohCQ0Fli6lor3sYQcOAL/8YlgF8dmjWVhQ/a2//za8iak7d+hpbmio6CTyNH8+rRYxpCfdwcG0TW3iRNFJ5MvBAWjUiFbTMVZo82ZquNO1q+gkNSM+Hti0iRqHsLI1a0b3bI0bi05S87jGFDM4Wi0wbJhhrgTIzqYuY+xh585RHS6NBhg7VnSamrN7N9UFGTjQsDpJldezz9KFY7t2opPUrKgo4ORJanPeqZPoNPJiagq0by86hRgDBwL16hlO45CKmjMHuHmTzhc+PqLTMCbGzZs0WWluTts8Wenu3qUOdd7eopPUjNatgZ9+4vcPVjaNJPHGngelpqZCq9UiJSUFdtwfnKlEVBQVZHV1BaysRKeRnzNnqKZO7dpAv36i09ScXbvoZqptW8NbRcjK9ssvtIWxd2/gv/9Ep2FMGSZPBiIiaNWUITVYAYCcHJq0NZQ6SuWVnQ18+y2Nh+HDaSJC7U6eBJo3p662UVGi08hbQQHV47K1FZ2EyUFWFrB3Lz3YaNBAdBr9qMi8Ck9MlYInphhjjBmy3bupe1SbNnRTxYqFhgIXLwJ16gANG4pOw5h4Xl5AdDSVSggOFp1GXq5fpzpcFhY0AWEIzVUSEqgOnacn8OGHotMwphznz9MWPicnIDFRdBr9qMi8Cm/lYwZHkgzjwoAxVnUXL9IqQ2dnwzpvdOlCxb3Zw/75B/jgA2rjvGKF6DQ1KzeX6q4lJQHPPCM6DZMLc3P6mJQkNoccmZjQ6lOdznDeQ1xcqN4aY/fT6Wjy+u5deuhlCKsHKyonhyamHBxEJxGDJ6aYwXn2WeDgQXrTHDxYdJqaExEBbNhA3VJeekl0Gvm5eJG+Nx4edCHJWGZm8YqY5GSqT8eYqytdVKtlmX1FZGQA3brRr7OyaBUII3l5tI3NEG+29u2jRgB8jnyYry91s2TsQS+9RCtjPvoIcHQUnab6SVLx+2Z8PE1gspKaNwfOnhWdQhzeCc4Mzu3bQFwc1UIwJGFhwLhxvC2nLD160AXkuXOik9SszEwgKIgujjIyRKeRl6Qk+r5YWtKkJWMA3UwcOmSYW1S0Wpqs7diRzh2s2KpVgJkZ8NxzopPUPG9vesLP9aVYIUmiBzrZ2aKTyFNaGtVynDPHcB6GGhtT4fPatfn9g5XOQP4pMFZs/XogJgbw9xedpGb5+9MKsdq1RSeRH0miGwpTU8DdXXSammVpSavp8vNpIsbaWnQi+fDyoj3++fmGswWjUH4+TT7cvQscPcorIRgxMqIaGOxhsbG0VaVwWxtjAI0JQ5ywa90aOHYM2LjRsBrKVMS8eXQ/YkgPvsLDRSdgcsbFz0vBxc8ZM0yFZ0NDm4Q4coQujIKCDG8lISublRVt17p+HQgIEJ2GMXkrKKCizzodFX02JHv30na+Fi2okycrNmIEsHkzMGsW8PLLotPUnN69ga1baVXQiBGi0zCmDK++Cty8CXzyCXXLVoOKzKsY4Bw+Y4yVTqMxvEkpgJ5s1q/Pk1KspL/+AvbsMbxVhI/TpQv9m7lyRXQSJifGxvRvxdAmpQBg+3bg449pAoaVFB0N3LlDq7INyZ9/0oMNnpRirPwOHqTzqaFugeWJKZUrKABSUkSnkI/EROCbb4DVq0UnEUeSilcGMcbK9scfwMiRNEFjiJ58EujUibZ7smInTtD2RkMscg1QG/jmzYHffhOdhMlFq1b0pL9dO9FJ5GfNGtr+2qeP6CQ1y8GBmyM8yq1bQFQU3acZkgULgKeeAtauFZ1Enn74AVi+HGjUSHQSMXhiSsWWLQPs7YE33xSdRD7CwoAJEwyzaC0ANGlCN5kXLohOIi87dgBDhtAbpiE6dAhYssTwCr8/zsGDwK+/AmfOiE7C5EKSgC1bgL//poLPhigyEjh5krZ4smKzZgGzZ1NzFUPz1FPAjz/S+ygrycGBGgY4OYlOwuRk8mTAx4eKnxuS8+eBTZuoEzZ7WMeO9EDUUDsWcvFzFXN1BdLT+R///ezsgOefN4y2rKXJyaHX3buik8jL2bO0is7EBBg7VnSamrd4MU3AzJoFNG4sOo18PPssdWpUyz7/irp4Ebh2DahbFwgOFp1GHjQaXhUyejQwYABt/2XFZs6kLmR9+wJubqLTMCbW+fO0nc/DA3jrLdFp5Cc3l645fX1FJ6lZzz9PteiaNxedhMkRFz8vhVqKn6enUwG1unUNd8sBKyksjDoGeXgYXr2DRzlzhoq31q5NNxWGZv582tP+4ov8xJsVGzWKlpTPmGG4q0wZKw+dDvjgA+qwtXChYXXZul9eHtcqvF98PK1G9venG3JDsn49MGgQ1eM7fFh0GnkqKKBzB/+bYQCtRr54ke5F1NRBvSLzKjwxVQq1TEwxxhhjlTVrFt1cvPoq8L//iU4jD5GR1AI9IABo1kx0GsbkISwMaNqUSgUkJopOIx8HDgAdOgC1agHh4aLT1KzQUJqkDQ4GxowRnYYx+VuyhK63+vQB/v1XdBr9qci8Cm/lYwZFkgyz6xpjrOIuXKAt0S4uhnne+OADerFie/cCw4cD3bpRbTpDJElUY+rQIdrWx6tvma0tkJlJnaR0OsCIK9gCoDqvo0ZRnSlDExwMzJsnOgWTm6wsqk+Yn091b1kxS0sqp1Gvnugk4vBbh8pdukRbML76SnQSeRg6lNo5//GH6CRinDhBFwrbt4tOIi8XLlCHlPx80UmYXGRmUlcUNzcgNVV0GiYXdnZUc8zQL6h79QLGjQNOnxadRB5ycgz7/cPVlVYE3bljmJP4ZWnYEPj5Z+oGzVihs2eBwYOpLp2hOXaM/l1w2YiHvfACjY3Zs0UnEYcnplQuIoK2YyxbJjqJPERHU8ccQ93PvWUL8M47VOibFevWDfDzM9xGAUeOAEFBQKdOopPIR1IS4OxMT7B4Rzcr1L8/dWs05BtNjYZq8fXpw5MQhZYsofqNo0aJTiKGsTFtV7O35zHBikkSvZca8qRtaS5eBNasAbZuFZ2k5jk50cveXnQSJke8lU/lWrQAXnuNPjLgr79ocsrQumAUatKEnlLweCim09Hkg6mp4XZSMjGh7mvZ2aKTyIeXF5CQQBfUhnqjdfIk8OabtMr0779Fp2Fy8uuvohPIS0wMvZdYWYlOwuSkoMCwmw/5+AC3b1ODGUNfZXq/5s2BuXNppaGhadiQ69CxsnHx81Jw8XPGDE/hmdAQJyHS0+nC0dmZungyBtCS+1at6Obi1i3RaRiTr4ICmsjWaAz3AceqVVTwevBgfh8p1L07cOoUdTft3190mprXsCGtDtq5E+jaVXQaxuStRQuqR7dihbreR7j4OWOMVZAhTkgVsrEB2rcXnYLJTUAAsGgRbdtiZMgQ2iL/7bdUa8rQ5eTQpL6FhegkYhkb08pCQ/bDD8CePUCdOjwxVSg6mrayWVuLTiLGnj1UGN/cXHQSxuQtNZXqAAOGe74AuMaUwYiO5iKld+5QQbk//xSdhDEmd3/8AYwYQdt/DZWLC3Vd8/ERnUQ+Tp+mlWRcMwV4/XWqv2bI/0ZYsb59qXSEn5/oJPJx8CA1V2nVSnQSMZydeVKqNKdPA1FRtP3XEI0bB/TrB4SFiU4iH+bmtLLwt9/oYbGh4okpA7B9O9VLGTZMdBKxwsOB998HJk4UnUSc27dpLBhi6+KybN1KWw8WLhSdRKyICOreuWGD6CTycPAgLac+e1Z0EiYnv/0GrF9PHRsNnbU1kJtLW5UM3bRpwNdf0+oYQzVhArB4MdCmjegk8uHgADRoYNg3muxhnTvTAx9DnZjZsQP491+anGPE3Jy2u77wgugkYvFWPgPQpAlgZASYmQF5eYbbkc7Ghv7Ba7Wik4hja0ur5wAgK4uKfhu6s2epO4qFBTBmjOg04qxcCUyaBPTsaZi1MB703HP05N/Qt2sVFNAF5JYttH3N0J9+t2wpOoF8jBtH58zAQNFJxCooAD7/nFY/vPii6DSMycehQ8DGjVRrytBvuAtlZtKEZWam4TZimjKF/v7BwaKTMLnh4uelUGPx88xM7hbDqBbI6dPUqtXHhyYsDd3p08D+/UBQEPDkk6LTiHP1KvDGG8DQocArr4hOw+RCp6NVlrGxwLZtQI8eohMxJi9ZWcDHH1NnvuXLqcupoSq8xvDyUlfx3sq4ehVYvRqoVw94+mnRacT47jvg7bfpQc/q1aLTyIuhd2xkJZ06BcTH0ySut7foNPpVkXkVnpgqhRonphhjjLHKmDoVSEmhelP164tOI05iIhXz9fLi7UqMlWbUKJqcmzED+PBD0WnEWrWKHvR06ADs2yc6jRiHDtH3oUULXk3I2KO8+iqwZAkwfTo96FAT7srHWCkkybA7rzHGyu/8ecDVlV6Gft747DPRCeTh7Fl68l+/PrVAZ8CRI9RQpFEjXmnJqLvrypVAcrLoJOL5+NBEXVCQ6CTitG3L2+HZw5KTqb6UjQ3g7y86jTx4elLpnTp1RCcRizfyGIgbN+iCumdP0UnEefFFWlr+66+ik4h15w7t7168WHQSeTh/Hrh5k7tsFcrOpgLoKSmik4iTkQE0bkzt39PSRKdhcmFuDrRrBzzxhOgk8nH6NDB/Pq2KMFTZ2fz+UWjYMCAuDpg5U3QS8dq2BX7+mWo3MlZo4UK6H1u/XnQScb7/nh5mfPGF6CTyMX06cOYMrbI0ZDwxZSBsbIC1a6lDX2qq6DRiREfT/l1DLf5eaP16ejP45BOqjWHounalJzaXL4tOIg+dOgEDBhh2d76kJMDFhbqO2dqKTiMf164BJ06ITiFO+/bAgQP8cON+XbsCb75p2I0j5syh5jJvvy06iXhWVgBXwGD30+mAu3dp1wKjbZ1r1wLXr4tOIo6LC9W6NTMTnYTJDW/lMxAuLlSEsH596j5miFavpskpHx/RScQaPpwmHUaN4g5bBQU0+ZCaSqtjGNC7N/07ycsTnUQcb2+axC4o4G18hX75BXjpJcOul8IeFhxM1xaGLDaWbrptbEQnkZe7d6n7mKGeQ/PzDbsQPkDXEZaW9F5aOB4M3ZgxVKOwc2fRScR5/XV6MfYgLn5eCi5+zphhKTwLGuoF9P2ysmjCkjs2svtFRFDtgy5dgM2buZsQY4UKCqgwvrEx4OwsOo08vPgiPQzcs8dwawzVr0+Tlps3A61bi04jjlZLD//Cwgy73hZjZbl6Fejfn84Zf/0lOo3+VWRehW89GGMGT6PhSalClpY8KcUe5u9P9em2bjXcSak33wRatgQ2bhSdRF4kiepYHjwoOokYxsZUv5InpYoZGdFqmd27RScRJzqatoXb24tOIlZYGNVh40kpxkoXEQFcuQKEhopOIh7ffhiQ3Fxg/34qxmhokpOBr78Gfv9ddBL5KCigbkq9e9PYYOxBsbGiE4jx+++05VWNT66qwtDrbZ0/Dxw/DmRmik4iL7t3A7VqcTt4Vuyjj6hz5UcfiU4izo0b9D2oVUt0ErHc3LhsRKG0NODQIZq0NGR37tA11tNPi04iDy1aADt3At9+KzqJeLyVrxRq3cqXmEi1pgDquKWiv9pjnT4NNGtGdYRiYkSnkYfsbLpgiokBfvrJMFt9b94MLFtGBXzfeEN/Xzd0Qyhu7L6BgC4BCO4frL8vXEMSEuh7Eh5Ov7a2Fp2oZo0ZAyxaBEydCnz6qf6+blnj4vK6y7i59yYCuhV/Xs5jKCeHaqcY2sqpM2eog2fz5oCXl/6+blk/azmPgfulpQGurtTqeudOwzpfSBIwcSJdW40dq9+/e2k/f6WPFVZ1FRkXchITQ9dcL78sOok4e/dSbamgIFpJpi9KOy8kJQGOjvTrnBwugq52FZlXkcXE1IIFC/D1118jNjYWTZo0wXfffYeWLVuWefyaNWswdepUREREICgoCLNmzUKfPn2K/r8kSZg2bRp++uknJCcno127dli0aBGCyrmOVK0TUwDt9Xd1pfbOvr6i09Sc0FDg88/povGHHyr5Ncq6qfzrMsK3h8OzhSd82vogLyMP17ZdQ8zJGHi39kbQk0EwszGDmY0ZIvZE4NaBWwjoKo8LzSVLaFXMW29RHQBDM2MGMHkyMHIksHx55b7G5fWXcfXfq3Cq4wSHAAdc/e8qzvx8BtAAkIDA3oFwqecCEwsTJEckI/V2KtybuiOwRyCsnKxg5WyFqGNRiD4aXa6JiZoYF5IEBAYCkZF0o9mxY7X8MbK1Zw9w7BjQrh29KkqSJJxZfgbXt1+ncRHogIjdETiz7EzRuHAKdoJUICE1OhX5mcW95i0dLWFqbYrUyNSiY2v1rAX3Ju4w15oj5VYKUm6mwPMJT9TqWQsWWguYa80ReTgS0ceiy3VuqYrXXwf++APYtIk6OLLyK8gtwKklp3B9x3XYedvBysUKtw7cwvVtxe2ZvFp6wd7fHhkJGYjYHVE0BhoMaQC3xm64e+0uUm6mwKO5BwJ7BsLS0RJWTlaIOhyFW4duwb+zP4KfCgY0QNjGMETsiSgxJqpLTo5hropISSneqpWRQV3pKip0QyjCt4XDtYErnIKdkBqVivDt4Tj/2/min79jHUfkZeQh7XZa0e+zcraCpZMlCnILkHwjuejY2r1rw72ZOywdLZFyMwXJEcnwbuONOv3qwNLREpGHIhF5KLLG3lskibfKV0bhtYVzXWc4BTkhLSYNEbsjcHHVxaKftVdrL+jydIg5WfzE1b+LP1wauMDc1hypUalIjUqFWxM3+Hf2h7mdOWJPxSLufBz8O/uj3tP1YGptCiNjo2q9tkhOBkJCaGJ/xQrDXV25ZQswejRQty79ujJCN4Tixq4bcGviBue6zri87jIOzz5cNCb8u/jDxs0GyRHJiDoSVfR5v05+cKrjBBNLE6RGpSIjLgPuTd1Rq1stWDlbIe5cHGLPxMKvox+CBwTD2NQYxmbGCNsUpvdxodMB33xDk1MvvmiY7x2GRFETU6tWrcKIESPwww8/oFWrVpg7dy7WrFmD0NBQuLq6PnT8oUOH0LFjR8yYMQP9+vXDH3/8gVmzZuHUqVNo2LAhAGDWrFmYMWMGfvnlFwQEBGDq1Kk4f/48Ll26BItytKRT88QUK5/CE797U3c41nbEpbWXcHTu0RI3lbp8HdKi05Cflf/Yr1caS0dLmFiYIC26+ELTua4zLOwtkHknE3ev3i36vF8nP7g2coWFvQXSbqchPTYdvh180XBoQ9h62iJ8a7gsn4rI3enT1P69Th2gV69HH3tx1UVcWncJNm42MLE0wd2wu7h94jbSotIe/RsryMzODKYWpsiIzyj6nHuIO+x87JB1JwuRhyKLxmHzMc0R2CMQd8LuIPFyImr3ro36g+tDc+8uoCoXmidP0oo67qLzaOd+O4fL6y7DwsECGo0GCRcTEHs2ttLnBX1wrO0IS0dL3D52u2isdJjcAcEDgmHjYYPoY9G4eeBmpcbFyJHAr7/qfzWZ2t5ZMgABAABJREFUmkg6CccWHsO1f6/BzNYMunwdEi8nIjEsEdCJyeQQ6ACX+i6w8bBBTmoOMhMy4d3aG3UH1oWtpy2sXa1xdfNVfh+poORk4MsvaQXATz89/vgLKy/gyvorsHK2gpGpESJ2RyDubFy15yyLnY8d7P3sUZBbUPJ8MbUDGjzXAPEX4nH72O1KjYnMTODjj4F//6X3k8pM2inVyZM08dCsGfDkk48+VpIknPzhJMI2h8FCawFJJyHycCRSIlJqJiwAYzNjFOQWFP23bwdfeDb3hI2HDdJj0pF8Mxn+XfzR+PnGsHCwQNjGik9WfPghsG4dfV8MfXtjeSZrr/xzBWEbw6D108LK2Qp3wu7g1v5bJSYha5pzfWe41HVBbkYuspOz4fGEB4KfCoadjx20PlpE7Imo1HuIJNG51FCvN//7jz62bAk4OYnNUh0UNTHVqlUrtGjRAt9//z0AQKfTwcfHB2+99RY+/PDDh44fMmQIMjIysGnTpqLPtW7dGiEhIfjhhx8gSRI8PT3x3nvvYcKECQCAlJQUuLm5Yfny5Rg6dOhjM/HElOEonIBybeAKa3drxJ+Px7Ut13Br/61KfT1jc2MYmxojN724aJOJpQk0Gg3yMvP0FfuR6j5TF0G9g+AQ6ICk8CTEn48vsRKHPV7ohlBc23oN1i7WyM/Jx5V1V3An7M5jf5+Nhw0cAh0QeSCSKvjpgAZDG8De3x7hW8MReyYWkABoAGsXa5hY0sSkLk9/d6tGZkaw9bCFsZkxTW7eu9Fo+nJTBHQLgLWrNRIuJ+DOlTsI7BnI46ICQjeEIuxfunnIzchF2MYwWtn0GFpfLbR+Wjqv3Pt5tPuwHYL6BCH+fDw2j90MjbEGUoGEnt/0RF5mHnZP3Q2NkQaSTkLDYQ1h42GD8K3hSLiUQGMIgIWDBUzMTZCRkAGpoHJv5bV61EKt7rWQlZSF1KhUBPcPRoPnGpR5/IULtDqmaVPDKpKfmUnbUFxdS64gDN0Qihs7b0DrqwU0wM19N3Fj540S7wGl0gAuDVzg2tAVF1deLPpZtxjbAs51nRF9Mhpnl58tXgXTpzZSbqaU+PlbOlnC2MwYGXEZkHRVvJS79+cUqvdsPdTuVRtpMWlIvpGMOv3qoN7T9R77ZXh1DCm8tnBp4AJTS1PcOngL1/67hpSbj55ssHC0gOcTnpB0Em7svFE0LtpPbg9TS1M6L9w7V/T4uge8Wnrhxq4b2Dt9b9GxDYY2gLWLNa5vv47E0MSin6uJpQnys/NL/Jwrwqe9D/w7+cMxyBHpselIvp6M2n1qo+6AuqUeL0k0ARERQR36nnuucn+uEn37LTB+PDB0KNXyLFQ4LhxqOdD5Yu9NhG8LR27ao88X1m7W8G7ljfycfIRvDS+6vmj+RnMYmRjh2HfHin7+TUY2gdZXi7CNYYg9W3zNYeNmg4LcAmTdzarS383IxAi6/OJrlsYjGqPeoHpwCnZC4qXEMh96SFLJFYasWOG4cA52hsZYg3O/nSvXfYiZrRnsfOyQeCmx6BzeeERjeDT1QGJoIk7+cLJ4XLzUBI6BjgjdEIroE9ElxkVeVh5yUnL0+neq/1x9BPUNQkZcBpKuJyGoT1CZ15vffUc7GH75BejRQ68xFKFxY6phuWVLyYfkct2KWVGKmZjKzc2FlZUV1q5di4EDBxZ9fuTIkUhOTsY///zz0O/x9fXF+PHj8c477xR9btq0aVi/fj3Onj2L69evIzAwEKdPn0ZISEjRMZ06dUJISAjmzZv32FxqmZjaM30PwreGw6W+C7xbe8PM1gzmtuaIPRuLI3tyUb+NHUL6egIAsrKBvWvv4O6VBLTraQm/jn4AgEN/x+L6iRTUb2OLZv3o2JxcYPfqO0i8koAO9x17ZH0srh1PQd3Wtmj+FB2bnw/sWEmrOdr3tIB/Jzr2dqwxzu+IR0FEFBp2tIdfRz/odMC2P+jYtj0sUKszHRsdZ4Rz2xOQd+M2GnfSFv15W36jY9t0t0RgF9qXGJtghDNbE5Bz/TZCOhcfu/WPRBhHXIdHoDVs3G2QEpmC6GPRtMz1McxszWDvb4/48/EP31ReiMfmMcU3lUP/oYnPlQNWlvhccP9gXF5/GasHrS6+Af22J/Kz8rFr8q7ii89J7eHd2hu3j9/G/s/3F7+hjGoCOy87hG0MQ9y5uKILy8KvVR4ezTzg3dYbeZl5tIQ3xB2+7X1hbGaM0FvmmPGNOQJNo/DKCxnw6+hX9HO+cyUB7e/7Od+6bYxLu+OhuxmJBh0c4NfRD3n5wMUwU8SeioV9/FV4NPeAX0c/RMUY48LOkj/nggLgfCgdaxt7Fd4t6djin3MUGneiYyUJOHuZjrWJvQaflu7w6+hX9HPOvX4bTe77OZ+7bIrok7GwjgmHbys3+HX0Q3yiEaLjjZFxJRLGERFF2S6EmiLqeCzMI6/Cxd8G1q7WSI1KRfTxaHpyXBYN4NbYDc1eaYbMO5nY+8neh37WoRtCEbEngrbV3LetqrRx8eDne8/vjfzsfOyYuKPo59/qnVZwbeCK28dv49SPp4rGoWcLT6REpiAjNqPsvI/h0sAFXq28UJBXQOOiyb1xYW4MEwsTXDsQg5N7s/BEZyvU6+FD3+f/buPcgXT4NrVHx2fdir7W7lUJuH3uLpp1skb9nt4AgPNbonB2fwa8mzig8+DiVbB7Vscj6mwSQjpao2EvOjY1XYND6xORGhaHVt2ti36u+9bG49bpJDRub4PGT1Jxn4xMDfavS0RyWBza3Hfs/r/icPNUMhq2s0FIHzo2K1uDvWsTkRQaj7Y9rIqOPbguFjdOpqBBW1s0vXcuzM4Bfl2QAc+Uy/AONIONixVSIlMQeyoWMace8aRSQ9uwWr/bGhnxGdjy9pZyjYvCsVHaeKnsGGo/uT2yk7JxYtGJ4q1AtR2Rn5OP1Nupj121Y+loCddGrnAMckRBbgHSY9Lh1tgNvu19YWJpgphTMYg7F4d0jyC4NPFAcK18WFpIuLnvJq4cuAPJ1w91Orihlh+tGru57yYO78iAfR03dHjaGdZWdGzYwTso8PFD7fZuqO1ffOzRHRmwq+OGdgOdYWtDx147lIg8b3/UauuGOrWKjz22Mx22Qe5o3d8Z9nZ0bPjhBOR6BcC/jRvqBhYfe2JXOqxru6NVPxc42NM34fL2SJzckwmPRo7oNtSl6NhTu9NgGeiBFn1d4OSgw9UbJugyxA3Wpjn4c+Q2mNmZIepQ1OPfQzSAX0c/dPioA1KjUrHhfxsqPS7K+vlf+ecKVg1cVfT5QSsGAQD+Hv530ec6fNQBWl8tTv98ms5v9942TK1NkZ+VX66JLSsXK7g2cIV9gD3yc/KRHp0O18au8G3vi3xjc4z5yAEnrmqx5fMTqNONzhWXwkxw61gcLKKvI6C1K/w6+uFushGObUpAxrUYNO9qW/Tv8fI1E9w8Egfz2zdQq40L/Dr6ITlVg4goE6RcvA3zyOtF5+/QcBPcOBwH06gI1G7rDL+OfkhN1+D6LRMkXbgNy6jiY6/eMEH4wTgYR0agTjs6Nj1Dg2s3TXD3fDSsbocXHXv9pgnC9sfBKPImgts5wa+jHzKzNAi7YYLEc9GwiS4+9kakMVLSjCCFRyDtTDhsPW1h6WSJ20du48auG4/9fro3dYdPWx8cX3D8oZ9paT//sj73qGMfHC+SJJUYK10+6wLnus64sfsGTiwsPl/Y17JHWnQaCrILHsr9IIdaDvBs7glJkpCVlEXXFu3oPeS/Q1pk3LyDgOwrcH/CHRnugTDSAI3r5eHmvpuIOREDKcAflsE+cHcpQM7lG4g5EQOXpp5IcwsEAITULz5WU8sf5nV84OpUgLxQOta1mQdSXWsDABoF5yHqIB1rXNsPprV94eKoQ37YdcSciIH7Ex5IdqFjG9TJQ/QhOtYkyBcmgX5wstfBx7Og6M9Lca8NtxAP1Kudh9gj9DmzOr4wquUHB60Ofl7Fx6Z51L53PszDxhUp2LjdEiHBWRjSNw1p0Wm4ffQ2bc99FA3g09YH/p39sf+L/VUaF6X9/IGS16fPrXkO/p39ceXvK9j42saia46QUSGwdLJE2KYw3Lny+IdypfHv4g+/jn700CMyFe4h7vBp5wONkQYajQY71ibhyqksDBygg18HP0ADHN0Qh/CTqajb2g7Nn/IAUPZ9RHScMc5tj0f+jSg06vTwfUSb7hYI7ELHxsQb4ey2su8jWnezRO2udB8Rl2iE01sevo/Y9kci4i/eQcuulqjTjY5NuGOEk/8lICs8Gs262BUdezHMFJHHYmEZfR3+9857d5KMcPzfBFjfDoNzbXto/bTIiM/A7WO3cW3ztUd+L+0D7FF3UF3kZ+fjxMITVb62KM+4COwZiNANoSXeR9q+3xbRJ6IRsSeiaGLL0tESUoGE7OTsx44JxyBHeLfyhmOQI3JSc5B8MxkuTdzx9opWuBBmjunj7qKL20XEno5Fvl8AbIK94e1RgMwLEYg5HQPHxl7IdK8FExOgYXBe0QqyAn9/WNf1gadrAbIu0XnBKcSz1PMNavnDog6db9xddLi57yYij8Ui3Z22QDepl4db+++dbwL9YB7kC1enAni60bFRx2KQ5h4E92bupZ5vnB108PYoPi8ku9KxpZ1vHLU6+HoVYNTrZgi7boIpgy6iQSNjpMelI/p4NCJ2RxT9m7z/HKA0ipmYio6OhpeXFw4dOoQ2bdoUfX7ixInYu3cvjh49+tDvMTMzwy+//IJhw4YVfW7hwoWYPn064uLicOjQIbRr1w7R0dHw8PAoOmbw4MHQaDRYtWrVQ18zJycHOTnFM8Wpqanw8fFR9MRU4YnnQXkwxlK8jFh4oA82oyWOAwAS4IwFGAtLZOIDfF10/DoMxDk0QU9sRVscAQAkww5z8S5MkIcp+LLo2I3oh5N4Al2wG52wDwCQCUt8hYkAgI8xvagN5Bb0xBG0QXscQHfsvJfNBF+AWrhMwgyYg54g7UIX7ENHtMRR9EHxpuxP8DEADSZgNmxAN+b70R470Q1NcRoDsOG+Y6fBEpnoie1oijOlfs+snK0Q2CuQnlb8ek7vN5X6Ovb+N48h64cgNy2X3jjunbxq96kN6IDII5HISS7fE5DC71tH7ENXUH/nJNhjHsbBFLn4CDOKjt2Ap3AKzdAVO9ERBwAA6bDCbLx/73s9vejY/9AbR9EKHbAf3bALAJALU3yJyQCAyfgCZqAbxx3oigPogNY4gt7YCoDe96ZjGgDgfXwNa1A7rH3ogF3oimY4if4oXj35OSYjH6Z4B3NhD3oyfRitsRW90Ajn8Az+Ljr2K0xAJqwxBgvgisQyvzcu9V0Q0CMAx+YdK/dFYlmqY1w8OCb6Le4Ht8ZuCN0YigNfHii60fBp7wNjU2PEnY0r9xPTaLhjPzrgMurjFSyBN2jC7jwa4i88gwBcx0isKDp+Ad5AAlwxAr+gFiIAAFdQBysxDN6IxCsobgn6E17GbXhjGP5AMK4CAMIRgBUYAVfEYQyKi8EtxwhEIADPYi0a4iIAIBLeWIqX4YC7GIfvio79HcNwFXXQH/+g2b1/67FwxQ94AzZIwwTMKTp2DZ7BRTTEk9iMVg+cCwHgQ8yABUp/ku0W4obavWvj4MyDVR4XFVHVMXRl/RWsGrSqxOqK2DOxlbr5+BrvIQM2GI1FcEc8AOAUQrABA1AHoXgexe9B8/AWkuCIl7EEPkXjqAH+wrPwxw28hF+Ljl2I0YiHG0bgV9QC3eCHog7+xDB4IQqvYmnRsYXjaCj+RF1QNdnr8MevGPnQOPoFw3EDtfAM1qJR0TjywlK8Ansk4R3MLzr2DwxFGILRHxvQDKcRDxdsRD+YIRfDUXp7V/sAezR/ozkA0MRyNYyL6pjcDOobhHO/ncM/L/1T/D7yZG0kXE4o93YiCcA3GA97JGMoVhW9J8/BO0iFFq/hR3iCJnbPojH+xiAE4lqJ7+X3GINEuOAlLIM/aLXAJdTFagyBL27if1hedOxivIoYeOIF/I4g0E3dNQTiN7wId8RgNH4sOvZnvIRb8MNgrEZ9XAYA3IQvlmEUnJCIt7Cg6Njf8DyuIQgD8TdCcA4AnQd/xOuwQwrGY27RsavwHC6jPvriX7TAiTK/N9bu1mj0fCMYmxmXer6ornMFoN/3liajmsDE3ARX/71arpWiDyrrmuIfPIXTFb6m2Idu965VcmCKGZW6pvgK1qD3wr3ogN1VvKaYhfeRBavHXlMU0vpp8cRrT0BjrMHOD3dWy7jQ9zXnc2ueQ3ZSdolJLN8OvsjLzEPcubhyr/6+CR/8jheQCzN8guI94ZvQByfQAp2xB52xFwCQBQvMwgcAgKn4FMb3ZtW3ogcOoy3a4iB6YgcAIB9G+BxTAQAfYiYsQNfAu9EZe9EJLXAMffFf0Z83HVMhwQjj8Q3skA4AOIC22IEeCMFpDLzvPmIGPkAOLPAW5sMJSQCAo2iB/9AH9XERg7G26NjZGI902GI0foA7aKvuaYTgHwxAfVxEN+ws+hoPsvWyhW8HX1pJW03XFvo8LxRmu7jqItYOXVs0LgJ7ByLhYkK5zhW5MMEZNEULHEfhgtuVGIwrqId+2IjmOAUAiIczFmIsrJCBiZhd9Pv/wiCcR2P0wla0KbpX1WIu3nnoXnUD+uEUnkBX7EJH7AcAZMAKX98730zD9KIMW9ALR9Aa7bEf3YvuYUzw5b171cn4Emag3TA70RX70QGtcBRPlrhXpfPNBHwNm6J7mPbYhW5ohlPoj42P/f5ojDVo9XYr9JrzmJojMlWRiSmTGsokazNmzMD06dMff6CC3NhdvAQcGsDe3x5aXy0SLyfCJz4SWbCEBbJhZmsGS0dLpCUaQ5uRDAvQjLeZLbVIsErLghbJMEdO0bFZ9441uffmX3isZVrmvWOLv27BHQna9OSiXIWft4nJgza35J+nkYzvO1YqOtY6Ng/anGRY3ruAKPzz7NOSIUEDTYlj8+8dm1niWJe0eJggH764CadgJ9QdWBdZSVk49eOpopNr/6X9i07G9Z+p/9AJOrh/cKlvAqV9vjqPHfrP0IeymduZP/aCovmY5rh97DbtT783HW3lYgVrV2t0jDqH6ykBsL/3RmlmawZzHf2cTe+ddIt/djn3fnY5RZ/Xam1hfzsZ909zm9mawSYn96Gfs6W9Leyj6FhNiWMLx0Txz9nCwRL2kYXHSkWft86ln7PVfcdaOlrCPjIVeTpjaO4tCTGzNYO9qRHsk5JhJWWVyGafkQZTXR6M7x3rXN8Z9QbVQ+adTFr+fO/71m1GNwT3D0atrrVKfdMu6+dXmuoYF2WNCe/W3vBu5f3YcdH6vdaIOhiFqKNRRePCxt0GNu42yLgOJKU6QItkGKOg6N+TaVoutEiGDdKLzwt3s2CbloZcmMEE+fcdm1/qsTZp6dAiGab3jrV0tIRlvAbarGTYIq3o5wTgvmPzio5NSNBAm5kMO6SWONY6LQNaJMMMuUXHJicYQ5uZDOt7N8vF57fCc1bxsRmJGmgzkhGEa7DQ5MK1gSvqP1cfmYmZtF2icKXB9C4I7h8MnzY+VR4XFVHVMVR3YN2HxsuDY6L7V91h62mLY98dK7G6xsbdBroCHTIT6PyqRQpMNfmw97CCWZoZctNyYQYaG7am2dB6apF1Nwu5abmwRRp0MIKllRHMjAuPzYMWybAzyYLWq+SxOTCHpSVgZkLHmtw7VmuS8dCxWiQ/cCyNOa1xBrTexcdag8aGlaUErSt93iStgDIgtWhclDjWQgetmxZmd1Pwctoy+kZoaLWLZzNPnFpS/B7Se27vou+3c7BztYyLqv78yzpfhIwMgaWD5SPHRbeZ3WDnZYfjC4/TSrF7T8xtPW2hy9OhY/x+xMMFNsi475ycBo1OgjFo5Y2ZrRks83TQZpf892jpaAm7qAzkFZjC5L5j7S3NYJ+QDBspvejvYGZrBrvMTGQWJMPkvvcnrZU57OOTYSullTw2KxPa/JLvZVprC9jHPXysbVY2tPnJRTcbZrZmsLexgn1sMmweONZeyod9RjLMpHsPgO6tpnVt7IrzK84XXYM9tfipou9zaeeL6jpXlPW1q/re8uC46DC5A24euElbjwrPFR42sPWwRXJEctGDECPoYK9JhrlJAcwszIq2r1khC/aaZFib5QNF30oJ9ppkaIyMYGZVfKzlvWNtzPLuOxZFx5pbmkFKp2tTC2TT1zXNxf3PF4qPNQXSs+4dmwN7TTIcbHUwk4r/PC1SUKAxgbmVCe4NV5gXHmtTADOUPNZckwsLK+OiYwFaJVL7ydrITs6mh573xsWT858s+p661HOplnFRXdec1m7WDz/0KFy5ee/v12h4I8SdjkP8xfgS249t3G2QdzsDvsm3cBfUms1caw5IgGVq1kP3Ebo7ukfeR1jed31pJBlV+D5CByMYlTi2oNRjtWkpyEE2jKArPjau8FyWWSKbfWQajHUFMLrvXGZ177yXBUvYIQ0OgQ4I6BaA7KRsXFpzqej71ndhXwT3D0ajYY2q7dqiOs4LDYY0gImlySPfQ9p90A4W9hY4t+IcbUu/x87BBE+6XkdGvAWyk+jnaYVM2GtSYG0h4d6PAsbQwV6TAhvTHJhbmCMnNefesaWdQ+h8Y2asg5nlw+cbe3sNzPLp8xpI0CIZGg1gZm2GvHtb8S0Kj9UCZgWFx+K+Y02B9Lx7x9L5xt5OBzPd/ecFOtbcyrTovFB4vrG3LShxvgGohnHtJ2sj604Wzq0oXiTh39m/oj9mReKtfFD3iqnHbfl41OeB0rekVfXYmv7zyjq28PtUXU8q5aC8TzrU8jPVR7bSvm9qU1PjoiLHyn0MlfZ9U5PKLvlX8s9UX19DrWMCqJ5xUZFjlTiGDHFcyPmasyLH8jVn1fA1J4+LB5X3PUTuPye+5qw8xWzlA6j4ecuWLfHdd7QVQ6fTwdfXF2+++WaZxc8zMzOxcWPx0re2bduicePGJYqfT5gwAe+99x4A+oa4uroaXPHziizXLevz1XVsTf95avnHrQ9q/5nyuKgcJf6cajqbIVL7z5THReUo7edU09kMkdp/pnxtUTlK/DnxNWf1U+LPia85K0dRE1OrVq3CyJEjsXjxYrRs2RJz587F6tWrceXKFbi5uWHEiBHw8vLCjBkzAACHDh1Cp06dMHPmTPTt2xcrV67El19+iVOnTqFhw4YAgFmzZmHmzJn45ZdfEBAQgKlTp+LcuXO4dOkSLCwsHptJLRNTjDHGGGOMMcYYYzVNUTWmhgwZgoSEBHz88ceIjY1FSEgItmzZAjc3NwDArVu3YHRfT+q2bdvijz/+wJQpUzB58mQEBQVh/fr1RZNSABVPz8jIwGuvvYbk5GS0b98eW7ZsKdekFGOMMcYYY4wxxhirGcJXTMkRr5hijDHGGGOMMcYYq5yKzKsYPfL/MsYYY4wxxhhjjDFWTXhiijHGGGOMMcYYY4wJwRNTjDHGGGOMMcYYY0wInphijDHGGGOMMcYYY0LwxBRjjDHGGGOMMcYYE4InphhjjDHGGGOMMcaYEDwxxRhjjDHGGGOMMcaE4IkpxhhjjDHGGGOMMSYET0wxxhhjjDHGGGOMMSF4YooxxhhjjDHGGGOMCcETU4wxxhhjjDHGGGNMCJ6YYowxxhhjjDHGGGNCmIgOIEeSJAEAUlNTBSdhjDHGGGOMMcYYU5bC+ZTC+ZVH4YmpUqSlpQEAfHx8BCdhjDHGGGOMMcYYU6a0tDRotdpHHqORyjN9ZWB0Oh2io6Nha2sLjUYjOk65pKamwsfHB5GRkbCzsxMdh8kEjwtWGh4X7EE8JlhpeFyw0vC4YKXhccEexGOCSZKEtLQ0eHp6wsjo0VWkeMVUKYyMjODt7S06RqXY2dnxP3z2EB4XrDQ8LtiDeEyw0vC4YKXhccFKw+OCPYjHhGF73EqpQlz8nDHGGGOMMcYYY4wJwRNTjDHGGGOMMcYYY0wInphSCXNzc0ybNg3m5uaiozAZ4XHBSsPjgj2IxwQrDY8LVhoeF6w0PC7Yg3hMsIrg4ueMMcYYY4wxxhhjTAheMcUYY4wxxhhjjDHGhOCJKcYYY4wxxhhjjDEmBE9MMcYYY4wxxhhjjDEheGKKMcYYY4wxxhhjjAnBE1MVNGPGDLRo0QK2trZwdXXFwIEDERoaWuKY7OxsjB07Fk5OTrCxscEzzzyDuLi4ov9/9uxZDBs2DD4+PrC0tES9evUwb968El9j3bp16NGjB1xcXGBnZ4c2bdpg69atj80nSRI+/vhjeHh4wNLSEt27d8fVq1dLHBMWFoYBAwbA2dkZdnZ2aN++PXbv3v3Yr33u3Dl06NABFhYW8PHxwVdffVXi///000/o0KEDHBwc4ODggO7du+PYsWOP/bpqwOOi7HGxbt06NG/eHPb29rC2tkZISAhWrFjx2K+rBjwuyh4X91u5ciU0Gg0GDhz42K+rdDwmyh4Ty5cvh0ajKfGysLB47NdVAx4Xjz5XJCcnY+zYsfDw8IC5uTnq1KmDzZs3P/ZrKx2Pi7LHRefOnR86X2g0GvTt2/exX1vpeFw8+nwxd+5cBAcHw9LSEj4+Pnj33XeRnZ392K+tZDwmyh4TeXl5+PTTTxEYGAgLCws0adIEW7ZseezXZQJIrEJ69eolLVu2TLpw4YJ05swZqU+fPpKvr6+Unp5edMzo0aMlHx8faefOndKJEyek1q1bS23bti36/0uXLpXefvttac+ePVJ4eLi0YsUKydLSUvruu++Kjhk3bpw0a9Ys6dixY1JYWJg0adIkydTUVDp16tQj882cOVPSarXS+vXrpbNnz0r9+/eXAgICpKysrKJjgoKCpD59+khnz56VwsLCpDFjxkhWVlZSTExMmV83JSVFcnNzk1544QXpwoUL0p9//ilZWlpKixcvLjrm+eeflxYsWCCdPn1aunz5svTSSy9JWq1WioqKqtD3WIl4XJQ9Lnbv3i2tW7dOunTpknTt2jVp7ty5krGxsbRly5YKfY+ViMdF2eOi0I0bNyQvLy+pQ4cO0oABA8rzbVU0HhNlj4lly5ZJdnZ2UkxMTNErNja2Qt9fpeJxUfa4yMnJkZo3by716dNHOnDggHTjxg1pz5490pkzZyr0PVYiHhdlj4s7d+6UOFdcuHBBMjY2lpYtW1aRb7Ei8bgoe1z8/vvvkrm5ufT7779LN27ckLZu3Sp5eHhI7777boW+x0rDY6LsMTFx4kTJ09NT+vfff6Xw8HBp4cKFkoWFxWMzs5rHE1NVFB8fLwGQ9u7dK0mSJCUnJ0umpqbSmjVrio65fPmyBEA6fPhwmV9nzJgxUpcuXR75Z9WvX1+aPn16mf9fp9NJ7u7u0tdff130ueTkZMnc3Fz6888/JUmSpISEBAmAtG/fvqJjUlNTJQDS9u3by/zaCxculBwcHKScnJyiz33wwQdScHBwmb8nPz9fsrW1lX755ZdH/r3UiMdF2eNCkiSpadOm0pQpUx55jBrxuCg5LvLz86W2bdtKS5YskUaOHGkQE1MP4jFRPCaWLVsmabXaR/4dDAWPi+JxsWjRIqlWrVpSbm7uI/8ehoDHRdnXFt9++61ka2tb4kbcUPC4KB4XY8eOlbp27Vri940fP15q167dI/9easNjonhMeHh4SN9//32J3/f0009LL7zwwiP/Xqzm8Va+KkpJSQEAODo6AgBOnjyJvLw8dO/eveiYunXrwtfXF4cPH37k1yn8GqXR6XRIS0t75DE3btxAbGxsiT9bq9WiVatWRX+2k5MTgoOD8euvvyIjIwP5+flYvHgxXF1d8cQTT5T5tQ8fPoyOHTvCzMys6HO9evVCaGgokpKSSv09mZmZyMvLe2RmteJxUfq4kCQJO3fuRGhoKDp27Fjm11UrHhclx8Wnn34KV1dXvPzyy2V+LbXjMVFyTKSnp8PPzw8+Pj4YMGAALl68WObXVDMeF8XjYsOGDWjTpg3Gjh0LNzc3NGzYEF9++SUKCgrK/LpqxeOi7GvOpUuXYujQobC2ti7z66oVj4vicdG2bVucPHmyqJTI9evXsXnzZvTp06fMr6tGPCaKx0ROTs5DZQEsLS1x4MCBMr8uE8NEdAAl0+l0eOedd9CuXTs0bNgQABAbGwszMzPY29uXONbNzQ2xsbGlfp1Dhw5h1apV+Pfff8v8s2bPno309HQMHjy4zGMKv76bm1uZf7ZGo8GOHTswcOBA2NrawsjICK6urtiyZQscHBwe+bUDAgIe+rqF/6+03/vBBx/A09OzxInIEPC4eHhcpKSkwMvLCzk5OTA2NsbChQvRo0ePMr+uGvG4KDkuDhw4gKVLl+LMmTNlfh214zFRckwEBwfj559/RuPGjZGSkoLZs2ejbdu2uHjxIry9vcv82mrD46LkuLh+/Tp27dqFF154AZs3b8a1a9cwZswY5OXlYdq0aWV+bbXhcVH2NeexY8dw4cIFLF26tMyvqVY8LkqOi+effx6JiYlo3749JElCfn4+Ro8ejcmTJ5f5ddWGx0TJMdGrVy/MmTMHHTt2RGBgIHbu3Il169YZ5MMNueMVU1UwduxYXLhwAStXrqz017hw4QIGDBiAadOmoWfPnqUe88cff2D69OlYvXo1XF1dAQC///47bGxsil779+8v158nSRLGjh0LV1dX7N+/H8eOHcPAgQPx1FNPISYmBgDQoEGDoq/75JNPVurvNXPmTKxcuRJ///23wRSvLcTj4mG2trY4c+YMjh8/ji+++ALjx4/Hnj17KvQ1lI7HRbG0tDQMHz4cP/30E5ydncv1e9SIx0RJbdq0wYgRIxASEoJOnTph3bp1cHFxweLFi8v9NdSAx0VJOp0Orq6u+PHHH/HEE09gyJAh+Oijj/DDDz+U+2uoAY+Lsi1duhSNGjVCy5YtK/X7lYzHRUl79uzBl19+iYULF+LUqVNYt24d/v33X3z22Wfl/hpKx2OipHnz5iEoKAh169aFmZkZ3nzzTYwaNQpGRjwNIjui9hAq3dixYyVvb2/p+vXrJT6/c+dOCYCUlJRU4vO+vr7SnDlzSnzu4sWLkqurqzR58uQy/5zCIm6bNm0q8fnU1FTp6tWrRa/MzEwpPDxcAiCdPn26xLEdO3aU3n77bUmSJGnHjh2SkZGRlJKSUuKY2rVrSzNmzJAkSZIiIiKKvm5h4fLhw4c/VP9l165dEgDp7t27JT7/9ddfS1qtVjp+/HiZfy+14nFR9ri438svvyz17NmzzP+vNjwuSo6L06dPSwAkY2PjopdGo5E0Go1kbGwsXbt2rcy/o1rwmCjfueLZZ5+Vhg4dWub/VxseFw+Pi44dO0rdunUrcczmzZslACXqiqgZj4uyzxfp6emSnZ2dNHfu3DL/XmrF4+LhcdG+fXtpwoQJJY4pLOJdUFBQ5t9RLXhMlH2uyMrKkqKioiSdTidNnDhRql+/fpl/PyYGT0xVkE6nk8aOHSt5enpKYWFhD/3/wuJya9euLfrclStXHioud+HCBcnV1VV6//33y/yz/vjjD8nCwkJav359ubO5u7tLs2fPLvpcSkpKieJyGzZskIyMjKS0tLQSv7dOnTrSF198UebXLiwud3/x0UmTJj1UiHLWrFmSnZ3dIwvpqRGPi0ePiweNGjVK6tSpU7nyKxmPi9LHRVZWlnT+/PkSrwEDBkhdu3aVzp8/r+qbTR4T5T9X5OfnS8HBwarvpiRJPC4eNS4mTZok+fn5lbipnDt3ruTh4VGu/ErG4+Lx54tly5ZJ5ubmUmJiYrlyqwGPi7LHRbNmzaSJEyc+9HewtLSU8vPzy/V3UCIeE+W/tsjNzZUCAwOlSZMmlSs/qzk8MVVBb7zxhqTVaqU9e/aUaFObmZlZdMzo0aMlX19fadeuXdKJEyekNm3aSG3atCn6/+fPn5dcXFykF198scTXiI+PLzrm999/l0xMTKQFCxaUOCY5OfmR+WbOnCnZ29tL//zzj3Tu3DlpwIABJdpxJiQkSE5OTtLTTz8tnTlzRgoNDZUmTJggmZqaPrL1cnJysuTm5iYNHz5cunDhgrRy5UrJysqqRDvOmTNnSmZmZtLatWtLZH7wJKNGPC7KHhdffvmltG3bNik8PFy6dOmSNHv2bMnExET66aefKvx9VhoeF2WPiwcZSlc+HhNlj4np06dLW7dulcLDw6WTJ09KQ4cOlSwsLKSLFy9W+PusNDwuyh4Xt27dkmxtbaU333xTCg0NlTZt2iS5urpKn3/+eYW/z0rD4+Lx7yHt27eXhgwZUu7vqRrwuCh7XEybNk2ytbWV/vzzT+n69evStm3bpMDAQGnw4MEV/j4rCY+JssfEkSNHpL/++ksKDw+X9u3bJ3Xt2lUKCAh4aPUYE48npioIQKmvZcuWFR2TlZUljRkzRnJwcJCsrKykQYMGSTExMUX/f9q0aaV+DT8/v6JjOnXqVOoxI0eOfGQ+nU4nTZ06VXJzc5PMzc2lbt26SaGhoSWOOX78uNSzZ0/J0dFRsrW1lVq3bi1t3rz5sX/3s2fPSu3bt5fMzc0lLy8vaebMmSX+v5+fX6mZp02b9tivrXQ8LsoeFx999JFUu3ZtycLCQnJwcJDatGkjrVy58rFfVw14XJQ9Lh5kKBNTPCbKHhPvvPOO5OvrK5mZmUlubm5Snz59pFOnTj3266oBj4tHnysOHToktWrVSjI3N5dq1aolffHFF6pe/VCIx8Wjx0Xhio9t27Y99uupCY+LssdFXl6e9Mknn0iBgYGShYWF5OPjI40ZM0b1kxA8JsoeE3v27JHq1asnmZubS05OTtLw4cOl27dvP/brspqnkSRJAmOMMcYYY4wxxhhjNYzL0TPGGGOMMcYYY4wxIXhiijHGGGOMMcYYY4wJwRNTjDHGGGOMMcYYY0wInphijDHGGGP/Z+++w6I4/j+Av4/eD2kCgoBSBBU7ikZRo0EsYGJsMbGb2EvUqIkFTYzGEmMSYzRRMJYQu8bYCxbsBRvYKUZBFKR3mN8f/NivJ70emvfree5JbnZ25rN7e6v3cWaWiIiISCmYmCIiIiIiIiIiIqVgYoqIiIiIiIiIiJSCiSkiIiIiIiIiIlIKJqaIiIiIiIiIiEgpmJgiIiIiIiIiIiKlYGKKiIiIiIiIiIiUgokpIiIiIiIiIiJSCiamiIiIiIiIiIhIKZiYIiIiIiIiIiIipWBiioiIiIiIiIiIlIKJKSIiIiIiIiIiUgompoiIiIiIiIiISCmYmCIiIiIiIiIiIqVgYoqIiIiogjp27IiOHTtK78PDwyGTyeDv718lfTVq1KjS2yXl8Pf3h0wmQ3h4uLJDISIiUgompoiIiKpZ/g/R/JeWlhYsLS3h6emJH3/8EUlJScoOsUL2798PX19fZYdBRERERG8AJqaIiIiUZMGCBdi4cSNWr16NCRMmAAAmT56Mxo0b48aNG0qOrvz279+P+fPnKzsMpbKxsUFaWho++eQTZYdCNdwnn3yCtLQ02NjYKDsUIiIipVBTdgBERET/VV5eXmjZsqX0ftasWTh+/Dh69uwJb29vhIaGQltbW4kRVr3s7Gzk5uZCQ0ND2aFUqvyRcG+qt/VzqUlSUlKgq6sLVVVVqKqqKjscIiIipeGIKSIiohqkc+fOmDNnDiIiIrBp0yaFbcePH0f79u2hq6sLQ0ND+Pj4IDQ0VNp+48YNyGQy7N27Vyq7cuUKZDIZmjdvrtCWl5cXWrduLb23tbVFz549cebMGbi5uUFLSwv16tXDH3/8obBfVlYW5s+fDwcHB2hpacHY2BjvvPMOjhw5AgAYOnQoVq1aBQAK0xWB/627tGzZMvzwww+oX78+NDU1ERISAgC4c+cOPvzwQxgZGUFLSwstW7ZUOBYAiIuLw7Rp09C4cWPo6enBwMAAXl5euH79ukK9wMBAyGQybN26FfPnz0edOnWgr6+PDz/8EAkJCcjIyMDkyZNhZmYGPT09DBs2DBkZGaX6jNauXYv69etDW1sbbm5uOH36dIE6ha0xFR0djWHDhsHKygqampqwsLCAj49PgbWFDhw4AA8PD+jr68PAwACtWrXCli1bCvQREhKCTp06QUdHB3Xq1MGSJUsUtmdmZmLu3Llo0aIF5HI5dHV10b59e5w4caLQWIv6XAIDA9GyZUtoaWmhfv36WLNmDXx9faXP9VWbNm1CixYtoK2tDSMjIwwYMACPHz8u1Xl98uQJRowYAUtLS2hqasLOzg5jxoxBZmamVOfRo0fo27cvjIyMoKOjgzZt2uCff/5RaKcyPnuZTIbx48dj8+bNcHJygpaWFlq0aIFTp04p1IuIiMDYsWPh5OQEbW1tGBsbo2/fvgU+0/zpuydPnsTYsWNhZmYGKysrhW2v7nP58mV4enrCxMQE2trasLOzw/DhwxXaTElJwdSpU2FtbQ1NTU04OTlh2bJlEEIUeiy7d+9Go0aNoKmpiYYNG+LgwYOl+lyIiIiqGkdMERER1TCffPIJvvzySxw+fBijRo0CABw9ehReXl6oV68efH19kZaWhp9++gnt2rXD1atXYWtri0aNGsHQ0BCnTp2Ct7c3AOD06dNQUVHB9evXkZiYCAMDA+Tm5uLs2bP49NNPFfp98OABPvzwQ4wYMQJDhgzB+vXrMXToULRo0QINGzYEAPj6+mLRokUYOXIk3NzckJiYiMuXL+Pq1avo2rUrPvvsMzx9+hRHjhzBxo0bCz0+Pz8/pKen49NPP4WmpiaMjIxw+/ZttGvXDnXq1MHMmTOhq6uLrVu3onfv3tixYwfef/99AHmJid27d6Nv376ws7PDs2fPsGbNGnh4eCAkJASWlpYKfS1atAja2tqYOXMmHjx4gJ9++gnq6upQUVHBy5cv4evri/Pnz8Pf3x92dnaYO3dusZ/NunXr8Nlnn6Ft27aYPHkyHj16BG9vbxgZGcHa2rrYffv06YPbt29jwoQJsLW1RUxMDI4cOYLIyEjY2toCyEtSDB8+HA0bNsSsWbNgaGiIa9eu4eDBg/joo4+ktl6+fIlu3brhgw8+QL9+/bB9+3bMmDEDjRs3hpeXFwAgMTERv//+OwYOHIhRo0YhKSkJ69atg6enJy5evIimTZuW+Llcu3YN3bp1g4WFBebPn4+cnBwsWLAApqamBY5v4cKFmDNnDvr164eRI0fi+fPn+Omnn9ChQwdcu3YNhoaGRZ6bp0+fws3NDfHx8fj000/RoEEDPHnyBNu3b0dqaio0NDTw7NkztG3bFqmpqZg4cSKMjY2xYcMGeHt7Y/v27dI1kq+in/3Jkyfx119/YeLEidDU1MQvv/yCbt264eLFi9Li85cuXcLZs2cxYMAAWFlZITw8HKtXr0bHjh0REhICHR0dhTbHjh0LU1NTzJ07FykpKYWei5iYGLz33nswNTXFzJkzYWhoiPDwcOzcuVOqI4SAt7c3Tpw4gREjRqBp06Y4dOgQpk+fjidPnmDFihUKbZ45cwY7d+7E2LFjoa+vjx9//BF9+vRBZGQkjI2Ni/xciIiIqoUgIiKiauXn5ycAiEuXLhVZRy6Xi2bNmknvmzZtKszMzERsbKxUdv36daGioiIGDx4slfXo0UO4ublJ7z/44APxwQcfCFVVVXHgwAEhhBBXr14VAMSePXukejY2NgKAOHXqlFQWExMjNDU1xdSpU6WyJk2aiB49ehR7fOPGjROF/RUjLCxMABAGBgYiJiZGYdu7774rGjduLNLT06Wy3Nxc0bZtW+Hg4CCVpaeni5ycnALtampqigULFkhlJ06cEABEo0aNRGZmplQ+cOBAIZPJhJeXl0Ib7u7uwsbGptjjyszMFGZmZqJp06YiIyNDKl+7dq0AIDw8PAocq5+fnxBCiJcvXwoAYunSpUW2Hx8fL/T19UXr1q1FWlqawrbc3Fzp/z08PAQA8ccff0hlGRkZwtzcXPTp00cqy87OVogzP47atWuL4cOHF4i1sM+lV69eQkdHRzx58kQqu3//vlBTU1P4jMPDw4WqqqpYuHChwv43b94UampqBcpfN3jwYKGiolLodyL/2CdPniwAiNOnT0vbkpKShJ2dnbC1tZWui8r47AEIAOLy5ctSWUREhNDS0hLvv/++VJaamlog3nPnzhX4fPK/8++8847Izs5WqJ+/LSwsTAghxK5du0q8P+zevVsAEN98841C+YcffihkMpl48OCBwrFoaGgolF2/fl0AED/99FORfRAREVUXTuUjIiKqgfT09KSn80VFRSE4OBhDhw6FkZGRVMfV1RVdu3bF/v37pbL27dvj6tWr0miMM2fOoHv37mjatKk05ez06dOQyWR45513FPp0cXFB+/btpfempqZwcnLCo0ePpDJDQ0Pcvn0b9+/fL/ex9enTR2HETVxcHI4fP45+/fohKSkJL168wIsXLxAbGwtPT0/cv38fT548AQBoampCRSXvry85OTmIjY2Fnp4enJyccPXq1QJ9DR48GOrq6tL71q1bQwhRYFpU69at8fjxY2RnZxcZ9+XLlxETE4PRo0crrL00dOhQyOXyYo9ZW1sbGhoaCAwMxMuXLwutc+TIESQlJWHmzJkF1qd6fdqcnp4ePv74Y+m9hoYG3NzcFD4rVVVVKc7c3FzExcUhOzsbLVu2LPRcvf655OTk4OjRo+jdu7fCSDR7e3tpVFa+nTt3Ijc3F/369ZM+vxcvXsDc3BwODg4Fpg++Kjc3F7t370avXr0U1lx7/dj3798PNzc3hetWT08Pn376KcLDw6Wph/kq+tm7u7ujRYsW0vu6devCx8cHhw4dQk5ODgAorAGXlZWF2NhY2Nvbw9DQsNBzPGrUqBLXk8ofWbZv3z5kZWUVWmf//v1QVVXFxIkTFcqnTp0KIQQOHDigUN6lSxfUr19feu/q6goDAwOF64WIiEhZmJgiIiKqgZKTk6Gvrw8gbx0bAHBycipQz9nZGS9evJASUe3bt0d2djbOnTuHu3fvIiYmBu3bt0eHDh0UElMuLi4KSS4g74f362rVqqWQSFmwYAHi4+Ph6OiIxo0bY/r06WV+gqCdnZ3C+wcPHkAIgTlz5sDU1FThNW/ePAB505uAvCTGihUr4ODgAE1NTZiYmMDU1BQ3btxAQkJCgb5eP6b8BNLr0+7kcjlyc3MLbSNf/ufg4OCgUK6uro569eoVe8yampr47rvvcODAAdSuXRsdOnTAkiVLEB0dLdV5+PAhAEjTxIpjZWVVIFn1+mcFABs2bICrq6u0HpipqSn++eefQo/z9c8lJiYGaWlpsLe3L1D39bL79+9DCAEHB4cCn2FoaKj0+RXm+fPnSExMLPG4IyIiivwO5G9/VUU/+9c/ZwBwdHREamoqnj9/DgBIS0vD3LlzpXWe8q/H+Pj4Up3jwnh4eKBPnz6YP38+TExM4OPjAz8/P4V1sCIiImBpaSndI/KV9lwAhV8vREREysA1poiIiGqYf//9FwkJCYUmBEqSv0j1qVOnULduXZiZmcHR0RHt27fHL7/8goyMDJw+fbrAejwAihzJIV5ZTLlDhw54+PAh9uzZg8OHD+P333/HihUr8Ouvv2LkyJGlivH1Jw3m5uYCAKZNmwZPT89C98k/F99++y3mzJmD4cOH4+uvv4aRkRFUVFQwefJkqZ3SHFNpjrWyTZ48Gb169cLu3btx6NAhzJkzB4sWLcLx48fRrFmzMrVVmvg3bdqEoUOHonfv3pg+fTrMzMygqqqKRYsWSUmwV1XkCZC5ubmQyWQ4cOBAobHp6emVu+3yqo7PfsKECfDz88PkyZPh7u4OuVwOmUyGAQMGFHo9luYcy2QybN++HefPn8fff/+NQ4cOYfjw4Vi+fDnOnz9frnOpjOudiIiotJiYIiIiqmHyFw3PT9LY2NgAAO7evVug7p07d2BiYgJdXV0A/5vSdfr0adStW1eamte+fXtkZGRg8+bNePbsGTp06FDu+IyMjDBs2DAMGzYMycnJ6NChA3x9faXEVGFPaytO/mgjdXV1dOnSpdi627dvR6dOnbBu3TqF8vj4eJiYmJSp37LK/xzu37+Pzp07S+VZWVkICwtDkyZNSmyjfv36mDp1KqZOnYr79++jadOmWL58OTZt2iRNtbp161a5kpKv2759O+rVq4edO3cqfCb5o9BKYmZmBi0tLTx48KDAttfL6tevDyEE7Ozs4OjoWKY4TU1NYWBggFu3bhVbz8bGpsjvQP72ylTYdNV79+5BR0dHmvK4fft2DBkyBMuXL5fqpKenIz4+vsL9t2nTBm3atMHChQuxZcsWDBo0CAEBARg5ciRsbGxw9OhRJCUlKYyaqqpzQUREVJU4lY+IiKgGOX78OL7++mvY2dlh0KBBAAALCws0bdoUGzZsUPjBe+vWLRw+fBjdu3dXaKN9+/a4cOECTpw4ISWmTExM4OzsjO+++06qUx6xsbEK7/X09GBvb68wzSg/SVbaH+dmZmbo2LEj1qxZg6ioqALb86dNAXkjP14f5bFt2zZpDaqq1LJlS5iamuLXX39FZmamVO7v71/isaampiI9PV2hrH79+tDX15fO3XvvvQd9fX0sWrSoQN3yjGzJHyXz6r4XLlzAuXPnSr1/ly5dsHv3bjx9+lQqf/DgQYE1jD744AOoqqpi/vz5BWIVQhS4bl6loqKC3r174++//8bly5cLbM9vr3v37rh48aJC/CkpKVi7di1sbW3h4uJSquMqrXPnzimsE/X48WPs2bMH7733nnRuC7sef/rpJ2kNqvJ4+fJlgTbzn6CYf610794dOTk5+PnnnxXqrVixAjKZrMAaYERERDUZR0wREREpyYEDB3Dnzh1kZ2fj2bNnOH78OI4cOQIbGxvs3btXYQHspUuXwsvLC+7u7hgxYgTS0tLw008/QS6Xw9fXV6Hd9u3bY+HChXj8+LFCAqpDhw5Ys2YNbG1tYWVlVa6YXVxc0LFjR7Ro0QJGRka4fPkytm/fjvHjx0t18heMnjhxIjw9PaGqqooBAwYU2+6qVavwzjvvoHHjxhg1ahTq1auHZ8+e4dy5c/j3339x/fp1AEDPnj2xYMECDBs2DG3btsXNmzexefPmEtd4qgzq6ur45ptv8Nlnn6Fz587o378/wsLC4OfnV2L/9+7dw7vvvot+/frBxcUFampq2LVrF549eyadGwMDA6xYsQIjR45Eq1at8NFHH6FWrVq4fv06UlNTsWHDhjLF27NnT+zcuRPvv/8+evTogbCwMPz6669wcXFBcnJyqdrw9fXF4cOH0a5dO4wZM0ZKhjRq1AjBwcFSvfr16+Obb77BrFmzEB4ejt69e0NfXx9hYWHYtWsXPv30U0ybNq3Ifr799lscPnwYHh4e+PTTT+Hs7IyoqChs27YNZ86cgaGhIWbOnIk///wTXl5emDhxIoyMjLBhwwaEhYVhx44d0qL4laVRo0bw9PTExIkToampiV9++QUAMH/+fKlOz549sXHjRsjlcri4uODcuXM4evQojI2Ny93vhg0b8Msvv+D9999H/fr1kZSUhN9++w0GBgZSErpXr17o1KkTvvrqK4SHh6NJkyY4fPgw9uzZg8mTJyssdE5ERFTTMTFFRESkJHPnzgWQN/3OyMgIjRs3xg8//IBhw4YVWNS4S5cuOHjwIObNm4e5c+dCXV0dHh4e+O677wosqNy2bVuoqqpCR0dHYXpZ+/btsWbNmnKPlgLykk179+7F4cOHkZGRARsbG3zzzTeYPn26VOeDDz7AhAkTEBAQgE2bNkEIUWJiysXFBZcvX8b8+fPh7++P2NhYmJmZoVmzZtJ5AoAvv/wSKSkp2LJlC/766y80b94c//zzD2bOnFnuYyqLTz/9FDk5OVi6dCmmT5+Oxo0bY+/evZgzZ06x+1lbW2PgwIE4duwYNm7cCDU1NTRo0ABbt25Fnz59pHojRoyAmZkZFi9ejK+//hrq6upo0KABpkyZUuZYhw4diujoaKxZswaHDh2Ci4sLNm3ahG3btiEwMLBUbbRo0QIHDhzAtGnTMGfOHFhbW2PBggUIDQ2Vpo3lmzlzJhwdHbFixQopeWNtbY333nsP3t7exfZTp04dXLhwAXPmzMHmzZuRmJiIOnXqwMvLCzo6OgCA2rVr4+zZs5gxYwZ++uknpKenw9XVFX///Td69OhR5vNTEg8PD7i7u2P+/PmIjIyEi4sL/P394erqKtVZuXIlVFVVsXnzZqSnp6Ndu3Y4evRokWullbbfixcvIiAgAM+ePYNcLoebmxs2b94sfddVVFSwd+9ezJ07F3/99Rf8/Pxga2uLpUuXYurUqRU+diIiouokE1z1kIiIiIjKoHfv3rh9+3ah6zC9DWQyGcaNG1dgqhwRERFVPq4xRURERERFSktLU3h///597N+/Hx07dlROQERERPRW4VQ+IiIiIipSvXr1MHToUNSrVw8RERFYvXo1NDQ08MUXXyg7NCIiInoLMDFFREREREXq1q0b/vzzT0RHR0NTUxPu7u749ttv4eDgoOzQiIiI6C3ANaaIiIiIiIiIiEgpuMYUEREREREREREpBRNTRERERERERESkFFxjqhC5ubl4+vQp9PX1IZPJlB0OEREREREREdEbQwiBpKQkWFpaQkWl+DFRTEwV4unTp7C2tlZ2GEREREREREREb6zHjx/Dysqq2DpMTBVCX18fQN4JNDAwUHI0RERERERERERvjsTERFhbW0v5leIwMVWI/Ol7BgYGTEwREREREREREZVDaZZH4uLnRERERERERESkFExMERERERERERGRUjAxRURERERERERESsE1poiIiIjojZCTk4OsrCxlh0FERPSfp66uDlVV1Uppi4kpIiIiIqrRhBCIjo5GfHy8skMhIiKi/2doaAhzc/NSLXBeHCamiIiIiKhGy09KmZmZQUdHp8J/ASYiIqLyE0IgNTUVMTExAAALC4sKtcfEFBERERHVWDk5OVJSytjYWNnhEBEREQBtbW0AQExMDMzMzCo0rY+LnxMRERFRjZW/ppSOjo6SIyEiIqJX5f/ZXNH1H9+oxNTixYshk8kwefLkYutt27YNDRo0gJaWFho3boz9+/dXT4BEREREVCU4fY+IiKhmqaw/m9+YxNSlS5ewZs0auLq6Flvv7NmzGDhwIEaMGIFr166hd+/e6N27N27dulVNkRIRERERERERUWm8EYmp5ORkDBo0CL/99htq1apVbN2VK1eiW7dumD59OpydnfH111+jefPm+Pnnn6spWiIiIiIiqk7+/v4wNDRUdhilEhQUhMaNG0NdXR29e/dGYGAgZDLZG/XUyY4dO5Y4i4WIqLTeiMTUuHHj0KNHD3Tp0qXEuufOnStQz9PTE+fOnStyn4yMDCQmJiq8iIiIiIjKSyaTFfvy9fUtsI+vr6+0XVVVFdbW1vj0008RFxdXqbFVdxJn6NChCsdubGyMbt264caNG5XWR//+/XHv3r0Kt5OTk4MVK1agcePG0NLSQq1ateDl5YWgoKAyt1VU8ubzzz9H06ZNERYWBn9//wrHXB6vfh5yuRzt2rXD8ePHS73/zp078fXXX5e6fnh4OGQyGYKDg8sRLRG97Wp8YiogIABXr17FokWLSlU/OjoatWvXViirXbs2oqOji9xn0aJFkMvl0sva2rpCMRMRERHRf1tUVJT0+uGHH2BgYKBQNm3atEL3a9iwIaKiohAZGQk/Pz8cPHgQY8aMqeboK1+3bt2kYz927BjU1NTQs2fPSmtfW1sbZmZmFWpDCIEBAwZgwYIFmDRpEkJDQxEYGAhra2t07NgRu3fvrpRYHz58iM6dO8PKykqpo7z8/PwQFRWFoKAgmJiYoGfPnnj06FGp9jUyMoK+vn4VR0hE/xU1OjH1+PFjTJo0CZs3b4aWllaV9TNr1iwkJCRIr8ePH1dZX0RERET09jM3N5decrkcMplMoUxPT6/Q/dTU1GBubo46deqgS5cu6Nu3L44cOSJtz83NxYIFC2BlZQVNTU00bdoUBw8elLYXNi0sODgYMpkM4eHhCAwMxLBhw5CQkFBg9FZGRgamTZuGOnXqQFdXF61bt0ZgYGClnA9NTU3p2Js2bYqZM2fi8ePHeP78uVRnxowZcHR0hI6ODurVq4c5c+YoPOnp+vXr6NSpE/T19WFgYIAWLVrg8uXLAAqOAvP19UXTpk2xceNG2NraQi6XY8CAAUhKSioyxq1bt2L79u34448/MHLkSNjZ2aFJkyZYu3YtvL29MXLkSKSkpADIGwXWu3dvhf0nT56Mjh07SttPnjyJlStXSuc5f9RQbGwshg8fDplMVuSIqR07dqBhw4bQ1NSEra0tli9fLm37+eef0ahRI+n97t27IZPJ8Ouvv0plXbp0wezZs4s8VgAwNDSEubk5GjVqhNWrVyMtLU261k6ePAk3NzdoamrCwsICM2fORHZ2trTv66PBbG1t8e2332L48OHQ19dH3bp1sXbtWmm7nZ0dAKBZs2aQyWTSeSIiAmp4YurKlSuIiYlB8+bNoaamBjU1NZw8eRI//vgj1NTUkJOTU2Afc3NzPHv2TKHs2bNnMDc3L7IfTU1NGBgYKLyo4u7uvYuDUw7i7t67yg6FiIiI3iZCACkpynkJUW2HGR4ejkOHDkFDQ0MqW7lyJZYvX45ly5bhxo0b8PT0hLe3N+7fv1+qNtu2bVtgBFf+6K3x48fj3LlzCAgIwI0bN9C3b19069at1G2XVnJyMjZt2gR7e3sYGxtL5fr6+vD390dISAhWrlyJ3377DStWrJC2Dxo0CFZWVrh06RKuXLmCmTNnQl1dvch+Hj58iN27d2Pfvn3Yt28fTp48icWLFxdZf8uWLXB0dESvXr0KbJs6dSpiY2MVkoTFWblyJdzd3TFq1CjpPFtbWyMqKgoGBgb44YcfEBUVhf79+xfY98qVK+jXrx8GDBiAmzdvwtfXF3PmzJGSWB4eHggJCZGSeidPnoSJiYmURMzKysK5c+fKlPzR1tYGAGRmZuLJkyfo3r07WrVqhevXr2P16tVYt24dvvnmm2LbWL58OVq2bIlr165h7NixGDNmDO7ezfsdcPHiRQDA0aNHERUVhZ07d5Y6NiJ6+6kpO4DivPvuu7h586ZC2bBhw9CgQQPMmDEDqqqqBfZxd3fHsWPHFDL4R44cgbu7e1WHS6+4u/cuAnwCAAhc+OECBuwZACdvJ2WHRURERG+D1FSgiBFHVS45GdDVrbLmb968CT09PeTk5CA9PR0A8P3330vbly1bhhkzZmDAgAEAgO+++w4nTpzADz/8gFWrVpXYvoaGhsIIrnz5UwcjIyNhaWkJAJg2bRoOHjwIPz8/fPvttxU6rn379kmjxFJSUmBhYYF9+/ZBReV//07+6ggfW1tbTJs2DQEBAfjiiy+kGKdPn44GDRoAABwcHIrtMzc3F/7+/tKUs08++QTHjh3DwoULC61/7949ODs7F7otv7y061jJ5XJoaGhAR0dH4Tybm5tL6zoV9Q/n33//Pd59913MmTMHAODo6IiQkBAsXboUQ4cORaNGjWBkZISTJ0/iww8/RGBgIKZOnYqVK1cCyEsCZWVloW3btqWKNTU1FbNnz4aqqio8PDzwyy+/wNraGj///DNkMhkaNGiAp0+fYsaMGZg7d67CZ/aq7t27Y+zYsQDyRr+tWLECJ06cgJOTE0xNTQEAxsbGxQ4YIKL/pho9YkpfXx+NGjVSeOnq6sLY2Fgavjp48GDMmjVL2mfSpEk4ePAgli9fjjt37sDX1xeXL1/G+PHjlXUY/0lhx8MACAAyAALhgeHKDYiIiIiohoiMjISenp70ejXp4+TkhODgYFy6dAkzZsyAp6cnJkyYAABITEzE06dP0a5dO4X22rVrh9DQ0ArFdPPmTeTk5MDR0VEhtpMnT+Lhw4eF7jN69GiFusXp1KkTgoODERwcjIsXL8LT0xNeXl6IiIiQ6vz1119o166dNNVx9uzZiIyMlLZ//vnnGDlyJLp06YLFixcXGVc+W1tbhXWQLCwsEBMTU+w+ohpHxBUlNDS00M/4/v37yMnJgUwmQ4cOHRAYGIj4+HiEhIRg7NixyMjIwJ07d3Dy5Em0atUKOjo6xfYzcOBA6OnpQV9fHzt27MC6devg6uqK0NBQuLu7QyaTKfSfnJyMf//9t8j2XF1dpf/PT3yWdL6JiIAaPmKqNCIjIxWy9m3btsWWLVswe/ZsfPnll3BwcMDu3bsV5mFT1attrY68pBQAyGBW542/1IiIiKim0NHJG7mkrL4ryNLSUuHpZEZGRtL/a2howN7eHgCwePFi9OjRA/Pnzy/1E9Dy/178aoLl1XWaipKcnAxVVVVcuXKlwKyEopJOCxYsKHIR99fp6upKxwUAv//+O+RyOX777Td88803OHfuHAYNGoT58+fD09MTcrkcAQEBCmsr+fr64qOPPsI///yDAwcOYN68eQgICMD7779faJ+vT/OTyWTIzc0tMkZHR8ciE3z55Y6OjgDyzvPrSazSnOfK0rFjR6xduxanT59Gs2bNYGBgICWrTp48CQ8PjxLbWLFiBbp06QK5XC6NaKqIsp5vIqJ8b1y24PUFGAtbkLFv377o27dv9QREhdJNfoZ7cIApYmCIBET+uh/Npr6r7LCIiIjobSCTVel0uqqmpqamkKQpzuzZs9G5c2eMGTMGlpaWsLS0RFBQkELiISgoCG5ubgAgJRiioqJQq1YtAFBIggF5ya/X12pt1qwZcnJyEBMTg/bt25cqNjMzs3I/CU8mk0FFRQVpaWkAgLNnz8LGxgZfffWVVOfV0VT5HB0d4ejoiClTpmDgwIHw8/MrMjFVVgMGDMBHH32Ev//+u8A6U8uXL4exsTG6du0KIO8837p1S6FOcHCwQnKmsPNcGs7OzggKClIoCwoKgqOjo5Q09PDwwOTJk7Ft2zZpLamOHTvi6NGjCAoKwtSpU0vsx9zcvNDr0NnZGTt27IAQQho1FRQUBH19fVhZWZX5eABI66SV53wQ0duvRk/lozfX7cDn2IKP8BMmIAeqCH6gj2d/BSo7LCIiIqI3iru7O1xdXaXpftOnT8d3332Hv/76C3fv3sXMmTMRHByMSZMmAQDs7e1hbW0NX19f3L9/H//884/CqCMgb4pbcnIyjh07hhcvXiA1NRWOjo4YNGgQBg8ejJ07dyIsLAwXL17EokWL8M8//1T4ODIyMhAdHY3o6GiEhoZiwoQJSE5OlhJADg4OiIyMREBAAB4+fIgff/wRu3btkvZPS0vD+PHjERgYiIiICAQFBeHSpUtFrglVHgMGDMD777+PIUOGYN26dQgPD8eNGzfw2WefYe/evfj999+h+/8J0c6dO+Py5cv4448/cP/+fcybN69AosrW1hYXLlxAeHg4Xrx4UerRQ1OnTsWxY8fw9ddf4969e9iwYQN+/vlnhdFprq6uqFWrFrZs2aKQmNq9ezcyMjIKTAUsi7Fjx+Lx48eYMGEC7ty5gz179mDevHn4/PPPi1xfqiRmZmbQ1tbGwYMH8ezZMyQkJJQ7PiJ6+zAxRVUi7G4WaiMa9fSfI9nYBlswEIfG7K7WJ9kQERERvQ2mTJmC33//HY8fP8bEiRPx+eefY+rUqWjcuDEOHjyIvXv3SguBq6ur488//8SdO3fg6uqK7777rsDT1Nq2bYvRo0ejf//+MDU1xZIlSwAAfn5+GDx4MKZOnQonJyf07t0bly5dQt26dSt8DAcPHoSFhQUsLCzQunVrXLp0SWG0j7e3N6ZMmYLx48ejadOmOHv2rLT4NwCoqqoiNjYWgwcPhqOjI/r16wcvLy/Mnz+/wrHlk8lk2Lp1K7788kusWLECTk5OaN++PSIiIhAYGIjevXtLdT09PTFnzhx88cUXaNWqFZKSkjB48GCF9qZNmwZVVVW4uLjA1NRUYb2s4jRv3hxbt25FQEAAGjVqhLlz52LBggUYOnSoQqzt27eHTCbDO++8AyAvWWVgYICWLVtKCbTyqFOnDvbv34+LFy+iSZMmGD16NEaMGKGwOH1Zqamp4ccff8SaNWtgaWkJHx+fcrdFRG8fmagJK/zVMImJiZDL5UhISICBgYGyw3kjrdaagpgMQ3Sb3hDvrX4ficmq8MYeLF+QCvs5A5UdHhEREb0h0tPTERYWBjs7O2hpaSk7HCIiIvp/xf0ZXZa8CkdMUaXLSUrFi4y8J6A0+KAhln2vio8tj6ExbuLIwovIzchUcoREREREREREVBMwMUWV7sXBy8iFKjSRAQM3J4waBaw90xD6shTEZBgieNQvyg6RiIiIiIiIiGoAJqao0j09chs/YywC1AYhPiHvEtO2M0cHn1oQAHZuTMFt/8vKDZKIiIiIiIiIlE5N2QHQ2+f6+VS8gCmScuR4dSppxns9sWW3GuJhCJVhazDISB9O3k7KC5SIiIiIiIiIlIojpqjSiSfRGAp/zG17FKqq/yt/fuMpnqAOnsMM1+GK8MBwpcVIRERERERERMrHEVNU6V7Gy2CLCHwy1Fyh3NXLGsN/9YM6MmGAJNh2HKCkCImIiIiIiIioJuCIKapUqXcikZSrCwAw6+GmsM3J2wmD59pCjiSoIQuO3e2VESIRERERERER1RBMTFGlevbPZVxDUzxTMUeuoVGB7c1ndoUKcpADdSRevKOECImIiIiIiIiopmBiiirVv6ceYS96YXXuZ4iNLbhdVVsTd9QaYj+8ELL3fvUHSERERFTDyGQy7N69W9lhlMrQoUPRu3dvZYdRYwQGBkImkyE+Pr7U+9ja2uKHH36osphqirt378Lc3BxJSUnKDqXGGzBgAJYvX67sMErN398fhoaGyg6jVIKCgtC4cWOoq6ujd+/e5frOKlvHjh0xefJkZYdRpZiYokoVfjMJDXAHjnpPUadO4XVOwgMX4YbzpzKqNzgiIiKiahYdHY0JEyagXr160NTUhLW1NXr16oVjx44pO7QqUZN+9A0dOhQymQyjR48usG3cuHGQyWQYOnRo9QdWAl9fX8hksgKvBg0aSHVK+qEaFxeHyZMnw8bGBhoaGrC0tMTw4cMRGRmpUO/58+cYM2YM6tatC01NTZibm8PT0xNBQUFSnevXr8Pb2xtmZmbQ0tKCra0t+vfvj5iYmGKPY9asWZgwYQL09fUB/O/ayH/Vrl0bffr0waNHj6R9bG1tCz32xYsXF2jf09MTqqqquHTpUoFt+Z+9TCaDuro6ateuja5du2L9+vXIzc1VqFvVicLbt2+jT58+0rEV1tfs2bOxcOFCJCQkVLi/V49dJpPB2NgY3bp1w40bNyrcdr7+/fvj3r17FW4nJycHK1asQOPGjaGlpYVatWrBy8tL4forraK+E59//jmaNm2KsLAw+Pv7Vzjm8nj185DL5WjXrh2OHz9e6v137tyJr7/+utT1w8PDIZPJEBwcXI5olYOJKapU6c8S0B/bsGv0IchkhdfpVucW2iIIGlGPqzc4IiIiomoUHh6OFi1a4Pjx41i6dClu3ryJgwcPolOnThg3bpyyw/tPsLa2RkBAANLS0qSy9PR0bNmyBXXr1lViZMVr2LAhoqKiFF5nzpwp1b5xcXFo06YNjh49il9//RUPHjxAQEAAHjx4gFatWikkgvr06YNr165hw4YNuHfvHvbu3YuOHTsi9v+nPjx//hzvvvsujIyMcOjQIYSGhsLPzw+WlpZISUkpMobIyEjs27ev0MTf3bt38fTpU2zbtg23b99Gr169kJOTI21fsGBBgWOfMGFCgfbPnj2L8ePHY/369YXG0K1bN0RFRSE8PBwHDhxAp06dMGnSJPTs2RPZ2dmlOpeVITU1FfXq1cPixYthbm5eaJ1GjRqhfv362LRpU6X0mX/sUVFROHbsGNTU1NCzZ89KaRsAtLW1YWZmVqE2hBAYMGAAFixYgEmTJiE0NBSBgYGwtrZGx44dK20U6cOHD9G5c2dYWVkpdZSXn58foqKiEBQUBBMTE/Ts2VPhu1gcIyMjKcH7tmJiiipNbmYWYlL1AAC1u7oWWW9Sz4d4D0ehE/dvdYVGREREVO3Gjh0LmUyGixcvok+fPnB0dETDhg3x+eef4/z58wp1X7x4gffffx86OjpwcHDA3r17pW05OTkYMWIE7OzsoK2tDScnJ6xcuVJh//wpdsuWLYOFhQWMjY0xbtw4ZGVlSXVsbW3x7bffYvjw4dDX10fdunWxdu1ahXYeP36Mfv36wdDQEEZGRvDx8UF4eHilnZOXL19i8ODBqFWrFnR0dODl5YX79/+3vENERAR69eqFWrVqQVdXFw0bNsT+/fulfQcNGgRTU1Noa2vDwcEBfn5+xfbXvHlzWFtbY+fOnVLZzp07UbduXTRr1kyhbkZGBiZOnCiNDHrnnXcKjMbZv38/HB0doa2tjU6dOhV6bs6cOYP27dtDW1sb1tbWmDhxYrFJnMKoqanB3Nxc4WViYlKqfb/66is8ffoUR48ehZeXF+rWrYsOHTrg0KFDUFdXl5Ki8fHxOH36NL777jt06tQJNjY2cHNzw6xZs+Dt7Q0gbxpUQkICfv/9dzRr1gx2dnbo1KkTVqxYATs7uyJj2Lp1K5o0aYI6hUyhMDMzg4WFBTp06IC5c+ciJCQEDx48kLbr6+sXOHZdXV2FNvz8/NCzZ0+MGTMGf/75p0LiMV/+CLA6deqgefPm+PLLL7Fnzx4cOHCgWkfOtGrVCkuXLsWAAQOgqalZZL1evXohICCgUvrMP3Zzc3M0bdoUM2fOxOPHj/H8+XOpzowZM+Do6AgdHR3Uq1cPc+bMUbhfXL9+HZ06dYK+vj4MDAzQokULXL58GUDBqXy+vr5o2rQpNm7cCFtbW8jlcgwYMKDYaZxbt27F9u3b8ccff2DkyJGws7NDkyZNsHbtWnh7e2PkyJHS96awKcSTJ09Gx44dpe0nT57EypUrpZFJ+aOGYmNjMXz4cMhksiI/9x07dqBhw4bQ1NSEra2twrTKn3/+GY0aNZLe7969GzKZDL/++qtU1qVLF8yePbvIYwUAQ0NDmJubo1GjRli9ejXS0tJw5MgRAMDJkyfh5uYGTU1NWFhYYObMmQrJ09dHg5V0L8//bjZr1gwymUw6TzUZE1NUaV4eD0YmNKCGLNTqWHRiyrR93jDk50laEK8NpSUiIiJ6G8TFxeHgwYMYN25cgR/VAAr8y/38+fPRr18/3LhxA927d8egQYMQFxcHAMjNzYWVlRW2bduGkJAQzJ07F19++SW2bt2q0MaJEyfw8OFDnDhxAhs2bIC/v3+BH2LLly9Hy5Ytce3aNYwdOxZjxozB3bt3AQBZWVnw9PSEvr4+Tp8+jaCgIOjp6aFbt27IzMyslPMydOhQXL58GXv37sW5c+cghED37t2lH8Tjxo1DRkYGTp06hZs3b+K7776Dnl7eP3zOmTMHISEhOHDgAEJDQ7F69epSJWuGDx+ukMBav349hg0bVqDeF198gR07dmDDhg24evUq7O3t4enpKX0Ojx8/xgcffIBevXohODgYI0eOxMyZMxXaePjwIbp164Y+ffrgxo0b+Ouvv3DmzBmMHz++3OesLHJzcxEQEIBBgwYVGJ2jra2NsWPH4tChQ4iLi4Oenh709PSwe/duZGQUvsSGubk5srOzsWvXLgghSh3H6dOn0bJlyxLraWtrA0CZri8hBPz8/PDxxx+jQYMGsLe3x/bt20u1b+fOndGkSROFRGVJNm/eLJ2rol6nT58udXtFcXNzw8WLF4v8LMorOTkZmzZtgr29PYyNjaVyfX19+Pv7IyQkBCtXrsRvv/2GFStWSNsHDRoEKysrXLp0CVeuXMHMmTOhrq5eZD8PHz7E7t27sW/fPuzbtw8nT54sdApmvi1btsDR0RG9evUqsG3q1KmIjY2VEjclWblyJdzd3TFq1ChppJi1tTWioqJgYGCAH374AVFRUejfv3+Bfa9cuYJ+/fphwIABuHnzJnx9fTFnzhzp3unh4YGQkBApqXfy5EmYmJggMDAQQN5989y5c2VK/rx63T958gTdu3dHq1atcP36daxevRrr1q3DN998U2wbxd3LL168CAA4evQooqKiynS9K42gAhISEgQAkZCQoOxQ3ii3P/9dGOGFsJBFidu3i66XGZsg5sJXTMCPIulmWLXFR0RERG+etLQ0ERISItLS0qSy3NxckZGcUa7Xrb9uiX/G/SNu/XWrXPvn5uaWKu4LFy4IAGLnzp0l1gUgZs+eLb1PTk4WAMSBAweK3GfcuHGiT58+0vshQ4YIGxsbkZ2dLZX17dtX9O/fX3pvY2MjPv74Y4XzaGZmJlavXi2EEGLjxo3CyclJ4RgzMjKEtra2OHTokNSPj49PkXGdOHFCABAvX74ssO3evXsCgAgKCpLKXrx4IbS1tcXWrVuFEEI0btxY+Pr6Ftp2r169xLBhw4rs+3X5scbExAhNTU0RHh4uwsPDhZaWlnj+/Lnw8fERQ4YMEULknXN1dXWxefNmaf/MzExhaWkplixZIoQQYtasWcLFxUWhjxkzZigc74gRI8Snn36qUOf06dNCRUVFuoZtbGzEihUriox73rx5QkVFRejq6iq8PvvsM6mOh4eHmDRpUoF9o6OjBYAi29+5c6cAIC5cuCCEEGL79u2iVq1aQktLS7Rt21bMmjVLXL9+XWGfL7/8UqipqQkjIyPRrVs3sWTJEhEdHV1k/EII0aRJE7FgwQKFstevjadPn4q2bduKOnXqiIyMDOncaGhoFDj2U6dOSe0cPnxYmJqaiqysLCGEECtWrBAeHh4KfRV3nfbv3184OztL70v6PBITE8X9+/eLfaWmphZ7PkrT1/Xr1wUAER4eXqq2ijJkyBChqqoqnTsAwsLCQly5cqXY/ZYuXSpatGghvdfX1xf+/v6F1vXz8xNyuVx6P2/ePKGjoyMSExOlsunTp4vWrVsX2V+DBg2K/Izi4uIEAPHdd99Jx/R63UmTJil87kV9J+RyufDz85Pev34dfvTRR6Jr164K+0yfPl36rufm5gpjY2Oxbds2IYQQTZs2FYsWLRLm5uZCCCHOnDkj1NXVRUpKSpHHCkDs2rVLCCFESkqKGDt2rFBVVRXXr18XX375ZYH77qpVq4Senp7Iyckp9NhKupeHhYUJAOLatWtFxlRZCvszOl9Z8ipq1Z4Jo7dW+PloxMEYEECxU471DbAYs5AJDXy84wDcGtlWV4hERET0FshKzcIivUUVauPSqoILJpfGrORZ0NDVKLGeKMPoEgBwdf3faHNdXV0YGBgoLC69atUqrF+/HpGRkUhLS0NmZiaaNm2q0EbDhg2hqqoqvbewsMDNmzeL7Ecmk8Hc3Fzq5/r163jw4EGBtUzS09Px8OHDMh1PYUJDQ6GmpobWrVtLZcbGxnByckJoaCgAYOLEiRgzZgwOHz6MLl26oE+fPlLMY8aMQZ8+fXD16lW899576N27N9q2bVtiv6ampujRowf8/f0hhECPHj0KjLR6+PAhsrKy0K5dO6lMXV0dbm5uUmyhoaEKsQOAu7u7wvvr16/jxo0b2Lx5s1QmhEBubi7CwsLg7OxcmlMFJycnhemcAGBgYFCqffP7LI0+ffqgR48eOH36NM6fP48DBw5gyZIl+P3336X1oRYuXIjPP/8cx48fx4ULF/Drr7/i22+/xalTp9C4ceNC201LS4OWllah26ysrCCEQGpqKpo0aYIdO3ZAQ+N/36np06cXWJvq1SmB69evR//+/aGmlvdTduDAgZg+fToePnyI+vXrl3jMQgjIiloMtxD6+vrVsr5P/iia1NTUQrePHj1aYQ2q5OTkItvq1KkTVq9eDSBvCuwvv/wCLy8vXLx4ETY2NgCAv/76Cz/++CMePnyI5ORkZGdnK1xjn3/+OUaOHImNGzeiS5cu6Nu3b7Hn19bWVuE8WVhYlLhAflnvk1UhNDQUPj4+CmXt2rXDDz/8gJycHKiqqqJDhw4IDAxEly5dEBISgrFjx2LJkiW4c+cOTp48iVatWkFHR6fYfgYOHAhVVVWkpaXB1NQU69atg6urK3x9feHu7q5wTbZr1w7Jycn4999/i1wLr7h7+ZuIU/mo0iQ+fIHP8T1WvrMVxY2qVlcHjFTjoYYs3D4TX23xEREREVUXBwcHyGQy3Llzp1T1X58iI5PJpKeHBQQEYNq0aRgxYgQOHz6M4OBgDBs2rMD0p+LaKE2d5ORktGjRAsHBwQqve/fu4aOPPirVcVTUyJEj8ejRI3zyySe4efMmWrZsiZ9++gkA4OXlhYiICEyZMgVPnz7Fu+++i2nTppWq3eHDh8Pf3x8bNmzA8OHDqyz+5ORkfPbZZwrn7/r167h//36pkib5NDQ0YG9vr/AqzWLTpqamMDQ0lJJprwsNDYVMJoO9vb1UpqWlha5du2LOnDk4e/Yshg4dinnz5insZ2xsjL59+2LZsmUIDQ2FpaUlli1bVmQcJiYmePnyZaHbTp8+jRs3biAxMRHBwcEFkn0mJiYFjj0/aRMXF4ddu3bhl19+gZqaGtTU1FCnTh1kZ2cXuQh6YeeguPWxXlddU/nyp4yampoWun3BggUK11VxdHV1pXPXqlUr/P7770hJScFvv/0GADh37hwGDRqE7t27Y9++fbh27Rq++uorhXuKr68vbt++jR49euD48eNwcXHBrl27iuyzNPefVzk6OhZ7nebXAQAVFZUCSaxX18Oqah07dkRgYCBOnz6NZs2awcDAQEpWnTx5Eh4eHiW2sWLFCgQHByM6OhrR0dEYMmRIhWIq6/mu6ThiiipNTKwqDJCEXn1K/lfEHxr9jpDr2TCPSQUwsOqDIyIioreGuo46ZiXPKvN+9/+5j+39t0OmKoPIEfjwrw/h0MOhzH2XhpGRETw9PbFq1SpMnDixwDpT8fHxpX5CVFBQENq2bYuxY8dKZZUxgul1zZs3x19//QUzM7Myjc4pLWdnZ2RnZ+PChQvSSKfY2FjcvXsXLi4uUj1ra2uMHj0ao0ePxqxZs/Dbb79JT2UzNTXFkCFDMGTIELRv3x7Tp08vNkGSL3+dLJlMBk9PzwLb69evDw0NDQQFBUkjSrKysnDp0iVp0WFnZ+cCo5heX8S+efPmCAkJUUj8VCcVFRX069cPmzdvxoIFCxTWmUpLS8Mvv/wCT09PGBkZFdmGi4tLsU9E09DQQP369Ytd0L1Zs2YICQkpdJudnV25n462efNmWFlZFYjv8OHDWL58ORYsWKAwavB1x48fx82bNzFlypRS9+nt7V0gefa6whZ5L6tbt27BysqqyHXTzMzMyv0kPJlMBhUVFWmR+LNnz8LGxgZfffWVVCciIqLAfo6OjnB0dMSUKVMwcOBA+Pn54f333y9XDK8bMGAAPvroI/z9998F1plavnw5jI2N0bVrVwB53/tbt24p1AkODlZIzmhoaCg83bG0nJ2dERQUpFAWFBQER0dH6Vry8PDA5MmTsW3bNmktqY4dO+Lo0aMICgrC1KlTS+zH3Ny80PuCs7MzduzYoTCSLygoCPr6+rCysirz8QCQRiCW53woCxNTVCkyn77Ay+y8oZu1e7Qqsb5jc33cuR6HF/+mV3VoRERE9JaRyWSlmk73uob9GkJNSw3hgeGw7WgLJ2+nKojuf1atWoV27drBzc0NCxYsgKurK7Kzs3HkyBGsXr26yNECr3NwcMAff/yBQ4cOwc7ODhs3bsSlS5fKNOqjNAYNGoSlS5fCx8cHCxYsgJWVFSIiIrBz50588cUXZfqRdPPmTYVpPTKZDE2aNIGPjw9GjRqFNWvWQF9fHzNnzkSdOnWkqTSTJ0+Gl5cXHB0d8fLlS5w4cUKa/jZ37ly0aNECDRs2REZGBvbt21fqqXGqqqrS+S4scaGrq4sxY8Zg+vTpMDIyQt26dbFkyRKkpqZixIgRAPKmUi1fvhzTp0/HyJEjceXKlQKLy8+YMQNt2rTB+PHjMXLkSOjq6iIkJARHjhzBzz//XOrzl52djejoaIUymUyG2rVrS++fP39eYOSMhYUFvv32Wxw7dgxdu3bFkiVL0KhRI4SFhWH27NnIysrCqlWrAOQlBfv27Yvhw4fD1dUV+vr6uHz5MpYsWSJ9Hvv27UNAQAAGDBgAR0dHCCHw999/Y//+/cU+EdHT0xMjR46UpkKVRVJSUoFj19HRgYGBAdatW4cPP/xQ4SlpQF4yc9asWTh48CB69OgBIO8pi9HR0cjJycGzZ89w8OBBLFq0CD179sTgwYNLHU9Fp/JlZmZKSbr8xa6Dg4Ohp6enkKg4ffo03nvvvXL386r8YwfypvL9/PPPSE5OlhJADg4OiIyMREBAAFq1aoV//vlHYTRUWloapk+fjg8//BB2dnb4999/cenSJfTp06dS4gPyElPbtm3DkCFDsHTpUrz77rtITEzEqlWrsHfvXmzbtk1K6Hfu3BlLly7FH3/8AXd3d2zatAm3bt1SeLKmra0tLly4gPDwcOjp6cHIyAgqKiVPEJs6dSpatWqFr7/+Gv3798e5c+fw888/45dffpHquLq6olatWtiyZQv27dsHIC8xNW3aNMhkMoUpwGU1duxY/PDDD5gwYQLGjx+Pu3fvYt68efj8889LFX9hzMzMoK2tjYMHD8LKygpaWlqQy+XljrFaVN6yV28PLn5edo/X/CO8sF98INshoqJKrh+59oDwha9YrjKt6oMjIiKiN1ZxC6u+CZ4+fSrGjRsnLepcp04d4e3tLU6cOCHVwSsL4+Z7dcHe9PR0MXToUCGXy4WhoaEYM2aMmDlzpmjSpIlUvzSLAxe28HKTJk3EvHnzpPdRUVFi8ODBwsTERGhqaop69eqJUaNGSX8vLu3i56+/VFVVhRB5ixp/8sknQi6XC21tbeHp6Snu3bsn7T9+/HhRv359oampKUxNTcUnn3wiXrx4IYQQ4uuvvxbOzs5CW1tbGBkZCR8fH/Ho0aMiYykp1lcXPxci71qbMGGCdOzt2rUTFy9eVNjn77//Fvb29kJTU1O0b99erF+/vsBi7xcvXhRdu3YVenp6QldXV7i6uoqFCxdK20uz+Hlh51BTU1Oq4+HhUWidr7/+WgghxPPnz8WECROEtbW1UFdXF7Vr1xZDhw4VERERUhvp6eli5syZonnz5kIulwsdHR3h5OQkZs+eLS3m/fDhQzFq1Cjh6OgotLW1haGhoWjVqpXCYtKFycrKEpaWluLgwYNSWXEL4796bgo7rs8++0xcvnxZACjwmeTz8vIS77//vhAi77PP31dNTU2YmpqKLl26iPXr10sLSueztrYWP/30U7HHUxH5C1G//nr1u5mWlibkcrk4d+5chft79dgBCH19fdGqVSuxfft2hXrTp08XxsbGQk9PT/Tv31+sWLFCWtA8IyNDDBgwQFhbWwsNDQ1haWkpxo8fL92HC1v8/NX7kRB5i9Lb2NgUG2tWVpZYunSpaNiwodDQ0BAGBgbC09NTnDlzpkDduXPnitq1awu5XC6mTJkixo8fr3AO7969K9q0aSO0tbUFABEWFiaEKHnxcyHyHgLg4uIi1NXVRd26dcXSpUsL9O/j4yPU1NREUlKSEEKInJwcUatWLdGmTZtij1GIwu/xrwoMDBStWrUSGhoawtzcXMyYMUNa3F+Iwhc/L+le/ttvvwlra2uhoqJS4OEAlamyFj+XCVEDVhyrYRITEyGXy5GQkFAlw5jfRlcGfY+OW0YhGfq4cAFwcyu+/tPrMfiw6QMkwgBXIs2gaV2+YalERET0dktPT0dYWBjs7OyKXEyZiGqe/JEvhw4dUnYoRcrJyYGBgQE2bNiADz/8UGlxrF69Grt27cLhw4eVFgNReRT3Z3RZ8iqcykeV4un152iCG8iUm8DFpeRh8YYOZjgPEwio4M6O42gyuXM1RElERERERNXhs88+Q3x8PJKSkqrlqXZl9e+//+KPP/5ATk4O3nnnHaXGoq6uLi3yT/RfxMQUVYoXj9PQFUfx/ke1oadXcmJKRwfw0TqM7PQsJF6NAsDEFBERERHR20JNTU1hce2apmnTpjA2NsbGjRsVFolXhpEjRyq1fyJlY2KKKkzk5iIqMW9hujSD0t/URzkE4tJNbaTfzSy5MhERERERUSV58eKFskMgov9XvmXeiV4RvOIE4mGIXAAHv7uOu3vvlmo/E2dTAMCLiNQqjI6IiIiIiIiIaiompqjCHh1+iAD0x7f4EvdVHBAeGF6q/Uzc6iEeBrj8wqZqAyQiIiIiIiKiGolT+ajCjE1kiIchsqEOg9wE2HZsUar9Ii3c8APeh35OIr57mQS1WjVvUUQiIiIiIiIiqjpMTFGFGRlkYwpWIEdDBwP+9IaTd8mLnwNA8x4WUEU2tJCOf/ffg+0g5T4Ng4iIiIiIiIiqFxNTVGGp0YlQAeBqHo1GH5QuKQUABnIVrNabhqfJciRftACYmCIiIiIiIiL6T+EaU1Rhqc9TAADacvUy71vbUhUA8Dz4aaXGREREREREREQ1HxNTVGHXntTGYXTF+eyWZd7XxMkYAPDiUWJlh0VERET0RpDJZNi9e7eywyiVoUOHonfv3soOo8YIDAyETCZDfHx8qfextbXFDz/8UGUx1RR3796Fubk5kpKSlB3Kf0JISAisrKyQkpKi7FBK7U35Lggh8Omnn8LIyAgymQzBwcHo2LEjJk+erOzQSq0896rqxMQUVditl5Y4i7Y4m9SozPtGWzTDn+iPlU/7VUFkRERERMoVHR2NCRMmoF69etDU1IS1tTV69eqFY8eOKTu0KlGTfvwMHToUMpkMo0ePLrBt3LhxkMlkGDp0aPUHVgJfX1/IZLICrwYNGkh1SvpRHBcXh8mTJ8PGxgYaGhqwtLTE8OHDERkZqVDv+fPnGDNmDOrWrQtNTU2Ym5vD09MTQUFBUp3r16/D29sbZmZm0NLSgq2tLfr374+YmJhij2PWrFmYMGEC9PXzHnCUf23kv2rXro0+ffrg0aNH0j62traFHvvixYsLtO/p6QlVVVVcunSpwLb8z14mk0FdXR21a9dG165dsX79euTm5irUrerkyO3bt9GnTx/p2Irqa9WqVbC1tYWWlhZat26NixcvKmxPT0/HuHHjYGxsDD09PfTp0wfPnj2Ttru4uKBNmzb4/vvvKxxzeHi4wvnX0NCAvb09vvnmGwghKtx+vkuXLuHTTz+tcDu3b99Gv379YGpqCk1NTTg6OmLu3LlITU0tUztF3b8OHjwIf39/7Nu3D1FRUWjUqOy/eyvq1fuCmpoabG1tMWXKFCQnJ5dq/7Zt2yIqKgpyubzUfVbnP0QwMUUVZpHzGO44h04Nosq8r25Te9xFA9zKbYDc9MwqiI6IiIhIOcLDw9GiRQscP34cS5cuxc2bN3Hw4EF06tQJ48aNU3Z4/wnW1tYICAhAWlqaVJaeno4tW7agbt26SoyseA0bNkRUVJTC68yZM6XaNy4uDm3atMHRo0fx66+/4sGDBwgICMCDBw/QqlUrhURQnz59cO3aNWzYsAH37t3D3r170bFjR8TGxgLIS1y9++67MDIywqFDhxAaGgo/Pz9YWloWOzInMjIS+/btKzTxd/fuXTx9+hTbtm3D7du30atXL+Tk5EjbFyxYUODYJ0yYUKD9s2fPYvz48Vi/fn2hMXTr1g1RUVEIDw/HgQMH0KlTJ0yaNAk9e/ZEdnZ2qc5lZUhNTUW9evWwePFimJubF1rnr7/+wueff4558+bh6tWraNKkCTw9PRWSf1OmTMHff/+Nbdu24eTJk3j69Ck++OADhXaGDRuG1atXV9rxHT16FFFRUbh//z7mz5+PhQsXFnm+y8PU1BQ6OjoVauP8+fNo3bo1MjMz8c8//+DevXtYuHAh/P390bVrV2RmVvw35sOHD2FhYYG2bdvC3NwcamrKWao7/74QHh6O7777DmvXrsXUqVNLta+GhgbMzc0hk8mqOMpyElRAQkKCACASEhKUHcobYbXWZOELX/Fg0dYy7xsfmy16Yq8YjA3ixcFLVRAdERERvcnS0tJESEiISEtLU3YoZebl5SXq1KkjkpOTC2x7+fKl9P8AxG+//SZ69+4ttLW1hb29vdizZ4+0PTs7WwwfPlzY2toKLS0t4ejoKH744QeF9oYMGSJ8fHzE0qVLhbm5uTAyMhJjx44VmZmZUh0bGxuxcOFCMWzYMKGnpyesra3FmjVrFNqJjIwUffv2FXK5XNSqVUt4e3uLsLCwAv0U5cSJEwKAwvG9Ki4uTnzyySfC0NBQaGtri27duol79+5J28PDw0XPnj2FoaGh0NHRES4uLuKff/6R9v3oo4+EiYmJ0NLSEvb29mL9+vVFxpIfa6NGjcSmTZuk8s2bNwtXV1fh4+MjhgwZIpWnp6eLCRMmCFNTU6GpqSnatWsnLl68qNDmP//8IxwcHISWlpbo2LGj8PPzK3C8p0+fFu+8847Q0tISVlZWYsKECQrXgI2NjVixYkWRcc+bN080adKkyO1CCOHh4SEmTZpU6LbRo0cLXV1dERUVpVCempoq6tSpI7p16yaEyLsGAYjAwMAi+9m1a5dQU1MTWVlZxcbzuqVLl4qWLVsqlBV2bWzevFkAEHfu3BFClHxu8vn6+ooBAwaI0NBQIZfLRWpqqsL2oq7TY8eOSd+3fKXtszIU1Zebm5sYN26c9D4nJ0dYWlqKRYsWCSGEiI+PF+rq6mLbtm1SndDQUAFAnDt3TirLyMgQmpqa4ujRoxWKMywsTAAQ165dUyh/9913xdixY6X3Fy9eFF26dBHGxsbCwMBAdOjQQVy5ckXanpubK+bNmyesra2FhoaGsLCwEBMmTJC2v34+SroXvi43N1e4uLiIli1bipycHIVtwcHBQiaTicWLFxd5TPnfgRMnTkjbX30NGTJEDBkyRKHMxsZGCFHwO1jcvS03N1eYmJgofH5NmjQR5ubm0vvTp08LDQ0NkZKSUuixFnZfGDVqlNRGSfev179/fn5+Qi6Xi4MHD4oGDRoIXV1d4enpKZ4+fSr19/r5OHHiRIG4ivszuix5FY6YogpLzcxb9FynrkmZ95UbqaKn9nHUQxieB96u7NCIiIiIlCIuLg4HDx7EuHHjoKurW2C7oaGhwvv58+ejX79+uHHjBrp3745BgwYhLi4OAJCbmwsrKyts27YNISEhmDt3Lr788kts3bpVoY0TJ07g4cOHOHHiBDZs2AB/f3/4+/sr1Fm+fDlatmyJa9euYezYsRgzZgzu3r0LAMjKyoKnpyf09fVx+vRpBAUFQU9PD926dauUUQdA3tSQy5cvY+/evTh37hyEEOjevTuysrIA5E2xy8jIwKlTp3Dz5k1899130NPTAwDMmTMHISEhOHDgAEJDQ7F69WqYmJT898/hw4fDz89Per9+/XoMGzasQL0vvvgCO3bswIYNG3D16lXY29vD09NT+hweP36MDz74AL169UJwcDBGjhyJmTNnKrTx8OFDdOvWDX369MGNGzfw119/4cyZMxg/fny5z1lZ5ObmIiAgAIMGDSowOkdbWxtjx47FoUOHEBcXBz09Pejp6WH37t3IyMgotD1zc3NkZ2dj165dZZrCdfr0abRsWfL6s9ra2gBQputLCAE/Pz98/PHHaNCgAezt7bF9+/ZS7du5c2c0adIEO3fuLHV/mzdvls5VUa/Tp0+Xur3XZWZm4sqVK+jSpYtUpqKigi5duuDcuXMAgCtXriArK0uhToMGDVC3bl2pDpA3KqZp06YViqcoly9fxpUrV9C6dWupLCkpCUOGDMGZM2dw/vx5ODg4oHv37tK6Yjt27MCKFSuwZs0a3L9/H7t370bjxo2L7ae4e+HrgoODERISgs8//xwqKoqpjSZNmqBLly74888/S3V81tbW2LFjB4C8UX1RUVFYuXIlVq5ciQULFsDKygpRUVGFTh0Fir+3yWQydOjQAYGBgQCAly9fIjQ0FGlpabhz5w4A4OTJk2jVqlWZRpBpa2tL352S7l+FSU1NxbJly7Bx40acOnUKkZGRmDZtGgBg2rRp6NevnzTyMCoqCm3bti11bGVVoxNTq1evhqurKwwMDGBgYAB3d3ccOHCgyPr+/v4F5iNraWlVY8T/PSI3F3G5BsiFDDr1Ch+aWhLT2nmX4YtrjyszNCIiInrLpaTkvV79vZyZmVf2+u/s/LqvLi+TlZVXlp5eurpl8eDBAwghFNYFKs7QoUMxcOBA2Nvb49tvv0VycrK0xoy6ujrmz5+Pli1bws7ODoMGDcKwYcMKJKZq1aqFn3/+GQ0aNEDPnj3Ro0ePAmtZde/eHWPHjoW9vT1mzJgBExMTnDhxAkDedKLc3Fz8/vvvaNy4MZydneHn54fIyEjpB1VF3L9/H3v37sXvv/+O9u3bo0mTJti8eTOePHkiLf4eGRmJdu3aoXHjxqhXrx569uyJDh06SNuaNWuGli1bwtbWFl26dEGvXr1K7Pfjjz/GmTNnEBERgYiICAQFBeHjjz9WqJOSkoLVq1dj6dKl8PLygouLC3777Tdoa2tj3bp1APJ+m9SvXx/Lly+Hk5MTBg0aVGCq2qJFizBo0CBMnjwZDg4OaNu2LX788Uf88ccfSH/9QivGzZs3CyQ/Clsr63XPnz9HfHw8nJ2dC93u7OwMIQQePHgANTU1+Pv7Y8OGDTA0NES7du3w5Zdf4saNG1L9Nm3a4Msvv8RHH30EExMTeHl5YenSpQprGxUmIiIClpaWxdaJiorCsmXLUKdOHTg5OUnlM2bMKDbxc/ToUaSmpsLT0xNA3ueb/xmVRoMGDRAeHl7q+t7e3ggODi72VZokXFFevHiBnJwc1K5dW6G8du3aiI6OBpC3Vp2GhkaBhPardfJZWloiIiKi3PG8qm3bttDT04OGhgZatWqFfv36YfDgwdL2zp07SwlCZ2dnrF27FqmpqTh58iSAvO+subk5unTpgrp168LNzQ2jRo0qts/i7oWvu3fvHgAUe73n1ymJqqoqjIyMAABmZmYwNzeHXC6HXC6Hvr4+VFVVYW5uDlNT0wL7lube1rFjR+k+eurUKTRr1kyhLDAwEB4eHqWKFchLVm7ZsgWdO3cu1f2rMFlZWfj111/RsmVLNG/eHOPHj5f+zNDT04O2tra09py5uTk0NDRKHV9Z1ejElJWVFRYvXowrV67g8uXL6Ny5M3x8fHD7dtEjawwMDBTmI1fWl5IKl/XsJdZjOBZgLs5EWperDU0bczyCLXadNsXdvXcrOUIiIiJ6W+np5b1evPhf2dKleWWvD1AxM8srf3Xt51Wr8spGjFCsa2ubVx4a+r+y1wYelagso0sAwNXVVfp/XV1dGBgYKKwvs2rVKrRo0QKmpqbQ09PD2rVrCyxk3bBhQ6iqqkrvLSwsCixQ/Wo/MpkM5ubmUp3r16/jwYMH0NfXlxICRkZGSE9Px8OHD8t0PIUJDQ2FmpqawogLY2NjODk5IfT/T/bEiRPxzTffoF27dpg3b55CkmTMmDEICAhA06ZN8cUXX+Ds2bOl6tfU1BQ9evSAv78//Pz80KNHjwIjrR4+fIisrCy0a9dOKlNXV4ebm5sUW2hoqELsAODu7q7w/vr16/D391dIqnh6eiI3NxdhYWGlihcAnJycCiQ/FixYUOr9S3v99enTB0+fPsXevXvRrVs3BAYGonnz5goj7RYuXIjo6Gj8+uuvaNiwIX799Vc0aNAAN2/eLLLdtLS0IgcIWFlZQVdXV1qnaseOHQo/eKdPn15s4mf9+vXo37+/tM7PwIEDERQUVOprVAhRpnV29PX1YW9vX+wrf+RXTaCtrV3kot+RkZEK1+a3335bbFt//fUXgoODcf36dWzduhV79uxRGCX47NkzjBo1Cg4ODpDL5TAwMEBycrJ0b+rbty/S0tJQr149jBo1Crt27Spx/auS7oWFKev9trKV5t7m4eGBkJAQPH/+HCdPnkTHjh2lxFRWVhbOnj2Ljh07FttPfsJaW1sbbm5ucHd3x88//1yq+1dhdHR0UL9+fel9YX9mVBflrNpVSq//C8jChQuxevVqnD9/Hg0bNix0n/w/YKl6pD6MQiqsAADGdQsOUy+Nw/Gt8Ac6wiH1Hgx8/sSAPQPg5O1U8o5ERERENZSDgwNkMpk0TaMk6urqCu9lMpn09LCAgABMmzYNy5cvh7u7O/T19bF06VJcuHCh1G2Upk5ycjJatGiBzZs3F4ivsFECVWHkyJHw9PTEP//8g8OHD2PRokVYvnw5JkyYAC8vL0RERGD//v04cuQI3n33XYwbNw7Lli0rsd3hw4dL0+lWrVpVZfEnJyfjs88+w8SJEwtsK8ti6/lPQSsrU1NTGBoaFvljNDQ0FDKZTKFtLS0tdO3aFV27dsWcOXMwcuRIzJs3T2E0mLGxMfr27Yu+ffvi22+/RbNmzbBs2TJs2LCh0H5MTEzw8uXLQredPn0aBgYGMDMzk57Y9/q+RR17XFwcdu3ahaysLKxevVoqz8nJwfr167Fw4cJC93v9HNjZ2ZVYL9/mzZvx2WefFVvnwIEDaN++fanbfJWJiQlUVVULjEJ79uyZ9LvW3NwcmZmZiI+PVxg19WqdfHFxcQrJhldZWloiODhYep8/Qqgo1tbW0mfh7OyMhw8fYs6cOfD19YWWlhaGDBmC2NhYrFy5EjY2NtDU1IS7u7s0vcza2hp3797F0aNHceTIEYwdOxZLly7FyZMnC9yL8pXmPpbP0dERQN5n2qxZswLbQ0NDpTr5U/1eTWJllXUobAU0btwYRkZGOHnyJE6ePImFCxfC3Nwc3333HS5duoSsrKwSp8o5OTlh7969UFNTg6WlpZTQLWkEY1EKO9fKSvLV6BFTr8rJyUFAQABSUlIK/MvEq5KTk2FjYwNra+sSR1dRxaWGPcNE/Ij5Kr5o3rx8K/yb6abCCLEwQBJkqjKEB4ZXaoxERET0dkpOznu9Ovhl+vS8sp9/VqwbE5NX/mpuYNy4vLLXZzqEh+eVvzo7pJCHixXLyMgInp6eWLVqVaFPL3v9ceTFCQoKQtu2bTF27Fg0a9YM9vb2lTKC6XXNmzfH/fv3YWZmVmBESFkeMV4UZ2dnZGdnKyTUYmNjcffuXbi4uEhl1tbWGD16NHbu3ImpU6fit99+k7aZmppiyJAh2LRpE3744QesXbu2VH3nr5OVv47W6+rXrw8NDQ0EBQVJZVlZWbh06ZIUm7Ozc4EpRefPn1d437x5c4SEhBQ6qqYqp8HkU1FRQb9+/bBly5YCU7zS0tLwyy+/wNPTs9iEhIuLS7FP3NPQ0ED9+vWLrdOsWTOEhIQUus3Ozg7169cvNClVks2bN8PKygrXr19XGFG1fPly+Pv7KzzdrzDHjx/HzZs30adPn1L3WdVT+TQ0NNCiRQuFabe5ubk4duyY9Lu3RYsWUFdXV6hz9+5dREZGFvhtfOvWrUKTNACgpqamcE2WlJh6naqqKrKzs6XEU1BQECZOnIju3bujYcOG0NTUxItXh7AibwRXr1698OOPPyIwMBDnzp0rdrRdWTRt2hQNGjTAihUrCiSvrl+/jqNHj2LgwIEA/pdcj4r635PkX03SAZC+oyVdR68rzb1NJpOhffv22LNnD27fvo133nkHrq6uyMjIwJo1a9CyZctC1yN8PT57e3vY2toq3E9Kc/8qDw0NjTKfi/Kq0SOmgLzhau7u7khPT4eenh527dpV5Ml1cnLC+vXr4erqioSEBCxbtgxt27bF7du3YWVlVWQfGRkZCgv+JSYmVvpxvK1SI59DFQJmGoko75+174+vg+yzeX97FDmAbUfbyguQiIiI3lqF/R1eQwOF/p2ksLrq6nmv0tYtq1WrVqFdu3Zwc3PDggUL4OrqiuzsbBw5cgSrV68udorFqxwcHPDHH3/g0KFDsLOzw8aNG3Hp0qUyjfoojUGDBmHp0qXw8fGRFvuNiIjAzp078cUXXxT79+nX3bx5UyHxIJPJ0KRJE/j4+GDUqFFYs2YN9PX1MXPmTNSpUwc+Pj4AgMmTJ8PLywuOjo54+fIlTpw4Ia0fM3fuXLRo0QINGzZERkYG9u3bV+TaMq9TVVWVzver0x3z6erqYsyYMZg+fTqMjIxQt25dLFmyBKmpqRjx/3M9R48ejeXLl2P69OkYOXIkrly5UmBx+RkzZqBNmzYYP348Ro4cCV1dXYSEhODIkSP4+fVsaTGys7MLJJZkMpnCOkTPnz8v8MPawsIC3377LY4dO4auXbtiyZIlaNSoEcLCwjB79mxkZWVJI8ZiY2PRt29fDB8+HK6urtDX18fly5exZMkS6fPYt28fAgICMGDAADg6OkIIgb///hv79+9XWFD+dZ6enhg5ciRycnIKPd/FSUpKKnDsOjo6MDAwwLp16/Dhhx+iUaNGCtutra0xa9YsHDx4ED169ACQ9xsvOjoaOTk5ePbsGQ4ePIhFixahZ8+eCusklURfX79cSbR8mZmZUpIuMzMTT548QXBwMPT09KTRSJ9//jmGDBmCli1bws3NDT/88ANSUlKkRfrlcjlGjBiBzz//HEZGRjAwMMCECRPg7u6ONm3aSH2Fh4fjyZMnCoukV0RsbCyio6ORnZ2NmzdvYuXKlejUqRMMDAwA5N2bNm7ciJYtWyIxMRHTp09XmNaYnyxs3bo1dHR0sGnTJmhra8PGxqZS4pPJZFi3bh26du2KPn36YNasWTA3N8eFCxcwdepUuLu7Y/LkyQDyEmRt2rTB4sWLYWdnh5iYGMyePVuhPRsbG8hkMuzbtw/du3eHtra29PCF4jg4OJR4bwPy1pmaOnUqWrZsKbXboUMHbN68GdOnTy/3eSjN/as8bG1tcejQIdy9exfGxsaQy+VFjnSrsBKf26dkGRkZ4v79++Ly5cti5syZwsTERNy+fbtU+2ZmZor69euL2bNnF1uvsEchopSPNfyvuzF2tfCFr9hgNLlC7SxV+UL4wlecGvVHJUVGREREb4PiHkX9Jnj69KkYN26csLGxERoaGqJOnTrC29tb4bHbAMSuXbsU9pPL5cLPz08IkfcY8KFDhwq5XC4MDQ3FmDFjxMyZMxUeHT5kyBDh4+Oj0MakSZOEh4eH9L6wR9U3adJEzJs3T3ofFRUlBg8eLExMTISmpqaoV6+eGDVqlPT34sL6eVX+I8lff6mqqgoh/vdIdblcLrS1tYWnp6f0SHUhhBg/fryoX7++0NTUFKampuKTTz4RL168EEII8fXXXwtnZ2ehra0tjIyMhI+Pj3j06FGRsZQUq4+PjxgyZIj0Pi0tTUyYMEE69tcfty6EEH///bewt7cXmpqaon379mL9+vUKj2AXQoiLFy+Krl27Cj09PaGrqytcXV3FwoULpe2FfQ6vKuq3iaamplTHw8Oj0Dpff/21EEKI58+fiwkTJghra2uhrq4uateuLYYOHSoiIiKkNtLT08XMmTNF8+bNhVwuFzo6OsLJyUnMnj1bpKamCiGEePjwoRg1apRwdHQU2trawtDQULRq1Uq6NouSlZUlLC0txcGDB6Wy1x9XXxgbG5tCj+uzzz4Tly9fFgAKfCb5vLy8xPvvvy+EyPvs8/dVU1MTpqamokuXLmL9+vUiJydHYT9ra2vx008/FXs8FREWFlboMb363RRCiJ9++knUrVtXaGhoCDc3N3H+/HmF7WlpaWLs2LGiVq1aQkdHR7z//vsiKipKoc63334rPD09Kz1mVVVVYWVlJUaNGiViYmKkelevXhUtW7YUWlpawsHBQWzbtk3h+t61a5do3bq1MDAwELq6uqJNmzbi6NGj0v6vfxdKuhcW5caNG6JPnz7CyMhIqKurSzmAlJQUhXohISHC3d1daGtri6ZNm4rDhw8LAAr34wULFghzc3Mhk8mk+8OKFSuEjY2NQlseHh5i0qRJ0vuS7m1CCHHt2jUBQMyYMUMqW7FihQCg8F0pzLx58xTu+a8r6f71+vfPz89PyOVyhTZ27dolXk0RxcTESPey18/Tq/0W9Wd0QkJCqfMqMiGUvFJYGXXp0gX169fHmjVrSlW/b9++UFNTK/YxkYWNmLK2tkZCQoKUDabC7e22Gt8daoIGhtFY9/KDcrezyWQKHsYaotdgQzTfMKkSIyQiIqI3WXp6OsLCwmBnZ8enLRO9QVatWoW9e/fi0KFDyg6lSDk5OTAwMMCGDRvw4YcfKjucCsnMzISDgwO2bNmisAg2UVUq7s/oxMREyOXyUuVVavxUvtfl5uYqJJGKk5OTg5s3b6J79+7F1tPU1ISmpmZlhPef8+CpFs6iLSLTKrZ6/2nNztgNN0SfuIzVJVcnIiIiIqIa7LPPPkN8fDySkpIqNBWuqvz777/4448/kJOTg3feeUfZ4VRYZGQkvvzySyal6I1UoxNTs2bNgpeXF+rWrYukpCRs2bIFgYGBUtZ98ODBqFOnDhYtWgQAWLBgAdq0aQN7e3vEx8dj6dKliIiIwMiRI5V5GG81nbRYuOMsXCzSALxb7naEoRFintZG6AuTkisTEREREVGNpqamhq+++krZYRSpadOmMDY2xsaNG9+Kp7rnL2hO9Caq0YmpmJgYDB48GFFRUZDL5XB1dcWhQ4fQtWtXAHlZ4fzHPgLAy5cvMWrUKERHR6NWrVpo0aIFzp49W6GV6Kl4JulP4Ykj6NZCBxVJTPXtlojUkM1okP0AQOtKi4+IiIiIiOh1rz89joiUp0Ynpta9/uze1wQGBiq8X7FiBVasWFGFEdHrUlPyHsupY16xtbhafVAXZ7+/CJGVg9z0TKhoVf3jdImIiIiIiIhIuVRKrkJUtPhUDeRABm3LWhVqR966AdSQhVyoIv5sSCVFR0REREREREQ1GRNTVCEbM/rha8zFppBmFWpHpqaKRA0TXEEzXP87opKiIyIiorfFG/YgaSIiordeZf3ZzMQUlZvIzUUS9AAAxlY6FW5vv6w7/oY3TpxSrXBbRERE9HZQV1cHAKSmpio5EiIiInpV/p/N+X9Wl1eNXmOKaras5wnoh61IgzYGfVrxJx82M32C9H9lkL14XgnRERER0dtAVVUVhoaGiImJAQDo6OhAJpMpOSoiIqL/LiEEUlNTERMTA0NDQ6iqVmxwCRNTVG5pD59CFQJyJKKWrbzC7X3ueRt71p2CXdLLSoiOiIiI3hb5j3LPT04RERGR8hkaGkp/RlcEE1NUbqlhzwAAOioZkKlUfFaosVt9YF0sYhMrNgyQiIiI3i4ymQwWFhYwMzNDVlaWssMhIiL6z1NXV6/wSKl8TExRuSWFvcAhdIWZykuMTQe0tCrWnnGnxgAuIiFHDxnPXkKzdsWe9EdERERvF1VV1Ur7SzARERHVDExMUblFh6XhHNoC2UBl/B1R294K6zAM0TBHj+3X0Gpc64o3SkREREREREQ1Fp/KR+WW8TwebXEWXXWDUMFF+AEAMhmQLdNAFjRw7VhcxRskIiIiIiIiohqNI6ao3NQTXuI9HEFL21QA7SqlzSmWfyHyiQrs4xMAeFVKm0RERERERERUM3HEFJVbalwaAEC7VgUXl3pFm4ZJMEEcEiLiK61NIiIiIiIiIqqZmJiickuIz0UOZNAx1a20No1dLQEAsc+yK61NIiIiIiIiIqqZOJWPym1v7DsIgA9C7oRgeyW1qdnEGddghPMpWhiRmwuZCnOnRERERERERG8rJqao3F5m5o2U0jWsvMtI260R9sAdgEDs9X9h0sy60tomIiIiIiIiopqFiSkqty7iCFxxDYM/dgPgWCltWjjooxFuQxupeHo0jokpIiIiIiIiorcYE1NUPkIgI1cdukhFncZGldasTAZ8YfQbHsXVQk5oLQCeldY2EREREREREdUsXMCHyiXrRQKyoQ4A0LGvU6ltG9fJe8pfbEhMpbZLRERERERERDULR0xRuaQ+fIogtIUA8DzbEFaV2LaxozHEzVT8G84n8xERERERERG9zZiYonJJffQM59AGydDHi1jAqhKXgrqj3wqL0QaWMdEYWnnNEhEREREREVENw6l8VC5pj1+gKYLhrnoBlpaV23b9DpbIgBaeCVPkZmZVbuNEREREREREVGNwxBSVS+q/ceiCENjqx8PMrHWltt2yrx0mDP8RciQi4bw3anVwrdT2iYiIiIiIiKhm4IgpKpfU6EQAgI6erNLb1tJTRwPNcKghB7GnQyq9fSIiIiIiIiKqGZiYonJJiklDDmTQNlCvkvaNjQQAIPZqZJW0T0RERERERETKx6l8VC5nI+vga4xAw8eR6FkF7T83csTxqIZIufQElTtRkIiIiIiIiIhqCiamqFxikzQBAFqaokraf6znglPogJToG1XSPhEREREREREpH6fyUbk0y72C6ViCRd0Cq6T9dzxU0QJXYJd1F3f33q2SPoiIiIiIiIhIuZiYonJJTwd0kQZbR80qab9uXaAX9qERbiPAJ4DJKSIiIiIiIqK3EBNTVC5pmXmzQHXqmlRJ+1H3kwEIADLIVIDwwPAq6YeIiIiIiIiIlIeJKSqXszmtcArvICynbpW0b9fZDoAMydBBYq4ebDvaVkk/RERERERERKQ8XPycyiwrNgFX0AKPUB8fJSXhnSrow8nbCcHGnbA7tgM8dU/DydupCnohIiIiIiIiImXiiCkqs7SHUXDEPTTDVbi661ZZPy1byQAIxKdrV1kfRERERERERKQ8HDFFZZb6KBptcBF6Kilo5da8yvoZMqUWUg4uhnZOGnKSXKCqr1NlfRERERERERFR9eOIKSqz1MgXAABt9ewq7adOFxfIZYnIhSpi9p6v0r6IiIiIiIiIqPoxMUVllvJvHHKgAh0tUaX9yFRUYGGYBgCIOnyzSvsiIiIiIiIiourHqXxUZo/DcvA15kAvMQVDBCCTVV1fT01dse2lGyIPhWNd1XVDRERERERERErAxBSV2bPovP+qqogqTUoBQIZVfdy+1wi5zzWqtiMiIiIiIiIiqnacykdlZpYRielYgp+brK3yvrp/bIx3cRRtc08hNz2zyvsjIiIiIiIiourDxBSVWUZiJnSRhvrWWVXeV8tPnPEujsMaT/Bi/8Uq74+IiIiIiIiIqk+NTkytXr0arq6uMDAwgIGBAdzd3XHgwIFi99m2bRsaNGgALS0tNG7cGPv376+maP87UpNzAAA6tfWrvC+Zmios5KkAgKiD16u8PyIiIiIiIiKqPjU6MWVlZYXFixfjypUruHz5Mjp37gwfHx/cvn270Ppnz57FwIEDMWLECFy7dg29e/dG7969cevWrWqO/O12JckRp/AObmY6VUt/hjYGiIQVjp2o0ZcrEREREREREZWRTAghlB1EWRgZGWHp0qUYMWJEgW39+/dHSkoK9u3bJ5W1adMGTZs2xa+//lrqPhITEyGXy5GQkAADA4NKiftt0knlJAKFBz7zDMevB22rvL/ZHU5i4WkPNFINxc1s5yrvj4iIiIiIiIjKryx5lTdmCEpOTg4CAgKQkpICd3f3QuucO3cOXbp0USjz9PTEuXPnqiPE/wxz8RTNcA1FfAyV7p1etaCHJKjnpEFk51RPp0RERERERERU5dSUHUBJbt68CXd3d6Snp0NPTw+7du2Ci4tLoXWjo6NRu3ZthbLatWsjOjq62D4yMjKQkZEhvU9MTKx44G+p7JdJaIB7aIB76D9sTLX02XWCM2Z+MR/ZUEfskWyYeLlVS79EREREREREVLVq/IgpJycnBAcH48KFCxgzZgyGDBmCkJCQSu1j0aJFkMvl0sva2rpS23+bpD54CgCQIReaVibV0qeqljrM9VIAAFH/XKuWPomIiIiIiIio6tX4xJSGhgbs7e3RokULLFq0CE2aNMHKlSsLrWtubo5nz54plD179gzm5ubF9jFr1iwkJCRIr8ePH1da/G+btLBo5EAGHZV0yFSq7/KxsNMEADw9H1ltfRIRERERERFR1arxianX5ebmKky7e5W7uzuOHTumUHbkyJEi16TKp6mpCQMDA4UXFS418gWWYRrm5Pri/v3q6/dfSzeswSjMvtG3+jolIiIiIiIioipVo9eYmjVrFry8vFC3bl0kJSVhy5YtCAwMxKFDhwAAgwcPRp06dbBo0SIAwKRJk+Dh4YHly5ejR48eCAgIwOXLl7F27VplHsZbJSnyJdKgDUCGmHMP4OBgXy39WrS1Q9QhSyRn6UHk5lbraC0iIiIiIiIiqho1OjEVExODwYMHIyoqCnK5HK6urjh06BC6du0KAIiMjITKKwmKtm3bYsuWLZg9eza+/PJLODg4YPfu3WjUqJGyDuGtE3E1Fl9gKVKhjcNDXsLEsD+cvJ2qvN+Ooxug/7wA1MYzvDzZEUadmlR5n0RERERERERUtWp0YmrdunXFbg8MDCxQ1rdvX/Tty+leVeX5vxnQgYAO0iBTlSE8MLxaElP6ZtrorHMBUamGiN53mYkpIiIiIiIiorcA50NRmehrZ////wmIHAHbjrbV1rdFXXUAQNS58Grrk4iIiIiIiIiqTo0eMUU1T5yohVNoAqdazzDJv3m1jJbKp+lSD8F3auPxjQy8W229EhEREREREVFVYWKKyiQk3hLH0RkpKg/g5F09C5/nS3Jqgd1oBcOUePzGBdCJiIiIiIiI3nj8ZU9lYiReoBmuoW2d8Grvu/MYZ9RFOBrgDi4tOVHt/RMRERERERFR5eKIKSoTRzyAD17Au3ktAF2qte+Ya08wHAEAgAOzALmLVbVOJSQiIiIiIiKiysURU1QmmRkCAKBhqFPtfYedCAMg/v+dQHhgeLXHQERERERERESVh4kpKpOMLBkAQKOWbrX3bdfJDoAMuQCewhJ121lXewxEREREREREVHk4lY/KxC99IK6iCWQ372JuNfft5O2EPn9+gA4D6+AljPDhjdNw7lPNQRARERERERFRpeGIKSqT1FwtZEIT6nqaSum/0YDGsNOKhgYycPrPJ0qJgYiIiIiIiIgqBxNTVCbe2IMJ+BF9e6QpLYbvBlzBF1gK84iLSouBiIiIiIiIiCqOiSkqNZGbC3VkwxgvUbu+ntLieMf3PWggE88z5Yg7elVpcRARERERERFRxTAxRaWWk5AC8f+XjIaZodLi0LKpDZtaiQCA0JWHlBYHEREREREREVUMFz+nUst89hKX0QK5UMFLIYe5EmPJbdYc/sfbY/fBFFxTYhxEREREREREVH4cMUWllvk8AYHwwH50x7NYdaXG4jzMHeGww83sBngezEXQiYiIiIiIiN5ETExRqWU+T0AD3IErbsDUVLmxuA1ywEdqWzEOv+DpL7uVGwwRERERERERlQsTU1RqmbFJ6In9GKH2BywtlRuLTAaMdL8NI7zE3X8eKDcYImXIyMAln2/wT+/fcHfvXWVHQ0REREREVC5MTFGpZcQmAwA01HKVHEkep1EdAAAPnuogOz5ZydEQVSMhcLDpTOzfm4PLe54gwCeAySkiIiIiInojMTFFpZb5MgUAoKEulBxJHouPOiFGZobd6I1d04OUHQ5RtYkY9Q0u3DH4/3cyyFSA8MBwZYZERERERERULkxMUamFRapgEWbgq5RZyg4FACBTVcEdg1a4hFbYtFNH2eEQVYu4H/7AX+uS8ertW+QCth1tlRYTERERERFReTExRaUW/1IgA1pIg5ayQ5EM8k5Gc1xFnZe3IbJzlB0OUZVKO3QKWz6/jDTowLJ2Dpp0NgIAGKvFw6mXo5KjIyIiIiIiKjsmpqjULBCF8fgJC+qsUXYoksE/t8KH2IHa4hl29ljHdXborZVz7yG29dqIWGEMA+1MDLwyFe/+NgCAQGy2IRL+Oa3sEImIiIiIiMqMiSkqvdQ0mCAO9eWxyo5EomagCzOjLADArcNPuQg0vZVEfDy2NF+GsCwrqMly8NHxkdCrI4d+PVPUNU0DAISuOKTkKImIiIiIiMqOiSkqtcyUvASQhq6akiNRpGVTG8nQwXF0QraKOheBprfO4e4r8SjFHIBAtlBFfEymtM2lZz0AQOjZl4CoGQ8mICIiIiIiKi0mpqjUHrw0xkW0xM1MJ2WHoqDZl92wAUNwCh64nNuci0DTW+fBrfT//z8ZZKoyheSr80wfAEBkuhmSjpyv/uCIiIiIiIgqgIkpKrXrCbbYjx7Y98xN2aEocPmwIQY2vglLPIElnsCmaS1lh0RUqURG3ggpmQwQOUIh+WrgaA4roxQAMoR+f0A5ARIREREREZUTE1NUarVyY+GMELhaxCg7lAKWXeiAWerLURf/4sLQ1coOh6jy5OYiNTNv+mwjbzsM2DMATt6KoxZdutsCAEJPveB0PiIiIiIieqMwMUWl5oIQ9Mc2jGx3R9mhFKCurY6OY5wBAOdPpCM94pmSIyKqHGm3HyINOgCAnhs+LJCUAv43nS8izRTJJ69Ua3xEREREREQVwcQUlVpmlgwAoGGoo+RICueydCiMNJJwDq0xv9s5ZYdDVCniTt0GAOirpUJDXvh3z7BhHdQxTIGACu4s21ed4REREREREVUIE1NUalJiqpaukiMpnIqGOlI79cAe9MZPd7ogNpSjpujNF3spDABgLM8ptp6zpzUAIDSw5k21JSIiIiIiKgoTU1Rqm7P64ntMxq4QR2WHUqQpuzrAThaOtjiHy5/+puxwiCos9k5eosnIUrPYei4zvQEAYSmmSD0bXNVhERERERERVQompqjU4oUciZAD2trKDqVIGtqq2DvpGNrhLK6dSUF6eLSyQyKqkLjHKQAAYwfjYuvVamoDC4P/n863ZG91hEZERERERFRhTExR6QgBLxzAp1gL7+65yo6mWA2XDoWZZgIyoIVN7X7F3b13lR0SUbnFxub917iZdYl1nbtaAgBO7U/mdU9ERERERG8EJqaoVHKS02CAZFgiCnUa6Ck7nGLJ1FTh0K0ensAC3z/th+99Avkjnd5IIisLsRl53zejtg1KrK/dpikAICFLBwE+AbzuiYiIiIioxmNiikol89lL6f81atdSYiSlk1m3Po6iC0LhggPwwu3fzio7JKIyS7lyB5nQhAy5qOXuVGL9F0/SAQgAMshkQHhgeFWHSEREREREVCFMTFGpZMbE4zoa4xZckJCmoexwSlS/Sz30x1Y0QTD6Yyse7L+LhAuhyg6LqExiT+dds3L1NKhpl/y9s+tkByDv6ZlCALYdbaswOiIiIiIioopjYopKJfNFIg6iG7ajL54+VXY0JXPydsLQPe9j4bCHsFCLQVquNjZ7/Ia0sChlh0ZUanFXwwEAxkalW9fNydsJbr1M8vbRSISTd8mjrIiIiIiIiJSJiSkqlYzniaiHR3CS3YWRkbKjKR0nbyf0WN8HI04Nhb5KCi5kNEEHh2jsG72Pa+/QGyH2Xt7K50Z1Sv8kzDa+3QEALzN1kRXJRCwREREREdVsTExRqWTGJaMvdmCSxhpYWCg7mrKRu7ugl9/72Ip+uJzTDD+u0eDC0PRGiPs3FQBg7GRa6n0Mm9lCXy0VuVDFkw1Hqyo0IiIiIiKiSlGjE1OLFi1Cq1atoK+vDzMzM/Tu3Rt37xafTPD394dMJlN4aWlpVVPEb6/MuGQAgIa6UHIk5eMw2B0TGh5HI9yEGy4CELj962llh0VUrNiXqgAA4xY2pd5HJpPBxjbv1h5xIKRK4iIiIiIiIqosNToxdfLkSYwbNw7nz5/HkSNHkJWVhffeew8pKSnF7mdgYICoqCjpFRERUU0Rv70y4/NGbmjU/HXPizTiW3t8iJ1QRzYAGW4eiMSu9t8jNz1T2aERFSBS0xCXpQcAMGrvUqZ967avCwCIvJVU6XERERERERFVJjVlB1CcgwcPKrz39/eHmZkZrly5gg4dOhS5n0wmg7m5eVWH95/y6IkGVmASzJLi8YmygyknJ28nDNgzAPd33sSzvy9ia9y7WHymA4YbbEDXnppwHtqai0VTjZF49jayoQ4V5MCwWb0y7WvzUTvAbxceJ8mRExcPVSPDqgmSiIiIiIiogmr0iKnXJSQkAACMSlh9Ozk5GTY2NrC2toaPjw9u375dHeG91V7Gy5AAQ8TmGio7lApx8nZCT/8PMSR6MWLMXZEObTzKssL1XY8Q4BOA66vOKDtEIgBA7NlQAEAtrTSoqKuWaV/Tzo2hpZKBLGggetOxqgiPiIiIiIioUrwxianc3FxMnjwZ7dq1Q6NGjYqs5+TkhPXr12PPnj3YtGkTcnNz0bZtW/z7779F7pORkYHExESFFykyF1EYhd8wy3qzskOpFGrqKjgXZoGJbufRGhcAyAAAe8cfxqGWXyHpxiPlBkj/ebHBjwEAxsZl31emIoONZTYAIGLv9coMi4iIiIiIqFK9MYmpcePG4datWwgICCi2nru7OwYPHoymTZvCw8MDO3fuhKmpKdasWVPkPosWLYJcLpde1tbWlR3+G081PRV18BSupk+VHUql0dICxn5VCzLIIJMBOVDBObRB0BVNrGzih812s7F34J98eh8pRdz9OACAkbVuufav2ybv8ZmRwXGVFhMREREREVFleyMSU+PHj8e+fftw4sQJWFlZlWlfdXV1NGvWDA8ePCiyzqxZs5CQkCC9Hj9+XNGQ3zqZqVkAAE29N3j180LkrzvVenIb3Oo8AQfQHYfVuiMHangQro5rAXcR4BOAy/P2KjtU+o+JfZoBADB2NiuyzvPnQEZG4dvq9m0NAIiM1YNIS6/0+IiIiIiIiCpDjU5MCSEwfvx47Nq1C8ePH4ednV2Z28jJycHNmzdhYWFRZB1NTU0YGBgovEhReIIRbqAR7mfbKjuUSufk7QTP7z0xZKIhdHWBL7c3h/M7RgAE8qf4/bPgKnbVGY+LEzfi4OSDHEVFVS4uIe/ZFMYtC7/vnTsHNGgA/PFH4ftb9HaDOrKQBm08336yqsIkIiIiIiKqkBqdmBo3bhw2bdqELVu2QF9fH9HR0YiOjkZaWppUZ/DgwZg1a5b0fsGCBTh8+DAePXqEq1ev4uOPP0ZERARGjhypjEN4a1xOdMRO9MHWyDbKDqXK+PgA4eGAt48Kmkx/D4AMMukbIsONp6Y48NMjXFh5HgE+Abi7k4vqU9XIjU/Eyxx9AICxR8E19XJygLFjARcXoKhnQahqqMHKNG84VcT2S1UWKxERERERUUXU6MTU6tWrkZCQgI4dO8LCwkJ6/fXXX1KdyMhIREVFSe9fvnyJUaNGwdnZGd27d0diYiLOnj0LFxcXZRzCW0M/NwF2eIQG5gnKDqVKmZjk/dfJ2wndN3+E0JYfo8+OARi12wu1DLL/v9b/j6LqtwF3RyyBSOBi+VS54k9eRy5UoYYs6DsXnL6cmwt89BEQEQF06FB0O3Vb5F3QkZeeVVWoREREREREFSITQghlB1HTJCYmQi6XIyEhgdP6/t/velPwJMUQA76qB6dvPlF2OFUuNxdo1Qq4ehWYOhVYtgy4uzdvvanX6cuSYGKtg+ZTOqDR5C5KiJbeNvdnrceWxY9RWycJo1OWFVkvMxPQ0AAePwbkcuD121XYmsP4Y/Q56MuSMCVzMWRqalUcORERERERUdnyKjV6xBTVHJnZeaOENGqV7wlhbxoVFWDOHMDWFhg4MK8sf6H0NlPawPvXbmjnqQs1WRaShD7CIlWxY0oQNsgnInzqTxAvXyo1fnqzxd74FwBgZFr8LVpDA5gxA7CzA9atK7jd6qMOUEEOkoQ+4g9dqIpQiYiIiIiIKoT/fE6lkpmd9wNZw1hfyZFUn969gW7dAC2t/5U5eTvBydsp781nrZExdh+u/HoF+eMOwxONEf59HGp9Px91rGXINTGDs7dD3kgqQ8PqPgR6Q8U+jAcgh7Gt4vftwoW8hOnKlYCzc15ZvXp5a07dvFmwHXV9LVgapuLfeH1E/HkWtXq0q/LYiYiIiIiIyoKJKSqVbTkf4D7sUSc0Hv+lZeRfTUpFRORNl3o1v2TfzQGXV1+BTFUGkSNQz0EF/z7MwMvcWnj5GMDjTIRcu42D8y/AWusFVGvpIUdujEYDGqHhLO+8IS9Er4mLzgIAGDU0VyifNg04cwZYsgTw88sr+/hj4J13gIYNC2+rbmM5/j2di8igf9G0CmMmIiIiIiIqDyamqFRewBjPYYYM9eySK7+FTp4E+vQB3N2BPXvypvoB/5veFx4YDtuOtnDydkJmcga2vrcOD8/FIH+h9BTo4U66HhAFIAq443sbJ+cHomH9NKg51ENiLRvU69/qf6Ox6D8tNikvYWncqr5Cub8/8NVXwKJF/yvT1S06KQUANj0a4ezpG4h8rAIIAchkVRAxERERERFR+XCNKSpRTkoauuAoBuMPeHZXVXY4SqGvD6SkAFFRQHy84jYnbyd4fu8pJZU09DTRaua7AGSQqeYlATp91QY2TQ0V9nsuTBH4oC6OHsjGxS0PEOATgJvzd1T9wVCNlv00Bgm5eVP4jD0aKWyrXx8ICADMzQvbE0hPBxJee3Cm9eBOAARicwwRvORwFURMRERERERUfkxMUYmynifADC9QD2Gwc/1vPqWweXPgyJG8aVRGRiXXzx9J1XpiawzYMwAdvvGE+/xuACAlq1r2s4ORiQoAgfyRVXt8g3HCbhjSdh8C+MDM/6S4kzcAyKApy4COrWmp9/P3B6ytgW+/VSyPvPQM0vU18zzu7r1babESERERERFVFBNTVKLMmHgAgCqyoaqnrdxglOiddxTXnCrJ6yOpXk9W9fhrMN5b1w+ADLL//ybmQA2nwm3x/funsVZ/Km7M3V75B0I1WtyFBwAAY70MyP5/2p2vL/Dpp8CVK0XvV6sW8OJFXgL11Zxm2ImwV2oJhAeGV3rMRERERERE5VXliamMjIyq7oKqWObzBNyBEx7AHklJyo5G+YTIG53yxRdl37fIZNWkNui/qz/6ru4EuX4OsqGOqBQ5dn19G/84TkHu438r9yCoxoq9FQUAMK79vyUAd+wAfvsNiIkper+ePYG9e4GLFxWXkbLrZPdKLRmsm5ZiyB8REREREVE1qfTE1IEDBzBkyBDUq1cP6urq0NHRgYGBATw8PLBw4UI8ffq0srukKpbxIhG70BsbMARRUcqORvmuXweGDQOWLs2b2ldR+cmqBr0bwGV0BzQY3hYylf9lFi7fN8TvtgvxeOwigInet96jW6kAgFxdfalszpy8V5MmRe+nqgr06gWovfZICydvJ/Tf1R/qsrwHF6jfvFrpMRMREREREZVXpSWmdu3aBUdHRwwfPhxqamqYMWMGdu7ciUOHDuH333+Hh4cHjh49inr16mH06NF4/vx5ZXVNVSwzNhl18AQ2sgjI5cqORvmaNgWmTQO++y7vKX2Vza6zHUSukNaiUlPJRlSuOdavzoR/rSn423MV7u65U/kdk9Ld3XsXj57pAQBuX8+R1oPq1w9YsACwtCx9W69O52vQuwGatMi73Yduu11p8RIREREREVWUTIjKWWHZ3d0ds2fPhpeXF1RUis53PXnyBD/99BNq166NKVOmVEbXlS4xMRFyuRwJCQkwMPhvLvb9qruzNyJg4SPU0Y3HyOQVyg7nP+Hu3rsIDwyHbUdbWLlZ4lj/tbh2Kgl5i1jnLZb+4RI3NJzupeRIqTIdnHQAF368gLx1x2RoPak1PL/3LFMbf/5fe/cdHlW19XH8O+kJabSEYugQeu8ooKIISLGB2LnqfVUsiO1asWMXexe72BBEEAtFepPeQgs99PQ2Sea8f2wzkwCBAAknyfw+zzMP5MyZc9ZkJ5OZddZe+1t4800YNgxGjfJsj//oL77473yCyeD+pMfwiQgr8hgiIiIiIiJn4lTyKiVWMbVw4UIGDBhwwqQUQO3atXnhhRfKbFJKjuVMMlOLAgJsDqSMcrlgy5aSPWbBXlSVaoQx6O/7aHlFUwqt4PfgXFaePworYV/JnlxsU6MG5CcfLZdFvd712LoV1q6FrKziHePAAVi0CKZMKby97k3nE+yTRSYh7Bg3sYQjFxEREREROT1nZVW+vLw8Vq5cSWJi4tk4nZQwZ3ImAAGBNgdSBh06BBdfDF27Uur9t1re0I6CK/jlEMjk2ZV5q/aLfNfiKTZ+c4Il26RcCE0zScYg3xyunnw1sYNief11aNXKrMxXHJddZhqlf/554e0+/r7ENvcFYMPXK0owahERERERkdNXKompUaNG8cknnwAmKdWrVy/at29PTEwMs2fPLo1TSinaujeYd7mNl5NvtTuUMic83CSnMjNNVUtpKriC31U/XEWf2xrh55NLohXJxvXw3bW/8lfXx3Dt3lO6gUipObA4HoAGdXLdKzc6HObnLDa2eMeoUwduuQXOOefY+5rd1AWAjVv8sDKLWYIlIiIiIiJSivxOvsup+/HHH7nuuusAmDJlCvHx8WzcuJEvv/ySRx99lPnz55fGaaWUHE7y5QDRkOtvdyhlTkAA/PADZGSceMW0khI7KNadsODK5iS6pvDPR8vNDD9g/mJ/NsS8SIPmgfh0aE+DK9t79pcyb39cMlCF6GZV3Nveesv0jHK5zvz4De7oS+ADi0i1wtj97i/E3Df0zA8qIiIiIiJyBkqlYurQoUPUMM1SmDZtGldddZV7xb41a9aUximlFNVkL9fzBffW+9nuUMqkxo0LJ6VKIoFQ7HMPaAIW7hX8/H1yOUJVlq0PZcmXcUwYPIFl//chOJ1nLyg5bQcOmAxjdPeGhbY7HODrW/zjZGfDxIkwenTh1fn8ggNo0tj8gG74bPEZxysiIiIiInKmSiUxFR0dzfr168nLy2P69OlcdNFFAGRkZOB7Kp+upEzwz06nIfF0rbXL7lDKvK1boWNHmDfv7JzPPb3v7i5cPflq7k9+nDptIinYJH3qhwl8Hnonqy99hHVv/sX0e6cT90vc2QlQii3vSBIHnREARPXrcEbHcrng2mvh9ddh3brC9zW9ph0AG9ZbWDk5Z3QeERERERGRM1UqiakRI0YwdOhQWrZsicPhoE+fPgAsXryYpk2blsYppRTlZOYBEBCq7ucn88ILsGIF3HVX4UqV0lRwBb+A0AC6P30JBZukg8X2nNr8PDWQH++Zz+Jxi5gweAIbPlt0dgKUYjn821Ly8CPA4SSybT0Apk2DCy+EV145tWMFB8OIEXDPPRASUvi+RqMuxY8cklwR7Bs/vWSCFxEREREROU2l0mPqySefpGXLluzatYurrrqKwECT0PD19eV///tfaZxSStGO1Eg20YBYK5fudgdTxo0bZ6pVnnnGTL+yQ34V1fbZ26nXux41WlRl5WM/suCHPTjz/MivpPp5xBS2P/kZ4V1bkFqlLvUviVU/KhsdmL0egOiILBw+ZoyWL4eZMyEm5tSP9+67x98eEBFCo7o5bNzhz4aP5lLzvwNPN2QREREREZEz5rCss1XXUX6kpKQQERFBcnIy4eHhdodju2tCJvFt5hD6N97E1E1N7A6n3LEs+5JUBW2YtIHvL/u+iHvN1L9eA0M5753h+MbUOpuhCTCjw0PMWx5ChzY5XLryWQA2b4YFC6BuXejdu+TOtfqBL/n5lW1U80tkZPZr4FMqxbMiIiIiIlJcWVmwbx9xP6wmfl0G9S9vV64LB04lr1IqFVMAS5cuZdasWRw4cADXUd2gX3vttdI6rZSCIFc6NdlLvagMu0Mpd2bONNVTP/4IVavaG0uzIc3clVR1etTB9/B+/nj0bw4f8vSj+ntKGoumvEV0WAYBtavT+v+60mpUH3sD9xL7t2cAIUS3qeHe1rixuZ0uy4JNm0xitEmBnHKTBwbh88qrHMqtzM+Xfkzz23qV6z96IiIiIiJlUl4eHDpE3IQVbJu5neiquUSHpJK+6whb1jvZd8CX4LxUApxppOUEcoTKpBAJWCz+PI6rJ1/tFe/TSyUx9fzzz/PYY48RGxtLdHQ0jgLlIo6yUDoip6QTy6jLFq4f1BJoa3c45YbTCf/5D+zYAWPHnnqfoNIQO6jgdL1mWDVqMmHwBBw+YLkg0MdJtiuInalBsDGPLffOZ/7/fqX9+eH4dWrHgZRg6l9Q3yteHM8qy+JAYgAAUb2bldhhn34annzS/Bx+8olne1BUBNGVc0hI9GX1b3tZ/dsEr/mjJyIiIiJyRiwLUlOJ+3oZW//cRnT1PKIrpZO28wjpe5PZvt3iYGIAAbkZOHKdJFKZVI6uGAot8P+I45zEgcPXwfbZ273iPXqpJKbeeOMNPv30U2666abSOLycZc48s5JiQNXQk+wpBQUEwNSpJin17LN2R3N8R/ejanJpE34a8iXrpsS799mfXZnfpgPTVwMWi99YzAXXRNP9zWH4Vq1sW+wVSdb6bSRb5o9VdP+OAKSmmoq7pk0h9jT/FvXoYX4Onc5j7wuuWx0SU/G2P3oiIiIiIvnifokjflY89c+vT2zfelj79rHuyxVsmbWLahE5VAlIJX1vCju25XEw0Q//3CyTbHKFk07YUUfzB6oV+Pp4CSeLAD8L/wAH6Rn/Fu04oG7H6nT4bweO7M1k9pi/cfg6sPIs6vWuVyrPu6wplcSUj48PPXr0KI1Diw08iamjf/HkZFq0gK++Krxt506oU8eeeI6ncBUVtLqlC+umxLtfDNucF8bWpUdIy/I0Tp/5zX7mffMy9aumENowmrwatWk6ohuxQ0qu2seb7J+6DIAI/3SCos0fsJUrYcgQqFcP4uOLfOgJ9eoFhw9D6HFyyh0e6cu2oT8CeNUfPRERERGp2Aolmy5tjHXwIGs+XcbWmdupGplL1YB00vamsHNrDut3hQMWi8ctJoQ0sgjCdUyapGC10/E+E1sE+LmoXtUi3elHUqLZ6nBAowtiOKd3A2Y9np9sgst/Gg5gZq78+5mr22MXuj+T1Whb01044C0XjkslMXXvvffyzjvvMG7cuNI4vJxlk62B7KQOsXEWV9sdTDn3/vtw112mguqhh+yO5viOrqKKHRRL3C9x5oXTYSpXA3ycOF2BxB2uDoddwC5W/rKLRrXT6TS8MTlNWrJrfbL5Y+AlL6Zn4sCCLQBEVfesRZGbC+3aQf36p39cf39zO57mV7Wgw0Uz+OfPRILJoGHnKqd/IhERERGRUlQo2dS/IXn7D5K5JYF1P21g++L9RIY4CfdNZ+eWbDbuqER+simYDLIIxML3qCMG/3uD/IvvGRx9NdciNCQP/0BfEhPNPg4HNDq/NnV6NWDGmLkFkk3XFv7c9G/CqcPdPYgdFEt062OTTUd/5sp3dOGANyiVVflcLhcDBgxg06ZNNG/eHP+jPhlNnDixpE9ZorQqn4cr20mToJ1spREfvXiEWx7Uh9fTZVlwww2mgurll+H+++2O6NTE/RJXaMpfwi/L+G30H+yOzyH/xbww01T9ov+rT9fXrsInJPg4+wjAr43v5Z8tkZzby4cLZz9eKufIzQW/oy5F5GY6eTP8cVJzQ+jfz0WnaU+VyrlFRERERI4nbvJG4qfHUatxCLXPcZCx/SCb5ySwZ1M6YQHZVPLJJCEB4g+ZyiZw4E82OQSe5hktwoLziIkBp08gWzbmuS++9xnTg6Bakfz6f1PdiaWrJ5vSjILJpvzerAU/HxVMJBW13ducSl6lVBJTd955Jx9//DHnn3/+Mc3PAcaPH1/SpyxRSkx5ZO86wJ11fiGFcJ5fcykNW4bYHVK5ZlkwfTr07Qs+PmZbZiYEl9OczdFXBBrWy2X3TotsV+FkdCBZVIvIwb9aBM2HtqDjM4Nx+B591cJ7fVrpLnZlVOPyB+rT6qUbSvTY2dlw1VXw999mSmCVo3LLS2/9kGkfJxDmSOXuvQ/hV6N6iZ5fRERERCquQpVMg2LBstg4YQVbp2wgqoYP1SNzSN9xiLS9yezclMWhQw4CrGx885wkZgWT4gojP+F06vJTGQ7AompkHlVr+LNpo+VONl38RBcCa1djylHJpvyE0fGSSMXdJidme2IqLCyMCRMmMGDAgJI+9FmhxJRH6j+beK3jt/iQx2N5T+LIz6ZIicjLgz59ICYG3nwTIiPtjujUHf0ivXHyRr4b8p37j4EfOeRSOFEV7Mggtq6T+hfWx9WsOft253rttD8rK5sXgp/CSSC3/zmEqD5tSvwcLVvCunUwZQpcemnh+wpVTfW36DT1yRI/v4iIiIiUf3E/rWPr5DVUr+qiSkAqcX/vZ+lii/zEUhW/ZDJz/cik0mkd35c8/HxdZOfl97a1qFnLQfU6waxelOn+fNH/xfNocWNHdizcw/eXfV+sSiYlls4+2xNTdevW5ffff6dp06YlfeizQokpj0O/LeWd/tMIcmTxkGus3eFUOPPmmQbVwcGwejU0aGB3RCWj4At/4/6N+HnQZ6ydvvvfixrHuyJitnW7JIxuT/djb4JP4SsvFVjitIW8OeAPfMnl4ewx+Ab4kZsLzZub/lLffXfmCctff4VzzoG2bY9/f6GqqYT/4Rdd7fg7ioiIiEiFEvdLHPEz46nfsRqNWgaRtnEXa6dsY8fKJEJ9MgjISiHlcC77UoJJzDveKnMnYhHom0t0ZDZpOUEcSfEFHKZPU+fKnNMhmlnvbtS0uQrK9sTU+PHjmT59OuPHjyckpPxN/VJiymPvVzN4+Po9hPuk8VLaHeV2yllZtmCBWanv6gKd5V0uz1S/8sSyYM8e2LvXVOnk//rP/mQrn96ygBCfTGq6Eug1oj45cdtYtcRJem4AJ+pRNeil7rR74KKz+CzOrrjRHzLh9QSiK6VyW9orAGzZAo0bm4RlWlrp/ywUrpqCTlPHlO4JRURERKRUxU3aQPz0jdRvUYmGjRykbdrLur/2smNDBmE+GYTkpbLnQADxadU59al0FsF+uUSGu0g4Ephf3MR5NzYgqGYkf76w/LiJpeImnJRsqhhsT0y1a9eOrVu3YlkW9erVO6b5+fLly0v6lCVKiSmP7eMm0eTe/uQQwNatFaeipyzbsAEuvxzeeQcuuMDuaIq2dClMmmQqe6691myzLJNMyc6GjRsh9t+/I+++CyNHQpcGB/j89UT3H5gWDbNI2JbBVfxELfYSGZDOHmc10gilKkfwIw+AKn4pRFb3w1GlMs2GtqL9Y/0qzLTSOec9yqx5AbRuksllcS8Apu/YP//A/v1wxRUlez7LMquJHG3pLR8w7ZN9qpoSERERKaPifl5P/G8bqd8ihCZNHTh37GPN73uJX5dOZb80wnITSU3MYU9iJbbnnMPp9W5y/fuYf6fSxfjRpm806XkhzB2/5YwSS0o4eZdTyav4nfDe0zRkyJDSOKzYIPtIOtU4hMvhR1hYlN3heIUxY0xS55VXykZiyuWCWbPgr7/g8cc9VVALF8Lzz8OgQZ7ElMMBdeuaxEpAgOcY1apB69bQZ2AUsYM8P0d7DgeRTBBdR8TSfUhPYgfF8uRN23j58wbUZxs38iXg4khuOGsTahKZkMjWMcv4a8w86tfIJKB2VXIjqtH85m40v6btWfuelKT9W1KBqkS39DQdDw6Gc88t2fNkZ8Nzz8E338CyZcdOD2z31gjmfv44qblhfN3tHbqOu1pvGERERERKWdzEdSbZ1DyYhg0s0rckkL79IHFLU9i9I48wRyohOckkJFVie65JNi3GgQ95uMhfTMgfqPzvrSBHgf9Z/7YKN9uiY/yJahTGmllHcPg4sFwWl315GQFhAaZfrK8DKw96vX2V+z1h7SHHJpZiB8Ue857xeNtOtF2kVCqmyjtVTHmsvedDfnozgXqRSdyY+Lrd4XiFtDSTALrvPtMXCCA93VS6hIaW/vktCxITPau3WRbUqQO7d3tWFARYsQLee8/0yMpPTOXvf7yKnOPZtMlUBXXrBn7/psnfegsefTiPPrG7GDsmm7odqjHxyq8Zsej/cBLISN6mOocBSCGMXHypTBLVg1Np0iKAOhc2Jqt2AxK2ZZaLHlXv+I/iUG5lrn2tHY3uHVRq57EsaNXKNEF/5x24445j9/n1onH881cy+VfXCq5YIiIiIiLFlJ1N3FdLif9zCzVqQs2ITNJ3HWbzijQSdrsIsdIJyk3lQGol9uTV4PRXpaPQY6tE+9Goa1Wycv1ZPXW3J+H01WUEhBZMOJXPqXQZGeazQ506kL/A98yZMGOGuQg+bJhn319/Nfu1alX8zyZSsmyvmFq6dCkul4suXboU2r548WJ8fX3p2LFjaZxWSoEzKROAgECbA/EioaHw+lE5wLFj4dNPzZS40ixI/Ocf0+sqNNQknsC8kF9zDSQkQNWqnn3btYMPPzz2GKfywt+kibkVdNddcOedvmRn1yMoyGyrd3t/Ki1Kx4UPVTjChbc3YdP0rYyP78Q8zqMTSxmQOY1Dy2DBsp2kcIQwUlk8bjFtO/nR7sZWpIbVZteKg2UqWZWz5wCHc00TyegBntfFH34wlWnnngsRp9pjsggOh/k5ysoq+mfIt2kT+GsJ+aXb8dPjysz3SkRERMRWmZls/HIpW6ZvITrKIio8k/RdiaQnpLBjWy4Hj/gSmJeFT04WR/LCSeV4b+LyG/ZWAgrORvG8gfZ1uPDxhZxch3t7zcaViGpahVVTdrmTTQM/GkhgRCA/Dv3RnWy6+MMr3e/dmh8nuXT15KvPqOKptKSnmxkD+Z065s2DyZOhTRu47jqzzeUy74tzc01/3pgYs33NGjOL4+qrPYkplwtuvhkOHIDZs82FdCnbSiUxNXLkSB588MFjElN79uzhxRdfZPHixaVxWikFzpQsAAICK0Y/n/IoN9f0ckpIKLw9L89zpeB0pKWZKXrVqpmKJYB69SA+3lQvHTgAUf/+vXzxxdM/z+lwOHAnpQC639CIhZFxbPxzOU0vGkbsoFiq/xLHB4OT8CWXKPbT+eIIcnYlsDQugtdc9xFGCvfwJiuX5rJy6QryWIUveSwet5iOvUPocHsXEn2qsmP+LtuSVYemLcHCh2CfLEIb13RvHzXKNJBftAiOehk9IwMHnvj+Bhc1ZMnbS8m/8pY46W94Z6AuM4mIiEiFEPdLXKGVn620NHLi97Dmq1XEL9hLldBcIgPSSd+fyu6dLg4n+uLnyobcPJJdoWRxvIW9Ck5pCDvO/RZ+Pi78/SEz2wdwgAPOaR5GjZbVWfbdNney6fJvLqfl1S3ZNGVToUbhvV4ZSOygWJodJ9nkN9nvuNVNZSHhVNDhw+bCd1iY5/1tXh7UqAGHDhVONv3zj2lrctVVnsSUj49n3yNHPPt27w533w3t23vOlZQEHTua9hX5n3PAJLvmzIHHHoPKR896FFuVylS+0NBQVq9eTYOjOmXHx8fTunVrUlNTS/qUJUpT+Ty+7v42jywcSP2ww8xOaX/yB0ipyM6GH380lUv5OYLXX4fx4+F//zPbTyYtDfz9IfDf6rfHH4dnnzVXF7791rPfzJnQqZP5o1HWxf0Sx+YZOzjn3Hq0vcqUXn35/E5ufPQcqnGYkbxL7crpHEgM4BuuZj/RXMRfxLKpwFFMEqZr3zA63dmVyhd3ZNP0+EJvWkrLyuteYfLX6dSrmsKNh14FzB/oq6820xxnzz77fzTjfolj+Usz2DT/IACXD/en1TePnN0gRERERE6BO+HUux4Ne0STsWEX635Yy87F+4iolEu4Xzq7NmezcXsw+e/9QkjHSQC5+J/s8MdhEeiXR1TVPNKyA0hMMm/QHQ5oeF4NYs6tx6znFxWaNgcUe1W6/OdUFqfTFceBAzB3LlxyCVSqZLa9+KL53HLVVfD9955969eH7dsLX5BdtMjs06kTDB/u2Tc93cwqKO4104IX8nNyzKJNW7bAk0+avr5Sumxfla9q1ar8+uuvdCuYngQWLFjAgAEDSExMLOlTliglpjzGtfyQe9f9l1qBh9iTpVW6ypLu3U0D8rffNivegUlmDB0KLVvCV1959u3WzbzAF+wRNX8+3HCDSYI899zZj780rfxhEyt+20/3IVHEDopl4+SN9BhSnSNU5QY+p2ultRxODyKJSJKIJIbd7scGkI2TQPLftFz6vxa0f6wfm2bsLvFk1e+tHmDR2lC6dMrjkiVPl8gxT8ay4OuvTX+wb781c++PZ8YlLzPv9wz8cXLzh12IvrX0+l+JSPl1dPWBiEhJyX99qXtuDHWaViJ9y17St+1n86zd7N2QQiV/J0FWJvv3WexJCqVk+jRZRIbm4R/ky8FDnmRT7IW1qXNBQ/54ZM5xE0vFTTiV52RTcblcUL26qWqaP998ZgGzkNIdd8Cll8Jrr3n2377dtAsp7YvilgW//w4vv2xmo+Sf71STXVJ8tiemhg8fTkJCApMnTybi3wYpSUlJDBkyhKioKL4vmCItg5SY8vi2+TP8vKEprZvn8Ni6YpTlyFmTmAg//QSDB5sXf4DffoP+/U2Tv9WrPfv262eSUp99BjfeaLadSpPyimDpN5v5+esMrr0liBaXxbLx5w3cffku/uRi2rGcEcHfkZwZQN5xZjj7k01OgWRV/3sa0eHxfmyef/CMPpB9GXkX25KrMfD/atL+/f+e+ZMspgsuMNM4H3mk6KSkKzePr+s+yra9wVT2SeK/q0YS1LLRWYtRRMqeRbd+zMbfthNZKYfKlZzsO+TLxl1huBdM+HkosUOa2R2miJRxG39ay9bJ64iOCSCquov0nYfZtuQw+7ZnEeTjJNDK4uARXw5keF5fTp3r38eZZFPViDyqRvuyaZMDh8O8D+7zYFuaX9eBveuT+PHqn7y2uulMxMeb/k4HD5pkT77hw2H9ejPDoyysMn4iV11lqqk++aRwP105c7Ynpvbs2UPPnj05fPgw7dq1A2DlypVER0fz559/EpM/IfQkxo4dy8SJE9m4cSPBwcF0796dF198kdjYE/+y//DDDzz++ONs376dxo0b8+KLL9K/f/9ix6/ElMekRvezamsYffr50WPao3aHIydx+DDkt3Ar+CO/f7+5ElAepuedTaOuO8jb31bl2bv2879xNcnNdLL0md/5Y+xy8t8IOcjD4thmXr7kkIe/e79L/lOTjg+cz5aNucT/vePEySrLwrViFS91+I5sgrjogTZ0f2lI/l2lnjCcPt3M3b/lFoiOLnq/jN1H+LDhiyQ7Q4gMSOfi8VfT7BpN6RXxOi4Xv3Uaw5LlJ25NGu6XTv9ba9P4xZvxCTsLy8iKiC2OqZTMyGDdZ0vY8vtWqkc5qBbmJH1PEun709gdn8PhIw78XE7IzSXZGUzmcfs0nVywIxPL4UOWK4D8hFPtcxzUqB/MP3MzcfiA5YLLPu5PQLWwYq9Al/+cvLG66Uxt3mwWMvLxMcmp/FW9c3M9K26XZXv2QIMGJt45c6BHD7sjqlhsT0wBpKen8/XXX7Nq1SqCg4Np3bo1w4cPx9+/+HN4L7nkEq6++mo6depEbm4ujzzyCGvXrmX9+vVUyp+sepQFCxbQs2dPxo4dy6WXXso333zDiy++yPLly2nZsmWxzqvElMf354xmw54I+g8LpdOE++wOR6TEbd1q5rYXXAXkr6/30zlwJQ0vqEejvg1Z+sIMfn9ykfsxPuThOk6yyrPdJKv6DAym0+0dCOjSjri5B9g2YQnBezaTuiqetSkxOAly75v/humGG8wUzbFj4corz8Z34MQWPjaVP55b5v76sld60Pq+PjZGJCJnk5WZyexODzJnXcHp/BZR0Q4iq/myaV0eR1c0VPZJon6rMHzbtabhZa30gU6kHHAnm3rVJfa8KPISDpCxbR/rpmxlx/IjRIY4TZ+mbbls2OmZNleJNLII/Pdi3amyCPTJwd/PIs3pSTbVbeRPzabhLPr1iDvZNPT7K2h2VUtNm7NRSoqpgPL3N1X3+V58ETp3hvPOKx/JqKMtXw5Ll8L//Z/dkVQ8ZSIxVRoOHjxIVFQUf//9Nz179jzuPsOGDSM9PZ1ff/3Vva1r1660bduW999/v1jnUWLKY1zlJ1mTVIcrhvvT/5vr7Q5HpFTl5ZkVPFauhAcfLLwaYcE3N40HNGbZK3/z2//muO/3c+SSax3vr7FFKKmkEc6x5ej/VmX5Ouhydxf6vtaXDh3MH8iff4YhQ0rjWRaWl2fm1hf1Ujf93ukseXMxlst8HUg2Iz7sQvStg0s/OBGxVV7CAX5p8wSrD3pWDS3qw2D1BmEcmTSHf2alkOX6d5WNf1/jrvz4Ylrc3O245xCRUpSTQ9y3y4n/awv1YoOoE+MifftBNsw/wq7N2YT7ZxBGGnv2+7MluTr5v7OeFganw6KSfw41qzlJyg7i0BHz3sjhgCbnVqNu99r88eIqTZsrh7791iy4FBkJu3d7mppXNAcOmFX+XnsNatWyO5ryzZbE1KJFi+jatWux9s3IyCA+Pp4WLVqc0jm2bNlC48aNWbNmTZHVT3Xq1GH06NGMGjXKvW3MmDFMmjSJVatWFes8Skx5XBk4hZ+cAxnScgs/r1F/GanY8vJMU/APP4QZMzy9u4pS8I1Rk0ub8M8HS5l6x2/5F/wI9s8hM+foK4gWUTGBNLuuPX+PXXTMm7CkJDMds0MHqFbK6w0cOmTeYFiWmd7ne2wRmOfK5L/LGAP44+SyEZE0++R+72pUJuJF1oz7i7/u/4OUvEo4cHHpfbFU6tnhpB8GnSmZTDj3HeLXpJGfiPfHyYV9fenw+d34RWshFZFT4a5k6lGb2G5V4NAh4qZsYtuCfdSslkPN8HQyEpLJOJjOtu0O9h8JINiVTmBuOgdzIjlANKffpyn/Y+K/fZoqu6gS7c/mja4CfZraEVizClPvnaGm4BVQeronAWVZZuGk/v1NVf8pTIQqV6680vTx7d3b9GSV02dLYqpx48Y0aNCAW265hf79+x93qt369ev56quvGD9+PC+++CI33HBDsY/vcrkYNGgQSUlJzJs3r8j9AgIC+PzzzxleYF3Jd999l6eeeor9+/cf9zHZ2dlkZ2e7v05JSSEmJkaJKWC4/4/8kXs+Q3sd4L3Zamgq3qHg0rJgSpeL+1Jw9BurjEMZLH19HrOfX+hO7pzsSuDZsn69Kb22LDOF8d+WgMfIj7Nmq2qsfOR74veZ3hC1q2Vx7jvDaTq09VmMWkRK2+o3ZvLzqLnur3vd0Yze7wwt9uPdH0b//eCaL5gMajQIodNTA2l2nfrViZeyLOK+X0X8H5up3yKE2Jb+WIcOkb37IOvmJrJ9YzZVAlOpTCLbEwJZdaQu+Ymlqhwkm8B/q7BPj6+PizxXflNwiKrtR/V6lVg3P9k9ba7fuItpeW0bds7byXeXFa9PU1mobsrIAKcTgoLMTU7fvn0wejSsW2f6kpbHKXqna9Mm+M9/4IMP4BTraOQotiSmcnJyeO+993jnnXfYtm0bTZo0oVatWgQFBZGYmMjGjRtJS0vjsssu45FHHqFVq1andPzbb7+d3377jXnz5nHOOecUud/pJKaefPJJnnrqqWO2KzEFb/rfR2JuOP/5oDMx/+1ndzgiZ91ff8HQofDVV4Ubyp8qu5NQRfnlF9Njq7gvya6cPL5rN/bfvjLGef0qcf6ku3EEBJRSlCJy1lgW74Y9xMF0c4HR4eOgyz1mqvGpyH/Nq9MjhvQ/FzDzo21kujxTgzr38KPvtHvwCVeTdCmf4n6JI35mPPU7RxHbJQIOHWLDL5vZsuAA0VWc1AhNJ+tACtu2uNh30I9QUgnJTeZARjg7rDrkJ5sCyCYHfyx8TiMKCz9fi8hIyM7xITXl380OqNspipodarLoPc+0uaE/DsXH36dcTZuzLFPh7ePjWTHtyBG4807z72+/eYq3H3gAXnkF7r8fXn7Zc4yHHoIuXWDAAAg83RmKXmbXLmjTBpKSYOZMUz3kTY5ejOj336FhQ2ikCUSnxPYeU8uWLWPevHns2LGDzMxMqlWrRrt27Tj//POpkt+q/xTceeedTJ48mTlz5lC/fv0T7ns6U/lUMVW0V3wfIt0Vwm0/Xkj0FefaHY7IWXfFFTBxoild/vzz0j3Xq69CQIA5Z1me0z793ukseWNxoUqIcwIPcsF9ban/zH88neRFpNyJf/hDvnghAcBdPZH/wfVM/HbnNJa+u7TQ60YV3ySanBeF1aIV9S9uXKaS9lLxHbOyXF6e6cf05xbOaRDAObUtMncfZtPCQ+zekkVkQCYRPqlkpuSwLzGAbek1yU8uBZOOk4DTbABekGfKXURVXyJrBrNjbZq7RUCPh3oQGBHIzEdmVrhpc2lp8OOPZpW0Rx7xJAVGjoR334UnnoD8OoKMDM/0sqQkiIgw/7/vPtMX6KGH4IUXzLb8VeP8/Mwq1afxUdRrHJ2M+esv8/1q7+UFrtu2Qdu25v9z55qEnRSP7YmpkmJZFnfddRc///wzs2fPpnHjxid9zLBhw8jIyGDKlCnubd27d6d169Zqfn4annc8Sg4B3D37Mir30nQd8T5OJ4wbB/fcU7pX2SwLoqPNUrsLFkA3G/oEb90KTz5pSpdDTrCS89Fvfn3IxYWp8Y4OSqJyi9q0Hn0Bza7x8ncyIuVMzo69vN/gZY64ImnUxEG1AV1K7IPr0a8bAQ4nTiu/ytJ8GB/2wxU0vbJ4KyiLHI+7iqlHLRp1jCRr+37WT97EjmUHqBLpompIJlmH0tkVn8u67Z6V5ar6HMHp8iP1uAuVnA6LwAALP38H6en/HssBtZtHUL1FdVZ+v8U9vf+Sty6h+eXN2Tl/Jz8O/bHcTJs7E1OnwpQp0LOn6XUJkJrqaZuQmGgabAM8/zw8+ijcdRe8+abnGG++aXqBDh7sec/ickFurkmu5Pc/2rXL7HvkCHzyiefx48ebavGOHUv1qZYbGzfCjTeaXqvenog62u7d5ufU5YLZs71rWuOZqjCJqTvuuINvvvmGyZMnExvreXGNiIggODgYgBtuuIHatWszduxYABYsWECvXr144YUXGDBgABMmTOD5559n+fLlRTZMP5oSU4aVk0uvgIXsI5rXPong0v9E2x2SSJmwfTvUq1eyx3Q64aWXYNEi03DxbJea5+WZefRxcfDGG2Y1khMp+Oa3VvMI5l7/EcsW5WDhac7VqEYK593VjozGrdm+YK/nqrSIlEkzWtzNvPVVCfPL5I6ERwmqFlaixy/4ulHv3Np83elNdm1zkp8ECPHJYuDIGGJfvRVHRe2qKydUqIppYBOs5GRydh9g7ffr2D5/L9WqQbUIJ5kH0ti1OZsD+10E+2QT6MricFoAB7IjKZnEEjhw4edrkZPn4z5e9Rq+NOwYQXqmL2tmHHRXFV70ykUEhAYw9bapWm2uAKfTJKAWLYJnn/W8t3nmGVMBdf318MUXnv2vucZUQj33HERFmW3p6SYRUJLvi+LioHVrk8RaulSJGDDf+2+/hR49TN9RKSw3F5KTPdNJ8/LgrbfgllsgVDPSi1RhElOOIlZ7Gj9+PDfddBMAvXv3pl69enz22Wfu+3/44Qcee+wxtm/fTuPGjXnppZfofwrNYZSYMpwJh2laK5l4GvDFhxlcf+sJSihEvMQrr5grd5MnwyWX2B1NyZo1y1wtW7PGUxZ/KiZf9z0rv95QxL3mg8KQ5zvR5n/9tJqfSBmz/92f+HDkKlz4MuzlDjS9/9KTPmbfPvMBr1cvz7bBg2H+fPjoI7jsMrMtNxdycuDfa4pu+VVU+dOU8lXxS6F6m5q0faQfTS9X59ny5JjpcTk5kJzMugmr2TZzB9Hn+FGjhoOsgynEr0gmYXs2oQFOQn0y2HfQhx1HIsj/exFIJjkE4OI4S8aekvxElUVEpTzOOcciywpg6ybL/bN37i2xBFSPYObYJcVKLOU/1+JUMlW0ZNPJZGd7kkg5OSbBlJRkklNdupjtK1aYaXvnnWfPe6mDB+Hee+HwYZg2TW9JwFSU3XOPuUhas6bd0ZR9770Hd9wBLVvCqlXqYlGUCpOYsosSU0bqyq2MbDefFMJ5dfMgGjbSb5x4N5cLhg+H77+HMWPMtLeKJinJUz4P8PrrcOmlUIyZ1MdM1akXk8vOXY5jPlRU9U0kooovVK5M4wti6PjIxfjF6F2QiF1cySl8EvUIe53VadYoh6Gbnz3pY1auNM1w/fxMcir/KnLPnqYHxw8/mCW3wUxP7t3bLCAxaVLh47hX/WxZlYNf/8HCmRmF+vS0bw99Pr+O4JYNS+KpSjG4k0u96hLbqwYkJ7Nx0ga2zt5Nzdq+1KzhIutgKltXppKwM4ewwGzCfTNIOOjHlkOVyU8EhZGChYMMQko0uRQamItfgIOkVF+zzQH1modQo1kki37c654id9mXQ/APDeD7y75XYuksmDvXrOIWHAxz5ni2P/qoSXrcdRc0b25ffMdTMInmdJpKrYcf9o4V/dLSYMYMczFBTt1vv5n+Z6NHm0b8YNpyZGUdexHGmykxdYaUmDIO//kPb1/8K4Fk8z/rebvDESkTnE7zwWpo8VdOL5bVq6FpU9P8vKyYPRvOP9/8gd22DWrUOPljjn4Dv/6Hdfww9EdOPLXCRTXfJKKr5uFTOZxM/zAanFuL9nd0I7B5Q+Kmbil8BV5EStSiXg/x+5wQAh1ORm66m7BGJ5+6n5MDHTqY16xvv/Ukr3fuNFNvatf29IsZN85UJ1x+uZmqnO+XX0wFRXSB0/36n4n8M35NoXP5kUOLmBSqX9SW1NCa1L+wgV4LTsDdZ6lrNLE9qkFyMnFTt7BtfgK1akPt6FyyDqSyZXUGe3bmERGYRYRPKlnpeexLCmJbeg3yX7MrkYqTAHIoqXlUFoG+ufj5WqQ7/clPNtWK8aV6nWBWzU/H4TAf8C55uhvNhrdl1/KD/Djsx9OeIqfEUukp2Cx7+3azapmPj6lIKniRqzx47jl47DHzvmfGjIpdRZWaaqrVVq82MwAGDrQ7ovIpM9P0MsvvOTVnDgwZYirPxoyxNbQyw/bEVFZWFkHlONWsxJSR8M0sPrx2DmE+6YzOe8nucETKJJfLrPJyJmXPqanmDZy/v1mNJr/ywG5bt5oy5QYNTMlyvgcegPr1TfVY5conP07BDwV1Otdg0lVfs2newX/vPXEvkACycBLk3q99e4tGXauR6KzE4SRfGl/Wkqb/Nlk/ZgqJiJxU0sQZvH3FLPLwp+Ol0QyYcluR+379telDkv+Bbc8ek7D2PUkxjGWZ5HZ2tqdi4tAh87qZf1+dOmb70ZWXEYGZJGcXvPxsXgvOHRDGua9cxvZNzgr3ex83eSPxf26hfseqxHaJNIml6fHELzlITG0X50Rlk3UwlU1rstm9CyID0qnsSCYrLY+9qZXYnFmH/O9TOEnkEEAmJdWOwcLfx4Wvr0VWzr8VS0B0bV+q1gpk/dIMd2Lp/Pva0mRgU/ZuTGVKKfReUsLJPkuXmqbkdeqYvpT5pk0zCevok+e2y5wZM2DYMLMAzBVX2B1N6bIsuP12+Plnk5jq2tXuiCqG224zPz//939QcM210uhNW17YnpgKCgqic+fO9OrVi969e9O9e3d3s/LyQIkpY8dbv/Ds3fup7pfEk+kPlKlKDpGyICfHND2cNcv0VImJOb3jrFoFF15omidu316iIZ4xyzJVYvml7keOQLVqZvvevZ6E3BtvmKk7N94It95qtuXkmAanISGm1Dn/NWTaO/F8c+cCqvokUsV1mEHv9SXMeYRfXt/Cwe3pBOLEcQrNa0NIJyQgl0NOT2+SLj0DaNStGqH1o9h30Jd9O5zUH9CM2CHNACWxRACy/lnL+50/Jdnl+d0pONWpoN9/N71gvvwSrrvuzM+9Zo15/XQ6Tb+ZfH/8Ada2bbBpM/V616PJwCbsnjCPX+78k0NHPE2oDRfg44697x0N6HD/+WxbnUb87O32/H7n5hL3/SriZ26jfpsIYjuGQUoKG/7czdalidSIyqV25Uyyj6STfSSD7Tsd7DvsT5hPKuGuZPanhbElt577OUVyhBwCSMezgtyZ8vVx4esDzlyH+3jVa/nRqEMEaekO1sw85G7q3ee53vhHBPPbnb+V2cRSaiosWWKm0AwY4Nn+55/mAkuPHmb1NSk5U6bAoEHmfcu+faZheUWQnFy4x2Z6esV5bkfLyYEDB0x1q5SMvDz49VdzASa/injTJoiNNa9BK1Z4LuSsWmXeSzdq5GmePmkSvPYanHuuSfxWBLYnpubNm8ecOXOYPXs2CxYsIDc3l44dO7oTVRdddFFJn7JEKTFlbH76G5qNGUoefuzY4bmaKSLGkSPQvTts2WKSMvmNfk+HZZnS9/xVaMqqw4fNVaAtW8xSy/luvRU+/hiefhoef9xsS0yEKlXM/7OzPYmpBx4wTeSv6BDPc084iR0US05Ogft9XqGSK50rvr6M77+3+GZyJZqxkY78Q0xUNonJDhZktycAJw3YRgC5xYj83+oBnxSC/F2FVm7q3M2HRp2rcCg9iIMHoNHFDWh+XXszD8nhUBJLKqTc7bv5utmzbM+qSf7vgsPXQZe7u9D3tb7H7P/442ZVrXvvNW+cS0pamudNeW4u1K1rkt5//WUS9vnclVT/VuOE+mWRlnu86nxPLyJw0CQmnXPq+hFSvRKJGYEcOmhRs2EI9duE4xvkz67NmezdlE7NegHENAzEle1k+9o0EuKziY6GWrXAlZ3D7u057E+wqFIpm6pB6TjTc8jJyGF/UgCJmcGEWOmEuNJIzAsjgdru85sG3v64KMn1xS38fCE3D/ITS1VrBlC/Q2XS02HDrP3uxFLvp3oREBrIH/f9Ua6aejud5u9MUpL5O5vvkUdMkvTxx82UGTAf9tq3N9V7CQmefa++Gr77zkwlvecesy0312y79NLTW+TDW2VlwY4d5gM2mN/B1183yeqy1jeqpKSmmp+9Sy6BF144eWVoWffJJ2bq3rhxFXuaYlnz/fdw7bVmkZC//vJsb93aXKD54w/IT4189ZVZqbJ7d3PBuyKwPTFVUG5uLkuXLuWDDz7g66+/xuVykZeXV5qnPGNKTBmr7/mE3m9eRp7Dn/hDYe4PmCLisXMnrF9f8VboO1Vr18KGDeYNaot/F9FKSTEfIjIzTdIq/43Qa6+ZKUE33WSaoebvGxlp3uz+evcfNLqwLrGDYnnwQXj5Zbi8/XaeH5Nt+lb9HEeLy8274/t5hSH3NyJz1yFe/i6GhXSjHSsZHjENcvM4nBHE39Z5RJBMY7YQiLNYz8ePHEJJw8fHwRFXJPkfMts0TKVuQz8SnZU4kupPvfZVaDmwPoF1otj0TxrxKxKp36cRsYObluB3V6RkWYlJ/FT/AdYln4MfueTid9wExdH+/tskAMLCSieu/fvhP/+Bf/4xH4LzKzWnTzcJilifTRxYFO9OhPzz+hx+HT2L/N/PAEcOTsv/BGcoCyz8/SwiIiAz24f0NM89NZqEUrVBJOum73YnlnqN6YV/iD9/PfSXe4yGTRqGw+Eo04mlUzF3rlmx7aKLoG1bs23ZMujUyVTl7t3r2Td/SftXXzWVuGAqdvr0MZUf06cX/lszb56pzMtfnPuPP6BvX1PhvGOHPqAXx7p1pjoq///luFvLKZkwwbQsqFEDli8v3yvVbdxo3pu5XGbqXv54ytmRnGwuPjdq5Nl24YXm88Mvv5jXOjCvdX/+ab6uKAnfMpGY2rRpE7Nnz3bfsrOz6dmzJ7179+ae/MsWZZQSU8aK/7zJL+MTaVw9iWsOvG53OCLlQkaG6RXlX9Y/G5VBlmUqqwq+6V250pQ7N23qWWY6PR369Uxj/548Jr63jxaXmQ9U/7nsCOMnVWHEkCN8+rPJpK/7OY6W/yaxRvE6Q26vRdb+ZH6c6CCTYBqxlVpVsklO8yHD6cfpTpPxIe/fVafMB+Q6fnuJDk0l0yeUNCuUGtVzaNjQQVDVSgRVD2PPkSD27vOlQZfqxF5SHyIjiVuSTPyyw9S/qJEqs6TUWJmZ/N74bhbvOQcf8rjm84vJjaxeJhIU+QpWUYFnpb9XXoH77jPbcnJMk+UtUz3JlSYDm7D6k2VMunWau7KqaXMHQQ4nO3ZAYlr+77hFkG8uLgucLs+2QN88cEB2rq97W6WgPBwOSMv0bKtSzYc6TYLYu9vFgV3Z7iKtel2iiWoVxZKP1rhXhrvkjUvwD/Fnyq1Tjjvt7UwaeJeVxFJxZWaaqe9bt3ouSoD58D9hArz4Ijz4oNl28KCZClO/vklS5VerLF5s+pO1bn160+d/+QUeesisElmwd6LLpeXei5KW5qmUmj7du6ZFfvedSSZ06GB3JGfunXdMX8DnnlNCVs4e2xNTtWvXJjMzk969e9O7d2969epF69atcZST3wIlpozFV77E9J8yaRGTwpU7X7U7HJEy78gRMz2gYUP4/PPivcnduNFUDl14oXmzIKfv4EHYtcs0ZK9f32zLyIDrByUTvzmHb948TNPB5t31tf0T+ea3ylw3IJEvf618zAfEAW9cRHTdIDb/Gsfcjze5ZwbVa+Ag8VAeySn5vVnOvOdLMBn44ySFSPfxGgdsp2ZYKimOSFJcYdSslkO9ui4CIoMJjAxh96EgEg7606BdOM361MIRHk7cigziV6eYKYdXtoLgYOKmbNI0RHGLm7SB+beMZ9dh0zTl8ufa0+qRopdjcrlM1cmtt9o37cmy4IknTJXMrFmeZMSkSea18/rr4a23PPtnZcGOP46fxDk6CQTHTmcr7raSSCydaHtF4HKZCwn5FXYJCWZqpI+PqYDL3/7RR6bx9PDhZ2fp+qMvgmzaZCpI3njDVFOJ6T1UsLXAihUmQVNa1ZLlxYoV5rWwQQO7Izm57GwzJdbbx0zsZXtiqm3btmzcuJH27du7k1PnnnsuISEltSJI6VJiypjb9xlm/uGibZM0Bse9bHc4ImXejBnmTW1EhJmKUpwVOD75xEwz6NnTTJORs+PFF00/rL/+gm7dzLaNk+PY8ffJPzge/WH0yu+vJDslmym3THFXSbS7rC77Nxxhb1yqyTVhmsAH+LlITXOQ5yq5CzUO8vAj99/l3E1iK4p9+JPLHs5xb2tWJYEaVZwk5oSRlB1MVHWLmHq++FcKxD8siL0HfNm/H2Kah9Hk3Cj8IysRvz6T3RvSqN8rxjSODwkh7s+dxP+945hk1/F6cak/VxmQnEzO7PksfGMRs2Z5mqS0vSSKwb/dfsKHvv++WbkpNtZM4bGzx0rBZekB7r/fTOe6/XZ4913PPlWrmoTDvHmeD48ZGWZaYMHqqpKa9laRE0tn4uuvzRhdfrmp1Mh34YUmufj88yZJVRZcd52J96KLTP+qcnIdvdS8956pTJw82dP7RiA+3rN63YwZ0LKlvfGcSGKi6Xvq7w9Tp6IFrMQ2tiemAJKSkpgzZw5///03f//9N+vXr6dt27acf/75PFfGywKUmDI+bz+O51f0I7baYX452P3kDxARvvvOTDtr06Z4+yckwMyZZtrK2bhSLB5JSaavVb633zaJqvffNz0lTqQ4H1xPVE1RcPvFr12MM83J7Cdmu/vKNLuoFoe3JXNga7r7nCGVICjARUqqg9xcKInVuU6FHzn4kks2weQnu6r4JBHqn0WWFcABZxX39rqRSfj6wrbDke5tLRpkEB0Fh1P9SUrzpXq0D7XrBeAb5M/+fXDwgIsa9YOo0ywUnwA/fAL82L05k33bMqnVPIIGnavhE+DHjtXJ7NmQQkz76jTqXRufoAC2LTzAruUHqde9FrF96+Hj74vDz4dNf+wgfsFe6p8bQ2z/BqaZ/W/xxM/bTf1edYgd0Mhsm7aV+Dk7qd/L9DbD4SDu183Ez95h9ru0sSn/cLnM9r93Uv/c2sT2a2C2Tdtqjtm9FrEX1QHLIm56vDl31xrEXniOebxlmcTeov3U71yd2N41zeNn7SV+8X7qt6tMbPeqZmW3v/eZnmUtQ4ntEGq2LUwkfm0a9Zr407h5AHmZTnKzc9m0MpPtm5xEV3ZSs3IWztRs4nc42LHTQU5mHkeo8u9U0385oOuorsdtcl7Q7Nnw3/+aaVcFp16VBXl5ZqpvpUrmNRfM4gzVqpn/p6ebZDCYatSxY83CC2PG2BJuhXf4MAQHe77n06aZFfKaNTN9VMqy9HR48kkYOdJ7l3QvKH/J+xEj4NNP7Y6m7Ni71/xMWxbMmWPWRymrVq82q1H6+JhYi/ueVKSklYnEVL7Dhw8ze/ZsJk+ezLfffqvm5+XIS40+4KGt/0ed4IPsyKhudzgi5dL+/aYc3tuvwJZ1ubnmA8mePfDUU2bqUEk4k6XTi5vYGvTpIHKzcpl2xzR3xVbXuzqQm5LBss83uGccNu4YRvK+LA7szvk3CovwUIuwkFyOJPuQme3poePAwqKiNFwxiTEf8gDr39XRzDY/cgCLXALc2wLIwoFVKAFnplvmkIsvGYS6t4eSAkAa4e5t4SThAJILTM2szGGCyCabQI5Q1b09gkQsHIWmcYaQhoWDTCq5t/mTjYWjUJynKiggjyynr7v30omanBeUlWWuupeXFakSE01lQ/v2nm3DhpmVkQo2zLYss+iCVmY7c88+ayqgXnkF7rjDbMvONlMvL7igfFZrfPopVK8OA4ue6VphZWaaqbMjRui9y9FSU00is+DFq6OrOcuKv/6C6Gjv6gkmZY/tiamJEye6m56vX7+eKlWqcO6557r7TbUp42lbJaaM8Q2e4ef4NrRvnceTqy6zOxyRcmfzZjj/fLjySrOscll84yIe69aZq8Svv152PoSfSWLreNuKm+y6evLVWJbFd0O+8/TdercfeWlZTH9wljsBdt4tTajRqBK7lh9i0fe73EmPNj3DcDldrFnkqfhq1AiSkywOHoL8BFhEpVwsF6RkehpQB/vlEBrgJDU7kKw8z3Y/Rx6WBXl4EmjmVlESaGciP1llERQEvr4O0v/91jt8oM2NbRn0ySA2TdnkldPO8vIgLg6qVPF8oPztN5Owuu8+VVGdqbfegrvvhquuMgnA8m7JErNcu8sFCxZ4pm9VVPPnm6bmzzxjdyTlzzffwJdfmn8rV7Y3lmnTTPVoeeh/Jd7D9sRUVFSUewW+Xr160aqcpWqVmDJ+iBnN+t0R9LuqEp2/v9/ucETKna++Mo15mzc3b26PvjK/bp0ptz733NNbXUhKl2WZN+uXXFKxkoolnew6lccXtwF1/r7fDp4APg4cLrM9LcOHD4fPxM/HRZTrgPvxrwyeS6ZPCDVce7lpwiU0vLghC7/exrt3bSDcJ426rh0M/HAAuCym3DatUJN7XBZT7/3Lve2SF3uBy8X0h+e6E3AXP3sedXucw/b5e/jzsTnu7Rc+2xsLmPnYbPe28585H8tlMXuMZ1vPJ3pSu3Ntdi/azdxnPcft9VQvfHx8mPW4J9nX56U++Pj48Mf9f7hj6v9Ofxw+DqbePtW97bKvL6PZkGZs+WML31/2fbG+p8U1Zoz5gHPllRV3hdGbbzZVMffdZyp9pHgOHzbT3q6/Hjp3NttSU01T6PPOqxivlTk5cOedpjfZF19UjOdUlD17zEWDrCzTZ+uaa+yOqPxISzOV1ocPF15R0g6//GJ6SjVqBAsXmiS8SFlge2KqvFNiyvgw/AESUkPp3CeMfn+OtjsckXLpu+9M1VT+6jbp6aYPh4+P+fD39NNwww1mFT8pW557Dh57zPQdefttu6OpOI5OVm3cCB88e5DsPYe4514fdwKlWzdYssTiucuWcdkN4cQOimXKFLN6VuPoZKZ8uM+9b/tmmazYGMxb/9vDnWNrA6Y/0vnnQ3R4Bn9/ucu97y2XH+Hw9lRG3pZHn/82OG5MRW07lX1L4/Fneszi2LnTXHHPy4M1a8p2g98zYVmmwqBdO08T7vR0k4grj1PPzpbbbzd9+Hr0gLlzK27SxrLM74Cfn+frjAzT06yiefFFWLzYVP5UxOdXmlatMs3933vP3krrgwdNH6lLLjGV3xX1goKUP2UiMZWXl8ekSZPYsGEDAM2bN2fw4MH4lpX5ESegxJR5Q/vR4ClkEkIl0rl58iCvKvsXKS133WVW/XntNdi921yx/7//M1fvpWx57TWzqtS775pmsHLmxowxqxm98QZ06GC2/fyzWbmrSxdYtMizb48eptLwl188fV7mzjVLyrdrB1OmePa9+WbTCPull8yqX2CSKnfdZaoRv/zSs2+XLmaqzmefwY03luazLZ+OHDGJ2I0bzfQUb2FZpgpo0yZzQaF+fbsjKpv27IGhQ820rwsusDuas8OyzN+Cv/82VbT5DfbLq5wcc8tvVG9Z5uajWdFnLC8PHnrIXNAq7deQnTuhTh3P17t2wTnnVNxksZRPtiemtmzZQv/+/dmzZw+xsf9euYuLIyYmhqlTp9KwYcOSPmWJUmIKpt87nZfH+TOTC2nPcp6/9+BJV+8RkRPLyzNvVHbtgj/+0DLM5cHatRW3YqQ0ZWSYapQtW+B///Ns79XLrBBUcMrIli2meXKHDoVXftuxw1z1rVatZCtYpk415x8/HgIDzbYZM0yi+IYb9KbeW+3aZSoOUlJMtd2559odkf2ys820PT8/7+4/lJAArVvDoUOmh9ZVV9kd0elLSzNTdH19YdIkVdaUtLffNn/HatQwizAEBZX8OSwLHn/cVLr99Zf5uypSVtmemOrfvz+WZfH1119T5d9JrocPH+a6667Dx8eHqVOnlvQpS5QSU6Zi6s7BO1lAd9qykk8nV1PFlEgJSEszFSLXXqurk+VNdjZ8/LGZyqKxO7GFC03z4LAws0pafrH0pEmQnAx9+xZe1chu+QmzZ54x0zfFO+3YAfPmmddnMQ3i+/c3r3cbN0LjxnZHZJ8NG0yT8FtusTuSM/PPP55eYPPmmepTKTmbNsGtt5qFFfJXqCyNVftGjDBVv488YtoOiJRVtiemKlWqxKJFi45per5q1Sp69OhBWlpaSZ+yRCkxZbzo8zBZVhB9729J15evsDscERHbWJZpLDp5smmK+9ZbdkdUdmzYAK++appl3//vOhkul0n2dOsGTz1l+qqVVS6XufL8wQdmKmFZSpidTZYFjz4KV1zhmWbp7Q4fhm+/NdNyvLWSbtQo6NnTTLcVj8xMT+Pw8mbaNKha1UxrlpLncpl/8y9g/f67qXAaNer0msunppqLYgMGQJMmZltamqn0HTy4REIWKTWnklcplWu+gYGBpKamHrM9LS2NAHWULDdclnkX1uSSsj31UkSktDkc5gpoaKhpvi0es2fDJ5+YVSjz+fiYflAvvVS2k1JgYn34YVMRUjAptWKFSdZ4i7//hrFjTRLiOG/hvE5ODvTrZ6blPP203dGcHYcOwT33mKRLvnHjlJQ6mtNppsN17QrLltkdzcmtWWOmKufr319JqdLk41O4qvqTT2Dp0sI9FDMzYft2U4l9tNRUyM31fH3rrTB6tOl7mS80VEkpqXhKJTF16aWX8t///pfFixdjWRaWZbFo0SJuu+02Bukdfblg5eXhxCQRA6IiTrK3iEjFN3w4bNvm3b3BLMs0hp4/37PtxhtN0+h33rEvrpJQsBfIvHnQqZNJRqan2xfT2RQdbaaw3XKLmYLp7fz94aaboHr18t1TqLgsy6zo9eab5kOwFC09HQ4cML30CiYQyqJ580y/tL59zcIGcva9/Ta8/HLhRVQWLzY9R1u3Lrxv+/YQHm5W+8t3++0QG2sqkEUqslJJTL355ps0bNiQbt26ERQURFBQED169KBRo0a88cYbpXFKKWG5R1L5m178xGX8s7Oq3eGIiJQJ1at7/n/woJn+5U2eegquvrpwI+SQEPjiC7OKXkWxaZOpkrOs0mleWxY1a2aq3saNszuSsuOOO8zPQvPmdkdS+hwOM6W1aVNPbxw5vsqVzTSq3383VVNlWb16UKmSmbqn3oj2iIoy09wLvo4kJppFPWrVKrxvaKj5d8sWz7aePWH9eq0iKxVfqfSYyrd582Y2btwIQLNmzWhUTiZiq8cUpK2Np0UrH3ZSl++/c3HVUP01ExHJl5FhKmrWrzcVBgVXk6vIdu40/Yfuvts0Ca/IfXdWrTLJGnUgkHwbNphpfR9/bD7sl3eZmWaKV8Gm5rm5ZhU+OTW7dpmFTe66q+y9Lm7eDHXqeFYhlbLBssx7iYKvJdu2mcRn5cr2xSVSkk4lr1Kqf3oaN25MY29ewqMccx5IphtxtGQd7dr3tzscEZEyJSTEM32tb1+7oykd2dme1X7ye+zUqWOSU2W9b1RJaNOm8NfvvGOaz9arZ0s4pSY93Uw1+c9/ClcESmF5eWYBhLg486Hx3XftjujM7Nlj+uUdOmRWaqtWzWxXUurUZWWZfmTr1pnfp4cfti+W1FSzYtt993mmfumjWNnkcByb4G7QwJ5YRMqCEquYGn0KE9JfK9i9rQxSxRTs++5vPrh6NqE+6dyX95Ld4YiIlElJSRAZaXcUpWPyZBgyxFQMbd0K55xjd0T2+fRTuPlm8z1Ys6Zijfl775mpWy1amOdW1qo9ypJFi+DBB01lTNVy3uUgMdE0wE5MNKu0depkd0Tl25tvmj5C8+ebBL5d7r/frJJat66ZhqqKTxGxky0VUytWrCjWfg694ykXnIfNkjwBvnk2RyIiUnYVTFCsXm2umA8fbls4JWrQIPi//4M+faB2bbujsVffvmZa39VXV6ykFJieQq1bm6bneot2Yl27mtULC36fnM7y+eG/cmWYMsVM76poVYB2uPtuU3WY3yMIzKprZ/t7++STZor5k0+Wz59LEfFeJZaYmjVrVkkdSsoAZ2IaB6lKgI8pX/f1tTsiEZGya/t2OP98U30QGgoDB9od0albvRrGjoXx403Db4cD3n/f7qjKhtq1YcmSitFX6Gjnnw/Ll4PLZXck5UPBpNS0aSYhMXWqWTWrLHM64d57oX9/MyUVyn7M5U3BpNSSJWY1vNtvNxVMpTVFcv9++OknT8P60FDzcykiUt6UaEfrbdu2UYq91OUsyjqSwTvcySPZYzh82O5oRETKtjp1YNgws9Tz+efbHc2py842PVImTDDJKTlWaKgnKZGXZ6Z0xcfbG1NJ8fUFf3+7oyhfXC6zAMDWrWY6ZFn3/vumL9Z115kpyFK6Zs6EnBw4cKD0Lu6mpJheeCNHwqRJpXMOEZGzpUQTU40bN+bgwYPur4cNG8b+/ftL8hRylqQechJMBv7kFLoCJCIix/LxMc2xZ80qfNW8vFyrCQyEDz+EwYPNFX45sUceMf1kLrnEVKKURy+8AN98o0qp0+XjA7//DqNGmZ+Fsu6228yU1C++qHjTUcui//3P/Hy8+64nob1jB8ybd2Z/Fwo+NjwcbrzRTMVt2PDM4hURsVuJJqaOrpaaNm0a6enpJXkKOUt8M9N4iJf5+pyHCAmxOxoRkbLP4YCwMM/XEyaYKqTUVPtiOpE//oClSz1fDxhgrrrXqGFbSOXGPfeYnlMvvFA++7hs2wZPPAHXXgsLFtgdTflVvTq8/nrharPp08tGQtqyTA+p/FgCAuC338rnNOPy6uKLTS+vfK+8AuedB6ewXlQh778PLVvChg2ebc88Y6YNtmp1ZrGKiNitRBNTUnE4U7MACAhScykRkVOVkmJ6fvz+O3zwgd3RHOvbb031xNVXm1jl1NSqZXpyXXaZ3ZGcnho1THPkq64yfXCkZLz5pklG33yzvckpy4KhQ80CBgX7xKm5vb18fU11an6PL4AVK8y04IJT8XJzzVTATz8tXNE4fbppbF7wb0pAgDmmiEh5V6KJKYfDccyqe1qFr3xyppq5CQEhSkyJiJyq8HBTkXTbbad/dbw09etnVou65BL1FjpdBZsZJyebZdozMuyL51SEhJjpiN9/b3ckFUtgoJni16yZvUkgh8OsIBgQUHpNt+XUjRsHu3fDhRd6ts2da6aCfvFF4X0vvtgkOBMSPNsefBDeeguefvqshCsiclaV6J8ry7K46aabCPw3dZ+VlcVtt91GpaOWsZk4cWJJnlZKwaZDVfiJC9h25BD97A5GRKQc6tjR3PLl5ZmKiv/7P876FOmcHJMoy79SHxlprtSr18yZsyxTmTJnjukh88MPdkckdvm//4Pu3c10q3z79kG1aqWfIEpKMtWPdeqYr0ePhksv1cp7ZU21aoW/btMG7rwT2rXzbPPzg969zUWD7GzP9u7dzU1EpCIq0T+TN954Y6Gvr7vuupI8vJxFe1PDWENrclL22h2KiEiF8PLL8PDDpuH04sWmsuJsyMoy07X++cckpy66yGxXUqpkOBxmJcPrroPHH7c7mhObPt006X/hBWjRwu5oKqaCvX5cLjPdMyvL/N43a1Y655w710zda9wYZs82ry0Oh5JS5UGvXuZ2tL/+OvuxiIjYqUQTU+PHjy/Jw4mNoqx9XMwfdG6cC9SyOxwRkXKvUyeoWdP0njpbSSmAoCAzrSc+vvxMNStvuneHuLiyPy3yxRdN4qJJE3j1Vbujqfg2bTI/F7m5hRdGKGl16phFFg4cMBVatfS2TUREyhk1P5fjqpJ7iO4s5PLWW+0ORUSkQrjwQrOa0k03ebbNmGGaUCclldx5UlLMSk07d3q2vfACrFsHgweX3HmksIJJqU2bzPc6MdG+eI7ns89Mxdxjj9kdiXdo2hQ2boSffoJzzvFsf+EFmDXr9BqkZ2TA558XHsO6deHPP2HlSiWlRESkfFJLRDkup9O8WwqICLY5EhGRiiMiwvN/yzIfLhctgsxMU81SEm680azwtGePZ0Wu0FBzk9JnWTBsmEkS3HPPsU2Nz7bcXE9/o7p1zXROOXuiojzTZwG2bTON5y3L/L9+fbM9IwOCg49tmu50mmqoqlXN19u3m+S2r6+pvsxPRHXrVtrPREREpPSoYkqO64izEsmEkVsp3O5QREQqrHvvNVP87r3Xs+2PP0xCY+bMkz9+xgzzIXfjRs+20aNNL5s+fUo+Xjk5hwO+/BIuuMD+6XLr15teUosX2xuHePj5mSbpV1zhSUoB9O9vVvOcOtWzbfx4k6y65RbPtubN4dprzcpsQUFnL24REZHSpIopOa7fsi/kLy4gZf5WPrY7GBGRCsjhMA2Lhw4tvH3SJHjvPdOH6oILzLZ9+6BnT7Mc/Zo1nn1fecU0tK5Z00wbAjjvPFi79uz2sZLCWrY0ScOCli41qzQeXRFTmp580kwrfPBB01vqbJ5bjq9OHfP7ffQ0vu3bIS0NqlTxbKtRwzRQ37On8L5ffVXqYYqIiJxVSkzJceW4fPEhj/DK+mQjInI2DRlikkoDB3q2OZ2wefOxFRKXXWaSUgWXpwclpcqamTPNdK4rrjBJhYCAs3PeTz81U8CefVZJqbLm6PHYsMH0hatTx7Otd29ISIDo6LMamoiIyFlX5t+6zpkzh4EDB1KrVi0cDgeTJk064f6zZ8/G4XAcc9u3b9/ZCbiCuITpPM6zPPzfI3aHIiLiVS6+GN5+21MtBaZPzbx5psFxQf/9r0k+nH/+2Y1RTs2OHaYnUKVKpbty386d8Nprnq9DQ011Tn5/Iim7goMhNtb8W3BbjRpKKoqISMVX5ium0tPTadOmDf/5z3+4/PLLi/24uLg4wsM9/ZGioqJKI7wKyXK5cBKAAwiqEWl3OCIiXi8oCHr0sDsKOV0jRkCrVqbfU36SYfduOHQI2rYtmXMkJkLr1pCcbBIcAwaUzHFFRERESluZT0z169ePfv36nfLjoqKiiAGyBEIAADGQSURBVIyMLPmAvEBuUhrWv8V0AVGR9gYjIiJSAXTsWPjrJ5+ETz6B554zDexPR2amp8KmcmW49VZYuBAaNTqjUEVERETOqjI/le90tW3blpo1a3LRRRcxf/78E+6bnZ1NSkpKoZs3c+5PYjY9mUp/Nh+MOPkDREREpNgsC3JyTPVUwSmbmzbB77+bqqeTPX7ECKheHdat82x/7jmYM8dUTImIiIiUFxUuMVWzZk3ef/99fvrpJ3766SdiYmLo3bs3y5cvL/IxY8eOJSIiwn2LiYk5ixGXPc4DiaynOUvpxP5DZb6oTkREpFxxOODzz2HbNuja1bP9yy/hkkvgrrs82/btg169zGqLBR9/+DCkp8PUqZ7tAQFqfC8iIiLlT4XLOsTGxhJb4FJh9+7d2bp1K6+//jpffvnlcR/z8MMPM3r0aPfXKSkpXp2cch5KoTM7ySKYRo362B2OiIhIhVSvXuGvQ0OhQYPC/cQcDlMFBaZSKr9H1Zgx8Nhj0KnTWQlVREREpNRUuMTU8XTu3Jl58+YVeX9gYCCBgYFnMaKyzXk4lY4sp7JfKnXrKjElIiJyNjz0kLm5XJ5tlSvD999DSEjhxFSHDvbEKCIiIlLSvCIxtXLlSmrWrGl3GOWG83AaAAF+rpPsKSIiIiWt4HS8gAC46ir7YhEREREpbWU+MZWWlsaWLVvcX8fHx7Ny5UqqVKlCnTp1ePjhh9mzZw9ffPEFAOPGjaN+/fq0aNGCrKwsPv74Y2bOnMkff/xh11Mod7IS00khjKp+WYWuzoqIiIiIiIiIlKQyn5hatmwZ559/vvvr/F5QN954I5999hkJCQns3LnTfb/T6eS+++5jz549hISE0Lp1a/76669Cx5ATO7w/j9cYDWnw3xxztVZEREREREREpKQ5LMuy7A6irElJSSEiIoLk5GTCw8PtDues+3XQhwyacgu+uMixynzuUkRERERERETKkFPJqyjrIMeonHeQJ3iG5vUzgRfsDkdEREREREREKiifk+8i3saZ6sSBWbZaRERERERERKS0KDElx3Cm5wAQEKKCOhEREREREREpPco8yDE2HI5iKt1JSTpIH7uDEREREREREZEKS4kpOUZ8WnWW0hnHkXi7QxERERERERGRCkyJKTlGDSuBnsyhdyMnUN/ucERERERERESkglJiSo5Ry7WbC0jnik617A5FRERERERERCowNT+XYzidDgACIkNsjkREREREREREKjIlpuQYKTlBZOOPX0Qlu0MRERERERERkQpMU/nkGD/mDmYRXcmZv5WXR9sdjYiIiIiIiIhUVKqYkmNkWkEARFTztzkSEREREREREanIVDElhVkWlzORAUzlvzcMtTsaEREREREREanAVDElheSmZmDhSwC5hMdE2B2OiIiIiIiIiFRgSkxJIc59ie7/B0RXtjESEREREREREanolJiSQpwHkvibnsykN3sOqMeUiIiIiIiIiJQe9ZiSQpyHUlhGB1IJ59AhiImxOyIRERERERERqaiUmJJCnIdT6MQych3+1Kx5nt3hiIiIiIiIiEgFpsSUFOI8nEZP1hEVkEyNGkpMiYiIiIiIiEjpUY8pKcSZmA5AgL9lcyQiIiIiIiIiUtEpMSWFZCVm4MQff/U9FxEREREREZFSpql8Usj2vQE8zyMEJ2Vxg93BiIiIiIiIiEiFpoopKSQ52fwb6OO0NxARERERERERqfBUMSWF1GEXD/M8LRvlAk/YHY6IiIiIiIiIVGBKTEkhOelOAnFQPVwVUyIiIiIiIiJSujSVTwpxZuQCEBAaaHMkIiIiIiIiIlLRqWJKClmbVJsZtMMv9TC97A5GRERERERERCo0VUxJIRvTYphLT/4+2MLuUERERERERESkglNiSgqpae2lM4s5r+Feu0MRERERERERkQpOU/mkkIbWFoI4zNBuDewORUREREREREQqOFVMSSHOXPMjEVC5ks2RiIiIiIiIiEhFp8SUFJKZ44cFBFQNszsUEREREREREangNJVPCvncdR1raUno0u3cf5Pd0YiIiIiIiIhIRaaKKSkkk2AsfKhUNcjuUERERERERESkglPFlLjlpWUylB/IJpArh15rdzgiIiIiIiIiUsEpMSVuzgOJBJBDADlUqR9pdzgiIiIiIiIiUsFpKp+4OQ8kAeBLLr6VNJVPREREREREREqXKqbEzXkwhbn0IAAnR45AlSp2RyQiIiIiIiIiFZkSU+LmPJzC35xPLv6kpCgxJSIiIiIiIiKlq8xP5ZszZw4DBw6kVq1aOBwOJk2adNLHzJ49m/bt2xMYGEijRo347LPPSj3OiiD7UBrtWEEXn6VUrmx3NCIiIiIiIiJS0ZX5xFR6ejpt2rThnXfeKdb+8fHxDBgwgPPPP5+VK1cyatQobrnlFn7//fdSjrT8y0lKZwC/cUvwN0RE2B2NiIiIiIiIiFR0ZX4qX79+/ejXr1+x93///fepX78+r776KgDNmjVj3rx5vP766/Tt27e0wqwQnEkZAAQE2ByIiIiIiIiIiHiFMl8xdaoWLlxInz59Cm3r27cvCxcuLPIx2dnZpKSkFLp5o+ykTCwgINDuSERERERERETEG1S4xNS+ffuIjo4utC06OpqUlBQyMzOP+5ixY8cSERHhvsXExJyNUMuc1bsieYbHePDwg3aHIiIiIiIiIiJeoMIlpk7Hww8/THJysvu2a9cuu0OyRUqKAxe+4NCPhYiIiIiIiIiUvjLfY+pU1ahRg/379xfatn//fsLDwwkODj7uYwIDAwkM1Py1Jr5bGc1rtI3NAx6wOxwRERERERERqeAqXGlMt27dmDFjRqFtf/75J926dbMpovLDyswmnFRiqmTYHYqIiIiIiIiIeIEyn5hKS0tj5cqVrFy5EoD4+HhWrlzJzp07ATMN74YbbnDvf9ttt7Ft2zYefPBBNm7cyLvvvsv333/Pvffea0f45YozMxeAgDAtyyciIiIiIiIipa/MJ6aWLVtGu3btaNeuHQCjR4+mXbt2PPHEEwAkJCS4k1QA9evXZ+rUqfz555+0adOGV199lY8//pi+ffvaEn95sialDvPpxsqMxnaHIiIiIiIiIiJewGFZlmV3EGVNSkoKERERJCcnEx4ebnc4Z83lIb/xc2Y/rmy+jh/WtbA7HBEREREREREph04lr1Lhmp/L6athJdCaVXSon2p3KCIiIiIiIiLiBZSYErdW1hqi2cXQni3tDkVEREREREREvECZ7zElZ48zzxeAgKqhNkciIiIiIiIiIt5AiSlxc+aZArqAqmE2RyIiIiIiIiIi3kBT+cTtI+s/7CKGRhsOcu0Qu6MRERERERERkYpOFVMCgCvLSQYhZBFMYJUQu8MRERERERERES+giikBwLk/kav5jiyCuODSEXaHIyIiIiIiIiJeQIkpAcB5IIkw0oggmcq1gu0OR0RERERERES8gKbyCQDOQ8kABDhycDgcNkcjIiIiIiIiIt5AFVMCQPbBVBbQlQhSycyEYBVNiYiIiIiIiEgpU2JKAEjbn84fDAILPnIqMSUiIiIiIiIipU+JKQEg80gGrVmFw9eH0NBWdocjIiIiIiIiIl5AiSkBwC8jhcuZRL2wJHx9X7c7HBERERERERHxAmp+LgA4kzIBCAi0ORARERERERER8RpKTAkAzpQsAAKC9CMhIiIiIiIiImeHpvIJAIu21+RFrqTZoZ1cYXcwIiIiIiIiIuIVVB4jACSm+5FJCFkE2R2KiIiIiIiIiHgJVUwJAK39NnAH79C5qQXcaXc4IiIiIiIiIuIFlJgSAHydmURxiEbR/naHIiIiIiIiIiJeQlP5BABnZh4AAWFalk9EREREREREzg4lpgSAtWn1+If2bHHWsTsUEREREREREfESSkwJAAsz2zKFgcxKiLU7FBERERERERHxEkpMCQDR1j6aEEfTOpl2hyIiIiIiIiIiXkLNzwWAziyhMRu56sLOdociIiIiIiIiIl5CFVMCQEauaXq+d1uWzZGIiIiIiIiIiLdQYkqI+yWObExiavqLq4n7Jc7miERERERERETEGygxJWz7fTOfcz3juJudPnXYPnu73SGJiIiIiIiIiBdQYkqIquVHMhEkURnLZVGvdz27QxIRERERERERL6Dm50K10CyG8y0uhx83f3MhsYMa2x2SiIiIiIiIiHgBVUwJyRv3Up3DdImIo8PVSkqJiIiIiIiIyNmhxJSQsu0wAOFVfG2ORERERERERES8iabyCTt35LGYzgQEHbY7FBERERERERHxIqqYEjbur8pv9Oe9nZfaHYqIiIiIiIiIeBFVTAk5GTk0ZQNtm/oBle0OR0RERERERES8hCqmhMo5B7ia7xn3vwN2hyIiIiIiIiIiXkSJKS+XczCJTCsYgPCOjWyORkRERERERES8iRJTXi7ln81YgD9OgupE2R2OiIiIiIiIiHgR9Zjycsmrd/A+/0ceflyywkH79nZHJCIiIiIiIiLeolxUTL3zzjvUq1ePoKAgunTpwpIlS4rc97PPPsPhcBS6BQUFncVoy5fkjQkcoQqHqEZ4uN3RiIiIiIiIiIg3KfMVU9999x2jR4/m/fffp0uXLowbN46+ffsSFxdHVNTxp56Fh4cTFxfn/trhcJytcMud5PgjjORdqp8TQN26d9gdjoiIiIiIiIh4kTJfMfXaa69x6623MmLECJo3b877779PSEgIn376aZGPcTgc1KhRw32Ljo4+ixGXL6n70ogkme4ND+Lvb3c0IiIiIiIiIuJNynRiyul08s8//9CnTx/3Nh8fH/r06cPChQuLfFxaWhp169YlJiaGwYMHs27duhOeJzs7m5SUlEI3b5FyKAeA8HqVbY5ERERERERERLxNmU5MHTp0iLy8vGMqnqKjo9m3b99xHxMbG8unn37K5MmT+eqrr3C5XHTv3p3du3cXeZ6xY8cSERHhvsXExJTo8yjLlic3YDGd2FGpmd2hiIiIiIiIiIiXKdOJqdPRrVs3brjhBtq2bUuvXr2YOHEi1atX54MPPijyMQ8//DDJycnu265du85ixPZaktOO3+jPn3tb2h2KiIiIiIiIiHiZMt38vFq1avj6+rJ///5C2/fv30+NGjWKdQx/f3/atWvHli1bitwnMDCQwMDAM4q1PMrefZCqHKYpG+h+ifdUiYmIiIiIiIhI2VCmK6YCAgLo0KEDM2bMcG9zuVzMmDGDbt26FesYeXl5rFmzhpo1a5ZWmOVWyj+baccqbnR8yXX/F2p3OCIiIiIiIiLiZcp0xRTA6NGjufHGG+nYsSOdO3dm3LhxpKenM2LECABuuOEGateuzdixYwF4+umn6dq1K40aNSIpKYmXX36ZHTt2cMstt9j5NMqk5DU7AIgIzLI5EhERERERERHxRmU+MTVs2DAOHjzIE088wb59+2jbti3Tp093N0TfuXMnPj6ewq/ExERuvfVW9u3bR+XKlenQoQMLFiygefPmdj2FMis5bj8uIDzMsjsUEREREREREfFCDsuylJU4SkpKChERESQnJxMeHm53OKXmy05vMGLZSOoEHmBbVi27wxERERERERGRCuBU8ipluseUlK74vUHk4YfL19/uUERERERERETEC5X5qXxSeupkxjGKcfToFw0MtzscEREREREREfEyqpjyYmlpEEkyHboF2h2KiIiIiIiIiHghJaa8lOVykZITDEB4m3r2BiMiIiIiIiIiXklT+bxU1rYEFtIVF76k1GhCVbsDEhERERERERGvo8SUl0r+ZwsL6M4RqrLrCNS3OyARERERERER8TpKTHmplHW7aIYfaT7hNGzYyu5wRERERERERMQLKTHlpZI37ecittIkKpnatV+zOxwRERERERER8UJqfu6lUnYmARBePcDeQERERERERETEaykx5aUOJ2TjAiJqh9kdioiIiIiIiIh4KU3l81IT93XnRy5l6971nGt3MCIiIiIiIiLilVQx5aUSsquShx9hUcF2hyIiIiIiIiIiXkoVU17IysvjAusv2vMP/72jr93hiIiIiIiIiIiXUsWUF8rYsAvwIZIkmlxc3+5wRERERERERMRLKTHlhZJXbAUg1CcD30pBNkcjIiIiIiIiIt5KU/m80L4VCfxBH+r6JeBygY/SkyIiIiIiIiJiAyWmvNCmtdksoAcrczKVlBIRERERERER2ygx5YVy9h+hC4uoUTUP6GF3OCIiIiIiIiLipZSY8kIhSQn043cu6hqIElMiIiIiIiIiYhdN5PJCyYkuAMIbVrM5EhERERERERHxZkpMeaED6aG4gIjmte0ORURERERERES8mKbyeRmXM4f3Xbewm3NolrqPq+0OSERERERERES8liqmvEzaqm2kEE4efljZTrvDEREREREREREvpoopL7Pms3+4k62kEsq6R9OJa3kVsYNi7Q5LRERERERERLyQKqa8zIbJm/DFRSQpBPi62D57u90hiYiIiIiIiIiXUmLKi1g5uSQmZALgcICVZ1Gvdz17gxIRERERERERr6WpfF5k28s/Mck1CBc+/PeadLoPjdE0PhERERERERGxjRJTXmTeu6tYymXkEMDYWyC2t90RiYiIiIiIiIg3U2LKS2Rs2s2OPX5czXf4XXwBvXrVtjskEREREREREfFy6jHlJdb872ssfOkRvIJPf6+Nw2F3RCIiIiIiIiLi7ZSY8gKWy8WK3/YB0O5SVUqJiIiIiIiISNmgqXxeIOHLGXyeNYwqHOa2xzvaHY6IiIiIiIiICKDElFf47dllLOYhLHxI9IdouwMSEREREREREUGJqQov51Ayu7dk04/fiOzajKZNG9gdkoiIiIiIiIgIoB5TFd76R78CHFzsN4uv5ta1OxwRERERERERETclpiq4ld9tBqBtz3Acfr42RyMiIiIiIiIi4qHEVAW27JlpfJA8jC00oPWzQ+0OR0RERERERESkECWmKqi4X+L44Ik9LKQb3zKcjVvUTkxEREREREREypZykZh65513qFevHkFBQXTp0oUlS5accP8ffviBpk2bEhQURKtWrZg2bdpZirTsiJ8VTyhpdGERHVhOyoqtdockIiIiIiIiIlJImU9Mfffdd4wePZoxY8awfPly2rRpQ9++fTlw4MBx91+wYAHDhw/n5ptvZsWKFQwZMoQhQ4awdu3asxy5veqfX59IUujv+wf9+Y16vevZHZKIiIiIiIiISCEOy7Isu4M4kS5dutCpUyfefvttAFwuFzExMdx1113873//O2b/YcOGkZ6ezq+//ure1rVrV9q2bcv7779frHOmpKQQERFBcnIy4eHhJfNEbBD3SxzbZ2+nXu96xA6KtTscEREREREREfECp5JXKdMVU06nk3/++Yc+ffq4t/n4+NCnTx8WLlx43McsXLiw0P4Affv2LXJ/gOzsbFJSUgrdKoLYQbH0fa2vklIiIiIiIiIiUiaV6cTUoUOHyMvLIzo6utD26Oho9u3bd9zH7Nu375T2Bxg7diwRERHuW0xMzJkHLyIiIiIiIiIiJ1SmE1Nny8MPP0xycrL7tmvXLrtDEhERERERERGp8PzsDuBEqlWrhq+vL/v37y+0ff/+/dSoUeO4j6lRo8Yp7Q8QGBhIYGDgmQcsIiIiIiIiIiLFVqYrpgICAujQoQMzZsxwb3O5XMyYMYNu3bod9zHdunUrtD/An3/+WeT+IiIiIiIiIiJijzJdMQUwevRobrzxRjp27Ejnzp0ZN24c6enpjBgxAoAbbriB2rVrM3bsWADuueceevXqxauvvsqAAQOYMGECy5Yt48MPP7TzaYiIiIiIiIiIyFHKfGJq2LBhHDx4kCeeeIJ9+/bRtm1bpk+f7m5wvnPnTnx8PIVf3bt355tvvuGxxx7jkUceoXHjxkyaNImWLVva9RREREREREREROQ4HJZlWXYHUdakpKQQERFBcnIy4eHhdocjIiIiIiIiIlJunEpepUz3mBIRERERERERkYpLiSkREREREREREbGFElMiIiIiIiIiImILJaZERERERERERMQWSkyJiIiIiIiIiIgtlJgSERERERERERFbKDElIiIiIiIiIiK2UGJKRERERERERERs4Wd3AGWRZVkApKSk2ByJiIiIiIiIiEj5kp9Pyc+vnIgSU8eRmpoKQExMjM2RiIiIiIiIiIiUT6mpqURERJxwH4dVnPSVl3G5XOzdu5ewsDAcDofd4RRLSkoKMTEx7Nq1i/DwcLvDkbNIY++9NPbeS2PvnTTu3ktj77009t5LY++9KsrYW5ZFamoqtWrVwsfnxF2kVDF1HD4+Ppxzzjl2h3FawsPDy/UPr5w+jb330th7L429d9K4ey+NvffS2Hsvjb33qghjf7JKqXxqfi4iIiIiIiIiIrZQYkpERERERERERGyhxFQFERgYyJgxYwgMDLQ7FDnLNPbeS2PvvTT23knj7r009t5LY++9NPbeyxvHXs3PRURERERERETEFqqYEhERERERERERWygxJSIiIiIiIiIitlBiSkREREREREREbKHE1CkaO3YsnTp1IiwsjKioKIYMGUJcXFyhfbKyshg5ciRVq1YlNDSUK664gv3797vvX7VqFcOHDycmJobg4GCaNWvGG2+8UegYEydO5KKLLqJ69eqEh4fTrVs3fv/995PGZ1kWTzzxBDVr1iQ4OJg+ffqwefPmQvts2rSJwYMHU61aNcLDwzn33HOZNWvWSY+9evVqzjvvPIKCgoiJieGll14qdP9HH33EeeedR+XKlalcuTJ9+vRhyZIlJz1ueaGxL3rsJ06cSMeOHYmMjKRSpUq0bduWL7/88qTHLS809kWPfUETJkzA4XAwZMiQkx63vNDYFz32n332GQ6Ho9AtKCjopMctDzTuJ/6dT0pKYuTIkdSsWZPAwECaNGnCtGnTTnrs8kBjX/TY9+7d+5jfeYfDwYABA0567PJAY3/i3/tx48YRGxtLcHAwMTEx3HvvvWRlZZ302OWBxr7osc/JyeHpp5+mYcOGBAUF0aZNG6ZPn37S45YX3jr2WVlZ3HTTTbRq1Qo/P78i37vPnj2b9u3bExgYSKNGjfjss89OGvNps+SU9O3b1xo/fry1du1aa+XKlVb//v2tOnXqWGlpae59brvtNismJsaaMWOGtWzZMqtr165W9+7d3fd/8skn1t13323Nnj3b2rp1q/Xll19awcHB1ltvveXe55577rFefPFFa8mSJdamTZushx9+2PL397eWL19+wvheeOEFKyIiwpo0aZK1atUqa9CgQVb9+vWtzMxM9z6NGze2+vfvb61atcratGmTdccdd1ghISFWQkJCkcdNTk62oqOjrWuvvdZau3at9e2331rBwcHWBx984N7nmmuusd555x1rxYoV1oYNG6ybbrrJioiIsHbv3n1K3+OySmNf9NjPmjXLmjhxorV+/Xpry5Yt1rhx4yxfX19r+vTpp/Q9Lqs09kWPfb74+Hirdu3a1nnnnWcNHjy4ON/WckFjX/TYjx8/3goPD7cSEhLct3379p3S97es0rgXPe7Z2dlWx44drf79+1vz5s2z4uPjrdmzZ1srV648pe9xWaWxL3rsDx8+XOj3fe3atZavr681fvz4U/kWl1ka+6LH/uuvv7YCAwOtr7/+2oqPj7d+//13q2bNmta99957St/jskpjX/TYP/jgg1atWrWsqVOnWlu3brXeffddKygo6KQxlxfeOvZpaWnWbbfdZn344YdW3759j/vefdu2bVZISIg1evRoa/369dZbb71Vqp/vlJg6QwcOHLAA6++//7Ysy7KSkpIsf39/64cffnDvs2HDBguwFi5cWORx7rjjDuv8888/4bmaN29uPfXUU0Xe73K5rBo1algvv/yye1tSUpIVGBhoffvtt5ZlWdbBgwctwJozZ457n5SUFAuw/vzzzyKP/e6771qVK1e2srOz3dseeughKzY2tsjH5ObmWmFhYdbnn39+wudVXmnsix57y7Ksdu3aWY899tgJ9ymvNPaFxz43N9fq3r279fHHH1s33nhjhUpMHU1j7xn78ePHWxERESd8DhWFxt0z7u+9957VoEEDy+l0nvB5VBQa+6L/1r/++utWWFhYoQ9wFYnG3jP2I0eOtC644IJCjxs9erTVo0ePEz6v8kpj7xn7mjVrWm+//Xahx11++eXWtddee8LnVV55y9gXVNR79wcffNBq0aJFoW3Dhg2z+vbtW6zjnipN5TtDycnJAFSpUgWAf/75h5ycHPr06ePep2nTptSpU4eFCxee8Dj5xzgel8tFamrqCfeJj49n3759hc4dERFBly5d3OeuWrUqsbGxfPHFF6Snp5Obm8sHH3xAVFQUHTp0KPLYCxcupGfPngQEBLi39e3bl7i4OBITE4/7mIyMDHJyck4Yc3mmsT/+2FuWxYwZM4iLi6Nnz55FHrc809gXHvunn36aqKgobr755iKPVVFo7AuPfVpaGnXr1iUmJobBgwezbt26Io9ZnmncPeP+yy+/0K1bN0aOHEl0dDQtW7bk+eefJy8vr8jjlmca+6Lf533yySdcffXVVKpUqcjjlmcae8/Yd+/enX/++cfdomPbtm1MmzaN/v37F3nc8kxj7xn77OzsY6bpBwcHM2/evCKPW555y9gXx8KFCwudG8zPx4me95nwK5WjegmXy8WoUaPo0aMHLVu2BGDfvn0EBAQQGRlZaN/o6Gj27dt33OMsWLCA7777jqlTpxZ5rldeeYW0tDSGDh1a5D75x4+Oji7y3A6Hg7/++oshQ4YQFhaGj48PUVFRTJ8+ncqVK5/w2PXr1z/muPn3He+xDz30ELVq1TrmB7oi0NgfO/bJycnUrl2b7OxsfH19effdd7nooouKPG55pbEvPPbz5s3jk08+YeXKlUUep6LQ2Bce+9jYWD799FNat25NcnIyr7zyCt27d2fdunWcc845RR67vNG4Fx73bdu2MXPmTK699lqmTZvGli1buOOOO8jJyWHMmDFFHrs80tgX/T5vyZIlrF27lk8++aTIY5ZnGvvCY3/NNddw6NAhzj33XCzLIjc3l9tuu41HHnmkyOOWVxr7wmPft29fXnvtNXr27EnDhg2ZMWMGEydOrJAXI7xp7Itj3759xz13SkoKmZmZBAcHn9Hxj6aKqTMwcuRI1q5dy4QJE077GGvXrmXw4MGMGTOGiy+++Lj7fPPNNzz11FN8//33REVFAfD1118TGhrqvs2dO7dY57Msi5EjRxIVFcXcuXNZsmQJQ4YMYeDAgSQkJADQokUL93H79et3Ws/rhRdeYMKECfz8888VphluQRr7Y4WFhbFy5UqWLl3Kc889x+jRo5k9e/YpHaM80Nh7pKamcv311/PRRx9RrVq1Yj2mPNPYF9atWzduuOEG2rZtS69evZg4cSLVq1fngw8+KPYxygONe2Eul4uoqCg+/PBDOnTowLBhw3j00Ud5//33i32M8kJjX7RPPvmEVq1a0blz59N6fFmnsS9s9uzZPP/887z77rssX76ciRMnMnXqVJ555pliH6O80NgX9sYbb9C4cWOaNm1KQEAAd955JyNGjMDHp+KlETT2NiuVCYJeYOTIkdY555xjbdu2rdD2GTNmWICVmJhYaHudOnWs1157rdC2devWWVFRUdYjjzxS5Hnym9D9+uuvhbanpKRYmzdvdt8yMjKsrVu3WoC1YsWKQvv27NnTuvvuuy3Lsqy//vrL8vHxsZKTkwvt06hRI2vs2LGWZVnW9u3b3cfNb1x+/fXXHzP3dObMmRZgHTlypND2l19+2YqIiLCWLl1a5PMqzzT2RY99QTfffLN18cUXF3l/eaSxLzz2K1assADL19fXfXM4HJbD4bB8fX2tLVu2FPkcyxuNffF+76+88krr6quvLvL+8kbjfuy49+zZ07rwwgsL7TNt2jQLKNSnpLzT2Bf9O5+WlmaFh4db48aNK/J5lWca+2PH/txzz7Xuv//+QvvkN3jOy8sr8jmWNxr7on/vMzMzrd27d1sul8t68MEHrebNmxf5/Mojbxv7gorqMXXeeedZ99xzT6Ftn376qRUeHl7k8zsTSkydIpfLZY0cOdKqVauWtWnTpmPuz2+Q9uOPP7q3bdy48ZgGaWvXrrWioqKsBx54oMhzffPNN1ZQUJA1adKkYsdWo0YN65VXXnFvS05OLtQg7ZdffrF8fHys1NTUQo9t0qSJ9dxzzxV57PzmeAWbnT788MPHNMV88cUXrfDw8BM2gyuvNPYnHvujjRgxwurVq1ex4i/rNPbHH/vMzExrzZo1hW6DBw+2LrjgAmvNmjUV4kOqxr74v/e5ublWbGxshVilSeNe9Lg//PDDVt26dQt9GB03bpxVs2bNYsVf1mnsT/47P378eCswMNA6dOhQseIuLzT2RY99+/btrQcffPCY5xAcHGzl5uYW6zmUZRr74v+tdzqdVsOGDa2HH364WPGXdd469gWdqPl5y5YtC20bPnx4qTU/V2LqFN1+++1WRESENXv27EJL5mZkZLj3ue2226w6depYM2fOtJYtW2Z169bN6tatm/v+NWvWWNWrV7euu+66Qsc4cOCAe5+vv/7a8vPzs955551C+yQlJZ0wvhdeeMGKjIy0Jk+ebK1evdoaPHhwoSUlDx48aFWtWtW6/PLLrZUrV1pxcXHW/fffb/n7+59wqeekpCQrOjrauv766621a9daEyZMsEJCQgotJ/rCCy9YAQEB1o8//lgo5qN/UcorjX3RY//8889bf/zxh7V161Zr/fr11iuvvGL5+flZH3300Sl/n8sijX3RY3+0irYqn8a+6LF/6qmnrN9//93aunWr9c8//1hXX321FRQUZK1bt+6Uv89ljca96HHfuXOnFRYWZt15551WXFyc9euvv1pRUVHWs88+e8rf57JIY3/y1/tzzz3XGjZsWLG/p+WFxr7osR8zZowVFhZmffvtt9a2bdusP/74w2rYsKE1dOjQU/4+l0Ua+6LHftGiRdZPP/1kbd261ZozZ451wQUXWPXr1z+mgqi88taxtyxT4bVixQpr4MCBVu/eva0VK1YUqs7atm2bFRISYj3wwAPWhg0brHfeecfy9fW1pk+ffirf4mJTYuoUAce9jR8/3r1PZmamdccdd1iVK1e2QkJCrMsuu8xKSEhw3z9mzJjjHqNu3brufXr16nXcfW688cYTxudyuazHH3/cio6OtgIDA60LL7zQiouLK7TP0qVLrYsvvtiqUqWKFRYWZnXt2tWaNm3aSZ/7qlWrrHPPPdcKDAy0ateubb3wwguF7q9bt+5xYx4zZsxJj10eaOyLHvtHH33UatSokRUUFGRVrlzZ6tatmzVhwoSTHre80NgXPfZHq2iJKY190WM/atQoq06dOlZAQIAVHR1t9e/f31q+fPlJj1seaNxP/Du/YMECq0uXLlZgYKDVoEED67nnnqsQVROWpbE/2djnVwr88ccfJz1eeaOxL3rsc3JyrCeffNJq2LChFRQUZMXExFh33HFHhUlOaOyLHvvZs2dbzZo1swIDA62qVata119/vbVnz56THre88OaxL+qze0GzZs2y2rZtawUEBFgNGjQo9H0paQ7LsixERERERERERETOsorXTl9ERERERERERMoFJaZERERERERERMQWSkyJiIiIiIiIiIgtlJgSERERERERERFbKDElIiIiIiIiIiK2UGJKRERERERERERsocSUiIiIiIiIiIjYQokpERERERERERGxhRJTIiIiUqHddNNNDBkyxO4wypTHH3+c//73v+6ve/fuzahRo+wL6AS6du3KTz/9ZHcYIiIiUkr87A5ARERE5HQ5HI4T3j9mzBjeeOMNLMs6SxEd30033URSUhKTJk2yNQ6Affv28cYbb7BmzRq7QymWxx57jHvvvZfLLrsMHx9dUxUREalo9NddREREyq2EhAT3bdy4cYSHhxfadv/99xMREUFkZKTdoZYZH3/8Md27d6du3bp2h4LT6TzpPv369SM1NZXffvvtLEQkIiIiZ5sSUyIiIlJu1ahRw32LiIjA4XAU2hYaGnrMVL7evXtz1113MWrUKCpXrkx0dDQfffQR6enpjBgxgrCwMBo1anRMImTt2rX069eP0NBQoqOjuf766zl06JD7/h9//JFWrVoRHBxM1apV6dOnD+np6Tz55JN8/vnnTJ48GYfDgcPhYPbs2QDs2rWLoUOHEhkZSZUqVRg8eDDbt293HzM/9qeeeorq1asTHh7ObbfdViihU9R5izJhwgQGDhx4zHaXy8WDDz5IlSpVqFGjBk8++WSh+3fu3MngwYMJDQ0lPDycoUOHsn///mNiLWjUqFH07t270Pf+zjvvZNSoUVSrVo2+fftiWRZPPvkkderUITAwkFq1anH33Xe7H+Pr60v//v2ZMGFCkc9JREREyi8lpkRERMTrfP7551SrVo0lS5Zw1113cfvtt3PVVVfRvXt3li9fzsUXX8z1119PRkYGAElJSVxwwQW0a9eOZcuWMX36dPbv38/QoUMBU7k1fPhw/vOf/7BhwwZmz57N5ZdfjmVZ3H///QwdOpRLLrnEXcnVvXt3cnJy6Nu3L2FhYcydO5f58+cTGhrKJZdcUijxNGPGDPcxv/32WyZOnMhTTz110vMez5EjR1i/fj0dO3Y87vekUqVKLF68mJdeeomnn36aP//8EzBJq8GDB3PkyBH+/vtv/vzzT7Zt28awYcNO63sfEBDA/Pnzef/99/npp594/fXX+eCDD9i8eTOTJk2iVatWhR7TuXNn5s6de8rnEhERkbJPPaZERETE67Rp04bHHnsMgIcffpgXXniBatWqceuttwLwxBNP8N5777F69Wq6du3K22+/Tbt27Xj++efdx/j000+JiYlh06ZNpKWlkZuby+WXX+6eIlcwuRIcHEx2djY1atRwb/vqq69wuVx8/PHH7l5Z48ePJzIyktmzZ3PxxRcDEBAQwKeffkpISAgtWrTg6aef5oEHHuCZZ54hISHhhOc92s6dO7Esi1q1ah1zX+vWrRkzZgwAjRs35u2332bGjBlcdNFFzJgxgzVr1hAfH09MTAwAX3zxBS1atGDp0qV06tSp2N/7xo0b89JLL7m/njp1KjVq1KBPnz74+/tTp04dOnfuXOgxtWrVYteuXbhcLvWZEhERqWD0l11ERES8TuvWrd3/9/X1pWrVqoUSOtHR0QAcOHAAgFWrVjFr1ixCQ0Pdt6ZNmwKwdetW2rRpw4UXXkirVq246qqr+Oijj0hMTDxhDKtWrWLLli2EhYW5j1mlShWysrLYunWre782bdoQEhLi/rpbt26kpaWxa9euUz5vZmYmAEFBQSf8ngDUrFnT/fw3bNhATEyMOykF0Lx5cyIjI9mwYcMJn+fROnToUOjrq666iszMTBo0aMCtt97Kzz//TG5ubqF9goODcblcZGdnn9K5REREpOxTYkpERES8jr+/f6GvHQ5HoW35FUwulwuAtLQ0Bg4cyMqVKwvdNm/eTM+ePfH19eXPP//kt99+o3nz5rz11lvExsYSHx9fZAxpaWl06NDhmGNu2rSJa665pljP41TPW61aNYDjJq+O9z3Jf/7F4ePjc8wUwpycnGP2q1SpUqGvY2JiiIuL49133yU4OJg77riDnj17FnrskSNHqFSpEsHBwcWOR0RERMoHJaZERERETqJ9+/asW7eOevXq0ahRo0K3/ESLw+GgR48ePPXUU6xYsYKAgAB+/vlnwEzHy8vLO+aYmzdvJioq6phjRkREuPdbtWqVu9IJYNGiRYSGhrqrl0503qM1bNiQ8PBw1q9ff0rPv1mzZuzatYtdu3a5t61fv56kpCSaN28OQPXq1UlISCj0uJUrVxbr+MHBwQwcOJA333yT2bNns3DhQtasWeO+f+3atbRr1+6UYhYREZHyQYkpERERkZMYOXIkR44cYfjw4SxdupStW7fy+++/M2LECPLy8li8eDHPP/88y5YtY+fOnUycOJGDBw/SrFkzAOrVq8fq1auJi4vj0KFD5OTkcO2111KtWjUGDx7M3LlziY+PZ/bs2dx9993s3r3bfW6n08nNN9/M+vXrmTZtGmPGjOHOO+/Ex8fnpOc9mo+PD3369GHevHmn9Pz79OlDq1atuPbaa1m+fDlLlizhhhtuoFevXu5G6hdccAHLli3jiy++YPPmzYwZM4a1a9ee9NifffYZn3zyCWvXrmXbtm189dVXBAcHu3tmAcydO9fdc0tEREQqFiWmRERERE6iVq1azJ8/n7y8PC6++GJatWrFqFGjiIyMxMfHh/DwcObMmUP//v1p0qQJjz32GK+++ir9+vUD4NZbbyU2NpaOHTtSvXp15s+fT0hICHPmzKFOnTpcfvnlNGvWjJtvvpmsrCzCw8Pd577wwgtp3LgxPXv2ZNiwYQwaNIgnn3wS4KTnPZ5bbrmFCRMmnNI0PYfDweTJk6lcuTI9e/akT58+NGjQgO+++869T9++fXn88cd58MEH6dSpE6mpqdxwww0nPXZkZCQfffQRPXr0oHXr1vz1119MmTKFqlWrArBnzx4WLFjAiBEjih2viIiIlB8Oq6j1hEVERETEVjfddBNJSUlMmjSpxI5pWRZdunTh3nvvZfjw4SV23NLy0EMPkZiYyIcffmh3KCIiIlIKVDElIiIi4kUcDgcffvjhMSvflVVRUVE888wzdochIiIipUQVUyIiIiJlVGlUTImIiIiUJUpMiYiIiIiIiIiILTSVT0REREREREREbKHElIiIiIiIiIiI2EKJKRERERERERERsYUSUyIiIiIiIiIiYgslpkRERERERERExBZKTImIiIiIiIiIiC2UmBIREREREREREVsoMSUiIiIiIiIiIrZQYkpERERERERERGzx/0sSsEd62JuCAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, axes = plt.subplots(2, 1, figsize=(12, 10))\n", + "\n", + "axes[0].plot(eloss_vals_base_df[\"datetime\"], eloss_vals_base_df[\"value\"], color=\"purple\", label=\"Channel Loss Model ELOSS (PEADJ = 1) - Basin Outflow Point\", marker='o', markersize=2, linestyle='-')\n", + "axes[0].plot(eloss_vals_high_df[\"datetime\"], eloss_vals_high_df[\"value\"], color=\"blue\", label=\"Channel Loss Model ELOSS (PEADJ = 100) - Basin Outflow Point\", linestyle=':')\n", + "axes[0].set_ylabel(\"Flow (cms)\")\n", + "axes[0].set_title(\"ELOSS value comparison\")\n", + "axes[0].legend()\n", + "\n", + "axes[1].plot(df.index, df[\"flow\"], color=\"red\", label=\"T-Route - Basin Outflow Point\")\n", + "axes[1].plot(df_base_eloss.index, df_base_eloss[\"flow\"], color=\"purple\", label=\"Channel Loss Model ELOSS (PEADJ = 1) - Basin Outflow Point\", marker='o', markersize=2, linestyle='-')\n", + "axes[1].plot(df_high_eloss.index, df_high_eloss[\"flow\"], color=\"blue\", label=\"Channel Loss Model ELOSS (PEADJ = 100) - Basin Outflow Point\", linestyle=':')\n", + "axes[1].set_ylabel(\"Flow (cms)\")\n", + "axes[1].set_xlabel(\"Timesteps (hours)\")\n", + "axes[1].set_title(\"Downstream discharge comparison\")\n", + "axes[1].legend()\n", + "\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "markdown", + "id": "109881ec", + "metadata": {}, + "source": [ + "Conclusion: You can see the ET values obtained by the Evapotranspiration module fluxate based on what time of day it is. Additionally, the usage of a PEADJ factor can scale this ET and can potentially be calibrated" + ] + }, + { + "cell_type": "markdown", + "id": "1c2c8689", + "metadata": {}, + "source": [ + "#### Examining SSOUT\n", + "\n", + "Next, we'll examine the differences between running with and without the SSOUT values. Two different SSOUT values are shown to denonstrate how the adjustment setting is used." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "bbca7cf1", + "metadata": {}, + "outputs": [], + "source": [ + "# Load t-route output datasets for \n", + "ds = xr.open_dataset(\"./output/base_output/troute_output_202208020000.nc\", engine=\"netcdf4\")\n", + "ds_base_ssout = xr.open_dataset(\"./output/ssout_base/troute_output_202208020000.nc\", engine=\"netcdf4\") \n", + "ds_high_ssout = xr.open_dataset(\"./output/ssout_high/troute_output_202208020000.nc\", engine=\"netcdf4\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "404b9480", + "metadata": {}, + "outputs": [], + "source": [ + "# Process channel loss (ET) stream data at the downstream-most nexus\n", + "df_base_ssout = ds_base_ssout.sel(feature_id=2619318).to_dataframe().reset_index()\n", + "df_base_ssout[\"time\"] = pd.to_datetime(df_base_ssout[\"time\"])\n", + "df_base_ssout = df_base_ssout.set_index(\"time\")\n", + "df_base_ssout[\"flow\"] = df_base_ssout[\"flow\"] * 0.028316846592 # convert to cms\n", + "\n", + "df_high_ssout = ds_high_ssout.sel(feature_id=2619318).to_dataframe().reset_index()\n", + "df_high_ssout[\"time\"] = pd.to_datetime(df_high_ssout[\"time\"])\n", + "df_high_ssout = df_high_ssout.set_index(\"time\")\n", + "df_high_ssout[\"flow\"] = df_high_ssout[\"flow\"] * 0.028316846592 # convert to cms\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "6ffc0f54", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKUAAAPdCAYAAABba9tpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdeXhM1x8G8HeSTCaTXSIRIhKy2RL7EkSiRSwlWlVKEfu+tChVu6K11NZWaUm0KLX7qbUq9lpKUAkSEtFKJIRE9u38/oi5MiaTPSL1fp5nnpp7zz333JnJkLfnfK9MCCFARERERERERET0CumU9wCIiIiIiIiIiOjNw1CKiIiIiIiIiIheOYZSRERERERERET0yjGUIiIiIiIiIiKiV46hFBERERERERERvXIMpYiIiIiIiIiI6JVjKEVERERERERERK8cQykiIiIiIiIiInrlGEoREREREREREdErx1CKiIiIqIi8vb3h7e0tPY+IiIBMJkNAQECZnKt+/fql3i+Vj4CAAMhkMkRERJT3UIiIiModQykiIqIypvolVPUwMDBAtWrV4OPjg1WrVuHZs2flPcQSOXDgAObMmVPewyAiIiKiCoahFBER0Ssyb948/Pzzz1izZg3GjRsHAJg4cSLc3Nxw7dq1ch5d8R04cABz584t72GUK3t7e6SkpKB///7lPRR6zfXv3x8pKSmwt7cv76EQERGVO73yHgAREdGbonPnzmjatKn0/LPPPsMff/yBd955B927d0dISAiUSmU5jrDsZWZmIjs7G/r6+uU9lFKlmgFXUf1X35fXSVJSEoyMjKCrqwtdXd3yHg4REdFrgTOliIiIytFbb72FmTNn4t69e9i0aZPavj/++AOenp4wMjKCubk5fH19ERISIu2/du0aZDIZ9u3bJ23766+/IJPJ0LhxY7W+OnfujBYtWkjPHRwc8M477+D06dNo3rw5DAwMUKtWLfz0009qx2VkZGDu3LlwdnaGgYEBLC0t0aZNGxw9ehQA4Ofnh2+//RYA1JYoAi/qLC1duhQrVqyAo6MjFAoFgoODAQA3b97E+++/DwsLCxgYGKBp06Zq1wIAcXFxmDx5Mtzc3GBsbAxTU1N07twZV69eVWsXGBgImUyGX3/9FXPnzoWtrS1MTEzw/vvvIz4+HmlpaZg4cSKsra1hbGyMQYMGIS0trVDv0bp16+Do6AilUonmzZvj1KlTGm3yqikVHR2NQYMGoXr16lAoFKhatSp8fX01agkdPHgQXl5eMDExgampKZo1a4YtW7ZonCM4OBjt2rWDoaEhbG1tsXjxYrX96enpmDVrFpo0aQIzMzMYGRnB09MTx48fz3Os2t6XwMBANG3aFAYGBnB0dMTatWsxZ84c6X3NbdOmTWjSpAmUSiUsLCzQp08f3L9/v1Cv67///oshQ4agWrVqUCgUqFmzJkaNGoX09HSpzd27d9GrVy9YWFjA0NAQLVu2xG+//abWT2m89zKZDGPHjsXmzZvh6uoKAwMDNGnSBCdPnlRrd+/ePYwePRqurq5QKpWwtLREr169NN5T1ZLdEydOYPTo0bC2tkb16tXV9uU+5tKlS/Dx8UHlypWhVCpRs2ZNDB48WK3PpKQkTJo0CXZ2dlAoFHB1dcXSpUshhMjzWvbs2YP69etDoVCgXr16OHToUKHeFyIioleJM6WIiIjKWf/+/TF9+nQcOXIEw4YNAwD8/vvv6Ny5M2rVqoU5c+YgJSUFq1evRuvWrXH58mU4ODigfv36MDc3x8mTJ9G9e3cAwKlTp6Cjo4OrV68iISEBpqamyM7OxtmzZzF8+HC184aFheH999/HkCFDMHDgQGzYsAF+fn5o0qQJ6tWrBwCYM2cOFi1ahKFDh6J58+ZISEjApUuXcPnyZXTo0AEjRozAgwcPcPToUfz88895Xp+/vz9SU1MxfPhwKBQKWFhY4MaNG2jdujVsbW0xbdo0GBkZ4ddff0WPHj2wc+dOvPvuuwByQok9e/agV69eqFmzJh4+fIi1a9fCy8sLwcHBqFatmtq5Fi1aBKVSiWnTpiEsLAyrV6+GXC6Hjo4Onjx5gjlz5uDPP/9EQEAAatasiVmzZuX73qxfvx4jRoxAq1atMHHiRNy9exfdu3eHhYUF7Ozs8j22Z8+euHHjBsaNGwcHBwfExMTg6NGjiIyMhIODA4CcgGLw4MGoV68ePvvsM5ibm+PKlSs4dOgQ+vbtK/X15MkTdOrUCe+99x4++OAD7NixA1OnToWbmxs6d+4MAEhISMCPP/6IDz/8EMOGDcOzZ8+wfv16+Pj44MKFC2jYsGGB78uVK1fQqVMnVK1aFXPnzkVWVhbmzZsHKysrjetbsGABZs6ciQ8++ABDhw5FbGwsVq9ejbZt2+LKlSswNzfX+to8ePAAzZs3x9OnTzF8+HDUrl0b//77L3bs2IHk5GTo6+vj4cOHaNWqFZKTkzF+/HhYWlpi48aN6N69O3bs2CF9RlRK+t6fOHEC27Ztw/jx46FQKPDdd9+hU6dOuHDhglRo/uLFizh79iz69OmD6tWrIyIiAmvWrIG3tzeCg4NhaGio1ufo0aNhZWWFWbNmISkpKc/XIiYmBh07doSVlRWmTZsGc3NzREREYNeuXVIbIQS6d++O48ePY8iQIWjYsCEOHz6MKVOm4N9//8Xy5cvV+jx9+jR27dqF0aNHw8TEBKtWrULPnj0RGRkJS0tLre8LERHRKyeIiIioTPn7+wsA4uLFi1rbmJmZiUaNGknPGzZsKKytrcXjx4+lbVevXhU6OjpiwIAB0rauXbuK5s2bS8/fe+898d577wldXV1x8OBBIYQQly9fFgDE3r17pXb29vYCgDh58qS0LSYmRigUCjFp0iRpW4MGDUTXrl3zvb4xY8aIvP5JER4eLgAIU1NTERMTo7bv7bffFm5ubiI1NVXalp2dLVq1aiWcnZ2lbampqSIrK0ujX4VCIebNmydtO378uAAg6tevL9LT06XtH374oZDJZKJz585qfXh4eAh7e/t8rys9PV1YW1uLhg0birS0NGn7unXrBADh5eWlca3+/v5CCCGePHkiAIglS5Zo7f/p06fCxMREtGjRQqSkpKjty87Olv7s5eUlAIiffvpJ2paWliZsbGxEz549pW2ZmZlq41SNo0qVKmLw4MEaY83rfenWrZswNDQU//77r7QtNDRU6Onpqb3HERERQldXVyxYsEDt+OvXrws9PT2N7S8bMGCA0NHRyfNnQnXtEydOFADEqVOnpH3Pnj0TNWvWFA4ODtLnojTeewACgLh06ZK07d69e8LAwEC8++670rbk5GSN8Z47d07j/VH9zLdp00ZkZmaqtVftCw8PF0IIsXv37gK/H/bs2SMAiC+++EJt+/vvvy9kMpkICwtTuxZ9fX21bVevXhUAxOrVq7Weg4iIqDxw+R4REdFrwNjYWLoLX1RUFIKCguDn5wcLCwupjbu7Ozp06IADBw5I2zw9PXH58mVpFsbp06fRpUsXNGzYUFpmdurUKchkMrRp00btnHXr1oWnp6f03MrKCq6urrh79660zdzcHDdu3EBoaGixr61nz55qM23i4uLwxx9/4IMPPsCzZ8/w6NEjPHr0CI8fP4aPjw9CQ0Px77//AgAUCgV0dHL+uZKVlYXHjx/D2NgYrq6uuHz5ssa5BgwYALlcLj1v0aIFhBAaS6FatGiB+/fvIzMzU+u4L126hJiYGIwcOVKt1pKfnx/MzMzyvWalUgl9fX0EBgbiyZMnebY5evQonj17hmnTpmnUo3p5qZyxsTE++ugj6bm+vj6aN2+u9l7p6upK48zOzkZcXBwyMzPRtGnTPF+rl9+XrKws/P777+jRo4faDDQnJydpNpbKrl27kJ2djQ8++EB6/x49egQbGxs4OztrLBnMLTs7G3v27EG3bt3Uaqy9fO0HDhxA8+bN1T63xsbGGD58OCIiIqTlhiolfe89PDzQpEkT6XmNGjXg6+uLw4cPIysrCwDUar5lZGTg8ePHcHJygrm5eZ6v8bBhwwqsH6WaUbZ//35kZGTk2ebAgQPQ1dXF+PHj1bZPmjQJQggcPHhQbXv79u3h6OgoPXd3d4epqana54WIiOh1wFCKiIjoNZCYmAgTExMAOXVrAMDV1VWjXZ06dfDo0SMphPL09ERmZibOnTuHW7duISYmBp6enmjbtq1aKFW3bl21gAvI+aX7ZZUqVVILUebNm4enT5/CxcUFbm5umDJlSpHvFFizZk2152FhYRBCYObMmbCyslJ7zJ49G0DOkiYgJ8BYvnw5nJ2doVAoULlyZVhZWeHatWuIj4/XONfL16QKj15eamdmZobs7Ow8+1BRvQ/Ozs5q2+VyOWrVqpXvNSsUCnz11Vc4ePAgqlSpgrZt22Lx4sWIjo6W2ty5cwcApKVh+alevbpGUPXyewUAGzduhLu7u1T/y8rKCr/99lue1/ny+xITE4OUlBQ4OTlptH15W2hoKIQQcHZ21ngPQ0JCpPcvL7GxsUhISCjwuu/du6f1Z0C1P7eSvvcvv88A4OLiguTkZMTGxgIAUlJSMGvWLKmuk+rz+PTp00K9xnnx8vJCz549MXfuXFSuXBm+vr7w9/dXq3t17949VKtWTfqOUCnsawHk/XkhIiIqb6wpRUREVM7++ecfxMfH5xkGFERVkPrkyZOoUaMGrK2t4eLiAk9PT3z33XdIS0vDqVOnNOrvANA6g0PkKpzctm1b3LlzB3v37sWRI0fw448/Yvny5fj+++8xdOjQQo3x5TsKZmdnAwAmT54MHx+fPI9RvRYLFy7EzJkzMXjwYMyfPx8WFhbQ0dHBxIkTpX4Kc02FudbSNnHiRHTr1g179uzB4cOHMXPmTCxatAh//PEHGjVqVKS+CjP+TZs2wc/PDz169MCUKVNgbW0NXV1dLFq0SArAcivJnR6zs7Mhk8lw8ODBPMdmbGxc7L6L61W89+PGjYO/vz8mTpwIDw8PmJmZQSaToU+fPnl+HgvzGstkMuzYsQN//vkn/ve//+Hw4cMYPHgwli1bhj///LNYr2V5fN6JiIiKg6EUERFROVMVCFcFNPb29gCAW7duabS9efMmKleuDCMjIwAvlnGdOnUKNWrUkJbjeXp6Ii0tDZs3b8bDhw/Rtm3bYo/PwsICgwYNwqBBg5CYmIi2bdtizpw5UiiV113Z8qOaZSSXy9G+fft82+7YsQPt2rXD+vXr1bY/ffoUlStXLtJ5i0r1PoSGhuKtt96StmdkZCA8PBwNGjQosA9HR0dMmjQJkyZNQmhoKBo2bIhly5Zh06ZN0vKqv//+u1iB5Mt27NiBWrVqYdeuXWrviWr2WUGsra1hYGCAsLAwjX0vb3N0dIQQAjVr1oSLi0uRxmllZQVTU1P8/fff+bazt7fX+jOg2l+a8lqievv2bRgaGkrLHHfs2IGBAwdi2bJlUpvU1FQ8ffq0xOdv2bIlWrZsiQULFmDLli3o168ftm7diqFDh8Le3h6///47nj17pjZbqqxeCyIioleFy/eIiIjK0R9//IH58+ejZs2a6NevHwCgatWqaNiwITZu3Kj2y+7ff/+NI0eOoEuXLmp9eHp64vz58zh+/LgUSlWuXBl16tTBV199JbUpjsePH6s9NzY2hpOTk9rSIlVAVthfzK2treHt7Y21a9ciKipKY79qqRSQM+Pj5dkd27dvl2pOlaWmTZvCysoK33//PdLT06XtAQEBBV5rcnIyUlNT1bY5OjrCxMREeu06duwIExMTLFq0SKNtcWa0qGbH5D72/PnzOHfuXKGPb9++Pfbs2YMHDx5I28PCwjRqFr333nvQ1dXF3LlzNcYqhND43OSmo6ODHj164H//+x8uXbqksV/VX5cuXXDhwgW18SclJWHdunVwcHBA3bp1C3VdhXXu3Dm1ulD379/H3r170bFjR+m1zevzuHr1aqnmVHE8efJEo0/VnRJVn5UuXbogKysL33zzjVq75cuXQyaTadT8IiIiqig4U4qIiOgVOXjwIG7evInMzEw8fPgQf/zxB44ePQp7e3vs27dPrdj1kiVL0LlzZ3h4eGDIkCFISUnB6tWrYWZmhjlz5qj16+npiQULFuD+/ftq4VPbtm2xdu1aODg4oHr16sUac926deHt7Y0mTZrAwsICly5dwo4dOzB27Fipjao49Pjx4+Hj4wNdXV306dMn336//fZbtGnTBm5ubhg2bBhq1aqFhw8f4ty5c/jnn39w9epVAMA777yDefPmYdCgQWjVqhWuX7+OzZs3F1jTqTTI5XJ88cUXGDFiBN566y307t0b4eHh8Pf3L/D8t2/fxttvv40PPvgAdevWhZ6eHnbv3o2HDx9Kr42pqSmWL1+OoUOHolmzZujbty8qVaqEq1evIjk5GRs3bizSeN955x3s2rUL7777Lrp27Yrw8HB8//33qFu3LhITEwvVx5w5c3DkyBG0bt0ao0aNkoKQ+vXrIygoSGrn6OiIL774Ap999hkiIiLQo0cPmJiYIDw8HLt378bw4cMxefJkredZuHAhjhw5Ai8vLwwfPhx16tRBVFQUtm/fjtOnT8Pc3BzTpk3DL7/8gs6dO2P8+PGwsLDAxo0bER4ejp07d0oF8EtL/fr14ePjg/Hjx0OhUOC7774DAMydO1dq88477+Dnn3+GmZkZ6tati3PnzuH333+HpaVlsc+7ceNGfPfdd3j33Xfh6OiIZ8+e4YcffoCpqakUQHfr1g3t2rXD559/joiICDRo0ABHjhzB3r17MXHiRLWi5kRERBUJQykiIqJXZNasWQByltxZWFjAzc0NK1aswKBBgzQKGLdv3x6HDh3C7NmzMWvWLMjlcnh5eeGrr77SKJ7cqlUr6OrqwtDQUG1JmaenJ9auXVvsWVJATtC0b98+HDlyBGlpabC3t8cXX3yBKVOmSG3ee+89jBs3Dlu3bsWmTZsghCgwlKpbty4uXbqEuXPnIiAgAI8fP4a1tTUaNWokvU4AMH36dCQlJWHLli3Ytm0bGjdujN9++w3Tpk0r9jUVxfDhw5GVlYUlS5ZgypQpcHNzw759+zBz5sx8j7Ozs8OHH36IY8eO4eeff4aenh5q166NX3/9FT179pTaDRkyBNbW1vjyyy8xf/58yOVy1K5dGx9//HGRx+rn54fo6GisXbsWhw8fRt26dbFp0yZs374dgYGBheqjSZMmOHjwICZPnoyZM2fCzs4O8+bNQ0hIiLRUTGXatGlwcXHB8uXLpeDGzs4OHTt2RPfu3fM9j62tLc6fP4+ZM2di8+bNSEhIgK2tLTp37gxDQ0MAQJUqVXD27FlMnToVq1evRmpqKtzd3fG///0PXbt2LfLrUxAvLy94eHhg7ty5iIyMRN26dREQEAB3d3epzcqVK6Grq4vNmzcjNTUVrVu3xu+//661Nlphz3vhwgVs3boVDx8+hJmZGZo3b47NmzdLP+s6OjrYt28fZs2ahW3btsHf3x8ODg5YsmQJJk2aVOJrJyIiKi8ywYqHRERERJSPHj164MaNG3nWXfovkMlkGDNmjMbyOCIiIipbrClFRERERJKUlBS156GhoThw4AC8vb3LZ0BERET0n8Xle0REREQkqVWrFvz8/FCrVi3cu3cPa9asgb6+Pj799NPyHhoRERH9xzCUIiIiIiJJp06d8MsvvyA6OhoKhQIeHh5YuHAhnJ2dy3toRERE9B/DmlJERERERERERPTKsaYUERERERERERG9cm/c8r3s7Gw8ePAAJiYmkMlk5T0cIiIiIiIiIqL/FCEEnj17hmrVqkFHR/t8qDculHrw4AHs7OzKexhERERERERERP9p9+/fR/Xq1bXuf+NCKRMTEwA5L4ypqWk5j4aIiIiIiIiI6L8lISEBdnZ2UgajzRsXSqmW7JmamjKUIiIiIiIiIiIqIwWVTWKhcyIiIiIiIiIieuUYShERERERERER0SvHUIqIiIiIiIiIiF65N66mFBERERGVvaysLGRkZJT3MIiIiKgMyOVy6OrqlrgfhlJEREREVGqEEIiOjsbTp0/LeyhERERUhszNzWFjY1NgMfP8MJQiIiIiolKjCqSsra1haGhYon+oEhER0etHCIHk5GTExMQAAKpWrVrsvhhKEREREVGpyMrKkgIpS0vL8h4OERERlRGlUgkAiImJgbW1dbGX8rHQORERERGVClUNKUNDw3IeCREREZU11d/3JakhyVCKiIiIiEoVl+wRERH995XG3/cMpYiIiIiIiIiI6JVjKEVERERERERERK8cQykiIiIiInplAgICYG5uXt7DKJQzZ87Azc0NcrkcPXr0QGBgIGQyGZ4+fVreQys0b29vTJw4sbyHQUSUJ4ZSRERERPRGk8lk+T7mzJmjccycOXOk/bq6urCzs8Pw4cMRFxdXqmN71QGOn5+f2rVbWlqiU6dOuHbtWqmdo3fv3rh9+3aJ+8nKysLy5cvh5uYGAwMDVKpUCZ07d8aZM2eK3Je24OaTTz5Bw4YNER4ejoCAgBKPuThyvx9mZmZo3bo1/vjjj0Ifv2vXLsyfP7/Q7SMiIiCTyRAUFFSM0RIRFQ1DKSIiIiJ6o0VFRUmPFStWwNTUVG3b5MmT8zyuXr16iIqKQmRkJPz9/XHo0CGMGjXqFY++9HXq1Em69mPHjkFPTw/vvPNOqfWvVCphbW1doj6EEOjTpw/mzZuHCRMmICQkBIGBgbCzs4O3tzf27NlTKmO9c+cO3nrrLVSvXr1cZ3f5+/sjKioKZ86cQeXKlfHOO+/g7t27hTrWwsICJiYmZTxCIqLiYShFRERERGVHCCApqXweQhRqiDY2NtLDzMwMMplMbZuxsXGex+np6cHGxga2trZo3749evXqhaNHj0r7s7OzMW/ePFSvXh0KhQINGzbEoUOHpP15LQULCgqCTCZDREQEAgMDMWjQIMTHx2vM2kpLS8PkyZNha2sLIyMjtGjRAoGBgUV+e/KiUCika2/YsCGmTZuG+/fvIzY2VmozdepUuLi4wNDQELVq1cLMmTPVbgl+9epVtGvXDiYmJjA1NUWTJk1w6dIlAJqzv+bMmYOGDRvi559/hoODA8zMzNCnTx88e/ZM6xh//fVX7NixAz/99BOGDh2KmjVrokGDBli3bh26d++OoUOHIikpCUDO7K8ePXqoHT9x4kR4e3tL+0+cOIGVK1dKr7NqttDjx48xePBgyGQyrTOldu7ciXr16kGhUMDBwQHLli2T9n3zzTeoX7++9HzPnj2QyWT4/vvvpW3t27fHjBkztF4rAJibm8PGxgb169fHmjVrkJKSIn3WTpw4gebNm0OhUKBq1aqYNm0aMjMzpWNfngXm4OCAhQsXYvDgwTAxMUGNGjWwbt06aX/NmjUBAI0aNYJMJpNeJyKissBQioiIiIjKTnIyYGxcPo/k5Fd2mRERETh8+DD09fWlbStXrsSyZcuwdOlSXLt2DT4+PujevTtCQ0ML1WerVq00Zm6pZm2NHTsW586dw9atW3Ht2jX06tULnTp1KnTfhZWYmIhNmzbByckJlpaW0nYTExMEBAQgODgYK1euxA8//IDly5dL+/v164fq1avj4sWL+OuvvzBt2jTI5XKt57lz5w727NmD/fv3Y//+/Thx4gS+/PJLre23bNkCFxcXdOvWTWPfpEmT8PjxY7WAMD8rV66Eh4cHhg0bJr3OdnZ2iIqKgqmpKVasWIGoqCj07t1b49i//voLH3zwAfr06YPr169jzpw5mDlzphRgeXl5ITg4WAr0Tpw4gcqVK0sBYkZGBs6dO1ek4EepVAIA0tPT8e+//6JLly5o1qwZrl69ijVr1mD9+vX44osv8u1j2bJlaNq0Ka5cuYLRo0dj1KhRuHXrFgDgwoULAIDff/8dUVFR2LVrV6HHRkRUVHrlPQAiIiIiooro+vXrMDY2RlZWFlJTUwEAX3/9tbR/6dKlmDp1Kvr06QMA+Oqrr3D8+HGsWLEC3377bYH96+vrq83cUlEtF4yMjES1atUAAJMnT8ahQ4fg7++PhQsXlui69u/fL80OS0pKQtWqVbF//37o6Lz4/9m5Z/Y4ODhg8uTJ2Lp1Kz799FNpjFOmTEHt2rUBAM7OzvmeMzs7GwEBAdIys/79++PYsWNYsGBBnu1v376NOnXq5LlPtb2wdavMzMygr68PQ0NDtdfZxsZGquOUe3tuX3/9Nd5++23MnDkTAODi4oLg4GAsWbIEfn5+qF+/PiwsLHDixAm8//77CAwMxKRJk7By5UoAOQFQRkYGWrVqVaixJicnY8aMGdDV1YWXlxe+++472NnZ4ZtvvoFMJkPt2rXx4MEDTJ06FbNmzVJ7z3Lr0qULRo8eDSBn1tvy5ctx/PhxuLq6wsrKCgBgaWmp9bqJiEoLZ0oRERERUdkxNAQSE8vnYWhY4uFHRkbC2NhYeuQOfFxdXREUFISLFy9i6tSp8PHxwbhx4wAACQkJePDgAVq3bq3WX+vWrRESElKiMV2/fh1ZWVlwcXFRG9uJEydw586dPI8ZOXKkWtv8tGvXDkFBQQgKCsKFCxfg4+ODzp074969e1Kbbdu2oXXr1tLyxhkzZiAyMlLa/8knn2Do0KFo3749vvzyS63jUnFwcFCre1S1alXExMTke4wo5PLMshQSEpLnexwaGoqsrCzIZDK0bdsWgYGBePr0KYKDgzF69GikpaXh5s2bOHHiBJo1awbDAj6rH374IYyNjWFiYoKdO3di/fr1cHd3R0hICDw8PCCTydTOn5iYiH/++Udrf+7u7tKfVaFnQa83EVFZ4EwpIiIiIio7MhlgZFTeoyi2atWqqd2FzMLCQvqzvr4+nJycAABffvklunbtirlz5xb6TmeqWSy5w5XcdZm0SUxMhK6uLv766y/o6uqq7dMWOM2bN09rwfaXGRkZSdcFAD/++CPMzMzwww8/4IsvvsC5c+fQr18/zJ07Fz4+PjAzM8PWrVvVainNmTMHffv2xW+//YaDBw9i9uzZ2Lp1K9599908z/ny0j6ZTIbs7GytY3RxcdEa7qm2u7i4AMh5nV8OsArzOpcWb29vrFu3DqdOnUKjRo1gamoqBVUnTpyAl5dXgX0sX74c7du3h5mZmTSTqSSK+noTEZUVzpQiIiIiItJCT08PTk5O0iN3KPWyGTNmYOnSpXjw4AFMTU1RrVo1nDlzRq3NmTNnULduXQCQwoWoqChpf+4ADMgJvrKystS2NWrUCFlZWYiJiVEbm5OTk9blVtbW1mrtikImk0FHRwcpKSkAgLNnz8Le3h6ff/45mjZtCmdnZ7VZVCouLi74+OOPceTIEbz33nvw9/cv0nnz06dPH4SGhuJ///ufxr5ly5bB0tISHTp0AJDzOud+jYHCvc6FUadOnTzfYxcXFykwVNWV2r59u1Q7ytvbG7///jvOnDlTqHpSNjY2cHJy0gik6tSpg3PnzqmFbmfOnIGJiQmqV69e5OsBINVFK87rQURUVAyliIiIiIhKgYeHB9zd3aUlflOmTMFXX32Fbdu24datW5g2bRqCgoIwYcIEAICTkxPs7OwwZ84chIaG4rffflObbQTkLGtLTEzEsWPH8OjRIyQnJ8PFxQX9+vXDgAEDsGvXLoSHh+PChQtYtGgRfvvttxJfR1paGqKjoxEdHY2QkBCMGzcOiYmJUlFxZ2dnREZGYuvWrbhz5w5WrVqF3bt3S8enpKRg7NixCAwMxL1793DmzBlcvHhRaw2o4ujTpw/effddDBw4EOvXr0dERASuXbuGESNGYN++ffjxxx9h9HyG3ltvvYVLly7hp59+QmhoKGbPno2///5brT8HBwecP38eERERePToUaFnDU2aNAnHjh3D/Pnzcfv2bWzcuBHffPON2qw0d3d3VKpUCVu2bFELpfbs2YO0tDSN5X9FMXr0aNy/fx/jxo3DzZs3sXfvXsyePRuffPKJ1npSBbG2toZSqcShQ4fw8OFDxMfHF3t8REQFYShFRERERFRKPv74Y/z444+4f/8+xo8fj08++QSTJk2Cm5sbDh06hH379klFv+VyOX755RfcvHkT7u7u+OqrrzTumtaqVSuMHDkSvXv3hpWVFRYvXgwA8Pf3x4ABAzBp0iS4urqiR48euHjxImrUqFHiazh06BCqVq2KqlWrokWLFrh48aLaLJ/u3bvj448/xtixY9GwYUOcPXtWKvQNALq6unj8+DEGDBgAFxcXfPDBB+jcuTPmzp1b4rGpyGQy/Prrr5g+fTqWL18OV1dXeHp64t69ewgMDESPHj2ktj4+Ppg5cyY+/fRTNGvWDM+ePcOAAQPU+ps8eTJ0dXVRt25dWFlZqdXHyk/jxo3x66+/YuvWrahfvz5mzZqFefPmwc/PT22snp6ekMlkaNOmDYCcoMrU1BRNmzaVwrPisLW1xYEDB3DhwgU0aNAAI0eOxJAhQ9QK0ReVnp4eVq1ahbVr16JatWrw9fUtdl9ERAWRidehQuArlJCQADMzM8THx8PU1LS8h0NERET0n5Gamorw8HDUrFkTBgYG5T0cIiIiKkP5/b1f2OyFM6WIiIiIiIiIiOiVYyhFRERERERERESvHEMpIiIiIiIiIiJ65V6bUOrLL7+ETCbDxIkT8223fft21K5dGwYGBnBzc8OBAwdezQCJiIiIiIiIiKjUvBah1MWLF7F27Vq4u7vn2+7s2bP48MMPMWTIEFy5cgU9evRAjx49NG7pSkREREREREREr7dyD6USExPRr18//PDDD6hUqVK+bVeuXIlOnTphypQpqFOnDubPn4/GjRvjm2++eUWjJSIiIiIiIiKi0lDuodSYMWPQtWtXtG/fvsC2586d02jn4+ODc+fOaT0mLS0NCQkJag8iIiIiIiIiIipfeuV58q1bt+Ly5cu4ePFiodpHR0ejSpUqatuqVKmC6OhorccsWrQIc+fOLdE4iYiIiIiIiIiodJXbTKn79+9jwoQJ2Lx5MwwMDMrsPJ999hni4+Olx/3798vsXEREREREREREVDjlFkr99ddfiImJQePGjaGnpwc9PT2cOHECq1atgp6eHrKysjSOsbGxwcOHD9W2PXz4EDY2NlrPo1AoYGpqqvYgIiIiIioOmUyGPXv2lPcwCsXPzw89evQo72G8NgIDAyGTyfD06dNCH+Pg4IAVK1aU2ZheRzNnzsTw4cPLexhUROnp6XBwcMClS5fKeyiFVpG+o9atWwc7Ozvo6OhgxYoVmDNnDho2bFjewyqS1/Xvr3ILpd5++21cv34dQUFB0qNp06bo168fgoKCoKurq3GMh4cHjh07prbt6NGj8PDweFXDJiIiIqL/qOjoaIwbNw61atWCQqGAnZ0dunXrpvHvz/+K4oQ0ZcXPzw8ymQwjR47U2DdmzBjIZDL4+fm9+oEVIDk5GZ999hkcHR1hYGAAKysreHl5Ye/evVKb8PBw9O3bF9WqVYOBgQGqV68OX19f3Lx5U62v/fv3w8vLCyYmJjA0NESzZs0QEBCg1ia/90wVoAUEBEAmk+X7iIiIyPN6oqOjsXLlSnz++efSttjYWIwaNQo1atSAQqGAjY0NfHx8cObMGanN1atX0b17d1hbW8PAwAAODg7o3bs3YmJi1PrfuHEjmjVrBkNDQ5iYmMDLywv79+9XaxMQEABzc/M8x6f6pXrOnDkFXmNZuXbtGjw9PWFgYAA7OzssXry4wGMiIyPRtWtXGBoawtraGlOmTEFmZqZam8DAQDRu3BgKhQJOTk4a731e11y7dm1pv76+PiZPnoypU6eWynU6ODhI59HV1UW1atUwZMgQPHnypFT6B3JuZPbydRZHXFwcJk6cCHt7e+jr66NatWoYPHgwIiMji9xXXsFNQkICxo4di6lTp+Lff/8tl9BW9bOvelSpUgU9e/bE3bt3C91HVFQUOnfuXOj2+f0slqZyC6VMTExQv359tYeRkREsLS1Rv359AMCAAQPw2WefScdMmDABhw4dwrJly3Dz5k3MmTMHly5dwtixY8vrMoiIiIjoPyAiIgJNmjTBH3/8gSVLluD69es4dOgQ2rVrhzFjxpT38N4IdnZ22Lp1K1JSUqRtqamp2LJlC2rUqFGOI9Nu5MiR2LVrF1avXo2bN2/i0KFDeP/99/H48WMAQEZGBjp06ID4+Hjs2rULt27dwrZt2+Dm5qYWLK1evRq+vr5o3bo1zp8/j2vXrqFPnz4YOXIkJk+eXKQx9e7dG1FRUdLDw8MDw4YNU9tmZ2eX57E//vgjWrVqBXt7e2lbz549ceXKFWzcuBG3b9/Gvn374O3tLV1jbGws3n77bVhYWODw4cMICQmBv78/qlWrhqSkJKmfyZMnY8SIEejduzeuXbuGCxcuoE2bNvD19S3y3dQnT56sdj3Vq1fHvHnz1LaVhYSEBHTs2BH29vb466+/sGTJEsyZMwfr1q3TekxWVha6du2K9PR0nD17Fhs3bkRAQABmzZoltQkPD0fXrl3Rrl07BAUFYeLEiRg6dCgOHz6s1le9evXUrvH06dNq+/v164fTp0/jxo0bpXK9qtc0MjISmzdvxsmTJzF+/PhS6RsAzMzMShx6xMXFoWXLlvj999/x/fffIywsDFu3bkVYWBiaNWtWpNBGm8jISGRkZKBr166oWrUqDA0NS9xncd26dQsPHjzA9u3bcePGDXTr1i3PVWZ5sbGxgUKhKOMRFoN4jXh5eYkJEyaoPR84cKBam19//VW4uLgIfX19Ua9ePfHbb78V6Rzx8fECgIiPjy+FERMRERGRSkpKiggODhYpKSnStuzsbJGWmFasx9/b/ha/jflN/L3t72Idn52dXeixd+7cWdja2orExESNfU+ePJH+DED88MMPokePHkKpVAonJyexd+9eaX9mZqYYPHiwcHBwEAYGBsLFxUWsWLFCrb+BAwcKX19fsWTJEmFjYyMsLCzE6NGjRXp6utTG3t5eLFiwQAwaNEgYGxsLOzs7sXbtWrV+IiMjRa9evYSZmZmoVKmS6N69uwgPD9c4jzbHjx8XANSuL7e4uDjRv39/YW5uLpRKpejUqZO4ffu2tD8iIkK88847wtzcXBgaGoq6detK/zaPi4sTffv2FZUrVxYGBgbCyclJbNiwQetYVGOtX7++2LRpk7R98+bNwt3dXfj6+qr9XpCamirGjRsnrKyshEKhEK1btxYXLlxQ6/O3334Tzs7OwsDAQHh7ewt/f3+N6z116pRo06aNMDAwENWrVxfjxo1T+wzY29uL5cuXax23mZmZCAgI0Lr/ypUrAoCIiIjQ2iYyMlLI5XLxySefaOxbtWqVACD+/PNPIUT+75m2sb78O1Z+6tWrJ7755hvp+ZMnTwQAERgYqPWY3bt3Cz09PZGRkaG1zblz5wQAsWrVKo19n3zyiZDL5SIyMlIIIYS/v78wMzPLsx8AYvfu3RrbC3qfSst3330nKlWqJNLS0qRtU6dOFa6urlqPOXDggNDR0RHR0dHStjVr1ghTU1Opn08//VTUq1dP7bjevXsLHx8f6fns2bNFgwYNChxju3btxIwZMwp7SVrl9ZrOnz9f1K1bV3r+6NEj0adPH1GtWjWhVCpF/fr1xZYtW9SO2b59u6hfv74wMDAQFhYW4u2335Z+xl7+jvLy8hLjxo0TU6ZMEZUqVRJVqlQRs2fPznecI0eOFEZGRiIqKkpte3JysrC1tRWdOnXK95oaNGggncPe3l4AkB729vbS90buR3h4uMb7kZWVJebOnStsbW2Fvr6+aNCggTh48KC0v2fPnmLMmDHS8wkTJggAIiQkRAghRFpamjA0NBRHjx7N8zrz+tnfvHmzACBu3rwphMj5fNaqVUvI5XLh4uIifvrpJ7U+cv/8hIeHCwBi586dwtvbWyiVSuHu7i7Onj2rdr7cj7zei7z+3lcpbPZSrnffe1lgYGC+zwGgV69e6NWr16sZEBERERGVSEZyBhYZLypRHxe/Ldydml/2WeJn0DfSL7BdXFwcDh06hAULFsDIyEhj/8v/J3/u3LlYvHgxlixZgtWrV6Nfv364d+8eLCwskJ2djerVq2P79u2wtLTE2bNnMXz4cFStWhUffPCB1Mfx48dRtWpVHD9+HGFhYejduzcaNmyIYcOGSW2WLVuG+fPnY/r06dixYwdGjRoFLy8vuLq6IiMjAz4+PvDw8MCpU6egp6eHL774Ap06dcK1a9egr1/wdRfEz88PoaGh2LdvH0xNTTF16lR06dIFwcHBkMvlGDNmDNLT03Hy5EkYGRkhODgYxsbGAHLqEgUHB+PgwYOoXLkywsLC1GZAaTN48GD4+/ujX79+AIANGzZg0KBBGr8XfPrpp9i5cyc2btwIe3t7LF68GD4+PggLC4OFhQXu37+P9957D2PGjMHw4cNx6dIlTJo0Sa2PO3fuoFOnTvjiiy+wYcMGxMbGYuzYsRg7diz8/f0L9RrZ2NjgwIEDeO+992BiYqKx38rKCjo6OtixYwcmTpyYZ4mSHTt2ICMjI88ZUSNGjMD06dPxyy+/oEWLFoUaU3HFxcUhODgYTZs2lbYZGxvD2NgYe/bsQcuWLfOcZWFjY4PMzEzs3r0b77//fp5L53755RcYGxtjxIgRGvsmTZqEr7/+Gjt37sTEiRNL9ZpeFhkZibp16+bbZvr06Zg+fXqe+86dO4e2bduq/Xz5+Pjgq6++wpMnT1CpUqU8j3Fzc1O7i7yPjw9GjRqFGzduoFGjRjh37hzat2+vdpyPj4/G6xEaGiotA/Xw8MCiRYs0ZhE2b94cp06dyvcai+Pff//F//73P7XPYWpqKpo0aYKpU6fC1NQUv/32G/r37w9HR0c0b94cUVFR+PDDD7F48WK8++67ePbsGU6dOoWcfCRvGzduxCeffILz58/j3Llz8PPzQ+vWrdGhQweNttnZ2di6dSv69eunUWdaqVRi9OjRmDFjBuLi4mBhYVHgNV68eBHW1tbw9/dHp06doKurC2NjY9jZ2aF9+/a4cOEC7OzsYGVlpXHsypUrsWzZMqxduxaNGjXChg0b0L17d9y4cQPOzs7w8vLC2rVrpfYnTpxA5cqVERgYiNq1a+PixYvIyMhAq1atChxn7msEcuqJ7d69GxMmTMCKFSvQvn177N+/H4MGDUL16tXRrl07rX18/vnnWLp0KZydnfH555/jww8/RFhYGFq1aoUVK1Zg1qxZuHXrFgBI3++lrdyW79F/wKFDwKZN5T0KIiIiohIJCwuDEEKtPkt+/Pz88OGHH8LJyQkLFy5EYmIiLly4AACQy+WYO3cumjZtipo1a6Jfv34YNGgQfv31V7U+KlWqhG+++Qa1a9fGO++8g65du2rUrurSpQtGjx4NJycnTJ06FZUrV8bx48cBANu2bUN2djZ+/PFHuLm5oU6dOvD390dkZGSe/2O3qFRh1I8//ghPT080aNAAmzdvxr///ivVW4mMjETr1q3h5uaGWrVq4Z133kHbtm2lfY0aNULTpk3h4OCA9u3bo1u3bgWe96OPPsLp06dx79493Lt3D2fOnMFHH32k1iYpKQlr1qzBkiVL0LlzZ9StWxc//PADlEol1q9fDwBYs2YNHB0dsWzZMri6uqJfv34aNakWLVqEfv36YeLEiXB2dkarVq2watUq/PTTT0hNTS3U67Ru3TqcPXsWlpaWaNasGT7++GO1Wku2trZYtWoVZs2ahUqVKuGtt97C/Pnz1ZYU3b59G2ZmZqhatapG//r6+qhVqxZu375dqPGURGRkJIQQqFatmrRNT08PAQEB2LhxI8zNzdG6dWtMnz4d165dk9q0bNkS06dPR9++fVG5cmV07twZS5YsUbtB1e3bt+Ho6JhnWFqtWjWYmpq+kmusVq2aWk3jvB551TVTiY6OVguXAEjPo6Oji32MtjYJCQlSmNuiRQsEBATg0KFDWLNmDcLDw+Hp6Ylnz55pXOO9e/cKeikKZerUqTA2NoZSqUT16tUhk8nw9ddfS/ttbW0xefJkNGzYELVq1cK4cePQqVMn6fsuKioKmZmZeO+99+Dg4AA3NzeMHj0633DD3d0ds2fPhrOzMwYMGICmTZtqresXGxuLp0+fok6dOnnur1OnDoQQCAsLK9T1qsImc3Nz2NjYwMrKCkqlEpaWltJ+GxubPMPlpUuXYurUqejTpw9cXV3x1VdfoWHDhtKNEry9vREcHIzY2Fg8efIEwcHBmDBhgvR9HRgYKNVbK4yoqCgsXboUtra2cHV1xdKlS+Hn54fRo0fDxcUFn3zyCd577z0sXbo0334mT56Mrl27wsXFBXPnzsW9e/cQFhYGfX19mJmZQSaTwcbGBjY2NmUWSr1WM6WoAhEC6N0bSEgAGjcGCvg/DkRERPRmkhvK8VniZwU3fEnob6HY0XsHZLoyiCyB97e9D+euzkU+d2Hk93/t8+Lu7i792cjICKampmoFnb/99lts2LABkZGRSElJQXp6usZdmurVq6f2i03VqlVx/fp1redR/WKgOs/Vq1cRFhamMTsnNTUVd+7cKdL15CUkJAR6enpqsyIsLS3h6uqKkJAQAMD48eMxatQoHDlyBO3bt0fPnj2lMY8aNQo9e/bE5cuX0bFjR/To0aNQMwCsrKzQtWtXBAQEQAiBrl27onLlympt7ty5g4yMDLRu3VraJpfL0bx5c2lsISEhGjOLXr450tWrV3Ht2jVs3rxZ2iaEQHZ2NsLDw7X+optb27ZtcffuXfz55584e/Ysjh07hpUrV2Lu3LmYOXMmgJxC7QMGDEBgYCD+/PNPbN++HQsXLsS+ffvynP1RXlThh4GBgdr2nj17omvXrjh16hT+/PNPHDx4EIsXL8aPP/4oBX0LFizAJ598gj/++APnz5/H999/j4ULF+LkyZNwc3MDUPSfs7Kgp6cHJyen8h5GseQuUO3u7o4WLVrA3t4ev/76K4YMGSLtUyqVSE5O1tpPvXr1pNDK09MTBw8e1Np2ypQp8PPzgxAC9+/fx/Tp09G1a1ecPHkSurq6yMrKwsKFC/Hrr7/i33//RXp6OtLS0qRgpUGDBnj77bfh5uYGHx8fdOzYEe+//36eM8pyX1tuVatW1SiY/7Ly/mwlJCTgwYMHat9JANC6dWtcvXoVAFC/fn1YWFjgxIkT0NfXR6NGjfDOO+/g22+/BZAzc8rb27vAc1WvXh1CCCQnJ6NBgwbYuXMn9PX1ERISolGAvXXr1li5cmW+/eV+vVXBeExMTKH/J01p4EwpKp6EhJwHAPz+e/mOhYiIiF5bMpkM+kb6RX7U+6Ae+uztgxbjW6DP3j6o90G9IvdR2DtwOTs7QyaTadwNTRu5XD3skslkyM7OBgBs3boVkydPxpAhQ3DkyBEEBQVh0KBBSE9PL3QfhWmTmJiIJk2aaMzyuH37Nvr27Vuo6yipoUOH4u7du+jfvz+uX7+Opk2bYvXq1QByfoG+d+8ePv74Yzx48ABvv/12oQt2Dx48WJqdM3jw4DIbf2JiIkaMGKH2+l29ehWhoaFwdHQsdD9yuRyenp6YOnUqjhw5gnnz5mH+/Plq77mJiQm6deuGBQsW4OrVq/D09MQXX3wBAHBxcUF8fDwePHig0Xd6ejru3LkDFxcXAICpqSkAID4+XqPt06dPYWZmVqTXIDdV+JfX3dUMDAzQoUMHzJw5E2fPnoWfnx9mz56t1sbS0hK9evXC0qVLERISgmrVqkmzNFxcXHD37l2NnwMAePDgARISEtSuMSkpSePnQVUYviTXGBkZKS1J1PZYuHCh1uNtbGzUZoABkJ6/vHysKMdoa2Nqaiot0XqZubk5XFxcNGYBxcXF5bm8TOXAgQPS5/3HH3/U2g7I+Uw4OTnB2dkZb731FlasWIGzZ89KMzaXLFmClStXYurUqTh+/DiCgoLg4+Mjvc+6uro4evQoDh48iLp162L16tVwdXVFeHi41nMW5rtRxcrKCubm5lIY/bKQkBDIZDIpiNTR0dEIsDIyMvJ9DUqLTCZD27ZtERgYKAVQ7u7uSEtLw99//42zZ8/Cy8urwH5OnTqFa9euISEhAUFBQSVe1pv79Vb9nant9S4rDKWoeHKn1f/R2yQTERFR+XLt7gqfr33g2t21TM9jYWEBHx8ffPvtt2p3C1PJfZe0gpw5cwatWrXC6NGj0ahRIzg5OZXKzKWXNW7cGKGhobC2toaTk5PaoyS/tKvUqVMHmZmZOH/+vLTt8ePHuHXrllpNHjs7O+kOdJMmTcIPP/wg7bOyssLAgQOxadMmrFixIt87lOXWqVMnpKenS3WzXqZaBpZ7mVxGRgYuXrwoja1OnTrSkkqVP//8U+1548aNERwcrPH6OTk5lagmV926dZGZmal1CaBMJkPt2rWlz1rPnj0hl8uxbNkyjbbff/89kpKS8OGHHwLICVB1dHTw119/qbW7e/cu4uPjpWCnOBwdHWFqaorg4OAC29atWzfPnxUVfX19ODo6Sm369OmDxMREtZo6KkuXLoVcLkfPnj0BAK6ursjMzERQUJBau8uXLwNAia6xpMv3PDw8cPLkSbUg4+jRo3B1ddU6+8fDwwPXr19Xm+1z9OhRmJqaSp9XDw8PjSVqR48e1Zjdl1tiYiLu3Lmjsezz77//RqNGjbQeZ29vL33ObW1ttbbLi2p2p2pW3ZkzZ+Dr64uPPvoIDRo0yHOpqUwmQ+vWrTF37lxcuXIF+vr62L17d5HOq42Ojg4++OADbNmyRWP5ZEpKCr777jv4+PhI9aSsrKzU7syYkJCgEZDJ5fJC381OxdTUFNWqVVP7TgJyXp/c35deXl4IDAxEYGAgvL29oaOjg7Zt22LJkiVIS0vTmGmVl5o1a8LR0VFjlmydOnUKPH9R6evrF/m1KA6GUlQ8uUOpwEAgM7PchkJERERUUt9++y2ysrLQvHlz7Ny5E6GhoQgJCcGqVavy/cXwZc7Ozrh06RIOHz6M27dvY+bMmbh4sXiF2vPTr18/VK5cGb6+vjh16hTCw8MRGBiI8ePH459//ilSX9evX9eYLeTs7AxfX18MGzYMp0+fxtWrV/HRRx/B1tYWvr6+AICJEyfi8OHDCA8Px+XLl3H8+HFpydusWbOwd+9ehIWF4caNG9i/f3+hlsMBOb/4hoSEIDg4OM/aLUZGRhg1ahSmTJmCQ4cOITg4GMOGDUNycrK0jGnkyJEIDQ3FlClTcOvWLWzZsgUBAQFq/UydOhVnz57F2LFjERQUhNDQUOzduxdjx44t9Gvn7e2NtWvX4q+//kJERAQOHDiA6dOno127djA1NUVQUBB8fX2xY8cOBAcHIywsDOvXr8eGDRuk17FGjRpYvHgxVqxYgc8//xw3b97EnTt38PXXX+PTTz/FpEmTpNkQJiYmGDp0KCZNmoR9+/YhPDwcJ0+eRL9+/dCyZcsiFUl+mY6ODtq3b4/Tp09L2x4/foy33noLmzZtwrVr1xAeHo7t27dj8eLF0vj379+Pjz76CPv378ft27dx69YtLF26FAcOHJDaeHh4YMKECZgyZQqWLVuGO3fu4ObNm5gxY4ZUINrOzg5AzvKyjh07YvDgwTh27BjCw8Nx6NAhjB49Gr179y5ykJKbavlefo/8CmL37dsX+vr6GDJkCG7cuIFt27Zh5cqV+OSTT6Q2u3fvVlv61LFjR9StWxf9+/fH1atXcfjwYcyYMQNjxoyRCsePHDkSd+/exaeffoqbN2/iu+++w6+//oqPP/5Y6mfy5Mk4ceIEIiIicPbsWbz77rvQ1dWVAkuVU6dOoWPHjsV+jXJ79uwZoqOjERUVhQsXLmDKlCmwsrKSPmfOzs44evQozp49i5CQEIwYMUJtxtf58+excOFCXLp0CZGRkdi1axdiY2ML/V1QGAsXLoSNjQ06dOiAgwcP4v79+zh58iR8fHyQkZEhLY8DgLfeegs///wzTp06hevXr2PgwIEa3zEODg44duwYoqOj85w1qM2UKVPw1VdfYdu2bbh16xamTZuGoKAgTJgwQWqjqit148YNtGnTRtq2efNmNG3aNM8bbRTl/AEBAVizZg1CQ0Px9ddfY9euXYWeoZoXBwcHJCYm4tixY3j06FG+y0JLJN978/0HFfa2hFSA3buFyKkslfN4fptaIiIienPld2voiuDBgwdizJgxwt7eXujr6wtbW1vRvXt3cfz4cakN8rglvZmZmfD39xdCCJGamir8/PyEmZmZMDc3F6NGjRLTpk1Tu3X4y7dBFyLn9uBeXl7S84JuXS6EEFFRUWLAgAGicuXKQqFQiFq1aolhw4ZJ/87N6zy55XXLbwBCV1dXCCFEXFyc6N+/vzAzMxNKpVL4+PiI27dvS8ePHTtWODo6CoVCIaysrET//v3Fo0ePhBA5t46vU6eOUCqVwsLCQvj6+oq7d+9qHUtBY/X19RUDBw6UnqekpIhx48ZJ1966dWtx4cIFtWP+97//CScnJ6FQKISnp6fYsGGDxi3VL1y4IDp06CCMjY2FkZGRcHd3FwsWLJD25/U+5LZw4ULh4eEhLCwshIGBgahVq5YYP3689DrExsaK8ePHi/r16wtjY2NhYmIi3NzcxNKlS0VWVpZaX3v37hWenp7CyMhIGBgYiCZNmogNGzZonDMlJUXMnj1b1K5dWyiVSlGzZk0xfPhwERsbm+cYvby8xIQJE7ReQ24HDhwQtra20thSU1PFtGnTROPGjYWZmZkwNDQUrq6uYsaMGSI5OVkIIcSdO3fEsGHDhIuLi1AqlcLc3Fw0a9ZM+pnIbf369aJJkybCwMBAGBkZCU9PT7Fv3z6Ndk+ePBHjx48Xjo6OQqlUCmdnZ/Hpp5+KZ8+e5Tnugt6n0nT16lXRpk0boVAohK2trfjyyy/V9vv7+4uXf82OiIgQnTt3FkqlUlSuXFlMmjRJZGRkqLU5fvy4aNiwodDX1xe1atXSeP169+4tqlatKn039e7dW4SFham1OXv2rDA3N5fem5Kwt7dX+16wsrISXbp0EVeuXJHaPH78WPj6+gpjY2NhbW0tZsyYIQYMGCD9LAcHBwsfHx9hZWUlFAqFcHFxEatXr5aOf/nnPq/P6ss/+3mJjY0V48aNE3Z2dkIul4sqVaoIPz8/ce/ePbV28fHxonfv3sLU1FTY2dmJgIAAje/Vffv2CScnJ6Gnpyfs7e2FEEJcuXJFABDh4eFSu9mzZ6t9r2dlZYk5c+YIW1tbIZfLRYMGDcTBgwfVzp+VlSUqVaokWrRoIW1T9T1t2rR8r1H1fZ37++tl3333nahVq5aQy+XCxcVF/PTTT2r7c//9FR4eLgCovZ9PnjwRANT+zhs5cqSwtLQUANReJ5X8/t4vbPYiez64N0ZCQgLMzMwQHx8vrcmmYli3Dsh9S9cFCwAtt04lIiKiN0NqairCw8NRs2ZNjWLJRPT6E0KgRYsW+PjjjzVm4NDrr3fv3mjQoAGm8/cyekXy+3u/sNkLl+9R8aiW7z2fcsq6UkREREREFZtMJsO6deuQydIcFU56ejrc3NzUlvwRVQQMpah4YmNz/tulS85/z5wBnhe8IyIiIiKiiqlhw4bo379/eQ+DikhfXx8zZszQerc+otcVQykqHtVMqTZtgGrVgLQ04OzZ8h0TEREREREREVUYDKWoeFShVJUqwNtv5/yZS/iIiIiIiIiIqJAYSlHxxMbiHDywbU0cblk8v00yQykiIiIiIiIiKiS98h4AVUw3Iw1xBD7AmTjcPAP0gStcL10Cnj4FzM3Le3hERERERERE9JrjTCkquuxs3ImvLD2V6cgQYd4IyM4GTpwox4ERERERERERUUXBUIqK7skT2CBKeiqyBRxa2uQ84RI+IiIiIiIiIioEhlJUdDExqIIY6amegR6c/FrnPGEoRURERERERESFwFCKii4mBkkwlJ5mpmbiHyNXQCYDgoOBqKh8DiYiIiKquGQyGfbs2VPewygUPz8/9OjRo7yH8doIDAyETCbD06dPC32Mg4MDVqxYUWZjeh3NnDkTw4cPL+9hvFEOHTqEhg0bIjs7u7yHUmgV5bswOTkZPXv2hKmpqfTzX9F+rgMCAmD+H67bzFCKii42FkkwUtt0589YoGHDnCd//PHqx0RERERUQtHR0Rg3bhxq1aoFhUIBOzs7dOvWDcf+ozPBixPSlBU/Pz/IZDKMHDlSY9+YMWMgk8ng5+f36gdWgOTkZHz22WdwdHSEgYEBrKys4OXlhb1790ptwsPD0bdvX1SrVg0GBgaoXr06fH19cfPmTbW+9u/fDy8vL5iYmMDQ0BDNmjVDQECAWpv83jPVL9oBAQGQyWT5PiIiIvK8nujoaKxcuRKff/65tC02NhajRo1CjRo1oFAoYGNjAx8fH5w5c0Zqc/XqVXTv3h3W1tYwMDCAg4MDevfujZiYGLX+N27ciGbNmsHQ0BAmJibw8vLC/v371drk9wu4KgiZM2dOgddYVq5duwZPT08YGBjAzs4OixcvLvCY8ePHo0mTJlAoFGio+p0pl06dOkEul2Pz5s0lHp/qM6J6KJVK1KtXD+vWrStx37lFRUWhc+fOJe7n7Nmz6NKlCypVqgQDAwO4ubnh66+/RlZWVpH60fa52bhxI06dOoWzZ88iKioKZmZmJR5zUam+32QyGfT19eHk5IR58+YhMzOzUMf37t0bt2/fLtI5vb29MXHixGKM9tVjKEVFFxOD5OehlNxIDgC4c+QO8PbbOfv/o/9wIyIiov+uiIgINGnSBH/88QeWLFmC69ev49ChQ2jXrh3GjBlT3sN7I9jZ2WHr1q1ISUmRtqWmpmLLli2oUaNGOY5Mu5EjR2LXrl1YvXo1bt68iUOHDuH999/H48ePAQAZGRno0KED4uPjsWvXLty6dQvbtm2Dm5ubWrC0evVq+Pr6onXr1jh//jyuXbuGPn36YOTIkZg8eXKRxtS7d29ERUVJDw8PDwwbNkxtm52dXZ7H/vjjj2jVqhXs7e2lbT179sSVK1ewceNG3L59G/v27YO3t7d0jbGxsXj77bdhYWGBw4cPIyQkBP7+/qhWrRqSkpKkfiZPnowRI0agd+/euHbtGi5cuIA2bdrA19cX33zzTZGucfLkyWrXU716dcybN09tW1lISEhAx44dYW9vj7/++gtLlizBnDlzChX4DB48GL1799a638/PD6tWrSq1sd66dQtRUVEIDg7GiBEjMGrUqFIN2G1sbKBQKErUx+7du+Hl5YXq1avj+PHjuHnzJiZMmIAvvvgCffr0gRCixOO8c+cO6tSpg/r168PGxqZMA8v8dOrUCVFRUQgNDcWkSZMwZ84cLFmypFDHKpVKWFtbl/EIy5F4w8THxwsAIj4+vryHUnHNni0OwUfMwRyxs99OMQdzxBzZHJG0bZ8QgBA1agiRnV3eoyQiIqJXLCUlRQQHB4uUlBSNfYmJOY/c/0RIS8vZlpqad9usrBfb0tNztr3ctba2RdW5c2dha2srEhMTNfY9efJE+jMA8cMPP4gePXoIpVIpnJycxN69e6X9mZmZYvDgwcLBwUEYGBgIFxcXsWLFCrX+Bg4cKHx9fcWSJUuEjY2NsLCwEKNHjxbpuQZub28vFixYIAYNGiSMjY2FnZ2dWLt2rVo/kZGRolevXsLMzExUqlRJdO/eXYSHh2ucR5vjx48LAGrXl1tcXJzo37+/MDc3F0qlUnTq1Encvn1b2h8RESHeeecdYW5uLgwNDUXdunXFb7/9Jh3bt29fUblyZWFgYCCcnJzEhg0btI5FNdb69euLTZs2Sds3b94s3N3dha+vrxg4cKC0PTU1VYwbN05YWVkJhUIhWrduLS5cuKDW52+//SacnZ2FgYGB8Pb2Fv7+/hrXe+rUKdGmTRthYGAgqlevLsaNG6f2GbC3txfLly/XOm4zMzMREBCgdf+VK1cEABEREaG1TWRkpJDL5eKTTz7R2Ldq1SoBQPz5559CiPzfM21j9fLyEhMmTNB6/tzq1asnvvnmG+n5kydPBAARGBio9Zjdu3cLPT09kZGRobXNuXPnBACxatUqjX2ffPKJkMvlIjIyUgghhL+/vzAzM8uzHwBi9+7dGtsLep9Ky3fffScqVaok0tLSpG1Tp04Vrq6uhTp+9uzZokGDBnnuu3fvngAgwsLCSjRGbZ8RR0dHsXjxYun5wYMHRevWrYWZmZmwsLAQXbt2VTt3WlqaGDNmjLCxsREKhULUqFFDLFy4UNqf+70IDw8XAMTOnTuFt7e3UCqVwt3dXZw9e1brOBMTE4WlpaV47733NPbt27dPABBbt27Vek2qn63w8HBpf+7H7NmzhZeXl9o2Ly8vIYTm5+XevXuie/fuwsjISJiYmIhevXqJ6OhoIYQQT58+FTo6OuLixYtCCCGysrJEpUqVRIsWLaTjf/75Z1G9enWt15rXd3GHDh1Ey5YthRAFf9e+/DOh+hz99NNPwt7eXpiamorevXuLhIQE6Xwvvx65/24oTfn9vV/Y7IUzpajoYmOR/LymVJUGVWBd3xoQQHhqNUAuByIjgbt3y3mQRERE9DoxNs55PHr0YtuSJTnbxo5Vb2ttnbM9MvLFtm+/zdk2ZIh6WweHnO0hIS+2vbTiqUBxcXE4dOgQxowZAyMjI439Ly8JmTt3Lj744ANcu3YNXbp0Qb9+/RAXFwcAyM7ORvXq1bF9+3YEBwdj1qxZmD59On799Ve1Po4fP447d+7g+PHj2LhxIwICAjSWai1btgxNmzbFlStXMHr0aIwaNQq3bt0CkDMDx8fHByYmJjh16hTOnDkDY2NjdOrUCenp6UV7AbTw8/PDpUuXsG/fPpw7dw5CCHTp0gUZGRkAcpbVpaWl4eTJk7h+/Tq++uorGBsbA8ipSxQcHIyDBw8iJCQEa9asQeXKlQs85+DBg+Hv7y8937BhAwYNGqTR7tNPP8XOnTuxceNGXL58GU5OTvDx8ZHeh/v37+O9995Dt27dEBQUhKFDh2LatGlqfdy5cwedOnVCz549ce3aNWzbtg2nT5/G2Jc/kPmwsbHBgQMH8OzZszz3W1lZQUdHBzt27NC6HGnHjh3IyMjIc0bUiBEjYGxsjF9++aXQYyquuLg4BAcHo2nTptI2Y2NjGBsbY8+ePUhLS8vzOBsbG2RmZmL37t1aZ7b88ssvMDY2xogRIzT2TZo0CRkZGdi5c2fpXEg+IiMjpWvS9li4cKHW48+dO4e2bdtCX19f2ubj44Nbt27hyZMnJRpbjRo1UKVKFZw6dapE/bxMCIFDhw4hMjISLVq0kLYnJSXhk08+waVLl3Ds2DHo6Ojg3XffleparVq1Cvv27cOvv/6KW7duYfPmzXBwcMj3XJ9//jkmT56MoKAguLi44MMPP9S6RO3IkSN4/Phxnp/7bt26wcXFpdCf+1atWmHFihUwNTWVZspNnjwZu3btwrBhw+Dh4YGoqCjs2rVL49js7Gz4+voiLi4OJ06cwNGjR3H37l1pVpuZmRkaNmyIwMBAAMD169chk8lw5coVJCYmAgBOnDgBLy+vQo1VRalUSt/VBX3X5uXOnTvYs2cP9u/fj/379+PEiRP48ssvAQArV67UmCGpbXbk60CvvAdAFVBMjFRTysjaCLU61kLM3zEIO/EP6rVsCZw6BQQGAo6O5TtOIiIiokIICwuDEAK1a9cuVHs/Pz98+OGHAICFCxdi1apVuHDhglQXZu7cuVLbmjVr4ty5c/j111/xwQcfSNsrVaqEb775Brq6uqhduza6du2KY8eOYdiwYVKbLl26YPTo0QCAqVOnYvny5Th+/DhcXV2xbds2ZGdn48cff5SWo/j7+8Pc3ByBgYHo2LFjiV6T0NBQ7Nu3D2fOnEGrVq0AAJs3b4adnR327NmDXr16ITIyEj179oSbmxsAoFatWtLxkZGRaNSokRRwFPTLrMpHH32Ezz77DPfu3QMAnDlzBlu3bpV+IQRyfples2YNAgICpJo2P/zwA44ePYr169djypQpWLNmDRwdHbFs2TIAgKurqxScqSxatAj9+vWT6q44Oztj1apV8PLywpo1a2BgYFDgeNetW4d+/frB0tISDRo0QJs2bfD++++jdeucO1Pb2tpi1apV+PTTTzF37lw0bdoU7dq1Q79+/aTX6/bt2zAzM0PVqlU1+tfX10etWrWKXE+mOCIjIyGEQLVq1aRtenp6CAgIwLBhw/D999+jcePG8PLyQp8+feDu7g4AaNmyJaZPn46+ffti5MiRaN68Od566y0MGDAAVapUka7R0dFRLcxRqVatGkxNTV/JNVarVg1BQUH5trGwsNC6Lzo6GjVr1lTbprrG6OhoVKpUqcTjU332S6p69eoAgLS0NGRnZ2PevHlo27attL9nz55q7Tds2AArKysEBwejfv36iIyMhLOzM9q0aQOZTKa2pFObyZMno2vXrgBywvt69eohLCwsz+9W1ftdp06dPPuqXbt2oT8T+vr6MDMzg0wmg42Njdo+Q0ND6Ovra2xXOXbsGK5fv47w8HApuPnpp59Qr149XLx4Ec2aNYO3tzcCAwMxefJkBAYGokOHDrh58yZOnz6NTp06ITAwEJ9++mmhxiqEwLFjx3D48GGMGzeuUN+1ecnOzkZAQABMTEwAAP3798exY8ewYMECmJmZQV9fH4aGhlqv+3XCmVJUdLkKnRtZGcGxY074dPfIXYg6dXPa3L9fXqMjIiKi11BiYs4j92SZKVNytr1cTiYmJmd77jJCY8bkbFu/Xr1tRETO9ty/1xS1Hra22R3aqH4ZBwAjIyOYmpqqFXT+9ttv0aRJE1hZWcHY2Bjr1q1DZO5pXwDq1asHXV1d6XnVqlU1ikLnPo/qly1Vm6tXryIsLAwmJibSDA8LCwukpqbizp07RbqevISEhEBPT09tZoWlpSVcXV0R8nxa2vjx4/HFF1+gdevWmD17Nq5duya1HTVqFLZu3YqGDRvi008/xdmzZwt1XisrK3Tt2hUBAQHw9/dH165dNWZY3blzBxkZGVLwAwByuRzNmzeXxhYSEqI2dgDw8PBQe3716lUEBASozZLx8fFBdnY2wsPDCzXetm3b4u7duzh27Bjef/993LhxA56enpg/f77UZsyYMYiOjsbmzZvh4eGB7du3o169ejh69GihzvGqqGp5vRzG9ezZEw8ePMC+ffukX8AbN26sNrNvwYIFiI6Oxvfff4969erh+++/R+3atXH9+nWpTVF/zsqCnp4enJyc8n3kF0qVNaVSieTk5Dz3nTp1Su2zWlBR9FOnTiEoKAhBQUH48ccfsXDhQqxZs0baHxoaig8//BC1atWCqampFByrvqv8/PwQFBQEV1dXjB8/HkeOHClw/Lm/s1Qh68vfay8r789FSEgI7Ozs1GYS1a1bF+bm5tL3iZeXF06fPo2srCycOHEC3t7eUlD14MEDhIWFwdvbO9/z7N+/H8bGxjAwMEDnzp3Ru3dvzJkzp1DftXlxcHCQAikg779DKgqGUlR0L82Usm9rD12FLhL+ScAj2fN/NDwvfEhEREQEAEZGOY/cNWb19XO2vVwrV9VWJ9e/VOXynG0vT17R1rYonJ2dIZPJNO6Gpo38pRPIZDJpycvWrVsxefJkDBkyBEeOHEFQUBAGDRqksaQuvz4K0yYxMRFNmjSRfulUPW7fvo2+ffsW6jpKaujQobh79y769++P69evo2nTpli9ejUAoHPnzrh37x4+/vhjPHjwAG+//XahC3YPHjwYAQEB2LhxIwYPHlxm409MTMSIESPUXr+rV68iNDQUjkWY8S+Xy+Hp6YmpU6fiyJEjmDdvHubPn6/2npuYmKBbt25YsGABrl69Ck9PT3zxxRcAABcXF8THx+PBgwcafaenp+POnTtwcXEBAJiamgIA4uPjNdo+ffq0RHcWU4V/eS1DMzAwQIcOHTBz5kycPXsWfn5+mD17tlobS0tL9OrVC0uXLkVISAiqVauGpUuXStd49+7dPJeWPnjwAAkJCWrXmJSUpPHzoCoMX5JrLOnyPRsbGzx8+FBtm+p5acxIiYuLg5WVVZ77mjZtqvZZ7d69e7591axZE05OTqhXrx4GDRqE/v37Y8GCBdL+bt26IS4uDj/88APOnz+P8+fPA4D0HjVu3Bjh4eGYP38+UlJS8MEHH+D999/P95y5v7NUMzhffh9VVO+3tuAlJCREaqPz/As+d4CV39K20ta2bVs8e/YMly9fxsmTJ9VCqRMnTqBatWpwdnbOt4927dohKCgIoaGhSElJwcaNG/NcLl5Yhfk7pKJgKEVFJh7GSDWlDK0MIVfKYd82ZzrnnYc5dQTUCkYQERERvcYsLCzg4+ODb7/9Vu1uYSq575JWENUSjNGjR6NRo0ZwcnIqlZlLL2vcuDFCQ0NhbW2tMdOjNG55XqdOHWRmZkq/qALA48ePcevWLdStW1faZmdnJ92BbtKkSfjhhx+kfVZWVhg4cCA2bdqEFStWFPqW9Kq6WKq6WS9TLQM7c+aMtC0jIwMXL16UxlanTh1cuHBB7bg///xT7Xnjxo0RHByc52yZvJaZFVbdunWRmZmJ1NTUPPfLZDLUrl1b+qz17NkTcrlcWmqY2/fff4+kpCRpuaizszN0dHTw119/qbW7e/cu4uPjpV/ii8PR0RGmpqYIDg4usG3dunXz/FlR0dfXh6Ojo9SmT58+SExMxNq1azXaLl26FHK5XFpO5urqiszMTI1ldpcvXwaAEl2javlefo+RI0dqPd7DwwMnT55UC0SOHj0KV1fXEi/dU81ybNSoUZ77lUql2mc09yyZwtDV1ZVmw6l+lmfMmIG3334bderUyTOMNDU1Re/evfHDDz9g27Zt2Llzp1S3raQ6duwICwuLPD/3+/btk2ZyAZCCutx3VXz586Gvr6+1blt+6tSpg/v37+N+rpU+wcHBePr0qfR9Ym5uDnd3d3zzzTeQy+WoXbs22rZtiytXrmD//v2FqidlZGQEJycn1KhRA3p6L6ooFfa7tqiK+3qUB4ZSVDSZmUiLS0LW83JkRlY56a5qCd+du88/UpwpRURERBXIt99+i6ysLDRv3hw7d+5EaGgoQkJCsGrVKo1lX/lxdnbGpUuXcPjwYdy+fRszZ87ExYsXS328/fr1Q+XKleHr64tTp04hPDwcgYGBGD9+PP75558i9XX9+nWN2ULOzs7w9fXFsGHDcPr0aVy9ehUfffQRbG1t4evrCwCYOHEiDh8+jPDwcFy+fBnHjx+X6sPMmjULe/fuRVhYGG7cuIH9+/drrR3zMl1dXYSEhCA4OFhtiaOKkZERRo0ahSlTpuDQoUMIDg7GsGHDkJycjCHPK+GPHDkSoaGhmDJlCm7duoUtW7ZoFJKfOnUqzp49i7Fjx0ozGPbu3VukQufe3t5Yu3Yt/vrrL0RERODAgQOYPn062rVrB1NTUwQFBcHX1xc7duxAcHAwwsLCsH79emzYsEF6HWvUqIHFixdjxYoV+Pzzz3Hz5k3cuXMHX3/9NT799FNMmjRJWtpjYmKCoUOHYtKkSdi3bx/Cw8Nx8uRJ9OvXDy1btpRq0hSHjo4O2rdvj9OnT0vbHj9+jLfeegubNm3CtWvXEB4eju3bt2Px4sXS+Pfv34+PPvoI+/fvx+3bt3Hr1i0sXboUBw4ckNp4eHhgwoQJmDJlCpYtW4Y7d+7g5s2bmDFjBlauXIlly5ZJy6fq1auHjh07YvDgwTh27BjCw8Nx6NAhjB49Gr1794atrW2xr7Gky/f69u0LfX19DBkyBDdu3MC2bduwcuVKfPLJJ1Kb3bt3a9RQCgsLQ1BQEKKjo5GSkiL9rOWeOfbnn39CoVAU6fsmPzExMYiOjsa9e/ewfft2/Pzzz9L7UalSJVhaWmLdunUICwvDH3/8oXYNAPD111/jl19+wc2bN3H79m1s374dNjY2Gjd+KC4jIyOsXbsWe/fuxfDhw3Ht2jVERERg/fr18PPzw/vvvy/V4XNycoKdnR3mzJmD0NBQ/PbbbxphloODAxITE3Hs2DE8evRI6zLIl7Vv3x5ubm7o168fLl++jAsXLmDAgAHw8vJSK/rv7e2NzZs3SwGUhYUF6tSpg23bthW5yHluhfmuLQ4HBwecP38eERERePTo0es9i6pU7wdYART2toSkRXS0eAwLMQdzxAKjBS82X40WczBHfKGYJzKgK0SjRuU4SCIiIioP+d0auiJ48OCBGDNmjLC3txf6+vrC1tZWdO/eXRw/flxqgzxuSW9mZib8/f2FEEKkpqYKPz8/YWZmJszNzcWoUaPEtGnT1G4Dn9ftwSdMmCDdrlyIvG9x36BBAzF79mzpeVRUlBgwYICoXLmyUCgUolatWmLYsGHSv3PzOk9ued1GHYDQ1dUVQry4TbmZmZlQKpXCx8dH7TblY8eOFY6OjkKhUAgrKyvRv39/8ejRIyGEEPPnzxd16tQRSqVSWFhYCF9fX3H37l2tYylorL6+vmLgwIHS85SUFDFu3Djp2lu3bi0uXLigdsz//vc/4eTkJBQKhfD09BQbNmzQuK38hQsXRIcOHYSxsbEwMjIS7u7uYsGCF//Gzet9yG3hwoXCw8NDWFhYCAMDA1GrVi0xfvx46XWIjY0V48ePF/Xr1xfGxsbCxMREuLm5iaVLl4qsrCy1vvbu3Ss8PT2FkZGRMDAwEE2aNBEbNmzQOGdKSoqYPXu2qF27tlAqlaJmzZpi+PDhIjY2Ns8xenl5iQkTJmi9htwOHDggbG1tpbGlpqaKadOmicaNGwszMzNhaGgoXF1dxYwZM0RycrIQQog7d+6IYcOGCRcXF6FUKoW5ublo1qyZ9DOR2/r160WTJk2EgYGBMDIyEp6enmLfvn0a7Z48eSLGjx8vHB0dhVKpFM7OzuLTTz8Vz549y3PcBb1Ppenq1auiTZs2QqFQCFtbW/Hll1+q7ff39xcv/5rt5eWV589aeHi41Gb48OFixIgRJR7fyz/Xenp6ombNmmLy5MkiMTFRanf06FFRp04doVAohLu7uwgMDFT7flu3bp1o2LChMDIyEqampuLtt98Wly9flo7P3TY8PFwAEFeuXJH2P3nyRABQ+/7My8mTJ4WPj48wNTUV+vr6ol69emLp0qUiMzNTrd3p06eFm5ubMDAwEJ6enmL79u0ar+HIkSOFpaWlACB9V7783SqE5ufl3r17onv37sLIyEiYmJiIXr16iejoaLVjdu/eLQCINWvWSNsmTJggAIibN2/me40Ffb8V9F3r7+8vzMzMpOezZ89W+ztFCCGWL18u7O3tpee3bt0SLVu2FEqlUuN1Kk35/b1f2OxFJsRrUHHuFUpISICZmRni4+OlNdlUBNev4757F2zAUJjXNMeEuxMA5Kzv/bra10iMTsQAbETNGllAKd05goiIiCqG1NRUhIeHo2bNmoW6cxkRvV6EEGjRogU+/vhjaekUlb1Hjx7B1dUVly5d0ri7H9HrLL+/9wubvXD5HhXNS3feU5HJZC+W8MGRNaWIiIiIiCoYmUyGdevWITMzs7yH8kaJiIjAd999x0CK3kgMpahoYmKQnOvOe7nV6lgLwPNQKjkZeF5Ij4iIiIiIKoaGDRuif//+5T2MN0rTpk3Ru3fv8h4GUblgKEVFExMjzZQytDJU2+XYIWemVDSqIgjuLHZORERERERERFoxlKKiiY1FEnLCqJdDqX/+fHGnl714D7d2/v1Kh0ZEREREREREFQdDKSqafJbvhR8PB2SqZ9mIOHX/1Y6NiIiIXguv9a2niYiIqFSUxt/3eqUwDnqTxMQgCSYA1AudA0DNdjVxfsX558904FCLmScREdGbRF9fHzo6Onjw4AGsrKygr68PmUxW8IFERERUYQghkJ6ejtjYWOjo6EBfX7/YfTGUoqKJjUUSbABozpRy7e6KBoMa4Kr/VdgjAq4OVuUxQiIiIionOjo6qFmzJqKiovDgwYPyHg4RERGVIUNDQ9SoUQM6OsWfkMJQioomJgbJWmpKAYCDlwOu+l+FHjJZ6JyIiOgNpK+vjxo1aiAzMxNZWVnlPRwiIiIqA7q6utDT0yvxjGiGUlQk4uGLu++9PFMKAAwr5wRVyTAEHj16pWMjIiKi14NMJoNcLodcLi/voRAREdFrjEV/qPDS05GWkIZs6ALQrCkFAIaWuUIpzpQiIiIiIiIiIi0YSlHhxcYi6fnSPX0TfegZaE60U82USoGSM6WIiIiIiIiISCuGUlR4MbmW7uUxSwp4EUqlQ4HM2CevbGhEREREREREVLEwlKLCi41Fcj71pABAYaaATDen0FlyTOIrGxoRERERERERVSwMpajwcs2UyuvOe0BOYVNDcwUAIDku9ZUNjYiIiIiIiIgqFoZSVHgxMVJNKW2hFJCrrlSyANLTX8nQiIiIiIiIiKhiYShFhRcb+6KmlJblewBgWMUYAO/AR0RERERERETaMZSiwouJeVFTSkuhcwAwrJyzLxmGvAMfEREREREREeWJoRQVXiFnSiktlQA4U4qIiIiIiIiItGMoRYUXE5MTNKFwNaWSoeRMKSIiIiIiIiLKE0MpKrxcd9/Lt6aUqtA5Z0oRERERERERkRYMpajQREysNFMq/5pSqplSrClFRERERERERHljKEWFk5yM1KQsZEMXQP7L91hTioiIiIiIiIgKwlCKCic2FknPZ0kpTBXQU+hpbcqZUkRERERERERUEIZSVDixsUh+Xk8qv1lSwEuhFGdKEREREREREVEeGEpR4RSyyDnwIpTKgD4yYuLKfGhEREREREREVPEwlKLCiYmRlu/lV+QcyFnep6MrAwCkxCaV+dCIiIiIiIiIqOJhKEWFExsrzZQytM5/+Z5MJoOykgIAkPw4ucyHRkREREREREQVD0MpKpyYGKmmVEEzpYBcdaUSs4GMjDIdGhERERERERFVPAylqHCKUFMKAAytjQE8L3Yex7pSRERERERERKSOoRQVTmxsTsCEgu++BwCGlXOCK96Bj4iIiIiIiIjywlCKCqeIM6WUlZUAgBQYAo8elenQiIiIiIiIiKjiYShFhZM7lCpKTSnOlCIiIiIiIiKiPDCUooIJARHzYvleoWpK5Q6lOFOKiIiIiIiIiF7CUIoKlpiIlDQZxPOPiypwyo+hJWdKEREREREREZF2DKWoYLmW7inMFNDV1y3wEFVwlQIlZ0oRERERERERkQaGUlSw2FgkF6HIOcCaUkRERERERESUP4ZSVLBHj5CkqidViCLnAGtKEREREREREVH+GEpRwZKTX9x5r5AzpZSWSgBABvSREfOkzIZGRERERERERBUTQykqWEqKtHzP0KrgIucAoDBVQEdXlnN4zLMyGxoRERERERERVUwMpahgKSlFniklk8lgWEkBAEiOSy2zoRERERERERFRxcRQigqWkpJTGwqFnykF5KorlZAJZGWVydCIiIiIiIiIqGJiKEUFK0ZNKQBQWhvnHA5D4AnrShERERERERHRCwylqGC5l+8V8u57AGD4vG0ylLwDHxERERERERGpYShFBStGTSkg1/I9GAKPH5fJ0IiIiIiIiIioYmIoRQXKTkpBCpQAillTCoacKUVEREREREREahhKUYFSnqZCPP+oqIKmwlBa5gRZKZwpRUREREREREQvYShFBUp+mgEA0NUDwg6GFfo4zpQiIiIiIiIiIm0YSlGBQiIMAABZmcBW3624te9WoY5jTSkiIiIiIiIi0oahFBXo38dK6c8yXRkiAiMKdRxnShERERERERGRNgylqEAW8mfSn0WWgIO3Q6GOM7TkTCkiIiIiIiIiyhtDKSqQtfwJAMC8ij767O0D1+6uhTpONVMqE3JkPIwrs/ERERERERERUcXDUIoKlJGWBQCo6mpa6EAKAPRN9KGjJwMAJMcmlcnYiIiIiIiIiKhiYihFBcpMEwAAuaF+kY6TyWQwrKQAACQ/Ti71cRERERERERFRxcVQigqUkZ4NANAzLlooBQCGljlF0pPjM4Hs7FIdFxERERERERFVXAylqEAZGTn/lRspinysYRUTAECKMACePi3FURERERERERFRRcZQigqUmZnzXz1jgyIfa2hlDIB34CMiIiIiIiIidQylKH8ZGcgQugAAuUnRQyll5efL92AIPHpUqkMjIiIiIiIiooqLoRTlLzkZmZADAOSmyiIfbmhpmNMNZ0oRERERERERUS4MpSh/KSnIeB5K6ZkUI5SqnBNKpUDJmVJEREREREREJGEoRflLSUEm9AAAckN5kQ9XhVKcKUVEREREREREuTGUovzlniml1Cvy4WqhFGdKEREREREREdFzDKUof8nJUihVnJlSSstchc45U4qIiIiIiIiInmMoRfnLvXxPWcLle5wpRURERERERETPMZSi/JXS8r1MyJHxMK5Uh0ZEREREREREFRdDKcpfCWdK6RvrQ1cuAwAkP0ou1aERERERERERUcVVrqHUmjVr4O7uDlNTU5iamsLDwwMHDx7U2j4gIAAymUztYWBg8ApH/AYqYU0pmUwGpZl+TldxqaU6NCIiIiIiIiKquIq+HqsUVa9eHV9++SWcnZ0hhMDGjRvh6+uLK1euoF69enkeY2pqilu3bknPZTLZqxrum6mEy/eAnCV8iY/SkByfDggB8D0jIiIiIiIieuOVayjVrVs3tecLFizAmjVr8Oeff2oNpWQyGWxsbF7F8AiASE5GpmqmVDGW7wGAobUxcPMJkjPkQEoKYGhYmkMkIiIiIiIiogrotakplZWVha1btyIpKQkeHh5a2yUmJsLe3h52dnbw9fXFjRs38u03LS0NCQkJag8qvKyEF3Wgij1TqooJgOd34ItjsXMiIiIiIiIieg1CqevXr8PY2BgKhQIjR47E7t27Ubdu3Tzburq6YsOGDdi7dy82bdqE7OxstGrVCv/884/W/hctWgQzMzPpYWdnV1aX8p+UkZAi/bk4NaUAQGmpBMBQioiIiIiIiIheKPdQytXVFUFBQTh//jxGjRqFgQMHIjg4OM+2Hh4eGDBgABo2bAgvLy/s2rULVlZWWLt2rdb+P/vsM8THx0uP+/fvl9Wl/CdlJOYUJ5fJBHTlusXqw7ByznK9FIZSRERERERERPRcudaUAgB9fX04OTkBAJo0aYKLFy9i5cqV+QZNKnK5HI0aNUJYWJjWNgqFAgqFotTG+6bJTEwDYAB58SZJAXgRSt1BLdw6HAFX71IZGhERERERERFVYOU+U+pl2dnZSEtLK1TbrKwsXL9+HVWrVi3jUb25VDOl5PLi3zEv/l48ACAOltj65T3c2nergCOIiIiIiIiI6L+uXGdKffbZZ+jcuTNq1KiBZ8+eYcuWLQgMDMThw4cBAAMGDICtrS0WLVoEAJg3bx5atmwJJycnPH36FEuWLMG9e/cwdOjQ8ryM/7SMpHQAgJ5+8UOpp+FPn/9JBpkMiAiMgGt315IPjoiIiIiIiIgqrHINpWJiYjBgwABERUXBzMwM7u7uOHz4MDp06AAAiIyMhI7Oi8lcT548wbBhwxAdHY1KlSqhSZMmOHv2rNbC6FRymckZAAC5fvEn1dm1tsPNPTcBCAghg4O3Q+kMjoiIiIiIiIgqLJkQQpT3IF6lhIQEmJmZIT4+HqampuU9nNdeaLO+2HLJFTY15Bhxb3qx+ogLi8Nq59XQQSY+6BgP18OrSnmURERERERERPS6KGz28trVlKLXS2bK85lSyuJPqlNaKAEA2dCDk+GDUhkXEREREREREVVsDKUoXxmpWQAAuYFusftQmCmA5yWpUmISSmNYRERERERERFTBMZSifKlCKT2lvNh96OjqwMAoJ9RKeZRcKuMiIiIiIiIiooqNoRTlKzM9GwAgNyx+KAUASnMFACDlSWqJx0REREREREREFR9DKcpXRtrzUMpIv0T9GFrm1JVKic8o8ZiIiIiIiIiIqOJjKEX5ykjPuTmjnqGiRP0oKxsDAFLSdYBUzpYiIiIiIiIietMxlKJ8ZWbm/FfPuIShlLUJACAFSuDJk5IOi4iIiIiIiIgqOIZSpJ0QyHgeSslNDErUlYFq+R6UQFxcSUdGRERERERERBUcQynSLjUVmcgpcC43UZaoK6UFQykiIiIiIiIieoGhFGmXkoKM56GUnilDKSIiIiIiIiIqPQylSLuUFGRCDwAgL2FNKUNLw5wuGUoRERERERERERhKUX5yz5RS6pWoK7WZUo8fl3hoRERERERERFSxMZQi7ZKTX8yUMpSXqCsu3yMiIiIiIiKi3BhKkXa5ZkrJlQyliIiIiIiIiKj0MJQi7cpg+V4aDJD1iKEUERERERER0ZuOoRRpl7vQeQlnShmYG0h/To15VqK+iIiIiIiIiKjiYyhF2iUnv1i+V8KaUjp6OlAY6QIAUh4llXhoRERERERERFSxMZQi7Upx+R4AGJrr53Qbl1rivoiIiIiIiIioYmMoRdqV4vI9AFBWel7sPCG9xH0RERERERERUcXGUIq0yk5MQtbzUKo0ZkoprYwAACkpADIyStwfEREREREREVVcDKVIq8xnKdKfS1pTCgCU1iYAgBQogSdPStwfEREREREREVVcDKVIq4yEF7WfSmP5noGlIYDnoVRcXIn7IyIiIiIiIqKKi6EUaZWZmBNK6eoKyHRkJe5PaZFTUyqZoRQRERERERHRG4+hFGmV8SwnlNIreTkpAIDh85lSqVACjx+XTqdEREREREREVCExlCKtMpPSAABy/ZLPkgJezJTi8j0iIiIiIiIiYihFWmUkpQNgKEVEREREREREpY+hFGmVkZIBANBT6JZKfwyliIiIiIiIiEiFoRRplZmcE0rJFaXzMWEoRUREREREREQqDKVIq4yUTACA3KB0Kp2rQqlUKJH9iKEUERERERER0ZuMoRRplZGaBQDQU5ZOKGVQyUD6c2pMQqn0SUREREREREQVE0Mp0iozLSeUkivlpdKfrlwXCsOcj1zKo6RS6ZOIiIiIiIiIKiaGUqRVRlo2AEDPsHRCKQBQmukDAFLiUkqtTyIiIiIiIiKqeBhKkVaZ6TmhlNxIv9T6VFZ6Xuw8Pr3U+iQiIiIiIiKiioehFGmVkXPzPegZK0qtT2VlIwBASlI2kJVVav0SERERERERUcXCUIq0UoVSciOD/BsWgbKKCQAgBUrgyZNS65eIiIiIiIiIKhaGUpS3rCxkZud8POSmpRdKGVgaAgCSoQTi4kqtXyIiIiIiIiKqWBhKUd5SUpAJPQCAnknphVKGz0OpFIZSRERERERERG80hlKUt5QUZCDnrntyU8NS61ZpkVPoPJWhFBEREREREdEbjaEU5S1XKKVnKC+1blWhFGdKEREREREREb3ZGEpR3pKTpeV7coZSRERERERERFTKGEpR3nIv31MylCIiIiIiIiKi0sVQivKWe/meUq/UumUoRUREREREREQAQynSJtfd98pqplT2I4ZSRERERERERG8qhlKUt+TkF8v3yqCmFCBDWkx8qfVLRERERERERBULQynKW66ZUqW5fE9XXxf6Bjkfu5RHSaXWLxERERERERFVLAylKG9lVOgcAJRmOf2lPE4u1X6JiIiIiIiIqOJgKEV5y7V8rzRnSgGAstLzulJP00u1XyIiIiIiIiKqOBhKUZ6yEpMhnn88SrOmFAAoKxsCAFISM4Hs7FLtm4iIiIiIiIgqBoZSlKfMhBTpz6W+fM/aBACQDCUQz2LnRERERERERG8ihlKUp4xnqc//JKCr0C3VvpVWxgCAFCiBuLhS7ZuIiIiIiIiIKgaGUpSnjGc5M6X09ACZTFaqfSstnteUYihFRERERERE9MZiKEV5ykxMAwDIS3flHoAXoVQqQykiIiIiIiKiNxZDKcpTRnLOnfHk+qX/EeFMKSIiIiIiIiJiKEV5ykjKAADo6Zfu0j2AoRQRERERERERMZQiLTJVM6UUZTdTKhmGDKWIiIiIiIiI3lAMpShPGSk5M6XkBqV75z2AM6WIiIiIiIiIiKEUaZGZmgUA0DPQK/W+lZaqQucGEI8el3r/RERERERERPT6YyhFecp4HkrJlaV/+z1lpZxQSkAHaTHxpd4/EREREREREb3+GEpRnlShlJ6y9GdK6RnoQa7IKaCeEptY6v0TERERERER0euPoRTlKTM9GwAgN9Ivk/6Vpjn9psSllEn/RERERERERPR6YyhFecpIFwAAPSNFmfSvrGQAAEh5mlYm/RMRERERERHR642hFOUpI+fme5Abl1EoZWkIAEhOyASEKJNzEBEREREREdHri6EUaRICmRnPZ0qVVShVxQQAkCIUQEJCmZyDiIiIiIiIiF5fDKVIU0YGMpBT4FxuoiyTUyitjAEAKVACjx6VyTmIiIiIiIiI6PXFUIo0paQgE3IAgNy0jEIpi5x+U6AEoqPL5BxERERERERE9PpiKEWaUlKQ8TyU0jM2KJNTqEKpVIZSRERERERERG8khlKkKTkZmarle4byMjmF2kyphw/L5BxERERERERE9PpiKEWacs2UKutQKhmGnClFRERERERE9AZiKEWaUlKkmVJ6Sr0yOQVrShERERERERG92RhKkabcM6WUZTRTypLL94iIiIiIiIjeZAylSFNy8otC52U8UyoZhrgZnF0m5yAiIiIiIiKi1xdDKdKUa/leWdWUun/2/vM/ybAtrClu7btVJuchIiIiIiIiotcTQynS9AqW770IpQAZshFxPLxMzkNEREREREREryeGUqQpVyhVVsv3ararKf1ZQAcOzazL5DxERERERERE9HpiKEUaRFISMst4ppRrd1dYuloCAFrjFFwbG5bJeYiIiIiIiIjo9cRQijRkPUuR/lxWNaUAwKquFQDADAm8Ax8RERERERHRG4ahFGnIyBVKldXyPQAwtjEGACTCGIiOLrPzEBEREREREdHrh6EUachIyAmlZDIBXblumZ3HqIoRAIZSRERERERERG8ihlKkITMxDQAgL7uVewBezJRKghFDKSIiIiIiIqI3DEMp0pCRpAqlZGV6HrXle6wpRURERERERPRGYShFGjKT0gEAevplHEpVYU0pIiIiIiIiojcVQynSkPE8lJLrl+3HI/dMKRHFUIqIiIiIiIjoTcJQijRkpGQAAOQGZfvxUBU6z4Ie0qKflOm5iIiIiIiIiOj1wlCKNGSmZAIA9Az0yvQ8cqUcCpOcauqJMclAdnaZno+IiIiIiIiIXh8MpUhDRmoWAEBexqEUABjbmAAAErOVwOPHZX4+IiIiIiIiIno9MJQiDRmpz2dKKV9BKFX1eSjFO/ARERERERERvVEYSpGGzLScZXRyQ3mZn0tVV4p34CMiIiIiIiJ6szCUIg0Z6QIAIDdSlPm5VHfgS2IoRURERERERPRGYShFGjKfh1J6Rvplfi61mVJcvkdERERERET0xmAoRRoyMlSh1KucKWXEmVJEREREREREbxCGUqROCGRkyQAAclNlmZ9OFUqxphQRERERERHRm4WhFKlLTUUmcgqcy00Myvx0xlVyhVJcvkdERERERET0xmAoRepSUpAJPQCAnsmrmymVBCOIKM6UIiIiIiIiInpTMJQidcnJyFDNlDIu+5pSRtY5hc6zoYuUqKdlfj4iIiIiIiIiej2Uayi1Zs0auLu7w9TUFKampvDw8MDBgwfzPWb79u2oXbs2DAwM4ObmhgMHDryi0b4hUlJehFKG8jI/na6+LpSVcsKvxMdpQGZmmZ+TiIiIiIiIiMpfuYZS1atXx5dffom//voLly5dwltvvQVfX1/cuHEjz/Znz57Fhx9+iCFDhuDKlSvo0aMHevTogb///vsVj/w/LPfyPaXeKzmlcVUTAEAijIDY2FdyTiIiIiIiIiIqX+UaSnXr1g1dunSBs7MzXFxcsGDBAhgbG+PPP//Ms/3KlSvRqVMnTJkyBXXq1MH8+fPRuHFjfPPNN1rPkZaWhoSEBLUH5SP3TCll2c+UAgBjG1UoxTvwEREREREREb0pXpuaUllZWdi6dSuSkpLg4eGRZ5tz586hffv2att8fHxw7tw5rf0uWrQIZmZm0sPOzq5Ux/2fk6um1KuaKWVUJaeuFEMpIiIiIiIiojdHuYdS169fh7GxMRQKBUaOHIndu3ejbt26ebaNjo5GlSpV1LZVqVIF0fkEGZ999hni4+Olx/3790t1/P85uZbvvYqaUkDuO/AZAw8fvpJzEhEREREREVH5ejVTYfLh6uqKoKAgxMfHY8eOHRg4cCBOnDihNZgqKoVCAYWi7O8i959RLsv3ckIpzpQiIiIiIiIienOUeyilr68PJycnAECTJk1w8eJFrFy5EmvXrtVoa2Njg4cvzaR5+PAhbGxsXslY3wi5Qiku3yMiIiIiIiKislLuy/delp2djbS0tDz3eXh44NixY2rbjh49qrUGFRVDcvKL5XuveKZUEoy4fI+IiIiIiIjoDVGuM6U+++wzdO7cGTVq1MCzZ8+wZcsWBAYG4vDhwwCAAQMGwNbWFosWLQIATJgwAV5eXli2bBm6du2KrVu34tKlS1i3bl15XsZ/SnZSMrLKqaZUzkypm6/knERERERERERUvso1lIqJicGAAQMQFRUFMzMzuLu74/Dhw+jQoQMAIDIyEjo6LyZztWrVClu2bMGMGTMwffp0ODs7Y8+ePahfv355XcJ/TuazFOnPr2r5nnGVFzOlsqMevn7T94iIiIiIiIio1JVrKLV+/fp89wcGBmps69WrF3r16lVGI6KM+BQAugBe3fI9QytDyHQAkS1DcnQCjF/JWYmIiIiIiIioPHFSCqnJTEwFAOjqCsh0ZK/knDq6OjCsbAgASIzPArTUFCMiIiIiIiKi/w6GUqQmIzEnEJK/mklSEmMbEwDP60qx2DkRERERERHRfx5DKVKTmZQTSunJX80sKZUXxc55Bz4iIiIiIiKiNwFDKVKTkZoFAJDrFy6UOnYMiIws+XnV78AXXfIOiYiIiIiIiOi1xlCK1KhCKT39gj8as2cD7dsD06eX/LxGVYwAAEkMpYiIiIiIiIjeCAylSE1mmmqmVMEfDV9fQF8fsLQEsrNLdl7OlCIiIiIiIiJ6s+iV9wDo9ZKRnpMuyRUFh1KNG+cs3atSpeTnVQulWFOKiIiIiIiI6D+PM6VITUZaTiilV0AodfYsUKMGMHJk6Zz3xfI9I86UIiIiIiIiInoDMJQiNZnpAgAgN9DNt93Dh8D9+y8mNUVFAVOnAmlpxTsvl+8RERERERERvVm4fI/UZGQ8D6WU+X803noLuHAB0NHJqSfl7Q3cvg1YWwOTJhX9vMZVckKpFBgiKzoW+UdiRERERERERFTRcaYUqcnMyPmvnkH+oZSZGdCsGdCkSU4wNW0a0LIl0Lp18c6rtFBCR08GAEiKSiheJ0RERERERERUYTCUIjUZqlCqgJlSLxs4MKfOVMuWxTuvTEcGI+uculKJyTpAUlLxOiIiIiIiIiKiCoGhFKl5mJyzjO5ZXGa+7f74A/jlF+Du3ZznOjqATFaycxvbmADgHfiIiIiIiIiI3gQMpUhya98t3E6sDgC4eeoRbu27pbXtypVA377A77+rb79yBfjhh5xZU0X1otg578BHRERERERE9F/HUIok4cfDAeQUOocMiAiM0NrW3T2nuHmtWurbf/kFGD4c2LGj6Oc3snm+fI934CMiIiIiIiL6z+Pd90hSs11NnF9xPueJABy8HbS2nT8/7+2NGgHvvAPUqVP086vuwJcIY+DBg6J3QEREREREREQVBkMpkrh2d4Wd3gPcz6yGxh/Ugmt31yL38eGHOY/iUC3fS4IxcOdO8TohIiIiIiIiogqBy/dIjaHIuetdNXerV37uFzWljIHQ0Fd+fiIiIiIiIiJ6dRhKkZrs7Jxb6Okq9bW2efoUsLPLWaqXmf9N+orEqEqumlIMpYiIiIiIiIj+0xhK0QtCIEvkhFI6BnKtzR49Av75Jyc30ntpAWhiIuDiApiaAmlpRTv9i+V7RsDdu6WbeBERERERERHRa4U1peiFrCxkQRcAoKtUaG1WvTpw4UJOAPUyIyPg3j0gPR14+BCoUaPwp1eFUmkwQEamDPKICMDJqShXQEREREREREQVBEMpeiE9PVcopX35noEB0KxZ3vtkMuDECcDCAqhatWinV5gqoKvQRVZaFhJhhEqhoQyliIiIiIiIiP6juHyPXihkKFWQli1zlvDJta8AzJNMJlO/Ax/rShERERERERH9ZzGUohcyMl6EUobal+9dvQr88gtw7VrpD0FXkXP+W3BhKEVERERERET0H8ZQil5IT0f284+ErkL7ys4dO4C+fYF16/Lef/UqsHZtzjK+ori17xbibscBAE6jLW6deVS0DoiIiIiIiIiowmAoRS/kWr6nI9f+0ahRA2jXDqhXL+/9u3YBI0cC27YV7fThx8MBmeqZQMTd7KJ1QEREREREREQVBkMpeiH38j19Xa3Nhg0D/vgDGDUq7/0NGgDduwNubkU7fc12NQGheiaDQ8K1nNv4EREREREREdF/DkMpeiF3ofN8QqmCvPcesHev9tBKG9furvCa7QUAMEUCXMVNIDy82OMgIiIiIiIiotcXQyl6IXcoJS9+KFUSDQY0AAAkyYwgIGOxcyIiIiIiIqL/KIZS9EIhZ0q1bAk0bAjculX6QzCrYQYduQ6yhC7iYcpQioiIiIiIiOg/iqEUvVDImlLXruXcYU8uz3t/ejrg7AyYmADx8UUbgo6eDirVqgQAiIMlQykiIiIiIqL/s3ff4VGV6RvHvzOTQhJCCL1DaKH3Lkixg4INxC723lfXsqurrm1/a3ftig2xgYAFsQCCSO8t1IQQAklISEhInZnfH29mkpBCykwm5f5c17kyc+bMOS+aMnPP8z6vSB2lUErcnNnZOE4RSjmd8McfsHAhtG1b8nkCAiAhAdLT4fDhio+jabemACTTBHbtqvgJRERERERERKTG8/P1AKTmcGRmu29b/UvOKy0WGDLk1Of69Vdo3Bg6dar4OMK7mkqpozSB3TsrfgIRERERERERqfEUSombPTPHfbsqq+8BDB1a+ecWVEo1hdhYyMqCBg2qNB4RERERERERqVk0fU/cHOUIpWJjYdYs+PNP742jSbcmACRbm5n5gnv3eu9iIiIiIiIiIuITCqXEzX6i0PQ9v5K/NVauhCuvhEceKftcmzfD22+baXwV5aqUSnE2xoFFzc5FRERERERE6iCFUuLmmr5ntTiwWCwlHhMWBuPHn7qv1Pffw223maqqimrUvhG2ABt2p400whRKiYiIiIiIiNRB6iklbvbsXABsVmepx5x9ttlOpV8/mDIFBg2q+DisNivhncNJ2pnEUZrQWKGUiIiIiIiISJ2jUErcXJVSNg/Uz51/vtkqq0m3JiTtTCKZpnRRKCUiIiIiIiJS52j6nrjZM/MrpWylV0pVF3ezc5po+p7Ub9u3w/33Q2qqr0ciIiIiIiLiUQqlxM2RkweUXSk1Ywb07w8//eTdsTTpWiiUiouDEye8e0GRmmrGDHj5ZXj/fV+PRERERERExKMUSombPctUSlltpR+zY4dZWS8np+xzORzQvTs0bAgJCRUfi2sFvqPW5mbHnj0VP4lIbbdxI6xebW5v3+7ToYiIiIiIiHiaQilxc4VStjJCqffeg4ULYeTIss9ltcKxY5CRAYcPV3wsrul7Kc7GOLDCrl0VP4lIbffOOwW3d+703ThERERERES8QI3Oxc2enQfYsPlZSj2mb1+zlcfChdCoEXTsWPGxhLUPwxZow54NqYQRrr5SUt+kp8PnnxfcVyglIiIiIiJ1jCqlxM2eYwfAZis9lKqIQYOga1fw96/4cy1WC+GdwwE1O5d6avZsOH4cOnUCiwWSkyEpydejEhERERER8RiFUuJmKqUotVIqI8MUbixaVD3jcfeVUigl9ZFr6t7tt0OHDua2qqVERERERKQOUSglbvacskOp2Fi46iqYNq1859u6Fd5+G37+uXLjcfWVSqapQimpX9avh7VrISAArrsOevQw+6OifDosERERERERT1IoJW4O1/Q9/5K/LSwWmDABRo8u3/kWLYLbboOPP67ceApCqSZw5AikpVXuRCK1jatK6uKLoXlziIw091UpJSIiIiIidYganYubq6eU1a/kUCoyEn77rfzn69MHpkyBoUMrN54mXfNDKVtzsAN79phGVSJ12fHjMGuWuX3zzearq1JKoZSIiIiIiNQhCqXEzZ7rAMDm75lG52efbbbKcvWUSnGE4cCKdfduhVJS933xhVl5r3t3GDfO7NP0PRERERERqYM0fU/c3KvvBdh8PBKjUbtG+DXww+G0coww9ZWS+sE1de/mm82cWSiYvrdvH+Tk+GZcIiIiIiIiHqZQStzsea5KqZK/LV58Efr3hzfeqNh5nU6zVZTFaiG8SzigZudST6xda5qcBwTAtdcW7G/dGkJDwW6HvXt9Nz4REREREREPUiglbgXT90qulNqzBzZvhpSU8p3P6YSePaFhQ7NyX2W4+0rRxFxcpC57913z9ZJLoFkzAKLmR7Hw/p+Janm6eUx9pUREREREpI5QTylxc+SaciZrYMmh1MMPw6WXQkRE+c5nsUBGBpw4AYcPQ4cOFR+TawW+ozSBzYvMCnyNGlX8RCI1ndMJX31lbuc3OI+aH8XsKbPBAqucQ5nOHiIVSomIiIiISB2hUErc7HkmlLIFlPxt0aWL2Spi/nwz66h9+8qNydXsPDmoHWQ6YMUKOPfcyp1MpCbLzITUVHN78GAA9i/eb+7nT3+NphORanYuIiIiIiJ1hKbviZu7p5QHG50PGGCCrICAyj3fVSmV7NfS7Fi2zDMDE6lpkpPNVz8/M+cVCO8cXuSQTkRr+p6IiIiIiNQZCqXEzW7Pr5QKLLlS6ttvYeFCMx2vurgqpY6d8MeOFZYvr76Li1QnVyjVpIl71b3jh467H27cLoRIoiAqqnIrB4iIiIiIiNQwCqXEzZ5nvlpLCKWcTrj8cjjvPEhKKv85t2+Ht96C77+v3JhC24Ti18APhx1SaQyrVkF2duVOJlKTuVYQCDfVUU6Hky2fb3E/nH40G6fFCseOQUKCDwYoIiIiIiLiWQqlxM1uN19tgf7FHsvJgTFjoH9/aNq0/OdcsgRuvx0+/LByY7JYLe4V+I42ijCB1Nq1lTuZSE1WuFIKiPkjhrTYNALDArEF2MjLzCO1XW9zjKbwiYiIiIhIHaBQStwcZUzfCwyE336DjRshJKT85+zdGy66CEaNqvy43H2lOg0yO9RXSuqik0KpzZ9tBqDX1F7un4HEln3MMWp2LiIiIiIidYBW3xM3u930sbE1KF4pVVljx5qtKlxvyDcktacxkUSqr5TURa7pe02akJeVx/avtwPQ76p+ZB/LJnFbIknBHegGqpQSEREREZE6QZVS4mY3i+95NJTyhJz0HACOHHIwm8uJWhIPDoePRyXiYa5KqfBwdn2/i+y0bBq1b0THMR1p1rMZAIkOE9CqUkpEREREROoChVLiZnfkV0oFBRR7bP586NcP7r+/cud2Oiu/YFhWSpb7tgUH0RnNYevWyp1MpKYqNH3PNXWv75V9sVgt7lAqKTX/Z1OVUiIiIiIiUgcolBI3h6P06XsHDsCWLRAbW/Hz9u9v+lDt3l25cfWa2st924mVTkSrr5TUPfnT904ENmb3j+aHpf/V/QFo3rM5AEkHs3AC7N8PWVklnUVERERERKTWUCglhtOJ3WlCKWuD4pVSF18MP/8MDz1U8VNnZprtyJHKDa3nRT1p0a8FAEOGQCRRoL5SUtfkV0ptj/LDkeug1cBWNO9lwqimkU3BApkp2Zxo1NqUHe7Z48vRioiIiIiIVJkanYuRl4cdGwC24MBiD7dpY7bK+PZbUynVrl3lh9fzop4kbE4gu7EJp1i2zLwxt1gqf1KRmiQ/lNq82lRA9buqn/sh/yB/GndqzLH9x0hsO4CQtHgzha9PH58MVURERERExBNUKSVGTk5BKFVCT6mq6NsXOneGgCqctsPoDgAc2JUF/v4QFwfR0Z4ZoEhNkJxMCuHEbk/HYrXQZ3rRwMk9hS+si9mhZuciIiIiIlLLKZQS4xSh1O+/w8KFkJRU3QMz2g5vi8VqIfVAGml9Rpmd6isldUlKCosZD0CLvi0IbRNa5GH3CnzWlmaHmp2LiIiIiEgtp1BKjNzcMkOphx6C886DVasqfuqdO+HNN2Hu3MoPLzA0kFYDWgFwoO1Is1N9paSuyMsjKrUVWzBT9o5sOkLU/KKVUO4V+DKCzA6FUiIiIiIiUssplBIjJwdH/reDLbB4q7GePWHAAGjduuKn/vNPuPNOeO+9qg2x/ej2ABxw5jenUqWU1BXHjrGPCPddi81C9JLoIoe4p+8dsZsdUVGmr5qIiIiIiEgtpVBKjELT96z+xb8tPv0UNmyAQYMqfupevczqfWPGVG2IHU4zfaViD+Q3N9+5ExITq3ZSkZogJYU2HHLfddqddBrXqcghrkqptMOZZFuD4PhxiI+vzlGKiIiIiIh4lEIpMQr3lAqwefTUI0eaFfgeeaRq52l/mqmUOrItiewe/c1OTeGTuiA5mXbEAebnb/q86UROjixySFB4ECEtQwBIapu/Mp+m8ImIiIiISC2mUEqMwj2lPBxKeUqjto1oHNEYp8PJwS5jzU6FUlIXJCeTiekVFdomtFgg5eKewte0h9mhFfhERERERKQWUyglRuFKKf+ioVRUFPTtCxddVPXLVLUFjmsK34GALmaH+kpJXZCcTCYNAAhqElTqYe5m54FtzQ5VSomIiIiISC2mUEqMMqbvHT4MW7fC9u2VP3337hAcDLGxVRlkQbPz2CPmDTzr18PRo1U7qYivpaS4K6UahDco9TB3KJXTyOxQpZSIiIiIiNRiCqXEyM0tWH3vpFCqd2/46Sd4553Knz4jAzIzq96XvMNoUyl1cGMS9gGDwG6Hjz6q2klFfK3Q9L2yKqVc0/cSk/Kb/cfEeH1oIiIiIiIi3qJQSgBwZmdjxw8ovvpes2Zw7rkwblzlz79wIezda6YBVkXzns1p0LgBuSdyOXL+jWbn//5nwimR2io5maxyhFKuSqnkQ1mmsjE2tupzYkVERERERHxEoZQA4MjMdt/2RqPzvn2hc2cICKjaeSxWi3sVvgOhvSE8HPbvhx9/9MAoRXyknNP3QtuEEhAagNPuJJkmpgTx2LFqGqSIiIiIiIhnKZQSAByZOe7bJ4dS+/eb6XvbtlX3qErmmsJ3YPVhuOEGs/ONN3w4IpEqSk4mqxyNzi0WS8EUvtDOZmdVG7WJiIiIiIj4iEIpAcBeRij13XcwcSI8+2zlz79+vcmNfvut8udwcYVSsX/G4rztNrBYYNEiNX2W2qtwT6nw0kMpKNTsvGEns0OhlIiIiIiI1FIKpQQA+4mC6XtWv6LfFk2bwsCBEBFR+fMvWAB33QVffVX5c7i0GdIGW4CN9MPppDgbw/nnmwf+97+qn1zEFwpN3yurUgoKhVLWlmaHQikREREREamlFEoJUFApZbU4sFgsRR675hpT6fTMM5U//4ABcMklMGhQFQaZz6+BH22GtAHgwPIDcOed5oGZM+H48apfQKS6lXP1PSi0Al92qNmhUEpERERERGophVICgD07FwCb1TsreU2ZAt98A7fc4pnztR9tmp3H/hkLZ54J3btDWhp89plnLiBSXZzOIqFUWY3OoVClVKo/TiwKpUREREREpNZSKCUA2DNdoZSPB1JOHU4zfaW2f7udqO93wx13mAfeeMO8yRepLTIycObmlqvROUB4RDi2ABt5uZBKmEIpERERERGptWpJBCHeZs8y0/dstuKBzjPPwOmnwxdfVPeoSpedZnpgZSVnMXvKbKKaj4aQENi+HZYs8e3gRCoiJYVc/LHjB5y60bnVz0qTbk0ASKSZQikREREREam1FEoJAI6s0iultm+HZcvg8OHKnz85GTp0gIYNwW6v/HlcDq07VHDHAtFrEk3zKzDVUiK1RaGpe1Z/K/4h/qd8iquvVBLN4eBBVQeKiIiIiEitpFBKALBn5wFgtRV/7P774euvYdKkyp8/NNQUdGRkQEpK5c/jEjG+0FKAzvzpfK4pfN99BwcOVP0iItUhOZmsQk3OT15ooCSuvlIbGEBUdidITPTmCEVERERERLxCoZQAYHdVSpUQSg0ZApdeanqJV5a/P6xZA/v2QXh45c/jEjk5kmnfTnNXlTjsDujdG8aPB4cD7r1X1SNSO6SkFKy8d4qpey45J8x020RaMJvLifpsjdeGJyIiIiIi4i0KpQQAe46plLL5nbpKo7KGDIGIiJKDr8roeXFPRt4/EoC1b601O196ySRgc+dqJT6pHZKTySxnk3OX4weP59+yYMFB9JJo74xNRERERETEixRKCQD2bNPoyWYrHkqtXg3Ll8OxY9U8qHIYdNMgLFYL0UuiSdyRCAMGwJNPmgfvvFNNoKXmK9RTqkF4g3I9pcvZXfJvOXFipVOrLC8NTkRERERExHsUSglQ0FOqpEqpG2+EMWPM9LuqWLbM9CBfu7Zq5yksrH0Y3S8w8wrXvp1/4oceghEjIC0NZsww0/lEaqpCoVR5K6X6X9s//7e3hSl8R2TjI94bn4iIiIiIiJcolBIAHK7pe/7FQ6lOnaBbN2jcuGrXmDkT7roLFi2q2nlONuS2IQBs+ngTORk54OcHn3wCwcHw22/w5puevaCIJ6WkuBudl7dSymqz0qhtIwCakaSKQBERERERqZUUSgkA9hwzfc/qV/xbYv582LULhg6t2jWGDzcN07t1q9p5TtblrC6EdwknOzWbrbO3mp3dusF//mNuP/QQREV59qIinlKJSimAsA5hAKTSSKGUiIiIiIjUSj4NpZ577jmGDh1KaGgoLVq04MILLyTqFOHBzJkzsVgsRbYGDcpXXSCls+eaKW42f+99S9x8M3z9NUyd6tnzWqwWBt8yGIB1b68reOC22+CssyArC665BvLyPHthEU9ITiargo3OwUxdBUgjDA4e9MrQREREREREvMmnodTSpUu54447WLlyJb/88gu5ubmcffbZZGRklPm8Ro0aER8f795iYmKqacR1l6tSypuhlDcNnDEQW6CNQ2sPcWjtIbPTYoEPP4SwMNOt/Z//9O0gRUqSklJQKRVe/lCqUXszfS+VRhAXB3a7V4YnIiIiIiLiLT5NIBYuXMh1111H79696d+/PzNnzuTAgQOsW7euzOdZLBZatWrl3lq2bFnqsdnZ2aSlpRXZpDh7bsmhlNMJZ5wBEydCSoovRlY+wc2C6T21NwBr3irUkb1dO/jf/8zt556D//7XB6MTKUMVp++l0dhUAR5Rs3MREREREaldalRZTGpqKgBNmjQp87j09HQ6duxI+/btmTJlCtu2bSv12Oeee46wsDD31r59e4+Oua6w5zoBsPnbiuzPzYXff4effqr6NbZuhQ4doEePqp+rJIUbnm+etbnggSuugKefNrcffLAgpBKpCQqFUuVtdA6FKqUCmpkd6islIiIiIiK1TI0JpRwOB/feey+nnXYaffr0KfW4yMhIPvzwQ+bNm8dnn32Gw+Fg1KhRHCylp8ojjzxCamqqe4vVG7cSuXtKBRQNpaxW+OIL+OgjaNiwatcIDjbvmw8cqNp5SpORaKZ9Ou1O5l45l6j5hfqTPfYYPPKIuX3HHWYpQBFfy82F48crVynl6inlNOGUQikREREREalt/Hw9AJc77riDrVu3snz58jKPGzlyJCNHjnTfHzVqFD179uSdd97haVc1TCGBgYEEBgZ6fLx1jSPPhFLWk0IpPz+YPt0z12jXzrR2at7cTAu0WDxzXpfoJdFYrBacDlP1tXX2ViInR5oHLRb4978hIwNeew1uuAGCguCyyzw7CJGKOHYMBxayK9Ho3FUplZ4bSB42/BRKiYiIiIhILVMjKqXuvPNOvv/+exYvXky7du0q9Fx/f38GDhzInj17vDS6+sGelz9976RQypMCAmDoUOjUyfOBFEDE+AgTSOWf+8DyA+RlF1pxz2KBV16Bm24ChwOuvBLmzfP8QETKq9DKewANGpd/+l5ws2D8GpjPFY7TSJVSIiIiIiJS6/g0lHI6ndx5553MnTuX33//nYiIiAqfw263s2XLFlq3bu2FEdYf7lAqsGjxXEYG/PWX6QdV00VOjmT6vOkMvmUwgWGBpMWm8cfTfxQ9yGKBt96Cq64yq5VNnQrz5/tmwCKF+kkFhAYU6+lWFovFUnQFPoVSIiIiIiJSy/g0lLrjjjv47LPPmDVrFqGhoRw+fJjDhw+TmZnpPuaaa67hEVcvIOCpp55i0aJF7Nu3j/Xr13PVVVcRExPDjTfe6It/Qp1RUClVNJSKioJRo+CcczxznYUL4fXXYfduz5zvZJGTIzn/rfOZ/MFkAJY/v5z49fFFD7LZTJOsqVNNT59LL4XvvvPOgETKkpJClqufVHj5p+65uPtKEaZQSkREREREah2fhlJvvfUWqampjBs3jtatW7u3L7/80n3MgQMHiI8vCBVSUlK46aab6NmzJxMnTiQtLY0VK1bQq1cvX/wT6gy73YRS1pMqpSwWiIiAjh09c53/+z+4+25Ytcoz5ytNr0t60WtqL5x2J/NmzMOeYy96gJ8fzJplGmbl5pqA6ttvvTsokZMVqpSqSD8pl4JKKYVSIiIiIiJS+/i00bnT6TzlMUuWLCly/+WXX+bll1/20ojqL3t+ZmNrUPRbYuBA2LfPc9cZNw6aNIHqmG058Y2JRC+O5sjmIyx7bhnjnhhX9AA/P/j0U7PE4KxZpun5F1+YgEqkOiQnk1mJJucuYR1MpVQqjSA+3gSs/v4eHaKIiIiIiIi31IhG5+J7Dnco5d03tI8/Dl99BWec4dXLABDSIoTzXj8PgD+e+oM5V80han5U0YP8/OCTT+Dqq00yd/nlMHu29wcnApCS4q6UahBe/ibnLq5KqTRLY7Ok5aFDnhydiIiIiIiIVymUEqBQpVSAT4vnPK73Zb1pO6ItToeTLZ9vYfaU2cWDKVePqeuuM/8hrrwSPv7YJ+OVeqaK0/fcPaX8m5odmsInIiIiIiK1iEIpAcDusABgCwoosv/XX2HyZHj2WV+MquosFgst+7Ussm/Pz3uKH2izwQcfwI03gsNhAqrXX6+eQUr9lZzsbnRelUqpVEeo2aFQSkREREREahGFUgKYHAbA1qBoKLVvHyxYAKtXe+Y6ixZBu3Zw1lmeOV95dJ/Uvcj9mKUx5GbmFj/QaoV33oF77zX3774bnnnGTIsS8QYPVUpl5fmTQ4BCKRERERERqVUUSglQUCllPamn1Omnw3vvwW23eeY6/v4QFwcHD3rmfOUROTmS6fOm0/fKvvgF+ZG4LZFvp3+LI89R/GCrFV56CZ580tz/xz/gb39TMCXeUainVGVCqcBGgQSGBQL5zc4VSomIiIiISC1StxoISeU4ndidJp88efpejx5m85QhQ0zVVcuWpz7WkyInRxI5OZLopdF8ds5nRM2P4rNzPqNF3xZETIggcnJkwcEWCzzxBISFwX33wX//C6mp8PbbZpqfiKckJ5OF+QELCq94KAWmWiohNYE0wmiuUEpERERERGoRVUoJ5OZix4QttuCAUxxcNaGhMHQodOjg1cuUqtPYTlz65aVggf2/72fVa6tKbn4OZhrfhx+a6qn334eLLjLhlIinVHH6HhTqK0WYKqVERERERKRWUSglkJNTEEoFBRZ56OBB2LoVkpJ8MTDv6DGlB53P7GzuOAELRC+JLvngGTPgyy8hMNA01xo61PwHEakqp7PI9L3KNDoHCOtg+kpp+p6IiIiIiNQ2CqXkpFCqaKXUiy9C377wyiueu9zcufDaa3DkiOfOWVHD7hxWcMcJ6UfSSz/40kth+XJT3rV7NwwfDrNne3+QUrelp+PMy/NYpVQaYZCYCFlZHhuiiIiIiIiINymUkqKh1EmNzoOCoHlzaNzYc5d7+GG45x7Ytctz56woV/PzDmPMPMKts7ay/PnlpT9hyBBYt84sG3jiBFx+uek3lVvCKn4i5ZGcTB7+2PNb+1U2lHKtwJdqDTc7qnMVARERERERkSpQKCWQm4sj/1vBFli09/0LL0BCAjz4oOcud+65MG2a6S/lS5GTI5nxxwwm/HsCAL898hsr/rui9Cc0awY//QSPPmruv/KKmc739tuQkuL9AUvdkpJCJmbKnsVmIaBh5fq5uSulbE3MDoVSIiIiIiJSSyiUkiKVUlZ/739LvPaaadM0YIDXL1UuYx4dw7h/jQPglwd/Yea4mSU3Pgez+t6//23mIDZqBJs2wW23QevWMH26Ca3y8qpt7FKLndTk3GKxVOo07p5S9hCcoL5SIiIiIiJSayiUkqLT9wJsPh6Mb4z951h6TesFQMzSmNJX5HO58ELTX+q//4U+fSA72yRtEydCp07wzjsKp6RsyclkuUKp8MpN3QNo1M5USuU5bCbkUiglIiIiIiK1hEIpgdzcUkOpf/4TrrgCVq/2xcCqV2jrUChUrPLni3+W/YQWLeD++2HzZtNv6u67oWlTiIuDW2+Ffv3Min1Op3cHLrXTSZVSleUX6EdIixAAUglTKCUiIiIiIrWGQikpWinlXzSU+uUX+OILiI/33OU++QTatYMbbvDcOT0hYkIEOHEHU7F/xvL7P37HeapQyWKBQYPg1VdNIPXqqyac2rEDJk+G8eNh7Vqvj19qmZQUj4RSUDCFL02hlIiIiIiI1CIKpaTM6XsPPAAvvwx9+3ruck6nyW7i4jx3Tk9wrcg34t4R9L+2PwDLnlnGL3/75dTBlEtgoKmY2rPHLDMYGAhLl5qG6I8/rqopKZCc7G503iC8QZVO5Wp2nkojhVIiIiIiIlJr+J36EKnzcnIKVt87KZS69FLPX27iRFM41Lq1589dVZGTI4mcHAlAmyFt+Omun/jrv3+RuD2Rpt2bEjEhwv14mRo3huefh9tvN2HUp5+aBuk2G/zrX979R0jt4KHpe1A4lAqD2HVVHpqIiIiIiEh1UKWU4MzJwZ6fT1bH6nvNm8PgwdCmjdcvVSXD7hzGBe9fAMCen/aw6rVVp26AfrIOHcx8xVdeMfefesqEUyIpKe5G51WtlAprX2j6XkoKpKdXeXgiIiIiIiLeplBKcGRmu2+fXCm1axdER0NubjUPqoYYdMMgup7b1dzJn3lXoVDK5Z574MUXze3HH4f//MczA5Tay4OVUu6eUn5NzI69e6t0PhERERERkeqgUEpwZOa4b58cSg0eDBEREBPjwes5YNYs0w88K8tz5/WWIbcNKXJ/21fb2P/7/oqf6G9/g2eeMbcfesj8B5D6yxvT92z5oVRUJYJTERERERGRaqaeUoK9cCh10up7wcGQlwdBVXvPXITFAtdfD9nZcOGF0LGj587tDa4G6FELoohZEkPynmQ+PftTBlw3gICGAeXvMwXw2GPmH/7003DvvRAQALfd5tXxSw2VnExWfqPzoPAqVkq5pu/lNMCBBatCKRERERERqQUUSgn2EwXT907uKXXkiOevZ7HA5Mnmq7WW1Oq5GqDnZubyw60/sOmTTWz4YANYYNWrq7jsu8voMaVH+U72r39BTg688ALccQd07gznnOPdf4DUPCkpHquUati6IRabBacd0mlII4VSIiIiIiJSCyiUEuxZplLKanFgsViq5ZpffVUtl/E4/yB/psycwrGYY8QsjXH3mZo3Yx7JjyXTsGVDDq07RMT4MqqnLBZ47jlISoIPPoDp02HNGujatfr+IeJbOTmQnu4Opara6Nxqs9KobSNSD6SSRphCKRERERERqRVqSZ2KeJM903Qxt1mdPh5J7WCxWBh5/8j8O+ZLVkoWvzz4C3OvnsuqV8uxSp/FAm++CSNGwLFjZh6jVkyrP1JScGApmL5XxUopKNRXikamp5RTP88iIiIiIlKzKZQS7FmuUKro/sREuPpquPNOHwyqhnP1mRpx7wgumX0J579zPiEtQsyD+VnA4n8uJiMho/STBAbCt99Cq1awbRvMmKEgob5ISSGbBrhSzar2lIKCvlKplsZw/DgcPlzlc4qIiIiIiHiTQilxT9+z2YoGIkePwmefweefe/6azz8PbdvCk096/tzVJXJyJOe8dA59LuvD4JsHc8F7F5gH8qunjmw6wmtdX2P588vZ9vU2Ft63sHj1VJs2Jpjy94dvvjH/YaTuS04mM79Kyj/Ev9iql5XhqpRKC21ndmgKn4iIiIiI1HDqKSU4XJVSJ70vbtYM/vOf4vs9IScHDh0yW13hqp6KXhJNUNMgds7dSfy6eH575DcALFYLq15ZxfR504v2mxo1Ct54A265xazO178/TJzoo3+FVIvkZI81OXcJ65C/Al9QK0gDdu2CceM8cm4RERERERFvUCgl2LPzgOIr4TVrBg8+6J1rzpgBkyZB+/beOb+vuFbpAxjzyBi2zNrCD7f9QE56Dk6HE4vVQvSS6OJN0G++Gdatg3ffhSuugNWroXt3H/wLpFokJpLlCqU8MHUPTuopBaqUEhERERGRGk/T98QdStn8qmflPTBh1ODB0KJFtV2y2lmsFvpd1Y/JH05273M6nAQ1KyWEeO01UzWVmgrnnw8pKdU0Uql2CQmer5TK7ymVkOJHFJEKpUREREREpMZTKCXYs0uevpeRAbGxZnE4qbzeU3sz9ZuphHUyocHyZ5cTuyK2+IGBgTBnjknsdu+GqVMhN7eaRyvVIjHRHUo1CG/gkVMmbEsAIC8HZnM5UevLaLIvIiIiIiJSAyiUklIrpRYuhA4d4IILPH/N9HTTQP3ttz1/7pqo1yW9uHPHnXQ+szO5Gbl8ft7nxK2OK35gy5awYAGEhMBvv8Hdd2tFvrooIcHd6NxTlVLx6+Ldty04iD7cwDRvExERERERqaEUSgn2HDtQPJTKyzOLwgV55j1zERkZcNVVcPvtYLd7/vw1kV8DP6bPm07HsR3JTsvm4wkf8+2V3xZfka9/f5g1CywWk9q9+aZvBizeU6hSylOhVMSECPdtJ1Y6OffD3r0eObeIiIiIiIg3KJQSHKWEUpddZgotFi70/DWbNjULg02fDllZnj9/TeUf7M8V319Bsx7NyM3IZeusrcyeMrt4MDV5Mrzwgrl9zz3w88/VP1jxnoQEd6NzT03fi5wcSYcxHQDo3+QAkUSpr5SIiIiIiNRoCqWkYPU9v5K/HU5elc8T/Pxg8WJTEBQS4vnz12QBDQPoNKFTkX37ft1X/MAHH4TrrgOHA6ZNg+3bq2V8Ug28UCkFBdVS1sZagU9ERERERGo+hVKCPdcBgM1f3w7Vpes5XYvcT9iagPPk3lGu6XujR0NaGpx5JuzcWY2jFK9wOouuvhfuuVCqaWRTAI7mNTY7FEqJiIiIiEgNphRCsOfmT987KZSaN8/0fPrmG1+Mqm6LnBzJ9HnT6XlJT7BA9OJo1ry5pviBgYEwdy707Qvx8WbO444d1T5e8aD0dMjOJsvDjc4BmkU2AyDpWP5SmgqlRERERESkBlMoJdhzSq6U+usveOstWLHCO9d96ilo0waee84756/pIidHMu2baZz9f2cD8PN9PxPzR0zxA5s1g99/h3794MgRE0xpKl/tlZAAQKYlGPBsKNW0u6mUOpFmN6v77drlsXOLiIiIiIh4mkIpKZi+F2Arsv/MM+GJJ+Ccc7xz3ZwcU/xz8KB3zl9bjLhvBH0u74Mjz8GsC2Yx/8b5xRufu4KpAQNMqDFuHGzd6ovhSlUlJgK4p+95qtE5mH5loW1DAThKM0hKguRkj51fRERERETEkxRKCY680kOpJ5/0Xih1002wbp2pmKrPLBYLk9+fTFinMHLSctjwwYaSV+Rr2hR+/RUGDjTBxoQJsGWLbwYtlZeQQC5+5Dn9AM9WSkFBtVRSeDezQ1P4RERERESkhlIoJdhzTYNt60mhlLd17AiDBpmspb7zD/YnYnxEwQ4L7F+8v/iBrmBq0CATTI0dayqopPZITCQrv0rKYrUQGBro0dO7m503yv9+UiglIiIiIiI1lEIpwe6qlPL3K7L/2DGz5eVV/5jqox4X9ii444SsY1klH9ikiQmmRoyAlBRTyvbOO9UzSKm6hATT7wmwBljZ9b1n+z65mp0ftbUwOxRKiYiIiIhIDaVQSrDnh062wKKVUlddBeHh8Mkn3rluTg7MmgX//S84HN65Rm3iWpGv47iOAGz6eBO7f9xd8sHh4bB4MVxxhUkNb70V7r1XCWJtkJhIFN0BsGfZS56qWQWuSqmkE6aRukIpERERERGpqRRKCXZ7fqVUoH+R/dnZ5msDz/VhLubKK+HBB+HoUe9dozaJnBzJtb9fy8AbB4ITvr38W5J2JpV8cIMG8Nln8Mwz5v6rr8IFF0BqavUNWCouIYGDtHfftdgsRC+J9tjpXZVSyUedOLAolBIRERERkRpLoZS4K6WsJ1VKLVpkgqlp07xz3YAAmDKloNhHDIvFwqQ3J9FhdAey07L5YvIXZKZklnYwPPYYfPMNBAXBwoUwciTs3Fm9g5byS0ykEfnBoQWcdiedxnXy2OnDOoZhC7Rhz3WSSmPYswfsdo+dX0RERERExFMUSon7/erJlVIWiwmO/PxKeJKHfPcdfP45tG7tvWvURrYAG9O+nUZYhzCSdyfz8fiPWXjPwtKneV1yCSxfDm3bwo4dMHiw9+ZdStUkJBBKBgDNezVn+rzpRE6O9NjprTYrTbo2AeCofyszTzY62mPnFxERERER8RSFUoLDFUo18C/7QKlWIS1CmD5vOrYAG0c2HWHV66vK7j80aBCsXQsTJsCJE3DttTBjBmRkVO/ApWwJCWQQApjpmp4MpFxcU/iSmuafe5dnm6mLiIiIiIh4gkIpIb+lFLbAoiVRTz4JDz0EBw96fwxOp/evURu1GtCKzmd3NnecgAX2L95fxhNamXmXTz0FVivMnAlDh8LWrdUxXDkVpxMSE92hVEiLEK9cxtXs/Ghwfu8q9ZUSEREREZEaSKGUFEzfO6lS6u234T//geRk7137f/8zU/fuvtt716jtBt80uOCOE1L2peAsK8Wz2eAf/4Dff4c2bcx0vqFD4a23lP75Wmoq5OYWhFItvRxK2cPNDoVSIiIiIiJSAymUEhwOCwC2oIAi+++6Cx54AFq29O71Dx+unmqs2ipyciTT500n4swIAHbN38Vvj/xWdjAFMHYsbNwI554LWVlw++1w3nkQF+f9QUvJEhMByLCGAt6rlHJP30vLD5oVSomIiIiISA3kxRbWUlvY80Mpa4OiodRjj3n/2hdfbBaLa9/e+9eqzVy9h9b8bw0/3vEjf77wJ8f2H6Nhm4ZEjI8ovS9R8+bwww/w+uvw97/Dzz9Dnz7w5ptw+eWmm71Un4QEADJoCHh/+t7xFDs5BBCgUEpEREREpGZKTob162HdOrOtX296BTdu7OuRVQuFUvWd3Y49v2DOFlT9jc5btTKblM/Q24diz7Xz870/s+2rbWCBVa+sKnsFN6sV7rkHzjkHrr7a/IK78kqz9OH//gfNmlXrv6FeS0zEgZUTjkAAGrZs6JXLBIUHEdw8mBOJJzhKU1ofOgTHj0NoqFeuJyIiIiIi5XD0aEH45NpKWil7/XqzgFU9oOl79V1uLnZsANiCAt27HQ7zHjYvz1cDk9KMuGcEHcZ0MHdczc9/L6P5uUuPHrBiBfzrX+DnB19/Db17w5dfqtdUdUlI4ATBgAUsENQ0yGuXck/ha2SmfWoFPhERERGRapSYCAsXwr//DZdcAp06mYKAc86BRx+Fb78tCKS6dIFp0+CFF+DXX2HYMF+OvFqpUqq+KxJKFUzfO3oUWrQwt/PyTO9sb/niC9NT6uabISzMe9epS0Y9OIoDyw6YO06I+SOG7LRsAhsFlv1Ef3/45z9h0iS49lrYtg2mT4fPPzdVU+3aeX/w9VmhlfeCmwVjtXnvc4Em3ZtwYPkBjoZ1hbQVsHMnDB586ieKiIiIiEjFJCQUr4CKjS352K5dzety1zZoUL2ZqlcShVL1XU5OiZVSWVnma0CAdwMpgHvvNT/DZ50FAwZ491p1hav5+YYPNrBn4R4ObzjMh6M/5IofriCsfTmSvcGDzS/K5583yf2CBbBkiUnmb7nFTPkTz0tIID0/lPLW1D0XV6XU0QZtzY7Vq820TRERERERqbwjRwqCp7VrzdfSFpPq3r1oADVwoCoxTqJQqr7LycFRQk+pdu0gI6MgnPKmKVPgxAkI8t5MpjrJ1fz80LpDfHH+FyRsSeCdAe/Q5dwu9LmsT+k9plwCA+GJJ+DSS+HGG2HlSrNC36xZ8PbbZmqfeFahSilvNTl3cTU7T8ptZHYsX+7V64mIiIiI1DmFAyhXCFVSAGWxlBxANWpU/WOuZRRK1XeFp+8FFJREWSwQHGw2b3v3Xe9foy5rM7gNN6y8gY/GfERabBpbZ21l66ytZTc/L6x3bxNY/O9/8Mgj5vaAAXD//WaqX4h3w5N6JSGhYOW9lt797+qulEqwm9ZjGzeq2bmIiIiISGkKT8FzVUAdPFj8OIsFIiNhyJCCAGrAAL3OriSFUvVdoel7Vn9N2aqtGndsTPfzu7P2rbXufYufWEzXc7sWCRtLZbPBXXeZsrW774Z58+DFF03Dr9deM/stFi/+C+qJxEQyMM3avF0pFd45HIvNQu6JPI6360Wjg9tNNdxZZ3n1uiIiIiIiNV5iYtHwqbQeUK4AyhU+DRmiAMrDFErVd4V7ShUKL/bsgQ8/hPbt4bbbqmcoTqdyj6roem5XE0pZACcc2XiEj07/iKlfTSWsQznnLXfoAN99Z3pM3X23WQ3iootMY/RXXzWrQkjlJSSQgVkNz9uhlC3ARnjncJJ3J3O0x2gTSi1bplBKREREROoXVwBVuAqqtADKNQXPVQU1cKACKC9TKFXflRJK7d4Nzz1nFgLwdij11Vcm/xg1CubM8e616jJX8/PoJdH4N/RnzRtriFsVxzsD32HYXcPISs0iYnxE+ab0XXABnHGGaYL+n//ADz/AL7+YKX2PPqpfzJXhcEBSUkFPKS9P3wMzhS95dzJJLXqYKEx9pURERESkLktIgA0bilZBHThQ8rHduxedgqceUD6hUKq+K9xTyr8glOrQAe65B9q08f4QAgNN/7iSputKxbianwMMun4QX0/9mkNrD7H0X0vBAqteWVX+XlPBwSaUuuoqkxr++qtZrW/mTJNYXnONVumriGPHIC+v2hqdQ36z8+/hqLWl2bFyJeTmgr9/2U8UEREREanJ7HZTSbFpE2zcWPA1Pr7k4ws3IR8yRAFUDaJQqr4rpVKqd2945ZXqGcLYsSbMbtu2eq5XXzTu1JgZy2fw3rD3SNicAE6zf8e3O8oXSrn07AmLFpkpffffD3v3wowZ8OabZkrfqFHe+QfUNYmJAGRYQsFZjaEUcDTJAU2bwtGjsH49DB/u9WuLiIiIiHjEsWOwfXvRAGrzZsjMLH6sxQJduxafghdWznYmUu0UStV3OTk4MNUu5WqI7QWNG5teceJ5foF+THh6ArOnzHbv2/LFFloPac2wO4dhKW8TL4sFJk+Gc84xjc+fftqUw552GlxxBbzwArRr56V/RR2RkIATSM+vlGrYsqHXL+lagS8p6qj5fzV/vpnCp1BKRERERGqa5GQTPm3fDtu2Fdw+dKjk44OCoF8/6N/fvKEcMAD69oWG3n+dLZ6jUKqec+bkYM//Nii8+p7dbnIIzc6q/Vy9pnb9sIv4tfHEr49n4d0L2fjhRtoMaUP3C7qXv3IqMBD+9je4+mp47DH46COYNcs0R//73+HBB80fBykuMZEcArE7Tfgb3DzY65d0VUodiz5G3o2n4ecKpR54wOvXFhEREREpUUJCQeBUeDtypPTntGljwqfCAVTXrmYVcanVFErVc47MHPftwpVSL70EDz0E118PH3zg/XHMnWtW/Js+3az4J57l6jXldDpZ8781/HzfzxzeeJjDGw+z/v31XPbdZfSY0qP8J2zVynxj3H67aT7255/wz3/C++/Diy/CtGlaSvFkCQnuflL+If4EhAR4/ZIhLULwC/Yj70Qe65I6MhxMKKWlLkVERETEm5xOOHy45PApKan053XsCL16Fd169tT0uzqsSqFUdnY2gYGBnhqL+IAjM9t9u3Ao5Zqe61dNseVTT5npwb17K5TyJovFwrA7hhG3Oo7Nn2x27194z0JaD2xNWIcK/rIfPBiWLTNLKP7tb2Zli+nT4eWXzap9Y8Z4+F9QiyUmVuvUPYBdC3aRdyIPgIUv76Sxfx8ik7ZCVBT0qEAIKSIiIiJSGrsddu6ENWvMtnGjCZ+OHSv5eIsFIiIKAqfevc3tHj20ync9VKHI4aeffmL27NksW7aM2NhYHA4HISEhDBw4kLPPPpsZM2bQpjqWaxOPsZ8oFEoVWn3voYfg1lurb5Gu884zv4uaNaue69V3vS7pZUIpC+CE1JhU/tfnf/S7qh+2ABsREyLKP6XPYoHLLoMLLjBB1IsvwqpVcPrpMGWKWbFPAUiRSqnqaHIOsH/xfvf/YywQ3WI4kXFbTbWU/p+IiIiISGWkpprXk3/8YVZ3Xr8e0tOLH2e1QpcuJnByBU+9ekFkpFnpW4RyhlJz587l4Ycf5vjx40ycOJGHH36YNm3aEBQURHJyMlu3buXXX3/l6aef5rrrruPpp5+mefPm3h67eIA9K9d9u3BPqQYNzFZdnn22+q4lBX2mopdE06RrE7Z8voXYFbGsfWstAKteXcX0edMrtkpfcDA88QTcfDP8619mKt+8efD993DjjfDkk2baX32VmFjtoVTE+AhWvbLK3HFCp1Gt4WvMi4gbb6yWMYiIiIhILXf0qJkdsXSpCaI2bgSHo+gxISEwaBAMHWpmU/TpA927V++bSqmVLE6n03mqg0aOHMnjjz/Oeeedh7WMztdxcXG8/vrrtGzZkvvuu8+jA/WUtLQ0wsLCSE1NpVGjRr4ejs+l/d+7vPy3eKwWB/9w/MvXwxEfcdgdfHLGJ8QsjXHvazuiLdctvg6/BpWcw7ljBzzyiAmmwPyhevBBs9XHFTEmTGDpYgdLGM+gmwZxwbsXVMtl17y1hh9v/xGrv5VHvh2C3+SJ0Lkz7N1bLdcXERERkVomIcGET0uXmm3LluLHdO1qZkacdhoMG2am4anpuBRS3uylXO82//rrr3JdtG3btjz//PPlG6HUCPb8Rue2k7LGOXPMtOCzz4YhQ6pvPA6HVvzzBavNysj7R5pQKn+6V9zKON7u/zaT3ppExISIip+0Z0+zKt+yZabf1KpVpoLq7bdN1dQNN1Tf/NCaIDGRDDoA1VcpBTDk1iEs+ecSTiSdID4ogvZWK+zbZ5bW1XRrERERkfrNboetW+Gvvwq23buLH9ejB4wda7bTT4e2bat/rFInVbmNtd1uZ8uWLXTs2JHw8HBPjEmqkWv6ns1atGBu9mz4+mvTZ646QqklS0xboogIMy1Zqp9rSt/+xfux+dvY/Olmju46yidnfELHsR1pGtmU7pO6V2xKH5hm53/9Bd9+ayqn9uyB226DV16Bf/8bLrqofiSRCQlk0BOAkJbVF0pZLBban9aeqHlRxG5Mpn2/fqbk+s8/YerUahuHiIiIiPhYdrZpQL5xI2zaZLa1a0vuB9W3b9EQqkWLah+u1A8VDqXuvfde+vbtyw033IDdbmfs2LGsWLGC4OBgvv/+e8aNG+eFYYq3OLLzQylb0VDqjDOgUSMzFbg6hISYKtH6VDhTE0VOjnSHTmMeG8Pvj//OmjfWELM0hpilMax/dz3TvplGz0t6VuzEFgtceilMngzvvmuWW4yKMvv69zeVU1OmmOPqIocDkpKqvaeUS4fRHYiaF8WB5QcYNWaMeSGybJlCKREREZG6KiGhIHhyhVA7d0JeXvFjGzaE4cNh5EizjRgBTZpU+5AFNs7cyM65OxkwYwA9LqwfCxNVOJT65ptvuOqqqwBYsGAB+/fvZ+fOnXz66ac89thj/Pnnnx4fpHiPPdMVShXdf8stZqsuffrAhg2aTVSTNAhrwMTXJ5KZlMnW2Vvd++ffNJ+A0AC6nN2l4icNCIA774RrroH/+z9TLbVpk6mWGjjQhFMXXFD3wqnkZHA4fBpKAcT+GYvz8tOwvP66aXYuIiIiIrVbXp6Zble4+mnTJoiPL/n48HDzoXD//jBggGlO3ru3+kFVM6fT6Q6g/IP9yUnPIfbPWLKOZQEQNT+q4gtP1VIVDqWSkpJolb+C1o8//sjUqVPp3r07119/Pa+++qrHByjeZc/OBSw+nz0VFGR+J0rN0+fyPmydvRWL1YLT4SQrJYvPzvmMtsPa0rxXc3pc1KPivywbNTLVUvfeC//9L7z2mkklp0wxq3U8+SRMmlR3wqmEBADSLaHghIYtq7fRe+tBrfFr4MeJpBMcbd2XZmBerKSlmf8XIiIiIlLzpabC5s1FK6C2boWsrJKP79rVvMkqHEK1a1d3XmPXEjvn7WTXgl2EtAzBarMSvy6eA38eIDs1u9TnWKwWopdEK5QqScuWLdm+fTutW7dm4cKFvPXWWwCcOHECm9LVWseenQf4Y/PTLyYpmavXVPSSaNoMacOhtYdY9eoq4lbHEbc6jo0zN3Lp7EvpfVnvip+8SRPTV+q++0w49frrsG6dqZYaOtSEU+edV/v/cCYmYsdGltMsiVvdlVK2ABtth7Ul5o8YDuzOolnnzqbZ+cqVZjUDEREREak5nE6Iji469W7TJti/v+Tjg4OhX7+i4VPfvvVzxWsfcwdQLUKw2Czs+XEP8etLqVpzsUDHsR3pdm43fv37r1hsFpx2J53GdaqWMftahUOpGTNmMG3aNFq3bo3FYuHMM88EYNWqVfToUT/mPNYl7lDqpDyxf3+zYvxPP5k+1dXhp5/MaqOTJpkKUqk5Cvea6ntFX04cPcHmTza7H593wzwcdgd9Lu+DpTIBUrNm8NxzcP/9ZlrfG2/AmjXmm2H4cBNOnXNO7Q2nEhI4QTAAFpuFoCZB1T6E9qPbE/NHDLHLYxk0erQJpZYtUyglIiIi4ku5uab5+IYNZtu40WxpaSUf365dQfDkCqG6dNH0Ox9wBVDBzYOx2qzs+enUAVTzXs0ZctsQck/k8uvDBQHUyPtGEjk5kmY9mxG9JJpO4zrViyopqEQo9eSTT9KnTx9iY2OZOnUqgYGBANhsNv7+9797fIDiXSaUolil1PHjkJEBflVen7H83nwTfvjBFM8olKrZel3Si82fbHZP6cvNyGXOlXP445k/aDWwFX0u61O5X6LNm8MLL8ADD8B//mO+KVatMtVSgwfDww/DxRfXvj+6iYmku/pJNQ/BYq3+cK3Daaav1IE/D8DfRsMnn8CiRfD009U+FhEREZF6KT29oPrJFUJt3Qo5OcWP9fc3b4oKVz/16wdNm1b3qAUTQEXNjzIVUFYLe37aw+ENh8t8TvPezWl/WnvWv7veHT6d8dwZ7vdJzXoUD6AKFwPUF5WKHC699NJi+6699toqD0aqnz3HDoDNr2hTqb/+Mr8zq7Px+BlnmECqU6fqu6ZUTuEpfe1HteforqMs/ddSknYkkbQjia2ztjL5w8kMnDGwchdo0cKEUq5w6q23zLS+adPM3PgHH4Rrr4UGDTz7D/OWhASfNTl3aTeyHVggeXcy6SOvoaHNBqtXm1UQI+vXHz4RERERr0tMLAieXNvu3WZq3skaNTKh08CBZhswAHr2NIsESbWKmh/F/t/306J3Cxo0aUD8ungTQG08dQDVYXQH1r2zriCAetYEUN0ndS+x+qk+BlAlqVQotWbNGhYvXkxCQgIOh6PIYy+99JJHBibVw5FTcqVUy5Zmq0733Ve915OqOfmXaMq+FDZ8uAHy/84uuGkBKftSOO2h0wgMDazcRVq1Mr2m/v53M6XvjTdgzx649VZ44gm45x647TZo3Ljq/yBvSkz0eSgVFB5Ei94tSNiaQOyuLHqee64pTfz4Y3j2WZ+MSURERKTWc/V/Khw+bdwIcXElH9+6dUH45No6dcLnK0/VQycHUFu+2MLOb3ee8nnNezenw5gOrHu7eADVbWI3VT9VUIVDqWeffZbHH3+cyMhIWrZsWaR/TKV6yYhPuSqlrGp0LlUUOTmSDR9scE/pc9qdLHtmGevfXU/Pi3tiC7ARcUZE5af1/etf8Le/wQcfmKAqNhYefdT0orr1VrOSX3WW9lVEQgIZmEaTIS19E0qB6SuVsDWBA38eoOe115pQ6tNPzRS+2jYlUkRERKS65eXBzp3FA6hjx0o+vlu3otVPAwdW/yf/AhQEUM17NycoPIgts08dQAU3DyZySiQ2Pxtr315bPIA6TwGUJ1iczpLqB0vXsmVLXnjhBa677jovDcm70tLSCAsLIzU1lUZaCp2Nw29h3uo2dO3px5XbHwPA4TC9phs0gJtvrv4ZUna73h/XVlHzo4heEk3HsR3BCb889AvJu5OLHHPZd5fRY0oVF0XIzYXZs03/qW3bzL6AALj6ahNc1bTpaOPG8cvSAFZwGiPuG8E5L53jk2Fs/nwzc6+aS9thbblx6VXmk7pjx+CXXyB/0QoRERERAU6cgM2biwZQW7ZAdnbxY/39oU+folPw+veH0NBqH3Z9FzU/iv2L99NpXCda9mtJ/Lr4cgVQIS1CaDmgJfsW7XOHT9PnTXcHTK73OfWpAXlVlTd7qXCllNVq5bTTTqvS4KTmsOea6Ze2gIIUKCvL9JMGmDGj+kKpbdtgwgQIDIQDB6rnmuJZJ38y0G1SNz47+zOil0S79/105080ateINoOrUNXk728CqCuvhB9/NOHU8uWmiuqDD0xj9HvugbPOqhml0AkJZGD+u/hq+h4UNDuPXx9PrsOG/2WXwTvvmCl8CqVERESkvjp6tGjl04YNpu/mSa1qAGjYsGj4NHAg9Oql/k8+4AqgOo7pSNPuTdnw4QZWvrwSgFWvrCr1eSUFUBe8dwGRkyNLDZ9UAeU9FQ6l7rvvPt58801eeeUVLwxHqps9t+RG59dea8KpoGpcub5xY0hIMFVSqpaqG2z+NkbcN8KEUhbACWkH03hvyHt0HNuR8C7h9JjSo/K/4K1WOP98s61YYcKpBQvgp5/M1qMH3HUXXHONeQHhK4mJZDAI8O30vbCOYYS2DeV43HHiVsfR6dprTSg1Zw7873/6NE9ERETqNqcTYmIKgifX19jYko9v2bJo+DRgAHTpUjM+9KxnXAFUmyFtCG0TypbPt7Dhgw1A6QGUxWqh1cBWBDUNKncApfCp+lV4+p7D4WDSpEns2rWLXr164e/vX+TxOXPmeHSAnqbpe0X91eM6FkVF0HdkQy5e8YBPx2K3mxVR27SBZs1ALcrqDtcv/Oa9mhOzNIbNn20u8niVVuo72Z49piH6hx/C8eNmX1gY3HAD3HknRER45jrlZbeDvz/vOm8injZc/v3ldJ/UvXrHUMg3079h25fbGP/0eE5/bIyZ6rh7N3z0EdTSadkiIiIixeTmwo4dRQOosvo/delSvP9T69bVNlwxXOFTuxHtCI8IJ3FHIlHzotg5t+zpd1Z/K026NCFpZ5K7x+20b6bR85Ke7vNq+l318tr0vbvvvpvFixczfvx4mjZtqubmtZwj12SShafv+YrNZqZeS91T+BOHQTcOwmF3sPWLre7HF9y0gCObjjD676Np2KqKFU1du8Irr5jm3TNnwuuvm9DlpZfM/smT4e67Ydy46kk+jx4Fp9O9+l7Dlj6s2ALan9aebV9u48DyA+bff+218PjjZgqfQikRERGpjY4fh02bCoKnDRvMp905OcWP9feH3r0LgqcBA8ybkLCw6h2zEDU/it0/7aZxp8YENQli14Jd7FqwC4BVlD79LrBRIM16NiNuVZw7gJr61VR6XNhD0+9qoQpXSoWGhjJ79mwmTZrkrTF5lSqlivqj49UsPtCVQWc14YJFd/l6OFJPRM2PYvaU2e4/Ii7WACst+7Zk+D3D6X+1hxJKhwMWLoRXX4VFiwr29+1rKqcuv9y709a2bsXZty//5h/YsXFvzL2EdfDdi574DfG8O+hdAhsF8lDyQ1jjDppliJ1O2L/f3BYRERGpiZxOOHy4+PS7PXtKPr5RIxM6FQ6g1P/JJzbP2kzUd1EENwvG6mclekk0CVsSynyOf7A/bYe3xS/Ijz0/7nG/d3A1IFf1U83mtUqpJk2a0KVLlyoNTmoOe17xSqm1a+GMM6B7d1izpnrHs3gxrF4NY8bAqFHVe22pPpGTI5k+b7p7pT7/YH9+vPNHknclE78unu+u+Y6o+VGc//b5BDcNrtrFrFaYONFsO3aYyqmPPzarp9xyCzzwAFxxhbk9aJBn/oGFJSaSTQPsmJ8xXzY6B2jZtyUBoQFkp2WTsDWBVv07wPjx8Pvv8Omn8I9/+HR8IiIiIoBZ5W7nTrMCnmvbuNE0oS1J27ZFw6eBA82Hber/VK22fbmN7XO2u8OnxG2JxK+PJyslq8znhXUMo2X/luyav8sdPl3yxSVlrn6n6qe6ocKh1JNPPskTTzzBRx99RHBwFd8sis/Z8/JX3wss+FY4cQLS0gra8VSnOXNMO6CHH1YoVdcVW6nvvG6s3rPaXTm145sd7P15L90mdiOoSRBdz+1a9T86PXuaht7//rfpofTOO7BrF7z7rtmGDDHh1PTpnmuMnpDgnroX2CgQvwYV/rXrUVY/K+1GtGPfL/v4+b6fGXHvCCKvucaEUp98YqbyaVq2iIDpx3LkCKSmFt2aNzfL5ep3hYh4gtMJBw+a0GnLloIAKioK8vKKH2+1mp6YhQOoAQPM7yapVjvm7GD7t9tpENaAvOw89v+6n9QDqWU/yQKtB7Wm/aj2rH59tbv5+HmvnafV7+qpCr87eu2119i7dy8tW7akU6dOxRqdr1+/3mODE++z5/+eLxxKDR1q/gb4wumnm96Dgwf75vriOxETIlj16ir3H6awTmGkRqey7cttAKx9ay0XfnKhZ6b1hYfD/ffDfffB0qUmnPr2W1MmuHateezKK01ANWBA1a6VmEh6fijl6yopl+Bm5gOF6CXRRC+OZvrsKUSGhJjS9xUr4LTTfDxCEfG5o0fNm73SVqS6+WYT8mupXBGpiPR00+vJFTy5QqjSmo83bmxaLvTrZ74OGGC+qjii2kXNj2Lfr/to2LohToeT7V9v58imI6U/wQKtBrZi2B3DOHH0BL8+9Kv7df7Yf44lcnIknc/srOonqXgodeGFF3phGOIrdrupSrEGFHwrBAWZqXu+MHWq2aT+KTylr9O4TnQ/vztfTP6C3T/sdh8zb8Y8Dq05xMgHRtK4Y+OqX9RiMQ3Px42DxEQzre/dd01j9LffNtuwYebN12WXVa56qlClVE0Jpdx9vJxgsVmIXnWEyEsuMZVSH3+sUEpE4NlnTSBls5k3hWFhZmvYEJYvN78rU1PN7w31ZhGRk6WlmbYJO3bA9u0FX/ftK/l4mw169CgIn/r1M1u7dqrK9KHcE7kcXHmQde+tY9vsbWUe23ZYWzqf2Zllzy5zh0/jnhjnDpiaRTZTACUlqnCj89pOjc6LWhB6OevTezDulm6MffsKXw9HpIjSGqJbbBY6jOlAWLswek3t5dk/Zk6naW72zjswd66ZvgIQEmIS0+uuMyV95XmBlJoKF1zAmmVZ/MgkelzUg8vmXOa5sVbSznk7+fLCL933p8+bTmTDONNMrlEjiIkxb0JFpH6KjjZTY3JyzEIR55xT9PGvvzbVpLm5cN558M03qloQqa+OHi0aOrluHzxY+nNaty4aPPXrZwKpwMDqG7eUKDM5k5WvrGTPwj3kHM8heW8yjlxHseOadGtCp/GdWP/uencApebjcjKvNTpfs2YNDoeD4cOHF9m/atUqbDYbQ4YMqfhoxWccdvPV1qBgGubWrfDHH9CtG5x1lm/GlZEBfn7621TfndwQPaBhAH8+/yf7ft1HzJIYADZ/tpkznz+T0x72UHWPxWJ6pUyYYBppzpwJ779vqqdmzjRb585w7bVm69ix5PMsXQrXXAMHDpDBeKDmVEr1mNKD3tN6s+2rbbQe1Nq8YHB0Mz23duyAp56Cl17y9TBFxFcef9wEUmecAWefXfzxqVPNqqUXXww//WSO+f57hdkidZVrxbuSwqfSmo6DCZ969jSr3fXsabY+fdT7qYbIy8pjzVtr2P39bpxOJ8fjjnN019Fix4W2CSW8SzgHlh1wB1Bn/9/ZRE6OpPuk7qp+kiqrcKXUsGHDeOihh7j00kuL7J8zZw4vvPACq1at8ugAPU2VUkXNCbycLTk9OPuh/ox84UIA3nwT7rwTLrnEfPhZ3caPhyVL4OefS34tLPLtFd+ydfZWKPTbq8OYDnQa14nstGwiJkR4vnpqxQoTSH35ZcEqAK4A67rrzJuz4GDzRu6f/4QXXzTP69yZH/o/ytq5Bzn9H6cz/qnxnhtXFRzdfZQ3ur+BxWrh/kP307BlQ/NDd+65JhHessV8aiki9cuGDQUrka5bV/aqpH/+CZMmmarQAQPM75AWLaplmCLiBQ6HmbZbUvhUWs8nMB/QucKnwgFUeHi1DV3Kln4knbVvr2Xfr/uw2qycSDpB4o5EKF4E5WaxWuh/bX8mfzAZi8WiCiipMK9VSm3fvp1BJbxAGThwINu3b6/o6cTH7A4zBalwpVREhAmkRo70zZjCwszX/ft9c32p+fpM78PWL7a6P62x2CwcWHaAA8sOALDq1VVM/WYqvS7p5ZkLWiymz9Jpp8Err5hlImfONCvW/fab2W6/3fSdWrfOvKkDuP56eOUVMq77CYCQljWjUgqgabemtB3elrhVcWz9Yisj7h1hpuhccAEsWGCawP/4o/o4iNQ3Dz1kvl5xRdmBFJjfiUuXmk+QNm40v0OWLjXTgEWk5rLbTW+nk8OnnTvNdIWSWK3QpUvx8KlHD8+tWCxV5shzsPbttez+YTd+QX7knsjlyKYjpB9OL/uJFoicEkmvS3ox9+q57tfYPS7sgSX/taAqoMRbKhxKBQYGcuTIETp37lxkf3x8PH5+FTvdc889x5w5c9i5cydBQUGMGjWKF154gcjIsr/Zv/76a/7xj38QHR1Nt27deOGFF5g4cWJF/ymC+UAEwBZU0KR04kSz+crrr8MHH0DTpr4bg9RsJzdFbz24NbOnzCZ+Xbz7mLnXzCVpRxJDbh3iXm3OI0JC4OqrzRYdbRqDz5xpbr//vjmmaVPTBPjiiwHISDAv8GrK9D2Xflf3I25VHJs/3WxCKYD//tf0kFm40IRSkyb5dpAiUn0WLYJffzWNy595pnzP6d8fli2DMWNMMHXRReZ3h+bfi/heTo5pP3By+LRrF2Rnl/wcf3+z4tHJ4VP37tCgQfWOX8qUdSyLNW+tYe+ivVj9rGSlZHFk85ESe0AVYSkImObfMN8dQA2cMZDIyZEENgpURZRUqwpP37v88suJj49n3rx5hOWXtBw7dowLL7yQFi1a8NVXX5X7XOeeey7Tp09n6NCh5OXl8eijj7J161a2b99OSEjJb95WrFjB6aefznPPPcf555/PrFmzeOGFF1i/fj19+vQ55TU1fa+oWZar2E03Jr88loH3jvP1cEQqzdUUHQtFpvVZ/a0069GMIbcOYejtQ71zcYfDNGL75BPT+PeFF6BNG/fDb0S+wdFdR7l2ybV0GtvJO2OohBNJJ/hv6//iyHNw+7bbad4rv8fDQw/Bf/5jGstt3aqVtUTqA4fDVEZt2mQqJSvaV279ehg71iz3Pm0afPGFqawQEe87cQKiooqHT3v2mKqokjRoUDDNrnD41KWLCaakxnA6nKTsT2H9++uJXhwNTjMdLzUmtewnWiBiQgQTnplA6oFUvrnsGzUll2pV3uylwqFUXFwcp59+OkePHmXgwIEAbNy4kZYtW/LLL7/Qvn37Sg86MTGRFi1asHTpUk4//fQSj7nsssvIyMjg+++/d+8bMWIEAwYM4O233z7lNRRKFWK386nfDPbRhYveOot+t47y9YhEqsT1h7XD6A7kZeex+B+LSdmb4n689eDWnPnCmURMiHCXIleH5xs/T3ZqNnfsuINmPZpV23XL44vJX7BrwS5GPzKaM549w+xMSzOfiB45Av/3f/DAA74dpIh436efmsUZwsJg797KlSv/+qsptc7Nhbvugldf1RRgEU9KSyve62n7dlOtXdpbutDQgsCpcPjUsSPYbNU6fDm13Mxc1vxvDXt+2oMtwEZ2WjZHNh8h53hO2U+0QLdJ3eh+fnd+uPWHYuEToABKqp3Xekq1bduWzZs38/nnn7Np0yaCgoKYMWMGl19+Of5VTNVTU03a26RJk1KP+euvv7j//vuL7DvnnHP47rvvSjw+Ozub7ELlqWlpaVUaY52Sk4Md88fIFlxQZv/QQzBrlvl6993VP6zcXNO2Z9cueOMNzQCQ8jt5rnvcqjhWv74ap8O8UItfF8+nZ35Ky34t6Ti+Izig85mdvfqHOS87j+xU8zuopk3fAzOFb9eCXWz5fAsTnpmAxWox/WCee870xHrqKbjqKmjZ0tdDFRFvycoyK+4B/P3vlZ8/f+aZpmL08svNXPzWreGRRzw3TpH6Iimp5PApLq705zRpAr17Fw+f2rZVOFxDZaZksubNNez9ZS8Wi6XM5uOukAlMA/Kel/Qk8sJI5l5Z0P9p8E2DiZwcSWjr0BLDJ/WEkpqqwqEUQEhICDfffLNHB+JwOLj33ns57bTTypyGd/jwYVqe9OaoZcuWHD58uMTjn3vuOf71r395dKx1Rm5uQShVqKdUYqL5m5eZ6Zth+fmZ98Hp6XD//ebvqUhlREyIYNWrq9x/rLtO6krM4hiObD7Ckc1HAFj9+mou+vQi+l3VzytjOJF4AgCrn5UG4TWvF0P387sT2CiQ1AOpxPwRQ6dxncwD115rluJctw4ee6ygX5aI1D0ffwwHDkC7dnDPPVU71/Tppsry3nvh0UehVSuYMcMjwxSpU5xOiI8vOXxKTCz9ea1bl1z51Ly5wqcayul0cjzuOGvfXsv+3/bjdDpJP1y+6XddzunC2f93NkejjvLVJV+5X9P2u6qf6f/UsHj/J4VPUtuUK5RauXIlI0aMKNcJT5w4wf79++ndu3eFBnLHHXewdetWli9fXqHnncojjzxSpLIqLS2tSlMM65TClVKFQqmnnzZV961a+WZYFou5vr+/qTgWqayTG6JHTo4kMyWTLyZ/QezyWPdx3133HQeWH6Blv5Yc3X2UiPERHvtjnn7ErHYS0iKkWqcMlpd/kD+9pvZiwwcb2PzZ5oJQymqF114zq2t9+KEJqcaM8elYRcRL5s41X++8E4KCqn6+e+4xb7ZfeAFuusm8WT7//KqfV6Q2cjhM6FtS+JRaRijRsWPJ4VPjxtU2dKk4h93BunfXsWvBLvwa+JGTnsPhDYc5kXSi7Ce6mo9PiWT+9QXNx4feNpQWvVvQoneLYq9pQQGU1A3lCqWuvvpqOnfuzI033sjEiRNLbEK+fft2PvvsMz766CNeeOGFCoVSd955J99//z1//PEH7dq1K/PYVq1aceTIkSL7jhw5QqtSEpTAwEACNf+rZDk5ODBNSG0NCqZetmtnNl969lnfXl/qjpP/WAeFB3Ha305j9vLZWKwWnA4nTruTde+sMwdYYNUrq7hs7mX0uLBHla9fU1feK6zf1f3Y8MEGtn+9nfNePw//oPzfB6NGmR4zn3wCU6bA8uXmRbGI1B3Hj8Pixeb25MmeO+9zz8Hhw6YKa9o0+O03GDnSc+cXqWny8mDfvuLh044dphF5SaxW01j85PApMhIaNqze8UuF5WXnsebNNez+aTc2fxtZx7KIXx+PPbuE5vKFFuKxWC30vLgnPS7qwZwr5xSsfne9Wf0uuGmwpt9JvVKuUGr79u289dZbPP7441xxxRV0796dNm3a0KBBA1JSUti5cyfp6elcdNFFLFq0iL59+5br4k6nk7vuuou5c+eyZMkSIiIiTvmckSNH8ttvv3Hvvfe69/3yyy+M1AudiitUKWX11wo5Un8UrqDqOLYjQeFBzJsxj5R9Ke4XDN9d9x1jnxjLgOsGEBRe+coBdyjVsuaGUh3HdCSsQxipB1LZtWAXvacV+lDhrbdMg7eVK+Hcc2HFCt+n1iLiOYsWmWXju3aFHlUP4t0sFnjvPTMN6ccfTaXU8uWaky+1X3Y27N5dPHyKijI/SyXx9zcLiJwcPnXrZlbBkxovKzWL1W+uZt/P+7DYLGQezSRha4K7b2mJ8le/O+O5MzgWfYxvphWsftfvajP9LqBhgKqfpN6r8Op7a9euZfny5cTExJCZmUmzZs0YOHAg48ePL7NBeUluv/12Zs2axbx584iMLPjBCwsLIyi/fPyaa66hbdu2PPfccwCsWLGCsWPH8vzzzzNp0iRmz57Ns88+y/r168vsReWi1fcK2b2b17q/QQpNuH7F9bQfaaY1zp8Px47BhAm+fe+ZmWk+ZC1HVilSZVHzo5g9ZXaRT7IArAFWmnVvxsAbBzLinvJNYy7su+u+Y9PHm+g4riPXLb7OY+P1tN8e/Y3lzy2ncURjzn3l3KIvhpKSYPRo84K7Tx/44w8ID/fdYEXEc667zlQz3XcfvPSS58+fkQFnnAGrVkH79vDXX6bxskhNl5YGO3eawMn1dccOszqlvYRKGDDTX3v0KB4+de5sgimp8ZxOJ5s+3sTO73YS0DCAvKw8Dm84bD64LIsFup7blW6TuvHTnT9p9TsRyp+9VDiU8qTS+qt89NFHXHfddQCMGzeOTp06MXPmTPfjX3/9NY8//jjR0dF069aNF198kYkTJ5brmgqlCtm2jZf7fEAaYdy09ibaDG4DwNChsHYtLFjguxYQGzfCoEFmwa/4eN+MQeof14uFdiPakXUsi2XPLivShLJZj2aMfWIsPS/uiS3g1Msou4OufIVfmNQ0q99czU93/uS+X2ysMTFm6k18vOkttWiRPt0Vqe3sdtNAMinJTOEbN84711GwLTWVq9l44dDJdfvQodKfFxpatM+T63bHjmZKntQKToeTde+uI2pBFH5BfuSm53Jw5UH3qsmlskDkBZF0n9ydBTcuKBZAKXwSMcqbvVRq9T1PKU8etmTJkmL7pk6dytSpU70wonqmcKPzQm+wR40yq0G3bu2rgUGnTuZ1QlaWqZjyRN9VkVM5uVw6cXsiq19f7S7NTtqZxLeXf0vDVg3pOLYjAaEBRF5Qcol17olclj611H3fYrUQvSS6xr44Sd6TXFAlZqH4WDt2hIULTSC1bBlceSV89RXYTh3OiUgNtXKlCYwaNzaLGnhLs2bw888m2N661fSo+/ln/XGX6uPq93Ry+LRzZ9nNxlu1MqFTjx7mq+t227Za6a6WycvK7/+0cDe2ABvZqdnEr4snLyuv9CdZoMPoDox9Yizp8enMvXpuQf+nG0z/p5DmIZp+J1JFPg2lxMdycwtCKf+CN5avvuqrARVo3BgSEszrWP3NF1+JmBDBqldXuV+A9J7em5ilMaTHp7Pty20AbHh/A6f/43TGPjEWq818Orrvt318f8v3pOzNL/W2mE/j3Cvb1UAR4yNY9coqc8cJwc2Dix/Urx/MmwfnnANz5sAVV5ieMfW96lSktpo/33ydOLHEqUVR86PYv3g/EeMj6H5BdzISMtj08SaObDlC76m9K/amyxVsn366CbYvvhi++w60GI14UkaGqcg7OXzavbv0fk9Wq5leVzh0cn3VSne10ubPN7Nz7k4CGwXiyHVweONhErYngKOMJ+X3f+pyThd+fehX92u/UQ+OovMZnQEIbBSoAErEC3w6fc8XNH2vkOXLeW7Mj+QQyN177ya8s0rpRU52cgm2PdfO7Atns+fHPUWOC+sQRvvR7Tmy8QiJ2xMBCG0byoBrB5CbmVsrSrij5kfx++O/k7AlgdaDW3PT6puwWEtIhb/5BqZPN1N/unSB2bNhyJDqH7CIVE2vXuZN+xdfmJ/pQnbO28mXF37prqC0Bdiw5xTto1OpVUqXL4ezzzZl0BddZCou/fQZqVSA3Q6xsWYRjt27zVdXEBUTU/rzXP2eTq566tZN4Wgt5XQ62fD+BnbO30lASAB5mXkcWHGAzKTMsp9ogS7ndKH7pO78dFfx/k+afifiGbWip5QvKJQq5PffeeaMxdjx477Y+2jUrp7/9xApJ1evKNeLGP8Qf3Izcosc03ViVy794lICG9WuF7oZCRm83u11stOyufDjC+l/Tf+SD1yxAi6/HA4cMBUWzz8P996rXhoitcWePebNuJ+fWSHvpIqQ2RfOJmpeVJmnaNK1CbduvhX/oAo2cP7lF9O0MifHVFx+8ommAktRrl5PrtCp8Nc9e0qvegJTZl9S1VOHDvobVYvlZeex9q217P5pN36BfmSnZRO3Jo68E2VPv2s3sh1jHhlDRkIG82+YrwBKpBp5radUVlYWDdTctk5wZmdjz/8WsPoX/JF2rQj9++/Qpo0vRmasXg0ffmgq/h95xHfjEDlZ5ORIps+b7n4R0/msznx50Zfs/XkvYPpHNYtsVusCKYCQFiGMeWwMvz78K7898hs9L+lJQEhA8QNHjTIrEtx4o5nK98AD8NtvMHMmNG9e3cMWkYpasMB8Pf30YoGUw26muwDuSqlJb00iuHkwX1/6NRarBafDSfKeZD4981Omz59OcNMSpvyW5qyzTMXlxRfDrFkQHAzvvqv5+vXR0aPFQyfX14yM0p8XEABdu5pgtXt389UVPjVrVn3jF49z2B2sf289u37YRWBoII48BwlbEkjalXTK6Xcdx3aky9ld+P3R393h0+iHR9P9/O4ABDcL1vQ7kRqowqFU48aNGTZsGGPHjmXcuHGMGjWKIDWqrJUcWQWVHa5G506nqYAG339oefAgvPOOWQ1QoZTUNCe/iBl6+1D2/rzX/SKoJvePOpXhdw9n7VtrORZ9jBX/t4JxT4wr+cDwcPPG8u23zXLyP/5o3hQ89BDccQeEhFTruEWkAlyh1OTJxR7a+sVWUmNS8Qv2Y8C1A+h6blf37ztXIB/ULIi//vMXsSti+XDUh4x8YCSJOxKJGB9Rvjd4F1xgAqnp0+H9900w9corCqbqGqcTjhwxTcZd2549BcFTcnLpz7XZzMo3rtCp8Nf27X3/QlWqxOl0kh6fzrr31rH/t/3Y/G1kpWZxZMsRHDllpU+Y6Xdnd6HreV35+d6f3a+9Rt43ksjJkbTo3aLE6icFUCI1U4Wn7y1fvpw//viDJUuWsGLFCvLy8hgyZIg7pDrrrLO8NVaP0PS9ArmzvubZK7cD8Ej6IwSEBOB0wpo1ptXDqFEl9j2tNjExpodyv34wbZrvxiFSXnWpBHzb19v4Zto3+Af7c+euO2nU9hS/LzdvNtNwtpkG8LRoAQ8/DLfeat5sikjNkZJiKhrtdti71zR5zpeXncebPd7kWPQxJjw7gTGPjCn1NAnbEpg1cRapB8zqZSdPiymXjz+G664zt++80wRTChtql8xMiI42gdPevUUDqP374cSJsp/frl3JwVNEhKmIklrn5EUSTiSeIHFHIttmbyP2r1gceQ7S49PJTD5176cOozsw5rExHD90nPnXa/qdSG1SLT2l8vLyWLNmDe+88w6ff/45DocDu91+6if6kEKpAlnvf8YLN5npRo9nP+6ulhIRcTqdfDTmI2L/jKVZz2ac+fyZp36xl5dnKh/+9S/zZgTMctoPP2zedGoVI5Ga4YsvTIjcuzds3VrkoVWvr2Lh3Qtp2Lohd++5G//gsj+dOn7oOG8PeJsTiSZ4sNgsDL97OOe8dE75x/P223Dbbeb2pElmfKGhFfoniRc5nXD4cNGwqfB26FDZz7daTWVT585m69KlIHzq2lUfXNRyrgCq09hOtBrYio0fbWTpv5a6p/4GNAwgJ72MHmAuFug+qTvdJnbjh9t/KDHkVgAlUrt4racUwK5du1iyZIl7y87O5vzzz2fcuHGVHa/4gL3Q9L3CPaVERCwWCz0u7EHsn7Ek7Uhi9pTZp65+8PODa64xDdA//RSeftp8en7fffD3v5uVtq67Ds48U5UQIr40f775esEFRXZnH8/mj6f/AGDsP8eeMpACCG0Tynmvnce3l38LgNPupHnvCvaVu/VWU7l11VXwww8wZgx8/72poBHvczpNs/uYGPM7u/BXV7VT5ikqWho1Kho6uW537mwajKviqU6Imh/Fvt/20SyyGQ1bN2THnB1s+WwLAKteWVX04Pyyh5z0HLBAYGgg2cezwWl6b/a5vA89LuzB11O/dgdQg24aROTkSELbhmr6nUg9UuFQqm3btmRmZjJu3DjGjRvHww8/TL9+/bCoB0CtY880n1pYLQ73/7+0NPM6MDS02GtVn8jONq+HQkLMaxoRqT5pcWnuTzoBdszdUb4Xg/7+cP315g3mzJnw+uumGmP2bLO1aQNXX23m5Q4cqB4yItUpNxd++sncPqmf1MqXV3Ii8QRNujZh4A0Dy33KPtP74Mhz8NPdP5GVksWKF1cQeUEkIS0q0FfukktMNc3kybBpEwwbZvpeDR5c/nNIyRwOU+l0cuDk+hoTc+rQyWo1L8QKh02FtyZN9Lu8jtn29TZ2freThq0a4h/sz/7f9nPwr4NlP8kKjdo2Ii224PXDOS+fw+CbB7Pv131FVi7uPa13sYVj1HxcpH6q8PS9AQMGsHPnTgYNGuQOpkaPHk1wLSm91fS9AilPvc5rTyTjb3PwaN6/ANMOpk8fs3BJYqKPB4hpL/Hmm2b2z/PP+3o0IvVL1PwoZk+Z7b4f0iqE2zbfRkjzCjYwdzphwwYTUH3+edHGtq1bm+k6kyaZCqqGDT0zeBEp2e+/wxlnmMqk+Hh31WJGYgavdXmNnOM5XDL7Evpc1qfCp06NTeXD0z4kLTaN1oNac+3iayu+CmlMjPl9sG2bmdb10UcwdaoCj7Lk5UFcXOmB04EDkHOK6VMWi/l93KmTWfbY9bVwtZMvG42K12yetZld83YR3CIYv0A/knYkcWjtITISylj9ELNab7OezYhZGuNekXPat9PoeXHPUqfZafqdSP3i1Z5Sx44d448//mDp0qUsXbqU7du3M2DAAMaPH8+///3vKg3c2xRKFUh69L+8+Vw6DfztPJzzFGAWRLn1VlOFPWeOjwcIvPYaPPYY3HIL/N//+Xo0IvVP1Pwodv+4m51zd5KRkEG7Ee245vdr8A+q5JuT7GwzPeezz2DRoqJLfgcEmGk748aZbehQCKzgG1oRKdt995lm4jNmwIcfund/MfkLdi3YRXjncO7afRcWa+VCoKSoJD4a8xEnEk/Qok8LOo3rROezOlfsDWhqqqmkXLTI3D/3XDPmyHr6JjYnB2JjSw6coqPNcsWn6ulqs5npkIUDp8Jf27XT79s6zOl0kn44nfXvryf692j8gvzIy8rj8IbDZB3LOuXzW/RpQZthbdj44UY1GheRcquWRudHjx5lyZIlzJs3jy+++EKNzmuZhAde4K2XsghpYOfBzKd8PZwS5eaaNjX6gFTEt5J2JvHBqA/ISsmi58U9ufSrS7HaqtiLLjsbli41IdWCBaZvSWFBQTByJIwdC8OHm5CqSZOqXVOkPsvJMSHE4cMwdy5ceCEA699fz4KbFrgPq9DqeSWIXx/Ph6M/JC8zzz2Fp8LnzM2FJ580n0jl5JgXA/feC//4h/nkrC7JzCwImUqqdjp0yFSclsXf3/y/dW0nB09t25r/hlKnOewOUmNSSdyRyPavt3NozSGz0t2RdLJTs0/5/JYDWjLkliGcSD7B4scWK4ASkSrxWig1Z84cd4Pz7du306RJE0aPHs24ceMYO3Ys/fv3r/LgvUmhVIH4O57h3f/ZCQ3O4/6Mp309HBGp4WKWxfDpmZ9iz7HTfXJ3wjuHEzE+wjMvTJ1O2LkTFi+GJUvMVtIc4i5dTK+ZYcNMSDVwoFZuEimvWbPgyitNX7foaPd0rPeGv8eh1WYFtUqtnleCr6Z+xY5vdpg7Fhh+z3DOffncip9o9264/37T8BKgZUt45hmzoEJIBacS+8rx46UHTtHRkJBw6nMEBZUcNrlut2pl+j5JneZa6a7j6I407dGUpB1J7Jizg/h18eTl5JFxOIO8rLxTn8gCXc7uQuczO/PL337RSnci4hVeC6VatGjB6aef7g6h+vbtW+XBVieFUgUO3vAEH3xopXEjO/ek1sxKKRGpWbbO3upeZavSFRDl4XTCjh2mkmr5clizxrw5PZnNBn37moBq2DDTFLlnT2jQwLPjEakLRoyAVavgqadMxVG+Vzq9QmpMqrsvjCd+pk/uSdfv6n5c9MlFlT/hjz+aSinX74HgYDj/fJg+Hc47z3c/804nHD1qpteVFjwV7qNXmtDQ0gOnjh1NDzCVjdcrUfOj2LtoL+ER4QS3CCZqflRB0FsGW6CNgIYBZCZnule663tlXyInRxZZ6U7VTyLibdUyfa82UihVIObqx5j5WQBNw+3cmWxCqR9+ME3FR4+Gt9/28QDzPfusKZr45z/NuETEtz4c/SGxf8aaOxYYcusQJv1vkvcvnJwMa9fC6tUmpFq1Co4cKX6czWZ6z/TrV3Rr105v6qT+Wr3aTIMNCDCNr1u2BCBlfwqvdX4NrDDkliF0Pberx96YRs2P4q+X/yJmSQwAF316Ef2u6lf5E+bkmNU833oL9u4t2B8aalbtGz7chNK9epmm3VX9ec/NNc3g4+JM36bCX123Dx0yU5FPpUmTsiudGjfW76d6ytW7MaxjGMFNg0nckUjM0hgObzhc5vOs/laCmgSZhuT54VP/a/tzwXsXsPuH3UVWulMAJSK+UN7spVKTy+12O9999x07dpi0vlevXkyZMgVb/gouUjvYs/KAAGx+BS+CEhPNgjcdOvhuXCdbtQp++QWmTFEoJVITjPrbKL7880tzxwnbv9nOwOsH0mZIG+9euEkTOPtss4GpUDh40ARUq1ebbeNGSEmB7dvNNrugUoPGjQsCqr59zRvXnj2haVPvjlukJnj9dfP1ssvcgRRA1LwoADqd3snj4bJrWfdFDy7ir//+xbzr59GwdUM6n9G5cicMCIAHHjDT+datgy+/NFtsrFnZ8/PPC45t1Mj8fLdubab5ubaGDU1vpexss2VlmS0z0wTfSUmm8unoUUhLK//YWrQouYG4K3gKDa3cv1nqDKfTyYYPN7D7h90ENQ3CarNyYPkBEredernr0LahtOjbgr0L97orGqd+PRWLxVIkfOpxYQ+sNiuRkyOZPm96sQDK9TMpIlKTVLhSas+ePUycOJG4uDgi81dBiYqKon379vzwww906dLFKwP1FFVKFdg9+QFmLWhE61ZObo5/EjC9T7dvh7AwMwumJvjxR1MMMWYMdO3q69GICJhPdrd9tY19v+0j43AGtgAbA2YMwK+BHxETPNRnqjKcTlPBsGULbN5csO3caZZNL0nz5ubNq2vr0cN8bd9elQtSNxw+bD5tys014e3Qoe6HPh7/MdFLojnn5XMYce8Ir1ze6XDy7RXfsu3LbfgF+dHz4p70ntbbM78nHA5YudKUem/bZl7E7N1r9nuCn59pEt6uXelfW7c2gZkI4MhzkLw3mU0fbyLmjxis/lZy03NJ2Jpwyn5PYR3D6HlxT/Ky81j7v7XlqnRS9ZOI1FRem743ceJEnE4nn3/+OU3yV0E6evQoV111FVarlR9++KFqI/cyhVIFos69h9k/N6FdO7gh9glfD0dEaqGsY1nMmzGPnd/tNDu82WeqKrKzTTB1clB14EDpzwkJMQFVjx7QrZtJxV1bkyYKrKT2eOopeOIJ01Pqr7/cuzOTM/lPi//gtDu5e9/dhEeEe20Iedl5vDv43SJVIV77PZGdbXpP7dhhKp4yMopuubmmB1WDBhAYWHC7SRNTOVl4a9JEDcTFzdVoPGJ8BJ3P7ExSVBKbP9vMgeUHsNqsZKdmc3T3URy5pwhFLdBmaBs6nNaBlS+vVKNxEamTvDZ9b+nSpaxcudIdSAE0bdqU559/ntNOO61yoxWfsOfYAbD5642ViFROg8YNmDZnGjPHzeTAHwcg/2OOxf9cTNvhbWnYsqFvB+gSGAj9+5utsPR0iIoyb1537jRfd+wwb2gzMswUoXXrip+vceOiIZVr69ZNDYmlZsnJKWgSedddRR7a/eNunHYnLfq28GogBeAX6EfH0zsWCaV2/7DbO2+2AwOhTx+ziVSSK4BqM7QN4Z3C2fLFFta8sQYssOqVVWU+1xUymTvQbVI3up7TlZ/u+sn92OmPnU7k5Eg6jetUYvikqXYiUl9UOJQKDAzk+PHjxfanp6cToNLlWsUVSln9Cj4B3LoV9u2D7t1NcUBNcegQrFgBI0eaankRqTksFgujHhhlQqn8Sqkjm47wWpfX6D6pO0FNgzzaPNmjGjY0c5VPnq+cm2t+Ge7YYUKrPXsKtoMH4dgx03R97dri5wwNLRpUdeliest06mSmBOpvpVSnOXNMs+5WreDSS4s85OonVV0/m13P7cratwp+Zvb8vIfM5EyCmgRVy/VFShI1P4r9v++nZf+WhLUPI3FHInt+3MOehXtKfkKhOSa2QBv2bPN62mK10H1yd859+VwObzzMlxd96Q6gBt80mMjJkYR1CFOfJxGRk1R4+t4111zD+vXr+eCDDxg2bBgAq1at4qabbmLw4MHMnDnTG+P0GE3fK7Bx2M3MW9OWrr38uXLbowA8+CD897/wt7/Biy/6eICFjBtnVoZ/7z248UZfj0ZESuKaahDUJIhdC3YRtzquyOPnvXEew+4Y5qPReVBmpgmsdu8uGlbt2WOmA5b1Z9ViMcm6qwnyyVv79qbKQ8RTRo0yU/aefNJM4cuXl53Hf5r9h5z0HG5cfSNth1bPJz5R86PY+d1Odn63k6yULNoOb8s1v15DQEOFteJ9O+buIGp+FI3aNCKgUQB7f95L9OLoUz4voGEA4V3CObLpiLvR+IUfX0hgWCBfXvilpt+JiJTAaz2ljh07xrXXXsuCBQvw9/cHIC8vj8mTJzNz5kzCwsKqNnIvUyhVYN3AG/l+Y3si+wcyfePfAXjlFbNY1TXXwO23+3Z8hf3zn7BggVlw5+qrfT0aETkVp9PJF5O/YPf3u4vsb39aewbdNAj/YH9iV8QSMd6HTdG9ITvbBFaFg6q9eyEmBqKjzSpfZbFYTNPkwkFVx45Fmyqrn5WU19q1pqm5v78JTFu1cj+0Z+EePj/vc0LbhHJf7H1YrNX7PZWwNYGZY2eSmZxJxIQIrvjhCvwaVGpRaJFick/ksu69dez9eS+BjQJxOpzErYoj9UBqmc9r0LgBHcd2xOJnYee3O9VoXESkCrwWSrns3r2bnTtNY9uePXvStZYsi6ZQqsDqPtfz07aO9BoSxNQ1D/l6OGVyOvUeTKS2iZofZZaqzv9UGStQuPdr/lS/S7+8lN7TevtolNXI6YSEBBNOuUKqk7fMzFOfp0GDoiGVayt8v0ULsNm8+a+R2uDaa+GTT+DKK+Gzz4o89P1t37Pu7XUMvnUw5791vk+GF7cmjk8mfEJOeg5th7Wl7Yi2dD6js97YS6kKNxrvNqkbqTGpbPpkE9FLovEP9seR6yApKom02LRTnqtpZFNaD27N1llbVekkIuIFXg+laiuFUgX+iryORbsi6DuyIReveMDXwxGROqjwi/o2Q9qw4aMNrHhxBdlp2e5jLDYL3SZ2I6xjGPZsO93P714/3wA4nZCUVDyoiomBuDizJSaWfQ4XPz9TceUKq1q2NFUyJX3VdMG6Z+tW+Pe/4csvzffVypUwfLj7YafDycvtX+b4oeNc8eMVdDuvm8+GGr0kmk/P+hRHnqPmrt4pPuHq9dR6UGvCO4ez7attrH59tfv7xOpnNd83p2KBDmM60GlsJ/54+o9yVT+JiEjVeXT1vfvvv7/cF37ppZfKfaz4lmu5WltA7fk03ek0/YfVJ1ikdji5gevpj51Oi94t+PKiL91vLJx2J7sW7HIfs/699XSb1I1BNw4i50QOh9YcqnvT/EpisZiV+5o3N1OuSpKVZVZ+OHjQhFQHDxZsrvvx8ZCXB7GxZjuVxo0LQqpmzaBp07K38HBVYdVU69aZMGru3IJ9t9xSJJACOLTuEMcPHSegYQAREyKqeZBFdRrXiW6Tupmm6/kfk+7+0Uur8kmNtGPODnZ9v4vGEY1p2Kohx/YfI2ZZDLHLS/n9lf994shzFFvlrstZXRj7xFhS9qUw9+q57sdHPTCKyMmRtBnSRo3GRURqmHKFUhs2bCjXySyaX1Wr2PM/XbIWCqXuu8/0Q338cTjfN9X8pXr7bXjmGdNT6rnnfD0aEamsHhf2YPq86UQviabj2I6Edw7n+1u+5+BfB93H7P5hN7t/KOhHteqVVYx8cCTD7x5OWPuwIlM46tWbiQYNoHNns5UmLw8OHy4IqeLi4MgRsx0+XPRrbq5ZSfDYMbPKYHlYLBAWVrA1amS2U90uvK9RI/Nv0euGU3M6Ta+yEycKtrQ08/8vIaHg/+3WrfDrr+Y5Fgtccgk89hgMGFDslFHzzf/rrud2xS/Q932cBl4/0L0SIMDO73Yy4r4RNIts5sNRSVW5fk+3H9GelgNacvzQcbMIxqo4/IP9cTqcJGxNICMh45TnCggNILxz0UbjF7x7AUHNg/jqoq/c4dPQO4bSflR72o9qT2CjQAVQIiK1gKbv1WOL21zJH/HdGTqpORO/N13NzzkHFi0yLShqWkPxDz+EG26AsWNhyRJfj0ZEPMndfyr/jUXX87pycOVBslKKNwYPahpE5tFMd4+qiz+/mL5X9K3+Qdd2TiekpBSEVIcPm+mDR48WbMnJRe+nnbpPS7lZLBAcXHQLCSm+LyjIlMeWtAUGFr1vs5nzWq1mK+12aY85HGaz283mun3y19L25eVBTo7ZcnPLvl3SvszMouGTayvvSzWrFS6/HB59FHr1KvWwt/q9RcKWBC769CL6XdXPQ/9DqyZqfhQ75u5gz097yDiSQVCTIKbPm06H0R18PTQppPAHAl3P7crx+ONs+3IbMX/EENo6lKCmQRyPO87hTYdJ2JJQ4fOHdQyj26Ru5J7IZdPMTWo0LiJSi3m8p9S+ffuIiIio9dVQCqUK/NriCv5MjGTExa0559ubAVi92rwvGTjQrExekyQkwI4dZlZLcLCvRyMinnbyG4uTG6WHdwnnWPSxgqkahYR3Cadhq4bu6RvD7hxGUJMgH/wr6rjcXBNUJSdDaqoJqdLSit4++f7Jt48f9/W/ovYKCDB/ABs2NM3sW7QwUy9d0y/PPx+6ld0fKmV/Cq91fg2LzcLfEv5W435OMhIy+GLyF8StisPqZyXijAiG3DaEHlN6+HpodVbhoKn7Bd3JTM4k40gGO+bsIHZFLKFtQgluFsyhNYfY//v+Sl3D6m8loGFAwQcNFuhydhc6jevEb4/8pkbjIiJ1kMdDKZvNRnx8PC1atADgsssu47XXXqNly5aeGXE1UShV4OemV7AyOZJRl7fnrFnX+3o4IiLFnPymJCc9h5WvrGTxPxa7e1KVxtWfxGKx0Gl8JwbeMJDGHRtjsVrq7/S/msDhgPT0kiuCMjKK78vMLKgkys4uqC46ecvOLqh0cjpPfbuk+1arqbZyfS18u7SvrttWqwmN/P0LKrdOdfvkfSdXiZ1cMeZX9al282+cz4YPNtCiTwtu23KbB/6Hel7uiVw+nvAxcavi3PsmvTWJIbcO8eGoah/X77lO4zrRcUxH0g+nFw2amucHTb8VBE3u1VLLq/CqqhZo2b8lfS/vS/rhdFa+vLJI2AQUqYhVo3ERkbrN46GU1Wrl8OHD7lAqNDSUTZs20bmsvhY1kEKpAj+GXc6atB6Mua4zEz6qYXP1RETKUPhNTPvT2rPgpgXs/G5nmSEVgH+IP6FtQknenex+8zVl5hT6X9OfXQt2KaiSOs1VfehSk1e5W3jPQla9vsr9M22xWhjz+BhG/300/kH+vh2cDxUJmk4vFDT9GUto21BCmoeQfiSdI5uOEL8uvtLXsQXasGfbzZ38sKlF3xZs+XSL+3fnhZ9cSGBoIF9e9GW5K50UQImI1B8KpUqhUKrA9w2nsy6jJ+Nu6c7Yty8HYNky84H0oEFmQaaa5sABs8I1wN/+5tuxiEjNcXJPqos/v5gdc3awY+4O96f4ZVUABIQGkHM8x119NfaJsQyYMYDDGw4TvTRaQZXUCd9e/i1bZ28FwGKzMPzu4Zzz0jk+HlXJTv6ZdglpGULb4W0ZOGMgPS6sG1P6CgdNncZ2Iv1wOulH0tn9w27iVscR3DyYBmENOLzpMPFrPRw09WnBls8KgqYL3r+Aflf1Y+/Pe8td1aSgSURESuKV6XuHDx+mefPmgAmlNm/eTESEb5cSriiFUgXmBU1nY1ZPzrinN6NfuRQwrSj27IHly+G003w8wBL88YdpdN6mjVlUqpa3OBMRDyq1J1X+m6ppc6bRvGdzNny0gRUvriiY/neKaYAuvaf1JnJKJE0jm5KyJ4XYlbEKq6RW+XD0h8T+Gev+nq/JlVJQ8DPdcWxHHLkOvr/lezKTM92P97y0JxOenkCzHjVzlb6o+VHs/30/bYe3pfWg1mQcyWDXD7uIWx1HSPMQAhsFcmTTEQ6tPVTpa9gCbNhzigZNvS7tRXp8OmveXOP+/Tf1m6nY/G0Vmj6nsElERKrCK5VS5513HoGBgQAsWLCACRMmEBISUuS4OXPmVGHY3qdQqsCcwMvZktODsx8ewMjnpwAwaRLExMAXX0DfGriY1YkTZlXAkSPh3ns90l5DROqw8rzZ6nxWZ9a+vZZF9y9yv1kPbRfK8UPHC3qllKHT+E50Gt+JrNQs0uPS6XZ+N/pdWTNWNBNxORZ9jNe6vIbT4aTvVX3pPbV3rQsafrjjB9a+tbZYiNxmaBtaDWhF7olcelzUg16XlL7yYFW5gqZ2I9rRelBrU9H0fX5FU4tgAhsFknEkg6SdSSTvTq7UNQIbBWKxWsg6VtAUvN3IdrQa0Iq1/1vrrmqa+vVUbAElB02usaqqSUREfMXjodSMGTPKdeGPPvqofCP0EYVSBb7xv5xteT04759DGfavib4ejoiIT538Zm3H3B18dfFX7jeAnc/qTF5WHofWHiIvM6/Mc/mH+NOsRzP8gvywZ9tpN6IdvS7tRXiXcEJbh7Lre/Wvkur18/0/s/LllUScEcE1v17j6+FUysnVj22GtCF+Q3yxFTnDOobRYXQHrH5WMhIyaDusLV3P7UqDxg04uPIgcavjaD+qPZ3P7Iw9186ehXuIXR5L817Nad67OSeOniDzaCaxf8VyNOoogY0C8Qv0I3lfMqnRqZUau9Xfin+IP9nHss0OC7Qb0Y5WA4sGTZd+dSm9p/Yu9m/V9DkREaltPB5K1RUKpQp8ab2Cnc5Izn9uFIP/fpavhyMiUuOU9gaw8JvFvlf25fCGwyRuTyzXOa0BVhw5DndVVv9r+9NtYjeOxRwjeXcy3SZ1o8eUutErR2qGrNQsXm7/MjnHc7jiVrrMKwAAePxJREFUxyvodl43Xw+p0k7+mcxIyODraV8TszSm2sdi9bfiH+xPdmrRoKn/tf1JPZDK8meXV2n1OYVNIiJSmymUKoVCqXxOJ7OsV7Gb7kx+eRwD7x3r6xFVSEYGbNsGw4b5eiQiUh+dqn/Vua+dy75f9rHrh13uKYCBYYHkpOcUq+ooSWibUJr3Nj0cc9JzaDu8LT0v7knjjo0JbRPK7h93q9JKym3F/63gl7/9QvNezblt621Y6lhDxpN//sY8Nob9v+/n4MqD7ql+AaEB2HPsBY2+8528AEJIyxBa9W/FsZhjHN11FJzmmM5nd6bd8HYs/dfScgVNrnGpqklEROorhVKlUCiVLy+PT/2vZx9duOids+l380icThg3Dvz94euvITzc14MsWWIitG4NTiekpkLDhr4ekYjIqYOq6fOm0/W8rmz4cAM/3PqD+81wx9M7cnT3UdLj08t3IStFel1FTomk41izNHxqTCqdz+pM/2v6Y/O3uVf1UnhVf9lz7bzW+TXSDqZxwfsXMOiGQb4ekleU5+cPigdIJe0r7fmaPiciIlJ+CqVKoVAq34kTzAy5gxg6cekn59P76sHk5ZlACuDoUWjSxLdDLEvHjmC3w8KF0KePr0cjIlKy8k7LOfkN8PinxxOzLIZ9v+xzV3oEhgWSeyIXR245uq8DDRo3MI2S86cJ9ru6H13O7sKx6GMk702m28Ru9J7au8iYFGDVPVtmbWHOlXMIaRHCvTH34teg/qwQUt4ASdPnREREPE+hVCkUSuU7dowPwh/kIO257KtL6DG1D3Y7fPcdZGfD1KkFAVVNlJJScyu5REQqozyVHt0mdWPTJ5uYf/18d6VV9yndSdqRRPKuiq/05R/iT3jncGz+NuLXx7sDrLFPjKXnJT05suUIh1YfImKCgqrayOl08t6Q94hfH8+4p8Yx9h+1a6q+iIiI1F4KpUqhUCpfYiLvtniceNpwxfeX021Sd1+PSERETlLZSqspH08h82gmi+5f5A6vOo3vRPKeZNJi0yo1lqaRTWnRuwW5mblkHcui1cBWdDuvGw1bNaRhq4bErY4jZllMkUorVV/5VvSSaD4e/zF+QX7cd+A+gpsF+3pIIiIiUk8olCqFQql8cXG83e4ZjtCKq3+5ms5ndvb1iCrFkT+LxWr17ThERHytPNOSijVkf/1cmnZryu4fdrP69dXuSqmwjmGkH04v1hS6vJp0a0JgaGCR6qtBNw8iYnwESbuSOLrzKBHjI+g9vTcBDQOwWCwKsDzMkefg/eHvE78+ni7nduGqn67y9ZBERESkHlEoVQqFUvn27+fNzv8lieZcu+RaOo3tRGYmrFkDwcEwZIivB3hq//kPvPkmfPghTJjg69GIiNQOla2+Ou3vpxG3Ko7oJdGmz5UFQlqEYPWzcvzQcXfvq4qy+lsJCAkw/a/ydT6zM60GtSLjSAZpB9NoPag1ERMiCGwUyKF1hziy6QgRZ0TQe1pvrDare/wnh1r1MejKOpbFuvfW8eeLf5KZlOneX3hVOBERERFvUyhVCoVS+Xbt4rXIN0mhCdevuJ72I9sTFQU9ekDjxqZnU013yy3w7rtw443w3nu+Ho2ISN1Tnj5XkZMj2fndTr686Ev3/jGPjiH7eHaR6qt2I9uRFptG2sHKTR8sTUDDAGwBNjKTCwKYVgNbYQuwEbcqzn39Hhf3oFX/VqTsSyH1QCot+rSg/aj2+Af74xfkR/z6eI5sPELbEW3pcnYXbP42opdGE7cqjo6ndyRyciS2ABu7F+4mZmlMsaCrvKFYaUFZZZ/vdDrJy8pjwwcbWP/+epJ2JhWrcLPYLAy/ezjnvHSOR//bi4iIiJRGoVQpFErl27qVl/t+SBph3LT2JtoMbsPu3XD++RAaCmvX+nqAp7ZlC2zfDpMnQ1CQr0cjIlI/VGSlslOFWpd+dSntRrRjx7c7+Pm+n939r/pe0ZfEHYkc3njYXYEV3DwYe46d7NRsX/yzS+QX5Id/kD9Oh7NIpVfD1g2xWC0cjzvu3te4c2OsVivJewoa0jfv3ZyQ5iGcOHqChC0J7v0t+rTA6XSSuC3Rva9J9ybgoMjzAxoGkJeVhyOv6IqMYR3DiJwcyerXVxcLEEVERESqg0KpUiiUyrd+Pc8P/opsgjj31XMZfvdwX49IRETqgcpOH5w+bzpAkX0XfnKhqfRdEFWkqfvwe4Zjz7Gz9q217kqp7pO7c2z/MRK2JrinHzZq24jQtqGk7E3hRNIJ91hsDWw47U4cuQ5qG4vVwrC7h3Huy+eW+t9aRERExNsUSpVCoZQR9Z/5zH5og/u+PkEVEZGapjzVVxU5trTph+UJwKZ+PRWH3cG3079175v09iQ6nt6Rfb/sY+E9C92h2BnPnYHT6eT3R3937xv7xFgcDgfLnl7m3jfqoVG0HtSauNVxrHxppXv/yAdHYrFaWPHiCve+MY+NAStFnn/eG+fR48IeHFh+oMi49DddREREfE2hVCkUShkLp33Iqq8PAJZa3WvC6YTPP4dPPoGPPoK2bX09IhERqcmqEmrVtueLiIiI+IpCqVIolDKinv6K2f/c4b4/fd50UltF8s9/Qu/e8N//+nBwFXT66bBsGbzwAjz0kK9HIyIiIiIiIlK/lTd78avGMUkN0n1wQ/ftCz++kMjJkXz3Hfz8M6R5dmEkr7vnHjjzTJg2zdcjEREREREREZHyUihVTzmyct23XWX+gwbBxx9Dkya+GlXlXHKJ2URERERERESk9lAoVU/ZTxQsqW0LsAHQoQNcc42vRiQiIiIiIiIi9YnV1wMQ37BnFoRSVv/a/23gdMKqVfDAA5Cbe+rjRWqLb76Bvn1hyxZfj0RERERERMSzan8aIZViP5Hjvm31M98Ghw/D+vUQG+urUVWe3Q6TJ8NLL8HChb4ejYjnJCbCvn3wxBO+HomIiIiIiIhnKZSqp+z5PaVsVgcWiwWAzz+HwYPhkUd8ObLK8fODm26Cq66Cdu18PRoRz+nTB7KywKrf1iIiIiIiUseop1Q9Zc80lVI2q9O9LygI2raFZs18NaqqeeYZX49AxPNOOw3i46FFC1+PRERERERExLMUStVTjixXKFWw7/bbzSYiNcP+/bB4MQwYoFBKRERERETqHk0Iqafs2XkA2GzOUxxZ+xw9Co8+CseO+XokIlWzeDHccAM8/LC5n5WlRv4iIiIiIlJ3KJSqp9w9pWw+HogXTJ4Mzz0H//mPr0ciUjVNm8KZZ8Lo0fDgg9C8Ofz4o69HJSIiIiIi4hkKpeqpkkKpd96BSy81S9DXZg89BP36wdixvh6JSNVMmQK//GJW3nM4ID0dFi3y9ahEREREREQ8Qz2l6ikzfc+GzWZx71uzBr79FgYO9N24PGHyZLjgAq1WJnXLHXfA1KkwfLivRyIiIiIiIuIZCqXqKRNKBWL1KwilrroKBg2q/W96LRazidRmDkfR7+UuXcwmIiIiIiJSV6iWpJ5yNzovFEqNG2dW3xs82EeD8jCHA2bNgvvu8/VIRCpu0yZo1AjOO8/XIxEREREREfEOhVL1lD3HDhQNpeqaXbtM9dcrr8Dq1b4ejUjFbN9uekhlZBTsy86Gp5+GYcPgxAnfjU1ERERERMQTNH2vnrJnu0KpglwyOhpycqBNG2jY0EcD86AePeCuu6BlS+jd29ejEamYadPMdNqsrIJ9AQHw0Uewf79Zhe/SS303PhERERERkapSKFVP2XPzQyn/gkqp66+HxYvhiy9g+nRfjcyzXn3V1yMQqRx/f+jZs+g+i8WsxOd0wpln+mZcIiIiIiIinqJQqp4qCKUKKqWCgyEszHytixwOyM2FwEBfj0Sk8q691tcjEBERERER8Qz1lKqn7DkOAGwBNve+77+HY8dg8mQfDcqLYmPhrLPU9Fxqh+xsePRR+OwzyMvz9WhERERERES8Q6FUPWXPzQ+l/OvHt8Du3fD77/DxxxAX5+vRiJRt92547jm44w6w2Yo/fuIEfPUVvPxy9Y9NRERERETEUzR9r55yh1IBJbzjrYMmTIA33oCzz4a2bX09GpGyNWgAt95qbltKWCBz5Uq47DLo3l3VfyIiIiIiUnsplKqn7HkmlLL6F4RSd98NaWnw5JPQqZNvxuVNd9zh6xGIlE/XrvDWW6U/HhlpgtaTG6GLiIiIiIjUJgql6il7rhMAW2DBt8DXX8Phw/Wj8mLXLjNFatIkX49EpOLatoXffvP1KERERERERKpGoVQ9Zbe7QqmCSqknn4TUVGjTxkeDqibr18Po0eDnB5s3182qMKndjh6FJk1KnronIiIiIiJSVyiUqqfsefmhVEDBt8Att/hqNNWrf38YPBgCA8Hf39ejESkqL88EwyEhsG0btG5d9vG5ufo+FhERERGR2ql+LL0mxThcoVSD+pdL2mwwfz4sWqSm51LzxMaaoCkrC1q2LP24l1+G8HB46KHqG5uIiIiIiIgn1b9EQgCw281XW6ApsXA6IToaAgJMZYa1jseV4eFF7584AcHBvhmLSGEREZCRAQcOlP1zGBQEx46Z3mgiIiIiIiK1UR2PHqQ0BaGUySWzsqBzZ2jXzrwhri8cDnjxRbOa2eHDvh6NiBEUZL4ny3LxxbBlC3z1VfWMSURERERExNMUStVTdrvpoGwLMpVSOTmmUsjPz/Raqi+ys+HTT+HgQfjkE1+PRqT8WrSAPn1U4SciIiIiIrWXpu/VU3aH+WprEABAWFj9qpByCQqCr7+GZcvgxht9PRoReOQREwzfdJN6nomIiIiISN2mUKqesjvyK6UaaNmuHj3MJuJrDge8/roJiKdPP/XxP/wAa9fCJZeYqikREREREZHaRNP36imFUiXLyYEnnoCEBF+PROqj3Fz417/g+uuhS5dTH//22/Dkk7B8udeHJiIiIiIi4nGqlKqPnE7sTpNH2oLM9L2DB82b4aZN4fnnfTk437rhBvjsM1i6FBYvBovF1yOS+iQwEB54oPzHn3cetPz/9u47PMoqfeP4PRmSSYAk1CSUUAREQKQqRUREkAXXBfkpWFYUy4qgLiCirAXLKrqK4ipYsGDBRV0RLAgiytpQOoIgHUElSE2BMElm3t8fh8nMAKFoMm9m3u/nuuYiOZm880wOhMydc56TLp16atnVBAAAAABlhVDKiYqK5JNbkuSuaLqa//ab9OKLpoeNk0Opu+4ygdTo0QRSKP+GDrW7AgAAAAD4/QilnKigQH6Fr5TKyJD++U9O8jrtNGnDBikhwe5K4EQbN0pVq0rVqtldCQAAAACUPXpKOVFBwRErpWrXNquERoyws7DyITSQ2rtXWrTIvlrgLIMGmS207757cp+3d69pkg4AAAAA0YRQyolCQ6kklgSV5KefpLPOknr1MqungLKWlWX+bNz4xO7v90u1apmVVb/8UnZ1AQAAAEBZIJRyosLCYCjlMTs4Dx6Udu6U8vLsLKx8SU83q1aSk6X8fLurgRNs3GhO4GvZ8sTuHxdn/n5K0ubNZVcXAAAAAJQFeko5UehKqQTz5wcfSAMGSF27mkbfkBITpRkzzAv/tDS7q4FTVDjJ78pz5kg1a0qVK5dNPQAAAABQVgilnCgklIqLN4vlCgvNhzweu4oqnzIywt/fsEFq0ODkgwOgrDRsaHcFAAAAAPD7sH3PiUK37x1aKXXFFZLPJ330kZ2FlW9ffy21by/deKNkWXZXg1izcqV0zTXSY4/ZXQkAAAAARAahlBMdZfueZLapxcfbVVT599tvUm6utG6ddOCA3dUg1qxdK736qjRz5sl93vbt0oMPSv/4R9nUBQAAAABlhU1ITlRCKIVju/hiadYs6ZxzpIoV7a4GsaZFC2ncONNg/2Tk5Un33islJUkPPSS5XGVTHwAAAACUNkIpJzpKKPXJJ9LHH0udO0uXXmpnceVbr17h72/aJJ1yij21ILY0a2ZuJ6tBA2nwYKlxY6mggL5wAAAAAKIH2/ccyH+wQNahqQ+EUt9+K02YIM2bZ2NhUWbKFKlJE+nWW+kxBfvEx0svv2y27xFIAQAAAIgmtoZSX3zxhS666CLVrl1bLpdLM2bMOOb958+fL5fLdcQtKysrMgXHCH++t/jtQCh19tnSnXceuRIIJdu2TfL7pYQEtkzhj9u+3fQtKyqyuxIAAAAAiAxbt+/t379frVq10rXXXqv+/fuf8OetXbtWKSkpxe+npaWVRXkxy3fgyFDq/PPNDSfunnukc881Wx4DLIuACr/P3/4mffihNHmydP31J//5OTnS/v1SrVqlXxsAAAAAlAVbQ6nevXurd+/eJ/15aWlpqlKlSukX5BC+/ILit93xNDr/I7p2Db5tWdI110gdO0pDhhBO4eQUFJi/M9Wrn/znPvusNHSodMkl0jvvlH5tAAAAAFAWorKnVOvWrVWrVi317NlTX3/99THv6/V6lZOTE3ZzukAo5XJZcsWZ5OTAAXPz++2sLLp9+KH02mumx9S6dXZXg2gzZ45UWChddNHJf269eubP3btLtyYAAAAAKEtRFUrVqlVLzz33nN599129++67yszMVLdu3bR06dISP2fcuHFKTU0tvmVmZkaw4vIpEEq5XcEE6qabpEqVpPHj7aoq+v35z9Jjj5mG8U2b2l0NopHbLVX4HetXzz9fys6WPvus9GsCAAAAgLJi6/a9k9W0aVM1DXm137lzZ23cuFFPPvmkXn/99aN+zpgxYzRy5Mji93NychwfTBWHUiGRZMGhHX0JCTYUFCNcLmnUqPCxrCxp9Wqpe3d7aoIzJCaaGwAAAABEk6haKXU0Z511ljZs2FDixz0ej1JSUsJuTuc7WChJcrut4rHXX5dyc6Ubb7SrqthTWChdeqnUs6c0ZYrd1aA8y842/chGjTK9yQAAAADACaI+lFq+fLlqcdzUSSkOpeKCr34rVJAqV2a1RWny+aTGjc3XNfSEPuBwO3ZIr75qTt77vQ3yp02Trr1W+vjj0q0NAAAAAMqKrdv38vLywlY5bd68WcuXL1e1atVUr149jRkzRr/88otee+01SdKECRPUsGFDtWjRQgcPHtSLL76ozz77TJ988oldTyEqBVdK2VxIjEtMlF5+WRo7VmrQwO5qUJ5VqSI98sgfO2jgiy+kV16RatWSfsehpgAAAAAQcbaGUosXL9Z5551X/H6g99PVV1+tKVOmaPv27dq6dWvxxwsKCnTbbbfpl19+UcWKFXXGGWfo008/DbsGjs/nLZIkuSsEl2RMmiT9+qt05ZVSs2Z2VRZ7XK7wQGrjRmnNGtMUHQhIS5PuuOOPXaNvX6l2bYlvhwAAAACihcuynNXBJCcnR6mpqcrOznZsf6lNf71Xr091K616kW7a9aAk6ayzpEWLpPff/31H0uP4Nm6UOnY0vbs+/1zq1MnuigAAAAAAKH0nmr1E1el7KB0+b6Ekd9hKqcsvN4FJo0b21RXrGjQwvaV+/pntfAi3Z49pjF+tmhQfb3c1AAAAABAZUd/oHCevePueOxhKjRgh/fvfUvPmdlUV+9xu6c03pf/9z/T9AQIef1zKyJBuu+2PXefAAWnZMmn//tKpCwAAAADKEqGUA/kKfJLCe0ohMipVMqfxBaxebVbIwNny803/serV/9h1WraU2raVliwpnboAAAAAoCwRSjlQcSgVHwyliookZ3UXs98rr5gA4e677a4EdnvySRNO3nnnH7tO06Ym2Nqzp3TqAgAAAICyRE8pB/J5A6FUMJPMyDAvZFetYgtfpKSmSl6v9OOPks9ntvfBudzuP/53YPp0KTGxdOoBAAAAgLJGKOVA/iK/pPBQyus1K6U8Hruqcp7+/aV586TzzjNbt4A/ikAKAAAAQDQhlHKg4Pa9YCi1dasJpmrUsKsqZ+re3e4KUB4MHy7FxUmjR5tViwAAAADgBPSUciBfYWClVHCvUNWq5sVwBWJKW/h80tix9JdyIsuSnnvO9JU6ePCPXaugQPrb36SuXc1JfAAAAABQnhFBOFAglIpLoIlReTF/vvTAA+btyy6TTj/d1nIQQX6/dP/90u7dUlraH7tWQoLpK7V7t7RundS6damUCAAAAABlglDKgXyF5pg996FQ6uBB6dFHTT+p22+n4bYdzj/fbN1q1YpAymncbumOO0rveuPGSZUqSZmZpXdNAAAAACgLhFIO5As0Oj8USuXmSvfdZz42erRNRUGPPmp3BYgFN9xgdwUAAAAAcGIIpRzIV3RopZTHTH9CgjRkiFRUZJotw375+dKcOVK/fnZXgrK2f78JhqtXl+Lj7a4GAAAAACKHCMKBDg+lUlOlZ5+VJk+2syoE5OVJHTpIF19sginEtg8/lGrVknr2LJ3rFRVJq1bxdwcAAABA+cdKKQfy+cyfbhqdl0uVK0tdukg7dphVbIhtubmSy2VWSpWGrVulli1Nj7j9++kRBwAAAKD8YqWUAxWvlEpkr1B59cQT0ooV0nnn2V0Jytr110uFhdLrr5fO9erXl9LTzcl7e/eWzjUBAAAAoCwQSjmQP7BS6lAo9d13ZlVFy5Y2FoUwiYlSRkbwfa/XvlpQ9txuqWLF0rvW9u3St99KNWqUzjUBAAAAoCwQSjmQzxy+VxxKHTwoFRSY1RoofxYskJo2lWbPtrsSRAuXy+4KAAAAAOD4CKUcyOczr1gDoVTHjqYPzdy5dlaFkrz+uvTTT9K4cZJl2V0NStv48dLIkWa7JgAAAAA4CY3OHcjnDw+lPB4pM9POinAsTz4ppaRI//gHK2Bi0VtvSYsWSd26Sa1alc41lyyRRo82J2tOn1461wQAAACA0kYo5UCBUCoukaPdooHHIz3ySPiYZRFQxYobbjAN7Zs1K71rut3SZ5+V3ol+AAAAAFAWCKUcyGcdWimVZFZK/fCD9PHHUuPGUr9+NhaGE/Lf/0rPPy998IFpiI7odsMNpX/Npk2lKVOk004jwAQAAABQftFTymn8fvksM+3uJI8ks3Xo9tulF16wszCciH37pL/9Tfr0U2niRLurQXmVlCRdfbXUoQOBFAAAAIDyi5VSTlNYKJ/ckiR3RRNKNWwo/fWvpdfPBmWnShXTI2jGDGn4cJuLwR9WVCTt2mW22cXH210NAAAAAEQWoZTTHCWUOvdcc0N06NbN3AIsy9ziWPcYddavl5o3l6pWlfbsKd1rZ2VJ330nJSdL3buX7rUBAAAAoDTwMtZpCgpCQikanceCu++WrrnGrLpBdNm3z2yvK4uG5DNnmh5xjz9e+tcGAAAAgNLASimnCQ2lEtkvFO1Wr5YefVTy+aQrrpD+9Ce7K8LJ6NRJKiyU9u8v/Wu3bCm1bVu6p/oBAAAAQGlipZTThG7f85hM8p//lKpVk+66y87C8Hs0by69+670xBMEUtHK7ZZSUkr/up07S0uWSOPHl/61AQAAAKA0sFLKaUJXSiWYP3NypL17Ja/XzsLwe/XtG/5+Xp7k95dN0AEAAAAAQGlhpZTThIZS8ebP0aOlNWuk226zszCUhsA2vi5dpK1b7a4Gx/P229KIEdLcuWX7OJZVttcHAAAAgN+DUMppjrJSqkYN6bTTpFq17CwMpWHrVmnRInOq2/btdleD4/nkE2nCBHNKXll48kmpfn3pwQfL5voAAAAA8Eewfc9pQntKHQqlEDsaNjQBxw8/SB062F0NjufPfzYn73XpUjbX9/lMULl6ddlcHwAAAAD+CEIph7G8XvkPC6XmzJE2b5bOOUdq0cLO6lAa6tUzt4Cff5Y++EAaMkRyueyrC0fq18/cysqll0odO3ICHwAAAIDyiVDKYfz5wW7mgVBq8mRzgtvEiYRSsSY/X7rwQun776XsbOnOO+2uCJFUv765AQAAAEB5RE8ph/EdKCh+OxBKdehgVms0amRTUSgziYnS1VdLGRmmATrKlx07pIKC498PAAAAAGIRK6UcxneUlVK3325XNShrLpc0cqR0/fVSSkpwPDtbSk21ry6YE/Hq1pWKiswWyzp1yuZxvvpKWrhQ6tlTatmybB4DAAAAAH4PVko5jO9AIJSy5HLTYMgpQgOpRYvMlq5XX7WvHkh5eZLfb96uVq3sHufpp6XbbpM++qjsHgMAAAAAfg9CKYcJbN9zuyy56HrtSC+9ZFZKvfuuWa0DeyQnS4WF0u7dUlJS2T1Or17S//0fzc4BAAAAlD9s33MY38FCSZI7LphG9OwprV0rvfGG1LWrXZUhUiZNMgHF4MGcxme3uLiyXSUlSddea24AAAAAUN6wUsphfPmHVkqFhFK//ipt2yb5fHZVhUiKi5P+/vfwLX2PPy599pl9NQEAAAAAnIeVUg7jO3hkKDV9upSbK516ql1VwU7z5plm93Fx0qpVbPOKlG++kd5+WzrzTOnKK8v+8fbvlw4ckGrWLPvHAgAAAIATwUoph/EdLJIkud3BsaZNpfbtw1fOwDk6d5auuUYaOpRAKpIWL5aeekp6//2yf6xHHzWnLT74YNk/FgAAAACcKFZKOYzfe6inlJsO1zCSkqSXXw6eBCeZlXMrVkhduthXV6xr10664w6pZcuyf6z69c323E2byv6xAAAAAOBEEUo5THGj85CVUq+/bhpe9+snVa5sT12wl8sV/nfi1lulV1+Vxo+XRoywr65YdvbZ5hYJF15o+sbVrRuZxwMAAACAE0Eo5TDB7XvBY9duuEHyeqWffiKUglRUZPpLuVxmNQ+iX3KyuQEAAABAeUJPKYfxFRwKpSoEQ6levaSePQmkYFSoIL30kvT991LXrsHxLVski12fpWbvXqmgwO4qAAAAAMA+hFIO4/OaUCouZKvWzJnSJ59I1arZVBTKpRYtgm/v3i116CBdcIG0c6d9NcWS88+XPB5p9uzIPN7KldKNN0qjR0fm8QAAAADgeAilHCYQSrnjmXqcuO++k3JypF9/5ZTG0rJ3r/mzatXIPd4LL0hvvhmZxwMAAACA46GnlMP4CswRa6Hb94Dj6dPHbOc7cMCs7pHMVr6ff5YyM+2tLVpt3ChlZ0du22y7dtKoUVKnTuakxThyaQAAAAA242WJwxT3lDq0UmrHDqlRo8gcS4/o1qSJ1KpV8P1p08zY+PH21RTN4uLMKqn4+Mg8XqVK0mOPSf37E0gBAAAAKB9YKeUwxSulDoVSBw5ImzZJFSvaWRWi0ccfm1Mb9++3uxIAAAAAQDQilHIYX6FPUjCUqlVL+uYbyeezsypEo1dflfr2lS66KDi2a5fZjpaYaF9d0WDrVumJJ6T69aURIyL3uH6/9OOP0vr1Zu4AAAAAwE6EUg7jKzy0UirBHL+XmGh6zAAny+WS/u//gu9bljRokLR5szR1qtS2rX21lXebNklPPSU1bRrZUGrTJnOqYkKCaVwf6A8GAAAAAHYglHKY4lCK0/dQyn7+WVq61JzyVqmS3dWUb/XrS3fdJbndkX3cRo3MYzdoIO3cKdWtG9nHBwAAAIBQhFIO4ysKXyn122/SZ59JNWpIPXrYWRmiXWamtGaN9PXXZgVQwI8/mvddHPhYrGFD6Z//jPzjulxmJRtzAQAAAKA8YLmMw/iKLElSXILJI1eulC6/PLJbiBC7qlaV/vzn4Ptbtkjt2kk9e0r79tlVFUIRSAEAAAAoLwilHMZXaEKpwEqplBSpWzfpzDNtLAoxa/Fi01y7sFBKTbW7mvJj82ZzcqGd/H57Hx8AAAAA2L7nMIGVUm6Pmfozz5Q+/9zOihDLLrlEatPGNEEPrNApKpKWLJE6dLC3NrtYlnTGGdKBA9LatVLjxpF9fJ9PuvBCc+rmjz9KtWtH9vEBAAAAIICVUg7j84WHUkBZa9QoPHh5+mmpY0dp1Cj7arLT7t0moHO5pHr1Iv/4bre0fbuUmyt9+23kHx8AAAAAAkgmHMbvM3+6E+PtLQSOtW2b+fO00+ytwy41akjZ2dKuXVJCgj01PP202U7ZooU9jw8AAAAAEiulHMcXCKUOrZR65x2zlcipq1YQeU88YbbvXXttcOz776Xly20rKeJcLqlmTfsev2tXqVUrqQK/lgAAAABgI0Iph/EdtlIqK8ucwLd1q41FwXHatpXiDn338flMQNWunTR1qr11AQAAAAAih9+TO4zPb7pNu5NMKHXxxWYbVY0adlYFJ9u/3/Sd2rBBOv98u6spe2PHmr5SN94otWxpXx0rV0qvvWZqGDTIvjoAAAAAOBehlMMcvlKqbl1zA+ySkiK99ZZpvp2RERx/7jmpSxfp9NPtq60sTJsmrVtnAmE7ff659Pjj0tlnE0oBAAAAsAehlMMUr5RKtKnDMlCCWrWCb69YIQ0bZrb4rVkTfnpftLv7bmn1antXSUlS//7m9L1LL7W3DgAAAADORSjlMD6/aeTjTjKh1KpV0pYtUpMmUtOmNhYGhKhWTerb1zTijqVASpKuusruCoy6daU337S7CgAAAABORqNzh/FZgZ5SJpR66SXpooukV16xsyogXGamNH269PrrwbH9+02gs3atfXUBAAAAAEoPoZST+HzyyS0pGErVrSu1by/Vq2dnYcDReTzBtx96SHrjDekvf5H8fvtq+iM2b5bWr5cKC+2uJGjXLunFF82fAAAAABBJhFJOUlgYDKUqmlf7t90mLVokDR1qZ2HA8V13ndSnj/TYY6bXVDR69FHp1FOl+++3u5Kg3r2lG26QZs60uxIAAAAAThOlL+3wuxQWyn9oyt0VE20uBjg5jRpJH35otpsGfPyxCao2brSvrpPh80lJSeWrf1u/flKbNlJyst2VAAAAAHAaQiknKSgIWSnF6XuIPi6XuUmSZUmjRplg6vnn7a3rRE2eLOXlSZddZnclQWPGSEuXSgMG2F0JAAAAAKchlHKS0FDqUE+p226TOnc2K1CAaOJymWboV1wh3XNPcLw89Ws6mrg4KT7e7iqConUrJAAAAIDox8sRJwkNpRLMnz/8IC1YIO3ZY2dhwO/TtKk0dWr41rPBg6WBA6UdO+yrKxr5/dKaNXZXAQAAAMBJCKWcJKTReVy8mfr775fee0/q1s3GuoBSsn69NG2a9N//Sj/9ZHc14WbNMk3F//1vuys5UlaWVKeO6S2Vm2t3NQAAAACcooLdBSCCjrJSqkMHOwsCSleTJtLChdJXX0lnnRUc93olj8e+uiRp8WJp9mypdm176zia9HSpcmUpP9+snuzY0e6KAAAAADgBoZSTHCWUAmJN27bmFrBzp3l/2DDTGL2CTd/1Lr1UqlVLatzYnsc/FpfLrOSqX19K4AwEAAAAABFCKOUg/oMFsg7t2AyEUt98IxUUmG07qal2VgeUjZdfln7+2Wzru+02++po1szcyqsmTeyuAAAAAIDTEEo5iO/AweK3A6HUNdeYPjxffil16WJTYUAZGj1aysiQWrQInnpnWWarWsWK9tZWXu3cKdWsaXcVAAAAAGIdjc4dxH/AW/x2IJRq3Nis3khJsasqoGy5XNLVV0vt2wfHXnvNhFSffBKZGnJzTT+pzZsj83i/188/m0MPWrUyfbgAAAAAoCwRSjmILzSUijeh1KxZ0urV0hln2FUVEFmWZU7A27LF/N2PhOXLzcl7558fmcf7vWrWNCsnd+6UvvvO7moAAAAAxDq27zmIL79AkhTn8ssV57K5GsAeLpf0v/9JEyZIN90UHF+3TkpMlOrVK/3H9HrNyqzy2OQ8lMcjTZ1q6qxb1+5qAAAAAMQ6QikHCYRSbpdlcyWAvSpXlu6+O/i+ZUlDhpjG///5j3TxxaX7eD16SKtWle41y0q3bnZXAAAAAMAp2L7nIMUrpeKCoVT37tIFF0h79thVFWC/vDwTTPn9Urt2dldTfuzaZb4uAAAAAFAWCKUcxHewUJLkPhRK+XzS559Lc+fywhPOlpwsffaZtHRp+Pa90aOloUOlbdvsq80uI0eaLXxffGF3JQAAAABiFaGUgxRv3wtZKfX229Lrr5sX5YCTuVzS6acH39+1S3r6aenZZ03z79/L5zPXvegiKTv7j9cZKfn5phfWzJl2VwIAAAAgVtFTykEOXynldkuXXmpnRUD5Vb26NHu2NGOGdN55wfF33jEBVr9+UoUT+A66ZYv0ww/Sxo3RFf7eead02WVS1652VwIAAAAgVhFKOUhxKOW2uRAgCrhc0rnnmltAUZF0++3STz9JU6ZIV199/OvUqiXNmyf99psUF0VrU+vXNzcAAAAAKCuEUg7i8xZJCoZS+fmmh05SktS2rY2FAVGioEC66irp3XelAQOC499/b/4dNWly5OckJpoDBaJZYaF04ICUmmp3JQAAAABiSRT93h5/VPFKqQouSaZ5c5cu0f+CGYiUihWlBx802/GSkoLjI0dKTZtKL70UHHvsMalOHemf/4x8naXp/felxo2la66xuxIAAAAAsYaVUg5iVkq5ildKuVzmxWblyraWBUQdlyv4ttdrVkO53VKPHuH3+/VXafXqyNZW2k45xTwPt9s0f69Rw+6KAAAAAMQKQikH8RUUSYovXinVpMkfO1UMgOTxSB9+KGVlSRkZwfGBA6VzzpFOO82+2krD6aeb53fOOWalGAAAAACUFkIpB/F5fQoNpQCUntBASpLq1TO3WNCrl90VAAAAAIhF9JRyELNSSnJXYNoB/D4ffigtXmx3FQAAAABiAemEg/gKfJIkd7yZ9kWLpD59pFGj7KwKQLSYOFG66CLpuuvMiXwAAAAA8EcQSjmIr8AvKRhK/fqr9PHH0tdf21kVgGgxYICUnm628/l8dlcDAAAAINrZGkp98cUXuuiii1S7dm25XC7NmDHjuJ8zf/58tW3bVh6PR40bN9aUKVPKvM5Y4SsMrJQyPaXatJFeflm68047qwIQLWrWlDZskP71L3PiIAAAAAD8EbaGUvv371erVq00ceLEE7r/5s2bdeGFF+q8887T8uXLNXz4cF1//fWaM2dOGVcaG/yFZqVUXLxbkmnCPHiw1LevnVUBiCaVKwff9vnYxgcAAADg97P19L3evXurd+/eJ3z/5557Tg0bNtT48eMlSc2aNdNXX32lJ598Ur1KOB7K6/XK6/UWv5+Tk/PHio5ivkOhlDvBbXMlAKLdvn3SFVeYcPu55+yuBgAAAEA0iqqeUgsWLFCPHj3Cxnr16qUFCxaU+Dnjxo1Tampq8S0zM7Osyyy3Dg+lduyQli+Xfv7ZxqIARKVFi6TZs6VXXzVb+gAAAADgZEVVKJWVlaX09PSwsfT0dOXk5Cg/P/+onzNmzBhlZ2cX37Zt2xaJUsslX5ElKRhKTZ1q+krdcYedVQGIRj17SpMmSV99JTVubHc1AAAAAKKRrdv3IsHj8cjj8dhdRrngKwyEUmbaExOlWrWk6tXtrApAtBoyxO4KAAAAAESzqFoplZGRoR07doSN7dixQykpKUpKSrKpqujh8x0KpTxmpdTQodKvv0r//redVQGIBVu2SIMGSQcO2F0JAAAAgGgRVSulOnXqpFmzZoWNzZ07V506dbKpouhSvH3PE1XTDqCc8/ulCy+UVq+W0tKkxx+3uyIAAAAA0cDWlVJ5eXlavny5li9fLknavHmzli9frq1bt0oy/aAGDRpUfP8hQ4Zo06ZNGj16tH788UdNmjRJb7/9tkaMGGFH+VHH5zN/uj3x9hYCIKbExUnPPiu1bCmNGmV3NQAAAACiha2h1OLFi9WmTRu1adNGkjRy5Ei1adNG9957ryRp+/btxQGVJDVs2FAfffSR5s6dq1atWmn8+PF68cUX1atXL1vqjzbFoVSiWSk1ebI0YID07rs2FgUgJnTtKi1ZImVk2F0JAAAAgGhh6z6ubt26ybKsEj8+ZcqUo37OsmXLyrCq2OUvDqXMSqlFi6R33pHOOMPGogDEjPiQRZjz50tvvCE995xUgR3DAAAAAI6ClwoO4jsslLriChNIdehgY1EAYs6+fdLFF5s/TzuNLX0AAAAAjo5QykF8fpckyZ2UIEnq1s3cAKA0VakiTZkivfSSdPPNdlcDAAAAoLyytacUIqs4lEpMsLkSALGub19p5kwpMdG8b1lSbq69NQEAAAAoXwilHCQQSsUd2r63dau0YYOUl2dnVQBilcsVfHviRLNd+Pvv7asHAAAAQPlCKOUgPstMd2D73uDBUpMm0gcf2FkVgFjn9UrPPCNt2SLNm2d3NQAAAADKC3pKOYjPOrR9r6JHktlWk5wsVaxoZ1UAYp3HI33zjekzNXy43dUAAAAAKC9YKeUUPp98cksKrpT66CMpJ8f0fgGAslStmjRyZHBLX0GBdNttUlaWvXUBAAAAsA+hlFMUFARDqUMrpQDALg89JD3xhDkB1OezuxoAAAAAdiCUcorQUKpSos3FAHC6Sy+VWreWHnhAcrvtrgYAAACAHegp5RSFhSErpcz2vREjpOxs6Z57pIYN7SwOgNOcfrq0aJFUIeR/oWXLpL17pe7d7asLAAAAQOSwUsopQldKJcZLkt56S3rlFWnfPhvrAuBYoYFUfr50xRXS+eebhugAAAAAYh8rpZwiNJRKMH/ec49ZKVWnjp2FAYDk90vnnWdWSnH4AgAAAOAMhFJOEbp9L978edNNdhYEAEGVKkmTJkmPPCKlpATHH3xQ6tzZrKACAAAAEFsIpRzC8nrlP2ylFACUN6GB1HffSffeK7lc0vr1UqNG9tUFAAAAoPQRSjmE/4C3+G13gls+n7R1q1mdULOmedEHAOXJqadKN98s5eSEB1K5uVJysn11AQAAACgdhFIO4dt/sPhtd4Jbu3dLp5xy6GM+QikA5U/VqtLTT0uWFRzbt09q3Fj6y1/MxypVsq08AAAAAH8QoZRD+PILit92J7h18KCUlGTCqDjOYARQjoWG5h98IO3eLS1aJFWsaF9NAAAAAP44QimH8BVv37PkcrtUr5504IA58QoAosVVV0lNmpjvX4Gwyucz2/z++lfp7LPtrQ8AAADAiSOUcghfvgml3C6/XCHLDlglBSDadOwY/v7MmdJzz0nTpkk//8yWPgAAACBaEEo5hC+/UJLkdlnHuScARJfWraW//U2qWzc8kHr9dalXLyktzbbSAAAAABwDoZRDFK+UijP79ZYvlyZNkk47TRo50sbCAOAPOuUU6fnnw8dWr5YGDTK98375xTRNBwAAAFC+sHnLIYpXSsWZlVLr1kmTJ5ttLwAQa3JzpTPPNCulQgOpOXOkXbvsqwsAAABAECulHCJw+p77UAzZooX04INmuwsAxJoOHaSFC6X9+4NjOTlS//5SUZH0/fdS06b21QcAAACAUMoxfN5DK6XcZqVUixbmBgCxLLTH1C+/SM2amaDq1FOD43PmmL5TrVsHT/QDAAAAUPbYvucQvoOB7Xs2FwIANmnWTFq8WPrmm2D4ZFnSsGFS27bSjBm2lgcAAAA4DhGFQxSHUm7zfna26avi9dpYFADYILTHVE6OCaSqV5cuuCA4/tln0iuvmI8DAAAAKBuEUg7h9/okSe5DGzb/+U+pZk3p7rttLAoAbJaaKr39ttnaF7rV77HHpGuvlZ54wr7aAAAA4CwHD0o+n91VRBahlEMEe0qZPSuBFVIVK9pVEQCUHx5P+PvduplG6FdeGRxbulQaOlRasCCipQEAACCKeb2mhcSnn4aPP/mkdO650htvBMd27DC/LHUSQimH8HmLJEnuCiaU+ve/zQlUrJQCgCPdcYe0Zo3UpElw7LXXpGeflZ5+2r66AAAAYL+CAmnFCunzz8PH//1v6fzzpalTg2NZWdKZZ0p9+ph+pgGbNklffGF+5gxIT5f27Cnb2ssbQimHODyUkkx/qfh4uyoCgPLt8JP4+veXrrnG3AJ27jQ9qR55RPL7I1kdAAAASlNhobRqlQmKQk2caHqPvvlmcGzHDnNyc69e4T8DbthgepP+8ENwLD1dqlNHatnSnAIdMGiQ9NZb0lVXBccSE811naSC3QUgMnwF5l9KXAXOOweA36NrV3ML9c470rJlUlycdOedwfGCAikhIbL1AQAAIFxhobRxo1l91LlzcPz556WZM6W//lW64goztmOHCY4qVDBb7uIOLeFZt06aO1dq1y74+enpwdv+/VJyshm/8kqpQwepTZvgfRMTpZ9/PrK2M880N6cjlHIIX8GhlVLx5l/W+PHSr79KgwdLp59uZ2UAEL0uv9yET6En+vl8ZtvfGWdIL7wg1aplX30AAACxpqhI2rxZ2r1b6tgxOP7ii9L775ufzy6/3Izt2CE1a3Zk0LRmjfTxx+bntUAolZYm1ahxZNB0+eUmkGrbNvhYCQlmW97hOnQwN5w4QimH8BUcOn3vUCg1bZpptta9O6EUAPxeVatK118fPvbtt9LWrVJenlS9enB81y7z/uHbAgEAAJzO7zeLJn77LTz8efll6YMPpIEDpcsuM2O//SadeqppR+P1mj8ls2Xugw9MCBUIpdLSpCpVTNCUlyelpJjxgQNNIBW6+ikhwbRmOFzHjuHhF0oXoZRD+ArN9r1AKHXttSaQCm3iCwD4484+W1q9Wlq/PnwLX//+0vbt0quvhi8fBwAAiGV5eVLlysH3p0+XPvlE6t1b6tvXjGVlSZmZRwZNq1ZJM2aY162BUKpmTRMu1awp5eaa0EmSLrnEBFLt2wcfKyFB2rv3yJo6dTI32I9QyiEOD6VuusnOagAgtjVrZm4Bu3eb3lMHDkj16wfHd+40S8MTEyNfIwAAQGnZulVauVKqV8/0ZZJM0NS8uQml8vODQdPXX5ueTsnJwVAqLc38PJSWJu3bF1xt3r+/CaRCey/Fx0vZ2UfWcPbZ5obowul7DlEcSiW4ba4EAJynenWzSmrWLHP6SsCdd5qeU6HHBgMAAJQXRUXhJ8YdOCANH25WJfl8wfEnn5T+/GezIjwgsJKpsND8HBTQq5c0dqxZKRVQoYJ5nJ9+Cm9/0KWLWVARuvoJsYVQyiEOD6X27jXLIi3LzqoAwDkqVzY/hAX4/ab/1L595reKAbt2SZs2Rbw8AADgEJZlgqKAoiKzcunBB80JwgH33y95PNK99wbHPB7pmWekd98Nb/TdooXUurVZ6RTgdpvtd7m5Ut26wfELLpDuu8+0kwkVRzrhSEy7Q/iKTPrkTqggv1+qVs0sjzxaIzcAQNmLi5O+/1767DPzW8CAF1+UGjWSbrnFvtqAo1m3Lvz9t96S/vQnc8okAMBe+fkm/AkoLJT+9S9p1CizGCFg3DjzOnDUqOBYXJx0880mfAp9fZiaan6J9ssvwTG324RVTz8tVawYHL/+etOqYPTo8LqaNg3vJwUcjlDKIXxFh1ZKedzKzw+OV6pkU0EAALnd0nnnhZ/It22b+eGwdevg2IED0oQJ0pYtES4QkPmN+qhR0mmnSR99FBz/7jtpzhzpxx/D7z99evgLIwDAySsqMiuRfvstOFZYKN11l3TDDdLBg8HxsWNNQHTXXcGxChXM++PHhwdNiYlmNVToWFycdOWVJlgKXa109dVm292bb4bXdtddJsSqWrV0niucjVDKIQIrpeIS3KpUyXwj2rs3PN0GANhv4kTzG8mBA4Njc+ZII0aYZe5su0akuVzm751lSV99FRy/9lpp8mTp0kuDYytXSv/3f2ZLaugvwQAAJrD/8UfTFDygoEAaNkwaMCD8++bYsabv5IMPBscqVJAee8ysqg4NlQLh0K5dwTGXy/Riuu020xg84OqrTd+ml18Or23KFPM9vVat8OtmZLCtDmWL0/ccwl9k/nR7zHek+Pjg0ZkAgPIlIyP8/UqVpG7dpLPOCq6qsizpnHOkxo2lhx+WateOeJlwkH/+02zV69kzOHb66eYWaudO6dRTTW+RpKTg+Lhxpp9I377mGG8AiBU7d5pekFWrmu9/kgmarr3WrHKaMSO4EODRR6WHHjIh1DPPmLH4eBMyFRRIjz8e7DOZlmb+zz9wIPhYLpd0++1mtVPo99jrr5cGDz7y++u//31kvdWqmRtQXhBKOUTgZAS3h9P3ACDaXHCBuYWuklq/3hypvHBh8AdbSVqyxPR/aNeO32zi95sxQ1q8WPrHP8yLqaSk8ECqJN27m1UAodv3cnNNQ9uCAtPwtkULM75jh7kuIRWA8mbbNvO9LCNDatnSjBUUSP37m6Bp/vxg0PTvf5vg/vCg6b//Nb2cdu6U6tc342lppk9T6P/PLpdZDZWUJCUnB8dvuslskXMf9vLtoYeOrJeeTYhm/LjqED7foUbnifHassUk7E89ZW9NAICTE9p7qkEDad4888Nw6A+jDzxgVlSNHx/x8hAj8vOlW281L3yefvrkP9/lCg+aCgulO+6QLrpIat48OP7QQ2ZlwaOPBscC2wQBoLRt3GgC9yVLgmNer+nt2KKFtH9/cPyFF8wvg559NjgWHy99+qm0aFF4n6e6dU3oFPp/sctlekG++mr47pRbbjGn7h6+gmn0aPOx0B5NCQlHBlJALCKUcojilVKJ8dq82SwN5bQcAIheCQlmVcqQIeHjVaqY37T26BEc++ILs83qgQciWiKiVGKieTHVtWvpnAJZrZr5u/f+++HB6ubNZlXfKacEx9avl9LTTZ8qwikAx7NmjTR1qrRgQXDM6zW/nGnQQMrLC46/+qp08cXSSy8FxxISpG+/lVavDg+aTjnF/L+ZlhYcc7lMH6aZM6UaNYLjN95oDiJ55JHw2oYMkQYNMiujQq8BIBzb9xzC5zffAd2J8apTxzS8C/1mCgCIDa++anpTVAj5H37uXOmHH6S1a8PvO2mS2ZbQsWN4E1Q4m8tltqj071+2j/PBB6apf+gLtu++M1tdfv01/MXbTTeZFVyjRh3ZxwpA9LIsKTvbfB8I/Jv/7jtzqELLlma1kmS2zrVuHezfFNjmNm2aCb2HDJE6dTJjCQlmq3B+vgmaAiuYTj1V6tBByswMPr7LZa6RnGwC8YDBg83tcFdcUapPH4AIpRwjdKXUqaealVIAgNh0eMA0fLjUqlX4iTq7d5teFZZljnsONFffudO8OEhIiFi5KCcsy2y1i+Tc16kT/v6ll0pNmpgXoKF1vf22tGeP+TsbsGyZNHu26XXVvn1k6gVwbH6/WTW0a5d05pnBoOnDD00Qfe65wWDn4EETBhUVmWAqsO139mzTh+7GG4OhVEKCOTHuwAETNAVCqebNzarhJk2CNbhcZjVTSkr4ISB//au5Ha5v39L8CgA4WWzfc4jilVJJvMoAAKepXl265BLp7LODY7m55vjpbt3CT/sbNcqEUpMnR7xM2Ow//zGrkD791L4aEhPNyr2uXYNjfr/02mvSPfdIZ5wRHJ8xwzRinzAh/Bpffx2+ZQfAySkoMKuMQt+fOtU08fb7g+Mvv2xCptD+SF6v1KiRWZGUkxMcX7LEtA753/+CY4mJwRB8167geNu2Jrg666zwuubMkb7/Pnyl08CBpr/iyJHh9+3Z09SQmHhyzx1A5LFSyiF8fpM/upMSVFhofoNQgdkHAMdq0MBsWTjcjz+a316H/tC/fLn57XKfPtK//hWpChFJlmVWUa9fb7bOhPYks5vbLV14obmFat1a+r//M38vA/bskbp0MT/j7NwZ3mAYcArLCt/+um6d2b7dsGFw+2tenjktbt8+6b33gqfB3X67+V5wxx3BHkmWFVxh9Ne/Bv9d/fyz6VnYtGnwsZKSpJo1zZ+5ucHtueedZ/7s0CG81g0bzPWSkoJjF11kbofr0uUkvxAAogKxhEP4rEMrpTwJevJJ8x/NtdeGN/oDAODbb00wUbducOzLL01PqtCgSjLbApOTzRaL0Psj+rhc0uefm5N5R42yu5oTc/HF5hbqp5/MKVhJSeGB1LBhJnC96y6z1QeIFn6/tGOHtHdv+OmVM2eaf7M9ewYD2127zCly2dlmm1sgaHr2WbOiMDRoio83KxAls6Ip8O8l0H9p797gY3k8Uu/eUqVKZqtdQP/+0mmnhYdSUnjD8ICuXcNXQAaEbisH4EyEUg7hsw6tlKqYUHzcKctZAQCHc7lMM9hQV1xhAqnQ464LC6XnnjNbNQYNCo7/73/S/PnmhVLnzhEpGaUkNVW69167q/hj2rQx/Wyys4NjlmV62WzbZo5dD9iyRfrkE/N3tWHDSFcKJzt40KxIzM6W/vKX4Pjzz5uw6YorgiuTduwwfZHi4sz33UDQ9L//mRA5MTEYSiUnBwOh0KCpSRPT3yl0q7bHIz32mOm7FNpHbsQI6dZbg/2dAmbNOvJ5nH46Bw8A+OMIpZzAskJCKY/uvlv6+9/NcngAAI6nenWpX7/wsaIi6cknTX+PRo2C4zNnmvFdu4KhlGWZ05GaNzcvwDyeiJWOE/Djj2a1QywJPdFPMuHT3Lnh239mzjSr/Xr2NB8POHBAqlgxImUiihUVmYOEAt/PcnNNX7a8vPD+RvffL73+uvnZ+5ZbzNi+faafn8tlgqbAz+Q//ih9/LE5dS6gRg3z8WrVwrfD9ehhAqlu3YL39XjM9+QqVcJDpaFDze1wR1sVeXgYBQBljVDKCXw++WT+t3NX9Cg+3vzHBgDA75WUJN1005HjXbqYk/169gyObd1qTlKKjw9vQP3hh9Kvv5rtVI0bl3nJOIpPPzVz9de/mq08oX1oYoXLZUK3w4O3jAzz9zW0J5XXa46Fb9bMrAypUSOytcI++/ZJWVlS1arm74Bkvpc98ogJKidODN73ppvMStFHHjFb4iRznxtvNH/fQn/5m50tbdxoVuoFVK9utrzVqGEaigdWoQ4YYJr5t2kTvG98vGk0HnfY8VR9+oT/3Q0IDbQAIBoQSjlBQUFYKAUAQFnp39/cQvn90vXXmxdtodtEJk+W3n/fbEG59VYztmePOaGpTRupV6/I1e1U335rXkRXqxabgdSxDBxobqGWLjXB6bZtJjgIeOghac0aEzqcc05k68SJO7zB9/ffmybfLVqYoFGStm+XhgwxAeTs2cH7jhghTZkSHjT5fKbpt8tlvk8FDgkKrKQLPTGuWjXTnLtGDXPtwH2GDDEN+UO3iMbHm1VRh+vUydwOd3ggBQCxhFDKCQoK5Neh7XuVEjV1qrRpk/mPs3Vre0sDAMS+hg1NAHW4s882vVVCj/1eulQaM8ZsCdywITj+xhsm3OrZk8a4penuu83PA3Xq2F1J+dCpkzlRbNOm8HBj5kxp0aLwE8FWrzbb/zp2NNtTA/x+QoTSkJ8vrVxpAp7QIPDtt6VvvpH69g2e6LZ5c/BUt9Am2xMmSK+8Io0bFwyl3G4ThrtcZgteIGiqUcNse/P7g59frZp0223mYz5f8L7/+Id0551mVVVAfLy57uFOPfXIPn0AgCBCKScoLAxbKTV1qtmvnplJKAUAsM/o0eGNpyXTz+Syy8Ib8krmReXq1WZLVSCUWrtWmjHDvBgN7auCk9Oqld0VlC916hwZ0j38sAlCQntSrVhh+lQdOBAeSp1zjmmi/sYbwdBkyxZpzhzTcDr09L/QUCSaFRWZr0NoP6KFC01Y1K5dcHvutm2mx1J8vDkRLuDGG6W33pIefdS8LZlwsEMH00Np377gfWfPNkFTenrw61u5srRzp3nb5wtunWve3MxH6PeT6tVNQ/HDt2b+61+m8XeoChXMSqnDha6iAwD8MTHw3yCOK3T7nqeCLrzQBFKB3xgBAFBenHWWaRYcyrLMVr6aNcMDlPnzzWqFP/0pPJR6/HGzwqFfP3ooluTLL82WJr4+J6ZHD3ML1bmz9OKLRzaG3rzZbBELHf/uO7ONq2vX8FCqfXuzvezDD4PjX35pVrC1aWNW+gQ88YTpeXTDDSbcksxqwrffNqezXXNN8L7//a+5b58+0imnmLGff5bee8/M+ZVXBu/73nvSTz9JvXubPkeB6z78sFkJNH588L633CJ99pnZzhg4/GDpUhM81atnrhPwyCPm2pMmBUOpAwekl14yQVNoKFVYaHovhYZPqanmmlWqhG/L69PHBFKh29yqVTNb9apVC1+lNmrUkc283W7pb3/TEZy2fRUAygtCKScIDaUS3Bo2zOZ6AAA4CS6XeUF+uAYNzKqqwLYdyaySuOcesy2wa9dg6PLll+Z23nlH79niJDk5pu9XYaE5Vp6VUr9P/frSddcdOb5ihQlnmjcPjtWoYbb+Hd6Eeu9es02tUqXg2K+/Sl98cWRI8tpr5to9egRDqbVrpbvuMuFWaCj15JNmZVfdusFQasMG07utefPwUGrSJNPwPi0tGErt2WNWI9WrFx5KbdtmViyGbpFLSjJ/5uSE13vGGeb5paUFxzIyTNh1+OmI999vtu0GGoxL5vNCQ66ASy4xt1BuNw2+ASBaEUo5gD//oKxDPaXi4mlyAACIDb16HdkMPT/fnIy1Zk3wxbhkegKNHy/dfHMwlLIss4ritNPM6XOBF9ex7tdfzRbIggKzWgqlq2ZNcwt1/vnmdrgVK0xwE9onrXNns/optF+RJA0ebEKhevWCY3XrmmCsfv3w+3bvblZP1a4dHEtLM6e71a0bft/zzjP1ZmYGx+rXN+HR4dvUxo41J8uFnmTYpIlp+J2cHH7f++478vmmpprw6XChjw0AcBaXZVmW3UVEUk5OjlJTU5Wdna2Uw9dbx6jCxSv08JkzJEl35typ+EoeGnACABzlnXdM/6lLLpEuvtiMbd1qXnxXqGBOXPMcOqD27bfNCpQ//zn8aPZY4vOZcIowAAAAlIUTzV5YKeUAvv0Hi992J7iVnm5++F62LPw3XQAAxKpLLzW3UG63OVkrJycYSEnSm2+alVUpKcFQat8+0wS5fXvTSyca+88UFZnn7HKZPwmkAACA3QilHMB3wFv8tjverbw802sjMdHGogAAsFmdOkc/WatvX7PNqHPn4NiSJWY7U8OGwZVWkmkoHRcnnXtu+T6RKzvbrBI791zTRBsAAKA8IJRyAF9+gSQpTn654lzautWcfnL4cccAAMD07hk8OHysenXp+uuPDJ7uu0/64Qfpgw/Mdj9JWr/enKZ25plSly4RKfm4PvrINLP+9lvTgyi0hxEAAIBdCKUcwH/AbN9zu/ySjmy+CQAAjq11a2ny5PAxyzKhU0KC1K5dcPzzz6WRI6U//Un6+OPg+KBB5s/77gs2Yc/PNyutQrcPloUrrjAnmfXqRSAFAADKD9pdO4Ave78kyR3nqJ72AACUKZdLeu45aenS8KAnM1P6v/8LP23NssxWv9dfl/z+4Pjrr5tT/666Kvza48aZ0wL37AmO7d5tVmHt3Xv82rZvN83dvcEd/BozRmrb9uSeIwAAQFkilHIAX3auJMnttrRnj/TQQ9LEiTYXBQBAjOrd2wRQo0YFx/x+6aWXTNgU2mB82zYTWIUeSmNZ0oMPms/Pzg6OT50qnXqqdNNN4Y939tmmIfvu3cGxKVOkAQPMNsTQEAwAAKA8YfueA/hyDq2Ucrv066+mwWnNmtKwYTYXBgCAQ7jd0uWXHzn+wAPSrbeGB0c+n3TjjdKOHVK1asFxv19KTjZN2EMtX256RW7fHux51bChOWG3Zk1z6l5CQqk/JQAAgD+MUMoBfNl5kqQ4t0vJyaZRa1KSzUUBAAC5XEf2eqxQQXryySPvO3y4uVmH7cb/5BMpN1eqWzc4dtll5gYAAFCeEUo5gFkp5dHBwjgdXLFWkyc3tbskAADwO7lc4e+ffbY9dQAAAPxR9JRygM0bCiVJB70uTes7TWvfX2tzRQAAAAAAwOkIpRzg118Cv1J1yeV2acv8LXaWAwAAAAAAQCjlBFU9+4vfXuY7QxdP6qkrrrCxIAAAAAAA4HiEUg5Q1Z0jSaqeEa/T/9ZJ+d44FRXZXBQAAAAAAHA0Gp07gHe/T5JUv1WqrhmfrsF3cDQ0AAAAAACwF6GUA3jzTSjlqZqkypWlypVtLggAAAAAADge2/ccwOs1f3qqVrK3EAAAAAAAgENYKeUABV5z+p6nemXNmSOtXSt16SK1bWtzYQAAAAAAwLFYKRXrfD55fW5JkqdmsqZOlf7+d+mzz2yuCwAAAAAAOBorpWJdXp4OKlGS5ElLVceOUkGB1Ly5zXUBAAAAAABHI5SKdTk58sojSUqskayhl0lDh9pcEwAAAAAAcDy278W6kFDKk+KxuRgAAAAAAACDUCrW5eYSSgEAAAAAgHKHUCrGWdnZYaHUmWdKGRnSd9/ZXBgAAAAAAHA0QqkYV7QrW9ahafakeLRjh7Rjh+R221wYAAAAAABwNBqdx7iDv+VIklyyFF8pXvPnS7m5UpMm9tYFAAAAAACcjVAqxnl3mlDKE++Xy+XSKafYXBAAAAAAAIDYvhfzvHvyJEkej2VzJQAAAAAAAEGEUjHOu/eAJMmT6JLXKz3zjPTKK5LPZ3NhAAAAAADA0QilYpx3X74kyZPk1r590i23SNddJ8Ux8wAAAAAAwEb0lIpx3myvJMlTya24OOmSS8wqKZfL5sIAAAAAAICjEUrFOG9eoSTJUzlBNWtK77xjc0EAAAAAAABi+17M8+YVSZI8qR6bKwEAAAAAAAgilIpx3nzT0dyTmmhzJQAAAAAAAEGEUjHOe9CSJHmqVtScOVKdOqavFAAAAAAAgJ3KRSg1ceJENWjQQImJierQoYMWLlxY4n2nTJkil8sVdktMZBVQSbymz7k81Str717p11+l3bvtrQkAAAAAAMD2RudvvfWWRo4cqeeee04dOnTQhAkT1KtXL61du1ZpaWlH/ZyUlBStXbu2+H0XR8mVyFtockdPjWT96U/SkiWSh/ZSAAAAAADAZravlHriiSd0ww03aPDgwWrevLmee+45VaxYUS+//HKJn+NyuZSRkVF8S09PL/G+Xq9XOTk5YTfHKCiQ1x8vSfKkpapKFaltW6lFC3vLAgAAAAAAsDWUKigo0JIlS9SjR4/isbi4OPXo0UMLFiwo8fPy8vJUv359ZWZmqm/fvvrhhx9KvO+4ceOUmppafMvMzCzV51Cu5ebKK7MsypOeanMxAAAAAAAAQbaGUrt27ZLP5ztipVN6erqysrKO+jlNmzbVyy+/rJkzZ+qNN96Q3+9X586d9fPPPx/1/mPGjFF2dnbxbdu2baX+PMqt0FCqakUtWiS99pq0bJnNdQEAAAAAAMezvafUyerUqZM6depU/H7nzp3VrFkzPf/883rwwQePuL/H45HHqU2UcnKCoVSKR9NelJ54Qho9WmrTxubaAAAAAACAo9m6UqpGjRpyu93asWNH2PiOHTuUkZFxQteIj49XmzZttGHDhrIoMapZ2dlhodSpp0q9ekmnnWZzYQAAAAAAwPFsDaUSEhLUrl07zZs3r3jM7/dr3rx5YauhjsXn82nlypWqVatWWZUZtYp2ZcsvtyQTSt14ozR7tjR4sM2FAQAAAAAAx7N9+97IkSN19dVXq3379jrrrLM0YcIE7d+/X4MPJSeDBg1SnTp1NG7cOEnSAw88oI4dO6px48bat2+fHnvsMf3000+6/vrr7Xwa5ZL3t+xDb1lKqJxgay0AAAAAAAChbA+lBg4cqJ07d+ree+9VVlaWWrdurdmzZxc3P9+6davi4oILuvbu3asbbrhBWVlZqlq1qtq1a6dvvvlGzZs3t+splFvenTmSJE8Fn1wul83VAAAAAAAABLksy7LsLiKScnJylJqaquzsbKWkpNhdTpn6dcRjmjzhgFIqFmrE/n/q0kullSulZ56RevSwuzoAAAAAABCLTjR7sbWnFMqWd89+SZLHY1ZJbdokrV0rFRbaWRUAAAAAAEA52L6HsuPde0BSJXmSTCj16qvS7t1Sy5b21gUAAAAAAEAoFcMOZnslVZKnkpnm00+3tx4AAAAAAIAAtu/FMG+uV5KUWDne5koAAAAAAADCEUrFMG+eaR6VkJwgSXrzTem996SDB+2sCgAAAAAAgO17Mc17wCdJ8qQmyueTrrzSjO/aJSUm2lgYAAAAAABwPEKpGObNtyRJnqpJKiiQevSQDhyQKlWyuTAAAAAAAOB4hFIxrODgoVCqWiUlJUlz59pcEAAAAAAAwCH0lIphBwvN9CZWr2xzJQAAAAAAAOEIpWKVZclb6JYkeWqm2lwMAAAAAABAOEKpWHXwoLwyp+550lO1fLnUooV08cX2lgUAAAAAACDRUyp25ebKK48kyZOWqi27pdWrpThiSAAAAAAAUA4QSsWqnJxgKFUlSW2bSZ99JsXH21wXAAAAAACACKVilpWdHQylUjxKqSqdd57NRQEAAAAAABzCZq4YVbQ7W34danSe6rG5GgAAAAAAgHCslIpR3qx9h96ylFApQevWSWvWSKecIrVsaWdlAAAAAAAArJSKWd6d2ZIkj9snV5xL06dL/fpJTz5pb10AAAAAAAASoVTM8u7KkyR5EvySpPR0qUMHqUkTO6sCAAAAAAAw2L4Xo7x7AqGUeX/wYHMDAAAAAAAoD1gpFaO8ew5IkjxJLpsrAQAAAAAAOBKhVIzyZh+UJHkqum2uBAAAAAAA4EiEUjHKm+OVJHkqmR2aI0aYnlLvv29nVQAAAAAAAAahVIzy5hZIkjzJpqnU6tXSwoXSvn02FgUAAAAAAHAIoVSM8h7wSZI8KR5J0kMPSTNnSuedZ2dVAAAAAAAABqfvxajiUKpKkiSpfXs7qwEAAAAAAAjHSqkY5TV9zuWpVsneQgAAAAAAAI6ClVIxylvgkhQMpT79VIqLM83OK5FTAQAAAAAAm7FSKkZ5C83UemqmSJIGDJDOP1/ats3OqgAAAAAAAAxWSsUiy5LX55YkedJSJUktWkh790opKXYWBgAAAAAAYBBKxaL9++WVOXXPk25CqS+/tLMgAAAAAACAcGzfi0U5OcFQqiZLowAAAAAAQPlDKBWDrOxsHVSiJCmxSpLN1QAAAAAAAByJUCoG+XZny69DPaVSPNq2TercWerb1+bCAAAAAAAADqGnVAzyZu0tfjuhcoL2bpEWLJDS0+2rCQAAAAAAIBShVAzy7syRJCW4i+SKc6lePem99ySXy+bCAAAAAAAADiGUikGBUMpTwSdJqlJF6tfPvnoAAAAAAAAOR0+pGOTdnSdJ8iRYNlcCAAAAAABwdKyUikEH9xyQJCUmmv16K1ZIe/ZIzZpJGRl2VgYAAAAAAGCwUioGefeZUMqTZKb36ael7t2lyZPtrAoAAAAAACCIUCoGebO9kiRPJbMQrmZNqWlTqVEjO6sCAAAAAAAIYvteDPLmFkiSEpLjJUnjxpkbAAAAAABAecFKqRjk3V8oSfIke2yuBAAAAAAA4OgIpWKQ94BPkpRYJdHmSgAAAAAAAI6OUCoGefMtSZKnakX98IPUurV09dX21gQAAAAAABCKnlIxyGv6nMtTrZI2bZJWrJAqMNMAAAAAAKAcIaqIQd4CswDOUz1ZnTpJH30kud02FwUAAAAAABCCUCoGeX0mgfKkpahGDalPH5sLAgAAAAAAOAw9pWKNzyevP16S5ElLtbkYAAAAAACAo2OlVKzJzZVXHkmSp1ZVffyxlJgotWsnpaTYXBsAAAAAAMAhrJSKNaGhVI1kDRkide8urV5tc10AAAAAAAAhWCkVY4p27ZXv0LQmJHvUooWUlCTVq2dzYQAAAAAAACEIpWKMd/ve4rc9yQmaNcvGYgAAAAAAAErA9r0Y4/0tW5KUEFeoODfTCwAAAAAAyidSixjj3WlCKU8Fn82VAAAAAAAAlIxQKsZ4d+ZKkjwJliZNklq3lsaPt7cmAAAAAACAwxFKxRjv3gOSJI9H+vFHacUKadcum4sCAAAAAAA4DI3OY0xxKJXo0siRUu/enLwHAAAAAADKH0KpGOPdly8pUZ6KFdSggdSggc0FAQAAAAAAHAXb92JM8Uqp5HibKwEAAAAAACgZoVSM+XVjviRpn1L16qvS559LlmVzUQAAAAAAAIdh+14MWfveaq3JriNJWrw0Ts9cI1WuLOXk2FsXAAAAAADA4QilYsjm95ZJsiS5JJdbbTJ3qXbLGnK57K4MAAAAAAAgHNv3YkiDGvslmQSqhrVT/3l6tz780N6aAAAAAAAAjoZQKobUzNssSXK5LA2YPkBN/9LU5ooAAAAAAACOjlAqhmxfuE2SVLt+gppd3MzmagAAAAAAAEpGKBVDsjbulyRltE7XgAFS69bSp5/aWxMAAAAAAMDREErFil27lJVXWZKUcd5pWrlSWrFCimOGAQAAAABAOcTpezHCWr5c21VLklSrUwNN7ylt2SK1aWNvXQAAAAAAAEdDKBUjcr9coQOqJJfLUnrLdNVJlJrRVgoAAAAAAJRTbO6KEdu/2iBJqlnTpQqJZI0AAAAAAKB8I5SKEVmr90qSMppX1bp10quvSosX21wUAAAAAABACQilYkFhobJ2mKnMOLuR5s6VrrlGevhhe8sCAAAAAAAoCfu8YsHatdpupUuSap3fXOm7pZ49pTPPtLkuAAAAAACAEhBKxYD8r5cqW1UkSRltaumSKtIll9haEgAAAAAAwDGxfS8GZH22WpJUNcWnxCqJNlcDAAAAAABwfIRSMWD78h2SpIzGlWyuBAAAAAAA4MQQSsWArK2FkqSMMzPl80lpaVLr1tKePfbWBQAAAAAAUBJ6SkW7337T9oNVJEm1Lmip7dulnTulvXul1FR7SwMAAAAAACgJoVSUK1y4TLtVXZKU0amBEmtIK1dKv/0mud02FwcAAAAAAFACQqkot+OTFbIUp0qeQiXXSpYknX66zUUBAAAAAAAcBz2lotz277ZKkmplxttcCQAAAAAAwIljpVSU275hv6SaymidLkl6+20pP1/q0kVq1Mje2gAAAAAAAEpCKBXNCgqUtdcjSarVvZl27pSuvlo6eFCaP59QCgAAAAAAlF+EUlHMt3K1frNqSpIyep6uCh7p3nulBQukrl1tLg4AAAAAAOAYCKWi2K45S+RTBXncRap6SjW54qQxY+yuCgAAAAAA4PhodB7Ftn+5QZKUkW7JFeeyuRoAAAAAAIATRygVxdYs3i9JSqheWbfdJi1caHNBAAAAAAAAJ4hQKkqtfX+t1u2qLkn6eGVdPfGEdP75Ul6ezYUBAAAAAACcAHpKRanNn26UZElyqaorWz2a/aK2f66jypXtrgwAAAAAAOD4WCkVpep3ayjJJbmk6tYuPTMuT48+andVAAAAAAAAJ4aVUlGqWf9mumzmZdoyf4sadGugpn9pandJAAAAAAAAJ4xQKoqlnNlU3yxpqtYd7K4EAAAAAADg5LB9L4pNnCg98IB0+eV2VwIAAAAAAHByykUoNXHiRDVo0ECJiYnq0KGDFi5ceMz7v/POOzrttNOUmJioli1batasWRGqtHzp2FHq0EG6+Wa7KwEAAAAAADg5todSb731lkaOHKmxY8dq6dKlatWqlXr16qXffvvtqPf/5ptvdPnll+u6667TsmXL1K9fP/Xr10+rVq2KcOX2+/OfpQULpIsvtrsSAAAAAACAk+OyLMuys4AOHTrozDPP1DPPPCNJ8vv9yszM1C233KI777zziPsPHDhQ+/fv14cfflg81rFjR7Vu3VrPPffccR8vJydHqampys7OVkpKSuk9EQAAAAAAAJxw9mLrSqmCggItWbJEPXr0KB6Li4tTjx49tGDBgqN+zoIFC8LuL0m9evUq8f5er1c5OTlhNwAAAAAAANjL1lBq165d8vl8Sk9PDxtPT09XVlbWUT8nKyvrpO4/btw4paamFt8yMzNLp3gAAAAAAAD8brb3lCprY8aMUXZ2dvFt27ZtdpcEAAAAAADgeBXsfPAaNWrI7XZrx44dYeM7duxQRkbGUT8nIyPjpO7v8Xjk8XhKp2AAAAAAAACUCltXSiUkJKhdu3aaN29e8Zjf79e8efPUqVOno35Op06dwu4vSXPnzi3x/gAAAAAAACh/bF0pJUkjR47U1Vdfrfbt2+uss87ShAkTtH//fg0ePFiSNGjQINWpU0fjxo2TJP3973/Xueeeq/Hjx+vCCy/UtGnTtHjxYr3wwgt2Pg0AAAAAAACcBNtDqYEDB2rnzp269957lZWVpdatW2v27NnFzcy3bt2quLjggq7OnTvrzTff1N13361//OMfatKkiWbMmKHTTz/drqcAAAAAAACAk+SyLMuyu4hIysnJUWpqqrKzs5WSkmJ3OQAAAAAAADHlRLOXmD99DwAAAAAAAOUPoRQAAAAAAAAijlAKAAAAAAAAEUcoBQAAAAAAgIgjlAIAAAAAAEDEEUoBAAAAAAAg4gilAAAAAAAAEHGEUgAAAAAAAIg4QikAAAAAAABEHKEUAAAAAAAAIo5QCgAAAAAAABFHKAUAAAAAAICII5QCAAAAAABAxBFKAQAAAAAAIOIIpQAAAAAAABBxhFIAAAAAAACIOEIpAAAAAAAARByhFAAAAAAAACKOUAoAAAAAAAARRygFAAAAAACAiCOUAgAAAAAAQMQRSgEAAAAAACDiCKUAAAAAAAAQcYRSAAAAAAAAiDhCKQAAAAAAAEQcoRQAAAAAAAAijlAKAAAAAAAAEUcoBQAAAAAAgIgjlAIAAAAAAEDEEUoBAAAAAAAg4irYXUCkWZYlScrJybG5EgAAAAAAgNgTyFwCGUxJHBdK5ebmSpIyMzNtrgQAAAAAACB25ebmKjU1tcSPu6zjxVYxxu/369dff1VycrJcLpfd5ZywnJwcZWZmatu2bUpJSbG7HEQY8+9czL2zMf/Oxvw7G/PvbMy/czH3zhZL829ZlnJzc1W7dm3FxZXcOcpxK6Xi4uJUt25du8v43VJSUqL+Lyd+P+bfuZh7Z2P+nY35dzbm39mYf+di7p0tVub/WCukAmh0DgAAAAAAgIgjlAIAAAAAAEDEEUpFCY/Ho7Fjx8rj8dhdCmzA/DsXc+9szL+zMf/Oxvw7G/PvXMy9szlx/h3X6BwAAAAAAAD2Y6UUAAAAAAAAIo5QCgAAAAAAABFHKAUAAAAAAICII5QCAAAAAABAxBFKHWbcuHE688wzlZycrLS0NPXr109r164Nu8/Bgwc1bNgwVa9eXZUrV9b//d//aceOHcUfX7FihS6//HJlZmYqKSlJzZo101NPPRV2jenTp6tnz56qWbOmUlJS1KlTJ82ZM+e49VmWpXvvvVe1atVSUlKSevToofXr14fdZ926derbt69q1KihlJQUdenSRZ9//vlxr/3999/rnHPOUWJiojIzM/Wvf/0r7OOTJ0/WOeeco6pVq6pq1arq0aOHFi5ceNzrRhPmv+T5nz59utq3b68qVaqoUqVKat26tV5//fXjXjdaMPclz32oadOmyeVyqV+/fse9bjRh/kue/ylTpsjlcoXdEhMTj3vdaML8H/vf/759+zRs2DDVqlVLHo9Hp556qmbNmnXca0cL5r/k+e/WrdsR//5dLpcuvPDC4147WjD/x/73P2HCBDVt2lRJSUnKzMzUiBEjdPDgweNeOxow9yXPfWFhoR544AE1atRIiYmJatWqlWbPnn3c60YTp87/wYMHdc0116hly5aqUKFCiT/Tz58/X23btpXH41Hjxo01ZcqU49b8u1kI06tXL+uVV16xVq1aZS1fvtzq06ePVa9ePSsvL6/4PkOGDLEyMzOtefPmWYsXL7Y6duxode7cufjjL730knXrrbda8+fPtzZu3Gi9/vrrVlJSkvX0008X3+fvf/+79eijj1oLFy601q1bZ40ZM8aKj4+3li5desz6HnnkESs1NdWaMWOGtWLFCusvf/mL1bBhQys/P7/4Pk2aNLH69OljrVixwlq3bp01dOhQq2LFitb27dtLvG52draVnp5uXXnlldaqVaus//znP1ZSUpL1/PPPF9/niiuusCZOnGgtW7bMWrNmjXXNNddYqamp1s8//3xSX+PyjPkvef4///xza/r06dbq1autDRs2WBMmTLDcbrc1e/bsk/oal1fMfclzH7B582arTp061jnnnGP17dv3RL6sUYP5L3n+X3nlFSslJcXavn178S0rK+ukvr7lHfNf8vx7vV6rffv2Vp8+fayvvvrK2rx5szV//nxr+fLlJ/U1Ls+Y/5Lnf/fu3WH/9letWmW53W7rlVdeOZkvcbnG/Jc8/1OnTrU8Ho81depUa/PmzdacOXOsWrVqWSNGjDipr3F5xdyXPPejR4+2ateubX300UfWxo0brUmTJlmJiYnHrTmaOHX+8/LyrCFDhlgvvPCC1atXr6P+TL9p0yarYsWK1siRI63Vq1dbTz/9dJm+7iOUOo7ffvvNkmT973//syzLsvbt22fFx8db77zzTvF91qxZY0myFixYUOJ1hg4dap133nnHfKzmzZtb999/f4kf9/v9VkZGhvXYY48Vj+3bt8/yeDzWf/7zH8uyLGvnzp2WJOuLL74ovk9OTo4lyZo7d26J1540aZJVtWpVy+v1Fo/dcccdVtOmTUv8nKKiIis5Odl69dVXj/m8ohnzX/L8W5ZltWnTxrr77ruPeZ9oxdyHz31RUZHVuXNn68UXX7SuvvrqmAulDsf8B+f/lVdesVJTU4/5HGIN8x+c/2effdY65ZRTrIKCgmM+j1jC/Jf8f/+TTz5pJScnh71oizXMf3D+hw0bZnXv3j3s80aOHGmdffbZx3xe0Yq5D859rVq1rGeeeSbs8/r3729deeWVx3xe0cwp8x+qpJ/pR48ebbVo0SJsbODAgVavXr1O6Loni+17x5GdnS1JqlatmiRpyZIlKiwsVI8ePYrvc9ppp6levXpasGDBMa8TuMbR+P1+5ebmHvM+mzdvVlZWVthjp6amqkOHDsWPXb16dTVt2lSvvfaa9u/fr6KiIj3//PNKS0tTu3btSrz2ggUL1LVrVyUkJBSP9erVS2vXrtXevXuP+jkHDhxQYWHhMWuOdsz/0effsizNmzdPa9euVdeuXUu8bjRj7sPn/oEHHlBaWpquu+66Eq8VS5j/8PnPy8tT/fr1lZmZqb59++qHH34o8ZqxgPkPzv/777+vTp06adiwYUpPT9fpp5+uhx9+WD6fr8TrRjvmv+Sf/V566SVddtllqlSpUonXjXbMf3D+O3furCVLlhS369i0aZNmzZqlPn36lHjdaMbcB+fe6/UesVU/KSlJX331VYnXjXZOmf8TsWDBgrDHlszfkWM97z+iQplcNUb4/X4NHz5cZ599tk4//XRJUlZWlhISElSlSpWw+6anpysrK+uo1/nmm2/01ltv6aOPPirxsR5//HHl5eVpwIABJd4ncP309PQSH9vlcunTTz9Vv379lJycrLi4OKWlpWn27NmqWrXqMa/dsGHDI64b+NjRPveOO+5Q7dq1j/gLGyuY/yPnPzs7W3Xq1JHX65Xb7dakSZPUs2fPEq8brZj78Ln/6quv9NJLL2n58uUlXieWMP/h89+0aVO9/PLLOuOMM5Sdna3HH39cnTt31g8//KC6deuWeO1oxfyHz/+mTZv02Wef6corr9SsWbO0YcMGDR06VIWFhRo7dmyJ145WzH/JP/stXLhQq1at0ksvvVTiNaMd8x8+/1dccYV27dqlLl26yLIsFRUVaciQIfrHP/5R4nWjFXMfPve9evXSE088oa5du6pRo0aaN2+epk+fHrO/kHDS/J+IrKysoz52Tk6O8vPzlZSU9IeufzhWSh3DsGHDtGrVKk2bNu13X2PVqlXq27evxo4dqwsuuOCo93nzzTd1//336+2331ZaWpokaerUqapcuXLx7csvvzyhx7MsS8OGDVNaWpq+/PJLLVy4UP369dNFF12k7du3S5JatGhRfN3evXv/ruf1yCOPaNq0aXrvvfdiruFtAPN/pOTkZC1fvlyLFi3SQw89pJEjR2r+/PkndY1owNwH5ebm6qqrrtLkyZNVo0aNE/qcaMf8h+vUqZMGDRqk1q1b69xzz9X06dNVs2ZNPf/88yd8jWjC/Ifz+/1KS0vTCy+8oHbt2mngwIG666679Nxzz53wNaIJ81+yl156SS1bttRZZ531uz4/GjD/4ebPn6+HH35YkyZN0tKlSzV9+nR99NFHevDBB0/4GtGCuQ/31FNPqUmTJjrttNOUkJCgm2++WYMHD1ZcXGzGB8y/zcpkU2AMGDZsmFW3bl1r06ZNYePz5s2zJFl79+4NG69Xr571xBNPhI398MMPVlpamvWPf/yjxMcJNJb78MMPw8ZzcnKs9evXF98OHDhgbdy40ZJkLVu2LOy+Xbt2tW699VbLsizr008/teLi4qzs7Oyw+zRu3NgaN26cZVmWtWXLluLrBpqUX3XVVUfsJ/3ss88sSdaePXvCxh977DErNTXVWrRoUYnPK9ox/yXPf6jrrrvOuuCCC0r8eDRi7sPnftmyZZYky+12F99cLpflcrkst9ttbdiwocTnGI2Y/xP7t3/JJZdYl112WYkfj1bM/5Hz37VrV+v8888Pu8+sWbMsSWH9SGIB81/yv/+8vDwrJSXFmjBhQonPK9ox/0fOf5cuXaxRo0aF3SfQyNnn85X4HKMNc1/yv/38/Hzr559/tvx+vzV69GirefPmJT6/aOW0+Q9VUk+pc845x/r73/8eNvbyyy9bKSkpJT6/P4JQ6jB+v98aNmyYVbt2bWvdunVHfDzQ8Oy///1v8diPP/54RMOzVatWWWlpadbtt99e4mO9+eabVmJiojVjxowTri0jI8N6/PHHi8eys7PDGp69//77VlxcnJWbmxv2uaeeeqr10EMPlXjtQMO70EamY8aMOaLZ5aOPPmqlpKQcs7lbNGP+jz3/hxs8eLB17rnnnlD95R1zf/S5z8/Pt1auXBl269u3r9W9e3dr5cqVMfOilPk/8X/7RUVFVtOmTWPm9CXLYv6PNf9jxoyx6tevH/YCdMKECVatWrVOqP5owPwf/9//K6+8Ynk8HmvXrl0nVHc0Yf5Lnv+2bdtao0ePPuI5JCUlWUVFRSf0HMoz5v7E/+8vKCiwGjVqZI0ZM+aE6o8GTp3/UMdqdH766aeHjV1++eVl1uicUOowN910k5WammrNnz8/7AjcAwcOFN9nyJAhVr169azPPvvMWrx4sdWpUyerU6dOxR9fuXKlVbNmTeuvf/1r2DV+++234vtMnTrVqlChgjVx4sSw++zbt++Y9T3yyCNWlSpVrJkzZ1rff/+91bdv37CjIXfu3GlVr17d6t+/v7V8+XJr7dq11qhRo6z4+PhjHt+8b98+Kz093brqqqusVatWWdOmTbMqVqwYdjToI488YiUkJFj//e9/w2o+/B9CNGP+S57/hx9+2Prkk0+sjRs3WqtXr7Yef/xxq0KFCtbkyZNP+utcHjH3Jc/94WLx9D3mv+T5v//++605c+ZYGzdutJYsWWJddtllVmJiovXDDz+c9Ne5vGL+S57/rVu3WsnJydbNN99srV271vrwww+ttLQ065///OdJf53LK+b/+N//u3TpYg0cOPCEv6bRhPkvef7Hjh1rJScnW//5z3+sTZs2WZ988onVqFEja8CAASf9dS6PmPuS5/7bb7+13n33XWvjxo3WF198YXXv3t1q2LDhEauGoplT59+yzMquZcuWWRdddJHVrVs3a9myZWGrsjZt2mRVrFjRuv322601a9ZYEydOtNxutzV79uyT+RKfMEKpw0g66u2VV14pvk9+fr41dOhQq2rVqlbFihWtiy++2Nq+fXvxx8eOHXvUa9SvX7/4Pueee+5R73P11Vcfsz6/32/dc889Vnp6uuXxeKzzzz/fWrt2bdh9Fi1aZF1wwQVWtWrVrOTkZKtjx47WrFmzjvvcV6xYYXXp0sXyeDxWnTp1rEceeSTs4/Xr1z9qzWPHjj3utaMF81/y/N91111W48aNrcTERKtq1apWp06drGnTph33utGCuS957g8Xi6EU81/y/A8fPtyqV6+elZCQYKWnp1t9+vSxli5detzrRhPm/9j//r/55hurQ4cOlsfjsU455RTroYceiolVEgHM/7HnP7Ay4JNPPjnu9aIR81/y/BcWFlr33Xef1ahRIysxMdHKzMy0hg4dGjPBBHNf8tzPnz/fatasmeXxeKzq1atbV111lfXLL78c97rRxMnzX9Lr+lCff/651bp1ayshIcE65ZRTwr4upc1lWZYlAAAAAAAAIIJis30+AAAAAAAAyjVCKQAAAAAAAEQcoRQAAAAAAAAijlAKAAAAAAAAEUcoBQAAAAAAgIgjlAIAAAAAAEDEEUoBAAAAAAAg4gilAAAAAAAAEHGEUgAAIKZcc8016tevn91llCv33HOP/va3vxW/361bNw0fPty+go6hY8eOevfdd+0uAwAAREAFuwsAAAA4US6X65gfHzt2rJ566ilZlhWhio7ummuu0b59+zRjxgxb65CkrKwsPfXUU1q5cqXdpZyQu+++WyNGjNDFF1+suDh+fwoAQCzjf3oAABA1tm/fXnybMGGCUlJSwsZGjRql1NRUValSxe5Sy40XX3xRnTt3Vv369e0uRQUFBce9T+/evZWbm6uPP/44AhUBAAA7EUoBAICokZGRUXxLTU2Vy+UKG6tcufIR2/e6deumW265RcOHD1fVqlWVnp6uyZMna//+/Ro8eLCSk5PVuHHjI0KQVatWqXfv3qpcubLS09N11VVXadeuXcUf/+9//6uWLVsqKSlJ1atXV48ePbR//37dd999evXVVzVz5ky5XC65XC7Nnz9fkrRt2zYNGDBAVapUUbVq1dS3b19t2bKl+JqB2u+//37VrFlTKSkpGjJkSFiYU9LjlmTatGm66KKLjhj3+/0aPXq0qlWrpoyMDN13331hH9+6dav69u2rypUrKyUlRQMGDNCOHTuOqDXU8OHD1a1bt7Cv/c0336zhw4erRo0a6tWrlyzL0n333ad69erJ4/Godu3auvXWW4s/x+12q0+fPpo2bVqJzwkAAMQGQikAABDzXn31VdWoUUMLFy7ULbfcoptuukmXXnqpOnfurKVLl+qCCy7QVVddpQMHDkiS9u3bp+7du6tNmzZavHixZs+erR07dmjAgAGSzIqtyy+/XNdee63WrFmj+fPnq3///rIsS6NGjdKAAQP0pz/9qXgFV+fOnVVYWKhevXopOTlZX375pb7++mtVrlxZf/rTn8JCp3nz5hVf8z//+Y+mT5+u+++//7iPezR79uzR6tWr1b59+6N+TSpVqqTvvvtO//rXv/TAAw9o7ty5kkxg1bdvX+3Zs0f/+9//NHfuXG3atEkDBw78XV/7hIQEff3113ruuef07rvv6sknn9Tzzz+v9evXa8aMGWrZsmXY55x11ln68ssvT/qxAABAdKGnFAAAiHmtWrXS3XffLUkaM2aMHnnkEdWoUUM33HCDJOnee+/Vs88+q++//14dO3bUM888ozZt2ujhhx8uvsbLL7+szMxMrVu3Tnl5eSoqKlL//v2Lt8WFBitJSUnyer3KyMgoHnvjjTfk9/v14osvFvfGeuWVV1SlShXNnz9fF1xwgSQpISFBL7/8sipWrKgWLVrogQce0O23364HH3xQ27dvP+bjHm7r1q2yLEu1a9c+4mNnnHGGxo4dK0lq0qSJnnnmGc2bN089e/bUvHnztHLlSm3evFmZmZmSpNdee00tWrTQokWLdOaZZ57w175Jkyb617/+Vfz+Rx99pIyMDPXo0UPx8fGqV6+ezjrrrLDPqV27trZt2ya/309fKQAAYhj/ywMAgJh3xhlnFL/tdrtVvXr1sDAnPT1dkvTbb79JklasWKHPP/9clStXLr6ddtppkqSNGzeqVatWOv/889WyZUtdeumlmjx5svbu3XvMGlasWKENGzYoOTm5+JrVqlXTwYMHtXHjxuL7tWrVShUrVix+v1OnTsrLy9O2bdtO+nHz8/MlSYmJicf8mkhSrVq1ip//mjVrlJmZWRxISVLz5s1VpUoVrVmz5pjP83Dt2rULe//SSy9Vfn6+TjnlFN1www167733VFRUFHafpKQk+f1+eb3ek3osAAAQXQilAABAzIuPjw973+VyhY0FVi75/X5JUl5eni666CItX7487LZ+/Xp17dpVbrdbc+fO1ccff6zmzZvr6aefVtOmTbV58+YSa8jLy1O7du2OuOa6det0xRVXnNDzONnHrVGjhiQdNbg62tck8PxPRFxc3BHbBgsLC4+4X6VKlcLez8zM1Nq1azVp0iQlJSVp6NCh6tq1a9jn7tmzR5UqVVJSUtIJ1wMAAKIPoRQAAMBh2rZtqx9++EENGjRQ48aNw26BkMXlcunss8/W/fffr2XLlikhIUHvvfeeJLMFz+fzHXHN9evXKy0t7YhrpqamFt9vxYoVxSucJOnbb79V5cqVi1ctHetxD9eoUSOlpKRo9erVJ/X8mzVrpm3btmnbtm3FY6tXr9a+ffvUvHlzSVLNmjW1ffv2sM9bvnz5CV0/KSlJF110kf79739r/vz5WrBggVauXFn88VWrVqlNmzYnVTMAAIg+hFIAAACHGTZsmPbs2aPLL79cixYt0saNGzVnzhwNHjxYPp9P3333nR5++GEtXrxYW7du1fTp07Vz5041a9ZMktSgQQN9//33Wrt2rXbt2qXCwkJdeeWVqlGjhvr27asvv/xSmzdv1vz583Xrrbfq559/Ln7sgoICXXfddVq9erVmzZqlsWPH6uabb1ZcXNxxH/dwcXFx6tGjh7766quTev49evRQy5YtdeWVV2rp0qVauHChBg0apHPPPbe4aXr37t21ePFivfbaa1q/fr3Gjh2rVatWHffaU6ZM0UsvvaRVq1Zp06ZNeuONN5SUlFTcI0uSvvzyy+IeWwAAIHYRSgEAABymdu3a+vrrr+Xz+XTBBReoZcuWGj58uKpUqaK4uDilpKToiy++UJ8+fXTqqafq7rvv1vjx49W7d29J0g033KCmTZuqffv2qlmzpr7++mtVrFhRX3zxherVq6f+/furWbNmuu6663Tw4EGlpKQUP/b555+vJk2aqGvXrho4cKD+8pe/6L777pOk4z7u0Vx//fWaNm3aSW3Nc7lcmjlzpqpWraquXbuqR48eOuWUU/TWW28V36dXr1665557NHr0aJ155pnKzc3VoEGDjnvtKlWqaPLkyTr77LN1xhln6NNPP9UHH3yg6tWrS5J++eUXffPNNxo8ePAJ1wsAAKKTyyrpDGEAAABE1DXXXKN9+/ZpxowZpXZNy7LUoUMHjRgxQpdffnmpXbes3HHHHdq7d69eeOEFu0sBAABljJVSAAAAMczlcumFF1444oS78iotLU0PPvig3WUAAIAIYKUUAABAOVEWK6UAAADKK0IpAAAAAAAARBzb9wAAAAAAABBxhFIAAAAAAACIOEIpAAAAAAAARByhFAAAAAAAACKOUAoAAAAAAAARRygFAAAAAACAiCOUAgAAAAAAQMQRSgEAAAAAACDi/h/zkv0vvcjijwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, axes = plt.subplots(1, 1, figsize=(12, 10))\n", + "\n", + "axes.plot(df.index, df[\"flow\"], color=\"red\", label=\"T-Route - Basin Outflow Point\")\n", + "axes.plot(df_base_ssout.index, df_base_ssout[\"flow\"], color=\"purple\", label=\"Channel Loss Model SSOUT (SSOUT = 0.005) - Basin Outflow Point\", marker='o', markersize=2, linestyle='-')\n", + "axes.plot(df_high_ssout.index, df_high_ssout[\"flow\"], color=\"blue\", label=\"Channel Loss Model SSOUT (SSOUT = 0.1) - Basin Outflow Point\", linestyle=':')\n", + "axes.set_ylabel(\"Flow (cms)\")\n", + "axes.set_xlabel(\"Timesteps (hours)\")\n", + "axes.set_title(\"Downstream discharge comparison\")\n", + "axes.legend()\n", + "\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "markdown", + "id": "4d0e750b", + "metadata": {}, + "source": [ + "Conclusions: you can see how the SSOUT value shift the hydrograph directly downward as a result of a constant infiltration factor. In the future, `INFILTRATION_EXCESS` values from NGEN can be used as a more accurate version of SSOUT, or this value can be calibrated to tune results" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "t-route", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/test/channel_loss/requirements.txt b/test/channel_loss/requirements.txt new file mode 100644 index 000000000..c155c3d87 --- /dev/null +++ b/test/channel_loss/requirements.txt @@ -0,0 +1,6 @@ +dask==2025.5.1 +matplotlib==3.9.0 +mapclassify==2.10.0 +folium==0.19.7 +jupyterlab==4.4.6 +ipykernel==6.29.4 diff --git a/test/channel_loss/taylor_dam.yaml b/test/channel_loss/taylor_dam.yaml new file mode 100644 index 000000000..ce9540a25 --- /dev/null +++ b/test/channel_loss/taylor_dam.yaml @@ -0,0 +1,73 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + qlat_input_folder : channel_forcing/qlat/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usgs : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/base_output/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/channel_loss/taylor_dam_eloss_base.yaml b/test/channel_loss/taylor_dam_eloss_base.yaml new file mode 100644 index 000000000..2fd45a263 --- /dev/null +++ b/test/channel_loss/taylor_dam_eloss_base.yaml @@ -0,0 +1,78 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam_eloss_base.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + divide_id: 'divide_id' # required for ET mapping + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + et_input_folder : channel_forcing/et/ + et_file_pattern_filter : "cat-*" + qlat_input_folder : channel_forcing/qlat/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + ssout : 0.0 + peadj : 1.0 # calibratable parameter + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usgs : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/eloss_base/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/channel_loss/taylor_dam_eloss_high.yaml b/test/channel_loss/taylor_dam_eloss_high.yaml new file mode 100644 index 000000000..b87737de0 --- /dev/null +++ b/test/channel_loss/taylor_dam_eloss_high.yaml @@ -0,0 +1,78 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam_eloss_high.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + divide_id: 'divide_id' # required for ET mapping + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + et_input_folder : channel_forcing/et/ + et_file_pattern_filter : "cat-*" + qlat_input_folder : channel_forcing/qlat/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + ssout : 0.0 + peadj : 100.0 # calibratable parameter + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usgs : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/eloss_high/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/channel_loss/taylor_dam_ssout_base.yaml b/test/channel_loss/taylor_dam_ssout_base.yaml new file mode 100644 index 000000000..47cc3fd65 --- /dev/null +++ b/test/channel_loss/taylor_dam_ssout_base.yaml @@ -0,0 +1,78 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam_ssout_base.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + divide_id: 'divide_id' # required for ET mapping + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + et_input_folder : channel_forcing/et/ + et_file_pattern_filter : "cat-*" + qlat_input_folder : channel_forcing/qlat/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + ssout : 0.005 + peadj : 0.0 + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usgs : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/ssout_base/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/channel_loss/taylor_dam_ssout_high.yaml b/test/channel_loss/taylor_dam_ssout_high.yaml new file mode 100644 index 000000000..5e0bb012f --- /dev/null +++ b/test/channel_loss/taylor_dam_ssout_high.yaml @@ -0,0 +1,78 @@ +# uv run python -m nwm_routing -f -V4 taylor_dam_ssout_high.yaml +#-------------------------------------------------------------------------------- +log_parameters: + #---------- + showtiming: True + log_level : INFO +#-------------------------------------------------------------------------------- +network_topology_parameters: + #---------- + supernetwork_parameters: + #---------- + network_type: HYFeaturesNetwork + geo_file_path: domain/09112500.gpkg + columns: + key: 'id' + downstream: 'to' + dx : 'Length_m' + n : 'n' + ncc : 'nCC' + s0 : 'So' + bw : 'BtmWdth' + waterbody : 'WaterbodyID' + gages : 'gage' + tw : 'TopWdth' + twcc : 'TopWdthCC' + musk : 'MusK' + musx : 'MusX' + cs : 'ChSlp' + alt: 'alt' + lake_id: 'lake_id' + divide_id: 'divide_id' # required for ET mapping + mainstem: 'mainstem' + waterbody_parameters: + #---------- + break_network_at_waterbodies: True +#-------------------------------------------------------------------------------- +compute_parameters: + #---------- + parallel_compute_method: by-subnetwork-jit-clustered #serial + compute_kernel : V02-structured + assume_short_ts : True + subnetwork_target_size : 10000 + cpu_pool : 1 + restart_parameters: + #---------- + start_datetime: "2022-08-02 00:00:00" + forcing_parameters: + #---------- + qts_subdivisions : 12 + dt : 300 # [sec] + et_input_folder : channel_forcing/et/ + et_file_pattern_filter : "cat-*" + qlat_input_folder : channel_forcing/qlat/ + qlat_file_pattern_filter : "*NEXOUT.parquet" + nts : 2304 #288 for 1day THIS HAS TO MATCH THE SIMULATION TIME PERIOD + max_loop_size : 288 # [hr] + ssout : 0.1 + peadj : 0.0 + data_assimilation_parameters: + streamflow_da: + # #---------- + streamflow_nudging : False + diffusive_streamflow_nudging : False + reservoir_da: + #---------- + reservoir_persistence_da: + #---------- + reservoir_persistence_usgs : False + reservoir_rfc_da: + #---------- + reservoir_rfc_forecasts: False +#-------------------------------------------------------------------------------- +output_parameters: + stream_output: + stream_output_directory: output/ssout_high/ + stream_output_time: -1 # [hr] + stream_output_type: '.nc' + stream_output_internal_frequency: 60 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001010900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001010900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001010900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001011900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001011900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001011900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001012000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001012000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001012000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001012100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001012100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001012100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001012200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001012200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001012200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001012300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001012300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..218acfa9c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001012300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1169441803765735 +3490292,0.1762971188715868 +3490293,0.0292352940887212 +3490316,0.0584705881774424 +3490317,0.146176470443606 +3490332,0.0877058822661636 +3490333,0.088036502409653 +3490334,0.1755303869433225 +3490335,0.0292352940887212 +3490348,0.0280595233763919 +3490349,0.0174405328827179 +3490350,0.0292352940887212 +3490351,0.0877058822661636 +3490374,0.026441111432043397 +3490375,0.07281405104188479 +3490376,0.1482213117451087 +3490377,0.0562073095536297 +3490378,0.0584705881774424 +3490379,0.2629028664910345 +3490396,0.0124107434097031 +3490397,0.0241764169186352 +3490398,0.0876877875299162 +3490399,0.0584705881774424 +3490418,0.1744324832502906 +3490419,0.0292352940887212 +3490437,0.0291904073341037 +3490438,0.1458675716660289 +3490439,0.045475263623336995 +3490440,0.0292350237628043 +3490457,0.036269038044231594 +3490458,0.036760236281220895 +3490459,0.0584705881774424 +3490460,0.11612159388967701 +3490476,0.058303772932207995 +3490477,0.0869892342307609 +3490478,0.033599279820919 +3490479,0.033599279820919 +3490499,0.0884935752954985 +3490500,0.0167996399104595 +3490517,0.0134758867427134 +3490518,0.0254460396081643 +3490519,0.067198559641838 +3490520,0.08399819955229751 +3490544,0.0167996399104595 +3490545,0.0167880595494185 +3490546,0.033599279820919 +3490547,0.0166592992346644 +3490573,0.0502270695294017 +3490574,0.0167996399104595 +3490575,0.0152955362094927 +3490576,0.032490023675614405 +3490597,0.0441164223160289 +3490598,0.0440110926669637 +3490599,0.016991384373186 +3490600,0.0516751453509155 +3490601,0.0289702064289078 +3490602,0.028934107422805 +3490603,0.0150979879551464 +3490604,0.0152618950296472 +3490623,0.0144739160314202 +3490624,0.0289478320628404 +3490625,0.0114961751474336 +3490626,0.0413890506784902 +3490639,0.0144739160314202 +3490640,0.0578956641256808 +3490641,0.0287018025747004 +3490642,0.0339705164893666 +3490643,0.0564788103517063 +3490644,0.0137751167640089 +3490645,0.0137302959450292 +3490658,0.0289478320628404 +3490659,0.0144739160314202 +3490660,0.0792710516626762 +3490661,0.0339730585840721 +3490662,0.0970398176041766 +3490663,0.0137751167640089 +3490664,0.0137036077952465 +3490665,0.0412260148574658 +3490681,0.0722778618779566 +3490682,0.0144739160314202 +3490683,0.0144739160314202 +3490684,0.0289478320628404 +3490685,0.011396988682773 +3490686,0.0113437660383935 +3490687,0.0138405564424224 +3490688,0.0138123531783804 +3490689,0.0137547228153702 +3490690,0.0137751167640089 +3490707,0.0289478320628404 +3490708,0.0144739160314202 +3490709,0.0143678783212714 +3490710,0.0144739160314202 +3490725,0.0144745750340627 +3490726,0.0144739160314202 +3490727,0.043421748094260595 +3490728,0.0578849962524004 +3490736,0.1012683508590421 +3490737,0.0722459712495932 +3490738,0.0960598793381637 +3490739,0.0720526691309938 +3490747,0.26045223799973743 +3490748,0.0142196732924567 +3490757,0.0579619544267609 +3490758,0.043387628708084 +3490771,0.0435022190013262 +3490772,0.0144532965339026 +3490773,0.0139128407566651 +3490774,0.0289557579000266 +3490787,0.0283396342251741 +3490788,0.0124329461970485 +3490789,0.042492165590029204 +3490790,0.0525428166050835 +3490805,0.014243853149954 +3490806,0.041283457473023505 +3490807,0.0274814050644636 +3490808,0.08279253029838961 +3490809,0.0072290185405623 +3490810,0.007299062619487 +3490827,0.0168280314845032 +3490828,0.0173244389073714 +3490842,0.051083070097854996 +3490843,0.0170273557305336 +3490844,0.0172911484623785 +3490845,0.0522466108384502 +3490856,0.0170273557305336 +3490857,0.0169628173862579 +3490858,0.0170273557305336 +3490859,0.050860372563244 +3490860,0.0175477545708417 +3490861,0.0875529806619548 +3490875,0.0170273557305336 +3490876,0.0170273557305336 +3490877,0.052250957150201 +3490878,0.0173165582097873 +3490879,0.0350955091416834 +3490892,0.0510820671916008 +3490893,0.0510820671916008 +3490894,0.0175477545708417 +3490895,0.0170379420881991 +3490900,0.0170131582554807 +3490901,0.0162083948638126 +3490902,0.050872510917591596 +3490903,0.051080614795738596 +3490904,0.0488224621262592 +3490905,0.0519959531683797 +3490906,0.050265483511646 +3490907,0.0637343762982699 +3490916,0.051077447632680004 +3490917,0.0170201322632481 +3490918,0.0169987474624101 +3490919,0.0170259077806072 +3490920,0.0169020377352289 +3490921,0.0343407341959817 +3490922,0.0524871434905363 +3490923,0.1465389737546714 +3490924,0.017007406483442 +3490925,0.042157038953847 +3490926,0.11238917523544399 +3490935,0.0158991594653451 +3490936,0.0165658470353458 +3490937,0.0211451539601899 +3490938,0.0201913736564289 +3490939,0.050576129225179 +3490940,0.0505271073015862 +3490941,0.0128085507698687 +3490942,0.0126223051679804 +3490953,0.0168297229136666 +3490954,0.017018415834722 +3490955,0.0151897838544046 +3490956,0.0145780031686277 +3490957,0.0143315917077956 +3490958,0.0145099615398772 +3490959,0.05052067525684831 +3490960,0.0505233812086929 +3490966,0.0459938636049627 +3490967,0.0153312878683209 +3490968,0.0128318279654044 +3490969,0.0116364182237503 +3490970,0.0994495592562408 +3490971,0.0140383440192134 +3490972,0.0553095734578928 +3490973,0.0138602088630796 +3490974,0.0168402250856161 +3490975,0.0505458429091441 +3490980,0.0462048495267884 +3490981,0.0153259946932655 +3490982,0.0153185191993069 +3490983,0.1069378228606085 +3490984,0.0585981421211241 +3490985,0.1277988833011718 +3490986,0.0140679608825932 +3490987,0.0423064438118261 +3490988,0.0421241790409916 +3490989,0.0138480089471938 +3490990,0.041561256647335704 +3490991,0.0138187015348958 +3490992,0.0168402250856161 +3490993,0.0168402250856161 +3490994,0.0513587165913204 +3490995,0.0168402250856161 +3490999,0.0153429682671038 +3491000,0.0156437863048061 +3491001,0.0121070166776008 +3491002,0.045759695261332 +3491003,0.0116074978142275 +3491004,0.0116342991545415 +3491005,0.0423391218935804 +3491006,0.0702826929469309 +3491007,0.0503853597205343 +3491008,0.0511204022704059 +3491009,0.0840765212268913 +3491010,0.0504551853486627 +3491013,0.0137789799310673 +3491014,0.0112884789202561 +3491015,0.0421973322033837 +3491016,0.0421910710242541 +3491017,0.1471433417551687 +3491018,0.0186635409946723 +3491019,0.0844615936331509 +3491020,0.0168402250856161 +3491021,0.0306743457913398 +3491022,0.0143795926737532 +3491023,0.0107518822113027 +3491024,0.0145489877097774 +3491025,0.048197744764296904 +3491026,0.0158609614080222 +3491027,0.0248801240995438 +3491028,0.0201871992988119 +3491029,0.0153371728956699 +3491030,0.0761291641467009 +3491031,0.075490134025413 +3491032,0.0423521804727586 +3491033,0.0108556043037646 +3491034,0.0106795774772763 +3491035,0.0107911905634569 +3491036,0.016565915945321 +3491037,0.0158645492047071 +3491038,0.0212461277651934 +3491039,0.1655219662527316 +3491040,0.0153371728956699 +3491041,0.0460115186870097 +3491042,0.0107592409476637 +3491043,0.0110557758024371 +3491044,0.0108059037848879 +3491045,0.0537500956537906 +3491046,0.0158645492047071 +3491047,0.0158310035790395 +3491048,0.0203794530159045 +3491049,0.0202384665608406 +3491050,0.1005920217500553 +3491051,0.0335233064975737 +3491052,0.0153371728956699 +3491053,0.07664442764980241 +3491054,0.0323244251674814 +3491055,0.032444289174756405 +3491056,0.0107757304533998 +3491057,0.0761873509354641 +3491058,0.0158645492047071 +3491059,0.0486682578446461 +3491060,0.10145170595068 +3491061,0.0202384665608406 +3491062,0.060567834636061496 +3491063,0.1010351081980026 +3491064,0.0334482582213747 +3491065,0.1677155169290849 +3491066,0.0460115186870097 +3491067,0.0153371728956699 +3491068,0.015161191187073 +3491069,0.0153254139883833 +3491070,0.0123440478098152 +3491071,0.0215716482025486 +3491072,0.1114950272521628 +3491073,0.0475749200124206 +3491074,0.0202384665608406 +3491075,0.1815865155782558 +3491076,0.1005415783151076 +3491077,0.0335299711669732 +3491078,0.1373085402343 +3491079,0.061278636850457605 +3491080,0.0458703563400793 +3491081,0.0152953449059374 +3491082,0.014964804566254 +3491083,0.0158338187142532 +3491084,0.0158645492047071 +3491085,0.0158645492047071 +3491086,0.0613255410271236 +3491087,0.060869923535797996 +3491088,0.0566254778027136 +3491089,0.0886914232455341 +3491090,0.0317683275412084 +3491091,0.0330844409242292 +3491092,0.0459444039935462 +3491093,0.0151874730885161 +3491094,0.0475936476141213 +3491095,0.079248620983418 +3491096,0.0600616621803371 +3491097,0.0199582876568373 +3491098,0.0532290265021318 +3491099,0.0262844463263643 +3491100,0.0315468243960121 +3491101,0.0698504687463872 +3491102,0.0693444595812976 +3491103,0.0792560753172974 +3491104,0.079315676815566 +3491105,0.0267240855547261 +3491106,0.0574085934421446 +3491107,0.027085949031191 +3491108,0.0160881533151369 +3491109,0.0935971407622866 +3491110,0.0348226732949964 +3491111,0.1116491261414901 +3491112,0.0139602897688746 +3491113,0.0963702043702939 +3491114,0.068612351410319 +3491115,0.11010651055575471 +3491116,0.0791684230951378 +3491117,0.0084952883554234 +3491118,0.0419166990989289 +3491119,0.0694066024153765 +3491120,0.0349272219638363 +3491121,0.0157562154340824 +3491122,0.0080667002074962 +3491123,0.0425362923642026 +3491124,0.0478575267027792 +3491125,0.0420109862246797 +3491126,0.12209836073400379 +3491127,0.0139890651669458 +3491128,0.0982921085790858 +3491129,0.0135205307073699 +3491130,0.013711635954678 +3491131,0.0280241334234042 +3491132,0.0415085034325094 +3491133,0.0083659859374165 +3491134,0.0083575576835617 +3491135,0.0115881562232971 +3491136,0.12733312916885609 +3491137,0.047315632586449 +3491138,0.1315049566928565 +3491139,0.1463503887884221 +3491140,0.0150120182198924 +3491141,0.1128162421394261 +3491142,0.0139753715467451 +3491143,0.0141072826271037 +3491144,0.0416257037407458 +3491145,0.013711635954678 +3491146,0.0336047303945614 +3491147,0.008352690353566 +3491148,0.0115881562232971 +3491149,0.0052320188842713 +3491150,0.0052537515903658 +3491151,0.0444222767315524 +3491152,0.043828270621314 +3491153,0.0111416382715106 +3491154,0.0342436975258618 +3491155,0.0893775533346603 +3491156,0.1505699707639827 +3491157,0.058341501068298 +3491158,0.056042171405837504 +3491159,0.016964095366993198 +3491160,0.0249606802195366 +3491161,0.0463526248931884 +3491162,0.0115881562232971 +3491163,0.0167916478321903 +3491164,0.0169660962218693 +3491165,0.1327609832568735 +3491166,0.0435893512442503 +3491167,0.0342185626311279 +3491168,0.0334489767455733 +3491169,0.0894173960353708 +3491170,0.0149032836779952 +3491171,0.118809825635252 +3491172,0.0283040219047321 +3491173,0.0160167513183332 +3491174,0.0161320640481886 +3491175,0.0084087175097565 +3491176,0.034630879750234 +3491177,0.0113210899320236 +3491178,0.0115881562232971 +3491179,0.0347644686698913 +3491180,0.0055780941277006 +3491181,0.17701183855034 +3491182,0.13291433291316151 +3491183,0.07921460226481859 +3491184,0.1005386245757802 +3491185,0.0148863044910821 +3491186,0.0151499566444105 +3491187,0.0596131347119808 +3491188,0.0901836661857335 +3491189,0.2974223462863722 +3491190,0.088653171551585 +3491191,0.0055884329915092 +3491192,0.016280107045332302 +3491193,0.0115881562232971 +3491194,0.0115881562232971 +3491195,0.0363699503445228 +3491196,0.3968124481601538 +3491197,0.0804190798080936 +3491198,0.0891017379147694 +3491199,0.0749188838826879 +3491200,0.0610523471979175 +3491201,0.14826805908324908 +3491202,0.059493914246559 +3491203,0.0065481961970418 +3491204,0.0268552534478409 +3491205,0.0337380864045978 +3491206,0.0115881562232971 +3491207,0.046307128305671 +3491208,0.023114120898214602 +3491209,0.0208227413650573 +3491210,0.014848398293745 +3491211,0.0705388361929925 +3491212,0.0335728071518096 +3491213,0.2065739773905838 +3491214,0.0891259933854217 +3491215,0.0297469571232795 +3491216,0.0297469571232795 +3491217,0.0266924765871899 +3491218,0.027045957436318102 +3491219,0.0228588211749555 +3491220,0.0811170935630797 +3491221,0.057333041729669604 +3491222,0.0463526248931884 +3491223,0.02031191772055 +3491224,0.0206187109835671 +3491225,0.1247034547616563 +3491226,0.0169925833305124 +3491227,0.0239480342715978 +3491228,0.0479466473287168 +3491229,0.0661392612838567 +3491230,0.0330559369229549 +3491231,0.08924087136983849 +3491232,0.0296250535269088 +3491233,0.0115335090369779 +3491234,0.010854078066920101 +3491235,0.127326297960975 +3491236,0.011585224877728 +3491237,0.0216717072234668 +3491238,0.0116284366498479 +3491239,0.0209638393494383 +3491240,0.0203476319079971 +3491241,0.0125175670455143 +3491242,0.0174149319089926 +3491243,0.00529625127092 +3491244,0.0054172215676893 +3491245,0.07157681924593509 +3491246,0.119740171357989 +3491247,0.0560578565865529 +3491248,0.0109165487810969 +3491249,0.0297469571232795 +3491250,0.0297469571232795 +3491251,0.0053791496793369 +3491252,0.0576403539087803 +3491253,0.0115881562232971 +3491254,0.0115790833940984 +3491255,0.0611986071831422 +3491256,0.0407183617353438 +3491257,0.0580694092143871 +3491258,0.0399243822330326 +3491259,0.0075302139156961 +3491260,0.0074400523665192 +3491261,0.0558534906889229 +3491262,0.0567878463818454 +3491263,0.00529625127092 +3491264,0.01079068482746 +3491265,0.0957921370863912 +3491266,0.0716229613391163 +3491267,0.0239480342715978 +3491268,0.0239762256960692 +3491269,0.0772088407127507 +3491270,0.054605657280966696 +3491271,0.0884807381132465 +3491272,0.0297469571232795 +3491273,0.17848174273967699 +3491274,0.20695549971253138 +3491275,0.0573372403435337 +3491276,0.0457128623004248 +3491277,0.0203591808676719 +3491278,0.0139110420567023 +3491279,0.00737505776125 +3491280,0.0071750317150935 +3491281,0.0074225553109952 +3491282,0.0066079590057927 +3491283,0.0269683493194743 +3491284,0.0566773622090764 +3491285,0.0568152567875602 +3491286,0.0163936178767461 +3491287,0.0165277070820404 +3491288,0.0239480342715978 +3491289,0.0478847647952787 +3491290,0.0783985312381844 +3491291,0.023200956259557 +3491292,0.1186052657817312 +3491293,0.0296024794472403 +3491294,0.0282077518215909 +3491295,0.0347568494107587 +3491296,0.0809312367768226 +3491297,0.0971569914899693 +3491298,0.060889624104139006 +3491299,0.0083001487432098 +3491300,0.0151422486037309 +3491301,0.0071985449070824 +3491302,0.021379611714851 +3491303,0.0226655094267534 +3491304,0.0076978259613781 +3491305,0.0066067704989435 +3491306,0.0329395909358844 +3491307,0.0154885011873162 +3491308,0.0189001988351936 +3491309,0.0567895836998827 +3491310,0.011343805726735798 +3491311,0.0957921370863912 +3491312,0.0239480342715978 +3491313,0.016395205001083102 +3491314,0.0466056200824012 +3491315,0.0113614365013387 +3491316,0.0347644686698913 +3491317,0.0115881562232971 +3491318,0.0165289829742132 +3491319,0.0082360635964118 +3491320,0.0082402851988553 +3491321,0.0082350773736834 +3491322,0.0220339511203166 +3491323,0.0748359279692442 +3491324,0.014447334153115401 +3491325,0.0071898692720818 +3491326,0.0106760005077462 +3491327,0.0109880269604123 +3491328,0.0263978477336415 +3491329,0.0065862326882779 +3491330,0.009354295530662 +3491331,0.0131324400977583 +3491332,0.07184410281479339 +3491333,0.0239480342715978 +3491334,0.2634283769875758 +3491335,0.0956403399787723 +3491336,0.013911338890812499 +3491337,0.014268582893765598 +3491338,0.070424530798759 +3491339,0.0408100660625106 +3491340,0.0115881562232971 +3491341,0.0347644686698913 +3491342,0.0082350773736834 +3491343,0.041175386868417 +3491344,0.0153112768933438 +3491345,0.01547633865595 +3491346,0.0320515372282793 +3491347,0.0321470984583752 +3491348,0.011063459416672 +3491349,0.0332106761634348 +3491350,0.0198290029079821 +3491351,0.0197586980648337 +3491352,0.0455332664404514 +3491353,0.0064383527808063 +3491354,0.005054176293525 +3491355,0.010399374946668299 +3491356,0.07174474236502901 +3491357,0.0700243714729405 +3491358,0.0234375172092865 +3491359,0.0239480342715978 +3491360,0.335114446958399 +3491361,0.07184410281479339 +3491362,0.0095440237273965 +3491363,0.0099945967976677 +3491364,0.0095043524027929 +3491365,0.009650245062215 +3491366,0.0145153093919041 +3491367,0.0093178792961878 +3491368,0.0050820130849109 +3491369,0.0463488817708966 +3491370,0.0115881562232971 +3491371,0.0347644352739192 +3491372,0.0231223747174184 +3491373,0.016465508701214097 +3491374,0.0082350773736834 +3491375,0.0082350773736834 +3491376,0.016482430736451302 +3491377,0.0154945096001029 +3491378,0.0294395815082834 +3491379,0.010674829040217 +3491380,0.0107069450488515 +3491381,0.0110600985101999 +3491382,0.0110702253878116 +3491383,0.0110702253878116 +3491384,0.0108277703896619 +3491385,0.0066095346352329 +3491386,0.0263447484973147 +3491387,0.01297852780917 +3491388,0.0194585985601108 +3491389,0.0050666042558172 +3491390,0.0283401306295141 +3491391,0.0050743281841326 +3491392,0.0716248935543364 +3491393,0.2634283769875758 +3491394,0.0050364233072308 +3491395,0.0899367454465225 +3491396,0.013141420204192199 +3491397,0.0044131031167486 +3491398,0.0115881562232971 +3491399,0.0579356302669244 +3491400,0.0082293392514468 +3491401,0.0082350773736834 +3491402,0.0165743007908616 +3491403,0.0083127757219895 +3491404,0.0099264720581285 +3491405,0.0464376083827447 +3491406,0.0375334283030616 +3491407,0.0075060930103063 +3491408,0.0106892315532218 +3491409,0.0107104261899927 +3491410,0.0106859761612421 +3491411,0.0110753666183107 +3491412,0.0110702253878116 +3491413,0.022143196584727298 +3491414,0.0221564638884366 +3491415,0.0110702253878116 +3491416,0.0551429975762556 +3491417,0.013280448391927501 +3491418,0.046202640342494 +3491419,0.0064818270683343 +3491420,0.0055385261779579 +3491421,0.0096746623913052 +3491422,0.0787380385419451 +3491423,0.1670987227295268 +3491424,0.0478960685431956 +3491425,0.0629854393685274 +3491426,0.0059292907842618 +3491427,0.0134513872342102 +3491428,0.0043804734013974 +3491429,0.0347644686698913 +3491430,0.0347644686698913 +3491431,0.0114870910400767 +3491432,0.0082345579308261 +3491433,0.0082350773736834 +3491434,0.0082350773736834 +3491435,0.0082350773736834 +3491436,0.0078657520934939 +3491437,0.0235972562804817 +3491438,0.0225182790309189 +3491439,0.0075349742092256 +3491440,0.0197668197606799 +3491441,0.0210466304960474 +3491442,0.0102900583316349 +3491443,0.0100440854595771 +3491444,0.0133042605391847 +3491445,0.0065822180108161 +3491446,0.0065794338989139 +3491447,0.012935271392604 +3491448,0.00491409244974 +3491449,0.0536828194380626 +3491450,0.0181747283786535 +3491451,0.0957921370863912 +3491452,0.0238643728581846 +3491453,0.0239480342715978 +3491454,0.0718887459114256 +3491455,0.0251673106104135 +3491456,0.1257723562070758 +3491457,0.0041241299579999 +3491458,0.0112186893212154 +3491459,0.0154324356944891 +3491460,0.0052572368141407 +3491461,0.012674293671521699 +3491462,0.0044440009913452 +3491463,0.0230999904028225 +3491464,0.011456090158294 +3491465,0.0347644686698913 +3491466,0.0115881562232971 +3491467,0.0081786276666749 +3491468,0.0082350773736834 +3491469,0.0082350773736834 +3491470,0.0578192407451193 +3491471,0.0082680983576901 +3491472,0.0078559849397625 +3491473,0.039391828833613404 +3491474,0.0075060930103063 +3491475,0.0225345461130226 +3491476,0.0056037812996363 +3491477,0.0315742778814758 +3491478,0.0086341302422642 +3491479,0.0128796322765935 +3491480,0.008772191325717799 +3491481,0.0180332339871854 +3491482,0.054524185135960496 +3491483,0.0957921370863912 +3491484,0.0203686248328955 +3491485,0.0239767973583535 +3491486,0.0710746406026996 +3491487,0.0750512105756023 +3491488,0.1251291291734759 +3491489,0.0251673106104135 +3491490,0.0036978961434215 +3491491,0.0074312373134116 +3491492,0.010792226698766 +3491493,0.0115011291931792 +3491494,0.0115881562232971 +3491495,0.0231763124465942 +3491496,0.0246642138252567 +3491497,0.0082350773736834 +3491498,0.0082350773736834 +3491499,0.0082643241408384 +3491500,0.0236206752928752 +3491501,0.0078626891626699 +3491502,0.0074491581856692 +3491503,0.0052024297121314 +3491504,0.0046541965809044 +3491505,0.0111224551319996 +3491506,0.0045673955279273 +3491507,0.009546363679282799 +3491508,0.0140489256727121 +3491509,0.0529470916122715 +3491510,0.054524185135960496 +3491511,0.0239480342715978 +3491512,0.0208394328470364 +3491513,0.0522741914213269 +3491514,0.027272344789701898 +3491515,0.0251673106104135 +3491516,0.0250603227109179 +3491517,0.018550486112887 +3491518,0.0184971520872497 +3491519,0.0105851753591716 +3491520,0.0347432467810305 +3491521,0.0578453423743505 +3491522,0.0082247758041581 +3491523,0.0082337568783896 +3491524,0.0246801992043909 +3491525,0.0411939219449422 +3491526,0.015758628876596098 +3491527,0.0080754286172802 +3491528,0.0156989397092278 +3491529,0.0078657520934939 +3491530,0.005273837058873 +3491531,0.0049254750815197 +3491532,0.0066273216615663 +3491533,0.0044985914721552 +3491534,0.0158766793923706 +3491535,0.0239480342715978 +3491536,0.0193008406823108 +3491537,0.023677669235648 +3491538,0.031849700284550905 +3491539,0.006684512384931 +3491540,0.0251673106104135 +3491541,0.0753781742104106 +3491542,0.0115338781596817 +3491543,0.0036978961434215 +3491544,0.0038508063029901 +3491545,0.034782367935318304 +3491546,0.0347644686698913 +3491547,0.0221388753500946 +3491548,0.0115013997111063 +3491549,0.0235972562804817 +3491550,0.0235972562804817 +3491551,0.0157317404609977 +3491552,0.0348740991167933 +3491553,0.015330290107454101 +3491554,0.0049150335071938 +3491555,0.0026908910070118 +3491556,0.1312620245354289 +3491557,0.0190032849471022 +3491558,0.0238848267130817 +3491559,0.0718330123278902 +3491560,0.0251673106104135 +3491561,0.0251673106104135 +3491562,0.1258365530520675 +3491563,0.0249816711320191 +3491564,0.0116023272030081 +3491565,0.007529194668732 +3491566,0.0039455505879511 +3491567,0.0112334049416069 +3491568,0.0463564044316022 +3491569,0.0115693396211283 +3491570,0.008262279557811 +3491571,0.0235972562804817 +3491572,0.023598464671767398 +3491573,0.009969422353140401 +3491574,0.014959054296420402 +3491575,0.056185365347204405 +3491576,0.0187630672007799 +3491577,0.0187630672007799 +3491578,0.0189389279571186 +3491579,0.0244785155710531 +3491580,0.024894770500713 +3491581,0.0251673106104135 +3491582,0.0037647022402554 +3491583,0.0075529682864912 +3491584,0.0532751851652115 +3491585,0.0264497937271646 +3491586,0.0079289114026998 +3491587,0.0078657520934939 +3491588,0.0236007837553128 +3491589,0.017756292142659 +3491590,0.0125360043092929 +3491591,0.0071634702204584 +3491592,0.0195794085403226 +3491593,0.0187630672007799 +3491594,0.0190888393667113 +3491595,0.0201073611464068 +3491596,0.0227157709340791 +3491597,0.0573911335667726 +3491598,0.1504141092729662 +3491599,0.0040691756874803 +3491600,0.0121263385866297 +3491601,0.0351847805104228 +3491602,0.0085934385340124 +3491603,0.0160791774841037 +3491604,0.0317563850523202 +3491605,0.0707207388671201 +3491606,0.0078737216833811 +3491607,0.031518175435318305 +3491608,0.0106566687609948 +3491609,0.0297835116345232 +3491610,0.0449613172624552 +3491611,0.004862179541418 +3491612,0.0051222611529514 +3491613,0.0228750802349605 +3491614,0.0281407401931721 +3491615,0.0066292450828954 +3491616,0.0066293146591523 +3491617,0.0222492530283513 +3491618,0.0879663221329485 +3491619,0.0188856694594116 +3491620,0.0118640867345702 +3491621,0.0117465900257229 +3491622,0.0117465900257229 +3491623,0.01064612266438 +3491624,0.0106077352538704 +3491625,0.0212670914054428 +3491626,0.0150345778092741 +3491627,0.0451037334278223 +3491628,0.006114501953704 +3491629,0.0053520536147577 +3491630,0.0344318558512365 +3491631,0.0281518697738647 +3491632,0.08424355851178861 +3491633,0.0281518697738647 +3491634,0.0064925224931436 +3491635,0.0197307207957989 +3491636,0.0118132635407308 +3491637,0.027892875271626198 +3491638,0.0263843309883825 +3491639,0.0257509321551089 +3491640,0.019091516707515 +3491641,0.0193287600481248 +3491642,0.0095136233932788 +3491643,0.0117465900257229 +3491644,0.0115895747863488 +3491645,0.0117165945811271 +3491646,0.0106077352538704 +3491647,0.0106486290252745 +3491648,0.0150345778092741 +3491649,0.0150170518613723 +3491650,0.0297469132086016 +3491651,0.0073626289830342 +3491652,0.0368051791665015 +3491653,0.0909425988405499 +3491654,0.1403049191436346 +3491655,0.0064715339530707 +3491656,0.028060688220360896 +3491657,0.0186569101906553 +3491658,0.0781149878099823 +3491659,0.0793620767422393 +3491660,0.028410443161524697 +3491661,0.0275839418368524 +3491662,0.0116506793964156 +3491663,0.0117465900257229 +3491664,0.0105129881173872 +3491665,0.0105533204144503 +3491666,0.0530458020907173 +3491667,0.0318232311074772 +3491668,0.0212154705077408 +3491669,0.0216192643929723 +3491670,0.0150345778092741 +3491671,0.0451037284522854 +3491672,0.0148559559524598 +3491673,0.0072896652854979 +3491674,0.007887681560899 +3491675,0.0085656681131827 +3491676,0.0146416127121444 +3491677,0.0844556093215941 +3491678,0.0278739438164617 +3491679,0.0095579953970412 +3491680,0.0088041220603392 +3491681,0.132348397746682 +3491682,0.1844108308529746 +3491683,0.0262933382548081 +3491684,0.028501334591199898 +3491685,0.0285604450146708 +3491686,0.0234176510934796 +3491687,0.0117064990561209 +3491688,0.0096496251393591 +3491689,0.0042358206785222 +3491690,0.0107908400616824 +3491691,0.0105390782911139 +3491692,0.0316461368621649 +3491693,0.0318323095254008 +3491694,0.045056331347551895 +3491695,0.045054325290062 +3491696,0.0150345778092741 +3491697,0.0149135106202574 +3491698,0.0221065824714794 +3491699,0.0331937235784005 +3491700,0.0281518697738647 +3491701,0.0281518697738647 +3491702,0.0557771941895725 +3491703,0.0273534529300083 +3491704,0.0095119560912461 +3491705,0.0265902357885335 +3491706,0.1513624912848985 +3491707,0.0529393590986728 +3491708,0.0089610642007417 +3491709,0.0078004774644723 +3491710,0.0083141117640375 +3491711,0.0087336804080039 +3491712,0.0169495611250907 +3491713,0.0318059619750022 +3491714,0.053140569626094 +3491715,0.0150345778092741 +3491716,0.0150345778092741 +3491717,0.0451037334278223 +3491718,0.0150070717203995 +3491719,0.0094270044021185 +3491720,0.0281518697738647 +3491721,0.0844556093215941 +3491722,0.0278576877136212 +3491723,0.0281518697738647 +3491724,0.0064485354906524 +3491725,0.0167801577251044 +3491726,0.0285203658517063 +3491727,0.0119507379989159 +3491728,0.0263824592591207 +3491729,0.0460691910692063 +3491730,0.0241200678772312 +3491731,0.0163931103046961 +3491732,0.0090098923556387 +3491733,0.0070578824456096 +3491734,0.0124872640840977 +3491735,0.0104473699215828 +3491736,0.0317812906752232 +3491737,0.0104188107601585 +3491738,0.0596101090660498 +3491739,0.0150345778092741 +3491740,0.0150345778092741 +3491741,0.0150345778092741 +3491742,0.0440125954253503 +3491743,0.0558057150042003 +3491744,0.027962413092819 +3491745,0.0281518697738647 +3491746,0.0563037395477294 +3491747,0.0274690513898652 +3491748,0.0559497193047456 +3491749,0.0127812689934702 +3491750,0.0064137870679169 +3491751,0.0381991580314877 +3491752,0.0054258536547422 +3491753,0.0056711864645516 +3491754,0.005656527370503 +3491755,0.041093927874424896 +3491756,0.0135427222054848 +3491757,0.0265344555598718 +3491758,0.0160828029516427 +3491759,0.0089829225801872 +3491760,0.0090035740573988 +3491761,0.0070145670324563 +3491762,0.0063026905496683 +3491763,0.004247875267399 +3491764,0.0041476021900554 +3491765,0.0107372804759347 +3491766,0.0448596492403357 +3491767,0.015020289368297 +3491768,0.0447488540438834 +3491769,0.029926405858983297 +3491770,0.044984192949421395 +3491771,0.0150345778092741 +3491772,0.1404887738041893 +3491773,0.0281518697738647 +3491774,0.032182311980559 +3491775,0.0191730008413849 +3491776,0.0054309101554818 +3491777,0.0054275395770248 +3491778,0.0058207576554314 +3491779,0.0056508504785597 +3491780,0.04127587463059 +3491781,0.0136858383193612 +3491782,0.0089928121017305 +3491783,0.0270314117759324 +3491784,0.0211340811777556 +3491785,0.0219961917282532 +3491786,0.0145817696602921 +3491787,0.0048629320226609 +3491788,0.004143142607063 +3491789,0.0137028209709637 +3491790,0.0149145806974893 +3491791,0.1183519342850383 +3491792,0.0281732804976867 +3491793,0.0280935639283757 +3491794,0.0843103155943498 +3491795,0.0256308391690252 +3491796,0.0064077097922563 +3491797,0.0054123702071612 +3491798,0.0282537590847261 +3491799,0.0056535126720499 +3491800,0.040915423000169995 +3491801,0.0136371418115377 +3491802,0.0089813738551069 +3491803,0.0450070791327511 +3491804,0.0083025236880977 +3491805,0.0165369000743378 +3491806,0.0097119414750537 +3491807,0.0048629320226609 +3491808,0.0199291168564347 +3491809,0.0325965078868237 +3491810,0.0292348839842401 +3491811,0.055489537332512204 +3491812,0.0278994772783816 +3491813,0.0278276881469952 +3491814,0.0127561944684037 +3491815,0.0064077097922563 +3491816,0.0127184319155713 +3491817,0.022597190271300603 +3491818,0.0373235247708588 +3491819,0.0122168697785046 +3491820,0.013089571155639 +3491821,0.0090442526429047 +3491822,0.0270674346782513 +3491823,0.0082338316118814 +3491824,0.024913686524140402 +3491825,0.0048601996053453 +3491826,0.0146138820582235 +3491827,0.0048629320226609 +3491828,0.0056176913571265 +3491829,0.0149553543637683 +3491830,0.1801221130549877 +3491831,0.0292789429298571 +3491832,0.0060067913967305 +3491833,0.0056639995424906 +3491834,0.0358452276282187 +3491835,0.0072312099817438 +3491836,0.0054279262841658 +3491837,0.0047392787831029 +3491838,0.0051599398746257 +3491839,0.0083013856783509 +3491840,0.008365761891954 +3491841,0.0083383973172336 +3491842,0.0243860979698745 +3491843,0.016495750347608 +3491844,0.0059917114334489 +3491845,0.0098767010495066 +3491846,0.0302338376641273 +3491847,0.0302338376641273 +3491848,0.0105948062514962 +3491849,0.0052751409648258 +3491850,0.016586001086560602 +3491851,0.016593275805185402 +3491852,0.0358744362073518 +3491853,0.0071401460718459 +3491854,0.0071998022595427 +3491855,0.0054277080660573 +3491856,0.0054312736026876 +3491857,0.0049356968355615 +3491858,0.0045882559563022 +3491859,0.0051660925440987 +3491860,0.0249443972419182 +3491861,0.0248347817957449 +3491862,0.004882072063311 +3491863,0.0049070764060986 +3491864,0.0288872683980997 +3491865,0.0122496209348822 +3491866,0.0056899025465108 +3491867,0.0102264383641544 +3491868,0.015176273438291001 +3491869,0.0604612178117509 +3491870,0.09066165454745351 +3491871,0.0302338376641273 +3491872,0.0302068509989171 +3491873,0.0369203858342901 +3491874,0.0052752583336829 +3491875,0.00552713206808 +3491876,0.0276553629765398 +3491877,0.0208901297627911 +3491878,0.0059063550894033 +3491879,0.0054274442403098 +3491880,0.0050515874052401 +3491881,0.015080821562315098 +3491882,0.0045479495246202 +3491883,0.0045453155524447 +3491884,0.0129914815601008 +3491885,0.0108880451511592 +3491886,0.0057788907456541 +3491887,0.0310792399434501 +3491888,0.0063486021545672 +3491889,0.0060192573464687 +3491890,0.0302338376641273 +3491891,0.0581308396112774 +3491892,0.0302338376641273 +3491893,0.09070151299238191 +3491894,0.0158043407227813 +3491895,0.0055312332697212 +3491896,0.0165792264780578 +3491897,0.051323600966352696 +3491898,0.0057058856451023 +3491899,0.0054906034765952 +3491900,0.0054997804815468 +3491901,0.0050429095787213 +3491902,0.0050334409510273 +3491903,0.0227281347195696 +3491904,0.0045452100708533 +3491905,0.0141200423218994 +3491906,0.042284885300161 +3491907,0.0224672006650763 +3491908,0.0109860224061794 +3491909,0.0320646793593082 +3491910,0.0063103543238081 +3491911,0.1511691883206365 +3491912,0.09054819181845361 +3491913,0.0297263014760581 +3491914,0.0055312332697212 +3491915,0.0055309861030379 +3491916,0.0055302298544256 +3491917,0.0170290198372784 +3491918,0.011381779213565101 +3491919,0.0164927617259994 +3491920,0.0164728599689042 +3491921,0.0056489253992406 +3491922,0.0050210787502268 +3491923,0.0045430786573541 +3491924,0.0136417504824728 +3491925,0.0045438540450619 +3491926,0.0140150640205833 +3491927,0.028345711696187 +3491928,0.0223367995478915 +3491929,0.0111023705491457 +3491930,0.0068330837613142 +3491931,0.0186408121015109 +3491932,0.0302338376641273 +3491933,0.0302338376641273 +3491934,0.030222761049519 +3491935,0.0055312332697212 +3491936,0.0055312332697212 +3491937,0.0055345798870203 +3491938,0.004390193311387 +3491939,0.0253266493393239 +3491940,0.027208412574633502 +3491941,0.0164716720471842 +3491942,0.0045439141542509 +3491943,0.0091772405829761 +3491944,0.0183755325011622 +3491945,0.0045455467306244 +3491946,0.0331983653948593 +3491947,0.0553691789265664 +3491948,0.0286334471208324 +3491949,0.090382546279851 +3491950,0.0299226443772683 +3491951,0.0905991489674916 +3491952,0.0165567590591082 +3491953,0.0055290253563355 +3491954,0.0055312332697212 +3491955,0.0165941142132704 +3491956,0.0086645083501934 +3491957,0.0131838146258537 +3491958,0.0404773282884856 +3491959,0.0101240165531634 +3491960,0.011746022270002201 +3491961,0.0037473894381275 +3491962,0.0054505264944169 +3491963,0.010998357401143 +3491964,0.0110159365890913 +3491965,0.0111267796832743 +3491966,0.0047831154647323 +3491967,0.0189264445039373 +3491968,0.0295077709554563 +3491969,0.059002081536999304 +3491970,0.0299876087995067 +3491971,0.0055279207557071 +3491972,0.0055338771325844 +3491973,0.0111272406009845 +3491974,0.0055362751915481 +3491975,0.0130185777256347 +3491976,0.0216602968372841 +3491977,0.0050598216607765 +3491978,0.0153105666507889 +3491979,0.0151860248297451 +3491980,0.0151860248297451 +3491981,0.0115835385815373 +3491982,0.0039308389879888 +3491983,0.0034745999146252 +3491984,0.0036019509193118 +3491985,0.0054408312443074 +3491986,0.0123497091657698 +3491987,0.0049726938317835 +3491988,0.0210286900401115 +3491989,0.0192862872519638 +3491990,0.0165250548234016 +3491991,0.0055312332697212 +3491992,0.021641404670866 +3491993,0.0173891382865177 +3491994,0.0173515459785207 +3491995,0.0115931068039402 +3491996,0.0038874945055565 +3491997,0.0034764068183655 +3491998,0.0104237997438756 +3491999,0.017372999573125998 +3492000,0.0069885540966478 +3492001,0.0041148023696763 +3492002,0.0045857295470069 +3492003,0.1142728457820536 +3492004,0.104731711034696 +3492005,0.0856640355447239 +3492006,0.0114157778363826 +3492007,0.0278329639479602 +3492008,0.0069491998292504 +3492009,0.0138983996585008 +3492010,0.0138983996585008 +3492011,0.0246573865391881 +3492012,0.003476016183548 +3492013,0.0035012625270466 +3492014,0.0042580494425123 +3492015,0.0487502352037005 +3492016,0.0060791749120754 +3492017,0.0034839540313996 +3492018,0.0164305569364847 +3492019,0.0071545240177266 +3492020,0.013925475854785 +3492021,0.1560535132884978 +3492022,0.0515627489309146 +3492023,0.0047486828889825 +3492024,0.0132051634837911 +3492025,0.0173918648119031 +3492026,0.0034344887325769 +3492027,0.0114421651231184 +3492028,0.0075370287510947 +3492029,0.0520178377628326 +3492030,0.0472637088752816 +3492031,0.0505855785344457 +3492032,0.0044124793913774 +3492033,0.0044205932932802 +3492034,0.0114892429907316 +3492035,0.0115188921367103 +3492036,0.052023303853954 +3492037,0.0517060490507923 +3492038,0.06852582986301681 +3492039,0.1576872411393285 +3492040,0.0044919302520243 +3492041,0.0044898107222509 +3492042,0.1040664948748862 +3492043,0.1547280359858586 +3492044,0.008992973936434 +3492045,0.0276897196291535 +3492046,0.0339212342152374 +3492047,0.0519142599226784 +3492048,0.0512039772518134 +3492049,0.035902818390467 +3492050,0.008730178376774 +3492051,0.0235711726300403 +3492052,0.0043839554926508 +3492053,0.536517910659313 +3492054,0.2131159812992142 +3492055,0.026897523146318998 +3492056,0.0269129544659133 +3492057,0.004383950959891 +3492058,0.0043792651830009 +3492059,0.004472823967153 +3492060,0.3072242235511275 +3492061,0.2103347760358601 +3492062,0.0535003749556425 +3492063,0.0090082446113228 +3492064,0.0088632688609154 +3492065,0.0043601230051782 +3492066,0.013146550636208901 +3492067,0.0460558965527795 +3492068,0.0351584665477275 +3492069,0.0088573741516991 +3492070,0.0086366136325151 +3492071,0.0043648849059954 +3492072,0.0202837333578165 +3492073,0.0039642516304394 +3492074,0.2454520408504591 +3492075,0.1421172973430303 +3492076,0.0026710119159559 +3492077,0.0098978911276652 +3492078,0.210950799286365 +3492079,0.1046891867984088 +3492080,0.0024637209717184 +3492081,0.0024637209717184 +3492082,0.0024974399459849 +3492083,0.14063386619091 +3492084,0.3511130373483449 +3492085,0.0348945268192929 +3492086,0.0028574636798091 +3492087,0.0024637209717184 +3492088,0.0049367326903291 +3492089,0.0100959259139349 +3492090,0.0294852520171311 +3492091,0.17365035486325808 +3492092,0.0073911629151552005 +3492093,0.008977041753665801 +3492094,0.0222358259114317 +3492095,0.0051833167392945 +3492096,0.0143900671105577 +3492097,0.0070198883708586 +3492098,0.068032472855398 +3492099,0.0351584665477275 +3492100,0.0024949189408344 +3492101,0.0220867813251151 +3492102,0.012233139539523302 +3492103,0.0266096051782369 +3492104,0.053380875899419394 +3492105,0.0248215802946894 +3492106,0.0061337035149333 +3492107,0.0100849557421855 +3492108,0.0122938246033906 +3492109,0.0024637209717184 +3492110,0.3159171494569701 +3492111,0.079741995301663 +3492112,0.0152759426550403 +3492113,0.0020445678383111 +3492114,0.0024637209717184 +3492115,0.0098548838868736 +3492116,0.0049274419434368 +3492117,0.0073911629151552005 +3492118,0.015001142448015698 +3492119,0.0236416227184682 +3492120,0.0025668226472532 +3492121,0.0061645981806065005 +3492122,0.0063608597790308 +3492123,0.0098548838868736 +3492124,0.0024637209717184 +3492125,0.0024637209717184 +3492126,0.0024637209717184 +3492127,0.0049274419434368 +3492128,0.0049595022370787 +3492129,0.0210671943771344 +3492130,0.0228017084821429 +3492131,0.0025877639973841 +3492132,0.0075690767135534005 +3492133,0.0072759103102595 +3492134,0.0049218066574901 +3492135,0.0077811715525933 +3492136,0.0024768711290191 +3492137,0.0050357663303436 +3492138,0.068065084396651 +3492139,0.0093461225851758 +3492140,0.0227027246795254 +3492141,0.1589172301792298 +3492142,0.0024044517843705 +3492143,0.014712818102137001 +3492144,0.067831932928769 +3492145,0.0063322639927892 +3492146,0.0018756457331356 +3492147,0.0027066320040236 +3492148,0.0225614631209189 +3492149,0.0138136306777596 +3492150,0.0548104057832494 +3492151,0.0017376254695192 +3492152,0.005003277802790499 +3492153,0.002309788144093 +3492154,0.0004810224955818 +3492155,0.0138136306777596 +3492156,0.0138136306777596 +3492157,0.0006111222569717 +3492158,0.0020650073889755998 +3492159,0.0003981917372876 +3492160,0.003568944508046 +3492161,0.0265945621362457 +3492162,0.0136746625001452 +3492163,0.0414702651063426 +3492164,0.0414408920332788 +3492165,0.0012685829210936999 +3492166,0.0039836994816145 +3492167,0.0003749578510389 +3492168,0.0024589836745439 +3492169,0.0690575287753274 +3492170,0.0693365003118855 +3492171,0.0413056553561741 +3492172,0.0138136306777596 +3492173,0.0008058032428158 +3492174,0.0034532993568781 +3492175,0.0268954558019106 +3492176,0.0138136306777596 +3492177,0.04142802114346 +3492178,0.0138136306777596 +3492179,0.069068153388798 +3492180,0.0138136306777596 +3492181,0.0552545227110384 +3492182,0.0966295454457356 +3492183,0.0828817840665576 +3492184,0.0412428723606567 +3492185,0.0138136306777596 +3492186,0.0138136306777596 +3492187,0.041209528860960104 +3492188,0.0138136306777596 +3492189,0.0413919607389083 +3492190,0.0552545227110384 +3492191,0.0138136306777596 +3492192,0.0138136306777596 +3492193,0.0678203307110953 +3492194,0.0542780995627713 +3492195,0.0138136306777596 +3492196,0.0414201736574273 +3492197,0.0276272613555192 +3492198,0.0132641046121177 +3492199,0.041424526577638 +3492200,0.0414408920332788 +3492201,0.069068153388798 +3492202,0.1511827894161473 +3492203,0.0410279690787549 +3492204,0.0136945652464536 +3492205,0.0225462935972396 +3492206,0.0356656865734095 +3492207,0.0172931365628692 +3492208,0.0054762144573032 +3492209,0.0215979717616957 +3492210,0.0362458529765469 +3492211,0.0164757134698546 +3492212,0.0164425504094763 +3492213,0.007287107873708 +3492214,0.0071723664704698 +3492215,0.016528479892795 +3492216,0.005493041745378 +3492217,0.007287107873708 +3492218,0.0217637132100039 +3492219,0.0385903841762848 +3492220,0.0054923672422719 +3492221,0.010991366452947 +3492222,0.0363260655431962 +3492223,0.021861323621124 +3492224,0.0347999806254569 +3492225,0.006450937294799 +3492226,0.0072450433911712 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001020900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001020900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001020900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001021900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001021900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001021900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001022000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001022000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001022000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001022100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001022100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001022100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001022200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001022200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001022200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001022300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001022300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..fc24f14a3 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001022300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1159071304634766 +3490292,0.1741240690685546 +3490293,0.0290122497826814 +3490316,0.0580244995653628 +3490317,0.145061248913407 +3490332,0.0870367493480442 +3490333,0.0873586122143964 +3490334,0.1741079825660563 +3490335,0.0290122497826814 +3490348,0.0277998226856659 +3490349,0.0172588801705843 +3490350,0.0290122497826814 +3490351,0.0870367493480442 +3490374,0.026113642841896698 +3490375,0.0718368172721888 +3490376,0.1469784659144332 +3490377,0.055769163510972 +3490378,0.0580244995653628 +3490379,0.2608878246949174 +3490396,0.0122467418394336 +3490397,0.0238506775349378 +3490398,0.0870187181120204 +3490399,0.0580244995653628 +3490418,0.1730914025590643 +3490419,0.0290122497826814 +3490437,0.0289672978896006 +3490438,0.1447462759841523 +3490439,0.0450747797663879 +3490440,0.0290119804054247 +3490457,0.035780428726692404 +3490458,0.0362716000261014 +3490459,0.0580244995653628 +3490460,0.1124778339686995 +3490476,0.0578528669888842 +3490477,0.086299405776288 +3490478,0.0324349515140056 +3490479,0.0324349515140056 +3490499,0.0862330150047605 +3490500,0.0162174757570028 +3490517,0.0133061122660501 +3490518,0.0252824373655389 +3490519,0.0648699030280112 +3490520,0.081087378785014 +3490544,0.0162174757570028 +3490545,0.0162069259917157 +3490546,0.0324349515140056 +3490547,0.0160779974495632 +3490573,0.0484786303903703 +3490574,0.0162174757570028 +3490575,0.0147261078310808 +3490576,0.0313194140903062 +3490597,0.042316610813542196 +3490598,0.0421922404043015 +3490599,0.0164145000019836 +3490600,0.0499964662978476 +3490601,0.027753441067568302 +3490602,0.0277221109110886 +3490603,0.0149061510125342 +3490604,0.0150588322395135 +3490623,0.0138654066249728 +3490624,0.0277308132499456 +3490625,0.0113076744427551 +3490626,0.040669177995505595 +3490639,0.0138654066249728 +3490640,0.0554616264998912 +3490641,0.0275177950368506 +3490642,0.0334131175840426 +3490643,0.055578723689628004 +3490644,0.0135341463610529 +3490645,0.0134904274282003 +3490658,0.0277308132499456 +3490659,0.0138654066249728 +3490660,0.0780013616115499 +3490661,0.0334308979375391 +3490662,0.0953278895300002 +3490663,0.0135341463610529 +3490664,0.013464395386509 +3490665,0.040505545735551 +3490681,0.0692554800620311 +3490682,0.0138654066249728 +3490683,0.0138654066249728 +3490684,0.0277308132499456 +3490685,0.0112013293609541 +3490686,0.0111621457938822 +3490687,0.0135995152994179 +3490688,0.0135710725159902 +3490689,0.0135142626337601 +3490690,0.0135341463610529 +3490707,0.0277308132499456 +3490708,0.0138654066249728 +3490709,0.0137735966402944 +3490710,0.0138654066249728 +3490725,0.0138603904811283 +3490726,0.0138654066249728 +3490727,0.0415962198749184 +3490728,0.0554578015180903 +3490736,0.0970085779936426 +3490737,0.0692191327865823 +3490738,0.0950796186074802 +3490739,0.06916104808767119 +3490747,0.2581334249178832 +3490748,0.0136381547929429 +3490757,0.0545829143235182 +3490758,0.0409542577472784 +3490771,0.0409643959348468 +3490772,0.0136105535685217 +3490773,0.0131449006181807 +3490774,0.027266019949964 +3490787,0.0267451209081116 +3490788,0.0117674552579327 +3490789,0.0408527159907905 +3490790,0.0508506873644632 +3490805,0.0134187525547805 +3490806,0.0391135016473932 +3490807,0.0260153580456972 +3490808,0.0753913754039679 +3490809,0.007007511403766 +3490810,0.0070864225971811 +3490827,0.0153085991262902 +3490828,0.0159146633896408 +3490842,0.0463658330852557 +3490843,0.015454608015716 +3490844,0.0157909032197207 +3490845,0.04803004476318 +3490856,0.015454608015716 +3490857,0.0154626039224617 +3490858,0.015454608015716 +3490859,0.0461901051115029 +3490860,0.0161180365830659 +3490861,0.0804383908872866 +3490875,0.015454608015716 +3490876,0.015454608015716 +3490877,0.0479991111018092 +3490878,0.0159030499961811 +3490879,0.0322360731661318 +3490892,0.046363824047148 +3490893,0.046363824047148 +3490894,0.0161180365830659 +3490895,0.0157063228398302 +3490900,0.0154420687275156 +3490901,0.0147312972654281 +3490902,0.046208091557511696 +3490903,0.0463626859561389 +3490904,0.0454978490264194 +3490905,0.0478702092793777 +3490906,0.0462127449069257 +3490907,0.0627544573087144 +3490916,0.0463643963822885 +3490917,0.0154555029592018 +3490918,0.0154293410356665 +3490919,0.015453533915153 +3490920,0.0153565821158576 +3490921,0.0317139685228435 +3490922,0.0482514588232962 +3490923,0.1440648247423445 +3490924,0.0156855905914904 +3490925,0.0417433606992349 +3490926,0.11104796674961051 +3490935,0.0144581788574916 +3490936,0.0151112830677917 +3490937,0.0208893201004526 +3490938,0.0199565273429449 +3490939,0.0465023606486717 +3490940,0.046434438480241896 +3490941,0.0126591985729104 +3490942,0.0124764099408233 +3490953,0.0152800576228237 +3490954,0.015447218030701 +3490955,0.0138696358753476 +3490956,0.0135559764338714 +3490957,0.0141366121586414 +3490958,0.0143944062405573 +3490959,0.0464333770796655 +3490960,0.0464330418287561 +3490966,0.0418698946014045 +3490967,0.0139566315338015 +3490968,0.0123423327550461 +3490969,0.0114531383534248 +3490970,0.0981158244490452 +3490971,0.0138572417919785 +3490972,0.0549057999765701 +3490973,0.0137599021885253 +3490974,0.0154777923598885 +3490975,0.0464646851092103 +3490980,0.0420565210851543 +3490981,0.0139543639381833 +3490982,0.0139467315977153 +3490983,0.0974401374350701 +3490984,0.0575959391083319 +3490985,0.12587094334495239 +3490986,0.0138756597568126 +3490987,0.041731839003361096 +3490988,0.041570813330222 +3490989,0.0137389533744346 +3490990,0.0412612238177405 +3490991,0.0137190217456951 +3490992,0.0154777923598885 +3490993,0.0154777923598885 +3490994,0.0474800091091368 +3490995,0.0154777923598885 +3490999,0.0139684065532377 +3491000,0.0142326318748959 +3491001,0.0116392615871885 +3491002,0.0416883367872882 +3491003,0.0114364333306617 +3491004,0.0114632932909671 +3491005,0.0417652494561095 +3491006,0.06933532463845679 +3491007,0.0464659446514561 +3491008,0.046685731654279 +3491009,0.0772899915354742 +3491010,0.0463655047804811 +3491013,0.0128816623075219 +3491014,0.0110687783706667 +3491015,0.0416199212897667 +3491016,0.0416138913738136 +3491017,0.1438569028399366 +3491018,0.0165759344741723 +3491019,0.077434313655656 +3491020,0.0154777923598885 +3491021,0.028275104239583 +3491022,0.0133582218542791 +3491023,0.0106595260154372 +3491024,0.0134001182239542 +3491025,0.047556388380353004 +3491026,0.0157088444517791 +3491027,0.0211354765187265 +3491028,0.0162862213109743 +3491029,0.0141375521197915 +3491030,0.0702655821224342 +3491031,0.0697146108721356 +3491032,0.03943449018923 +3491033,0.0104902106640015 +3491034,0.0106054246425628 +3491035,0.0106907354281158 +3491036,0.0161988048804576 +3491037,0.0157125126570463 +3491038,0.0171835421451091 +3491039,0.138322354401663 +3491040,0.0141375521197915 +3491041,0.0424126563593745 +3491042,0.0104117849841713 +3491043,0.0106416974446142 +3491044,0.0107012252826205 +3491045,0.0533056796732706 +3491046,0.0157125126570463 +3491047,0.0156782152172604 +3491048,0.0164141164714854 +3491049,0.0162903759628534 +3491050,0.08388392998451899 +3491051,0.0279562017990655 +3491052,0.0141375521197915 +3491053,0.07066262620941151 +3491054,0.0312815828553755 +3491055,0.0313728694931011 +3491056,0.010678343077608 +3491057,0.0753062104810423 +3491058,0.0157125126570463 +3491059,0.0478826183521176 +3491060,0.0816795255484334 +3491061,0.0162903759628534 +3491062,0.04879371076207 +3491063,0.081395288450158 +3491064,0.0278843006292738 +3491065,0.1398377200405397 +3491066,0.0424126563593745 +3491067,0.0141375521197915 +3491068,0.0140308066720356 +3491069,0.0141304195045132 +3491070,0.0117066359775103 +3491071,0.0208820558993466 +3491072,0.11018178774982201 +3491073,0.047118390652259604 +3491074,0.0162903759628534 +3491075,0.1461814578679792 +3491076,0.0838309015666325 +3491077,0.0279608227437339 +3491078,0.12699984774009251 +3491079,0.056527231670730205 +3491080,0.042337231166262104 +3491081,0.0141058315046286 +3491082,0.0148249427771044 +3491083,0.0156821979915767 +3491084,0.0157125126570463 +3491085,0.0157125126570463 +3491086,0.0494066346525553 +3491087,0.049006749854453996 +3491088,0.047563416363116395 +3491089,0.0744110905709931 +3491090,0.0266286394915943 +3491091,0.0276519146079542 +3491092,0.0423678364712817 +3491093,0.0140472330524619 +3491094,0.0471375379711389 +3491095,0.0784868079336446 +3491096,0.0483294441255047 +3491097,0.0160624530170207 +3491098,0.0439735167905973 +3491099,0.0221489405803061 +3491100,0.026280257179593 +3491101,0.06581980785666611 +3491102,0.06788308825814231 +3491103,0.07849675016057 +3491104,0.07855547682170641 +3491105,0.0206677497696382 +3491106,0.0454005859123671 +3491107,0.021695692428666202 +3491108,0.012863668042841201 +3491109,0.0784338352951032 +3491110,0.0342268690722924 +3491111,0.1052734851440719 +3491112,0.0131516307592391 +3491113,0.095533353912995 +3491114,0.0680397801230625 +3491115,0.1090550463645302 +3491116,0.0784065118719425 +3491117,0.0065497660813589 +3491118,0.0322700369510266 +3491119,0.0550187577670615 +3491120,0.0277049007706599 +3491121,0.0125923720232304 +3491122,0.0065419248705819 +3491123,0.0353034999553615 +3491124,0.0440857471251155 +3491125,0.03956729363216 +3491126,0.112033136690564 +3491127,0.0131771739509714 +3491128,0.0926503377669023 +3491129,0.0133961709258106 +3491130,0.0136044025421142 +3491131,0.027456076409878502 +3491132,0.0409476152164715 +3491133,0.0064395046792924 +3491134,0.0064334362575711 +3491135,0.0091871796175837 +3491136,0.1009567340427686 +3491137,0.0378364565047503 +3491138,0.1089348693959648 +3491139,0.1278136174367155 +3491140,0.0140798364891106 +3491141,0.1029045555750159 +3491142,0.013167064958239 +3491143,0.0133161723192431 +3491144,0.0409611757665963 +3491145,0.0136044025421142 +3491146,0.0258780731840363 +3491147,0.0064299317343828 +3491148,0.0091871796175837 +3491149,0.0041830190457403 +3491150,0.0041986667976946 +3491151,0.0367955482763007 +3491152,0.0363361589002391 +3491153,0.0110535090789198 +3491154,0.0339682307136516 +3491155,0.0838948009853265 +3491156,0.1411238518984917 +3491157,0.049896941846552204 +3491158,0.0509342080280875 +3491159,0.0130769504496537 +3491160,0.019219672885270198 +3491161,0.0367487184703348 +3491162,0.0091871796175837 +3491163,0.0134194283404598 +3491164,0.013588622881697 +3491165,0.109965699702464 +3491166,0.0361024217623754 +3491167,0.0337744026465515 +3491168,0.0331842635774199 +3491169,0.0839304004053038 +3491170,0.013988702557981 +3491171,0.1014104035098911 +3491172,0.024182126774596 +3491173,0.0150431486555808 +3491174,0.0151644534057034 +3491175,0.0064818308670781 +3491176,0.027472250807398 +3491177,0.0090086780832597 +3491178,0.0091871796175837 +3491179,0.0275615388527511 +3491180,0.0044562195832755 +3491181,0.1466165339360188 +3491182,0.1101141911014192 +3491183,0.0783206407587006 +3491184,0.0997373022307586 +3491185,0.0139963681135597 +3491186,0.014243806547155 +3491187,0.055954810231924 +3491188,0.0845188277877628 +3491189,0.2538284139249287 +3491190,0.0756688811433147 +3491191,0.0052226404407148 +3491192,0.0152382570383087 +3491193,0.0091871796175837 +3491194,0.0091871796175837 +3491195,0.0299593428316505 +3491196,0.3287358686564276 +3491197,0.079145004927581 +3491198,0.08838440501106931 +3491199,0.0703539274445146 +3491200,0.057114983416653706 +3491201,0.1265427862219893 +3491202,0.0507729351520538 +3491203,0.0060237034221136 +3491204,0.0252034044317611 +3491205,0.027040771062541297 +3491206,0.0091871796175837 +3491207,0.0367160809979111 +3491208,0.0183322784062262 +3491209,0.0169110999513698 +3491210,0.011698724366863 +3491211,0.0676578992640812 +3491212,0.0332684498683936 +3491213,0.1763241647447841 +3491214,0.07607119327797679 +3491215,0.0253864675760269 +3491216,0.0253864675760269 +3491217,0.025061640276689 +3491218,0.0252973025407746 +3491219,0.0182132699085753 +3491220,0.0643102573230859 +3491221,0.0456275421193895 +3491222,0.0367487184703348 +3491223,0.0164837436088712 +3491224,0.0167437035663252 +3491225,0.0982220719995874 +3491226,0.01545287182068 +3491227,0.0229724571108818 +3491228,0.0459659694626566 +3491229,0.0657173934833672 +3491230,0.0328111092178983 +3491231,0.0761594027280807 +3491232,0.0252986524230264 +3491233,0.0107378138176236 +3491234,0.0101384349911012 +3491235,0.1009802453739061 +3491236,0.0091850767849232 +3491237,0.0176109497690441 +3491238,0.0092197820234251 +3491239,0.0170344354886161 +3491240,0.0165149781850049 +3491241,0.0097767413576918 +3491242,0.0146928435423043 +3491243,0.0048637562431395 +3491244,0.0049707988951698 +3491245,0.0686687525411397 +3491246,0.114862285554409 +3491247,0.0556269939636111 +3491248,0.0108509780839085 +3491249,0.0253864675760269 +3491250,0.0253864675760269 +3491251,0.0050367221666044 +3491252,0.045775568485443 +3491253,0.0091871796175837 +3491254,0.0091800948846916 +3491255,0.0496773477042672 +3491256,0.0330501571297644 +3491257,0.047307175595344905 +3491258,0.0324105514018136 +3491259,0.0066928127340106 +3491260,0.0065711892148009 +3491261,0.0475245586459719 +3491262,0.0483317820867817 +3491263,0.0048637562431395 +3491264,0.0099373701679507 +3491265,0.0918898284435272 +3491266,0.0687116724688152 +3491267,0.0229724571108818 +3491268,0.0229197416291031 +3491269,0.0766829002629581 +3491270,0.0542740019821691 +3491271,0.07552059847878059 +3491272,0.0253864675760269 +3491273,0.1523188054561614 +3491274,0.1766310360713086 +3491275,0.0455036637005036 +3491276,0.0362888537930198 +3491277,0.0165250785648822 +3491278,0.0114375458157171 +3491279,0.0067591406955329 +3491280,0.0065666470147109 +3491281,0.0067602861030275 +3491282,0.0059851172346161 +3491283,0.0243632131223435 +3491284,0.0482010386878418 +3491285,0.048367275806809204 +3491286,0.0150925859731396 +3491287,0.0152257331618703 +3491288,0.0229724571108818 +3491289,0.045934399830031294 +3491290,0.0778783016790079 +3491291,0.0230313866856393 +3491292,0.1012222928788537 +3491293,0.0252738863759494 +3491294,0.0240877941310829 +3491295,0.0275561834958707 +3491296,0.0641756638312176 +3491297,0.0852150840824033 +3491298,0.0494365806530163 +3491299,0.0076221020424639 +3491300,0.0120996806652393 +3491301,0.0065907596569566 +3491302,0.0195507486285615 +3491303,0.0207611896638429 +3491304,0.0070658801960775 +3491305,0.0059838984277236 +3491306,0.0298228274557993 +3491307,0.0132729629628219 +3491308,0.0160733664075773 +3491309,0.0483316904075746 +3491310,0.0104801384060548 +3491311,0.0918898284435272 +3491312,0.0229724571108818 +3491313,0.0146833418521282 +3491314,0.0386276614829462 +3491315,0.0090278248821977 +3491316,0.0275615388527511 +3491317,0.0091871796175837 +3491318,0.0152147317408512 +3491319,0.0075802810505543 +3491320,0.0075823457726086 +3491321,0.0075793489813804 +3491322,0.018814212329831 +3491323,0.0597114241487757 +3491324,0.013229560880161799 +3491325,0.0065818628434945 +3491326,0.0099043206668469 +3491327,0.0101969596503197 +3491328,0.023905614144340698 +3491329,0.0059628370217978 +3491330,0.0082388072628788 +3491331,0.0112283794305609 +3491332,0.06891737133264539 +3491333,0.0229724571108818 +3491334,0.2526970282196998 +3491335,0.091748631535646 +3491336,0.012601279678375099 +3491337,0.012903045669187 +3491338,0.057776383369185905 +3491339,0.0336656688123949 +3491340,0.0091871796175837 +3491341,0.0275615388527511 +3491342,0.0075793489813804 +3491343,0.037896744906902 +3491344,0.0122025201932142 +3491345,0.0123342193217173 +3491346,0.0297353890744408 +3491347,0.0298258580033061 +3491348,0.0102679320627812 +3491349,0.030822822824120404 +3491350,0.0179462356712221 +3491351,0.017888511065393402 +3491352,0.0413317548848688 +3491353,0.0058388886465997 +3491354,0.0043866248147164 +3491355,0.009063622132992399 +3491356,0.0688024347290709 +3491357,0.0668123714021263 +3491358,0.0223819092888061 +3491359,0.0229724571108818 +3491360,0.3214653178765724 +3491361,0.06891737133264539 +3491362,0.0085950884937298 +3491363,0.0089183119915404 +3491364,0.008566629837083 +3491365,0.008671956918083 +3491366,0.0119626373054833 +3491367,0.0078236556651321 +3491368,0.0045200141212952 +3491369,0.0367460077815842 +3491370,0.0091871796175837 +3491371,0.0275615153796882 +3491372,0.0183364479653145 +3491373,0.0151547542596956 +3491374,0.0075793489813804 +3491375,0.0075793489813804 +3491376,0.0151703908198309 +3491377,0.0123489266261458 +3491378,0.0257886741049559 +3491379,0.0099032079655254 +3491380,0.0099337465292362 +3491381,0.0102647816530812 +3491382,0.0102742742747068 +3491383,0.0102742742747068 +3491384,0.0100417446186426 +3491385,0.0059867330334843 +3491386,0.0238512144859623 +3491387,0.0117835095814873 +3491388,0.0176673606472487 +3491389,0.0043996641058089 +3491390,0.0258259212100706 +3491391,0.0044065514742986 +3491392,0.0687092602051236 +3491393,0.2526970282196998 +3491394,0.0044798289110804 +3491395,0.0740542436901072 +3491396,0.011902591679245199 +3491397,0.0039915094403371 +3491398,0.0091871796175837 +3491399,0.045932277704734695 +3491400,0.0075744782914412 +3491401,0.0075793489813804 +3491402,0.0152578968780268 +3491403,0.0076533565155246 +3491404,0.0086390929900789 +3491405,0.0390415488183685 +3491406,0.0355813075580549 +3491407,0.0071160146035254 +3491408,0.0099169263327263 +3491409,0.0099370096431935 +3491410,0.009913798697254 +3491411,0.010280509676139 +3491412,0.0102742742747068 +3491413,0.020551755579841402 +3491414,0.0205672514300908 +3491415,0.0102742742747068 +3491416,0.0511733553212437 +3491417,0.0120364100006487 +3491418,0.0418356120250036 +3491419,0.0058845569754194 +3491420,0.0049409678663485 +3491421,0.008394838692887801 +3491422,0.07569131525844969 +3491423,0.16029450244277238 +3491424,0.0459449142217636 +3491425,0.05225958339480451 +3491426,0.0050845681503382 +3491427,0.0121293384286761 +3491428,0.0039675305597484 +3491429,0.0275615388527511 +3491430,0.0275615388527511 +3491431,0.0091161438233012 +3491432,0.0075789080627323 +3491433,0.0075793489813804 +3491434,0.0075793489813804 +3491435,0.0075793489813804 +3491436,0.0072658546268939 +3491437,0.0217975638806817 +3491438,0.0213480438105762 +3491439,0.0071306684012851 +3491440,0.0182812287282172 +3491441,0.0195136199450947 +3491442,0.0095334517521921 +3491443,0.0092880959096773 +3491444,0.012052502738267499 +3491445,0.0059600804668656 +3491446,0.0059779941381715 +3491447,0.0111406069192625 +3491448,0.0043241707977831 +3491449,0.0524269858367111 +3491450,0.0177598185837268 +3491451,0.0918898284435272 +3491452,0.0228926587605646 +3491453,0.0229724571108818 +3491454,0.0688423762444217 +3491455,0.0209242179989814 +3491456,0.10472893305278219 +3491457,0.0036653967952528 +3491458,0.010047904226011699 +3491459,0.013771119400538101 +3491460,0.0045983166581143 +3491461,0.010769022851868 +3491462,0.0040135358756329 +3491463,0.0183190884506852 +3491464,0.0090915402104679 +3491465,0.0275615388527511 +3491466,0.0091871796175837 +3491467,0.0075314327801106 +3491468,0.0075793489813804 +3491469,0.0075793489813804 +3491470,0.0532208909715257 +3491471,0.0076108014080359 +3491472,0.0072617854663701 +3491473,0.0363828074517595 +3491474,0.0071160146035254 +3491475,0.021354820950585898 +3491476,0.0051714504447414 +3491477,0.0297118810284126 +3491478,0.007941312473742 +3491479,0.011084937725283 +3491480,0.0075784111791558 +3491481,0.017616456770791 +3491482,0.0532794557511804 +3491483,0.0918898284435272 +3491484,0.0195583267888492 +3491485,0.022924138548964 +3491486,0.0591415571113382 +3491487,0.062402989463228004 +3491488,0.1040408876748523 +3491489,0.0209242179989814 +3491490,0.0033158159349113 +3491491,0.0066654742545820996 +3491492,0.008627743774632 +3491493,0.0091260108351061 +3491494,0.0091871796175837 +3491495,0.0183743592351674 +3491496,0.022703229386688 +3491497,0.0075793489813804 +3491498,0.0075793489813804 +3491499,0.0076072064734123 +3491500,0.0218174426395073 +3491501,0.0072645785583955 +3491502,0.007060035598435 +3491503,0.0046988371406064 +3491504,0.004239905668668 +3491505,0.0096197153353141 +3491506,0.003968707024109799 +3491507,0.0083251751643658 +3491508,0.0122328648771944 +3491509,0.051679240200141 +3491510,0.0532794557511804 +3491511,0.0229724571108818 +3491512,0.0198699819664257 +3491513,0.0508089979550512 +3491514,0.0264037426177364 +3491515,0.0209242179989814 +3491516,0.0211039449347635 +3491517,0.0166291139937792 +3491518,0.016586404184794498 +3491519,0.0084822133763615 +3491520,0.027546622600849398 +3491521,0.0458967687987712 +3491522,0.0075706047007645 +3491523,0.0075782281054428 +3491524,0.0227124620727808 +3491525,0.0379138094663864 +3491526,0.0145547335023718 +3491527,0.0074438343374668 +3491528,0.0145011815992128 +3491529,0.0072658546268939 +3491530,0.0047490272993907 +3491531,0.0044985164518704 +3491532,0.0057265122596129 +3491533,0.0038932328609945998 +3491534,0.0153815754189015 +3491535,0.0229724571108818 +3491536,0.0177503794878336 +3491537,0.0226673045238297 +3491538,0.0310306684118912 +3491539,0.0065064084823057 +3491540,0.0209242179989814 +3491541,0.062699146782183 +3491542,0.010308474778803 +3491543,0.0033158159349113 +3491544,0.0034307969254814 +3491545,0.027700408120885298 +3491546,0.0275615388527511 +3491547,0.0176023732131882 +3491548,0.0091226216651518 +3491549,0.0217975638806817 +3491550,0.0217975638806817 +3491551,0.014531909810240901 +3491552,0.0318635375750098 +3491553,0.013901816815731799 +3491554,0.0044885624610154 +3491555,0.0023648428499725 +3491556,0.119777484046273 +3491557,0.0173914727080991 +3491558,0.0229011167101725 +3491559,0.0689048538458398 +3491560,0.0209242179989814 +3491561,0.0209242179989814 +3491562,0.10462108999490699 +3491563,0.0207826645983085 +3491564,0.0103646140963259 +3491565,0.0067309003213408 +3491566,0.0035001025486279 +3491567,0.0089681238317397 +3491568,0.0367780415582327 +3491569,0.0091794649280293 +3491570,0.007639936354083 +3491571,0.0217975638806817 +3491572,0.0217985895993812 +3491573,0.0090916181576141 +3491574,0.013661566466613 +3491575,0.0512684095553859 +3491576,0.0171203464269638 +3491577,0.0171203464269638 +3491578,0.0173188349799276 +3491579,0.0203592943485744 +3491580,0.0206995335123124 +3491581,0.0209242179989814 +3491582,0.0033727859228446 +3491583,0.0067794925900585 +3491584,0.0463975767738742 +3491585,0.0241525739741114 +3491586,0.0073254387556163 +3491587,0.0072658546268939 +3491588,0.021800558106922 +3491589,0.0158587333516213 +3491590,0.0116452492570214 +3491591,0.0067714595394415 +3491592,0.0178729190052962 +3491593,0.0171203464269638 +3491594,0.017313842426675 +3491595,0.0179543131743537 +3491596,0.0189046281675205 +3491597,0.0478365639264659 +3491598,0.1314957426611506 +3491599,0.0036146850990476 +3491600,0.0111105357506011 +3491601,0.0316103384026572 +3491602,0.0079212164123238 +3491603,0.0148597022408729 +3491604,0.0293401883770755 +3491605,0.0652847069717183 +3491606,0.0072726194533795 +3491607,0.0267037070988296 +3491608,0.0090321542617902 +3491609,0.0277317471353949 +3491610,0.041952390995585 +3491611,0.0047177422513073 +3491612,0.0049517246075738 +3491613,0.020872873226606 +3491614,0.0255841094359226 +3491615,0.0056344045159294 +3491616,0.0056223955464877 +3491617,0.0200123839339162 +3491618,0.0813933969926947 +3491619,0.017477754714752 +3491620,0.0108854844470001 +3491621,0.0104163689538836 +3491622,0.0104163689538836 +3491623,0.0090248442840052 +3491624,0.0089763039723038 +3491625,0.0180115254890394 +3491626,0.0140288835391402 +3491627,0.042086650617420604 +3491628,0.0059126830431263 +3491629,0.0051546908115896 +3491630,0.0317239079316954 +3491631,0.0255941543728113 +3491632,0.07659543039511041 +3491633,0.0255941543728113 +3491634,0.0055013057770351 +3491635,0.0167770226554383 +3491636,0.0106069248932808 +3491637,0.0249650204911428 +3491638,0.025206666906329 +3491639,0.0245788276486216 +3491640,0.0176880207759594 +3491641,0.017857516518665698 +3491642,0.0088185514339096 +3491643,0.0104163689538836 +3491644,0.0102997223189417 +3491645,0.0103784401587141 +3491646,0.0089763039723038 +3491647,0.0090229781043113 +3491648,0.0140288835391402 +3491649,0.0140123496607793 +3491650,0.0277537654437553 +3491651,0.0068625876093734 +3491652,0.034338015637908004 +3491653,0.0828560801613918 +3491654,0.1275613206083961 +3491655,0.0054815676100749 +3491656,0.0251337606331422 +3491657,0.0167054442180808 +3491658,0.0745883331562225 +3491659,0.075821585549702 +3491660,0.0263155184294097 +3491661,0.0255006990061181 +3491662,0.0103209576717063 +3491663,0.0104163689538836 +3491664,0.0092677225286012 +3491665,0.009294845873109 +3491666,0.0448985309545872 +3491667,0.0269289408454317 +3491668,0.0179526079446076 +3491669,0.018413478352398302 +3491670,0.0140288835391402 +3491671,0.042086645923527705 +3491672,0.0138603727076751 +3491673,0.0067968457005918 +3491674,0.0073356716202588 +3491675,0.0080270837304801 +3491676,0.013653739746658601 +3491677,0.0767824631184339 +3491678,0.02534373692473 +3491679,0.0085801091864462 +3491680,0.0078353363837977 +3491681,0.1264447718858715 +3491682,0.1761559220035547 +3491683,0.0251161109392368 +3491684,0.0264122335503982 +3491685,0.026474101548134198 +3491686,0.020757179779882 +3491687,0.010365674516956 +3491688,0.0084488083459846 +3491689,0.0033084313668284 +3491690,0.0095119183203931 +3491691,0.0089166580752261 +3491692,0.0267738035241515 +3491693,0.026939302503504202 +3491694,0.0420325482229481 +3491695,0.0420302586079558 +3491696,0.0140288835391402 +3491697,0.0139146694499565 +3491698,0.020607143753283 +3491699,0.0310777247001597 +3491700,0.0255941543728113 +3491701,0.0255941543728113 +3491702,0.0507138797066052 +3491703,0.0248747630989199 +3491704,0.0085339844875288 +3491705,0.0235882908990211 +3491706,0.1443544061006919 +3491707,0.0505779087543486 +3491708,0.0082338731106114 +3491709,0.0070073914342417 +3491710,0.0070070377418938 +3491711,0.0075565739176391 +3491712,0.013238920366226401 +3491713,0.0269138067457923 +3491714,0.0450403405788439 +3491715,0.0140288835391402 +3491716,0.0140288835391402 +3491717,0.042086650617420604 +3491718,0.0140029344532373 +3491719,0.0088567724496398 +3491720,0.0255941543728113 +3491721,0.0767824631184339 +3491722,0.0253843372452879 +3491723,0.0255941543728113 +3491724,0.0054068518327411 +3491725,0.0139942614002148 +3491726,0.0235399091510475 +3491727,0.0109150796396376 +3491728,0.0252042901849296 +3491729,0.0438242031333309 +3491730,0.0201850042016416 +3491731,0.0137686756178451 +3491732,0.0076571665677804 +3491733,0.0059536198069025 +3491734,0.0097233713900015 +3491735,0.0088431736500316 +3491736,0.0269023476329992 +3491737,0.0088920394983217 +3491738,0.05551267027261 +3491739,0.0140288835391402 +3491740,0.0140288835391402 +3491741,0.0140288835391402 +3491742,0.0410620716035556 +3491743,0.0507360628967859 +3491744,0.0254234497037234 +3491745,0.0255941543728113 +3491746,0.0511883087456226 +3491747,0.0251071532557739 +3491748,0.0508774220793961 +3491749,0.010695941339918101 +3491750,0.005369051060963 +3491751,0.0317072335172768 +3491752,0.0044979429803788 +3491753,0.0046754689977944 +3491754,0.0046605654714312 +3491755,0.0379599486789581 +3491756,0.0124990634276385 +3491757,0.025360470285512 +3491758,0.0134565060448006 +3491759,0.0076270257749153 +3491760,0.0076442550777478 +3491761,0.0059148129075765 +3491762,0.0052397770418624 +3491763,0.0033226579755954 +3491764,0.0032251130777148 +3491765,0.009113593956793 +3491766,0.0418080649747534 +3491767,0.014012575417941 +3491768,0.0417474536595318 +3491769,0.0279221586270869 +3491770,0.0419768160057526 +3491771,0.0140288835391402 +3491772,0.1277205012728644 +3491773,0.0255941543728113 +3491774,0.0269587377048677 +3491775,0.0160448788396973 +3491776,0.0044996027610648 +3491777,0.0045028738656579 +3491778,0.0048241292306061 +3491779,0.0046552568674087 +3491780,0.0381420400084532 +3491781,0.0126413078978657 +3491782,0.0076366434159093 +3491783,0.0229498663226566 +3491784,0.0178082699117177 +3491785,0.0186272195925851 +3491786,0.0116172683408239 +3491787,0.0038745058700442 +3491788,0.0032210322096943 +3491789,0.012740804588394 +3491790,0.0139141892032194 +3491791,0.1073307665390268 +3491792,0.0256320968867323 +3491793,0.0255472079104804 +3491794,0.07667381429572939 +3491795,0.0214520599693056 +3491796,0.0053630149923264 +3491797,0.0044823514296131 +3491798,0.023275516579673902 +3491799,0.0046577463513045 +3491800,0.0377841835370149 +3491801,0.0125928037035699 +3491802,0.007627996696966 +3491803,0.0382171461161806 +3491804,0.0071148213133693 +3491805,0.014165863053962401 +3491806,0.007736371886323701 +3491807,0.0038745058700442 +3491808,0.0159477836511617 +3491809,0.0289139717759477 +3491810,0.0280519995050971 +3491811,0.050554687402474305 +3491812,0.0253909340150166 +3491813,0.0253629408933445 +3491814,0.0106695699425484 +3491815,0.0053630149923264 +3491816,0.010631645786321 +3491817,0.018614513484183803 +3491818,0.0342401728926063 +3491819,0.0101877171022869 +3491820,0.0120482523134326 +3491821,0.0076842746075221 +3491822,0.022983073474136098 +3491823,0.007049959817043 +3491824,0.0213490869093659 +3491825,0.003872368010608 +3491826,0.0116471517634025 +3491827,0.0038745058700442 +3491828,0.004798352478769 +3491829,0.0125037061334051 +3491830,0.1744229744838474 +3491831,0.0283338456071388 +3491832,0.0049762556924765 +3491833,0.0046235259130678 +3491834,0.0310586376865555 +3491835,0.0062739899177398 +3491836,0.0044160282016001 +3491837,0.0038165822383884 +3491838,0.0041527427440878 +3491839,0.0071139610372483 +3491840,0.0071733197265323 +3491841,0.0071419399093239 +3491842,0.0194353304146695 +3491843,0.013324100884504898 +3491844,0.0051703846558963 +3491845,0.0082452446222304 +3491846,0.0292836651206016 +3491847,0.0292836651206016 +3491848,0.008584535200134299 +3491849,0.0042703675077848 +3491850,0.0134670918775593 +3491851,0.0134746081267756 +3491852,0.0310940064263312 +3491853,0.0061845117507904 +3491854,0.0062445449962804 +3491855,0.0044158414208507 +3491856,0.0044195420512531 +3491857,0.0040274905234117 +3491858,0.0036942099190285 +3491859,0.0041583102187701 +3491860,0.0213827290934892 +3491861,0.021274814336184802 +3491862,0.0038921691506252 +3491863,0.0039134613613421 +3491864,0.0233863992609456 +3491865,0.0100205350203966 +3491866,0.0048628494195714 +3491867,0.0085890532245362 +3491868,0.0127396832313982 +3491869,0.0585604772053406 +3491870,0.0878113487626452 +3491871,0.0292836651206016 +3491872,0.0292584619786803 +3491873,0.0298894205635672 +3491874,0.0042704687369833 +3491875,0.0044877067410283 +3491876,0.0224555269869527 +3491877,0.0180342237749716 +3491878,0.0049979034932929 +3491879,0.0044155604605792 +3491880,0.0041389433998472 +3491881,0.0123452958536568 +3491882,0.0036602224410169 +3491883,0.0036588795269049 +3491884,0.0117211200522826 +3491885,0.0095316227944463 +3491886,0.0046787716094721 +3491887,0.025489389901344403 +3491888,0.0052276818198186 +3491889,0.0051852057073735 +3491890,0.0292836651206016 +3491891,0.0562227424225981 +3491892,0.0292836651206016 +3491893,0.0878509953618048 +3491894,0.0127914275528513 +3491895,0.0044912439770996 +3491896,0.0134603752977922 +3491897,0.042959225582347396 +3491898,0.0047762592336709 +3491899,0.0045978377286373 +3491900,0.0046065612089785 +3491901,0.0041304916640834 +3491902,0.0041289117675282 +3491903,0.0182958724354566 +3491904,0.0036580221297211 +3491905,0.0128346660847678 +3491906,0.0384234833642491 +3491907,0.0196983624581622 +3491908,0.0096060812191202 +3491909,0.0263309293801052 +3491910,0.0051732534673148 +3491911,0.146418325603008 +3491912,0.08770229408947469 +3491913,0.0287725171505395 +3491914,0.0044912439770996 +3491915,0.0044908685921126 +3491916,0.0044903179808476 +3491917,0.0142997007650369 +3491918,0.0095358573371019 +3491919,0.013813246812329701 +3491920,0.0137943817230207 +3491921,0.0047464462411348 +3491922,0.0041529091938597 +3491923,0.003656760666698 +3491924,0.0109800990010836 +3491925,0.003657046110524 +3491926,0.0127317556214915 +3491927,0.025771503163039798 +3491928,0.0195636226019483 +3491929,0.0097138937393229 +3491930,0.0056068664059189 +3491931,0.0152829674902054 +3491932,0.0292836651206016 +3491933,0.0292836651206016 +3491934,0.0292729183383376 +3491935,0.0044912439770996 +3491936,0.0044912439770996 +3491937,0.0044937780545232 +3491938,0.0041443156795487 +3491939,0.0236041047823353 +3491940,0.0227732609161143 +3491941,0.0137932991530652 +3491942,0.0036590804663641 +3491943,0.0074101664979452 +3491944,0.014799757931228 +3491945,0.0036585254028305 +3491946,0.0290479929578518 +3491947,0.0484253878015864 +3491948,0.0277001404836262 +3491949,0.0875343710296701 +3491950,0.0289818333313311 +3491951,0.08775167946736659 +3491952,0.013442523988917099 +3491953,0.004489223880626 +3491954,0.0044912439770996 +3491955,0.013474045720417 +3491956,0.0082172574475406 +3491957,0.012484257073126101 +3491958,0.0377960366322034 +3491959,0.0094529753550886 +3491960,0.009464817426621499 +3491961,0.0030603598377784 +3491962,0.004566658142991 +3491963,0.0092098681635958 +3491964,0.0096322300978699 +3491965,0.0097317482362581 +3491966,0.0040229159723756 +3491967,0.0182367387623199 +3491968,0.0285629303928489 +3491969,0.0570933795291367 +3491970,0.0290449723702068 +3491971,0.0044884455296848 +3491972,0.0044956442065656 +3491973,0.009090292613132 +3491974,0.0044977333296655 +3491975,0.012344356388653801 +3491976,0.0205416822634122 +3491977,0.004724407345153 +3491978,0.0140591421702446 +3491979,0.0141794630326329 +3491980,0.0141794630326329 +3491981,0.0093235386725253 +3491982,0.0031709322848399 +3491983,0.0028218848165124 +3491984,0.002934072532577 +3491985,0.0045562040673203 +3491986,0.010076251215154899 +3491987,0.0042080303265857 +3491988,0.0203526224941015 +3491989,0.0186017970770459 +3491990,0.0134209497101767 +3491991,0.0044912439770996 +3491992,0.020485056033112 +3491993,0.0164191515381506 +3491994,0.0164517062326796 +3491995,0.0093284997443597 +3491996,0.0031354850425995 +3491997,0.0028232128554018 +3491998,0.0084656544495372 +3491999,0.014109424082562 +3492000,0.0056784381100233 +3492001,0.0033554514257682 +3492002,0.0038183051293905 +3492003,0.1117239783800836 +3492004,0.1013493968189144 +3492005,0.0829362458263065 +3492006,0.0092394512406571 +3492007,0.0226326164761566 +3492008,0.0056437696330248 +3492009,0.0112875392660496 +3492010,0.0112875392660496 +3492011,0.0203504068358292 +3492012,0.0028240096533976 +3492013,0.0028539449347994 +3492014,0.0034945692712067 +3492015,0.0477837361407556 +3492016,0.0053261165249653 +3492017,0.0028428322978427 +3492018,0.0136476239519523 +3492019,0.0061035698160337 +3492020,0.011348173330156 +3492021,0.1530796587467193 +3492022,0.0505737146677631 +3492023,0.0039856742085151 +3492024,0.010938566278712099 +3492025,0.0141992388168399 +3492026,0.0028022301994687 +3492027,0.0107377913983354 +3492028,0.0069601456910420995 +3492029,0.0510265529155731 +3492030,0.0462594031179714 +3492031,0.0495991406043134 +3492032,0.0036538906477392 +3492033,0.0036627730721606 +3492034,0.010729612995936201 +3492035,0.0107647452868246 +3492036,0.0510298894779808 +3492037,0.0507205658479584 +3492038,0.06521136639537001 +3492039,0.1540084775588794 +3492040,0.0037272076211166 +3492041,0.003722573633568 +3492042,0.1020719183023906 +3492043,0.1517788454158889 +3492044,0.0078859489741743 +3492045,0.024369141418530103 +3492046,0.0312076667093193 +3492047,0.0503276418661765 +3492048,0.0502125006825351 +3492049,0.031484024752228904 +3492050,0.0076422980997589 +3492051,0.0211080098936061 +3492052,0.0038978648011777 +3492053,0.520239360630512 +3492054,0.20670763448021381 +3492055,0.023587414416447003 +3492056,0.0235934918779115 +3492057,0.0038978608790785 +3492058,0.0038906652367518 +3492059,0.003974760773924 +3492060,0.2976798946930995 +3492061,0.2039477753219818 +3492062,0.0518943894532408 +3492063,0.0078991623595356 +3492064,0.0077631028319258 +3492065,0.0038778027460192 +3492066,0.0116854403273492 +3492067,0.0443536162149164 +3492068,0.0338084511458873 +3492069,0.0077583235621641 +3492070,0.0076882895085761994 +3492071,0.003876889589938 +3492072,0.0192113683150374 +3492073,0.0037833832842977 +3492074,0.2360263134718307 +3492075,0.1366966616204156 +3492076,0.0025261519348964 +3492077,0.0093413951546302 +3492078,0.2028507068753238 +3492079,0.1006683059640293 +3492080,0.0023265506606549 +3492081,0.0023265506606549 +3492082,0.0023541426517945 +3492083,0.1352338045835492 +3492084,0.33762774785650856 +3492085,0.0335543025321487 +3492086,0.0027056870795048 +3492087,0.0023265506606549 +3492088,0.0046607038718472 +3492089,0.009503445578374 +3492090,0.0282988648345432 +3492091,0.1669572584429 +3492092,0.0069796519819647 +3492093,0.008506701019846099 +3492094,0.0209899659949368 +3492095,0.004862481803775199 +3492096,0.013674219199988 +3492097,0.0061437147806219 +3492098,0.0654152418730431 +3492099,0.0338084511458873 +3492100,0.0023520797316349 +3492101,0.0208561380616486 +3492102,0.0115511218019217 +3492103,0.0254631470888853 +3492104,0.051084110295392504 +3492105,0.023527374543242503 +3492106,0.00528609752655 +3492107,0.0088912934434954 +3492108,0.0116090846449457 +3492109,0.0023265506606549 +3492110,0.3022821667378944 +3492111,0.0763070346864557 +3492112,0.0132577516456615 +3492113,0.00176203250885 +3492114,0.0023265506606549 +3492115,0.0093062026426196 +3492116,0.0046531013213098 +3492117,0.0069796519819647 +3492118,0.0142159464986339 +3492119,0.0224900970750165 +3492120,0.0022522142090542 +3492121,0.005314757154606 +3492122,0.0054823688861809 +3492123,0.0093062026426196 +3492124,0.0023265506606549 +3492125,0.0023265506606549 +3492126,0.0023265506606549 +3492127,0.0046531013213098 +3492128,0.0046793360261709 +3492129,0.0199995558180753 +3492130,0.0216487487632243 +3492131,0.0024375934553806 +3492132,0.0071389196658055995 +3492133,0.006869569397883 +3492134,0.0046477188239717 +3492135,0.0073151697413652 +3492136,0.0023329942829221 +3492137,0.004706180643145199 +3492138,0.0646224220697695 +3492139,0.0087579646987448 +3492140,0.0215544912409119 +3492141,0.1508652242088285 +3492142,0.0022699401805223 +3492143,0.0138929142251645 +3492144,0.0645217415735045 +3492145,0.005979141076874 +3492146,0.0016540954537427 +3492147,0.0023978128381962 +3492148,0.0213990509644569 +3492149,0.0131410285830497 +3492150,0.0521400973687564 +3492151,0.0015170948753221 +3492152,0.0046221062717317 +3492153,0.0020455233153617 +3492154,0.0004327924075938 +3492155,0.0131410285830497 +3492156,0.0131410285830497 +3492157,0.0005360428684187 +3492158,0.0017354791304489 +3492159,0.0003330450772719 +3492160,0.0031668619921501 +3492161,0.025296096128123 +3492162,0.013008349864901 +3492163,0.0394508871486303 +3492164,0.0394230857491491 +3492165,0.0011163269477916 +3492166,0.0033306227807168 +3492167,0.000330829607405 +3492168,0.0022224777013853 +3492169,0.0656904776641305 +3492170,0.0659430199464999 +3492171,0.0392939696502482 +3492172,0.0131410285830497 +3492173,0.0007088955312587 +3492174,0.0029702163260007 +3492175,0.0255833718666756 +3492176,0.0131410285830497 +3492177,0.0394053199422491 +3492178,0.0131410285830497 +3492179,0.0657051429152485 +3492180,0.0131410285830497 +3492181,0.0525641143321988 +3492182,0.0918962800862491 +3492183,0.0788461714982982 +3492184,0.0392176029837508 +3492185,0.0131410285830497 +3492186,0.0131410285830497 +3492187,0.0391830028127931 +3492188,0.0131410285830497 +3492189,0.0393763690005677 +3492190,0.0525641143321988 +3492191,0.0131410285830497 +3492192,0.0131410285830497 +3492193,0.0644948465972966 +3492194,0.0516304888234415 +3492195,0.0131410285830497 +3492196,0.0394015865258238 +3492197,0.0262820571660994 +3492198,0.0125707916256236 +3492199,0.0394074376084062 +3492200,0.0394230857491491 +3492201,0.0657051429152485 +3492202,0.1438024327270047 +3492203,0.0389956915401276 +3492204,0.0130177903971428 +3492205,0.0198656341578656 +3492206,0.0311996268363713 +3492207,0.0144384195658896 +3492208,0.0045114201493561 +3492209,0.0189538507717437 +3492210,0.031884617366585 +3492211,0.013618476420121099 +3492212,0.013558617877966798 +3492213,0.0064099840819835 +3492214,0.0062896877200919 +3492215,0.0137128840333125 +3492216,0.0045395316801255 +3492217,0.0064099840819835 +3492218,0.0191443438676501 +3492219,0.0320122073776883 +3492220,0.0045403200783319 +3492221,0.0090636629143609 +3492222,0.0319381902204326 +3492223,0.0192299522459505 +3492224,0.0306195291152159 +3492225,0.0060078418382942 +3492226,0.0063795688027039 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001030900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001030900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001030900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001031900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001031900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001031900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001032000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001032000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001032000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001032100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001032100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001032100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001032200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001032200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001032200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001032300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001032300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..10833f9cf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001032300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.1093177469230378 +3490292,0.1655604340607699 +3490293,0.0273297037929296 +3490316,0.0546594075858592 +3490317,0.136648518964648 +3490332,0.08198911137878881 +3490333,0.0823568669809039 +3490334,0.164191467773381 +3490335,0.0273297037929296 +3490348,0.0264368467589276 +3490349,0.0177993367017436 +3490350,0.0273297037929296 +3490351,0.08198911137878881 +3490374,0.029130519537374902 +3490375,0.0811331386169909 +3490376,0.1420078757609923 +3490377,0.052830640073076404 +3490378,0.0546594075858592 +3490379,0.2458098951642669 +3490396,0.0137351815033478 +3490397,0.0269491355866192 +3490398,0.0819744905250178 +3490399,0.0546594075858592 +3490418,0.1632615189010092 +3490419,0.0273297037929296 +3490437,0.0272977884640518 +3490438,0.1364252594099443 +3490439,0.044158964948098 +3490440,0.0273294853650041 +3490457,0.040428130479875 +3490458,0.0409209354080479 +3490459,0.0546594075858592 +3490460,0.1083195147986561 +3490476,0.054498749485172096 +3490477,0.0812989147959335 +3490478,0.0307060983031988 +3490479,0.0307060983031988 +3490499,0.0881464955171549 +3490500,0.0153530491515994 +3490517,0.014816043913135 +3490518,0.0268760919115566 +3490519,0.0614121966063976 +3490520,0.07676524575799701 +3490544,0.0153530491515994 +3490545,0.0153484319789708 +3490546,0.0307060983031988 +3490547,0.0152403476330123 +3490573,0.045900127315849804 +3490574,0.0153530491515994 +3490575,0.0141696172605035 +3490576,0.0297236379141664 +3490597,0.040447527631076396 +3490598,0.0401482254094555 +3490599,0.015579674400342 +3490600,0.0477797313181896 +3490601,0.0264226241755448 +3490602,0.0264217019494501 +3490603,0.0166346633361919 +3490604,0.0167052270289638 +3490623,0.0132009601220488 +3490624,0.0264019202440976 +3490625,0.0129979744370677 +3490626,0.0455968999495761 +3490639,0.0132009601220488 +3490640,0.0528038404881952 +3490641,0.0263736989746841 +3490642,0.0385187592901435 +3490643,0.0642594429114596 +3490644,0.0151789179071784 +3490645,0.0151368507675321 +3490658,0.0264019202440976 +3490659,0.0132009601220488 +3490660,0.09010351578036639 +3490661,0.0386361684792434 +3490662,0.1068027749918732 +3490663,0.0151789179071784 +3490664,0.0151118022711108 +3490665,0.0454435212083275 +3490681,0.0660440033760631 +3490682,0.0132009601220488 +3490683,0.0132009601220488 +3490684,0.0264019202440976 +3490685,0.0128480154554224 +3490686,0.0129073635048141 +3490687,0.0152680113877092 +3490688,0.015219325048433 +3490689,0.0151597995602127 +3490690,0.0151789179071784 +3490707,0.0264019202440976 +3490708,0.0132009601220488 +3490709,0.0131887968695512 +3490710,0.0132009601220488 +3490725,0.0131918064676011 +3490726,0.0132009601220488 +3490727,0.0396028803661464 +3490728,0.0528282967169324 +3490736,0.0923995463544408 +3490737,0.0659974593925837 +3490738,0.1040476690524777 +3490739,0.0666551388745698 +3490747,0.2839787879012428 +3490748,0.0135857843060257 +3490757,0.0512525430752093 +3490758,0.0387647728331591 +3490771,0.038453650325207 +3490772,0.0127933626118436 +3490773,0.0126425592441433 +3490774,0.0256101914504313 +3490787,0.0251558838662942 +3490788,0.0117300032395503 +3490789,0.049755119284840096 +3490790,0.0663521140987257 +3490805,0.0125719206984461 +3490806,0.0370248917708309 +3490807,0.0245390143245458 +3490808,0.06895511400792301 +3490809,0.009349123234705 +3490810,0.0094640855162609 +3490827,0.0139236224417131 +3490828,0.0144044343400407 +3490842,0.042086379330909196 +3490843,0.0140281012281775 +3490844,0.0142965558684631 +3490845,0.043434686480882403 +3490856,0.0140281012281775 +3490857,0.0140927995291319 +3490858,0.0140281012281775 +3490859,0.042055008620120904 +3490860,0.01455769687891 +3490861,0.0726768158963432 +3490875,0.0140281012281775 +3490876,0.0140281012281775 +3490877,0.0434834599277654 +3490878,0.0144375994754291 +3490879,0.02911539375782 +3490892,0.042084303684532504 +3490893,0.042084303684532504 +3490894,0.01455769687891 +3490895,0.0144015841195743 +3490900,0.0140175229753838 +3490901,0.0134179099762805 +3490902,0.04204814221172 +3490903,0.0420841117627406 +3490904,0.0429399219567964 +3490905,0.0435488790527356 +3490906,0.0425538490694707 +3490907,0.068562192279403 +3490916,0.0420889346929149 +3490917,0.0140353425986467 +3490918,0.0140067857836304 +3490919,0.0140278341099166 +3490920,0.0140120826371944 +3490921,0.0291112668879643 +3490922,0.0436900809167162 +3490923,0.1511853332455999 +3490924,0.0145152680693842 +3490925,0.0451024059148871 +3490926,0.1223480303160202 +3490935,0.0131875049073823 +3490936,0.0139390995714838 +3490937,0.0221104223976773 +3490938,0.0211428453191431 +3490939,0.0427465994178812 +3490940,0.0426433228937265 +3490941,0.0139069640692828 +3490942,0.0137469167995854 +3490953,0.0138808489956956 +3490954,0.0140223179414809 +3490955,0.0128095485651075 +3490956,0.013252396350235 +3490957,0.0153894167873099 +3490958,0.0153915353621876 +3490959,0.042647087015211305 +3490960,0.0426443743567325 +3490966,0.038293185643851604 +3490967,0.0127643952146172 +3490968,0.0132541089375675 +3490969,0.0130239446723253 +3490970,0.1068557268975394 +3490971,0.0150759973348863 +3490972,0.0587998734085631 +3490973,0.0147303840244367 +3490974,0.0142156956717371 +3490975,0.0426922504836683 +3490980,0.0384511581162221 +3490981,0.0127649760192127 +3490982,0.0127583907515494 +3490983,0.0893712551727494 +3490984,0.0652948960921438 +3490985,0.1433914723295621 +3490986,0.015129103401099 +3490987,0.0454871442086637 +3490988,0.045258694372356204 +3490989,0.014737314123458 +3490990,0.044173187061927396 +3490991,0.0146891749795493 +3490992,0.0142156956717371 +3490993,0.0142156956717371 +3490994,0.0441635278531148 +3490995,0.0142156956717371 +3490999,0.0127756294580958 +3491000,0.0129972315074406 +3491001,0.0114897344026194 +3491002,0.0381830680451073 +3491003,0.0130282369781553 +3491004,0.013033159788253 +3491005,0.0455189533619582 +3491006,0.0755588560166614 +3491007,0.0430163758694798 +3491008,0.042862096509233 +3491009,0.0710198491555078 +3491010,0.0425808851828549 +3491013,0.0122671028955977 +3491014,0.0115858070314159 +3491015,0.0453811264517287 +3491016,0.0453747030985042 +3491017,0.1518770799187163 +3491018,0.0156694602730254 +3491019,0.0708880792272913 +3491020,0.0142156956717371 +3491021,0.0261258203536272 +3491022,0.0125507459147235 +3491023,0.0113901015083664 +3491024,0.0125453029717541 +3491025,0.050897720225020995 +3491026,0.0168744270403355 +3491027,0.0189460968864264 +3491028,0.0122331651736457 +3491029,0.0130629101768136 +3491030,0.0651116042865509 +3491031,0.0646750113540419 +3491032,0.037231524007849404 +3491033,0.0106659316069295 +3491034,0.0113649712875485 +3491035,0.0114098117652055 +3491036,0.0171843835702568 +3491037,0.0168779194355011 +3491038,0.0131285373364683 +3491039,0.1220402526421556 +3491040,0.0130629101768136 +3491041,0.0391887305304408 +3491042,0.0106143914163112 +3491043,0.0107538368496493 +3491044,0.0114110238814651 +3491045,0.0569878342219054 +3491046,0.0168779194355011 +3491047,0.0168452658067708 +3491048,0.012290939870431 +3491049,0.0121591472998261 +3491050,0.0737915442870739 +3491051,0.0245939622148923 +3491052,0.0130629101768136 +3491053,0.0653102262049685 +3491054,0.0318944295148638 +3491055,0.0319467535563839 +3491056,0.0114000241126251 +3491057,0.080092620821135 +3491058,0.0168779194355011 +3491059,0.0511033122152174 +3491060,0.06103819563256 +3491061,0.0121591472998261 +3491062,0.0364889442726078 +3491063,0.0608541201037627 +3491064,0.0245075136681227 +3491065,0.12298086936643249 +3491066,0.0391887305304408 +3491067,0.0130629101768136 +3491068,0.0130445433170962 +3491069,0.0130616829231275 +3491070,0.0114726565493196 +3491071,0.021305865831859602 +3491072,0.11812485726661699 +3491073,0.0506155286821998 +3491074,0.0121591472998261 +3491075,0.1092098481165813 +3491076,0.0736891917606306 +3491077,0.0245968743605968 +3491078,0.1181471599873426 +3491079,0.052307699520181404 +3491080,0.0392228633753059 +3491081,0.0130476616710833 +3491082,0.0159851416615548 +3491083,0.0168474268960769 +3491084,0.0168779194355011 +3491085,0.0168779194355011 +3491086,0.0370477952444215 +3491087,0.0366218890794135 +3491088,0.037043386969659906 +3491089,0.059696211816262196 +3491090,0.0236040478056374 +3491091,0.0244021986903041 +3491092,0.0391671021492592 +3491093,0.0130452427404181 +3491094,0.050633758306503296 +3491095,0.0843170549701866 +3491096,0.0360834206201099 +3491097,0.0119979952644206 +3491098,0.0348735692897853 +3491099,0.0163601341797933 +3491100,0.0230613250341616 +3491101,0.0620272979670367 +3491102,0.0698659723572918 +3491103,0.0843227965718403 +3491104,0.0843809455477164 +3491105,0.0157679036811312 +3491106,0.035726447834795796 +3491107,0.0187681296105908 +3491108,0.0111621883590084 +3491109,0.0589561989838275 +3491110,0.0371704635320838 +3491111,0.0993272455473091 +3491112,0.0123828537762165 +3491113,0.1009027741719081 +3491114,0.0717750931542192 +3491115,0.11720742204047849 +3491116,0.0842398426753327 +3491117,0.0050217562107071 +3491118,0.024684489730670202 +3491119,0.0438221336221028 +3491120,0.0220822241313263 +3491121,0.0109421597330146 +3491122,0.0054379952083329 +3491123,0.0273952743850238 +3491124,0.0423014380914332 +3491125,0.0373061198029749 +3491126,0.120740456761708 +3491127,0.0124261662164718 +3491128,0.0873135561078972 +3491129,0.0142090165010604 +3491130,0.014363688416779 +3491131,0.0285244262755853 +3491132,0.0429198811173165 +3491133,0.0049257231876254 +3491134,0.0049222631867954 +3491135,0.0073188319802284 +3491136,0.0804619148096489 +3491137,0.0328967332589304 +3491138,0.0844389631588675 +3491139,0.1121279178948153 +3491140,0.0138993662594844 +3491141,0.1141136951022098 +3491142,0.0123989929911513 +3491143,0.0125800909069595 +3491144,0.0428207997448008 +3491145,0.014363688416779 +3491146,0.019807455119305102 +3491147,0.0049202650308173 +3491148,0.0073188319802284 +3491149,0.0036391543690115 +3491150,0.0036480761673364 +3491151,0.028508629375473 +3491152,0.0282175555248079 +3491153,0.0121915787458419 +3491154,0.037387178985307704 +3491155,0.0827499905899792 +3491156,0.1392156937017379 +3491157,0.0426558223994038 +3491158,0.060491928328580996 +3491159,0.010023844703325499 +3491160,0.0147208138107945 +3491161,0.0292753279209136 +3491162,0.0073188319802284 +3491163,0.0114930090370054 +3491164,0.0116457783524579 +3491165,0.0852048862124913 +3491166,0.0279800689442193 +3491167,0.0369638549862341 +3491168,0.0365986118532438 +3491169,0.0828116882140074 +3491170,0.0138022387400269 +3491171,0.085662669399336 +3491172,0.0205972068386355 +3491173,0.021723285042958 +3491174,0.0218478653799896 +3491175,0.0049721935709165 +3491176,0.021954537931531 +3491177,0.0073149175968766 +3491178,0.0073188319802284 +3491179,0.0219564959406852 +3491180,0.0038340284845716 +3491181,0.1135948742335594 +3491182,0.0853535485403193 +3491183,0.085940743557172 +3491184,0.1099903197916158 +3491185,0.0138131422994525 +3491186,0.0140576557499241 +3491187,0.0552089549601076 +3491188,0.08320634192748891 +3491189,0.21433964465014121 +3491190,0.0639673836290698 +3491191,0.0073862091819464 +3491192,0.021794745808324002 +3491193,0.0073188319802284 +3491194,0.0073188319802284 +3491195,0.0230536597565236 +3491196,0.2548748373643867 +3491197,0.0863298490476367 +3491198,0.097500857276458 +3491199,0.0694853575873251 +3491200,0.0560996013109264 +3491201,0.1069105261427257 +3491202,0.0428727865219116 +3491203,0.007944391032644 +3491204,0.0362904815036158 +3491205,0.0227971842356315 +3491206,0.0073188319802284 +3491207,0.0292555414174918 +3491208,0.0146323485453668 +3491209,0.0123842679046125 +3491210,0.0084915036077636 +3491211,0.07066380652966 +3491212,0.0331055500971565 +3491213,0.149092394563011 +3491214,0.0642500976232305 +3491215,0.0214363932609558 +3491216,0.0214363932609558 +3491217,0.0361752183984379 +3491218,0.0361800694257762 +3491219,0.0148977144356449 +3491220,0.0512318238615988 +3491221,0.0370919465505711 +3491222,0.0292753279209136 +3491223,0.0120322003767995 +3491224,0.012240151340313 +3491225,0.0724440433045629 +3491226,0.0190692827457959 +3491227,0.0240239594131708 +3491228,0.048025349815374804 +3491229,0.06535097770042131 +3491230,0.0326113059841219 +3491231,0.0643091797828674 +3491232,0.0213895137804458 +3491233,0.014922672701501001 +3491234,0.0144570573070214 +3491235,0.08058902311899299 +3491236,0.0073175571356236 +3491237,0.0158700547006032 +3491238,0.0073366881284337 +3491239,0.012476027525157 +3491240,0.0120553053408636 +3491241,0.0071593979902579 +3491242,0.0115448941130966 +3491243,0.0061928946524858 +3491244,0.0062775046269778 +3491245,0.0718003755773428 +3491246,0.120119797065854 +3491247,0.0554322516719774 +3491248,0.0107867708429694 +3491249,0.0214363932609558 +3491250,0.0214363932609558 +3491251,0.007223647752863 +3491252,0.0368041026973704 +3491253,0.0073188319802284 +3491254,0.0073132218268325 +3491255,0.0362834612207293 +3491256,0.0241255536675452 +3491257,0.035058769051858105 +3491258,0.023732692366556 +3491259,0.0068216035558985 +3491260,0.0063886253756634 +3491261,0.037534790756696995 +3491262,0.0381588463047466 +3491263,0.0061928946524858 +3491264,0.012589168982692401 +3491265,0.0960958376526832 +3491266,0.0718472460272933 +3491267,0.0240239594131708 +3491268,0.0238364732431969 +3491269,0.0763550035398312 +3491270,0.053967250162873 +3491271,0.0638185722606686 +3491272,0.0214363932609558 +3491273,0.1286183595657348 +3491274,0.1491856132850383 +3491275,0.0364051251848569 +3491276,0.0289941395291537 +3491277,0.0120627768337726 +3491278,0.0093049903356957 +3491279,0.0072933247046524 +3491280,0.0070211263650343 +3491281,0.0071447996641976 +3491282,0.0061383521250552 +3491283,0.024750104074036702 +3491284,0.0379736035930478 +3491285,0.0382140640059288 +3491286,0.0190975759536226 +3491287,0.0192353909029577 +3491288,0.0240239594131708 +3491289,0.048036436647825906 +3491290,0.0774407140276482 +3491291,0.0228937011117647 +3491292,0.0854813141629845 +3491293,0.0213578577788886 +3491294,0.0203856675050943 +3491295,0.0219559230388809 +3491296,0.051146942246034 +3491297,0.0839246004751816 +3491298,0.0361345361235836 +3491299,0.0085961867140972 +3491300,0.0089686719555544 +3491301,0.0070577298549345 +3491302,0.0208369019209762 +3491303,0.0222817262659265 +3491304,0.007627007613229 +3491305,0.0061365019509711 +3491306,0.030535770766022 +3491307,0.0108474109144316 +3491308,0.0126619771923448 +3491309,0.0381546945957853 +3491310,0.0131579662105165 +3491311,0.0960958376526832 +3491312,0.0240239594131708 +3491313,0.0145269502278694 +3491314,0.029139681649166603 +3491315,0.0073017846353998 +3491316,0.0219564959406852 +3491317,0.0073188319802284 +3491318,0.0172444218631474 +3491319,0.0085901567804535 +3491320,0.0085922624460383 +3491321,0.0085920775309205 +3491322,0.0175355024919153 +3491323,0.0440789837078572 +3491324,0.014174036684411199 +3491325,0.0070442243079942 +3491326,0.0110914391209206 +3491327,0.0113862457229367 +3491328,0.0245004982014789 +3491329,0.006104530300945 +3491330,0.007597207071588 +3491331,0.0096809900789764 +3491332,0.0720718782395124 +3491333,0.0240239594131708 +3491334,0.2642635535448788 +3491335,0.0959416444151258 +3491336,0.0128841282321421 +3491337,0.0131299677627004 +3491338,0.042869792468358606 +3491339,0.0250114470311565 +3491340,0.0073188319802284 +3491341,0.0219564959406852 +3491342,0.0085920775309205 +3491343,0.0429603876546025 +3491344,0.0089576140226781 +3491345,0.0090424473366618 +3491346,0.033302182871526295 +3491347,0.0333971967107363 +3491348,0.0114612204284056 +3491349,0.0344028538092969 +3491350,0.0183510296396335 +3491351,0.018313590902835 +3491352,0.0425937036082373 +3491353,0.0060505448506051 +3491354,0.0053372609443564 +3491355,0.0109986979106641 +3491356,0.0719165495853709 +3491357,0.0692271203816411 +3491358,0.0232258759866862 +3491359,0.0240239594131708 +3491360,0.336182488002058 +3491361,0.0720718782395124 +3491362,0.0087089703571052 +3491363,0.0089049249568488 +3491364,0.0086917172653274 +3491365,0.0087609092287649 +3491366,0.009010917535486 +3491367,0.0063318631036243 +3491368,0.0043558682989992 +3491369,0.0292736184204225 +3491370,0.0073188319802284 +3491371,0.0219564934295995 +3491372,0.0146336083138611 +3491373,0.0171835597080955 +3491374,0.0085920775309205 +3491375,0.0085920775309205 +3491376,0.0171967312456673 +3491377,0.0090505024418234 +3491378,0.0292074828367059 +3491379,0.0110914904285412 +3491380,0.0111241212178524 +3491381,0.0114580425511003 +3491382,0.0114676179364323 +3491383,0.0114676179364323 +3491384,0.0111809838338927 +3491385,0.0061408049411734 +3491386,0.024418068311165 +3491387,0.0121527778100077 +3491388,0.0182255960099982 +3491389,0.0053436652328066 +3491390,0.0308933400146027 +3491391,0.0053618066273042 +3491392,0.0718638221890039 +3491393,0.2642635535448788 +3491394,0.0043332528730115 +3491395,0.0558729764127157 +3491396,0.012081154156475999 +3491397,0.0040430701176927 +3491398,0.0073188319802284 +3491399,0.0365937726021992 +3491400,0.0085913422363381 +3491401,0.0085920775309205 +3491402,0.0172908478732109 +3491403,0.0086716759001086 +3491404,0.0086854765497353 +3491405,0.0351719191185473 +3491406,0.053294376731251 +3491407,0.0106623647734522 +3491408,0.0111062451379062 +3491409,0.0111274127820541 +3491410,0.0111038283528404 +3491411,0.0115081373520328 +3491412,0.0114676179364323 +3491413,0.022953775517623 +3491414,0.0230433560705114 +3491415,0.0114676179364323 +3491416,0.057145775995827895 +3491417,0.0123771600761936 +3491418,0.0428523218179417 +3491419,0.0060727385805693 +3491420,0.0055835748280122 +3491421,0.0104927524086845 +3491422,0.08901242422957059 +3491423,0.1676644558999012 +3491424,0.0480479188263416 +3491425,0.040982987276120604 +3491426,0.0048724390384067 +3491427,0.0122262184357688 +3491428,0.004027051385492 +3491429,0.0219564959406852 +3491430,0.0219564959406852 +3491431,0.0073112327603033 +3491432,0.0085920109684627 +3491433,0.0085920775309205 +3491434,0.0085920775309205 +3491435,0.0085920775309205 +3491436,0.0085447514429688 +3491437,0.0256342543289064 +3491438,0.0319870943203566 +3491439,0.0106387087861106 +3491440,0.0211604689155514 +3491441,0.0220075992855737 +3491442,0.0108087652281924 +3491443,0.0107770046525052 +3491444,0.012369529394028501 +3491445,0.0061041831582134 +3491446,0.0062100751045791 +3491447,0.014841503282810701 +3491448,0.0056496421163246 +3491449,0.0612557550268694 +3491450,0.0207376889884471 +3491451,0.0960958376526832 +3491452,0.023945629929966 +3491453,0.0240239594131708 +3491454,0.07179797628211121 +3491455,0.0165432468056678 +3491456,0.083110105485041 +3491457,0.0041134502609227 +3491458,0.011648542010348699 +3491459,0.0157363864628112 +3491460,0.0044313293762419 +3491461,0.009841345578590299 +3491462,0.0040560647165428 +3491463,0.0146028073458073 +3491464,0.0072585168247558 +3491465,0.0219564959406852 +3491466,0.0073188319802284 +3491467,0.0085848439513579 +3491468,0.0085920775309205 +3491469,0.0085920775309205 +3491470,0.0603224894518107 +3491471,0.008625906003896 +3491472,0.0086022588323531 +3491473,0.0427318389227671 +3491474,0.0106623647734522 +3491475,0.0318913164253416 +3491476,0.0077461825764692 +3491477,0.0471772054225246 +3491478,0.0087935439533086 +3491479,0.0148126395560002 +3491480,0.0100977671543586 +3491481,0.0205766956528291 +3491482,0.0622130669653413 +3491483,0.0960958376526832 +3491484,0.0206726737956642 +3491485,0.0238474872067694 +3491486,0.0470146258046225 +3491487,0.0493635081587477 +3491488,0.0822983725354863 +3491489,0.0165432468056678 +3491490,0.0038616822566837 +3491491,0.0077319518389715 +3491492,0.0072589850249363 +3491493,0.0073122883069255 +3491494,0.0073188319802284 +3491495,0.0146376639604568 +3491496,0.0257709764254247 +3491497,0.0085920775309205 +3491498,0.0085920775309205 +3491499,0.0086220394930511 +3491500,0.0256372552884933 +3491501,0.0085627854742124 +3491502,0.0106056809131788 +3491503,0.0068386810658035 +3491504,0.006666549017925 +3491505,0.0270361310094343 +3491506,0.0110003485596024 +3491507,0.010864498333218502 +3491508,0.0160713192886428 +3491509,0.0604132892840432 +3491510,0.0622130669653413 +3491511,0.0240239594131708 +3491512,0.0208730007826875 +3491513,0.0616056309663613 +3491514,0.0303405969049978 +3491515,0.0165432468056678 +3491516,0.0171996572543313 +3491517,0.0193444459813188 +3491518,0.019310269839036 +3491519,0.0072434165708433 +3491520,0.021954900239816298 +3491521,0.0366785551710599 +3491522,0.0085907574669781 +3491523,0.0085919083199843 +3491524,0.0257831678860029 +3491525,0.0429995320722936 +3491526,0.0170929786984934 +3491527,0.0085716198165635 +3491528,0.017084363051609402 +3491529,0.0085447514429688 +3491530,0.0068440502752074 +3491531,0.0068077932908771 +3491532,0.0161831553360824 +3491533,0.0108367814989805 +3491534,0.0181067879197093 +3491535,0.0240239594131708 +3491536,0.018291360710081 +3491537,0.023688099238886 +3491538,0.0378287311060692 +3491539,0.0078597261735587 +3491540,0.0165432468056678 +3491541,0.0496498319551864 +3491542,0.011845058261095 +3491543,0.0038616822566837 +3491544,0.0039275681143459 +3491545,0.0226818515274023 +3491546,0.0219564959406852 +3491547,0.014183106653720301 +3491548,0.0072808192595956 +3491549,0.0256342543289064 +3491550,0.0256342543289064 +3491551,0.0170895331625668 +3491552,0.0479990687311223 +3491553,0.0204952152874134 +3491554,0.0068023567650529 +3491555,0.0056642016326553 +3491556,0.12310168939188651 +3491557,0.0178813590429522 +3491558,0.0239454400086747 +3491559,0.0720581011146296 +3491560,0.0165432468056678 +3491561,0.0165432468056678 +3491562,0.082716234028339 +3491563,0.0164744933166128 +3491564,0.0118854897764768 +3491565,0.0077818153125804 +3491566,0.0039701930644103 +3491567,0.0075158350985359 +3491568,0.0294284911507075 +3491569,0.0073354712630128 +3491570,0.008982231774673 +3491571,0.0256342543289064 +3491572,0.0256344091746084 +3491573,0.013644621063302699 +3491574,0.0205554111824473 +3491575,0.0526678749247228 +3491576,0.0175829492509365 +3491577,0.0175829492509365 +3491578,0.0178014117605812 +3491579,0.0161363890049533 +3491580,0.0164029486144722 +3491581,0.0165432468056678 +3491582,0.0039367311739197 +3491583,0.0079145348300424 +3491584,0.0514796222474884 +3491585,0.0293090575982803 +3491586,0.0086144337677207 +3491587,0.0085447514429688 +3491588,0.025634706346661602 +3491589,0.0231214145430763 +3491590,0.0140598935654901 +3491591,0.0085156886591569 +3491592,0.0187796528279866 +3491593,0.0175829492509365 +3491594,0.0175300614863943 +3491595,0.0174579836953722 +3491596,0.0152547690985318 +3491597,0.040683613484527203 +3491598,0.11637234502308401 +3491599,0.0043090235068018 +3491600,0.0143255892222956 +3491601,0.0410642888000593 +3491602,0.0098160416448837 +3491603,0.017473083452315 +3491604,0.0345026820316709 +3491605,0.0770666558921362 +3491606,0.0085457726823265 +3491607,0.0357157571000278 +3491608,0.0120410058705109 +3491609,0.0326199984101431 +3491610,0.0492258611957542 +3491611,0.0067095434105495 +3491612,0.0069456757703502 +3491613,0.023028636280312 +3491614,0.0284458203835934 +3491615,0.0073822270882143 +3491616,0.0073386622481279 +3491617,0.0199885084394965 +3491618,0.08230395132790791 +3491619,0.0215476021249418 +3491620,0.0139679002477998 +3491621,0.0137392543256282 +3491622,0.0137392543256282 +3491623,0.012050586117528 +3491624,0.011991680599749 +3491625,0.0240353953761952 +3491626,0.0164539646357297 +3491627,0.0493618939071891 +3491628,0.0079342836579795 +3491629,0.0071120486995421 +3491630,0.034444375784138996 +3491631,0.0284587126225233 +3491632,0.0851579754394028 +3491633,0.0284587126225233 +3491634,0.0072903885856609 +3491635,0.0219789923203009 +3491636,0.0122373353419471 +3491637,0.0309391128597334 +3491638,0.0273721305010886 +3491639,0.0267450138468817 +3491640,0.021768187829913 +3491641,0.0220759659314521 +3491642,0.0108441914162365 +3491643,0.0137392543256282 +3491644,0.0135395349392426 +3491645,0.0136932262874908 +3491646,0.011991680599749 +3491647,0.0120329017683412 +3491648,0.0164539646357297 +3491649,0.0164346286295473 +3491650,0.0325524060629084 +3491651,0.0072159643423758 +3491652,0.036164837975227695 +3491653,0.09169736108367091 +3491654,0.1418292202166468 +3491655,0.007285075158377 +3491656,0.0311619866753004 +3491657,0.0206938087345818 +3491658,0.0810957882577299 +3491659,0.0823379149242849 +3491660,0.0324348778541583 +3491661,0.0315105349415022 +3491662,0.0136356114496336 +3491663,0.0137392543256282 +3491664,0.0128086218465742 +3491665,0.0125709333354858 +3491666,0.0599828023100508 +3491667,0.0359750673480331 +3491668,0.023983361199498 +3491669,0.0243903878749093 +3491670,0.0164539646357297 +3491671,0.0493618884177849 +3491672,0.0162568949338786 +3491673,0.0071414089761674 +3491674,0.0077524706947551 +3491675,0.008493328840782 +3491676,0.014348805630420399 +3491677,0.0853761378675699 +3491678,0.0281747238413536 +3491679,0.0105792088421504 +3491680,0.0099064103869727 +3491681,0.1373127847909925 +3491682,0.19136614732048118 +3491683,0.0272847679127253 +3491684,0.0325046333155146 +3491685,0.0325558154906005 +3491686,0.027396179713782 +3491687,0.0136777346948087 +3491688,0.0119685703205247 +3491689,0.006457473120655 +3491690,0.0128121908283382 +3491691,0.0119320522932522 +3491692,0.0358191050060288 +3491693,0.0359842184481377 +3491694,0.0493141123239465 +3491695,0.0493120902058792 +3491696,0.0164539646357297 +3491697,0.0163203937767711 +3491698,0.0216711277551285 +3491699,0.0328407683294455 +3491700,0.0284587126225233 +3491701,0.0284587126225233 +3491702,0.0563793935480766 +3491703,0.0276428786915337 +3491704,0.0105399867937504 +3491705,0.0306619081519219 +3491706,0.1582150610465364 +3491707,0.054925113916397 +3491708,0.010328535520625 +3491709,0.0092420182842636 +3491710,0.0100773038622197 +3491711,0.0109905519018319 +3491712,0.0258516747089358 +3491713,0.0359598559546681 +3491714,0.0601606325335548 +3491715,0.0164539646357297 +3491716,0.0164539646357297 +3491717,0.0493618939071891 +3491718,0.0164236177519257 +3491719,0.0094083270158327 +3491720,0.0284587126225233 +3491721,0.0853761378675699 +3491722,0.0281408028398973 +3491723,0.0284587126225233 +3491724,0.0085562255875586 +3491725,0.021518834893393 +3491726,0.0397174345224064 +3491727,0.0145317925742532 +3491728,0.0273788959849234 +3491729,0.0480619292482639 +3491730,0.0292196479429611 +3491731,0.0198044237152274 +3491732,0.0111274045159398 +3491733,0.0094606911366462 +3491734,0.0191403406092439 +3491735,0.0119044218418204 +3491736,0.0359796156816803 +3491737,0.0121086759692545 +3491738,0.0652834275639235 +3491739,0.0164539646357297 +3491740,0.0164539646357297 +3491741,0.0164539646357297 +3491742,0.0482839955071058 +3491743,0.0564162177007778 +3491744,0.0282651230332766 +3491745,0.0284587126225233 +3491746,0.0569174252450466 +3491747,0.027720820434772 +3491748,0.0565618217890312 +3491749,0.0170268642292713 +3491750,0.0085456146429872 +3491751,0.0493680429129903 +3491752,0.0070189447142183 +3491753,0.0079133020916158 +3491754,0.0078964837814479 +3491755,0.04940505196443461 +3491756,0.0163053229673182 +3491757,0.0275586215468231 +3491758,0.0194632465895583 +3491759,0.0110998913740638 +3491760,0.0111164360481315 +3491761,0.009423921816051 +3491762,0.0087197423505756 +3491763,0.0064430671499604 +3491764,0.0063697802223732 +3491765,0.0122320019168065 +3491766,0.0491158555718235 +3491767,0.0164395618009161 +3491768,0.0491582699466094 +3491769,0.0328246616574909 +3491770,0.0492860817348901 +3491771,0.0164539646357297 +3491772,0.1420312395181625 +3491773,0.0284587126225233 +3491774,0.0428363163986578 +3491775,0.0255419961885145 +3491776,0.0070541370021773 +3491777,0.0070423883144442 +3491778,0.0080727632943059 +3491779,0.007891621440649 +3491780,0.0495710092195622 +3491781,0.0164579022675752 +3491782,0.0111073033309206 +3491783,0.033360016521417804 +3491784,0.028112852749511 +3491785,0.0290288793594208 +3491786,0.0218990860408717 +3491787,0.0073030926287174 +3491788,0.0063640214502811 +3491789,0.0156543136984144 +3491790,0.0163851122642887 +3491791,0.120651991617671 +3491792,0.0284968893283278 +3491793,0.0283994958392657 +3491794,0.0852226770814368 +3491795,0.0341595299541948 +3491796,0.0085398824885487 +3491797,0.0070331238730588 +3491798,0.0394624694013008 +3491799,0.0078939016482258 +3491800,0.0492227031521881 +3491801,0.0164078228506075 +3491802,0.0110962694419471 +3491803,0.0555700302424751 +3491804,0.010441417556082 +3491805,0.0208205389392514 +3491806,0.0145880212164178 +3491807,0.0073030926287174 +3491808,0.029647937530183 +3491809,0.0351936098972183 +3491810,0.030907036899059 +3491811,0.056107927187082796 +3491812,0.0282023768885072 +3491813,0.0281083836104683 +3491814,0.0170436614295108 +3491815,0.0085398824885487 +3491816,0.0170169553886257 +3491817,0.0315685591654579 +3491818,0.045403847400194104 +3491819,0.0173305746127605 +3491820,0.0158296073218675 +3491821,0.0111419905340768 +3491822,0.0333877043747934 +3491823,0.0103772154618724 +3491824,0.0313301519382302 +3491825,0.0072988944212484 +3491826,0.0219321662125611 +3491827,0.0073030926287174 +3491828,0.0066572268750694 +3491829,0.017982111430897202 +3491830,0.19169363878679652 +3491831,0.0311812812887359 +3491832,0.0083557647534167 +3491833,0.0082144055310836 +3491834,0.047655847203603004 +3491835,0.0095938430634215 +3491836,0.0079677885956644 +3491837,0.0071995014565184 +3491838,0.0079478706314653 +3491839,0.010440319776535 +3491840,0.0104841570949919 +3491841,0.0104760230034018 +3491842,0.0365684757825866 +3491843,0.023319649150357502 +3491844,0.0070448855192177 +3491845,0.0119062280282378 +3491846,0.0321709960699081 +3491847,0.0321709960699081 +3491848,0.016059464983087003 +3491849,0.0080198179181481 +3491850,0.024465384972397 +3491851,0.024455429561603 +3491852,0.0476486157382427 +3491853,0.009495629994931 +3491854,0.0095552868650277 +3491855,0.007966117360764 +3491856,0.0079654013255228 +3491857,0.0071695915042384 +3491858,0.0072433752138397 +3491859,0.0079519604877511 +3491860,0.031310141506224895 +3491861,0.0312506304937541 +3491862,0.0073275340207642 +3491863,0.0073376627125584 +3491864,0.0398216447080575 +3491865,0.016500768435766602 +3491866,0.0067084606920591 +3491867,0.0122556098432778 +3491868,0.0181667101562539 +3491869,0.0643339146833589 +3491870,0.096471676334515 +3491871,0.0321709960699081 +3491872,0.0321408304628063 +3491873,0.056122921592512504 +3491874,0.0080198805595485 +3491875,0.0081543090941008 +3491876,0.040782061042956994 +3491877,0.0277297144267587 +3491878,0.0078228893561301 +3491879,0.0079664363068734 +3491880,0.0072054369106973 +3491881,0.0215905117733193 +3491882,0.007234974383568 +3491883,0.0072252616214256 +3491884,0.01315506068101 +3491885,0.0121467300820448 +3491886,0.0079711404705776 +3491887,0.0416148553658265 +3491888,0.0084186945467956 +3491889,0.0070329221199264 +3491890,0.0321709960699081 +3491891,0.061854971585685495 +3491892,0.0321709960699081 +3491893,0.0965129882097243 +3491894,0.0240479549160893 +3491895,0.0081564979627728 +3491896,0.0244510117771123 +3491897,0.06765088911237341 +3491898,0.0075267362010126 +3491899,0.0072635759089799 +3491900,0.0072661490085869 +3491901,0.0072012721303819 +3491902,0.0071893350677735 +3491903,0.0361262156863126 +3491904,0.0072317567845647 +3491905,0.0138031106704262 +3491906,0.0414340239453623 +3491907,0.024767431192849403 +3491908,0.0122398719944773 +3491909,0.0421190989914632 +3491910,0.0083532275215637 +3491911,0.1608549803495405 +3491912,0.09635014911643 +3491913,0.0316851733514963 +3491914,0.0081564979627728 +3491915,0.0081543813023574 +3491916,0.0081552166245001 +3491917,0.0224325265831035 +3491918,0.0150107762737195 +3491919,0.0217925519552673 +3491920,0.021791979988856902 +3491921,0.0072823128304655 +3491922,0.0071512619201374 +3491923,0.0072253944032699 +3491924,0.021633048425879 +3491925,0.0072295240736667 +3491926,0.0137301468058568 +3491927,0.027678042072934297 +3491928,0.024702813979315598 +3491929,0.0123181902207405 +3491930,0.0085639222275033 +3491931,0.024955450323384698 +3491932,0.0321709960699081 +3491933,0.0321709960699081 +3491934,0.0321609735610017 +3491935,0.0081564979627728 +3491936,0.0081564979627728 +3491937,0.0081539932106446 +3491938,0.0054946235913346 +3491939,0.0329571689590331 +3491940,0.036095711051109 +3491941,0.0217914244103786 +3491942,0.0072237322925842 +3491943,0.014235063976689801 +3491944,0.0283810088459139 +3491945,0.0072308348230742 +3491946,0.0368757089930315 +3491947,0.061528254453274395 +3491948,0.0305927505237016 +3491949,0.0961941271369452 +3491950,0.0318473247633086 +3491951,0.0964203656542377 +3491952,0.0244348026458972 +3491953,0.0081553003972081 +3491954,0.0081564979627728 +3491955,0.024469183730485698 +3491956,0.0108074247837066 +3491957,0.0165138213209819 +3491958,0.0526463712531237 +3491959,0.0131691731512546 +3491960,0.015353054227670901 +3491961,0.0059576244489189 +3491962,0.0072263420780461 +3491963,0.0145476149454913 +3491964,0.0123035226962136 +3491965,0.0123713247077004 +3491966,0.0067416884404797 +3491967,0.0216173926004391 +3491968,0.0314451698299252 +3491969,0.0629503427785661 +3491970,0.0319177133741632 +3491971,0.0081533871643587 +3491972,0.0081596214582676 +3491973,0.016389520881595697 +3491974,0.0081597046508994 +3491975,0.016246438117135102 +3491976,0.027019000902444704 +3491977,0.0065780916067554 +3491978,0.019227913126213 +3491979,0.0197537597268819 +3491980,0.0197537597268819 +3491981,0.0152766258383676 +3491982,0.0050873741480218 +3491983,0.0057902080006897 +3491984,0.0058832744769561 +3491985,0.0072229062853091 +3491986,0.0181941992137689 +3491987,0.0069182185681558 +3491988,0.0238418560475111 +3491989,0.0220103347446642 +3491990,0.0239056686162838 +3491991,0.0081564979627728 +3491992,0.026976497932517003 +3491993,0.0214112480571282 +3491994,0.021626988104777 +3491995,0.0152572836893754 +3491996,0.0050526719132108 +3491997,0.0057869371343363 +3491998,0.0173706240020691 +3491999,0.0289510400034485 +3492000,0.0116091755938281 +3492001,0.0060644052419502 +3492002,0.0065529081003625 +3492003,0.1175978387924755 +3492004,0.1187715554550253 +3492005,0.0967637799285701 +3492006,0.0150339778939453 +3492007,0.0462620485252877 +3492008,0.0115804160013794 +3492009,0.0231608320027588 +3492010,0.0231608320027588 +3492011,0.0401112242144054 +3492012,0.005789569769476 +3492013,0.0057933416714863 +3492014,0.0062158527370673 +3492015,0.0486970406658375 +3492016,0.0077717248204602 +3492017,0.005775934322932 +3492018,0.0261741593606458 +3492019,0.011267106752323699 +3492020,0.023119515766283998 +3492021,0.1552038453519342 +3492022,0.0512978505951804 +3492023,0.0063227422841341 +3492024,0.0181223086934475 +3492025,0.0287708079424404 +3492026,0.0056720215343104 +3492027,0.0158287578056039 +3492028,0.0106834333348797 +3492029,0.0517346151173114 +3492030,0.0468654956601676 +3492031,0.0503412702993678 +3492032,0.0060364674283659 +3492033,0.0060645356228291 +3492034,0.015920787118145 +3492035,0.0159206405498669 +3492036,0.0517323845569302 +3492037,0.0514263183679937 +3492038,0.06518996977768421 +3492039,0.154362606275681 +3492040,0.006051301682018 +3492041,0.0061355641108735 +3492042,0.1034566537118719 +3492043,0.1538932130938772 +3492044,0.0076743483991815 +3492045,0.023775907409489802 +3492046,0.034031420415917904 +3492047,0.0494305970699266 +3492048,0.0508823733830768 +3492049,0.030650446889599798 +3492050,0.0075841579252991 +3492051,0.0242676559784277 +3492052,0.0045419436020263 +3492053,0.510678440332412 +3492054,0.20310004623176192 +3492055,0.022967724619959398 +3492056,0.0230258706824691 +3492057,0.0045419405214488 +3492058,0.0045467610315493 +3492059,0.0046023408512979 +3492060,0.292127822140726 +3492061,0.2002436982102857 +3492062,0.0509911853530409 +3492063,0.0076847267337143 +3492064,0.0076673600430503 +3492065,0.0045219761428216 +3492066,0.0136312762666879 +3492067,0.0445361939640622 +3492068,0.0330816246569156 +3492069,0.0076230231156589 +3492070,0.008965581299109501 +3492071,0.0045392064151551 +3492072,0.0224952557148425 +3492073,0.0042262662217161 +3492074,0.2309628906418735 +3492075,0.13377108369777152 +3492076,0.0030035989435313 +3492077,0.0112854793193504 +3492078,0.1984897479414936 +3492079,0.0985169705252682 +3492080,0.0028116817120462 +3492081,0.0028116817120462 +3492082,0.0028420648185637 +3492083,0.1323264986276624 +3492084,0.33036843188680404 +3492085,0.032837259992813 +3492086,0.003176222530422 +3492087,0.0028116817120462 +3492088,0.0056317350237213 +3492089,0.0114639222327627 +3492090,0.0276626832483797 +3492091,0.16335764640497372 +3492092,0.0084350451361386 +3492093,0.0099033074245724 +3492094,0.0253613054668101 +3492095,0.00585392414982 +3492096,0.0133171972444189 +3492097,0.0058972602018866 +3492098,0.064040949037276 +3492099,0.0330816246569156 +3492100,0.0028397932201629 +3492101,0.0252166149646087 +3492102,0.013971156189632301 +3492103,0.0248264595866203 +3492104,0.0498090306933031 +3492105,0.0229017611645253 +3492106,0.0050570508465168 +3492107,0.0085465307379354 +3492108,0.0140331101580964 +3492109,0.0028116817120462 +3492110,0.294738845716551 +3492111,0.0744013594617918 +3492112,0.0126944478555765 +3492113,0.0016856836155056 +3492114,0.0028116817120462 +3492115,0.0112467268481848 +3492116,0.0056233634240924 +3492117,0.0084350451361386 +3492118,0.0150481713399854 +3492119,0.0218061263972532 +3492120,0.0021513000614951 +3492121,0.0050839506908874 +3492122,0.0052277575357832 +3492123,0.0112467268481848 +3492124,0.0028116817120462 +3492125,0.0028116817120462 +3492126,0.0028116817120462 +3492127,0.0056233634240924 +3492128,0.0056522519457006 +3492129,0.0193824316480797 +3492130,0.0209513973418824 +3492131,0.0029502941683721 +3492132,0.0086338557381688 +3492133,0.008317382637426901 +3492134,0.005617610306182 +3492135,0.008945232676351 +3492136,0.0028504282795704 +3492137,0.0059425381743109 +3492138,0.0625459506083241 +3492139,0.0101486729267586 +3492140,0.020861675613232 +3492141,0.145994960564543 +3492142,0.0027511732256109 +3492143,0.0167991291605172 +3492144,0.0634640982396979 +3492145,0.0060608872959079 +3492146,0.0033954332578645 +3492147,0.0048380080248571 +3492148,0.0206930905449974 +3492149,0.0129194697365164 +3492150,0.051273177173509696 +3492151,0.0025788894460847 +3492152,0.0055275161143996995 +3492153,0.0041364612091347 +3492154,0.00078752566711 +3492155,0.0129194697365164 +3492156,0.0129194697365164 +3492157,0.0008886773353388 +3492158,0.0035409797742089 +3492159,0.0006947246791719 +3492160,0.0063107316070205996 +3492161,0.0248978917930045 +3492162,0.0127928349151656 +3492163,0.0387846533907288 +3492164,0.0387584092095492 +3492165,0.0018195805673677 +3492166,0.0069484551843942005 +3492167,0.0006789835849907 +3492168,0.0034742123870927996 +3492169,0.06457899274186149 +3492170,0.0648057057423298 +3492171,0.038635174719904 +3492172,0.0129194697365164 +3492173,0.0010964851853867 +3492174,0.0050152627987618 +3492175,0.025172081296322202 +3492176,0.0129194697365164 +3492177,0.038736172420306095 +3492178,0.0129194697365164 +3492179,0.06459734868258199 +3492180,0.0129194697365164 +3492181,0.0516778789460656 +3492182,0.0903224870330217 +3492183,0.0775168184190984 +3492184,0.0386163277974727 +3492185,0.0129194697365164 +3492186,0.0129194697365164 +3492187,0.0385924034496656 +3492188,0.0129194697365164 +3492189,0.038713820543083 +3492190,0.0516778789460656 +3492191,0.0129194697365164 +3492192,0.0129194697365164 +3492193,0.0634021915040513 +3492194,0.0507678676176411 +3492195,0.0129194697365164 +3492196,0.0387435435345487 +3492197,0.0258389394730328 +3492198,0.0125251784100771 +3492199,0.038743156857068195 +3492200,0.0387584092095492 +3492201,0.06459734868258199 +3492202,0.1413703402950604 +3492203,0.0383935192204079 +3492204,0.0128142545057806 +3492205,0.0221041549902453 +3492206,0.0316272863879411 +3492207,0.0177393332926844 +3492208,0.0055518974550068 +3492209,0.0176924959831078 +3492210,0.0294301623233266 +3492211,0.016734562752779 +3492212,0.0166779505070262 +3492213,0.0059151053428649 +3492214,0.0058920918499987 +3492215,0.0168229778702235 +3492216,0.0055761202040179 +3492217,0.0059151053428649 +3492218,0.0176694788642695 +3492219,0.0391769412588582 +3492220,0.0055789629694093 +3492221,0.011111604547472599 +3492222,0.0295588230104886 +3492223,0.0177453160285947 +3492224,0.0283226195636562 +3492225,0.0065278925220783 +3492226,0.005910840708554 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001040900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001040900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001040900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001041900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001041900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001041900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001042000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001042000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001042000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001042100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001042100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001042100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001042200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001042200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001042200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001042300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001042300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..296efa420 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001042300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0971209618164527 +3490292,0.1475487106644272 +3490293,0.0242656860500574 +3490316,0.0485313721001148 +3490317,0.121328430250287 +3490332,0.0727970581501722 +3490333,0.0732706843254248 +3490334,0.1458459356774677 +3490335,0.0242656860500574 +3490348,0.0237977605396116 +3490349,0.0186186841672083 +3490350,0.0242656860500574 +3490351,0.0727970581501722 +3490374,0.034159868914630395 +3490375,0.0966256110948423 +3490376,0.1325760877533322 +3490377,0.0474477775765073 +3490378,0.0485313721001148 +3490379,0.2183589462952064 +3490396,0.0162105616008953 +3490397,0.032112281769514 +3490398,0.0727883948963873 +3490399,0.0485313721001148 +3490418,0.1452760450081214 +3490419,0.0242656860500574 +3490437,0.024253115521534 +3490438,0.1212633490439558 +3490439,0.0423095740540537 +3490440,0.0242655566255667 +3490457,0.048172896761602996 +3490458,0.0486709343413264 +3490459,0.0485313721001148 +3490460,0.0991395638510836 +3490476,0.048387532107576306 +3490477,0.0721791131420872 +3490478,0.0270855575799942 +3490479,0.0270855575799942 +3490499,0.0902110845293636 +3490500,0.0135427787899971 +3490517,0.0173349538541017 +3490518,0.0295999637138051 +3490519,0.0541711151599884 +3490520,0.0677138939499855 +3490544,0.0135427787899971 +3490545,0.0135489564540012 +3490546,0.0270855575799942 +3490547,0.0134742320741043 +3490573,0.0404941970112345 +3490574,0.0135427787899971 +3490575,0.0128665340236439 +3490576,0.0263247826543694 +3490597,0.0362745128412419 +3490598,0.0356422553737884 +3490599,0.0138261296045704 +3490600,0.043057266275667805 +3490601,0.0234722889931668 +3490602,0.023521969052134002 +3490603,0.019042113777402 +3490604,0.0189720448462666 +3490623,0.0117274122312664 +3490624,0.0234548244625328 +3490625,0.0155458130838955 +3490626,0.053378880560021796 +3490639,0.0117274122312664 +3490640,0.0469096489250656 +3490641,0.023742785564790397 +3490642,0.0462442727579019 +3490643,0.0774333051929078 +3490644,0.0177863407880067 +3490645,0.0177447680634492 +3490658,0.0234548244625328 +3490659,0.0117274122312664 +3490660,0.108452297280348 +3490661,0.0465395396995056 +3490662,0.1247844880187609 +3490663,0.0177863407880067 +3490664,0.0177200139620043 +3490665,0.0532668856125324 +3490681,0.058906716724981004 +3490682,0.0117274122312664 +3490683,0.0117274122312664 +3490684,0.0234548244625328 +3490685,0.0153287504187397 +3490686,0.0155356270991595 +3490687,0.0178836636257352 +3490688,0.017825892779157 +3490689,0.0177674226817756 +3490690,0.0177863407880067 +3490707,0.0234548244625328 +3490708,0.0117274122312664 +3490709,0.0118515222967962 +3490710,0.0117274122312664 +3490725,0.0117120353625349 +3490726,0.0117274122312664 +3490727,0.0351822366937992 +3490728,0.0469958305145965 +3490736,0.0821442722793364 +3490737,0.0587852321057241 +3490738,0.12343030116082629 +3490739,0.061097053261117196 +3490747,0.33996123800770817 +3490748,0.0135208615421011 +3490757,0.0443490286170218 +3490758,0.0342525863960825 +3490771,0.0332547592197695 +3490772,0.0110926150281794 +3490773,0.0115007478892095 +3490774,0.0221738505680753 +3490787,0.0218163960540746 +3490788,0.0112873562733141 +3490789,0.0623543005951773 +3490790,0.08892531250715391 +3490805,0.0108153998242179 +3490806,0.0325486878618718 +3490807,0.0213682819157838 +3490808,0.056357596049909496 +3490809,0.012779422608558 +3490810,0.0129365440240909 +3490827,0.011244328932866 +3490828,0.011595871477233 +3490842,0.033835330164408 +3490843,0.0112776793539524 +3490844,0.0114802497797419 +3490845,0.0349284280823571 +3490856,0.0112776793539524 +3490857,0.0114162002317076 +3490858,0.0112776793539524 +3490859,0.03402469197556 +3490860,0.0116773014888167 +3490861,0.0583380391094169 +3490875,0.0112776793539524 +3490876,0.0112776793539524 +3490877,0.0350330260741465 +3490878,0.0116659267472827 +3490879,0.0233546029776334 +3490892,0.033833038061857196 +3490893,0.033833038061857196 +3490894,0.0116773014888167 +3490895,0.0119900231830775 +3490900,0.0112698775130501 +3490901,0.0108276414166736 +3490902,0.0340511983787754 +3490903,0.033834293650922595 +3490904,0.0387547045595993 +3490905,0.0356626118454209 +3490906,0.0356069726397585 +3490907,0.0827210341327108 +3490916,0.033842953180748495 +3490917,0.0112931833313172 +3490918,0.0112619584489634 +3490919,0.0112791818049941 +3490920,0.0113873976246019 +3490921,0.0244009541005639 +3490922,0.035287767222194 +3490923,0.1696521241888793 +3490924,0.0121870716227127 +3490925,0.053797942398225496 +3490926,0.1496341085896825 +3490935,0.0106577094131859 +3490936,0.011745624179295 +3490937,0.0252028972105028 +3490938,0.0241845961579162 +3490939,0.035206628780206195 +3490940,0.0350280393610793 +3490941,0.0169285216823582 +3490942,0.0167782983528172 +3490953,0.0111690755502108 +3490954,0.0112741205740695 +3490955,0.0106942261189076 +3490956,0.0129023523949624 +3490957,0.0185948529602586 +3490958,0.0181616927737746 +3490959,0.035037972964346395 +3490960,0.0350321650864268 +3490966,0.031036952510475897 +3490967,0.0103456508368253 +3490968,0.0156311275958168 +3490969,0.0168442551407892 +3490970,0.1293810099608038 +3490971,0.0182262195279682 +3490972,0.069744003927392 +3490973,0.0174608889735711 +3490974,0.0116793243214488 +3490975,0.035114517007252696 +3490980,0.031155147424959798 +3490981,0.0103547174361344 +3490982,0.0103505931580212 +3490983,0.073070589722622 +3490984,0.084019764798729 +3490985,0.18587167008178979 +3490986,0.0183393286814878 +3490987,0.055126668097610895 +3490988,0.054763807311232496 +3490989,0.0175153104722122 +3490990,0.052363478154378 +3490991,0.0174188470023089 +3490992,0.0116793243214488 +3490993,0.0116793243214488 +3490994,0.0376196130015369 +3490995,0.0116793243214488 +3490999,0.0103559745520655 +3491000,0.0105173759551716 +3491001,0.0121635541160744 +3491002,0.0311275911797742 +3491003,0.0168981244055025 +3491004,0.0168600270959788 +3491005,0.0551612964196565 +3491006,0.0915327985620287 +3491007,0.0362258712101905 +3491008,0.0351188650393368 +3491009,0.058437680122295096 +3491010,0.0349751325536408 +3491013,0.0112963759294126 +3491014,0.0134430905539993 +3491015,0.0550096427577253 +3491016,0.0550042714636355 +3491017,0.1770379640859895 +3491018,0.0138127479916829 +3491019,0.058246518319404396 +3491020,0.0116793243214488 +3491021,0.021504871547222 +3491022,0.0110375178452412 +3491023,0.0137784450492404 +3491024,0.0109714234667799 +3491025,0.0607595761983078 +3491026,0.0202393361571254 +3491027,0.0157657148024979 +3491028,0.009861435943233 +3491029,0.010752435773611 +3491030,0.0541297734829284 +3491031,0.0541181608597801 +3491032,0.0333467322014202 +3491033,0.0120866476016039 +3491034,0.0138278910890221 +3491035,0.0137721548820304 +3491036,0.0202781566230779 +3491037,0.0202431380748748 +3491038,0.0106819913264941 +3491039,0.10548112874838081 +3491040,0.010752435773611 +3491041,0.032257307320833 +3491042,0.012115336023271 +3491043,0.0120005573806053 +3491044,0.0137444766059422 +3491045,0.069016620472762 +3491046,0.0202431380748748 +3491047,0.0202075904335667 +3491048,0.0099223458382018 +3491049,0.0098024643957614 +3491050,0.0633755706673173 +3491051,0.021124822374484 +3491052,0.010752435773611 +3491053,0.053827030868789996 +3491054,0.0363962666447977 +3491055,0.0363414326610936 +3491056,0.0137644003486405 +3491057,0.0962608715105258 +3491058,0.0202431380748748 +3491059,0.0607830684514049 +3491060,0.0492328681789075 +3491061,0.0098024643957614 +3491062,0.029508580571795298 +3491063,0.0490921500262262 +3491064,0.0210348120555661 +3491065,0.1055772967134397 +3491066,0.032257307320833 +3491067,0.010752435773611 +3491068,0.0110278614346822 +3491069,0.0107708394181643 +3491070,0.0116746087831654 +3491071,0.0243336309430595 +3491072,0.1413815855569501 +3491073,0.060709568952563804 +3491074,0.0098024643957614 +3491075,0.0882168735534255 +3491076,0.0632511438480324 +3491077,0.0211251551348405 +3491078,0.0995910516581556 +3491079,0.0432817666077855 +3491080,0.0325873414969365 +3491081,0.0107800551999029 +3491082,0.0193994038902205 +3491083,0.0202143206035624 +3491084,0.0202431380748748 +3491085,0.0202431380748748 +3491086,0.0299261992275539 +3491087,0.0295387855427683 +3491088,0.030524326545110197 +3491089,0.0497637097041961 +3491090,0.0206829781641535 +3491091,0.0211029102501346 +3491092,0.0322970134193271 +3491093,0.0109026605633618 +3491094,0.060729414224624405 +3491095,0.10113674704264031 +3491096,0.0291188831868652 +3491097,0.0096897407925187 +3491098,0.0322318789726447 +3491099,0.0132416365142059 +3491100,0.0198361283731846 +3491101,0.0528484539274153 +3491102,0.0781192660290336 +3491103,0.1011521197840845 +3491104,0.10120640020165761 +3491105,0.0139067244700571 +3491106,0.0326561444755089 +3491107,0.0203808950499698 +3491108,0.0121509257978085 +3491109,0.047134214607163605 +3491110,0.04752491471289 +3491111,0.0849637964941117 +3491112,0.0105111273005604 +3491113,0.1196160367713113 +3491114,0.0851117439882775 +3491115,0.14081548109924522 +3491116,0.1011027761453159 +3491117,0.0044861331991634 +3491118,0.021988296723509 +3491119,0.040851738089956804 +3491120,0.0206022476151778 +3491121,0.0119854666487168 +3491122,0.0053143056372462 +3491123,0.0215827436930408 +3491124,0.0479734238557465 +3491125,0.0317034384809921 +3491126,0.1132358443929514 +3491127,0.0105961633745894 +3491128,0.0743936392541863 +3491129,0.0169508160743674 +3491130,0.0170644186437129 +3491131,0.033460300123269504 +3491132,0.0506993774159103 +3491133,0.0043883933685719 +3491134,0.004387329014184 +3491135,0.0068240351974964 +3491136,0.0750828608651334 +3491137,0.0360396640910901 +3491138,0.0660346012546702 +3491139,0.11029628527626001 +3491140,0.0132465010695272 +3491141,0.1098734262107329 +3491142,0.0105303698991738 +3491143,0.0108478145551452 +3491144,0.0504959472332926 +3491145,0.0170644186437129 +3491146,0.0176599942437808 +3491147,0.0043867143478334 +3491148,0.0068240351974964 +3491149,0.0039926231838762 +3491150,0.0039953676789392 +3491151,0.0222652507682955 +3491152,0.0221504113623419 +3491153,0.0158142354339361 +3491154,0.048210518560785204 +3491155,0.0796624277521667 +3491156,0.1340355523536016 +3491157,0.0384396594878623 +3491158,0.0755075554862079 +3491159,0.008952249123306 +3491160,0.013147844129522902 +3491161,0.0272961407899856 +3491162,0.0068240351974964 +3491163,0.0123297803042287 +3491164,0.012479991881714999 +3491165,0.0665598989776422 +3491166,0.0218768956496751 +3491167,0.047596551829158104 +3491168,0.0474652703415379 +3491169,0.0797855012595642 +3491170,0.0132978307083249 +3491171,0.0766234134211738 +3491172,0.0187459469835849 +3491173,0.035940518239395 +3491174,0.0360353154915632 +3491175,0.0044486206792937 +3491176,0.020581744665493902 +3491177,0.0070432217938185 +3491178,0.0068240351974964 +3491179,0.0204721055924892 +3491180,0.0041340854281958 +3491181,0.0887339726879274 +3491182,0.0667283411552694 +3491183,0.11093674785355681 +3491184,0.1426142611620011 +3491185,0.0133293705980084 +3491186,0.0135795518632332 +3491187,0.0531913228332996 +3491188,0.0800892632036992 +3491189,0.1916918312372811 +3491190,0.0573400121672545 +3491191,0.0120536828899624 +3491192,0.0358740523580567 +3491193,0.0068240351974964 +3491194,0.0068240351974964 +3491195,0.0180442534452991 +3491196,0.19943664649324921 +3491197,0.11088882292465921 +3491198,0.1265159010505627 +3491199,0.0669904032427922 +3491200,0.0539516351615889 +3491201,0.0957177555990402 +3491202,0.0383421033620834 +3491203,0.0123364397607308 +3491204,0.0599334150299312 +3491205,0.022724198119579403 +3491206,0.0068240351974964 +3491207,0.0272854972655342 +3491208,0.01368806008736 +3491209,0.0099460926654579 +3491210,0.006808082389647 +3491211,0.0703865241677314 +3491212,0.0329064706370337 +3491213,0.1337098621990846 +3491214,0.0574677010798681 +3491215,0.0191710516810417 +3491216,0.0191710516810417 +3491217,0.0598431305059443 +3491218,0.0595589865834135 +3491219,0.0143447111539496 +3491220,0.0477682463824748 +3491221,0.0354536804504366 +3491222,0.0272961407899856 +3491223,0.0096797607212571 +3491224,0.0098395275008398 +3491225,0.0609726173677887 +3491226,0.0309626143205585 +3491227,0.0239422991871833 +3491228,0.047842983076068296 +3491229,0.0650537026441244 +3491230,0.032433506792378504 +3491231,0.0575131550431251 +3491232,0.0191428810340765 +3491233,0.024064298807609602 +3491234,0.0237611722765001 +3491235,0.075310144249879 +3491236,0.0068233494351141 +3491237,0.0169494818610776 +3491238,0.006829182688013 +3491239,0.0100196873966769 +3491240,0.0096981152664004 +3491241,0.0059862425193797 +3491242,0.0100596252850004 +3491243,0.0103047359734773 +3491244,0.0103635283122255 +3491245,0.07155598732829829 +3491246,0.1197114959359165 +3491247,0.0551651011746436 +3491248,0.0107339946553111 +3491249,0.0191710516810417 +3491250,0.0191710516810417 +3491251,0.0119094021233842 +3491252,0.0347130066555191 +3491253,0.0068240351974964 +3491254,0.0068191556697499 +3491255,0.0291860885304757 +3491256,0.0194081012159584 +3491257,0.028970008274983403 +3491258,0.0192077714200502 +3491259,0.0083703415002247 +3491260,0.0075063645146226 +3491261,0.0326905675897774 +3491262,0.0331453255468852 +3491263,0.0103047359734773 +3491264,0.0207962662850516 +3491265,0.0957691967487332 +3491266,0.0716027555051819 +3491267,0.0239422991871833 +3491268,0.0236984894477091 +3491269,0.0761279490821618 +3491270,0.0537427094221328 +3491271,0.0571634538642109 +3491272,0.0191710516810417 +3491273,0.1150263100862502 +3491274,0.1334888202454397 +3491275,0.0341435284271609 +3491276,0.0271415206503782 +3491277,0.0097040506079792 +3491278,0.0088134088114363 +3491279,0.0092826049632936 +3491280,0.0089069813257757 +3491281,0.0089789800858506 +3491282,0.007563912481128 +3491283,0.0302251844518511 +3491284,0.0329226079740716 +3491285,0.0332138155788469 +3491286,0.0313829018421586 +3491287,0.0315073844503965 +3491288,0.0239422991871833 +3491289,0.047873141250392 +3491290,0.0772397126862457 +3491291,0.022858212446153 +3491292,0.0764664912696168 +3491293,0.0191096448023195 +3491294,0.0183144771145549 +3491295,0.0204763078975865 +3491296,0.0477179743198927 +3491297,0.0977759990358741 +3491298,0.0291349432134575 +3491299,0.0111399811609116 +3491300,0.0074003443454003 +3491301,0.0089626705435438 +3491302,0.026376377470039097 +3491303,0.028182521264195202 +3491304,0.0096579920087611 +3491305,0.0075610975924996 +3491306,0.0375822365860167 +3491307,0.010024313484006 +3491308,0.0109763299347073 +3491309,0.0331374891426763 +3491310,0.0213389592475403 +3491311,0.0957691967487332 +3491312,0.0239422991871833 +3491313,0.0168889982206739 +3491314,0.0243771305504028 +3491315,0.0069490795655486 +3491316,0.0204721055924892 +3491317,0.0068240351974964 +3491318,0.0224152377871034 +3491319,0.0111691318023403 +3491320,0.0111706294952284 +3491321,0.0111745027825236 +3491322,0.019397303848742997 +3491323,0.0361597613528626 +3491324,0.017998332456131902 +3491325,0.0089421229578713 +3491326,0.0139198681110484 +3491327,0.0142502043838212 +3491328,0.0301751512300745 +3491329,0.0075124553404748 +3491330,0.0083778282140633 +3491331,0.0103985393732781 +3491332,0.0718268975615499 +3491333,0.0239422991871833 +3491334,0.2633652910590163 +3491335,0.09561533996656141 +3491336,0.0155881279351982 +3491337,0.0157907445047367 +3491338,0.0351006760041834 +3491339,0.0208447826514771 +3491340,0.0068240351974964 +3491341,0.0204721055924892 +3491342,0.0111745027825236 +3491343,0.05587251391261801 +3491344,0.0072725013612354 +3491345,0.0073209113210383 +3491346,0.0417944037533661 +3491347,0.0418997332546891 +3491348,0.0143366136914871 +3491349,0.043031439185142295 +3491350,0.0225571422603725 +3491351,0.0225373660214244 +3491352,0.0529964135583575 +3491353,0.0076297657150216 +3491354,0.009399185207349 +3491355,0.019100433541639303 +3491356,0.0716568072178913 +3491357,0.068711787575274 +3491358,0.0230683697436476 +3491359,0.0239422991871833 +3491360,0.3350655645946028 +3491361,0.0718268975615499 +3491362,0.0104589169611193 +3491363,0.010564324547759001 +3491364,0.010449636205430199 +3491365,0.0104981796836603 +3491366,0.007447641724818 +3491367,0.0059522079050281 +3491368,0.0050344111661866 +3491369,0.027295128319675 +3491370,0.0068240351974964 +3491371,0.0204721240116112 +3491372,0.0136778190608816 +3491373,0.0223491410942531 +3491374,0.0111745027825236 +3491375,0.0111745027825236 +3491376,0.022362826583945603 +3491377,0.007323233410716 +3491378,0.0372039566180024 +3491379,0.0139213163922874 +3491380,0.0139572625425912 +3491381,0.0143330374997635 +3491382,0.0143438130617141 +3491383,0.0143438130617141 +3491384,0.0139822919242387 +3491385,0.0075676442403488 +3491386,0.0300499219022344 +3491387,0.0151318951958789 +3491388,0.0227044677985584 +3491389,0.0093832983035242 +3491390,0.0479784513809803 +3491391,0.0094282198618718 +3491392,0.0716590994079096 +3491393,0.2633652910590163 +3491394,0.0050176267977477 +3491395,0.047097203004107496 +3491396,0.0146233267150818 +3491397,0.0048851398215788 +3491398,0.0068240351974964 +3491399,0.0341230168727951 +3491400,0.0111746701685384 +3491401,0.0111745027825236 +3491402,0.022466259207538197 +3491403,0.0112619800792956 +3491404,0.0101505097275768 +3491405,0.0371615350818931 +3491406,0.0788667184486752 +3491407,0.0157809164375066 +3491408,0.013937531574873 +3491409,0.0139609666707011 +3491410,0.0139355245295568 +3491411,0.0144088270383042 +3491412,0.0143438130617141 +3491413,0.0287171706842294 +3491414,0.0288599252043897 +3491415,0.0143438130617141 +3491416,0.0714961073113295 +3491417,0.0152806602899824 +3491418,0.0527430409444392 +3491419,0.0075702588271386 +3491420,0.0081207608983052 +3491421,0.0184113924739149 +3491422,0.1182101476401074 +3491423,0.1671888597731872 +3491424,0.0478845983743666 +3491425,0.034353822318164 +3491426,0.0055293533465046 +3491427,0.0147102375436912 +3491428,0.0048744422383606 +3491429,0.0204721055924892 +3491430,0.0204721055924892 +3491431,0.0068797764089742 +3491432,0.0111745179351234 +3491433,0.0111745027825236 +3491434,0.0111745027825236 +3491435,0.0111745027825236 +3491436,0.0111852763220667 +3491437,0.0335558289662001 +3491438,0.0473427493125198 +3491439,0.0157175451825084 +3491440,0.027142284679718298 +3491441,0.027746311509082 +3491442,0.0136893783247196 +3491443,0.0138327895364752 +3491444,0.0152304133802392 +3491445,0.0075164855848086 +3491446,0.0077657639606292 +3491447,0.0265101808516421 +3491448,0.0096355284059995 +3491449,0.0772815026592478 +3491450,0.0261089038103818 +3491451,0.0957691967487332 +3491452,0.0238789155061392 +3491453,0.0239422991871833 +3491454,0.07145636515861731 +3491455,0.0138224503025412 +3491456,0.069645077706002 +3491457,0.0052975539400498 +3491458,0.015408472616322399 +3491459,0.0206146623005962 +3491460,0.0051230589018254 +3491461,0.010807398522142901 +3491462,0.0048916257001101 +3491463,0.013627426184801901 +3491464,0.0067883128888387 +3491465,0.0204721055924892 +3491466,0.0068240351974964 +3491467,0.0111761494695588 +3491468,0.0111745027825236 +3491469,0.0111745027825236 +3491470,0.0784170800090946 +3491471,0.011211679717177 +3491472,0.0113100787408011 +3491473,0.0559245418512567 +3491474,0.0157809164375066 +3491475,0.0471348923207984 +3491476,0.0117413800369697 +3491477,0.07354077521533 +3491478,0.0110321896521599 +3491479,0.0265426529117538 +3491480,0.0179592208896155 +3491481,0.0259331286634912 +3491482,0.07832671143114539 +3491483,0.0957691967487332 +3491484,0.0212304618307114 +3491485,0.0237035689812762 +3491486,0.039673791297349104 +3491487,0.0412847572181926 +3491488,0.0688256638837273 +3491489,0.0138224503025412 +3491490,0.0051248804666101 +3491491,0.0102367561201382 +3491492,0.0072630199648971 +3491493,0.0068720338448595 +3491494,0.0068240351974964 +3491495,0.0136480703949928 +3491496,0.0335247048869235 +3491497,0.0111745027825236 +3491498,0.0111745027825236 +3491499,0.0112074304854389 +3491500,0.0335551458132463 +3491501,0.0112244137397591 +3491502,0.0157346912993582 +3491503,0.0103460011263773 +3491504,0.010592178135065 +3491505,0.0574186790954725 +3491506,0.0232285775293075 +3491507,0.0185691355744887 +3491508,0.027768393732034602 +3491509,0.0763512256298995 +3491510,0.07832671143114539 +3491511,0.0239422991871833 +3491512,0.021332751152375 +3491513,0.0858376722487118 +3491514,0.0380591582558343 +3491515,0.0138224503025412 +3491516,0.0147104371689411 +3491517,0.0256491164998471 +3491518,0.025621587700239097 +3491519,0.0073772164877682 +3491520,0.0204838102543446 +3491521,0.0342719676388123 +3491522,0.0111748032882636 +3491523,0.0111745413025194 +3491524,0.0335559478184436 +3491525,0.0559297786089525 +3491526,0.0223697613933533 +3491527,0.0111791598755589 +3491528,0.0223997051414829 +3491529,0.0111852763220667 +3491530,0.0103066173159595 +3491531,0.0104944322110748 +3491532,0.03444248013543 +3491533,0.0229850304043552 +3491534,0.0230142759670172 +3491535,0.0239422991871833 +3491536,0.0189598762365958 +3491537,0.0236499468105335 +3491538,0.053127826787621305 +3491539,0.0108625019145184 +3491540,0.0138224503025412 +3491541,0.041554565721941 +3491542,0.0155529686159057 +3491543,0.0051248804666101 +3491544,0.0051545030128252 +3491545,0.0218102922468424 +3491546,0.0204721055924892 +3491547,0.0134246599962646 +3491548,0.0068053523230877 +3491549,0.0335558289662001 +3491550,0.0335558289662001 +3491551,0.022370545751815102 +3491552,0.0737125924381549 +3491553,0.0311907786570199 +3491554,0.0104981944750511 +3491555,0.0114683584692004 +3491556,0.12839814850743259 +3491557,0.0185954198768636 +3491558,0.023873951296379 +3491559,0.0718149051447311 +3491560,0.0138224503025412 +3491561,0.0138224503025412 +3491562,0.069112251512706 +3491563,0.0138339495969241 +3491564,0.0155806983118156 +3491565,0.010278488920131099 +3491566,0.0051782124501934 +3491567,0.007429098729972 +3491568,0.0275787070151601 +3491569,0.0068539622800598 +3491570,0.0116357617783894 +3491571,0.0335558289662001 +3491572,0.0335557937163757 +3491573,0.0209321620099856 +3491574,0.0315420161106631 +3491575,0.054962130547063406 +3491576,0.0183356665074825 +3491577,0.0183356665074825 +3491578,0.0185258290774851 +3491579,0.0135434094853503 +3491580,0.0137524130093525 +3491581,0.0138224503025412 +3491582,0.0052120694525214 +3491583,0.0104506147877165 +3491584,0.0592026242490408 +3491585,0.0336962765276642 +3491586,0.0112570301166687 +3491587,0.0111852763220667 +3491588,0.0335557260666923 +3491589,0.0342513415962747 +3491590,0.0171540774181514 +3491591,0.0132430579047522 +3491592,0.0193939830121013 +3491593,0.0183356665074825 +3491594,0.0181060874417978 +3491595,0.0175069182578804 +3491596,0.0131407847084042 +3491597,0.0375349942726525 +3491598,0.1099139110585885 +3491599,0.0057044110008717 +3491600,0.0180102887052298 +3491601,0.0538302972337086 +3491602,0.0113808518693722 +3491603,0.0227655360387191 +3491604,0.0450744035808482 +3491605,0.1011174392079604 +3491606,0.0111850438422003 +3491607,0.047510914447066496 +3491608,0.0159570667317725 +3491609,0.0384391715257718 +3491610,0.0578639651449773 +3491611,0.0122059028963036 +3491612,0.0124412995546091 +3491613,0.0226389072228293 +3491614,0.0278100524647322 +3491615,0.0097906670835886 +3491616,0.0097190229383669 +3491617,0.0212138316806399 +3491618,0.0885562973271859 +3491619,0.0252280056031199 +3491620,0.0174441418006706 +3491621,0.0186688788235187 +3491622,0.0186688788235187 +3491623,0.0160120483301957 +3491624,0.0159193705767393 +3491625,0.0318785075523548 +3491626,0.01932960934937 +3491627,0.057988828048109994 +3491628,0.0133997073664688 +3491629,0.0126003831881027 +3491630,0.0361961998259531 +3491631,0.0278212968260049 +3491632,0.0832910371303781 +3491633,0.0278212968260049 +3491634,0.0097421411904084 +3491635,0.0291164896305338 +3491636,0.0146564433543655 +3491637,0.0389432874081219 +3491638,0.0314003325465487 +3491639,0.0307305046838871 +3491640,0.0254712630532055 +3491641,0.026110850090830702 +3491642,0.012661278738958 +3491643,0.0186688788235187 +3491644,0.0182669185844492 +3491645,0.0185964615809339 +3491646,0.0159193705767393 +3491647,0.0159508732839297 +3491648,0.01932960934937 +3491649,0.0193096985352435 +3491650,0.0382931267324713 +3491651,0.0079300311931981 +3491652,0.040014353485016294 +3491653,0.09055610477574269 +3491654,0.1386716831444538 +3491655,0.0097519918027456 +3491656,0.0392433938431938 +3491657,0.0260359333244249 +3491658,0.0931212403977177 +3491659,0.0944587584147172 +3491660,0.037950481696819305 +3491661,0.0368317354876574 +3491662,0.0185341677648392 +3491663,0.0186688788235187 +3491664,0.0174333686217692 +3491665,0.0172061276226803 +3491666,0.0796440108625558 +3491667,0.0477581312555237 +3491668,0.0318387411534786 +3491669,0.032149805652912006 +3491670,0.01932960934937 +3491671,0.057988822395520404 +3491672,0.0191266812903646 +3491673,0.0078602191060781 +3491674,0.0084324045315311 +3491675,0.0094332893960453 +3491676,0.0157972203193043 +3491677,0.0834638904780147 +3491678,0.0275553756651229 +3491679,0.0132691835777071 +3491680,0.0126578818813052 +3491681,0.1575277559459205 +3491682,0.2196014533322698 +3491683,0.0313122576048278 +3491684,0.037984756481886 +3491685,0.0380184278498014 +3491686,0.0372300921419429 +3491687,0.0185720882104691 +3491688,0.0164046287585193 +3491689,0.0097790968931195 +3491690,0.0175374968247516 +3491691,0.0158553377711714 +3491692,0.0475881787299258 +3491693,0.0477651248570376 +3491694,0.0579523116348835 +3491695,0.0579507662591565 +3491696,0.01932960934937 +3491697,0.0191920677846669 +3491698,0.023827964687519798 +3491699,0.0364153456803046 +3491700,0.0278212968260049 +3491701,0.0278212968260049 +3491702,0.0551387920128735 +3491703,0.027057366979473 +3491704,0.0132344727493933 +3491705,0.0397921250530468 +3491706,0.1829199183063005 +3491707,0.0630111023783682 +3491708,0.0123406824808209 +3491709,0.0116512299711954 +3491710,0.0139098236740657 +3491711,0.0151953042505478 +3491712,0.0391277049883723 +3491713,0.047741562870401 +3491714,0.0796589236558969 +3491715,0.01932960934937 +3491716,0.01932960934937 +3491717,0.057988828048109994 +3491718,0.0192983603335681 +3491719,0.0105015924540816 +3491720,0.0278212968260049 +3491721,0.0834638904780147 +3491722,0.0274746826813109 +3491723,0.0278212968260049 +3491724,0.0123159050117509 +3491725,0.0311148864857919 +3491726,0.0584250548500395 +3491727,0.0192524555227978 +3491728,0.0314173094615892 +3491729,0.055649408381306095 +3491730,0.0404313864484968 +3491731,0.0273617831445123 +3491732,0.0156253215124798 +3491733,0.013212795750298 +3491734,0.029036903487625297 +3491735,0.0158907468899477 +3491736,0.047737105840690505 +3491737,0.015723098012271 +3491738,0.07691153439586029 +3491739,0.01932960934937 +3491740,0.01932960934937 +3491741,0.01932960934937 +3491742,0.0568296346283988 +3491743,0.055183939736198 +3491744,0.0276400235795931 +3491745,0.0278212968260049 +3491746,0.0556425936520098 +3491747,0.0270167796846285 +3491748,0.0553669993714004 +3491749,0.024571798941128 +3491750,0.0123279100986515 +3491751,0.071891233429279 +3491752,0.0102405725046992 +3491753,0.0116550737692279 +3491754,0.0116351085030814 +3491755,0.0647375822065431 +3491756,0.0213927158407035 +3491757,0.0316254468999845 +3491758,0.026912920752286802 +3491759,0.0156035558375291 +3491760,0.0156275167738289 +3491761,0.0131594678387045 +3491762,0.0124783223864112 +3491763,0.0097699413857132 +3491764,0.0096776751165248 +3491765,0.0160757495048307 +3491766,0.0578007966578954 +3491767,0.0193186021823404 +3491768,0.0576900154364867 +3491769,0.0385379612844509 +3491770,0.0578825430734724 +3491771,0.01932960934937 +3491772,0.1388805044784125 +3491773,0.0278212968260049 +3491774,0.0617485895342422 +3491775,0.0368600247866167 +3491776,0.0103118090887135 +3491777,0.0102491687980906 +3491778,0.011840103828028 +3491779,0.0116299167275428 +3491780,0.0648944777555739 +3491781,0.0215697605162858 +3491782,0.015613908040704 +3491783,0.046884967981171796 +3491784,0.03978283602664 +3491785,0.0405581064861494 +3491786,0.033303726413755 +3491787,0.0111070433631539 +3491788,0.0096681946888566 +3491789,0.0182141145633521 +3491790,0.0192285703711073 +3491791,0.1207528714408114 +3491792,0.0279153261314935 +3491793,0.0277628791011268 +3491794,0.0833023304208105 +3491795,0.0492883957922456 +3491796,0.0123220989480614 +3491797,0.0102798699616577 +3491798,0.0581602938092661 +3491799,0.0116323514244121 +3491800,0.0645324136594086 +3491801,0.0215137738872848 +3491802,0.015597230826587 +3491803,0.0781079684956065 +3491804,0.0146074524137684 +3491805,0.029144559951039 +3491806,0.0221862557088756 +3491807,0.0111070433631539 +3491808,0.0449139336284549 +3491809,0.040567685639957204 +3491810,0.0348386938656679 +3491811,0.054903794099222 +3491812,0.0275684200305692 +3491813,0.0274393362903085 +3491814,0.0246185316017641 +3491815,0.0123220989480614 +3491816,0.0246319688611606 +3491817,0.0465303052978594 +3491818,0.0599552096659469 +3491819,0.025715817735177303 +3491820,0.0208492712358053 +3491821,0.0156389642289229 +3491822,0.04690874199405 +3491823,0.0145371683851281 +3491824,0.0438312737157134 +3491825,0.0111076131165262 +3491826,0.0333466559834577 +3491827,0.0111070433631539 +3491828,0.0091999954779506 +3491829,0.025387652653045302 +3491830,0.2203225861771985 +3491831,0.0358876285420474 +3491832,0.0122676349515082 +3491833,0.0125704686042923 +3491834,0.0663937170557968 +3491835,0.0133457528222066 +3491836,0.0120800006859826 +3491837,0.0110975818012997 +3491838,0.0122557892739631 +3491839,0.0146057931706309 +3491840,0.0146385794427669 +3491841,0.0146597569508132 +3491842,0.0556225013921243 +3491843,0.035417325899942204 +3491844,0.0096218544199773 +3491845,0.0168675277382134 +3491846,0.0369646586477756 +3491847,0.0369646586477756 +3491848,0.0243315331811051 +3491849,0.0121694652146942 +3491850,0.0378437070168124 +3491851,0.0378176764648884 +3491852,0.0663475318875152 +3491853,0.0132355852935777 +3491854,0.0132989261436226 +3491855,0.0120766316691525 +3491856,0.0120712953546065 +3491857,0.0108265391642435 +3491858,0.0111180944728198 +3491859,0.0122673533299981 +3491860,0.0437595078499528 +3491861,0.0437473331272337 +3491862,0.0111503476907879 +3491863,0.0111645042720008 +3491864,0.0609417285570477 +3491865,0.0248710515552809 +3491866,0.0092459402859748 +3491867,0.0172422869986491 +3491868,0.0255458150752318 +3491869,0.07391995204695259 +3491870,0.1108490194223463 +3491871,0.0369646586477756 +3491872,0.0369254411819233 +3491873,0.0851382994797948 +3491874,0.0121696712736784 +3491875,0.0126118741471413 +3491876,0.063093961727644 +3491877,0.038806750444604 +3491878,0.0112745913001877 +3491879,0.0120772864643674 +3491880,0.0108016415388511 +3491881,0.0324055430442066 +3491882,0.0111039285917172 +3491883,0.0110855330774943 +3491884,0.0154571025241584 +3491885,0.0157427183294171 +3491886,0.0122034855041019 +3491887,0.0624703938734287 +3491888,0.0125539606107695 +3491889,0.0095920041372743 +3491890,0.0369646586477756 +3491891,0.0711958921845233 +3491892,0.0369646586477756 +3491893,0.11089397594332681 +3491894,0.0364946963450841 +3491895,0.0126190744340419 +3491896,0.0378244774013399 +3491897,0.0982413055512211 +3491898,0.0109298467690344 +3491899,0.0106208738618751 +3491900,0.0106179926051034 +3491901,0.0108000957593907 +3491902,0.0107666452497754 +3491903,0.0554267475542849 +3491904,0.0110987111524615 +3491905,0.0156410154782281 +3491906,0.04715728128928651 +3491907,0.031847264122162405 +3491908,0.0158775285145853 +3491909,0.0631178101309492 +3491910,0.0124796046436161 +3491911,0.184823293238878 +3491912,0.11070837690001539 +3491913,0.0364857697536814 +3491914,0.0126190744340419 +3491915,0.0126150111970625 +3491916,0.0126168042076872 +3491917,0.032457569118611196 +3491918,0.0217760446603896 +3491919,0.0318493738209617 +3491920,0.0318640792066915 +3491921,0.0105298133739236 +3491922,0.0106188862958826 +3491923,0.0110868517369646 +3491924,0.0331699723190025 +3491925,0.0110951479613224 +3491926,0.0155999862069446 +3491927,0.0313300898524193 +3491928,0.0318588186199482 +3491929,0.0159337416043114 +3491930,0.0124691402187799 +3491931,0.037466313036183405 +3491932,0.0369646586477756 +3491933,0.0369646586477756 +3491934,0.0369544829997821 +3491935,0.0126190744340419 +3491936,0.0126190744340419 +3491937,0.0126134585442045 +3491938,0.0067410382599049 +3491939,0.041654899410816 +3491940,0.052731811735454104 +3491941,0.0318627257951885 +3491942,0.0110797981933214 +3491943,0.0216655892218448 +3491944,0.0432241551539642 +3491945,0.0110973339454264 +3491946,0.0478710551827856 +3491947,0.0796655639170036 +3491948,0.0353072793318232 +3491949,0.11055745619935131 +3491950,0.0366006480904432 +3491951,0.11079993816000411 +3491952,0.0378001927626901 +3491953,0.0126170077183461 +3491954,0.0126190744340419 +3491955,0.0378565278990952 +3491956,0.0131488619372248 +3491957,0.0201653255457393 +3491958,0.0663473290367014 +3491959,0.0165979024022816 +3491960,0.0226554212977614 +3491961,0.008441446827135 +3491962,0.0105512470954462 +3491963,0.021265566611286098 +3491964,0.0160562474661714 +3491965,0.0159728918543222 +3491966,0.0101320328153971 +3491967,0.0261135694682623 +3491968,0.0361986358205897 +3491969,0.0725658493228711 +3491970,0.0366817221229882 +3491971,0.0126139604485156 +3491972,0.0126258804978609 +3491973,0.025404895942152103 +3491974,0.0126247528295707 +3491975,0.0197748455511658 +3491976,0.0328739346356886 +3491977,0.0082879485965684 +3491978,0.0242635727796217 +3491979,0.024896853603422402 +3491980,0.024896853603422402 +3491981,0.0225517332643324 +3491982,0.0074945908792201 +3491983,0.0081415632739663 +3491984,0.0082981792585935 +3491985,0.0105487668905856 +3491986,0.028240560049874602 +3491987,0.0103133708455562 +3491988,0.0285082533955574 +3491989,0.0265409828196374 +3491990,0.0367439582811918 +3491991,0.0126190744340419 +3491992,0.032836440141349704 +3491993,0.025920586956861398 +3491994,0.026302969381057903 +3491995,0.022541969694561202 +3491996,0.0074527805266518 +3491997,0.0081386681836853 +3491998,0.024424689821898903 +3491999,0.0407078163698315 +3492000,0.0163315243391622 +3492001,0.0094177089753519 +3492002,0.0099586711203305 +3492003,0.12869353046321852 +3492004,0.1420655092643748 +3492005,0.1153694144941577 +3492006,0.0220741757369868 +3492007,0.0650073360951673 +3492008,0.0162831265479326 +3492009,0.0325662530958652 +3492010,0.0325662530958652 +3492011,0.0557204993487848 +3492012,0.0081389754237285 +3492013,0.008132043529614 +3492014,0.0095902741243237 +3492015,0.0517014847056223 +3492016,0.0108609177230935 +3492017,0.0080960170089908 +3492018,0.0364352007283249 +3492019,0.0152833795787902 +3492020,0.0324344159978013 +3492021,0.1639295853674409 +3492022,0.0542070615967178 +3492023,0.0092628846071939 +3492024,0.027061536838304798 +3492025,0.040345040306546204 +3492026,0.0079597170191856 +3492027,0.0195064055635008 +3492028,0.013420920261623 +3492029,0.0546431951224803 +3492030,0.0495544639303216 +3492031,0.0532379901127418 +3492032,0.0090047875048732 +3492033,0.0090517022332711 +3492034,0.0198230976054571 +3492035,0.0198289686168992 +3492036,0.0546332725714877 +3492037,0.0543205758718588 +3492038,0.0694683715519154 +3492039,0.1605847250015583 +3492040,0.0089733251460703 +3492041,0.0091374465791423 +3492042,0.1092304441296438 +3492043,0.162558065239932 +3492044,0.0085965615576063 +3492045,0.0266020375784256 +3492046,0.039159513316653 +3492047,0.0500589107086052 +3492048,0.0537133263907644 +3492049,0.0343411714631127 +3492050,0.0086291096253109 +3492051,0.0294809928303275 +3492052,0.0055890573895097 +3492053,0.516770929098129 +3492054,0.2058010716465097 +3492055,0.0257365699324063 +3492056,0.0258532703469204 +3492057,0.0055890544317662 +3492058,0.0056066451078237 +3492059,0.005647046375828 +3492060,0.2957174734280682 +3492061,0.2026921915630036 +3492062,0.051670668942233 +3492063,0.008606526069343 +3492064,0.0086895280118878 +3492065,0.0055676151487565 +3492066,0.0167870682223457 +3492067,0.04658841784732 +3492068,0.0336065702140331 +3492069,0.0086048352262077 +3492070,0.0110392904143778 +3492071,0.0056049107391187 +3492072,0.0277039309456158 +3492073,0.0049692341489696 +3492074,0.23464197337126158 +3492075,0.13587598227709619 +3492076,0.0037491971905378 +3492077,0.014280225424044399 +3492078,0.2016394212841986 +3492079,0.1000971471033935 +3492080,0.0035586878657341 +3492081,0.0035586878657341 +3492082,0.0035943408231471 +3492083,0.1344262808561324 +3492084,0.3356140956902402 +3492085,0.0333639982114888 +3492086,0.003920554409112 +3492087,0.0035586878657341 +3492088,0.0071271993577941 +3492089,0.014489618679763599 +3492090,0.0281048067169438 +3492091,0.165942478367611 +3492092,0.0106760635972023 +3492093,0.0121335546991727 +3492094,0.0320941033637354 +3492095,0.007387926464349 +3492096,0.0136143298847299 +3492097,0.0067512503578057 +3492098,0.0650995091138314 +3492099,0.0336065702140331 +3492100,0.0035916752234003 +3492101,0.0319266588742787 +3492102,0.0176933618765327 +3492103,0.025134390220046 +3492104,0.0504289958792555 +3492105,0.0234882248936798 +3492106,0.0059045527596024005 +3492107,0.0096884399543478 +3492108,0.0177644223562786 +3492109,0.0035586878657341 +3492110,0.2984326595823426 +3492111,0.0753268300295735 +3492112,0.014667202879112601 +3492113,0.0019681842532008 +3492114,0.0035586878657341 +3492115,0.0142347514629364 +3492116,0.0071173757314682 +3492117,0.0106760635972023 +3492118,0.016681535087023597 +3492119,0.022014832873528 +3492120,0.0024250969262045 +3492121,0.005930441339041 +3492122,0.0060612568959859 +3492123,0.0142347514629364 +3492124,0.0035586878657341 +3492125,0.0035586878657341 +3492126,0.0035586878657341 +3492127,0.0071173757314682 +3492128,0.0071512748730859 +3492129,0.0195821849094173 +3492130,0.0211320242107781 +3492131,0.0037178385737549 +3492132,0.0109043320293031 +3492133,0.010541106082553299 +3492134,0.0071107769722783005 +3492135,0.0113263266500284 +3492136,0.0036183048287056 +3492137,0.007608470310449001 +3492138,0.0630887552560027 +3492139,0.0122353194417229 +3492140,0.0210423576662373 +3492141,0.1472563659699705 +3492142,0.0034892853370279 +3492143,0.0212707356262775 +3492144,0.064601874525083 +3492145,0.0064858083408973 +3492146,0.0055787406746211 +3492147,0.007888344204028501 +3492148,0.0208650205238245 +3492149,0.0131402919068932 +3492150,0.0521661908432648 +3492151,0.0041092906462204 +3492152,0.0070139194200738 +3492153,0.0067495790891101 +3492154,0.001237004474023 +3492155,0.0131402919068932 +3492156,0.0131402919068932 +3492157,0.0013985995854512 +3492158,0.0061082392904859 +3492159,0.0012081544713847 +3492160,0.0102497867989891 +3492161,0.0253621495203297 +3492162,0.0130167001217555 +3492163,0.0394469872630773 +3492164,0.0394208757206796 +3492165,0.0028384103788094 +3492166,0.0120886852013196 +3492167,0.0011149708273336 +3492168,0.0049870651455671995 +3492169,0.0656813869735292 +3492170,0.0659016451062311 +3492171,0.0393006025572376 +3492172,0.0131402919068932 +3492173,0.0016033640601043 +3492174,0.0075645687109725 +3492175,0.0256297502467299 +3492176,0.0131402919068932 +3492177,0.0393965593800509 +3492178,0.0131402919068932 +3492179,0.065701459534466 +3492180,0.0131402919068932 +3492181,0.0525611676275728 +3492182,0.0918575997142974 +3492183,0.0788417514413592 +3492184,0.0392846693167692 +3492185,0.0131402919068932 +3492186,0.0131402919068932 +3492187,0.0392617342309399 +3492188,0.0131402919068932 +3492189,0.039377358520381295 +3492190,0.0525611676275728 +3492191,0.0131402919068932 +3492192,0.0131402919068932 +3492193,0.0645057742898677 +3492194,0.0516560179690918 +3492195,0.0131402919068932 +3492196,0.0394066247352486 +3492197,0.0262805838137864 +3492198,0.0127623043652261 +3492199,0.0394057048527926 +3492200,0.0394208757206796 +3492201,0.065701459534466 +3492202,0.1437991497616154 +3492203,0.0390895622947174 +3492204,0.0130447584047532 +3492205,0.0242898316299591 +3492206,0.0336953062655581 +3492207,0.020285387232278698 +3492208,0.006450671236962 +3492209,0.0181766595373161 +3492210,0.0300534184439608 +3492211,0.019463903281431202 +3492212,0.0193832277883859 +3492213,0.0060389270074665 +3492214,0.0060650158486095 +3492215,0.019589333494236402 +3492216,0.0064836560548735 +3492217,0.0060389270074665 +3492218,0.0180429425032753 +3492219,0.0454764562611534 +3492220,0.0064890677615531 +3492221,0.0128924892158707 +3492222,0.0302257015646991 +3492223,0.0181167810223995 +3492224,0.0289824929759949 +3492225,0.0071341281133273 +3492226,0.0060471265404519 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001050900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001050900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001050900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001051900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001051900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001051900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001052000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001052000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001052000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001052100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001052100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001052100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001052200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001052200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001052200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001052300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001052300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8405e332d --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001052300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.08363327711020041 +3490292,0.1274490835440628 +3490293,0.0208928566426038 +3490316,0.0417857132852076 +3490317,0.10446428321301901 +3490332,0.0626785699278114 +3490333,0.0632610534343392 +3490334,0.1256267439266939 +3490335,0.0208928566426038 +3490348,0.0206798299063064 +3490349,0.017600263355519 +3490350,0.0208928566426038 +3490351,0.0626785699278114 +3490374,0.0341639970004282 +3490375,0.0969250152163695 +3490376,0.1177667274041672 +3490377,0.0411539026132141 +3490378,0.0417857132852076 +3490379,0.18809434923092272 +3490396,0.0161961610795128 +3490397,0.032212246209383 +3490398,0.0626735186507182 +3490399,0.0417857132852076 +3490418,0.1252330301399659 +3490419,0.0208928566426038 +3490437,0.0208892595753378 +3490438,0.1044977352972328 +3490439,0.038157974016645 +3490440,0.02089278117916 +3490457,0.0483228358418218 +3490458,0.0488200296961485 +3490459,0.0417857132852076 +3490460,0.0891601611890665 +3490476,0.041666049973550306 +3490477,0.062164489352690505 +3490478,0.0239445194602012 +3490479,0.0239445194602012 +3490499,0.0855487540468343 +3490500,0.0119722597301006 +3490517,0.0173478839115828 +3490518,0.0296270013453111 +3490519,0.0478890389204024 +3490520,0.059861298650503006 +3490544,0.0119722597301006 +3490545,0.0119824204701788 +3490546,0.0239445194602012 +3490547,0.0119255470416156 +3490573,0.0358037275887423 +3490574,0.0119722597301006 +3490575,0.0115365930320656 +3490576,0.0233316828716227 +3490597,0.032480985853568595 +3490598,0.0317145491561796 +3490599,0.0122714581741902 +3490600,0.0385634840171559 +3490601,0.020899284978755997 +3490602,0.0209603760451214 +3490603,0.0184472693189047 +3490604,0.0183361759118693 +3490623,0.0104422830045223 +3490624,0.0208845660090446 +3490625,0.0150239043075226 +3490626,0.0529726329717742 +3490639,0.0104422830045223 +3490640,0.0417691320180892 +3490641,0.021232523236273698 +3490642,0.044693638368786 +3490643,0.0749202415157792 +3490644,0.0176684707403183 +3490645,0.0176199427856741 +3490658,0.0208845660090446 +3490659,0.0104422830045223 +3490660,0.10491410816197551 +3490661,0.0450450115264497 +3490662,0.12373880783749919 +3490663,0.0176684707403183 +3490664,0.0175910472556129 +3490665,0.0528978607399093 +3490681,0.0525540423686392 +3490682,0.0104422830045223 +3490683,0.0104422830045223 +3490684,0.0208845660090446 +3490685,0.0147939528661922 +3490686,0.0150224930514845 +3490687,0.0177466750788952 +3490688,0.0177061073756525 +3490689,0.017646306973692 +3490690,0.0176684707403183 +3490707,0.0208845660090446 +3490708,0.0104422830045223 +3490709,0.0105922511562427 +3490710,0.0104422830045223 +3490725,0.0104224729984554 +3490726,0.0104422830045223 +3490727,0.0313268490135669 +3490728,0.0418719157668264 +3490736,0.0731362099490015 +3490737,0.0523803316196637 +3490738,0.1224485341946806 +3490739,0.0551306419112002 +3490747,0.3381136763484694 +3490748,0.0125431132776078 +3490757,0.0384635100968344 +3490758,0.030041757545710097 +3490771,0.0288423057036471 +3490772,0.0096170148072402 +3490773,0.0100393658240056 +3490774,0.0192269619038286 +3490787,0.0189769602342199 +3490788,0.0096836953262133 +3490789,0.0523639795714482 +3490790,0.0743300700300603 +3490805,0.0093435014926948 +3490806,0.0285584820150406 +3490807,0.0186624396592378 +3490808,0.0458496126893128 +3490809,0.0106624945895621 +3490810,0.0108233765840548 +3490827,0.0091329282154784 +3490828,0.0093928371038994 +3490842,0.0273534868439287 +3490843,0.0091169830411672 +3490844,0.0092726865342542 +3490845,0.0282627622776161 +3490856,0.0091169830411672 +3490857,0.0093193426936275 +3490858,0.0091169830411672 +3490859,0.0275474197228257 +3490860,0.0094241481274366 +3490861,0.0471162055396853 +3490875,0.0091169830411672 +3490876,0.0091169830411672 +3490877,0.0284274653348165 +3490878,0.0095001187932006 +3490879,0.0188482962548732 +3490892,0.0273509491235016 +3490893,0.0273509491235016 +3490894,0.0094241481274366 +3490895,0.0099750844668545 +3490900,0.0091112545438621 +3490901,0.0087865429382252 +3490902,0.0276410040365997 +3490903,0.0273522362682899 +3490904,0.0339733592246395 +3490905,0.0292382789605775 +3490906,0.0298214651439361 +3490907,0.0841533891481861 +3490916,0.0273654337271618 +3490917,0.0091396321863513 +3490918,0.0091054399754997 +3490919,0.0091190252611126 +3490920,0.0092295134080404 +3490921,0.0203074165737867 +3490922,0.0286164763657062 +3490923,0.1727275689760108 +3490924,0.0103086550539345 +3490925,0.0556131445682205 +3490926,0.15301407616763948 +3490935,0.0086617704600089 +3490936,0.009755407539507 +3490937,0.0258653170454394 +3490938,0.0248655052695707 +3490939,0.0293121582356679 +3490940,0.0290959728802887 +3490941,0.0173190525769667 +3490942,0.0171068974684289 +3490953,0.0090372407592048 +3490954,0.009115153238137 +3490955,0.0088627886886704 +3490956,0.0115237428960983 +3490957,0.0194144573328169 +3490958,0.0189543511769396 +3490959,0.0291111906990408 +3490960,0.0291027062007011 +3490966,0.0252979248762129 +3490967,0.0084326416254043 +3490968,0.0150344462954931 +3490969,0.0166893035017245 +3490970,0.1350617247675239 +3490971,0.0190494163137092 +3490972,0.07296802415257961 +3490973,0.0182656497959667 +3490974,0.0097037302330136 +3490975,0.0292023993399521 +3490980,0.025386103515226202 +3490981,0.0084451416472431 +3490982,0.0084469944142405 +3490983,0.0598827392552449 +3490984,0.0830772787885722 +3490985,0.1842123491047492 +3490986,0.0191641615891266 +3490987,0.057588060769840896 +3490988,0.057235516462533 +3490989,0.0183230741121649 +3490990,0.054775813007907 +3490991,0.0182229275522863 +3490992,0.0097037302330136 +3490993,0.0097037302330136 +3490994,0.032190080916130195 +3490995,0.0097037302330136 +3490999,0.0084424808828997 +3491000,0.0085587306971994 +3491001,0.0126790143545941 +3491002,0.0255611448550981 +3491003,0.016770722944263 +3491004,0.0167613834073486 +3491005,0.0576185132364369 +3491006,0.0956563622079164 +3491007,0.0306556990902871 +3491008,0.029334085405214302 +3491009,0.0486169948818085 +3491010,0.0290495162063115 +3491013,0.0105405253322826 +3491014,0.0139787306025245 +3491015,0.0574872698405876 +3491016,0.057481107102254805 +3491017,0.1799991498025092 +3491018,0.0126356920607331 +3491019,0.0483105566179019 +3491020,0.0097037302330136 +3491021,0.017798552289605 +3491022,0.0098766655754852 +3491023,0.014633035898076 +3491024,0.0095449197120893 +3491025,0.062414917379079504 +3491026,0.0208350457315269 +3491027,0.0135418896634721 +3491028,0.0070763314830613 +3491029,0.0088992761448025 +3491030,0.0451927553099406 +3491031,0.045716846936552195 +3491032,0.0304328664103834 +3491033,0.0134735537607711 +3491034,0.0147254467010498 +3491035,0.0146118625832472 +3491036,0.0207219971090966 +3491037,0.02083838917315 +3491038,0.0078399718284776 +3491039,0.0898420050882426 +3491040,0.0088992761448025 +3491041,0.026697828434407496 +3491042,0.013571910560131 +3491043,0.0132385866914903 +3491044,0.0145674255446866 +3491045,0.0733401386786867 +3491046,0.02083838917315 +3491047,0.0208071282486941 +3491048,0.0070985864946746 +3491049,0.006982987280935 +3491050,0.0537200681798958 +3491051,0.0179079120191625 +3491052,0.0088992761448025 +3491053,0.0446323251954794 +3491054,0.040743638145122205 +3491055,0.0405990029791785 +3491056,0.0146051692642905 +3491057,0.1018923664788297 +3491058,0.02083838917315 +3491059,0.0623368355633691 +3491060,0.035127604577545296 +3491061,0.006982987280935 +3491062,0.0211175071933295 +3491063,0.0350413145936889 +3491064,0.0178141095254674 +3491065,0.08945938024361749 +3491066,0.026697828434407496 +3491067,0.0088992761448025 +3491068,0.0094766306673832 +3491069,0.0089378543490754 +3491070,0.0120091684559209 +3491071,0.0272294706864884 +3491072,0.1453614280834916 +3491073,0.0624977154037015 +3491074,0.006982987280935 +3491075,0.0629395789793952 +3491076,0.0535665684234993 +3491077,0.0179068060148673 +3491078,0.0841296391751301 +3491079,0.0359865612112744 +3491080,0.0271910162351101 +3491081,0.008951598637487 +3491082,0.01997609548997 +3491083,0.0208089378080994 +3491084,0.02083838917315 +3491085,0.02083838917315 +3491086,0.0214492358561772 +3491087,0.0210756607936697 +3491088,0.0220601566031551 +3491089,0.037573870859935896 +3491090,0.0177472745871492 +3491091,0.0179807419196492 +3491092,0.0267966126735703 +3491093,0.0091459835702928 +3491094,0.06251516751945 +3491095,0.1041244699422206 +3491096,0.0208068672294119 +3491097,0.0069320675614305 +3491098,0.0284539394159049 +3491099,0.008758118566486 +3491100,0.0168425754330401 +3491101,0.0452123908363424 +3491102,0.0796729677728169 +3491103,0.1041310052479053 +3491104,0.1041926581051898 +3491105,0.0126954622820591 +3491106,0.0305371765560591 +3491107,0.0225199587042401 +3491108,0.013478723117796701 +3491109,0.032253882103484496 +3491110,0.0486704596864628 +3491111,0.0729081794499901 +3491112,0.0089638112112879 +3491113,0.1256077840499323 +3491114,0.0893796185677894 +3491115,0.1449627388958132 +3491116,0.1040765638802332 +3491117,0.0041987714472392 +3491118,0.020533812676558898 +3491119,0.0392452332687983 +3491120,0.0197198714988632 +3491121,0.0133669693454115 +3491122,0.0053077775304298 +3491123,0.0157756720943419 +3491124,0.0457628141655498 +3491125,0.0270650214696583 +3491126,0.1050152763481047 +3491127,0.0090815871684917 +3491128,0.0637518206394317 +3491129,0.017741332193986 +3491130,0.0179361552000045 +3491131,0.0348639592635075 +3491132,0.0530824645269803 +3491133,0.0041002063080668 +3491134,0.0041011683846992 +3491135,0.0065564145334064 +3491136,0.0721231938568055 +3491137,0.0401897020904637 +3491138,0.048156844549127206 +3491139,0.0976224869136742 +3491140,0.0126447011857554 +3491141,0.1040477305427045 +3491142,0.0089863189818651 +3491143,0.0094502599344666 +3491144,0.0527587327866502 +3491145,0.0179361552000045 +3491146,0.0165081446116077 +3491147,0.0041017239854834 +3491148,0.0065564145334064 +3491149,0.0044579454697668 +3491150,0.0044554647034001 +3491151,0.0162071101153293 +3491152,0.0162093179993377 +3491153,0.016312064602971 +3491154,0.049720895522824604 +3491155,0.0767680559576146 +3491156,0.1290948266790371 +3491157,0.0330308788127346 +3491158,0.0677222154474404 +3491159,0.0083773565949284 +3491160,0.0123162890222278 +3491161,0.0262256581336256 +3491162,0.0065564145334064 +3491163,0.0134735758621228 +3491164,0.013617189866043 +3491165,0.048469678397673605 +3491166,0.0159574006409509 +3491167,0.048933699069878295 +3491168,0.048959254186553 +3491169,0.07693933930659459 +3491170,0.0128234280273318 +3491171,0.06554733328351381 +3491172,0.0160437539612708 +3491173,0.031364853645263396 +3491174,0.0314934643362019 +3491175,0.0041716538085704 +3491176,0.0197521305754468 +3491177,0.0067221192724349 +3491178,0.0065564145334064 +3491179,0.0196692436002192 +3491180,0.0045477455324883 +3491181,0.0646081092422571 +3491182,0.048623460465884796 +3491183,0.11418060744106051 +3491184,0.1470997553951778 +3491185,0.0128783920253913 +3491186,0.0131404464130176 +3491187,0.0512937121093272 +3491188,0.0771243826528697 +3491189,0.1639377134722701 +3491190,0.049041699818283 +3491191,0.0105156735622209 +3491192,0.0312749513411981 +3491193,0.0065564145334064 +3491194,0.0065564145334064 +3491195,0.0132302328482737 +3491196,0.1454672086723524 +3491197,0.1138792168909246 +3491198,0.1305190494934402 +3491199,0.0646287171034838 +3491200,0.0518712267779675 +3491201,0.0818609551723878 +3491202,0.0327898152172564 +3491203,0.0107492421562161 +3491204,0.052297878561852196 +3491205,0.0212814486352747 +3491206,0.0065564145334064 +3491207,0.0262205642531363 +3491208,0.013143741295405801 +3491209,0.007124413952541 +3491210,0.0053171260711507 +3491211,0.0692481465597877 +3491212,0.0327501030912015 +3491213,0.1143616589300705 +3491214,0.0491570824727606 +3491215,0.0163949076086282 +3491216,0.0163949076086282 +3491217,0.0522300096776488 +3491218,0.051998777279384595 +3491219,0.013611533150106499 +3491220,0.0458949017338448 +3491221,0.0337366882450263 +3491222,0.0262256581336256 +3491223,0.006918949015456 +3491224,0.0070315705723374 +3491225,0.0506450637808101 +3491226,0.0349008884690592 +3491227,0.0235600750893354 +3491228,0.0470576548707491 +3491229,0.0648675762650146 +3491230,0.032312139623567 +3491231,0.0491847228258846 +3491232,0.0163898842330782 +3491233,0.021016621939937502 +3491234,0.0207583189652042 +3491235,0.0722980658958591 +3491236,0.0065560863346378 +3491237,0.0154762098446394 +3491238,0.0065447814410811 +3491239,0.0071646055029537 +3491240,0.0069284563680255 +3491241,0.0051683824849432 +3491242,0.0085010805429627 +3491243,0.0117021650075912 +3491244,0.0117391615930167 +3491245,0.0704164357766732 +3491246,0.117800375446677 +3491247,0.0549505508494818 +3491248,0.0106989443302154 +3491249,0.0163949076086282 +3491250,0.0163949076086282 +3491251,0.010401589676334 +3491252,0.033215852095158496 +3491253,0.0065564145334064 +3491254,0.0065517865109946 +3491255,0.0208599612181817 +3491256,0.0138630615547298 +3491257,0.0214817442609893 +3491258,0.013871741844045701 +3491259,0.0090877653331717 +3491260,0.0082059906687301 +3491261,0.0273803252968867 +3491262,0.0276671793110041 +3491263,0.0117021650075912 +3491264,0.0235606242756306 +3491265,0.0942403003573416 +3491266,0.0704619746750848 +3491267,0.0235600750893354 +3491268,0.0232461270435678 +3491269,0.0759154906001703 +3491270,0.0535834018533849 +3491271,0.0489135554357539 +3491272,0.0163949076086282 +3491273,0.0983694456517692 +3491274,0.1142260001770944 +3491275,0.0328667578784863 +3491276,0.0261484348048016 +3491277,0.0069315307773649 +3491278,0.0075926375154703 +3491279,0.0101113484682798 +3491280,0.0097583906689802 +3491281,0.0097665706921166 +3491282,0.0084743987352758 +3491283,0.0337371719906249 +3491284,0.0274287696066512 +3491285,0.0277425661876733 +3491286,0.0355439079051878 +3491287,0.035660082436061204 +3491288,0.0235600750893354 +3491289,0.047108994199551404 +3491290,0.0771762803706226 +3491291,0.0228965401581064 +3491292,0.0654097754802256 +3491293,0.0163449072206854 +3491294,0.0157440783421349 +3491295,0.0196740226735264 +3491296,0.0458664213413606 +3491297,0.09735829367875909 +3491298,0.0208709479532085 +3491299,0.0118002008518843 +3491300,0.005614402608971 +3491301,0.0098116303124233 +3491302,0.028945761777713998 +3491303,0.0306375990354525 +3491304,0.010479853908247 +3491305,0.0084717076637738 +3491306,0.0421451069912546 +3491307,0.0089549959813179 +3491308,0.0091433037384137 +3491309,0.0276573483774012 +3491310,0.0240790711515066 +3491311,0.0942403003573416 +3491312,0.0235600750893354 +3491313,0.018240609051088 +3491314,0.0153493332387373 +3491315,0.0066986212955809 +3491316,0.0196692436002192 +3491317,0.0065564145334064 +3491318,0.0237807189406629 +3491319,0.01185334220111 +3491320,0.0118501440365667 +3491321,0.011857833713293 +3491322,0.0187878857062622 +3491323,0.0273496881057992 +3491324,0.0196933706500808 +3491325,0.0097919865433301 +3491326,0.0145545925956 +3491327,0.0148896391977987 +3491328,0.0338206371032803 +3491329,0.008425205014646 +3491330,0.0087184852587521 +3491331,0.0106781793581072 +3491332,0.0706802252680062 +3491333,0.0235600750893354 +3491334,0.2591608259826894 +3491335,0.0940904876248357 +3491336,0.017328195951945 +3491337,0.017483844806116 +3491338,0.0203221866668464 +3491339,0.0124354722528633 +3491340,0.0065564145334064 +3491341,0.0196692436002192 +3491342,0.011857833713293 +3491343,0.059289168566464996 +3491344,0.005427943824555 +3491345,0.0054334972981654 +3491346,0.0436969530219755 +3491347,0.0438016552747499 +3491348,0.0149758886500526 +3491349,0.044949573464691604 +3491350,0.0252797145639366 +3491351,0.025275615043938 +3491352,0.0597328075541402 +3491353,0.0086746897519037 +3491354,0.0126514878367241 +3491355,0.025553016888377397 +3491356,0.07048437206123939 +3491357,0.067093282781324 +3491358,0.0225537752587703 +3491359,0.0235600750893354 +3491360,0.3297283703728781 +3491361,0.0706802252680062 +3491362,0.0115865332868245 +3491363,0.011636980265310501 +3491364,0.0115820916133407 +3491365,0.0116084354644305 +3491366,0.004525384346354 +3491367,0.0047263776794537 +3491368,0.0053552348886991 +3491369,0.0262250845436366 +3491370,0.0065564145334064 +3491371,0.019669264547373798 +3491372,0.013146660750086199 +3491373,0.0237133275795177 +3491374,0.011857833713293 +3491375,0.011857833713293 +3491376,0.0237292420610693 +3491377,0.0054282494820654 +3491378,0.0316271261535714 +3491379,0.0145556804509472 +3491380,0.0145911031042012 +3491381,0.014972261227575 +3491382,0.0149831911548972 +3491383,0.0149831911548972 +3491384,0.0146360496281866 +3491385,0.008477966347433 +3491386,0.0337010198564046 +3491387,0.017063013984609098 +3491388,0.0256084517756929 +3491389,0.0126157817709902 +3491390,0.0583393632186495 +3491391,0.0126818830471457 +3491392,0.0705242347932363 +3491393,0.2591608259826894 +3491394,0.0053555302075346 +3491395,0.0294505713865733 +3491396,0.0163557627238332 +3491397,0.0054590348715763 +3491398,0.0065564145334064 +3491399,0.032785303465095 +3491400,0.0118549438736203 +3491401,0.011857833713293 +3491402,0.023830830812899502 +3491403,0.0119437515705791 +3491404,0.0099872069814104 +3491405,0.034435287829496605 +3491406,0.064831194457752 +3491407,0.0129683753475546 +3491408,0.014571606568862 +3491409,0.0145948602958185 +3491410,0.0145693482828924 +3491411,0.0150360707448085 +3491412,0.0149831911548972 +3491413,0.0299905081966929 +3491414,0.0301070805644739 +3491415,0.0149831911548972 +3491416,0.0746861968692208 +3491417,0.017094910105631897 +3491418,0.0591274198733608 +3491419,0.0085403527819852 +3491420,0.0096745162236686 +3491421,0.0241186031109096 +3491422,0.12147290517223519 +3491423,0.1645183058924093 +3491424,0.0471201501786708 +3491425,0.0250697856049769 +3491426,0.0052073112853295 +3491427,0.0163795936080333 +3491428,0.0054519209079444 +3491429,0.0196692436002192 +3491430,0.0196692436002192 +3491431,0.0066198062505018 +3491432,0.0118575721108881 +3491433,0.011857833713293 +3491434,0.011857833713293 +3491435,0.011857833713293 +3491436,0.0116718336939811 +3491437,0.0350155010819433 +3491438,0.0389051260426638 +3491439,0.0129230097796852 +3491440,0.0282362490763692 +3491441,0.0289746545848336 +3491442,0.0142930380510399 +3491443,0.014367846218396 +3491444,0.0170469018411993 +3491445,0.0084317769937505 +3491446,0.0087324308570195 +3491447,0.0334488532084288 +3491448,0.0118120616788879 +3491449,0.0743243759437156 +3491450,0.025054870173335 +3491451,0.0942403003573416 +3491452,0.0234974719333162 +3491453,0.0235600750893354 +3491454,0.0701999487477526 +3491455,0.0104429339990019 +3491456,0.0529053084060926 +3491457,0.005620684842673 +3491458,0.0165698422205812 +3491459,0.0219996750649047 +3491460,0.0055909034170436 +3491461,0.0115035167429816 +3491462,0.0054616557727924 +3491463,0.0131011336006123 +3491464,0.0065361769438038 +3491465,0.0196692436002192 +3491466,0.0065564145334064 +3491467,0.011829404447394 +3491468,0.011857833713293 +3491469,0.011857833713293 +3491470,0.0831969103077608 +3491471,0.0118943479025027 +3491472,0.0117070434863694 +3491473,0.0583909310324758 +3491474,0.0129683753475546 +3491475,0.0388464845387637 +3491476,0.0112321597080716 +3491477,0.0613623711047504 +3491478,0.0117395719313656 +3491479,0.033515755242168904 +3491480,0.0225695494486763 +3491481,0.0249135660051719 +3491482,0.075164610520005 +3491483,0.0942403003573416 +3491484,0.020881632084302 +3491485,0.02325063788043 +3491486,0.0303142452270811 +3491487,0.0312255148451896 +3491488,0.0520525569447985 +3491489,0.0104429339990019 +3491490,0.0055230092257261 +3491491,0.011042326961173101 +3491492,0.0070556501518383 +3491493,0.0066110010160812 +3491494,0.0065564145334064 +3491495,0.0131128290668128 +3491496,0.0355528434589161 +3491497,0.011857833713293 +3491498,0.011857833713293 +3491499,0.0118901744209307 +3491500,0.0350272953917053 +3491501,0.0116828753097249 +3491502,0.0129363410742496 +3491503,0.0105617718240745 +3491504,0.0106428899359995 +3491505,0.0499904034945257 +3491506,0.020105035796480097 +3491507,0.0229478260958965 +3491508,0.0344393111084931 +3491509,0.07357160294725651 +3491510,0.075164610520005 +3491511,0.0235600750893354 +3491512,0.0209959191913261 +3491513,0.0840918062470403 +3491514,0.037329335276020295 +3491515,0.0104429339990019 +3491516,0.0115939244086124 +3491517,0.027629026107379398 +3491518,0.0276142471790726 +3491519,0.0071855201973432 +3491520,0.0196825547320257 +3491521,0.0329350046864924 +3491522,0.0118526456250862 +3491523,0.0118571686839454 +3491524,0.035593055139923696 +3491525,0.0593391119260015 +3491526,0.0233573279551142 +3491527,0.0117774312243032 +3491528,0.023348360790355398 +3491529,0.0116718336939811 +3491530,0.0105169825684779 +3491531,0.01071528952126 +3491532,0.0299732638573329 +3491533,0.0200087654984007 +3491534,0.02234330296503 +3491535,0.0235600750893354 +3491536,0.0187151737033116 +3491537,0.0232758835145569 +3491538,0.0520460775104978 +3491539,0.0106446462589301 +3491540,0.0104429339990019 +3491541,0.0314769617845106 +3491542,0.0166699014275095 +3491543,0.0055230092257261 +3491544,0.0055417010498171 +3491545,0.0210988091837211 +3491546,0.0196692436002192 +3491547,0.0129769535708147 +3491548,0.0065450518356923 +3491549,0.0350155010819433 +3491550,0.0350155010819433 +3491551,0.0233437863805489 +3491552,0.0752946596350833 +3491553,0.0318590592237188 +3491554,0.0107125028439194 +3491555,0.0101354864923564 +3491556,0.1267755985841371 +3491557,0.0183624499878632 +3491558,0.0234936350797036 +3491559,0.0706685676106948 +3491560,0.0104429339990019 +3491561,0.0104429339990019 +3491562,0.0522146699950095 +3491563,0.010481217598997 +3491564,0.016685587190364698 +3491565,0.0110634904648086 +3491566,0.0055554450915729 +3491567,0.007208829176078 +3491568,0.0265275195736987 +3491569,0.0065865664497527 +3491570,0.0120868421194388 +3491571,0.0350155010819433 +3491572,0.0350161096533424 +3491573,0.021396665436938002 +3491574,0.0322424412671554 +3491575,0.05427216682169429 +3491576,0.0181099474430084 +3491577,0.0181099474430084 +3491578,0.0182948017645373 +3491579,0.0102850899281695 +3491580,0.0104215230351296 +3491581,0.0104429339990019 +3491582,0.005600366619075 +3491583,0.0112269121211381 +3491584,0.0579554860170666 +3491585,0.0329927640249601 +3491586,0.0117379366700049 +3491587,0.0116718336939811 +3491588,0.0350172775928455 +3491589,0.034880242466407405 +3491590,0.0170981117631982 +3491591,0.0116158114193629 +3491592,0.0188580868106524 +3491593,0.0181099474430084 +3491594,0.017719940471674 +3491595,0.016649893879017 +3491596,0.010197810088584 +3491597,0.0306547375357082 +3491598,0.10025331083042291 +3491599,0.0060459258359713 +3491600,0.0176196749771403 +3491601,0.0543620233050468 +3491602,0.0111572830978099 +3491603,0.023707544699356597 +3491604,0.0469943848652681 +3491605,0.1054270658476352 +3491606,0.0116758473479399 +3491607,0.04779577534178871 +3491608,0.0160422597520536 +3491609,0.0381451676275064 +3491610,0.057404972599489804 +3491611,0.0103106794216675 +3491612,0.0105332064657358 +3491613,0.0213763733158689 +3491614,0.0260313334884624 +3491615,0.009738538931829 +3491616,0.0096580239602915 +3491617,0.0207429799377253 +3491618,0.08838457238220519 +3491619,0.0248827383907227 +3491620,0.0170776365036676 +3491621,0.0192100908607244 +3491622,0.0192100908607244 +3491623,0.0161152048181606 +3491624,0.0160072464495897 +3491625,0.0320514291052867 +3491626,0.0191747769713401 +3491627,0.0575243309140203 +3491628,0.0116244935057221 +3491629,0.0106769169551293 +3491630,0.0357892617287189 +3491631,0.0260407347232103 +3491632,0.0779829633561218 +3491633,0.0260407347232103 +3491634,0.0096923832159368 +3491635,0.0289744048718011 +3491636,0.014425831127456 +3491637,0.038403265506287504 +3491638,0.0319721132823647 +3491639,0.0312714204077613 +3491640,0.0251328884026557 +3491641,0.0258490544536008 +3491642,0.0124841587148806 +3491643,0.0192100908607244 +3491644,0.0187598972832435 +3491645,0.0191257335357539 +3491646,0.0160072464495897 +3491647,0.0160365070947223 +3491648,0.0191747769713401 +3491649,0.0191564341913364 +3491650,0.0380122927761732 +3491651,0.0082977649876518 +3491652,0.0418107567009879 +3491653,0.085672638137996 +3491654,0.1298158319939855 +3491655,0.0097019681838789 +3491656,0.0387175560977201 +3491657,0.0256729630667326 +3491658,0.094782066097395 +3491659,0.09617625234594951 +3491660,0.0374302976084325 +3491661,0.0362599095300717 +3491662,0.019060660701348 +3491663,0.0192100908607244 +3491664,0.0176739276276161 +3491665,0.0176615091277042 +3491666,0.0800934828839617 +3491667,0.048021757484450006 +3491668,0.0320144928991794 +3491669,0.032303418796127206 +3491670,0.0191747769713401 +3491671,0.0575243257065885 +3491672,0.0189878300831177 +3491673,0.0082354927435517 +3491674,0.0087458810151857 +3491675,0.0098216946388084 +3491676,0.016548408552466 +3491677,0.0781222041696309 +3491678,0.0258035335718772 +3491679,0.0130949411172034 +3491680,0.0124918166568105 +3491681,0.1603910513222215 +3491682,0.22357197977190513 +3491683,0.031880768463691 +3491684,0.037457723949926996 +3491685,0.0374891774014051 +3491686,0.0383005419290806 +3491687,0.0190973415083923 +3491688,0.016579902058971 +3491689,0.0098322674360779 +3491690,0.0180168242897387 +3491691,0.0159405254572297 +3491692,0.047843713088753 +3491693,0.0480282533481502 +3491694,0.0574904133906 +3491695,0.0574889779999693 +3491696,0.0191747769713401 +3491697,0.0190480672021317 +3491698,0.0249344718490062 +3491699,0.0379579658805218 +3491700,0.0260407347232103 +3491701,0.0260407347232103 +3491702,0.051632079377385495 +3491703,0.0253593108059332 +3491704,0.0130593651558198 +3491705,0.0393578202536788 +3491706,0.18602797887995842 +3491707,0.0641564205288886 +3491708,0.0121797290156212 +3491709,0.0115223764329787 +3491710,0.0139014559728682 +3491711,0.0152769064755819 +3491712,0.039333131363509896 +3491713,0.048004402329969505 +3491714,0.0800494602220841 +3491715,0.0191747769713401 +3491716,0.0191747769713401 +3491717,0.0575243309140203 +3491718,0.0191459889057921 +3491719,0.01089823856002 +3491720,0.0260407347232103 +3491721,0.0781222041696309 +3491722,0.0256986899528147 +3491723,0.0260407347232103 +3491724,0.0121960646326277 +3491725,0.0309094160067854 +3491726,0.0577655550272363 +3491727,0.0192125769375017 +3491728,0.0319884255153246 +3491729,0.056616759282800605 +3491730,0.0403444924144135 +3491731,0.027353712950066 +3491732,0.0156709332325339 +3491733,0.0133134372479412 +3491734,0.029181152612818402 +3491735,0.0159742636392048 +3491736,0.047985741561198 +3491737,0.015687707096064 +3491738,0.0763211643561959 +3491739,0.0191747769713401 +3491740,0.0191747769713401 +3491741,0.0191747769713401 +3491742,0.056399436189852895 +3491743,0.0516704633570092 +3491744,0.0258790393447299 +3491745,0.0260407347232103 +3491746,0.0520814694464206 +3491747,0.025246823438533 +3491748,0.0518615194750175 +3491749,0.0243303565210055 +3491750,0.0122063807565325 +3491751,0.0714413444991808 +3491752,0.0101773971691727 +3491753,0.0115219754344145 +3491754,0.0115018367803715 +3491755,0.064648048995341 +3491756,0.0213604652842654 +3491757,0.0322043360174629 +3491758,0.0268540744870524 +3491759,0.0156481669112564 +3491760,0.0156716565637887 +3491761,0.0132613247260451 +3491762,0.0126072812712666 +3491763,0.0098196219726415 +3491764,0.009727529633662 +3491765,0.0161125889043307 +3491766,0.057349681803720104 +3491767,0.019164553189415 +3491768,0.057177997325232 +3491769,0.0382087647986284 +3491770,0.0573998272503282 +3491771,0.0191747769713401 +3491772,0.129998621784145 +3491773,0.0260407347232103 +3491774,0.0611451570330406 +3491775,0.0364977957031916 +3491776,0.0102600796461147 +3491777,0.0101890143381944 +3491778,0.0117089217548954 +3491779,0.0114965578541159 +3491780,0.0648146596902925 +3491781,0.0215393435209989 +3491782,0.0156574239148121 +3491783,0.0470179195062903 +3491784,0.0400362087862673 +3491785,0.0407928233307952 +3491786,0.0338623518510109 +3491787,0.0112939486280083 +3491788,0.0097170853987336 +3491789,0.0178963847541327 +3491790,0.0190576694913074 +3491791,0.1137199295567375 +3491792,0.0261619795544504 +3491793,0.0259882103022342 +3491794,0.077967572895019 +3491795,0.0488014370203016 +3491796,0.0122003592550754 +3491797,0.0102260602912529 +3491798,0.0574961728091095 +3491799,0.0114990334205444 +3491800,0.0644407800654526 +3491801,0.0214837400690397 +3491802,0.0156400426263118 +3491803,0.0783275432492886 +3491804,0.0146084780002347 +3491805,0.0291500333085517 +3491806,0.022557396683714502 +3491807,0.0112939486280083 +3491808,0.045635737759687 +3491809,0.0393946644889897 +3491810,0.0352920848288081 +3491811,0.0514561216483425 +3491812,0.0258133686748706 +3491813,0.0256638095292089 +3491814,0.024377325514546598 +3491815,0.0122003592550754 +3491816,0.0244318140453808 +3491817,0.0460000108483562 +3491818,0.059824181823512596 +3491819,0.0257742243749918 +3491820,0.0208152711216947 +3491821,0.0156877070164308 +3491822,0.0470443772125228 +3491823,0.0145418833205646 +3491824,0.0438347269085607 +3491825,0.0112951534509199 +3491826,0.0339060151411352 +3491827,0.0112939486280083 +3491828,0.0092377529322139 +3491829,0.025428098483035497 +3491830,0.2254668485550257 +3491831,0.0367213669911155 +3491832,0.0121763120895942 +3491833,0.0128445480171718 +3491834,0.0658990909990749 +3491835,0.0132456692909818 +3491836,0.0121140844523578 +3491837,0.0111220406095464 +3491838,0.0122389370602763 +3491839,0.0146067487075924 +3491840,0.0146460173325487 +3491841,0.0146629907169195 +3491842,0.0565572807817011 +3491843,0.0359289345394229 +3491844,0.0096721941703002 +3491845,0.0168973356485366 +3491846,0.0378305204212665 +3491847,0.0378305204212665 +3491848,0.0242458433602148 +3491849,0.0121348396582226 +3491850,0.0388788344236397 +3491851,0.0388525682956947 +3491852,0.0658530004740803 +3491853,0.0131374005791602 +3491854,0.0131997490879766 +3491855,0.0121105428645456 +3491856,0.0121039018702962 +3491857,0.0108311951443275 +3491858,0.0110920152058984 +3491859,0.0122633438656352 +3491860,0.0437740123229612 +3491861,0.0437544596324588 +3491862,0.0113418920448767 +3491863,0.011352374713813 +3491864,0.0618509390100258 +3491865,0.025151157827911698 +3491866,0.0092812536276828 +3491867,0.0172811546273812 +3491868,0.025613684521742598 +3491869,0.0756511725966625 +3491870,0.11344526387695031 +3491871,0.0378305204212665 +3491872,0.0377891005416793 +3491873,0.0848686414151175 +3491874,0.0121352214829702 +3491875,0.0129546179351642 +3491876,0.0648371863558125 +3491877,0.0385682576836141 +3491878,0.0113139432365823 +3491879,0.0121114285742344 +3491880,0.0108036580303755 +3491881,0.0324073996677223 +3491882,0.0110722324080413 +3491883,0.0110540165315837 +3491884,0.015732880531593 +3491885,0.0159946421566023 +3491886,0.0123884260319835 +3491887,0.0631197676078671 +3491888,0.0126863055455385 +3491889,0.0096349082829245 +3491890,0.0378305204212665 +3491891,0.07283559224398861 +3491892,0.0378305204212665 +3491893,0.1134915612637995 +3491894,0.036373578063794904 +3491895,0.0129679599776864 +3491896,0.038867626042099895 +3491897,0.098576788836029 +3491898,0.0109656626754426 +3491899,0.0107055924955128 +3491900,0.0107042538247142 +3491901,0.0108016480888567 +3491902,0.0107645398925411 +3491903,0.055269268722545395 +3491904,0.0110669538895268 +3491905,0.0159778994271004 +3491906,0.04816273011302789 +3491907,0.0324270217246927 +3491908,0.0161527541914691 +3491909,0.0640755246437945 +3491910,0.0126286914538537 +3491911,0.1891526021063325 +3491912,0.11330217484002619 +3491913,0.0373238355199501 +3491914,0.0129679599776864 +3491915,0.0129630326635784 +3491916,0.0129654465474022 +3491917,0.0325456352672763 +3491918,0.021843245710937598 +3491919,0.0321083412418861 +3491920,0.0321180006755584 +3491921,0.0106488629248467 +3491922,0.010601248744011 +3491923,0.0110551859200992 +3491924,0.0330909072526136 +3491925,0.0110643440098907 +3491926,0.0159346055140032 +3491927,0.0320104227209504 +3491928,0.0324364284385332 +3491929,0.0162208084412252 +3491930,0.0126992621162654 +3491931,0.0378601439034557 +3491932,0.0378305204212665 +3491933,0.0378305204212665 +3491934,0.0378196204662954 +3491935,0.0129679599776864 +3491936,0.0129679599776864 +3491937,0.012960128684402 +3491938,0.0065635143158507 +3491939,0.0405017939957314 +3491940,0.0531213511604021 +3491941,0.032116166384545 +3491942,0.0110475584204917 +3491943,0.0216613536657762 +3491944,0.043271312592921995 +3491945,0.0110676087159818 +3491946,0.0487947046716259 +3491947,0.0810740192084558 +3491948,0.0361119670496854 +3491949,0.1131442882015116 +3491950,0.037457052675091 +3491951,0.1133908298308275 +3491952,0.038832660130219604 +3491953,0.0129636990991746 +3491954,0.0129679599776864 +3491955,0.0389029102015935 +3491956,0.0127850687131284 +3491957,0.019605959523636002 +3491958,0.0644666823883844 +3491959,0.016127398237586 +3491960,0.022859958315416498 +3491961,0.0082262139093541 +3491962,0.0106284798948808 +3491963,0.021431173040306 +3491964,0.0163654562822858 +3491965,0.0162417704888116 +3491966,0.0101355373303533 +3491967,0.0263476851937337 +3491968,0.0370400197218525 +3491969,0.0742181928450302 +3491970,0.0375392973157639 +3491971,0.0129615736267152 +3491972,0.0129700267323879 +3491973,0.025986554993255598 +3491974,0.0129678720272235 +3491975,0.0192275607116198 +3491976,0.0319643492278431 +3491977,0.0080518543259083 +3491978,0.0238855173647862 +3491979,0.024191097356379 +3491980,0.024191097356379 +3491981,0.0227185287089277 +3491982,0.0075712842273137 +3491983,0.007869548164308 +3491984,0.0080487044142749 +3491985,0.0106245058461242 +3491986,0.0281943125790984 +3491987,0.0103276041892056 +3491988,0.0287721846252679 +3491989,0.0267761337973526 +3491990,0.0378181178778438 +3491991,0.0129679599776864 +3491992,0.0319139411755483 +3491993,0.025128634755833802 +3491994,0.0255654938888817 +3491995,0.022719499821795698 +3491996,0.0075205410500625 +3491997,0.0078681949941456 +3491998,0.023608644492924 +3491999,0.03934774082154 +3492000,0.0157944595586468 +3492001,0.0094014723274594 +3492002,0.0099510765098729 +3492003,0.1317820596771949 +3492004,0.14337854823857749 +3492005,0.1165027778256373 +3492006,0.022236798767872802 +3492007,0.0628380597402336 +3492008,0.015739096328616 +3492009,0.031478192657232 +3492010,0.031478192657232 +3492011,0.0537595687763871 +3492012,0.0078671091293137 +3492013,0.0078637521790762 +3492014,0.0095740401501412 +3492015,0.0532257139745679 +3492016,0.0108996272711757 +3492017,0.0078210670522533 +3492018,0.0354956198646463 +3492019,0.0146749290502801 +3492020,0.0313378604230162 +3492021,0.1688928008079528 +3492022,0.05584567373598 +3492023,0.0092882534740461 +3492024,0.027065641046016 +3492025,0.0389972455593625 +3492026,0.0077055985306999 +3492027,0.0183747814528447 +3492028,0.0126924591616626 +3492029,0.0562976002693176 +3492030,0.0511194563025571 +3492031,0.0548473170934691 +3492032,0.0090095551463435 +3492033,0.0090519546135791 +3492034,0.0187300370158534 +3492035,0.0187412830980969 +3492036,0.0562858306595478 +3492037,0.0559653931602668 +3492038,0.0726497754931955 +3492039,0.1648309649683189 +3492040,0.0089959559982648 +3492041,0.0091438369443804 +3492042,0.1125288401897794 +3492043,0.1674805207419402 +3492044,0.0094392706603953 +3492045,0.0291410375114145 +3492046,0.0394271588509909 +3492047,0.0511230755467492 +3492048,0.0553347005314145 +3492049,0.0376993524645827 +3492050,0.0094239525317178 +3492051,0.0295168026753676 +3492052,0.0055873650754994 +3492053,0.527793653309345 +3492054,0.2102508285372595 +3492055,0.028249784489352 +3492056,0.028367718533639702 +3492057,0.0055873612873256 +3492058,0.0056056074980003 +3492059,0.005661635330095 +3492060,0.3020398477212358 +3492061,0.2070242219310955 +3492062,0.0527881531387516 +3492063,0.0094520328566432 +3492064,0.0095036836008249 +3492065,0.0055682001252765 +3492066,0.0167827305665819 +3492067,0.0478016361079569 +3492068,0.034341737627983 +3492069,0.0094249903037269 +3492070,0.011048259288046001 +3492071,0.0056053546205335 +3492072,0.0290087686673611 +3492073,0.0051753127744877 +3492074,0.23977696555788772 +3492075,0.13884635718575541 +3492076,0.003931737477232 +3492077,0.014992234811211199 +3492078,0.206050425767898 +3492079,0.1022892754890659 +3492080,0.0037377020344138 +3492081,0.0037377020344138 +3492082,0.0037701817962834 +3492083,0.137366950511932 +3492084,0.3429587367120626 +3492085,0.0340946758845358 +3492086,0.0041062663294043 +3492087,0.0037377020344138 +3492088,0.0074843533697247 +3492089,0.0151829915836177 +3492090,0.0286872170113852 +3492091,0.1695340005805867 +3492092,0.011213106103241399 +3492093,0.0126975737620593 +3492094,0.0336993645107208 +3492095,0.0077218751616968 +3492096,0.0139187452008818 +3492097,0.0075267200127811 +3492098,0.0665257346043304 +3492099,0.034341737627983 +3492100,0.0037677534410697 +3492101,0.033529851046403 +3492102,0.0185806110493699 +3492103,0.0254822298884391 +3492104,0.051131999881582194 +3492105,0.0240756543471465 +3492106,0.006667150883004 +3492107,0.010731822829889801 +3492108,0.0186572253441923 +3492109,0.0037377020344138 +3492110,0.3025643819282935 +3492111,0.0763704800254237 +3492112,0.0164459460171778 +3492113,0.002222383627668 +3492114,0.0037377020344138 +3492115,0.0149508081376552 +3492116,0.0074754040688276 +3492117,0.011213106103241399 +3492118,0.0168051556714215 +3492119,0.0222789681311696 +3492120,0.0026770099431813 +3492121,0.0066928200723541005 +3492122,0.0068196394192752 +3492123,0.0149508081376552 +3492124,0.0037377020344138 +3492125,0.0037377020344138 +3492126,0.0037377020344138 +3492127,0.0074754040688276 +3492128,0.0075062861085578 +3492129,0.0198029301993557 +3492130,0.0213724718195922 +3492131,0.0038921617677401 +3492132,0.011434646312440299 +3492133,0.0110676008258664 +3492134,0.0074682895758796004 +3492135,0.011829112658658901 +3492136,0.0037914517211906 +3492137,0.0079181669752617 +3492138,0.0638021549873629 +3492139,0.012260105726794599 +3492140,0.0212802366539524 +3492141,0.1489370325144904 +3492142,0.0036628752697377 +3492143,0.0223384593849588 +3492144,0.0646611251500355 +3492145,0.0065658225878746 +3492146,0.0055249328644388 +3492147,0.0078121989485942 +3492148,0.0211012108028352 +3492149,0.013149831444025 +3492150,0.0522048453738996 +3492151,0.0041816264965023 +3492152,0.0071239665442739 +3492153,0.0066834119366796 +3492154,0.0012345647562388 +3492155,0.013149831444025 +3492156,0.013149831444025 +3492157,0.001422895346778 +3492158,0.0062290043140225 +3492159,0.0012321680212749 +3492160,0.0101617411837266 +3492161,0.025382382825344 +3492162,0.0130263949813094 +3492163,0.0394763603980905 +3492164,0.039449494332075 +3492165,0.0028869501097957 +3492166,0.0123315078671468 +3492167,0.0011039020314016 +3492168,0.0049729489241723 +3492169,0.0657292333846945 +3492170,0.0659576738542759 +3492171,0.0393293723204189 +3492172,0.013149831444025 +3492173,0.0016135291597201 +3492174,0.0075897446049293 +3492175,0.025649647247895903 +3492176,0.013149831444025 +3492177,0.039425358160787 +3492178,0.013149831444025 +3492179,0.065749157220125 +3492180,0.013149831444025 +3492181,0.0525993257761 +3492182,0.0919252985260958 +3492183,0.07889898866415 +3492184,0.0392959539878765 +3492185,0.013149831444025 +3492186,0.013149831444025 +3492187,0.0392701001302651 +3492188,0.013149831444025 +3492189,0.039406031821470996 +3492190,0.0525993257761 +3492191,0.013149831444025 +3492192,0.013149831444025 +3492193,0.0645650867493918 +3492194,0.0517031111707614 +3492195,0.013149831444025 +3492196,0.0394334297334553 +3492197,0.02629966288805 +3492198,0.0127237403382905 +3492199,0.039434473221202804 +3492200,0.039449494332075 +3492201,0.065749157220125 +3492202,0.14391401902432668 +3492203,0.0391075984158282 +3492204,0.0130512465039443 +3492205,0.0238184015126727 +3492206,0.0337804333622932 +3492207,0.0195861680859696 +3492208,0.0062465374357998 +3492209,0.018610421102409 +3492210,0.0308605774880503 +3492211,0.0188641428704692 +3492212,0.0187745143556396 +3492213,0.0062012798152863 +3492214,0.0062041474180055 +3492215,0.0190037438623263 +3492216,0.0062838630865085 +3492217,0.0062012798152863 +3492218,0.018527760696274598 +3492219,0.0440740393564818 +3492220,0.0062892718998249 +3492221,0.012492101749538399 +3492222,0.0310139109184856 +3492223,0.0186038394458589 +3492224,0.029752149315197 +3492225,0.0069220445497152 +3492226,0.0062012253999254 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001060900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001060900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001060900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001061900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001061900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001061900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001062000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001062000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001062000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001062100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001062100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001062100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001062200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001062200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001062200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001062300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001062300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9c906eeb5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001062300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.07223539445061569 +3490292,0.110533613634725 +3490293,0.018036687746644 +3490316,0.036073375493288 +3490317,0.09018343873321999 +3490332,0.054110063239932 +3490333,0.0547560534748257 +3490334,0.1085143336495779 +3490335,0.018036687746644 +3490348,0.0179406121561531 +3490349,0.0157477438785042 +3490350,0.018036687746644 +3490351,0.054110063239932 +3490374,0.0313212022308686 +3490375,0.0885411232489974 +3490376,0.1029434261641704 +3490377,0.0356341535677748 +3490378,0.036073375493288 +3490379,0.1624234308291252 +3490396,0.0147716405415048 +3490397,0.0294180959463118 +3490398,0.0541065516948607 +3490399,0.036073375493288 +3490418,0.1081799057387568 +3490419,0.018036687746644 +3490437,0.0180368225219904 +3490438,0.0902554220536968 +3490439,0.0335514449570881 +3490440,0.0180366352859931 +3490457,0.0441315881177492 +3490458,0.0446262963559948 +3490459,0.036073375493288 +3490460,0.079334469873031 +3490476,0.035973854905720096 +3490477,0.0536825169838185 +3490478,0.0212353598326444 +3490479,0.0212353598326444 +3490499,0.0772885431166819 +3490500,0.0106176799163222 +3490517,0.0159441242335773 +3490518,0.0281623314273679 +3490519,0.0424707196652888 +3490520,0.053088399581611004 +3490544,0.0106176799163222 +3490545,0.0106277362059532 +3490546,0.0212353598326444 +3490547,0.0105840653288104 +3490573,0.0317577912284456 +3490574,0.0106176799163222 +3490575,0.0103203398977416 +3490576,0.0207337461713934 +3490597,0.029113447996354302 +3490598,0.0283125663003981 +3490599,0.010915221323902 +3490600,0.0344788864140693 +3490601,0.018669681195664603 +3490602,0.0187290341548138 +3490603,0.0170191482072156 +3490604,0.0169079092727395 +3490623,0.0093286400660872 +3490624,0.0186572801321744 +3490625,0.0135468554136949 +3490626,0.0485121733925433 +3490639,0.0093286400660872 +3490640,0.0373145602643488 +3490641,0.0189765532300372 +3490642,0.0402508076957997 +3490643,0.0674883147685585 +3490644,0.0161799825727939 +3490645,0.0161314926320849 +3490658,0.0186572801321744 +3490659,0.0093286400660872 +3490660,0.0945205684121487 +3490661,0.0405857827318913 +3490662,0.113277988563938 +3490663,0.0161799825727939 +3490664,0.0161026197370763 +3490665,0.048432480486817905 +3490681,0.0469659504398115 +3490682,0.0093286400660872 +3490683,0.0093286400660872 +3490684,0.0186572801321744 +3490685,0.01332157657922 +3490686,0.0135359575803755 +3490687,0.0162497206930818 +3490688,0.0162172066846352 +3490689,0.016157847689553 +3490690,0.0161799825727939 +3490707,0.0186572801321744 +3490708,0.0093286400660872 +3490709,0.0094662454745503 +3490710,0.0093286400660872 +3490725,0.0093058532418196 +3490726,0.0093286400660872 +3490727,0.027985920198261603 +3490728,0.037411576952657705 +3490736,0.0653294082626774 +3490737,0.0467969287583048 +3490738,0.11188235457610621 +3490739,0.049357880847133204 +3490747,0.3090640409532065 +3490748,0.0112056651035797 +3490757,0.033508258727842896 +3490758,0.0262827720028396 +3490771,0.0251272179803743 +3490772,0.0083750134140378 +3490773,0.0087503502377502 +3490774,0.0167463212391036 +3490787,0.0165804655224496 +3490788,0.0083481164594948 +3490789,0.0441171812810123 +3490790,0.0623092161528571 +3490805,0.0081184200274723 +3490806,0.0250853322082668 +3490807,0.016370579600334 +3490808,0.0376373322142439 +3490809,0.0089210392252422 +3490810,0.0090808163664019 +3490827,0.0074861431421732 +3490828,0.0076817089951804 +3490842,0.0223158484594758 +3490843,0.0074376873672008 +3490844,0.0075601744675913 +3490845,0.023090689790494702 +3490856,0.0074376873672008 +3490857,0.0076945058447922 +3490858,0.0074376873672008 +3490859,0.0225066710484868 +3490860,0.0076793245971202 +3490861,0.0384213151577398 +3490875,0.0074376873672008 +3490876,0.0074376873672008 +3490877,0.0233168823041021 +3490878,0.0078253404835846 +3490879,0.0153586491942404 +3490892,0.0223130621016024 +3490893,0.0223130621016024 +3490894,0.0076793245971202 +3490895,0.0082993150106529 +3490900,0.0074334921542302 +3490901,0.0071956925591344 +3490902,0.0225891249188414 +3490903,0.0223143304987459 +3490904,0.0289141790744481 +3490905,0.0240335056328932 +3490906,0.025008861149666002 +3490907,0.0765574400387544 +3490916,0.022331444787159 +3490917,0.0074664318274438 +3490918,0.0074292339079026 +3490919,0.0074396267668654 +3490920,0.0075485353624655 +3490921,0.0168567659722379 +3490922,0.0233906259924633 +3490923,0.1617036275383452 +3490924,0.0087851778646352 +3490925,0.051366063079217095 +3490926,0.1394201233645998 +3490935,0.0071043165679969 +3490936,0.0080445730191067 +3490937,0.02429904060387 +3490938,0.0233365924105379 +3490939,0.0247473590796602 +3490940,0.0245273265633012 +3490941,0.0158168119339934 +3490942,0.0155930128963628 +3490953,0.0073792888312893 +3490954,0.0074371925876944 +3490955,0.0073338611033698 +3490956,0.0097739258175838 +3490957,0.0178874552490058 +3490958,0.0176333693454246 +3490959,0.0245470181107521 +3490960,0.0245362502727951 +3490966,0.0208095484413204 +3490967,0.0069365161471068 +3490968,0.0130572222642447 +3490969,0.0146302688093558 +3490970,0.1243413313959647 +3490971,0.0175528761396795 +3490972,0.0677868853469213 +3490973,0.0169725194390347 +3490974,0.0081823393702507 +3490975,0.0246379423853869 +3490980,0.0208748994219695 +3490981,0.0069490271158042 +3490982,0.006954526221376 +3490983,0.0493686012356509 +3490984,0.0727974857580207 +3490985,0.1615301162716131 +3490986,0.0176384619044921 +3490987,0.053005101516570896 +3490988,0.0527196843785186 +3490989,0.0170074095354398 +3490990,0.05089810087438611 +3490991,0.0169304640409176 +3490992,0.0081823393702507 +3490993,0.0081823393702507 +3490994,0.0276161032822831 +3490995,0.0081823393702507 +3490999,0.0069461598300199 +3491000,0.0070288563335935 +3491001,0.012087981175771 +3491002,0.0211398404440074 +3491003,0.0147147162002899 +3491004,0.01473183791784 +3491005,0.0530336868039496 +3491006,0.088065653948227 +3491007,0.026076695979427002 +3491008,0.0249535760195116 +3491009,0.0410183471766978 +3491010,0.0244850871247593 +3491013,0.0094631478630951 +3491014,0.0128195802472603 +3491015,0.0529116187145654 +3491016,0.052904815698062796 +3491017,0.1655667899969791 +3491018,0.0115404226467838 +3491019,0.040806070098744304 +3491020,0.0081823393702507 +3491021,0.014859796501696 +3491022,0.0086756165891063 +3491023,0.01352145938421 +3491024,0.0081160855443608 +3491025,0.057553548300134094 +3491026,0.0192068965413579 +3491027,0.0125995102222925 +3491028,0.0067073510164545 +3491029,0.007429898250848 +3491030,0.037889320214638 +3491031,0.038705019782027804 +3491032,0.0270501363479827 +3491033,0.013259981257287 +3491034,0.0136196268722414 +3491035,0.0134978221973619 +3491036,0.0191211514568542 +3491037,0.0192100349813699 +3491038,0.0074416627637411 +3491039,0.0850836351429176 +3491040,0.007429898250848 +3491041,0.022289694752544 +3491042,0.0133853405714035 +3491043,0.0129670812561987 +3491044,0.0134517450594994 +3491045,0.067787281065867 +3491046,0.0192100349813699 +3491047,0.0191806908063593 +3491048,0.0067428137842782 +3491049,0.0066334065049886 +3491050,0.050913672564268195 +3491051,0.0169721578539439 +3491052,0.007429898250848 +3491053,0.0373294197338085 +3491054,0.04016365194457 +3491055,0.0399852906453549 +3491056,0.0134918440197435 +3491057,0.0941000069761197 +3491058,0.0192100349813699 +3491059,0.0574939206353327 +3491060,0.0333683093799712 +3491061,0.0066334065049886 +3491062,0.020053032770800498 +3491063,0.0332533891538663 +3491064,0.0168843725634356 +3491065,0.08478986807664429 +3491066,0.022289694752544 +3491067,0.007429898250848 +3491068,0.0081940523227201 +3491069,0.0074809581988135 +3491070,0.0113969669484782 +3491071,0.0268281223623932 +3491072,0.1339853856898929 +3491073,0.0576137228969457 +3491074,0.0066334065049886 +3491075,0.0597634262669368 +3491076,0.0507678966980476 +3491077,0.0169713132468765 +3491078,0.070965261062188 +3491079,0.030114841369354002 +3491080,0.0227942405793413 +3491081,0.0074854857121805 +3491082,0.0183242409271049 +3491083,0.0191797809686586 +3491084,0.0192100349813699 +3491085,0.0192100349813699 +3491086,0.0203736969455793 +3491087,0.0200201319871578 +3491088,0.0205288187032121 +3491089,0.035119387431728905 +3491090,0.0167491779794291 +3491091,0.0170277748609798 +3491092,0.0224254336406644 +3491093,0.0076959401597524 +3491094,0.057630104944109695 +3491095,0.09598714996929089 +3491096,0.0197849702225319 +3491097,0.0065929383909348 +3491098,0.028403924931304 +3491099,0.0080546047528867 +3491100,0.0159912078160372 +3491101,0.0388841451257506 +3491102,0.0730000084118364 +3491103,0.0959881132542684 +3491104,0.09605227427453569 +3491105,0.0128603542537795 +3491106,0.0316693593948408 +3491107,0.023615399984075 +3491108,0.0141394099243862 +3491109,0.0299459268995412 +3491110,0.0434889266924974 +3491111,0.0627760999923702 +3491112,0.0076984632760286 +3491113,0.1162658494264365 +3491114,0.0827002020555982 +3491115,0.1335395684399367 +3491116,0.0959149634255125 +3491117,0.0042826161103973 +3491118,0.0209047670598989 +3491119,0.0411066464885139 +3491120,0.020611772069377 +3491121,0.0140414354169717 +3491122,0.0054547659894097 +3491123,0.0148969252382658 +3491124,0.041145127782469704 +3491125,0.0232688068603105 +3491126,0.0973722038279086 +3491127,0.0078412085550886 +3491128,0.0550157946203103 +3491129,0.0163797812452326 +3491130,0.0166011676192283 +3491131,0.03228470087713 +3491132,0.0491409261536881 +3491133,0.0041745235212147 +3491134,0.0041758929606386 +3491135,0.0068681524135172 +3491136,0.0755163670962152 +3491137,0.0422154999161205 +3491138,0.0456016037038246 +3491139,0.0892333967490698 +3491140,0.0120954818592225 +3491141,0.0982726420616065 +3491142,0.0077230686817109 +3491143,0.0082778524105161 +3491144,0.0488315289376118 +3491145,0.0166011676192283 +3491146,0.0168157871118233 +3491147,0.0041766838140823 +3491148,0.0068681524135172 +3491149,0.0046837367117404 +3491150,0.0046802055384953 +3491151,0.0153434309609995 +3491152,0.0153297287109547 +3491153,0.0145603530108928 +3491154,0.0444871464784209 +3491155,0.0740489881707367 +3491156,0.1246040688273303 +3491157,0.0330622857835055 +3491158,0.0583669534786972 +3491159,0.0085430946841087 +3491160,0.0125458756995269 +3491161,0.0274726096540688 +3491162,0.0068681524135172 +3491163,0.0140918346360581 +3491164,0.0142482528614721 +3491165,0.0458927032372579 +3491166,0.0151168764162029 +3491167,0.043699739860301304 +3491168,0.043704747882314 +3491169,0.0742570884159946 +3491170,0.012376345694065 +3491171,0.0659403904654223 +3491172,0.0160050593767344 +3491173,0.0246114580712784 +3491174,0.0247486003044733 +3491175,0.0042545316358009 +3491176,0.0206327215034798 +3491177,0.0069246573384404 +3491178,0.0068681524135172 +3491179,0.0206044572405516 +3491180,0.0047713089706513 +3491181,0.0611709411053425 +3491182,0.0460228341008232 +3491183,0.10195126112863831 +3491184,0.1313219917512393 +3491185,0.0124489647107404 +3491186,0.0127133513827122 +3491187,0.04950538277626 +3491188,0.0744700618041291 +3491189,0.16493913672836752 +3491190,0.0492860307926352 +3491191,0.0082885798372985 +3491192,0.024557344115253198 +3491193,0.0068681524135172 +3491194,0.0068681524135172 +3491195,0.012567981764146 +3491196,0.13763800179425478 +3491197,0.1016731889427161 +3491198,0.1164856427972857 +3491199,0.0623947089346263 +3491200,0.0501247849478888 +3491201,0.0823175735624161 +3491202,0.0329904481768608 +3491203,0.0086146111441023 +3491204,0.0410587471798418 +3491205,0.021497856877591502 +3491206,0.0068681524135172 +3491207,0.0274656639034986 +3491208,0.0137456460808853 +3491209,0.0067708365410324 +3491210,0.0051821677859229 +3491211,0.0676940080694696 +3491212,0.0326146200193643 +3491213,0.11490445983326711 +3491214,0.049453795489657004 +3491215,0.0164952240884304 +3491216,0.0164952240884304 +3491217,0.0409901515962382 +3491218,0.040890488585628604 +3491219,0.014012660524552401 +3491220,0.0480770668946204 +3491221,0.0348697600500686 +3491222,0.0274726096540688 +3491223,0.0065742103073114 +3491224,0.0066787145308879 +3491225,0.049480077262295204 +3491226,0.0288814506547988 +3491227,0.0230323802679777 +3491228,0.0460077428054594 +3491229,0.0647104601359446 +3491230,0.0322123935744537 +3491231,0.0494856722652912 +3491232,0.0164845291896649 +3491233,0.0166496772847528 +3491234,0.0163433988380006 +3491235,0.0756454682755771 +3491236,0.0068677048987415 +3491237,0.0150459667392518 +3491238,0.0068499130533166 +3491239,0.0068043429238203 +3491240,0.0065817924603905 +3491241,0.0053002592335886 +3491242,0.0083749299454262 +3491243,0.0096573447808623 +3491244,0.0096986765715421 +3491245,0.0688436251998418 +3491246,0.1151619013398885 +3491247,0.054759907426962004 +3491248,0.0106721557676792 +3491249,0.0164952240884304 +3491250,0.0164952240884304 +3491251,0.0081782095848686 +3491252,0.0345777527259241 +3491253,0.0068681524135172 +3491254,0.0068629334324044 +3491255,0.0198149387093943 +3491256,0.0131684886291622 +3491257,0.0204625217539061 +3491258,0.0132011618023181 +3491259,0.008957031289129 +3491260,0.0082860663553027 +3491261,0.026807781666713902 +3491262,0.027066701069047003 +3491263,0.0096573447808623 +3491264,0.0194809213916005 +3491265,0.0921295210719108 +3491266,0.0688873904813248 +3491267,0.0230323802679777 +3491268,0.0227332276674617 +3491269,0.0756353655830203 +3491270,0.053433592864813 +3491271,0.0491861688020175 +3491272,0.0164952240884304 +3491273,0.0989713445305824 +3491274,0.1149245930863024 +3491275,0.0343295473987443 +3491276,0.0273700441648984 +3491277,0.0065842443145811 +3491278,0.0071637390121721 +3491279,0.0098337418461016 +3491280,0.009544920167207 +3491281,0.0095386533961478 +3491282,0.0085405485938342 +3491283,0.0340307524562193 +3491284,0.0268378743492284 +3491285,0.0271400948365795 +3491286,0.0294402127088952 +3491287,0.029564558388361098 +3491288,0.0230323802679777 +3491289,0.046054039052050105 +3491290,0.0770270964754314 +3491291,0.0228895339537537 +3491292,0.0658094791416391 +3491293,0.0164390359670368 +3491294,0.0158400155471379 +3491295,0.020606466784510002 +3491296,0.0480419792146701 +3491297,0.0920730352116333 +3491298,0.0198243735967457 +3491299,0.0111516059217429 +3491300,0.0052824630667677 +3491301,0.0095865655880599 +3491302,0.028377087332866202 +3491303,0.0298254566560876 +3491304,0.0101822839855662 +3491305,0.0085384435683682 +3491306,0.042525266358194 +3491307,0.0088332493918334 +3491308,0.0089461698374078 +3491309,0.027057780235971003 +3491310,0.0200161827968248 +3491311,0.0921295210719108 +3491312,0.0230323802679777 +3491313,0.0183263090531787 +3491314,0.0146038880634053 +3491315,0.006927948679742 +3491316,0.0206044572405516 +3491317,0.0068681524135172 +3491318,0.022474529477204998 +3491319,0.0112040956095606 +3491320,0.0111983085322802 +3491321,0.0112063474953174 +3491322,0.017732127012422202 +3491323,0.0258015565709419 +3491324,0.0192348685177442 +3491325,0.0095711997257415 +3491326,0.0137706034795619 +3491327,0.0141083635074397 +3491328,0.0341019959717265 +3491329,0.0085020679980516 +3491330,0.0087213842094561 +3491331,0.0102918989216116 +3491332,0.0690971408039331 +3491333,0.0230323802679777 +3491334,0.2533561829477547 +3491335,0.0919855431401521 +3491336,0.0174154000318221 +3491337,0.0175714866034625 +3491338,0.018996561084848 +3491339,0.0116627069929638 +3491340,0.0068681524135172 +3491341,0.0206044572405516 +3491342,0.0112063474953174 +3491343,0.056031737476587004 +3491344,0.005113798491249 +3491345,0.0051075464322189 +3491346,0.041340760933797 +3491347,0.0414425344840506 +3491348,0.0141923536501768 +3491349,0.042599134147167 +3491350,0.025508739185728498 +3491351,0.0255062039941548 +3491352,0.0602445293454868 +3491353,0.0087230545918426 +3491354,0.0119943229967882 +3491355,0.0242277175765825 +3491356,0.0689039315715682 +3491357,0.0655586212370099 +3491358,0.0220396652596198 +3491359,0.0230323802679777 +3491360,0.3223355243731999 +3491361,0.0690971408039331 +3491362,0.011655127263809701 +3491363,0.011723914140595901 +3491364,0.011649070828799499 +3491365,0.0116763213672266 +3491366,0.0042625385174093 +3491367,0.0046185501684177 +3491368,0.0053867347964524 +3491369,0.027471902994497 +3491370,0.0068681524135172 +3491371,0.020604466048583 +3491372,0.0137505306508202 +3491373,0.0224089306458522 +3491374,0.0112063474953174 +3491375,0.0112063474953174 +3491376,0.022425598311419298 +3491377,0.0050993184559047 +3491378,0.027020982687681 +3491379,0.0137707761675072 +3491380,0.0138046580490413 +3491381,0.0141886987942364 +3491382,0.014199711382389 +3491383,0.014199711382389 +3491384,0.013896287913403 +3491385,0.0085433392719852 +3491386,0.034008465449723 +3491387,0.0172099932626347 +3491388,0.0258267247701153 +3491389,0.011964951597434 +3491390,0.0549466056597111 +3491391,0.0120220400175262 +3491392,0.0689315548608881 +3491393,0.2533561829477547 +3491394,0.0053893331107783 +3491395,0.027845913375469197 +3491396,0.016522267833351898 +3491397,0.0055154326779478 +3491398,0.0068681524135172 +3491399,0.0343421205800655 +3491400,0.0112016983227106 +3491401,0.0112063474953174 +3491402,0.0225221631400767 +3491403,0.0112880164106055 +3491404,0.0093368219603005 +3491405,0.0322324932488957 +3491406,0.0521106296757384 +3491407,0.0104213254526257 +3491408,0.0137859146825487 +3491409,0.0138084436555391 +3491410,0.0137830461066292 +3491411,0.0142350379682762 +3491412,0.014199711382389 +3491413,0.0284157040570518 +3491414,0.028494372617459997 +3491415,0.014199711382389 +3491416,0.0707815723824424 +3491417,0.017195390255508702 +3491418,0.0596459162603244 +3491419,0.0086105323192239 +3491420,0.009271357496701 +3491421,0.0225520722316023 +3491422,0.1128803581110285 +3491423,0.1607998164066356 +3491424,0.0460647605359554 +3491425,0.0246559113545005 +3491426,0.0049414176044017 +3491427,0.0165457046246839 +3491428,0.0055074226111173 +3491429,0.0206044572405516 +3491430,0.0206044572405516 +3491431,0.0068948078828769 +3491432,0.0112059266295004 +3491433,0.0112063474953174 +3491434,0.0112063474953174 +3491435,0.0112063474953174 +3491436,0.0109071107581257 +3491437,0.0327213322743771 +3491438,0.0312639763578771 +3491439,0.0103961862296439 +3491440,0.026238712230676697 +3491441,0.0273054089643557 +3491442,0.0134334881722213 +3491443,0.0133338094404309 +3491444,0.017173980431110097 +3491445,0.0085082743763517 +3491446,0.0087686274145024 +3491447,0.0303911268595793 +3491448,0.0107406231623686 +3491449,0.0687429379332989 +3491450,0.0231773424893617 +3491451,0.0921295210719108 +3491452,0.022965944259705 +3491453,0.0230323802679777 +3491454,0.0686334973313851 +3491455,0.0103695150464773 +3491456,0.0525142952940301 +3491457,0.0053579488981586 +3491458,0.0157706022512373 +3491459,0.0209335473463806 +3491460,0.0056697282549877 +3491461,0.011753641287902999 +3491462,0.0055194159086933 +3491463,0.0137218960798536 +3491464,0.0068432198193707 +3491465,0.0206044572405516 +3491466,0.0068681524135172 +3491467,0.0111606105066878 +3491468,0.0112063474953174 +3491469,0.0112063474953174 +3491470,0.0786270080275596 +3491471,0.0112410559286929 +3491472,0.0108939184324455 +3491473,0.0545866533852604 +3491474,0.0104213254526257 +3491475,0.0312859480244322 +3491476,0.0090365715426969 +3491477,0.0480490552320688 +3491478,0.0113090776985137 +3491479,0.0304300869304443 +3491480,0.0204908642828509 +3491481,0.0230446394996661 +3491482,0.0695320274680851 +3491483,0.0921295210719108 +3491484,0.0201899507012361 +3491485,0.0227336595601723 +3491486,0.0300541578195588 +3491487,0.0310012030306321 +3491488,0.051679097775436306 +3491489,0.0103695150464773 +3491490,0.005256438627839 +3491491,0.0105259104088511 +3491492,0.0070780751027915 +3491493,0.0068911053856571 +3491494,0.0068681524135172 +3491495,0.0137363048270344 +3491496,0.0335858084192452 +3491497,0.0112063474953174 +3491498,0.0112063474953174 +3491499,0.0112370888405493 +3491500,0.0327403069539694 +3491501,0.0109029737104169 +3491502,0.0103826948110581 +3491503,0.0085523579127211 +3491504,0.0084265923029825 +3491505,0.034164610485657804 +3491506,0.0137485316511101 +3491507,0.0208991194064961 +3491508,0.0313210330941123 +3491509,0.06803796892434019 +3491510,0.0695320274680851 +3491511,0.0230323802679777 +3491512,0.0204197705548249 +3491513,0.07354371570804691 +3491514,0.0337038944186981 +3491515,0.0103695150464773 +3491516,0.0114806440895946 +3491517,0.0262967219588352 +3491518,0.0262850139056548 +3491519,0.0071326839251632 +3491520,0.020610054414477 +3491521,0.0344542927176404 +3491522,0.0111980009016288 +3491523,0.0112052775964386 +3491524,0.033609577053460904 +3491525,0.0560633626942487 +3491526,0.021836198629790998 +3491527,0.011076996011611 +3491528,0.0217937926422041 +3491529,0.0109071107581257 +3491530,0.0085335245590134 +3491531,0.0086046205030743 +3491532,0.0204708478077858 +3491533,0.013711131017265999 +3491534,0.0205764989578289 +3491535,0.0230323802679777 +3491536,0.0185144112910518 +3491537,0.022768126582198 +3491538,0.045379066820062 +3491539,0.0093261944161149 +3491540,0.0103695150464773 +3491541,0.031255315239356 +3491542,0.0158741498429467 +3491543,0.005256438627839 +3491544,0.0052886011028502 +3491545,0.021741737984680203 +3491546,0.0206044572405516 +3491547,0.0135243914486064 +3491548,0.0068504309866846 +3491549,0.0327213322743771 +3491550,0.0327213322743771 +3491551,0.0218144129514648 +3491552,0.060569705100514 +3491553,0.025730130936432 +3491554,0.008597768155103 +3491555,0.0071741192564582 +3491556,0.1256969073491641 +3491557,0.0181994024028337 +3491558,0.0229706014575323 +3491559,0.069086301007171 +3491560,0.0103695150464773 +3491561,0.0103695150464773 +3491562,0.051847575232386506 +3491563,0.0103899976191453 +3491564,0.0158904514141818 +3491565,0.010540126859082299 +3491566,0.0053070260708754 +3491567,0.0073052966455319 +3491568,0.0277127533782546 +3491569,0.0068905359972511 +3491570,0.0112826384836513 +3491571,0.0327213322743771 +3491572,0.0327223113437368 +3491573,0.0172195603162702 +3491574,0.025947990598645297 +3491575,0.0538194543414931 +3491576,0.0179646145552396 +3491577,0.0179646145552396 +3491578,0.0181365001427501 +3491579,0.0102054741650437 +3491580,0.0103358090854167 +3491581,0.0103695150464773 +3491582,0.0053218096943073 +3491583,0.010673888404349099 +3491584,0.053838964643190504 +3491585,0.030495309007051698 +3491586,0.0109669252069753 +3491587,0.0109071107581257 +3491588,0.0327241903242199 +3491589,0.0287487680120815 +3491590,0.0154648294172671 +3491591,0.0096353700532612 +3491592,0.0184614428445288 +3491593,0.0179646145552396 +3491594,0.0175782657144519 +3491595,0.0165140133682867 +3491596,0.0100263930686404 +3491597,0.0294531833083424 +3491598,0.0998027670847879 +3491599,0.0056816103559615 +3491600,0.0156134901285804 +3491601,0.0481505434969529 +3491602,0.0102714339543565 +3491603,0.0221434823474444 +3491604,0.043906282745146 +3491605,0.0982417466370246 +3491606,0.0109135679225889 +3491607,0.042470869709148304 +3491608,0.0142818444811117 +3491609,0.0351697831211918 +3491610,0.052960685606965596 +3491611,0.0079771065695319 +3491612,0.0081922056555766 +3491613,0.0204763301425104 +3491614,0.0247544213310307 +3491615,0.0086587667277007 +3491616,0.0085872832711988 +3491617,0.0200923305011369 +3491618,0.0855195017792563 +3491619,0.0229534996777552 +3491620,0.0151921981796831 +3491621,0.0169346947222948 +3491622,0.0169346947222948 +3491623,0.0143343861612373 +3491624,0.0142436800524592 +3491625,0.0285276204946411 +3491626,0.0176962818950414 +3491627,0.0530888456851242 +3491628,0.0092985350104016 +3491629,0.0083282625393569 +3491630,0.0352940890663581 +3491631,0.0247624795883893 +3491632,0.0741544083951986 +3491633,0.0247624795883893 +3491634,0.0086006929619895 +3491635,0.0257775058133262 +3491636,0.0132899034157207 +3491637,0.0346934130646247 +3491638,0.0302731519200513 +3491639,0.0295835153737533 +3491640,0.0232103108595861 +3491641,0.0237848199062208 +3491642,0.0115369786119098 +3491643,0.0169346947222948 +3491644,0.0165713793023648 +3491645,0.0168638180983119 +3491646,0.0142436800524592 +3491647,0.0142755740962913 +3491648,0.0176962818950414 +3491649,0.0176796841056182 +3491650,0.0350873870490882 +3491651,0.0085113470723489 +3491652,0.042764857587521 +3491653,0.0821142907609439 +3491654,0.1234571662254206 +3491655,0.0086054471122091 +3491656,0.0349838411823421 +3491657,0.023196100586827702 +3491658,0.0896948053305705 +3491659,0.0910583688578441 +3491660,0.0345702068349339 +3491661,0.0334405035961857 +3491662,0.0168024755659067 +3491663,0.0169346947222948 +3491664,0.015487497519147 +3491665,0.0155469927860556 +3491666,0.0712644393227963 +3491667,0.042731059925233 +3491668,0.0284873601049184 +3491669,0.0288022887464332 +3491670,0.0176962818950414 +3491671,0.0530888409730873 +3491672,0.0175271196915251 +3491673,0.0084543107077479 +3491674,0.0089217852940531 +3491675,0.0099123568195214 +3491676,0.016979789152560702 +3491677,0.0742874387651679 +3491678,0.0245452224211437 +3491679,0.0118492505213287 +3491680,0.011237883673164 +3491681,0.15185338445007798 +3491682,0.2116418056971468 +3491683,0.0301807394878786 +3491684,0.034608795240520004 +3491685,0.0346450417399955 +3491686,0.0337637260469549 +3491687,0.016839963251704 +3491688,0.0144979049061144 +3491689,0.0084736517448297 +3491690,0.0158576408657418 +3491691,0.0141806166801652 +3491692,0.042563727761793 +3491693,0.0427381404034877 +3491694,0.0530518756534062 +3491695,0.0530503110805308 +3491696,0.0176962818950414 +3491697,0.0175816263157475 +3491698,0.0255699218285272 +3491699,0.0384279748517379 +3491700,0.0247624795883893 +3491701,0.0247624795883893 +3491702,0.0491133540355804 +3491703,0.0241383501137684 +3491704,0.0118124060815917 +3491705,0.035301463034876704 +3491706,0.1754634614383582 +3491707,0.0607413537800312 +3491708,0.0111785820278886 +3491709,0.0104109970086128 +3491710,0.0122281503191665 +3491711,0.0133396457255966 +3491712,0.033914512839148495 +3491713,0.042714746504141296 +3491714,0.0712571930157383 +3491715,0.0176962818950414 +3491716,0.0176962818950414 +3491717,0.0530888456851242 +3491718,0.0176702325039583 +3491719,0.0108996657190841 +3491720,0.0247624795883893 +3491721,0.0742874387651679 +3491722,0.0244059786054062 +3491723,0.0247624795883893 +3491724,0.0106302689925367 +3491725,0.026909931659536798 +3491726,0.0497970986192915 +3491727,0.0170081689518552 +3491728,0.0302831376838572 +3491729,0.0534225242491614 +3491730,0.035513284717712604 +3491731,0.0240779755993681 +3491732,0.013872664930655 +3491733,0.011874425414199 +3491734,0.0251328806273911 +3491735,0.0142078671037899 +3491736,0.042699260620324 +3491737,0.0139706783711852 +3491738,0.070373169900129 +3491739,0.0176962818950414 +3491740,0.0176962818950414 +3491741,0.0176962818950414 +3491742,0.0520398072897146 +3491743,0.0491408167176479 +3491744,0.0246143796331913 +3491745,0.0247624795883893 +3491746,0.0495249591767786 +3491747,0.0239350143619466 +3491748,0.0493092974357568 +3491749,0.0211906055081845 +3491750,0.0106323418244166 +3491751,0.0620865081837053 +3491752,0.0088404761627316 +3491753,0.0099279248783594 +3491754,0.0099100956486027 +3491755,0.0572960367574682 +3491756,0.0189243974098497 +3491757,0.0304870528198101 +3491758,0.0236375027486265 +3491759,0.0138607221771273 +3491760,0.0138803326889632 +3491761,0.0118333855643868 +3491762,0.0111737553139931 +3491763,0.0084628726042426 +3491764,0.0083757538359574 +3491765,0.0143464113634398 +3491766,0.052898478509216196 +3491767,0.0176851379934845 +3491768,0.0527490837259381 +3491769,0.035254260561815895 +3491770,0.0529657193325733 +3491771,0.0176962818950414 +3491772,0.12361040946815019 +3491773,0.0247624795883893 +3491774,0.053273751975024194 +3491775,0.0317879042192301 +3491776,0.0089143303272241 +3491777,0.008856574426561 +3491778,0.0100988715848902 +3491779,0.0099046826362609 +3491780,0.0574707088333507 +3491781,0.0190879665315151 +3491782,0.013868410396845 +3491783,0.0416444405924421 +3491784,0.0355305278000642 +3491785,0.0363477291761551 +3491786,0.0295371709518372 +3491787,0.0098517816513776 +3491788,0.008366216905415 +3491789,0.0164357703374064 +3491790,0.0175813965124527 +3491791,0.1075492619314328 +3491792,0.0248764978013457 +3491793,0.0247138717712074 +3491794,0.0741320202757221 +3491795,0.0425054430961608 +3491796,0.0106263607740402 +3491797,0.0088832105082981 +3491798,0.049535848801060295 +3491799,0.0099072210827142 +3491800,0.057105042881055806 +3491801,0.0190371960677915 +3491802,0.013853423064015 +3491803,0.06937778095324271 +3491804,0.0129639376621464 +3491805,0.025865301341694298 +3491806,0.019674828676883797 +3491807,0.0098517816513776 +3491808,0.0398390057653043 +3491809,0.0361089089167677 +3491810,0.0334408969914532 +3491811,0.048948165828054196 +3491812,0.0245520676103852 +3491813,0.0243696239922718 +3491814,0.0212246907917258 +3491815,0.0106263607740402 +3491816,0.0212829259010058 +3491817,0.0396310681066781 +3491818,0.0530357349370358 +3491819,0.0223755543527452 +3491820,0.0184261620853283 +3491821,0.0139024847477058 +3491822,0.0416720072364675 +3491823,0.0129014560087244 +3491824,0.0388998259656268 +3491825,0.0098496907554657 +3491826,0.0295780394898323 +3491827,0.0098517816513776 +3491828,0.0081963828779651 +3491829,0.0223955053244626 +3491830,0.2136318251487792 +3491831,0.0347768474825196 +3491832,0.0105577695033483 +3491833,0.0112199194071193 +3491834,0.058565666335415205 +3491835,0.0117747024416092 +3491836,0.01048124619449 +3491837,0.0095733902886572 +3491838,0.0105190174227392 +3491839,0.0129624465480446 +3491840,0.0130060432229929 +3491841,0.0130109422457484 +3491842,0.049340233634988795 +3491843,0.0314616058507005 +3491844,0.0086165477779293 +3491845,0.014866456389427 +3491846,0.0358495526015758 +3491847,0.0358495526015758 +3491848,0.0208501174722753 +3491849,0.0104351189897234 +3491850,0.033977008256567 +3491851,0.0339570953634645 +3491852,0.0585381547848886 +3491853,0.0116735004934178 +3491854,0.0117324652793423 +3491855,0.0104782400543859 +3491856,0.0104724870188139 +3491857,0.0093789709163956 +3491858,0.0095359048589112 +3491859,0.010545873989575 +3491860,0.038863414234652296 +3491861,0.038825169731647596 +3491862,0.0098942517298009 +3491863,0.0099056950137442 +3491864,0.0542760004464688 +3491865,0.0220885446483167 +3491866,0.0082409234834839 +3491867,0.0152390335630148 +3491868,0.0226161173433315 +3491869,0.07168970604157279 +3491870,0.1075038818138482 +3491871,0.0358495526015758 +3491872,0.035810916841132 +3491873,0.0729708241981761 +3491874,0.0104355312664115 +3491875,0.0113202776261782 +3491876,0.05667059675895329 +3491877,0.0342409559311563 +3491878,0.009996766820612 +3491879,0.0104790635737073 +3491880,0.0093768179714837 +3491881,0.0281129139819671 +3491882,0.0095159767313102 +3491883,0.0095012932854334 +3491884,0.0148062513440502 +3491885,0.0145739242221716 +3491886,0.0108709476025099 +3491887,0.0554492936279173 +3491888,0.0111636643513242 +3491889,0.0085847244511309 +3491890,0.0358495526015758 +3491891,0.0689733001599413 +3491892,0.0358495526015758 +3491893,0.10754865780472742 +3491894,0.0312693535749351 +3491895,0.0113346837460994 +3491896,0.033971936180741596 +3491897,0.0867291992803683 +3491898,0.0096469979678269 +3491899,0.0094362542058907 +3491900,0.0094382357499014 +3491901,0.0093733441296155 +3491902,0.0093424973642409 +3491903,0.047506044469776 +3491904,0.0095114455263243 +3491905,0.0152294303338793 +3491906,0.0458001330519818 +3491907,0.0296303340016363 +3491908,0.0147167850353746 +3491909,0.0563234507029225 +3491910,0.0111185655364553 +3491911,0.179247763007879 +3491912,0.10736887876775231 +3491913,0.0353297459851927 +3491914,0.0113346837460994 +3491915,0.0113304971673649 +3491916,0.0113324572552014 +3491917,0.0286500640541289 +3491918,0.0192185861622351 +3491919,0.028309573072061903 +3491920,0.028309753438075402 +3491921,0.0094464317985967 +3491922,0.0092136478349757 +3491923,0.0095018995155393 +3491924,0.0284616120353245 +3491925,0.0095097299354948 +3491926,0.0151752749109788 +3491927,0.0305206341631158 +3491928,0.0296106888364239 +3491929,0.014793548099796 +3491930,0.0112989108712101 +3491931,0.0332610444720738 +3491932,0.0358495526015758 +3491933,0.0358495526015758 +3491934,0.0358384322585579 +3491935,0.0113346837460994 +3491936,0.0113346837460994 +3491937,0.0113284172387206 +3491938,0.0059785260073298 +3491939,0.0363756754277889 +3491940,0.0467996685299705 +3491941,0.0283078262428891 +3491942,0.0094960802944004 +3491943,0.0187165273580953 +3491944,0.037428438644225 +3491945,0.009513087874001 +3491946,0.0444101462022483 +3491947,0.07390541711775 +3491948,0.0341615828687114 +3491949,0.1072095464465011 +3491950,0.0354919933711302 +3491951,0.1074458896657488 +3491952,0.0339357829652276 +3491953,0.0113298816352402 +3491954,0.0113346837460994 +3491955,0.0340032752707582 +3491956,0.0116710504516958 +3491957,0.017867995210226098 +3491958,0.0579281644916238 +3491959,0.0144910924136638 +3491960,0.0199889213313913 +3491961,0.007018286326325 +3491962,0.0093656460366597 +3491963,0.0188886993411653 +3491964,0.014836580149197 +3491965,0.0148040374128431 +3491966,0.0087995731523814 +3491967,0.0242963101910925 +3491968,0.0350776304602758 +3491969,0.0702145948424692 +3491970,0.0355694562861869 +3491971,0.0113285620617555 +3491972,0.011332327273799 +3491973,0.0226116344365488 +3491974,0.0113306106329709 +3491975,0.0175487267118821 +3491976,0.0291785643427629 +3491977,0.0072351721823104 +3491978,0.021707429917351098 +3491979,0.0217366386204957 +3491980,0.0217366386204957 +3491981,0.019827159518453798 +3491982,0.0066314705040352 +3491983,0.0066616353578865 +3491984,0.0068369139262658 +3491985,0.0093595288341229 +3491986,0.024252882451002197 +3491987,0.0089930172366056 +3491988,0.0266080647706985 +3491989,0.0246996186995562 +3491990,0.0331868165288759 +3491991,0.0113346837460994 +3491992,0.029113269220999598 +3491993,0.0229333744913331 +3491994,0.0233350562769382 +3491995,0.0198331842345378 +3491996,0.0065771865211153 +3491997,0.0066614192367166 +3491998,0.0199849060736595 +3491999,0.0333081767894325 +3492000,0.013377435656725 +3492001,0.0080847484057089 +3492002,0.0086031938288091 +3492003,0.12774647688190138 +3492004,0.1325812894385714 +3492005,0.1079095351399768 +3492006,0.0194329163722178 +3492007,0.0532105189374281 +3492008,0.013323270715773 +3492009,0.026646541431546 +3492010,0.026646541431546 +3492011,0.0456494012895674 +3492012,0.006660271178682 +3492013,0.006665952620953 +3492014,0.0082427185621922 +3492015,0.0524536100938264 +3492016,0.0096842791306928 +3492017,0.006624951804122 +3492018,0.030378140307532 +3492019,0.012518061513369101 +3492020,0.0265403581193122 +3492021,0.16686253622174252 +3492022,0.0551643791249128 +3492023,0.0081618828640383 +3492024,0.0236013995999598 +3492025,0.0330485435980778 +3492026,0.0065369304451796 +3492027,0.0160266276748349 +3492028,0.0110180125734131 +3492029,0.0556208454072475 +3492030,0.050541197577398 +3492031,0.0541652066231876 +3492032,0.0078628224454098 +3492033,0.0078933388395584 +3492034,0.0163219975890034 +3492035,0.0163378172244068 +3492036,0.0556117102352835 +3492037,0.0552913564351989 +3492038,0.0725631997464779 +3492039,0.1636751380405729 +3492040,0.0078789420454439 +3492041,0.007984280341115 +3492042,0.1111901841621719 +3492043,0.1654618115096051 +3492044,0.0096514112085782 +3492045,0.029750854978727 +3492046,0.037342045216432 +3492047,0.051212967807435 +3492048,0.0546818230539612 +3492049,0.038538061519499095 +3492050,0.0095563020776212 +3492051,0.027316453614093697 +3492052,0.0051420789787057 +3492053,0.528901107609272 +3492054,0.2105981058871969 +3492055,0.0288745954947672 +3492056,0.0289713638708425 +3492057,0.0051420745439827 +3492058,0.0051556197693059 +3492059,0.0052290253602791 +3492060,0.3025707188028541 +3492061,0.2074396924247156 +3492062,0.0528745670210382 +3492063,0.0096663516014814 +3492064,0.0096568606789343 +3492065,0.0051248478901184 +3492066,0.0154415508837839 +3492067,0.0473626092599757 +3492068,0.034283734858036 +3492069,0.0095973340634861 +3492070,0.0101731661451372 +3492071,0.005153923539446 +3492072,0.02749172026891 +3492073,0.0049661048034045 +3492074,0.2393677124317201 +3492075,0.1386306578791793 +3492076,0.0037138870573931 +3492077,0.0141116823766262 +3492078,0.205702409148216 +3492079,0.1021113987851946 +3492080,0.0035188316833227 +3492081,0.0035188316833227 +3492082,0.0035473356045114 +3492083,0.137134939432144 +3492084,0.3423804196276778 +3492085,0.0340353744549744 +3492086,0.0038893333060376 +3492087,0.0035188316833227 +3492088,0.0070455171855401 +3492089,0.0142790886534548 +3492090,0.0286162633794486 +3492091,0.1692241600966254 +3492092,0.0105564950499681 +3492093,0.0120487656902207 +3492094,0.031722181108321604 +3492095,0.007253963985924 +3492096,0.0138701239800229 +3492097,0.0076677569071117 +3492098,0.0663976755244867 +3492099,0.034283734858036 +3492100,0.0035452045037383 +3492101,0.03155979888832 +3492102,0.0174860434328456 +3492103,0.0253352392464876 +3492104,0.0508397014267743 +3492105,0.0240070366904169 +3492106,0.006811023456975601 +3492107,0.0109187729894185 +3492108,0.0175628110008657 +3492109,0.0035188316833227 +3492110,0.3008025805234672 +3492111,0.0759295654957472 +3492112,0.0167733023051515 +3492113,0.0022703411523252 +3492114,0.0035188316833227 +3492115,0.0140753267332908 +3492116,0.0070376633666454 +3492117,0.0105564950499681 +3492118,0.015955456167889 +3492119,0.0221438818977353 +3492120,0.0027192280121849 +3492121,0.006837329805517701 +3492122,0.00695898647592 +3492123,0.0140753267332908 +3492124,0.0035188316833227 +3492125,0.0035188316833227 +3492126,0.0035188316833227 +3492127,0.0070376633666454 +3492128,0.007064765142519 +3492129,0.0196641418699445 +3492130,0.0212407544342977 +3492131,0.003660798616645 +3492132,0.010760116948247 +3492133,0.0104106986773191 +3492134,0.0070305346405692 +3492135,0.0110911164176814 +3492136,0.0035597152757409 +3492137,0.007374441853926 +3492138,0.0634077631434841 +3492139,0.011168678977511299 +3492140,0.02114888668452 +3492141,0.1480197419969248 +3492142,0.00344385522155 +3492143,0.021025061721676 +3492144,0.0641474300828744 +3492145,0.0063435404154953 +3492146,0.0043978274790144 +3492147,0.0062420956800652 +3492148,0.0209684521370796 +3492149,0.0130511671304702 +3492150,0.0518049713594006 +3492151,0.0034198441232814 +3492152,0.0063766109400516 +3492153,0.0053375535495991 +3492154,0.001010686673158 +3492155,0.0130511671304702 +3492156,0.0130511671304702 +3492157,0.0011691495282999 +3492158,0.0049502424082765 +3492159,0.0009763790289278 +3492160,0.0081416677372661 +3492161,0.0251729237345412 +3492162,0.0129260982965844 +3492163,0.0391802594511256 +3492164,0.0391535013914106 +3492165,0.002380002780761 +3492166,0.0097712713327526 +3492167,0.0008787478614577 +3492168,0.0042242398456524 +3492169,0.065235256514009 +3492170,0.0654619364605923 +3492171,0.039031790840157496 +3492172,0.0130511671304702 +3492173,0.001344180219292 +3492174,0.0062024287603816 +3492175,0.0254437225644197 +3492176,0.0130511671304702 +3492177,0.039128571371801 +3492178,0.0130511671304702 +3492179,0.06525583565235099 +3492180,0.0130511671304702 +3492181,0.0522046685218808 +3492182,0.0912305856570019 +3492183,0.0783070027828212 +3492184,0.0389750618583592 +3492185,0.0130511671304702 +3492186,0.0130511671304702 +3492187,0.0389450153562244 +3492188,0.0130511671304702 +3492189,0.0391094641158811 +3492190,0.0522046685218808 +3492191,0.0130511671304702 +3492192,0.0130511671304702 +3492193,0.0640766267447105 +3492194,0.0513144045500981 +3492195,0.0130511671304702 +3492196,0.0391348316437862 +3492197,0.0261023342609404 +3492198,0.0125559780754924 +3492199,0.0391385800168358 +3492200,0.0391535013914106 +3492201,0.06525583565235099 +3492202,0.1428324331327405 +3492203,0.038777359682365495 +3492204,0.0129427074908959 +3492205,0.0219444497816578 +3492206,0.0320538157336131 +3492207,0.0172134045376401 +3492208,0.0054564089514315 +3492209,0.0182404522595098 +3492210,0.0304136496542921 +3492211,0.0165087478608479 +3492212,0.0164086063930232 +3492213,0.0061119273304939 +3492214,0.006070392528953 +3492215,0.016665153408366898 +3492216,0.0054992781227362 +3492217,0.0061119273304939 +3492218,0.018259602553887 +3492219,0.0386442007239568 +3492220,0.0055042876029715 +3492221,0.0109269127533861 +3492222,0.0305244587608325 +3492223,0.0183357819914817 +3492224,0.0292982646700927 +3492225,0.0064762106486666 +3492226,0.0061031620896785 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001070900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001070900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001070900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001071900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001071900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001071900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001072000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001072000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001072000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001072100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001072100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001072100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001072200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001072200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001072200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001072300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001072300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..b4120f6db --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001072300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0626258777514067 +3490292,0.0962902809288064 +3490293,0.0156262125819921 +3490316,0.0312524251639842 +3490317,0.0781310629099605 +3490332,0.0468786377459763 +3490333,0.047553726748893 +3490334,0.09407472241637671 +3490335,0.0156262125819921 +3490348,0.0156424613773834 +3490349,0.0143030287961173 +3490350,0.0156262125819921 +3490351,0.0468786377459763 +3490374,0.029265592447218103 +3490375,0.0825016026315632 +3490376,0.09070694105700611 +3490377,0.0309985214582931 +3490378,0.0312524251639842 +3490379,0.1407494532841257 +3490396,0.0137387667681866 +3490397,0.0274051669985054 +3490398,0.0468766078056329 +3490399,0.0312524251639842 +3490418,0.09381105235954751 +3490419,0.0156262125819921 +3490437,0.0156306860465607 +3490438,0.0782325498619994 +3490439,0.0297945573494649 +3490440,0.0156261822557427 +3490457,0.0411121833270207 +3490458,0.0416056260170198 +3490459,0.0312524251639842 +3490460,0.0710725983032698 +3490476,0.0311696405055179 +3490477,0.0465229900186476 +3490478,0.0189096517860888 +3490479,0.0189096517860888 +3490499,0.07076714315931561 +3490500,0.0094548258930444 +3490517,0.0149330719355901 +3490518,0.0271214511544771 +3490519,0.0378193035721776 +3490520,0.047274129465222005 +3490544,0.0094548258930444 +3490545,0.0094652665769861 +3490546,0.0189096517860888 +3490547,0.0094344969904588 +3490573,0.0282842089087173 +3490574,0.0094548258930444 +3490575,0.0093013749090961 +3490576,0.0185074265759042 +3490597,0.0262275944953794 +3490598,0.025380815057894697 +3490599,0.0097550889985614 +3490600,0.031016980696572 +3490601,0.0167474778400133 +3490602,0.0168098919236737 +3490603,0.0161707170610536 +3490604,0.0160492679317572 +3490623,0.008368513546884 +3490624,0.016737027093768 +3490625,0.0126564847149549 +3490626,0.0453798948774018 +3490639,0.008368513546884 +3490640,0.033474054187536 +3490641,0.0170617099479611 +3490642,0.0375782441215087 +3490643,0.0630331356344225 +3490644,0.0151300420984625 +3490645,0.015084424774753 +3490658,0.016737027093768 +3490659,0.008368513546884 +3490660,0.0882824577674453 +3490661,0.0379071780029767 +3490662,0.1059117322514025 +3490663,0.0151300420984625 +3490664,0.0150572623534595 +3490665,0.0452890255842147 +3490681,0.042159361876804795 +3490682,0.008368513546884 +3490683,0.008368513546884 +3490684,0.016737027093768 +3490685,0.0124291062882514 +3490686,0.0126467076996192 +3490687,0.015198372570499 +3490688,0.0151665219356719 +3490689,0.0151092447489744 +3490690,0.0151300420984625 +3490707,0.016737027093768 +3490708,0.008368513546884 +3490709,0.0085084505383539 +3490710,0.008368513546884 +3490725,0.0083439150417495 +3490726,0.008368513546884 +3490727,0.025105540640652 +3490728,0.033570650002774 +3490736,0.0586103826169741 +3490737,0.0420010362544202 +3490738,0.1049484168634854 +3490739,0.044526427396438195 +3490747,0.2902175168245089 +3490748,0.0101878930216036 +3490757,0.0293667695559167 +3490758,0.0231807217401301 +3490771,0.022019535900720602 +3490772,0.007340872594971 +3490773,0.0077400929370779 +3490774,0.0146759084393102 +3490787,0.014570633199935401 +3490788,0.0074147853283845 +3490789,0.0402369641292254 +3490790,0.05717897028391 +3490805,0.0071047554127755 +3490806,0.022184114199749902 +3490807,0.0144417593255638 +3490808,0.0313691925183157 +3490809,0.0081991882964284 +3490810,0.0083634334554968 +3490827,0.0062153555392993 +3490828,0.0063660869385388 +3490842,0.0184442345039856 +3490843,0.0061470717191696 +3490844,0.0062460004848764 +3490845,0.0191182474571626 +3490856,0.0061470717191696 +3490857,0.006449514627376 +3490858,0.0061470717191696 +3490859,0.0186557091006708 +3490860,0.0063422340899705 +3490861,0.0317540502123385 +3490875,0.0061470717191696 +3490876,0.0061470717191696 +3490877,0.0194047307972444 +3490878,0.0065441131708726 +3490879,0.012684468179941 +3490892,0.0184412151575088 +3490893,0.0184412151575088 +3490894,0.0063422340899705 +3490895,0.0070201329568135 +3490900,0.006143998371938 +3490901,0.0059697901178186 +3490902,0.0187187447081031 +3490903,0.0184426203792672 +3490904,0.0250749914784172 +3490905,0.0200513881349876 +3490906,0.0213314940338589 +3490907,0.0709711029807809 +3490916,0.0184628635721109 +3490917,0.0061809227030717 +3490918,0.0061408788474575 +3490919,0.0061490084410739 +3490920,0.0062697544146289 +3490921,0.0142376235578666 +3490922,0.0193934076444416 +3490923,0.1527652504687265 +3490924,0.0076221435769804 +3490925,0.0479957817650354 +3490926,0.1294433541022048 +3490935,0.0059028494996983 +3490936,0.0067536610417281 +3490937,0.0230214594385212 +3490938,0.0220833930168468 +3490939,0.0212708728705744 +3490940,0.021048620877344902 +3490941,0.0147084427601856 +3490942,0.0144958798260791 +3490953,0.0061042898675849 +3490954,0.0061475987074268 +3490955,0.006166725638806 +3490956,0.0085254963676152 +3490957,0.0165887483835604 +3490958,0.0165128506988542 +3490959,0.0210720389150082 +3490960,0.0210593581443046 +3490966,0.0173397646285593 +3490967,0.0057799215428531 +3490968,0.0117588476341381 +3490969,0.0133310732847558 +3490970,0.11527402080703 +3490971,0.0162779443548065 +3490972,0.0633710298720081 +3490973,0.0158707577439473 +3490974,0.0070240129716694 +3490975,0.0211622792352041 +3490980,0.0173883544293631 +3490981,0.0057921442452696 +3490982,0.0057987198562107 +3490983,0.0412615513941934 +3490984,0.0663084962289285 +3490985,0.14725380889257889 +3490986,0.0163393775826696 +3490987,0.0491117287788543 +3490988,0.0488728707008083 +3490989,0.0158861268189676 +3490990,0.0475948744177587 +3490991,0.0158295651736235 +3490992,0.0070240129716694 +3490993,0.0070240129716694 +3490994,0.0241180666440789 +3490995,0.0070240129716694 +3490999,0.0057895518202725 +3491000,0.0058475685153654 +3491001,0.0110830531436329 +3491002,0.0176845123776934 +3491003,0.0134160881214704 +3491004,0.0134393123202564 +3491005,0.0491415503860511 +3491006,0.081600614992152 +3491007,0.0225916247619265 +3491008,0.021605185885663798 +3491009,0.0352293028481774 +3491010,0.021009028468552002 +3491013,0.0083983262481264 +3491014,0.011770739237164 +3491015,0.0490136390169659 +3491016,0.049006947113632404 +3491017,0.1546541071460431 +3491018,0.0106724364378992 +3491019,0.0351018497238411 +3491020,0.0070240129716694 +3491021,0.012556429952383 +3491022,0.0075819436178284 +3491023,0.0124910549248217 +3491024,0.00698168731234 +3491025,0.053879311974661004 +3491026,0.0179756473544143 +3491027,0.0118730925485359 +3491028,0.0065425582821106 +3491029,0.0062782149761915 +3491030,0.0321456308577203 +3491031,0.0330190408763813 +3491032,0.0238167695904709 +3491033,0.0123797918456807 +3491034,0.0125911561772227 +3491035,0.0124667270782598 +3491036,0.0179122180908351 +3491037,0.0179789215326309 +3491038,0.0072517026110617 +3491039,0.0816557049124767 +3491040,0.0062782149761915 +3491041,0.0188346449285745 +3491042,0.0125109888613224 +3491043,0.0120744237725578 +3491044,0.0124199325134097 +3491045,0.0626375036549678 +3491046,0.0179789215326309 +3491047,0.0179483082157491 +3491048,0.0065916083276123 +3491049,0.0064877695403993 +3491050,0.048896357404717095 +3491051,0.016299486479525 +3491052,0.0062782149761915 +3491053,0.0315898507339264 +3491054,0.037536103774357996 +3491055,0.0373504892271613 +3491056,0.0124608296825309 +3491057,0.08690674675931259 +3491058,0.0179789215326309 +3491059,0.0538345638563774 +3491060,0.0326298801877313 +3491061,0.0064877695403993 +3491062,0.019599790550349598 +3491063,0.0324893360043945 +3491064,0.0162169931366994 +3491065,0.08143424061363991 +3491066,0.0188346449285745 +3491067,0.0062782149761915 +3491068,0.0071224136144524 +3491069,0.0063346234154432 +3491070,0.0104359511821247 +3491071,0.0250731178278002 +3491072,0.1253947914178746 +3491073,0.053919674023670594 +3491074,0.0064877695403993 +3491075,0.0584327452299691 +3491076,0.0487585754305665 +3491077,0.0162988526365416 +3491078,0.060640683083747496 +3491079,0.025512023096006 +3491080,0.0193450876429941 +3491081,0.0063349089601076 +3491082,0.0170954235079475 +3491083,0.0179487459400758 +3491084,0.0179789215326309 +3491085,0.0179789215326309 +3491086,0.0199126875152431 +3491087,0.0195771179194912 +3491088,0.0196695596701242 +3491089,0.0336574364417527 +3491090,0.0160355101680435 +3491091,0.0163412247635533 +3491092,0.0189873089764604 +3491093,0.0065565150391722 +3491094,0.0539367645978927 +3491095,0.089828405067648 +3491096,0.0193569829365386 +3491097,0.0064490827590874 +3491098,0.0276399497286606 +3491099,0.0077039897234907 +3491100,0.015367116289521 +3491101,0.0337597916043086 +3491102,0.0676893197659295 +3491103,0.0898319316186458 +3491104,0.08989473727640379 +3491105,0.0128307225280107 +3491106,0.0318756310362647 +3491107,0.0232085596405593 +3491108,0.013896587743594301 +3491109,0.0290703187997381 +3491110,0.0398885003495145 +3491111,0.0545769701555357 +3491112,0.0066741821356117 +3491113,0.10883451726379839 +3491114,0.0773929528203373 +3491115,0.1249241866660663 +3491116,0.0897527013118368 +3491117,0.0042820864542842 +3491118,0.0208875822080438 +3491119,0.0415102125694681 +3491120,0.02079693291273 +3491121,0.0138024448857627 +3491122,0.0053750777606232 +3491123,0.0147769334456773 +3491124,0.038117948994378203 +3491125,0.020193458781836898 +3491126,0.0904881740761776 +3491127,0.006835368224236 +3491128,0.0479009513743158 +3491129,0.0153153737383248 +3491130,0.0155403232201933 +3491131,0.0302472662841883 +3491132,0.0460153689062002 +3491133,0.0041711409576237 +3491134,0.0041723039317573 +3491135,0.006935863289982 +3491136,0.0762448390340402 +3491137,0.0414941446630986 +3491138,0.0453717706208693 +3491139,0.08465495637360071 +3491140,0.0115959563511795 +3491141,0.0927963097485436 +3491142,0.0066997194988664 +3491143,0.0072922169784105 +3491144,0.045729174434237796 +3491145,0.0155403232201933 +3491146,0.016805363151047602 +3491147,0.0041729755511678 +3491148,0.006935863289982 +3491149,0.0046035819686949 +3491150,0.0046005831773108 +3491151,0.0152697259073608 +3491152,0.015235543053718 +3491153,0.0133412918075919 +3491154,0.0408278734430902 +3491155,0.0715022148713105 +3491156,0.120387098690089 +3491157,0.0331997091522678 +3491158,0.0529811086465774 +3491159,0.008541451091827499 +3491160,0.0125323651463485 +3491161,0.027743453159928 +3491162,0.006935863289982 +3491163,0.0138397214862435 +3491164,0.0140012326222628 +3491165,0.045671504827192004 +3491166,0.0150430342848569 +3491167,0.0400698687924652 +3491168,0.0400475028695386 +3491169,0.071737554101234 +3491170,0.0119563853368163 +3491171,0.0664756960985177 +3491172,0.0160647610304738 +3491173,0.0211525928982796 +3491174,0.0212866816405205 +3491175,0.0042519839810938 +3491176,0.020809834350034598 +3491177,0.0069403503759966 +3491178,0.006935863289982 +3491179,0.020807589869946 +3491180,0.0046957325355523 +3491181,0.0608751721408974 +3491182,0.0457894725694277 +3491183,0.0934599255684848 +3491184,0.1203414678148292 +3491185,0.0120404205820448 +3491186,0.0122972528890345 +3491187,0.0478255413472652 +3491188,0.0719789080402187 +3491189,0.1662963169304672 +3491190,0.0496626822985596 +3491191,0.0071488002959507 +3491192,0.021117052735543 +3491193,0.006935863289982 +3491194,0.006935863289982 +3491195,0.0125079932710355 +3491196,0.1368735336692388 +3491197,0.0931943170776 +3491198,0.1067123073324151 +3491199,0.060291227373171205 +3491200,0.0484849616319867 +3491201,0.0829724027098293 +3491202,0.0332622379064558 +3491203,0.0075255112448791 +3491204,0.035302952336554796 +3491205,0.0213221788748965 +3491206,0.006935863289982 +3491207,0.0277337097572837 +3491208,0.013870351197073999 +3491209,0.0066002085691205 +3491210,0.0051469618432036 +3491211,0.0659485741740446 +3491212,0.032481108098664904 +3491213,0.1157683473941564 +3491214,0.049857178215797604 +3491215,0.0166311189532279 +3491216,0.0166311189532279 +3491217,0.0352325347326745 +3491218,0.0351959046125491 +3491219,0.0140309046202298 +3491220,0.048551043029874 +3491221,0.0349840138486335 +3491222,0.027743453159928 +3491223,0.0063983404969428 +3491224,0.0065023230553295 +3491225,0.0488773087906237 +3491226,0.0233878098564999 +3491227,0.0224373992532491 +3491228,0.0448241555485762 +3491229,0.06453788180496339 +3491230,0.0321118070115689 +3491231,0.0498933568596837 +3491232,0.0166144003790433 +3491233,0.014407656014955899 +3491234,0.0140787572961559 +3491235,0.0763460876735288 +3491236,0.0069352355224564 +3491237,0.014626078375385 +3491238,0.0069149104366043 +3491239,0.0066294402330483 +3491240,0.0064046824817453 +3491241,0.0053785357531118 +3491242,0.0082642579596383 +3491243,0.0077863200567662 +3491244,0.0078354554710432 +3491245,0.067070350583207 +3491246,0.1121869962662455 +3491247,0.054565092724607106 +3491248,0.0106460722163319 +3491249,0.0166311189532279 +3491250,0.0166311189532279 +3491251,0.0070378865623949 +3491252,0.034809636679119696 +3491253,0.006935863289982 +3491254,0.0069301941878341 +3491255,0.0192835770446792 +3491256,0.0128134666010736 +3491257,0.0197892021757223 +3491258,0.0128380335467876 +3491259,0.0083221693773134 +3491260,0.0078532671817136 +3491261,0.0263696475512092 +3491262,0.026642847885124603 +3491263,0.0077863200567662 +3491264,0.0157609761463771 +3491265,0.0897495970129964 +3491266,0.0671121015034121 +3491267,0.0224373992532491 +3491268,0.0221568416173813 +3491269,0.0753571761568077 +3491270,0.053286615266562996 +3491271,0.0495695945950512 +3491272,0.0166311189532279 +3491273,0.0997867137193674 +3491274,0.1158507307891714 +3491275,0.0345870497750996 +3491276,0.0276023513669921 +3491277,0.0064067333005368 +3491278,0.0066964161617174 +3491279,0.0090195072801063 +3491280,0.0087826050419305 +3491281,0.008775117826514 +3491282,0.0080330318142658 +3491283,0.0320579576939442 +3491284,0.0264237355354348 +3491285,0.026713400905242702 +3491286,0.023849588125374698 +3491287,0.0239798962959976 +3491288,0.0224373992532491 +3491289,0.0448645704946167 +3491290,0.0767898859604848 +3491291,0.022819333769551198 +3491292,0.0663455353414446 +3491293,0.0165689055251505 +3491294,0.0159455345026824 +3491295,0.0208075811561068 +3491296,0.0485056287728257 +3491297,0.08396888939251891 +3491298,0.0192776356002302 +3491299,0.010065675616396 +3491300,0.0050607529290106 +3491301,0.0088136854641106 +3491302,0.0261555108890859 +3491303,0.027399463802918002 +3491304,0.0093487230176214 +3491305,0.0080314608112877 +3491306,0.0400327063818544 +3491307,0.0085933901207671 +3491308,0.0088083654956635 +3491309,0.026634895501679703 +3491310,0.0163081820546535 +3491311,0.0897495970129964 +3491312,0.0224373992532491 +3491313,0.017297135659316898 +3491314,0.0142223831776279 +3491315,0.0069356039997828 +3491316,0.020807589869946 +3491317,0.006935863289982 +3491318,0.020282394876006603 +3491319,0.0101115769384914 +3491320,0.0101051451646064 +3491321,0.0101123629137873 +3491322,0.01623282251004 +3491323,0.0247909259053505 +3491324,0.017681987662725197 +3491325,0.0088022177570197 +3491326,0.0125044406378747 +3491327,0.0128658171744289 +3491328,0.0320872005457834 +3491329,0.0080043133348226 +3491330,0.0082706667570635 +3491331,0.0094011011082945 +3491332,0.0673121977597473 +3491333,0.0224373992532491 +3491334,0.24681139178574008 +3491335,0.0896122458767428 +3491336,0.0163371471035813 +3491337,0.0164996080565688 +3491338,0.018333999366365 +3491339,0.0111866422828314 +3491340,0.006935863289982 +3491341,0.020807589869946 +3491342,0.0101123629137873 +3491343,0.050561814568936506 +3491344,0.0049229079720186 +3491345,0.0049133296826327 +3491346,0.037538638877001 +3491347,0.037639118740831604 +3491348,0.0129519955336486 +3491349,0.038879661820828804 +3491350,0.0240175303606487 +3491351,0.024012940004467798 +3491352,0.0565709823964058 +3491353,0.0081481320418565 +3491354,0.0100295995223962 +3491355,0.0203073052601613 +3491356,0.0671236364699011 +3491357,0.0638588026734038 +3491358,0.021468565517229 +3491359,0.0224373992532491 +3491360,0.3140017012236522 +3491361,0.0673121977597473 +3491362,0.0109522795356433 +3491363,0.0110487728131369 +3491364,0.0109437836525422 +3491365,0.0109781838691496 +3491366,0.0041317882528786 +3491367,0.0043886223946247 +3491368,0.0050668456671185 +3491369,0.0277425385249484 +3491370,0.006935863289982 +3491371,0.020807589831752397 +3491372,0.0138716648935592 +3491373,0.020220756876805503 +3491374,0.0101123629137873 +3491375,0.0101123629137873 +3491376,0.020236759924929203 +3491377,0.0049038776196539 +3491378,0.024004042116957898 +3491379,0.0125040405923745 +3491380,0.0125361618528415 +3491381,0.0129480754164379 +3491382,0.0129598872736096 +3491383,0.0129598872736096 +3491384,0.0126939484761994 +3491385,0.0080351145271626 +3491386,0.0320173954759408 +3491387,0.0161598736350862 +3491388,0.0242468241914632 +3491389,0.0100127065848863 +3491390,0.047473433600586 +3491391,0.0100545318160133 +3491392,0.0671411976714488 +3491393,0.24681139178574008 +3491394,0.0050702325387364 +3491395,0.0267352744612342 +3491396,0.0155239803716538 +3491397,0.0051841795063228 +3491398,0.006935863289982 +3491399,0.0346793105590912 +3491400,0.0101074610415468 +3491401,0.0101123629137873 +3491402,0.0203268197295714 +3491403,0.0101885302581347 +3491404,0.0084731377915429 +3491405,0.029586981962523 +3491406,0.0449189820793641 +3491407,0.0089824544265866 +3491408,0.0125181593116449 +3491409,0.0125402222101926 +3491410,0.0125150925781829 +3491411,0.0129855316974142 +3491412,0.0129598872736096 +3491413,0.025931762067542802 +3491414,0.0259896838191378 +3491415,0.0129598872736096 +3491416,0.0646026462676553 +3491417,0.0161513617652292 +3491418,0.056144168603502895 +3491419,0.0080811802008544 +3491420,0.0081590362524803 +3491421,0.0187431059752318 +3491422,0.1034996672555846 +3491423,0.1566275424342942 +3491424,0.0448747985064982 +3491425,0.0247843315366418 +3491426,0.0045087897074493 +3491427,0.015558971067196399 +3491428,0.0051746601238846 +3491429,0.020807589869946 +3491430,0.020807589869946 +3491431,0.0069357477058093 +3491432,0.0101119191723649 +3491433,0.0101123629137873 +3491434,0.0101123629137873 +3491435,0.0101123629137873 +3491436,0.0097968615591526 +3491437,0.0293905846774578 +3491438,0.0269473632797598 +3491439,0.0089679744926319 +3491440,0.0235376626486518 +3491441,0.0247316972758838 +3491442,0.0121419651938568 +3491443,0.0119912337545423 +3491444,0.0161559464544527 +3491445,0.008009007947093 +3491446,0.0082098741661225 +3491447,0.0247786086192467 +3491448,0.0088784349000936 +3491449,0.06474880829412061 +3491450,0.0218574348837137 +3491451,0.0897495970129964 +3491452,0.0223698104089698 +3491453,0.0224373992532491 +3491454,0.0668760470416075 +3491455,0.0105254063382744 +3491456,0.053254217127815404 +3491457,0.0048559455002364 +3491458,0.014228958128798201 +3491459,0.0188960087168414 +3491460,0.0053818697050434 +3491461,0.011305549741428101 +3491462,0.0051901831422131 +3491463,0.0138530772264263 +3491464,0.006903592839469 +3491465,0.020807589869946 +3491466,0.006935863289982 +3491467,0.0100641399515769 +3491468,0.0101123629137873 +3491469,0.0101123629137873 +3491470,0.0709568168783844 +3491471,0.0101447332371514 +3491472,0.0097747449491862 +3491473,0.0490381848413386 +3491474,0.0089824544265866 +3491475,0.0269841982390602 +3491476,0.0074181938976215 +3491477,0.0403943898993047 +3491478,0.0104115624824298 +3491479,0.0247831667132166 +3491480,0.016723303940296898 +3491481,0.0217189456201225 +3491482,0.06557230465114111 +3491483,0.0897495970129964 +3491484,0.0195456462061215 +3491485,0.022156391843576 +3491486,0.030383416716853004 +3491487,0.0314547855419124 +3491488,0.052436437311092 +3491489,0.0105254063382744 +3491490,0.0047411094419658 +3491491,0.0095047324020131 +3491492,0.0069349530174956 +3491493,0.0069357637606787 +3491494,0.006935863289982 +3491495,0.013871726579964 +3491496,0.030302048280874003 +3491497,0.0101123629137873 +3491498,0.0101123629137873 +3491499,0.0101410333892029 +3491500,0.029410590700686398 +3491501,0.009789925900285 +3491502,0.0089395799013448 +3491503,0.0069285601921957 +3491504,0.00671947082858 +3491505,0.0249742947418671 +3491506,0.010083175447051299 +3491507,0.0172166341634722 +3491508,0.0257357600685868 +3491509,0.0640153732520932 +3491510,0.06557230465114111 +3491511,0.0224373992532491 +3491512,0.0198264743769347 +3491513,0.0668887371043395 +3491514,0.031304238962543404 +3491515,0.0105254063382744 +3491516,0.0115706485530272 +3491517,0.023721983304162503 +3491518,0.0237104198124795 +3491519,0.0069347162212318 +3491520,0.0208075655993279 +3491521,0.0347595007403247 +3491522,0.0101035626520278 +3491523,0.0101112348619687 +3491524,0.0303136813371133 +3491525,0.0505827176532936 +3491526,0.019616894768810803 +3491527,0.0099759807011072 +3491528,0.019564623942235 +3491529,0.0097968615591526 +3491530,0.0069286418578973 +3491531,0.0069122186697424 +3491532,0.0149570071262813 +3491533,0.0100522358156442 +3491534,0.0191857009506213 +3491535,0.0224373992532491 +3491536,0.0181111735975405 +3491537,0.0221847355902883 +3491538,0.041189117685454905 +3491539,0.0084925150109835 +3491540,0.0105254063382744 +3491541,0.0317127742262367 +3491542,0.014341924391457 +3491543,0.0047411094419658 +3491544,0.0047856702457913 +3491545,0.0216452444422851 +3491546,0.020807589869946 +3491547,0.013583153194984699 +3491548,0.0069117311084007 +3491549,0.0293905846774578 +3491550,0.0293905846774578 +3491551,0.0195939249587266 +3491552,0.048716766316402996 +3491553,0.0207853637839728 +3491554,0.0069047997592681 +3491555,0.0054012188079626 +3491556,0.12305466580970409 +3491557,0.0178163931665679 +3491558,0.0223783300278022 +3491559,0.0673018333905709 +3491560,0.0105254063382744 +3491561,0.0105254063382744 +3491562,0.052627031691372006 +3491563,0.0105338774520441 +3491564,0.014360365955826501 +3491565,0.009519326075332301 +3491566,0.0048099969741393 +3491567,0.0071872459562275 +3491568,0.0279203290013782 +3491569,0.00695167234047 +3491570,0.0101222016032622 +3491571,0.0293905846774578 +3491572,0.0293916169628387 +3491573,0.0138566223925803 +3491574,0.0208738882543036 +3491575,0.052696024642669495 +3491576,0.0175919029861688 +3491577,0.0175919029861688 +3491578,0.0177562497653724 +3491579,0.0103398309461513 +3491580,0.0104736678074467 +3491581,0.0105254063382744 +3491582,0.0047967123490611 +3491583,0.009629364695006 +3491584,0.0495294204754298 +3491585,0.0277932887108667 +3491586,0.0098486820616198 +3491587,0.0097968615591526 +3491588,0.0293935980728231 +3491589,0.0234675414662892 +3491590,0.0135209425729183 +3491591,0.0086845960066174 +3491592,0.017940448227766 +3491593,0.0175919029861688 +3491594,0.0172324432075056 +3491595,0.016243931153976 +3491596,0.0100322520853333 +3491597,0.0285627600886354 +3491598,0.0988878854821995 +3491599,0.0050807292202067 +3491600,0.0139256906954797 +3491601,0.0416427240190408 +3491602,0.0093242427277411 +3491603,0.0198789796414926 +3491604,0.0394281538547768 +3491605,0.0880847377347215 +3491606,0.0098036696942577 +3491607,0.03618869270041 +3491608,0.0121850863583 +3491609,0.031129431838816002 +3491610,0.0469125154055694 +3491611,0.0069162003786752 +3491612,0.0071238993397717 +3491613,0.0195923223636916 +3491614,0.0235700233582252 +3491615,0.0074255732167606 +3491616,0.0073610050841534 +3491617,0.0192490439011935 +3491618,0.0820612158596625 +3491619,0.0206231929991351 +3491620,0.0135575361137762 +3491621,0.0143502904102206 +3491622,0.0143502904102206 +3491623,0.0122203359025358 +3491624,0.0121460370719432 +3491625,0.024333267987018 +3491626,0.0156786888837814 +3491627,0.047036066651344195 +3491628,0.0081835190613812 +3491629,0.0072540659875595 +3491630,0.0344003869195707 +3491631,0.0235771182924509 +3491632,0.070604546549168 +3491633,0.0235771182924509 +3491634,0.0073523957139898 +3491635,0.0221085103981555 +3491636,0.0121075535604037 +3491637,0.030933508089771203 +3491638,0.0285076035550514 +3491639,0.0278320381738355 +3491640,0.0208389382500533 +3491641,0.021262669508067503 +3491642,0.0103680954134541 +3491643,0.0143502904102206 +3491644,0.0140798136099349 +3491645,0.0142922342291186 +3491646,0.0121460370719432 +3491647,0.0121786705920731 +3491648,0.0156786888837814 +3491649,0.0156643093182366 +3491650,0.0310929865984753 +3491651,0.0084763394916664 +3491652,0.0425310148963175 +3491653,0.07857165200511901 +3491654,0.117555505200944 +3491655,0.0073524030293198 +3491656,0.031197146507598 +3491657,0.0206890300372499 +3491658,0.0844141938334929 +3491659,0.0857427303874244 +3491660,0.0310391978928271 +3491661,0.030098507128378 +3491662,0.0142371212598913 +3491663,0.0143502904102206 +3491664,0.0131615189724592 +3491665,0.0131375001210501 +3491666,0.0607663915130547 +3491667,0.0364381314420108 +3491668,0.0242920741438864 +3491669,0.0246143045332484 +3491670,0.0156786888837814 +3491671,0.04703606256905089 +3491672,0.0155321344884257 +3491673,0.0084233405068516 +3491674,0.0088577244069162 +3491675,0.0097654732700138 +3491676,0.0169121909799681 +3491677,0.0707313548773527 +3491678,0.0233752399050694 +3491679,0.0105894616506095 +3491680,0.0099508466615934 +3491681,0.142986876890063 +3491682,0.19925342467430932 +3491683,0.0284140675547122 +3491684,0.0310897419288729 +3491685,0.0311304801959566 +3491686,0.0286102775123745 +3491687,0.0142726943411132 +3491688,0.0122921956406492 +3491689,0.0068879389979301 +3491690,0.0133999581821932 +3491691,0.0120892692978806 +3491692,0.036288120750063 +3491693,0.0364453760840157 +3491694,0.046998239454497596 +3491695,0.046996638606367595 +3491696,0.0156786888837814 +3491697,0.015579356534425 +3491698,0.025459760057033202 +3491699,0.0379375450180782 +3491700,0.0235771182924509 +3491701,0.0235771182924509 +3491702,0.0467717673517966 +3491703,0.0229971684871067 +3491704,0.0105505630681617 +3491705,0.0310687444246115 +3491706,0.16462188611505651 +3491707,0.0571947507560252 +3491708,0.0099636773335182 +3491709,0.0091060323391197 +3491710,0.0103322761636835 +3491711,0.0113052707326972 +3491712,0.0275842707571802 +3491713,0.036423504452060496 +3491714,0.0608038654013038 +3491715,0.0156786888837814 +3491716,0.0156786888837814 +3491717,0.047036066651344195 +3491718,0.015656120882891 +3491719,0.0106720293794721 +3491720,0.0235771182924509 +3491721,0.0707313548773527 +3491722,0.0232048402590504 +3491723,0.0235771182924509 +3491724,0.0089096525524456 +3491725,0.022463902686263998 +3491726,0.04110170747672 +3491727,0.0149162120638176 +3491728,0.0285110037147832 +3491729,0.0500683970759709 +3491730,0.0299675067041189 +3491731,0.0203202132441574 +3491732,0.0118111649496403 +3491733,0.0101294789520288 +3491734,0.0204084146018491 +3491735,0.0121137293652272 +3491736,0.0364175129718639 +3491737,0.0119716989688096 +3491738,0.0622932464497646 +3491739,0.0156786888837814 +3491740,0.0156786888837814 +3491741,0.0156786888837814 +3491742,0.0461206308513033 +3491743,0.0467896234127045 +3491744,0.023439501750241 +3491745,0.0235771182924509 +3491746,0.0471542365849018 +3491747,0.0227130333616616 +3491748,0.0469451558008329 +3491749,0.017738133053739398 +3491750,0.0089018979665721 +3491751,0.0516623711436311 +3491752,0.0073512438684701 +3491753,0.0081885868786743 +3491754,0.0081720750453841 +3491755,0.0505895520844651 +3491756,0.0166973308943519 +3491757,0.0286998916152433 +3491758,0.0199443247662589 +3491759,0.0118024104717011 +3491760,0.0118182906280775 +3491761,0.0100964559242129 +3491762,0.0094372282390593 +3491763,0.0068820250047803 +3491764,0.0067981927071191 +3491765,0.0122657426256043 +3491766,0.0468412857355166 +3491767,0.0156672866063625 +3491768,0.046741053703551194 +3491769,0.0312372228322351 +3491770,0.0469288000731073 +3491771,0.0156786888837814 +3491772,0.1176837811531556 +3491773,0.0235771182924509 +3491774,0.0446211061486955 +3491775,0.026608925966967803 +3491776,0.0074108818924225 +3491777,0.0073679734341397 +3491778,0.008350265999141 +3491779,0.0081666046753525 +3491780,0.050767216852381905 +3491781,0.016852032393217 +3491782,0.0118094944825001 +3491783,0.0354579861889308 +3491784,0.0301903171391492 +3491785,0.0310354179711555 +3491786,0.024332705843499502 +3491787,0.0081162052229046 +3491788,0.0067899436689913 +3491789,0.0145743160752665 +3491790,0.0155789347045407 +3491791,0.1015865217465149 +3491792,0.0236804208762911 +3491793,0.0235322050707786 +3491794,0.0705745340835141 +3491795,0.0355837196111676 +3491796,0.0088959299027919 +3491797,0.0073834413648466 +3491798,0.040843500984981906 +3491799,0.008169170019846 +3491800,0.0504085990871269 +3491801,0.0168035318816259 +3491802,0.0117976719480037 +3491803,0.0590761370304814 +3491804,0.0110960146239854 +3491805,0.0221326143709566 +3491806,0.0162067571515567 +3491807,0.0081162052229046 +3491808,0.0328783690005614 +3491809,0.0325285615851278 +3491810,0.0313957365592728 +3491811,0.0466191111051287 +3491812,0.0233826993623594 +3491813,0.0231668767623738 +3491814,0.0177583637476525 +3491815,0.0088959299027919 +3491816,0.017804430860912 +3491817,0.0326759100815837 +3491818,0.046683065267468696 +3491819,0.018610166847207198 +3491820,0.016224163290294 +3491821,0.0118452688823918 +3491822,0.0354854089582233 +3491823,0.0110363425742414 +3491824,0.033294364791358 +3491825,0.0081115111674908 +3491826,0.024370346938003003 +3491827,0.0081162052229046 +3491828,0.0069979127150617 +3491829,0.0188990390342462 +3491830,0.2003241989769668 +3491831,0.032589415303608 +3491832,0.0087697333767897 +3491833,0.0092811989046217 +3491834,0.050473044556021696 +3491835,0.0101550323984385 +3491836,0.0086294787951864 +3491837,0.0078260823545282 +3491838,0.0085961594252886 +3491839,0.0110948383808135 +3491840,0.0111401066741274 +3491841,0.0111330934903474 +3491842,0.0406563474451962 +3491843,0.0261400323460919 +3491844,0.0074024448135415 +3491845,0.0125263044610618 +3491846,0.033622208982706 +3491847,0.033622208982706 +3491848,0.0170733837027122 +3491849,0.0085416017536927 +3491850,0.0280480936017123 +3491851,0.0280347103396856 +3491852,0.0504661722145582 +3491853,0.0100579473232529 +3491854,0.0101162623868658 +3491855,0.0086270274786674 +3491856,0.0086227648695994 +3491857,0.007745627386515 +3491858,0.0078016630062965 +3491859,0.0086205526388603 +3491860,0.0332767928203599 +3491861,0.0332245338875033 +3491862,0.0081517568769173 +3491863,0.0081654689778348 +3491864,0.045261074740691 +3491865,0.018484388985476302 +3491866,0.0070481158747498 +3491867,0.012889083331768199 +3491868,0.0191512998415185 +3491869,0.0672357977255227 +3491870,0.10082351690833741 +3491871,0.033622208982706 +3491872,0.0335868537467142 +3491873,0.0597273353042512 +3491874,0.0085419757041765 +3491875,0.0093444739748734 +3491876,0.0467851447066388 +3491877,0.0294445143380873 +3491878,0.0084940999799792 +3491879,0.008627689364734 +3491880,0.0077717600236563 +3491881,0.0232845511449083 +3491882,0.0077840173030038 +3491883,0.0077731909808331 +3491884,0.0134777204355299 +3491885,0.0128264569872155 +3491886,0.0090644398249451 +3491887,0.0464455490022673 +3491888,0.009371881525237 +3491889,0.0073843656089649 +3491890,0.033622208982706 +3491891,0.0646401729968625 +3491892,0.033622208982706 +3491893,0.100866626948118 +3491894,0.0255902906728086 +3491895,0.0093575408682227 +3491896,0.028045739126764502 +3491897,0.0732055625406046 +3491898,0.0081424564556257 +3491899,0.0079702524690818 +3491900,0.0079743676421111 +3491901,0.0077669277547726 +3491902,0.0077448669598988 +3491903,0.0388659165910927 +3491904,0.0077803544545361 +3491905,0.0140367472690596 +3491906,0.042156512279712496 +3491907,0.026152023733020897 +3491908,0.012949361325119 +3491909,0.0472076317266662 +3491910,0.00932287523889 +3491911,0.16811104491353002 +3491912,0.10069741030851731 +3491913,0.0331037042627077 +3491914,0.0093575408682227 +3491915,0.0093543777160099 +3491916,0.0093556770752416 +3491917,0.0242138966871221 +3491918,0.0162259874978501 +3491919,0.023917436524907 +3491920,0.0239115674265039 +3491921,0.0080227523318652 +3491922,0.007661898241278 +3491923,0.0077732460255812 +3491924,0.0232918254247188 +3491925,0.0077792510598167 +3491926,0.0139741557596536 +3491927,0.0281405714114136 +3491928,0.0261079654473943 +3491929,0.013030115970074 +3491930,0.0095296152587306 +3491931,0.0278579209361022 +3491932,0.033622208982706 +3491933,0.033622208982706 +3491934,0.0336113064681324 +3491935,0.0093575408682227 +3491936,0.0093575408682227 +3491937,0.009353580167993 +3491938,0.0054020589297953 +3491939,0.0322618593122592 +3491940,0.0395068719168069 +3491941,0.0239097068950017 +3491942,0.0077697161055966 +3491943,0.015367283749334399 +3491944,0.0307267411274111 +3491945,0.007782265458241 +3491946,0.039062228298171 +3491947,0.0650629536128241 +3491948,0.0319792074104653 +3491949,0.1005369246752898 +3491950,0.0332839466960942 +3491951,0.1007658718606976 +3491952,0.0280135857274455 +3491953,0.0093530409424192 +3491954,0.0093575408682227 +3491955,0.0280721321600507 +3491956,0.0105853779241442 +3491957,0.016170330250600398 +3491958,0.0514339875207026 +3491959,0.0128658162429928 +3491960,0.0166061911337252 +3491961,0.0057292816535158 +3491962,0.0079098656612008 +3491963,0.015953741408234398 +3491964,0.0130175596388846 +3491965,0.0130346954328343 +3491966,0.0073216448966538 +3491967,0.0223247494568096 +3491968,0.0328717048245313 +3491969,0.0657591467748749 +3491970,0.0333565272534642 +3491971,0.0093522469723798 +3491972,0.0093555620080817 +3491973,0.0186666000960625 +3491974,0.0093546937557519 +3491975,0.0159121524903246 +3491976,0.0264635595320363 +3491977,0.0064248041655266 +3491978,0.019251406528646 +3491979,0.0192987243644892 +3491980,0.0192987243644892 +3491981,0.0164433937040585 +3491982,0.0055177772974462 +3491983,0.0053937030024826 +3491984,0.0055564705177159 +3491985,0.0079017859462537 +3491986,0.0198813909666406 +3491987,0.0075108430985351 +3491988,0.024561746045947 +3491989,0.0227139987585898 +3491990,0.0274608571068746 +3491991,0.0093575408682227 +3491992,0.0263803620371684 +3491993,0.0208204397615703 +3491994,0.0211674036088302 +3491995,0.0164507626437573 +3491996,0.0054669853890046 +3491997,0.0053941327158232 +3491998,0.0161811090074478 +3491999,0.026968515012413 +3492000,0.0108377047547384 +3492001,0.0066256087100824 +3492002,0.0071195431182068 +3492003,0.12236121718888669 +3492004,0.1223665914615074 +3492005,0.0997334597019391 +3492006,0.0161523734303682 +3492007,0.0431055421631926 +3492008,0.0107874060049652 +3492009,0.0215748120099304 +3492010,0.0215748120099304 +3492011,0.0371920125699715 +3492012,0.0053935361951189 +3492013,0.0054084614945244 +3492014,0.0067741860354662 +3492015,0.0508492261544821 +3492016,0.0083325232955357 +3492017,0.0053719797691173 +3492018,0.0249307586933201 +3492019,0.010310577954879399 +3492020,0.0215119324730685 +3492021,0.1620924733579158 +3492022,0.0535771553703334 +3492023,0.0068756512392767 +3492024,0.0197031966388319 +3492025,0.0268108541335862 +3492026,0.0053069743131095 +3492027,0.013840144917879 +3492028,0.0094222803436039 +3492029,0.0540308244526386 +3492030,0.049068606631323 +3492031,0.0525893883585817 +3492032,0.0065678509969487 +3492033,0.0065907835834449 +3492034,0.0140563615185331 +3492035,0.0140770965599538 +3492036,0.0540248950016517 +3492037,0.0537094685056385 +3492038,0.0701370725884983 +3492039,0.1600152637028574 +3492040,0.0066014928788843 +3492041,0.0066750305665397 +3492042,0.10802821700365009 +3492043,0.1607263237913412 +3492044,0.0091237321881001 +3492045,0.0281397554857289 +3492046,0.0346463194785506 +3492047,0.050583163404716 +3492048,0.0531308017948784 +3492049,0.0364272441858505 +3492050,0.0089824812524445 +3492051,0.0246461329861397 +3492052,0.0046076441825194 +3492053,0.522583611309528 +3492054,0.2079707940610959 +3492055,0.027291439121354 +3492056,0.0273647911157403 +3492057,0.0046076397411525 +3492058,0.0046157506277008 +3492059,0.004694720825121 +3492060,0.2988480527181158 +3492061,0.2049394769340337 +3492062,0.0522143328190072 +3492063,0.0091386949643492 +3492064,0.0090905350217114 +3492065,0.004592191353349 +3492066,0.013832097188221499 +3492067,0.0461681580469744 +3492068,0.0337370783090591 +3492069,0.009046243128066 +3492070,0.0091195827045925 +3492071,0.004612155740841 +3492072,0.0252938634984541 +3492073,0.0046458396990362 +3492074,0.2355458565671292 +3492075,0.136439314246185 +3492076,0.0034015335737301 +3492077,0.012863241040112 +3492078,0.2024224698543546 +3492079,0.10047709939103089 +3492080,0.0032079732045531 +3492081,0.0032079732045531 +3492082,0.0032325511562672 +3492083,0.1349483132362364 +3492084,0.3369200992909695 +3492085,0.0334906214680996 +3492086,0.0035756351119225 +3492087,0.0032079732045531 +3492088,0.006422718487245399 +3492089,0.013007589719765799 +3492090,0.0281561606036757 +3492091,0.16652610221826458 +3492092,0.0096239196136593 +3492093,0.011104752722800499 +3492094,0.0289171967550437 +3492095,0.0066024550000183 +3492096,0.013614857013143 +3492097,0.0072878393163254 +3492098,0.0653230868127371 +3492099,0.0337370783090591 +3492100,0.0032307135813051 +3492101,0.0287659382565739 +3492102,0.0159355613395726 +3492103,0.0249501597136259 +3492104,0.0500664868154163 +3492105,0.023540009704426 +3492106,0.0064424474257973995 +3492107,0.0104042040831281 +3492108,0.0160096233852093 +3492109,0.0032079732045531 +3492110,0.296211106355108 +3492111,0.074774356518505 +3492112,0.0159043906233931 +3492113,0.0021474824752658 +3492114,0.0032079732045531 +3492115,0.0128318928182124 +3492116,0.0064159464091062 +3492117,0.0096239196136593 +3492118,0.015009927656713901 +3492119,0.0218137216204644 +3492120,0.0025888893413837 +3492121,0.006469122539935099 +3492122,0.006582727936017699 +3492123,0.0128318928182124 +3492124,0.0032079732045531 +3492125,0.0032079732045531 +3492126,0.0032079732045531 +3492127,0.0064159464091062 +3492128,0.006439315339099199 +3492129,0.0193571540191389 +3492130,0.0209261358474661 +3492131,0.0033355100510164 +3492132,0.0098068445678696 +3492133,0.0094832615482383 +3492134,0.0064090689210000995 +3492135,0.0100753568490387 +3492136,0.0032364065702507 +3492137,0.006650166185832401 +3492138,0.062468070834772 +3492139,0.0100456874786265 +3492140,0.0208356663882395 +3492141,0.1458221863807314 +3492142,0.0031356391411367 +3492143,0.0191630097123109 +3492144,0.06317257728761311 +3492145,0.0060665318382296 +3492146,0.0032999241533945003 +3492147,0.0047124407047766 +3492148,0.0206498581185876 +3492149,0.0128589868545532 +3492150,0.0510338355419262 +3492151,0.0026282834518935 +3492152,0.005573149676135 +3492153,0.0040268316279704 +3492154,0.0007882228464683 +3492155,0.0128589868545532 +3492156,0.0128589868545532 +3492157,0.0009051857256418 +3492158,0.0036273916756133 +3492159,0.000711930060491 +3492160,0.0061687043312973 +3492161,0.0247829482806249 +3492162,0.0127331624350183 +3492163,0.0386033186594006 +3492164,0.0385769605636596 +3492165,0.0018523271225887 +3492166,0.0071233145532697 +3492167,0.0006595614937569 +3492168,0.0034562077013499002 +3492169,0.0642728874580312 +3492170,0.0644919724628517 +3492171,0.0384545147153464 +3492172,0.0128589868545532 +3492173,0.0010643160665494 +3492174,0.0047679287324536 +3492175,0.025055383103286602 +3492176,0.0128589868545532 +3492177,0.0385502525686729 +3492178,0.0128589868545532 +3492179,0.064294934272766 +3492180,0.0128589868545532 +3492181,0.0514359474182128 +3492182,0.0898762245884891 +3492183,0.0771539211273192 +3492184,0.0383760459976496 +3492185,0.0128589868545532 +3492186,0.0128589868545532 +3492187,0.038342215041956604 +3492188,0.0128589868545532 +3492189,0.038532657243166 +3492190,0.0514359474182128 +3492191,0.0128589868545532 +3492192,0.0128589868545532 +3492193,0.0631187126226525 +3492194,0.0505526211068063 +3492195,0.0128589868545532 +3492196,0.0385559393012895 +3492197,0.0257179737091064 +3492198,0.012301427145825 +3492199,0.0385621554685619 +3492200,0.0385769605636596 +3492201,0.064294934272766 +3492202,0.1407182765906994 +3492203,0.0381662825426378 +3492204,0.0127405687449152 +3492205,0.019779963250702498 +3492206,0.029450902848273 +3492207,0.0145676724921574 +3492208,0.0045668985694646 +3492209,0.0171820484217179 +3492210,0.0287927672424909 +3492211,0.0138572978295059 +3492212,0.0137450855254313 +3492213,0.0057864687405526 +3492214,0.0057091946218715 +3492215,0.014032851612410802 +3492216,0.0046157356694275 +3492217,0.0057864687405526 +3492218,0.0172863323470959 +3492219,0.0325401150293189 +3492220,0.0046206388525401 +3492221,0.009160020140164801 +3492222,0.0288638474350904 +3492223,0.017359406221657797 +3492224,0.0277202107539471 +3492225,0.0060247574406291 +3492226,0.0057745802182537 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001080900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001080900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001080900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001081900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001081900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001081900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001082000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001082000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001082000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001082100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001082100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001082100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001082200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001082200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001082200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001082300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001082300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..170872051 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001082300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0551791558936959 +3490292,0.0886552000781487 +3490293,0.0136062810197472 +3490316,0.0272125620394944 +3490317,0.068031405098736 +3490332,0.0408188430592416 +3490333,0.0415332274185474 +3490334,0.0824354666581029 +3490335,0.0136062810197472 +3490348,0.0140968740876093 +3490349,0.0145813793869185 +3490350,0.0136062810197472 +3490351,0.0408188430592416 +3490374,0.0318019651219084 +3490375,0.09042682925169279 +3490376,0.0838855795393327 +3490377,0.0273996721684736 +3490378,0.0272125620394944 +3490379,0.12264537572397011 +3490396,0.0149972029391457 +3490397,0.0300477351993322 +3490398,0.040820338990143604 +3490399,0.0272125620394944 +3490418,0.0819941461908055 +3490419,0.0136062810197472 +3490437,0.013625694631867 +3490438,0.0682386366633117 +3490439,0.0282869135699959 +3490440,0.0136063033681742 +3490457,0.0450759972346577 +3490458,0.0455651661207953 +3490459,0.0272125620394944 +3490460,0.0659003508901983 +3490476,0.0271435837232962 +3490477,0.0405225081845761 +3490478,0.016928244382143 +3490479,0.016928244382143 +3490499,0.0716055301237415 +3490500,0.0084641221910715 +3490517,0.0161951910557665 +3490518,0.0283265118117984 +3490519,0.033856488764286 +3490520,0.042320610955357496 +3490544,0.0084641221910715 +3490545,0.0084802455754305 +3490546,0.016928244382143 +3490547,0.008467911839073 +3490573,0.025324585985892302 +3490574,0.0084641221910715 +3490575,0.0085889930784067 +3490576,0.0166423012939989 +3490597,0.023850020498290898 +3490598,0.0228729009854079 +3490599,0.0087859081071542 +3490600,0.0283521174297332 +3490601,0.015102460591036 +3490602,0.015192799506143901 +3490603,0.0176190590031019 +3490604,0.0174212875745941 +3490623,0.0075468178838491 +3490624,0.0150936357676982 +3490625,0.0139488987564395 +3490626,0.0498648180405508 +3490639,0.0075468178838491 +3490640,0.0301872715353964 +3490641,0.0155837486250094 +3490642,0.041468156631403 +3490643,0.0696793520998911 +3490644,0.0166325252503156 +3490645,0.0165837761631802 +3490658,0.0150936357676982 +3490659,0.0075468178838491 +3490660,0.0975239784774299 +3490661,0.0419009010521057 +3490662,0.1164771549934571 +3490663,0.0166325252503156 +3490664,0.0165547489617845 +3490665,0.0497895341786309 +3490681,0.038127154957901296 +3490682,0.0075468178838491 +3490683,0.0075468178838491 +3490684,0.0150936357676982 +3490685,0.0136763337641843 +3490686,0.0139831243073866 +3490687,0.016738728890246 +3490688,0.0166767573741707 +3490689,0.0166102111080856 +3490690,0.0166325252503156 +3490707,0.0150936357676982 +3490708,0.0075468178838491 +3490709,0.0077580545347752 +3490710,0.0075468178838491 +3490725,0.0075213249055557 +3490726,0.0075468178838491 +3490727,0.0226404536515473 +3490728,0.0303012775055771 +3490736,0.052895453953598896 +3490737,0.037984182218547 +3490738,0.1076001113674184 +3490739,0.0409369579035744 +3490747,0.2983230771923986 +3490748,0.0097858165166851 +3490757,0.0259440460641969 +3490758,0.0207930224524484 +3490771,0.0194437493117253 +3490772,0.0064965714456548 +3490773,0.0071076608006275 +3490774,0.012972068285810701 +3490787,0.0128995219916118 +3490788,0.0071346327374603 +3490789,0.0452442073813939 +3490790,0.066347562106679 +3490805,0.0062728713223332 +3490806,0.0198478321236816 +3490807,0.0128319961950182 +3490808,0.0268326573182056 +3490809,0.0096018674916329 +3490810,0.009794235787013 +3490827,0.0052493581032955 +3490828,0.0053693094140169 +3490842,0.0155154036264357 +3490843,0.0051707248203456 +3490844,0.0052530031374707 +3490845,0.016111952039310498 +3490856,0.0051707248203456 +3490857,0.0055109933074863 +3490858,0.0051707248203456 +3490859,0.0158228881793556 +3490860,0.0053330399096012 +3490861,0.0267180501982755 +3490875,0.0051707248203456 +3490876,0.0051707248203456 +3490877,0.016456173832289 +3490878,0.0055793309312071 +3490879,0.0106660798192024 +3490892,0.0155121744610368 +3490893,0.0155121744610368 +3490894,0.0053330399096012 +3490895,0.0061243437497111 +3490900,0.0051684593226267 +3490901,0.0050400428527038 +3490902,0.0158512177876131 +3490903,0.0155142100508125 +3490904,0.0229628655585433 +3490905,0.0171788999399883 +3490906,0.0187531620522099 +3490907,0.07178777647269691 +3490916,0.0155365303744531 +3490917,0.0052088094398492 +3490918,0.0051661597856521 +3490919,0.0051730627446363 +3490920,0.005347993572844 +3490921,0.0124644497162352 +3490922,0.0164247095597627 +3490923,0.1528344158353346 +3490924,0.006790807022886 +3490925,0.0481892370152558 +3490926,0.131278707725149 +3490935,0.0049906980158767 +3490936,0.0059036733830951 +3490937,0.0231097275393506 +3490938,0.0221503549778866 +3490939,0.0186826269619355 +3490940,0.0184455340057985 +3490941,0.0149080694548179 +3490942,0.0147251855282151 +3490953,0.0051391884595398 +3490954,0.0051720262659003 +3490955,0.0053540823872802 +3490956,0.0081006285900329 +3490957,0.0166002962915417 +3490958,0.016457750251592 +3490959,0.0184720270335672 +3490960,0.0184577603189377 +3490966,0.0147002474404869 +3490967,0.0049000824801623 +3490968,0.0119450103779653 +3490969,0.0138446796677412 +3490970,0.1153134944496669 +3490971,0.0162766497221114 +3490972,0.0630910195585424 +3490973,0.0158004488337739 +3490974,0.0061573423445224 +3490975,0.0185676073126754 +3490980,0.0147369858020048 +3490981,0.0049128823866365 +3490982,0.0049200322032293 +3490983,0.0352408896853877 +3490984,0.0688138385957968 +3490985,0.1530504219958978 +3490986,0.0163475545433642 +3490987,0.0491330378004797 +3490988,0.0488774639505517 +3490989,0.0158230748873124 +3490990,0.04738639949499811 +3490991,0.0157593511807212 +3490992,0.0061573423445224 +3490993,0.0061573423445224 +3490994,0.021698787775263 +3490995,0.0061573423445224 +3490999,0.0049098146919609 +3491000,0.0049499480014886 +3491001,0.0104607727588942 +3491002,0.0150661112279639 +3491003,0.0139400532171552 +3491004,0.013951520101847 +3491005,0.0491618328571257 +3491006,0.0816296314940861 +3491007,0.020105140013792 +3491008,0.019141380225299 +3491009,0.0309091496211297 +3491010,0.0184074719696759 +3491013,0.0076650669246848 +3491014,0.0114770443676419 +3491015,0.0490391360023261 +3491016,0.049031810839517104 +3491017,0.15380936341482382 +3491018,0.0103145168043732 +3491019,0.030838009637924102 +3491020,0.0061573423445224 +3491021,0.0107787149026988 +3491022,0.006781210928811 +3491023,0.0122775987593075 +3491024,0.0062194962899589 +3491025,0.053749125731643005 +3491026,0.0179274989257845 +3491027,0.011773106025561 +3491028,0.0064369583995883 +3491029,0.0053893574513494 +3491030,0.0277833396374976 +3491031,0.0286847947374102 +3491032,0.0214869610509331 +3491033,0.0119033671252756 +3491034,0.0123883159831166 +3491035,0.0122502716302184 +3491036,0.0178809045033338 +3491037,0.0179306603968143 +3491038,0.0071915913981167 +3491039,0.083495140064686 +3491040,0.0053893574513494 +3491041,0.0161680723540482 +3491042,0.0120434323325753 +3491043,0.01158012732984 +3491044,0.0121984857147009 +3491045,0.0615853510628645 +3491046,0.0179306603968143 +3491047,0.0179011008835422 +3491048,0.006502687949764 +3491049,0.0063938400708138 +3491050,0.0500322057328315 +3491051,0.0166779245654972 +3491052,0.0053893574513494 +3491053,0.0271549142115704 +3491054,0.036141139857668 +3491055,0.0359435264901212 +3491056,0.0122438271144749 +3491057,0.0853676719403709 +3491058,0.0179306603968143 +3491059,0.0537157469052012 +3491060,0.0321694480788442 +3491061,0.0063938400708138 +3491062,0.0193165034051298 +3491063,0.0319954749856845 +3491064,0.0165923928535668 +3491065,0.0833280879133127 +3491066,0.0161680723540482 +3491067,0.0053893574513494 +3491068,0.0062732701058446 +3491069,0.0054484195381796 +3491070,0.0098259043170244 +3491071,0.0241553348687726 +3491072,0.1250669790331989 +3491073,0.0537754789258403 +3491074,0.0063938400708138 +3491075,0.0575992319629967 +3491076,0.0498882980763061 +3491077,0.0166774517649471 +3491078,0.0529722173837746 +3491079,0.021988556172862498 +3491080,0.0167220118126649 +3491081,0.0054522122807854 +3491082,0.0170238042942013 +3491083,0.0178996870165757 +3491084,0.0179306603968143 +3491085,0.0179306603968143 +3491086,0.019652576748969 +3491087,0.0193008195711543 +3491088,0.019560531854939202 +3491089,0.033756549484814505 +3491090,0.0163693679938244 +3491091,0.0167090582755166 +3491092,0.0163293325689789 +3491093,0.0056929351919651 +3491094,0.0537919811904429 +3491095,0.0895892294499289 +3491096,0.0190754909983782 +3491097,0.0063547797087556 +3491098,0.026883826240875798 +3491099,0.0075080543017756 +3491100,0.0157034624279785 +3491101,0.0296938743765724 +3491102,0.066180440292271 +3491103,0.08958869789389151 +3491104,0.0896527483646885 +3491105,0.0125935217950614 +3491106,0.031252573665547 +3491107,0.0224619326716295 +3491108,0.0134535490454529 +3491109,0.0287987255277189 +3491110,0.0393878088085013 +3491111,0.0481197071283538 +3491112,0.0058558252640068 +3491113,0.1078863612937995 +3491114,0.0766322867411881 +3491115,0.1245618171049539 +3491116,0.0895146970323869 +3491117,0.004201296268602 +3491118,0.0204952940216886 +3491119,0.040678410152864 +3491120,0.0203873066925575 +3491121,0.0133539180692923 +3491122,0.005252576247185 +3491123,0.0149710440904654 +3491124,0.0376866188820918 +3491125,0.0177783685461929 +3491126,0.09736459565377109 +3491127,0.0060454098546346 +3491128,0.0422084047216869 +3491129,0.0151992637390483 +3491130,0.0153931332752108 +3491131,0.029957789565734298 +3491132,0.045575523326807 +3491133,0.004092785064131 +3491134,0.0040937554523729 +3491135,0.0067968457005918 +3491136,0.0747243456600129 +3491137,0.0401466442411493 +3491138,0.0460428159637395 +3491139,0.0845867294498219 +3491140,0.0116618877809476 +3491141,0.1023791916798413 +3491142,0.0058818853512126 +3491143,0.0064934197157345 +3491144,0.0452988685616714 +3491145,0.0153931332752108 +3491146,0.0164892890788469 +3491147,0.0040943158531249 +3491148,0.0067968457005918 +3491149,0.0044536148197948 +3491150,0.0044511126214957 +3491151,0.0154994788091308 +3491152,0.0154581428552185 +3491153,0.013170420192182 +3491154,0.0403365148395336 +3491155,0.0721343332212951 +3491156,0.12166986015952691 +3491157,0.034075592998876206 +3491158,0.0573540670873076 +3491159,0.0083803692674317 +3491160,0.012294160668135599 +3491161,0.0271873828023672 +3491162,0.0067968457005918 +3491163,0.0133871601104342 +3491164,0.013553432677602801 +3491165,0.0463558623086929 +3491166,0.0152647168516605 +3491167,0.0395668076294534 +3491168,0.039535512689949204 +3491169,0.0724111892660725 +3491170,0.0120686711743474 +3491171,0.0679510604434005 +3491172,0.0164400470921509 +3491173,0.0225836023935177 +3491174,0.022719009145559098 +3491175,0.0041709750647236 +3491176,0.0204059011494807 +3491177,0.0068275609668738 +3491178,0.0067968457005918 +3491179,0.0203905371017754 +3491180,0.0045459344739155 +3491181,0.0617863088726974 +3491182,0.0464744800994626 +3491183,0.0922785479680388 +3491184,0.1188193501262072 +3491185,0.0121456648946282 +3491186,0.0123993726768737 +3491187,0.0482746846973896 +3491188,0.0726658300522159 +3491189,0.1699844506234573 +3491190,0.050771970367641694 +3491191,0.0076246983046052 +3491192,0.022535307192314998 +3491193,0.0067968457005918 +3491194,0.0067968457005918 +3491195,0.0126652107557943 +3491196,0.1389018100297742 +3491197,0.0920193378374311 +3491198,0.1053509270989149 +3491199,0.0608823856568904 +3491200,0.0489717171530237 +3491201,0.08481894498203471 +3491202,0.034000027924776 +3491203,0.0079971582677848 +3491204,0.0376861198891523 +3491205,0.02112531809963 +3491206,0.0067968457005918 +3491207,0.0271763457137566 +3491208,0.0135970966198304 +3491209,0.0064530007867846 +3491210,0.005104911016817 +3491211,0.0680842060656409 +3491212,0.032443684925084704 +3491213,0.1183579415594634 +3491214,0.0509618772965694 +3491215,0.017000013962388 +3491216,0.017000013962388 +3491217,0.037612757813122 +3491218,0.0375423026931098 +3491219,0.0138209815261918 +3491220,0.0475779199041426 +3491221,0.0344193055382704 +3491222,0.0271873828023672 +3491223,0.006239490509375 +3491224,0.0063465871378403 +3491225,0.0485251933118072 +3491226,0.0223111562725533 +3491227,0.0231773927807807 +3491228,0.0463009058452193 +3491229,0.0643893378765351 +3491230,0.032039825778087505 +3491231,0.051000041887164005 +3491232,0.0169825263798718 +3491233,0.0153394730158341 +3491234,0.0150108702909524 +3491235,0.0748407644900465 +3491236,0.006796134580867 +3491237,0.0146708293882771 +3491238,0.0067754772431262 +3491239,0.0064792934194254 +3491240,0.0062450097230023 +3491241,0.0053482594980619 +3491242,0.00807298619727 +3491243,0.0074191023595631 +3491244,0.007470711370143 +3491245,0.0692746247126419 +3491246,0.11588696390390349 +3491247,0.0545228801064762 +3491248,0.0106202932074666 +3491249,0.017000013962388 +3491250,0.017000013962388 +3491251,0.007507386835636 +3491252,0.0341683331538644 +3491253,0.0067968457005918 +3491254,0.0067911292091618 +3491255,0.0188076760862298 +3491256,0.0124935889616608 +3491257,0.019189535432513498 +3491258,0.012507942890679299 +3491259,0.0077359064460648 +3491260,0.0073193331036434 +3491261,0.025719907441268598 +3491262,0.0260367807643632 +3491263,0.0074191023595631 +3491264,0.015033197679092801 +3491265,0.0927095711231228 +3491266,0.0693190870925464 +3491267,0.0231773927807807 +3491268,0.0228820265579654 +3491269,0.0752390470253288 +3491270,0.0531615557821532 +3491271,0.0506640267845272 +3491272,0.017000013962388 +3491273,0.10200008377432801 +3491274,0.118397220103929 +3491275,0.0338685124414586 +3491276,0.0270275459863137 +3491277,0.0062467944808304 +3491278,0.0063506839811153 +3491279,0.008330600128684 +3491280,0.0081065928465011 +3491281,0.0081047541605482 +3491282,0.0074275389150687 +3491283,0.0296668049191068 +3491284,0.0258004284079836 +3491285,0.0261125233749048 +3491286,0.0227860383699221 +3491287,0.0229264665835998 +3491288,0.0231773927807807 +3491289,0.0463438933046313 +3491290,0.0765732197248869 +3491291,0.0227375434539992 +3491292,0.0678102921369482 +3491293,0.0169363780852411 +3491294,0.016271179263189 +3491295,0.020390151369584 +3491296,0.0475264755365307 +3491297,0.0784628417202458 +3491298,0.0187889410301867 +3491299,0.0093379005161961 +3491300,0.0048647302161943 +3491301,0.0081347492454932 +3491302,0.024145566143507102 +3491303,0.025333420591819 +3491304,0.008651904189941 +3491305,0.0074261157108917 +3491306,0.0370177029371723 +3491307,0.008276013303172 +3491308,0.0086008473584322 +3491309,0.0260282743828331 +3491310,0.015626263658111702 +3491311,0.0927095711231228 +3491312,0.0231773927807807 +3491313,0.0163553965177141 +3491314,0.0139876442841919 +3491315,0.0067853678004905 +3491316,0.0203905371017754 +3491317,0.0067968457005918 +3491318,0.0188131372075332 +3491319,0.0093786968779731 +3491320,0.0093731108500104 +3491321,0.0093796271830797 +3491322,0.0151914997675997 +3491323,0.0238649223071415 +3491324,0.016322041717079898 +3491325,0.0081243604118248 +3491326,0.0116145716443908 +3491327,0.0120369106771078 +3491328,0.0296694556208457 +3491329,0.0074015222489833 +3491330,0.0077479789823789 +3491331,0.0087910429497292 +3491332,0.0695321783423421 +3491333,0.0231773927807807 +3491334,0.25495132058858766 +3491335,0.0925632998943592 +3491336,0.015326528521866601 +3491337,0.0154996409596374 +3491338,0.0178076578844283 +3491339,0.0107872963427618 +3491340,0.0067968457005918 +3491341,0.0203905371017754 +3491342,0.0093796271830797 +3491343,0.0468981359153985 +3491344,0.0047444407277286 +3491345,0.0047341947297631 +3491346,0.0348676206936347 +3491347,0.0349717750583301 +3491348,0.0121339792612482 +3491349,0.0364297628402709 +3491350,0.0222114138697109 +3491351,0.0222045667469499 +3491352,0.052307576483261196 +3491353,0.0075176731327002 +3491354,0.0088133517203452 +3491355,0.017919040008315297 +3491356,0.0693351302842185 +3491357,0.0659233528180112 +3491358,0.0221649537670088 +3491359,0.0231773927807807 +3491360,0.3243551572496024 +3491361,0.0695321783423421 +3491362,0.010286613073588 +3491363,0.0103959183022539 +3491364,0.0102769891446553 +3491365,0.0103172685178359 +3491366,0.0040457868551015 +3491367,0.0041520474088997 +3491368,0.0047122549695361 +3491369,0.0271863467220439 +3491370,0.0067968457005918 +3491371,0.020390535411072698 +3491372,0.013590960752690201 +3491373,0.0187555697596008 +3491374,0.0093796271830797 +3491375,0.0093796271830797 +3491376,0.0187704983761866 +3491377,0.004724555183202 +3491378,0.024563818395888497 +3491379,0.0116142815163247 +3491380,0.0116452574782549 +3491381,0.0121293720185904 +3491382,0.0121432542800903 +3491383,0.0121432542800903 +3491384,0.0118881650901256 +3491385,0.0074294256878727 +3491386,0.0296062184708916 +3491387,0.0149408182142814 +3491388,0.022416700284192098 +3491389,0.0088017183449931 +3491390,0.0436466927365251 +3491391,0.0088403961492001 +3491392,0.0693539579208344 +3491393,0.25495132058858766 +3491394,0.004715469448357 +3491395,0.0257793098577409 +3491396,0.014405369292944399 +3491397,0.0048125731812828 +3491398,0.0067968457005918 +3491399,0.033983967736334 +3491400,0.00937507649156 +3491401,0.0093796271830797 +3491402,0.0188546453891796 +3491403,0.0094507938321735 +3491404,0.0079092146747185 +3491405,0.0277880329991134 +3491406,0.0485906424277531 +3491407,0.0097191706299781 +3491408,0.0116274732843794 +3491409,0.0116500295426062 +3491410,0.0116247241807777 +3491411,0.0121757701693143 +3491412,0.0121432542800903 +3491413,0.024301659832073302 +3491414,0.0243748683175002 +3491415,0.0121432542800903 +3491416,0.060541635058300305 +3491417,0.0149323511810664 +3491418,0.051919626294485 +3491419,0.0074705403849202 +3491420,0.0073968990443818 +3491421,0.0165309050246527 +3491422,0.10252340040125191 +3491423,0.1617928907532078 +3491424,0.0463547855615614 +3491425,0.0249256934216774 +3491426,0.0043281179744547 +3491427,0.0144534255975265 +3491428,0.0048017897643148 +3491429,0.0203905371017754 +3491430,0.0203905371017754 +3491431,0.0067917291802172 +3491432,0.0093792152322518 +3491433,0.0093796271830797 +3491434,0.0093796271830797 +3491435,0.0093796271830797 +3491436,0.0090867290273308 +3491437,0.027260187081992404 +3491438,0.0291575118899343 +3491439,0.0096984947503583 +3491440,0.021930547425298798 +3491441,0.0229909168731644 +3491442,0.0112900929095274 +3491443,0.0112628534509896 +3491444,0.0149446912201099 +3491445,0.0074058641660889 +3491446,0.0075946497782042 +3491447,0.021900831949455 +3491448,0.0079796377060636 +3491449,0.0660643829407223 +3491450,0.0223248545080423 +3491451,0.0927095711231228 +3491452,0.0231075305395905 +3491453,0.0231773927807807 +3491454,0.0690736996310172 +3491455,0.0106555856764316 +3491456,0.0539372215088294 +3491457,0.004661240284836 +3491458,0.0136265649591471 +3491459,0.0180967574217546 +3491460,0.0050425500128688 +3491461,0.0106867772905293 +3491462,0.0048193739309013 +3491463,0.013572565784219299 +3491464,0.0067602903757425 +3491465,0.0203905371017754 +3491466,0.0067968457005918 +3491467,0.0093348590180982 +3491468,0.0093796271830797 +3491469,0.0093796271830797 +3491470,0.0658164874213917 +3491471,0.0094098722633518 +3491472,0.0091039040540379 +3491473,0.0454836623142494 +3491474,0.0097191706299781 +3491475,0.0291289070806665 +3491476,0.0072443726394206 +3491477,0.0429008988366926 +3491478,0.0097620838066393 +3491479,0.021896449749284203 +3491480,0.0148169126447366 +3491481,0.0221717873600749 +3491482,0.0669745635241269 +3491483,0.0927095711231228 +3491484,0.0201883736461143 +3491485,0.0228819996753671 +3491486,0.0307056020161142 +3491487,0.0318383648947474 +3491488,0.0530764121220173 +3491489,0.0106555856764316 +3491490,0.0045398236252367 +3491491,0.009093250687522099 +3491492,0.0067565510165152 +3491493,0.0067924398749795 +3491494,0.0067968457005918 +3491495,0.0135936914011836 +3491496,0.0281063514630676 +3491497,0.0093796271830797 +3491498,0.0093796271830797 +3491499,0.0094064153254356 +3491500,0.0272787598304814 +3491501,0.0090921150302699 +3491502,0.0096661632770159 +3491503,0.006473562263508 +3491504,0.0062803764697947 +3491505,0.023972572305661 +3491506,0.0097431095548586 +3491507,0.015330841856949402 +3491508,0.0229063264581726 +3491509,0.0652515531952256 +3491510,0.0669745635241269 +3491511,0.0231773927807807 +3491512,0.02045774878111 +3491513,0.0690081965158967 +3491514,0.0323128905942582 +3491515,0.0106555856764316 +3491516,0.0117543372861646 +3491517,0.0227164960795972 +3491518,0.0227020623192314 +3491519,0.0067460688468514 +3491520,0.0203894627236039 +3491521,0.0340631478193579 +3491522,0.0093714573910911 +3491523,0.0093785799473312 +3491524,0.0281181731920218 +3491525,0.0469202192775032 +3491526,0.018194969638048203 +3491527,0.0092530156868558 +3491528,0.0181497219756474 +3491529,0.0090867290273308 +3491530,0.0064771773278938 +3491531,0.0064468242740558 +3491532,0.014351395358907799 +3491533,0.009641907806216099 +3491534,0.0194005748396856 +3491535,0.0231773927807807 +3491536,0.018585583125895 +3491537,0.0229090411628568 +3491538,0.0424994672381724 +3491539,0.0087629653198447 +3491540,0.0106555856764316 +3491541,0.0321092826043373 +3491542,0.0137448630072298 +3491543,0.0045398236252367 +3491544,0.0045841188551966 +3491545,0.0210925604709209 +3491546,0.0203905371017754 +3491547,0.0132969307868454 +3491548,0.0067720288553657 +3491549,0.027260187081992404 +3491550,0.027260187081992404 +3491551,0.0181736454347991 +3491552,0.045418928689012594 +3491553,0.0194066634530091 +3491554,0.0064404176582878 +3491555,0.0051563515278466 +3491556,0.12613358283690249 +3491557,0.0182694671801395 +3491558,0.023114655931198 +3491559,0.06952117044668879 +3491560,0.0106555856764316 +3491561,0.0106555856764316 +3491562,0.053277928382158 +3491563,0.0106651482571917 +3491564,0.0137643613527603 +3491565,0.009117807224641599 +3491566,0.0046106655927643 +3491567,0.0069885251875945 +3491568,0.0273356192929632 +3491569,0.0068124053501312 +3491570,0.0093684070306114 +3491571,0.027260187081992404 +3491572,0.027261145412217802 +3491573,0.012925080113942701 +3491574,0.0194613127804606 +3491575,0.054010660180685996 +3491576,0.0180310383439064 +3491577,0.0180310383439064 +3491578,0.0182055894589462 +3491579,0.0104593760141118 +3491580,0.0105974513054261 +3491581,0.0106555856764316 +3491582,0.0045941801798749 +3491583,0.0092275375200816 +3491584,0.048154118124940304 +3491585,0.027266030720827103 +3491586,0.009131594994273 +3491587,0.0090867290273308 +3491588,0.0272629845912015 +3491589,0.0217491515326787 +3491590,0.0122759470189136 +3491591,0.0088135251636983 +3491592,0.0184129526927133 +3491593,0.0180310383439064 +3491594,0.0176558625367854 +3491595,0.016625271476675 +3491596,0.0101077002426899 +3491597,0.0284897046900678 +3491598,0.0981771836800012 +3491599,0.0048635928763841 +3491600,0.0135105500956598 +3491601,0.0387340398081667 +3491602,0.0091461444734786 +3491603,0.018420431918866102 +3491604,0.0365553197242091 +3491605,0.08170510803735681 +3491606,0.0090930494129238 +3491607,0.0329736827941413 +3491608,0.0110990025126712 +3491609,0.0281574074247197 +3491610,0.0424285879067504 +3491611,0.0069834960920445 +3491612,0.0071990738322854 +3491613,0.0201962618560345 +3491614,0.0243900348512637 +3491615,0.0070820545215313 +3491616,0.0070203480469824 +3491617,0.0188772907175981 +3491618,0.0805696145982907 +3491619,0.0197099501707967 +3491620,0.0131239023049316 +3491621,0.0130107449367642 +3491622,0.0130107449367642 +3491623,0.0111301737579733 +3491624,0.0110645741224288 +3491625,0.022165467415814002 +3491626,0.0141791896894574 +3491627,0.042537569068372194 +3491628,0.008209587992223 +3491629,0.0073147515985401 +3491630,0.0351140821897276 +3491631,0.0243975818157196 +3491632,0.0730621218901302 +3491633,0.0243975818157196 +3491634,0.0069979120189477 +3491635,0.0210855883980594 +3491636,0.0117316780900629 +3491637,0.0298110365745555 +3491638,0.0278869282559853 +3491639,0.0272186416439933 +3491640,0.0198490788964833 +3491641,0.0201817629946048 +3491642,0.0098852691492875 +3491643,0.0130107449367642 +3491644,0.012796167009839 +3491645,0.0129594861983559 +3491646,0.0110645741224288 +3491647,0.0110933459559457 +3491648,0.0141791896894574 +3491649,0.0141667399237921 +3491650,0.0281294706480594 +3491651,0.0085697621826041 +3491652,0.0429678247783469 +3491653,0.081095842423442 +3491654,0.12164193051177591 +3491655,0.0069943478043724 +3491656,0.0300572333559179 +3491657,0.0199400057052653 +3491658,0.0825614576380274 +3491659,0.0838729131629828 +3491660,0.0295763852526715 +3491661,0.0289063637952896 +3491662,0.0129073127376445 +3491663,0.0130107449367642 +3491664,0.0120808085209818 +3491665,0.0119344304125399 +3491666,0.055353750914242106 +3491667,0.0331937402000031 +3491668,0.0221291482448576 +3491669,0.0224132475108859 +3491670,0.0141791896894574 +3491671,0.042537565533940294 +3491672,0.0140523035277223 +3491673,0.008514211513102 +3491674,0.0089695092240647 +3491675,0.0098087951276307 +3491676,0.0170916121020113 +3491677,0.0731927454471588 +3491678,0.0241859838083948 +3491679,0.0102117046893608 +3491680,0.0095532569656813 +3491681,0.1398675981909035 +3491682,0.19489859741316462 +3491683,0.0277944290754848 +3491684,0.0296303826805134 +3491685,0.029671662096480103 +3491686,0.0259390502759588 +3491687,0.0129422341161695 +3491688,0.0113045554525472 +3491689,0.0063508724197914 +3491690,0.0121623544492977 +3491691,0.0110107625540346 +3491692,0.0330519494962708 +3491693,0.0332001275475165 +3491694,0.042504218151715 +3491695,0.0425028067398998 +3491696,0.0141791896894574 +3491697,0.0140931881709402 +3491698,0.0257364163078393 +3491699,0.038150665909573105 +3491700,0.0243975818157196 +3491701,0.0243975818157196 +3491702,0.0483942800666464 +3491703,0.0237897097955843 +3491704,0.0101723880829177 +3491705,0.0297995292040052 +3491706,0.1609875108362763 +3491707,0.0559470392763614 +3491708,0.0094706595601739 +3491709,0.0085990126609882 +3491710,0.0093644312167906 +3491711,0.0103899857384429 +3491712,0.0254424916580104 +3491713,0.0331799158708188 +3491714,0.0554056298916564 +3491715,0.0141791896894574 +3491716,0.0141791896894574 +3491717,0.042537569068372194 +3491718,0.0141596504118802 +3491719,0.0106826254819373 +3491720,0.0243975818157196 +3491721,0.0731927454471588 +3491722,0.0239560392110503 +3491723,0.0243975818157196 +3491724,0.0083998008134017 +3491725,0.0208738866513204 +3491726,0.039590625243930394 +3491727,0.0145065238049021 +3491728,0.0278898541060479 +3491729,0.0489684894790018 +3491730,0.0270975100498299 +3491731,0.0183623735411966 +3491732,0.0111108458475164 +3491733,0.0093996691274057 +3491734,0.018823218758683202 +3491735,0.0110717943463756 +3491736,0.0331887499130655 +3491737,0.0109658473146457 +3491738,0.056345128937276695 +3491739,0.0141791896894574 +3491740,0.0141791896894574 +3491741,0.0141791896894574 +3491742,0.0417684710694108 +3491743,0.048412062806206496 +3491744,0.0242533395989858 +3491745,0.0243975818157196 +3491746,0.0487951636314392 +3491747,0.0233727286770286 +3491748,0.0485812185755747 +3491749,0.016716468504150803 +3491750,0.0083914708851978 +3491751,0.0479160207421698 +3491752,0.0068155755288898 +3491753,0.0078871851997447 +3491754,0.007869457602326 +3491755,0.0492657469353218 +3491756,0.0162587305084915 +3491757,0.0280805860287639 +3491758,0.018019600957488502 +3491759,0.011116608939376 +3491760,0.0111308168170618 +3491761,0.0093673840165138 +3491762,0.0087733693534813 +3491763,0.0063489345014381 +3491764,0.0062690786535253 +3491765,0.0112539179679589 +3491766,0.0423658375463004 +3491767,0.0141691367001904 +3491768,0.0423050250002128 +3491769,0.028264221272420897 +3491770,0.0424559580100603 +3491771,0.0141791896894574 +3491772,0.1217746631740821 +3491773,0.0243975818157196 +3491774,0.042072408086670905 +3491775,0.0250764573913681 +3491776,0.0068705394626363 +3491777,0.0068332303407389 +3491778,0.0080462573354173 +3491779,0.0078655574470758 +3491780,0.0494424519907729 +3491781,0.0164109375327825 +3491782,0.0111267215469902 +3491783,0.0333901384378096 +3491784,0.0283516589030119 +3491785,0.0290193547323204 +3491786,0.0227196739012972 +3491787,0.0075785801745951 +3491788,0.0062613934278488 +3491789,0.0133025710633644 +3491790,0.014100558419779 +3491791,0.10467426809802001 +3491792,0.0244875292367469 +3491793,0.024347905736637 +3491794,0.073010113292396 +3491795,0.0335421487689016 +3491796,0.0083855371922254 +3491797,0.0068445867288617 +3491798,0.0393389371095679 +3491799,0.0078673864351949 +3491800,0.0490921049023827 +3491801,0.016363535203166 +3491802,0.0111182564383728 +3491803,0.0556505383716496 +3491804,0.0106158594724958 +3491805,0.0211718647756753 +3491806,0.015131682584943601 +3491807,0.0075785801745951 +3491808,0.0307358942021065 +3491809,0.032720342921630396 +3491810,0.0311172183271343 +3491811,0.0481775107936664 +3491812,0.0241825455794675 +3491813,0.0239110123770687 +3491814,0.016748647059656202 +3491815,0.0083855371922254 +3491816,0.0167657965181359 +3491817,0.0314719122198224 +3491818,0.0455876756205681 +3491819,0.0180698099497761 +3491820,0.0157944657562364 +3491821,0.0111659849758959 +3491822,0.0334196490595951 +3491823,0.0105516759150555 +3491824,0.0318521042887643 +3491825,0.0075685091946662 +3491826,0.0227578935142997 +3491827,0.0075785801745951 +3491828,0.0068287508831405 +3491829,0.0184249157381604 +3491830,0.19747502605567452 +3491831,0.0321232170587615 +3491832,0.0083109394132759 +3491833,0.0086091568938542 +3491834,0.0502467697638507 +3491835,0.0101097658380337 +3491836,0.0083755624524463 +3491837,0.0076958649311518 +3491838,0.0084456127776393 +3491839,0.0106150172650814 +3491840,0.0106641200449248 +3491841,0.0106424084862676 +3491842,0.0379849726273501 +3491843,0.0243477685360432 +3491844,0.0072285876432739 +3491845,0.0122050372883676 +3491846,0.0331440232694149 +3491847,0.0331440232694149 +3491848,0.0163464957639849 +3491849,0.0081760709302438 +3491850,0.0259461422027328 +3491851,0.025928008289975102 +3491852,0.0502459426652661 +3491853,0.010008161130777 +3491854,0.0100725627390962 +3491855,0.0083725182047478 +3491856,0.0083673455353405 +3491857,0.0074465443086511 +3491858,0.00713814145736 +3491859,0.0084482997860009 +3491860,0.031804877229449705 +3491861,0.0317661392183355 +3491862,0.0076093656562016 +3491863,0.0076365573865286 +3491864,0.043692815304037 +3491865,0.016693770256312 +3491866,0.0068724032608965 +3491867,0.012560291956928302 +3491868,0.0186755493704052 +3491869,0.0662791763980139 +3491870,0.0993894601396921 +3491871,0.0331440232694149 +3491872,0.0331089981441989 +3491873,0.05720273155530389 +3491874,0.0081762897384561 +3491875,0.0086458524735302 +3491876,0.0432659935644791 +3491877,0.029175138603158603 +3491878,0.008336055132098 +3491879,0.0083726925495894 +3491880,0.0074227158499871 +3491881,0.0222254823477911 +3491882,0.0070384364412522 +3491883,0.0070241402672673 +3491884,0.0125677900420952 +3491885,0.0124858880402741 +3491886,0.0087521306000406 +3491887,0.0411876744699199 +3491888,0.0083238343467938 +3491889,0.0072004775367893 +3491890,0.0331440232694149 +3491891,0.0636976053710808 +3491892,0.0331440232694149 +3491893,0.0994320698082447 +3491894,0.0245274012867696 +3491895,0.0086534982547163 +3491896,0.025937215374272397 +3491897,0.0697781143839467 +3491898,0.0077624533250205 +3491899,0.0077753660460492 +3491900,0.0077796289214346 +3491901,0.0074183245759564 +3491902,0.0073909918050846 +3491903,0.0351219441323701 +3491904,0.007032073365001 +3491905,0.0130107097357419 +3491906,0.0390827209637812 +3491907,0.025540929416077 +3491908,0.0126649998748794 +3491909,0.0417171575589017 +3491910,0.0082605639302846 +3491911,0.1657201163470745 +3491912,0.0992647318868877 +3491913,0.0326261271178087 +3491914,0.0086534982547163 +3491915,0.0086520245999206 +3491916,0.0086518843279911 +3491917,0.0230505439051261 +3491918,0.0154556090584934 +3491919,0.023332316321807 +3491920,0.0233259889589991 +3491921,0.007820560348924 +3491922,0.0072774102536367 +3491923,0.0070223547306542 +3491924,0.021025181115607902 +3491925,0.0070270894306705 +3491926,0.0129474549532065 +3491927,0.026086297696315902 +3491928,0.0255288023660172 +3491929,0.0127538168128116 +3491930,0.0083250630853106 +3491931,0.0247047387989149 +3491932,0.0331440232694149 +3491933,0.0331440232694149 +3491934,0.033133736906288 +3491935,0.0086534982547163 +3491936,0.0086534982547163 +3491937,0.0086548310822915 +3491938,0.0049452824184653 +3491939,0.0288810165880242 +3491940,0.0384399907911567 +3491941,0.0233227066144729 +3491942,0.0070185640202643 +3491943,0.013835434799454899 +3491944,0.0276409216689148 +3491945,0.0070290797890741 +3491946,0.0381512605339572 +3491947,0.0636459641415427 +3491948,0.031538935641128 +3491949,0.0991082323299326 +3491950,0.0328114609723401 +3491951,0.099337008856105 +3491952,0.025899616143873098 +3491953,0.0086523698127516 +3491954,0.0086534982547163 +3491955,0.025960659805195296 +3491956,0.009681281633675 +3491957,0.0147550845914523 +3491958,0.0459789304251185 +3491959,0.0115005718544124 +3491960,0.0163894652553147 +3491961,0.0047857118372774 +3491962,0.0076994182786968 +3491963,0.015548948002995201 +3491964,0.0126714419797387 +3491965,0.0127497632713707 +3491966,0.0073165170559649 +3491967,0.0223489999003281 +3491968,0.0324068691941301 +3491969,0.0648060603450179 +3491970,0.0328835667986491 +3491971,0.0086480392079313 +3491972,0.0086497237732809 +3491973,0.0172145225403041 +3491974,0.008648735823058 +3491975,0.0145491152957254 +3491976,0.0242025918580022 +3491977,0.0057439923396144 +3491978,0.0170732157168123 +3491979,0.017250857781618598 +3491980,0.017250857781618598 +3491981,0.0161701667720686 +3491982,0.0054658036401535 +3491983,0.0043015670962631 +3491984,0.0045210316534919 +3491985,0.0076860920642925 +3491986,0.0198902514172384 +3491987,0.0074971303600124 +3491988,0.02459560893476 +3491989,0.0227446771481841 +3491990,0.025284915372702603 +3491991,0.0086534982547163 +3491992,0.0240989840971057 +3491993,0.0190456332108595 +3491994,0.0193613002543336 +3491995,0.0162083495391087 +3491996,0.0054207450929034 +3491997,0.0043067002772979 +3491998,0.012904701288789299 +3491999,0.0215078354813155 +3492000,0.0086709535779381 +3492001,0.0066264477692442 +3492002,0.0071060115797181 +3492003,0.1210165397994414 +3492004,0.1225364910927858 +3492005,0.0998143023479486 +3492006,0.015851939432703098 +3492007,0.034439352320581 +3492008,0.0086031341925262 +3492009,0.0172062683850524 +3492010,0.0172062683850524 +3492011,0.0299208577879377 +3492012,0.004302457284061 +3492013,0.004332363382939 +3492014,0.006769668858133 +3492015,0.0500858250360426 +3492016,0.0084093461824066 +3492017,0.004293628459573 +3492018,0.0205569499826857 +3492019,0.008428879992443301 +3492020,0.017183289402596398 +3492021,0.1595672965049742 +3492022,0.0527443480911879 +3492023,0.0069542435811349 +3492024,0.0199773084208781 +3492025,0.0214565661462746 +3492026,0.0042610965786319 +3492027,0.012054102802191 +3492028,0.0081042564941811 +3492029,0.0531890988349914 +3492030,0.048280024679738 +3492031,0.0517732807967293 +3492032,0.0066567438342671 +3492033,0.00667996106588 +3492034,0.012199491219448199 +3492035,0.0122253345258899 +3492036,0.0531839566882595 +3492037,0.0528723569253571 +3492038,0.0686580369271693 +3492039,0.1578366422413921 +3492040,0.006681847990418 +3492041,0.0067478341808907 +3492042,0.1063492048097546 +3492043,0.1582207621507713 +3492044,0.0087643494313989 +3492045,0.0270547938913504 +3492046,0.0350297292497594 +3492047,0.0500017978366439 +3492048,0.0523052572368692 +3492049,0.0349967853103914 +3492050,0.0086487056847803 +3492051,0.0251817918000807 +3492052,0.0047201335156296 +3492053,0.516519807279109 +3492054,0.2055325025761011 +3492055,0.0262216244601692 +3492056,0.0262903471443607 +3492057,0.0047201295383274 +3492058,0.0047267422596362 +3492059,0.0047981117887425 +3492060,0.295439329943991 +3492061,0.2025707144913098 +3492062,0.0516017223432517 +3492063,0.0087777487933635 +3492064,0.0087364400923283 +3492065,0.0047039655374314 +3492066,0.014167871314044199 +3492067,0.045903173757771996 +3492068,0.0334202162921428 +3492069,0.0086939086313778 +3492070,0.0093419073936627 +3492071,0.0047220180420011 +3492072,0.0257731066997919 +3492073,0.0046995639774126 +3492074,0.2333356726449786 +3492075,0.1351472303178736 +3492076,0.0034727165966554 +3492077,0.013158746734090301 +3492078,0.2005212977528568 +3492079,0.0995359042266453 +3492080,0.0032816322054713 +3492081,0.0032816322054713 +3492082,0.0033068920206225 +3492083,0.1336808651685712 +3492084,0.3337551585131232 +3492085,0.0331769120682042 +3492086,0.0036445910695713 +3492087,0.0032816322054713 +3492088,0.006570224366108 +3492089,0.0133071000634395 +3492090,0.0279212581902825 +3492091,0.1649881217739911 +3492092,0.009844896616413901 +3492093,0.0113067872622552 +3492094,0.0295813883424079 +3492095,0.0067549472893758 +3492096,0.0135298363610867 +3492097,0.0071114322593762 +3492098,0.06471925392834729 +3492099,0.0334202162921428 +3492100,0.0033050034660184 +3492101,0.0294350558178312 +3492102,0.016309954273537902 +3492103,0.024840222671628 +3492104,0.0498426996210105 +3492105,0.0233819334052899 +3492106,0.006273008650168499 +3492107,0.010163116414665899 +3492108,0.0163796864548791 +3492109,0.0032816322054713 +3492110,0.2949251890851133 +3492111,0.0744451637742307 +3492112,0.0155086529642222 +3492113,0.0020910028833895 +3492114,0.0032816322054713 +3492115,0.0131265288218852 +3492116,0.0065632644109426 +3492117,0.009844896616413901 +3492118,0.0157278187657955 +3492119,0.0217389722262644 +3492120,0.0025283774173926 +3492121,0.0062993344020608995 +3492122,0.0064051588914919 +3492123,0.0131265288218852 +3492124,0.0032816322054713 +3492125,0.0032816322054713 +3492126,0.0032816322054713 +3492127,0.0065632644109426 +3492128,0.0065872816626149 +3492129,0.0193145911726583 +3492130,0.0208613442635729 +3492131,0.0033802081493438 +3492132,0.009986283207968901 +3492133,0.0097124617958426 +3492134,0.0065567889990949 +3492135,0.0101651005823787 +3492136,0.0032949001683115 +3492137,0.0066725592206776 +3492138,0.0622851836622748 +3492139,0.0110653009757532 +3492140,0.0207745929226895 +3492141,0.1453671028280958 +3492142,0.003213526983911 +3492143,0.0196099230770315 +3492144,0.0646494684650479 +3492145,0.0062422197191373 +3492146,0.004420792309078 +3492147,0.00626694653278 +3492148,0.0205813750305465 +3492149,0.013158424757421 +3492150,0.0522302377133016 +3492151,0.0034053177447309 +3492152,0.0062939814174523 +3492153,0.0053600266750278 +3492154,0.0010033468932042 +3492155,0.013158424757421 +3492156,0.013158424757421 +3492157,0.001164508079849 +3492158,0.0049192184066078 +3492159,0.0009700983286298 +3492160,0.0081628724951139 +3492161,0.025378686251150598 +3492162,0.0130321780859538 +3492163,0.0395004410962318 +3492164,0.039475274272262995 +3492165,0.0023711126292944003 +3492166,0.009707624092176001 +3492167,0.0008834288311105 +3492168,0.0039040280902319 +3492169,0.0657676046964942 +3492170,0.0659685404905734 +3492171,0.0393524175101046 +3492172,0.013158424757421 +3492173,0.001373410555411 +3492174,0.0064045939147232 +3492175,0.0256520353329895 +3492176,0.013158424757421 +3492177,0.0394455713080485 +3492178,0.013158424757421 +3492179,0.065792123787105 +3492180,0.013158424757421 +3492181,0.052633699029684 +3492182,0.0919569625671689 +3492183,0.07895054854452599 +3492184,0.0393358132321108 +3492185,0.013158424757421 +3492186,0.013158424757421 +3492187,0.0393123301150627 +3492188,0.013158424757421 +3492189,0.039430822275043895 +3492190,0.052633699029684 +3492191,0.013158424757421 +3492192,0.013158424757421 +3492193,0.0645880380150704 +3492194,0.0517354548921555 +3492195,0.013158424757421 +3492196,0.0394606827611861 +3492197,0.026316849514842 +3492198,0.0127714052472361 +3492199,0.0394602191451765 +3492200,0.039475274272262995 +3492201,0.065792123787105 +3492202,0.14399089812872928 +3492203,0.039127831762113 +3492204,0.0130582404691129 +3492205,0.0236119719279049 +3492206,0.032150225748234604 +3492207,0.019445236478156998 +3492208,0.0061431382782757 +3492209,0.0171174734292622 +3492210,0.0282891514268223 +3492211,0.018561074485820797 +3492212,0.0184661539521675 +3492213,0.0056835454888641 +3492214,0.0057126660992201 +3492215,0.0187086673129406 +3492216,0.0061819883169042 +3492217,0.0056835454888641 +3492218,0.0169828554212146 +3492219,0.043217262557722 +3492220,0.0061883191919426 +3492221,0.0122763944664755 +3492222,0.028446673929383902 +3492223,0.0170506364665923 +3492224,0.0273091184213758 +3492225,0.0060733747901281 +3492226,0.0056975992411479 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001090900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001090900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001090900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001091900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001091900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001091900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001092000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001092000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001092000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001092100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001092100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001092100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001092200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001092200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001092200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001092300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001092300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d5ebd82c6 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001092300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0521854674605214 +3490292,0.10383524157991819 +3490293,0.0119859939441084 +3490316,0.0239719878882168 +3490317,0.059929969720542 +3490332,0.035957981832325195 +3490333,0.0369438235396842 +3490334,0.07538632758691889 +3490335,0.0119859939441084 +3490348,0.0146022700157793 +3490349,0.0208381582444714 +3490350,0.0119859939441084 +3490351,0.035957981832325195 +3490374,0.0511375621452117 +3490375,0.1494119800159409 +3490376,0.0923228503552611 +3490377,0.0256706161084552 +3490378,0.0239719878882168 +3490379,0.1086144083412698 +3490396,0.024613098833239 +3490397,0.0497103333473204 +3490398,0.0359715622325925 +3490399,0.0239719878882168 +3490418,0.0737183219858428 +3490419,0.0119859939441084 +3490437,0.0120789509929794 +3490438,0.0607965640917807 +3490439,0.0337251949333015 +3490440,0.0119861968282016 +3490457,0.074569853495739 +3490458,0.07505446279791589 +3490459,0.0239719878882168 +3490460,0.069170829807088 +3490476,0.0239139324079361 +3490477,0.0357085720986461 +3490478,0.0153162097558378 +3490479,0.0153162097558378 +3490499,0.0980233066122739 +3490500,0.0076581048779189 +3490517,0.025790615942883 +3490518,0.0380338158302944 +3490519,0.0306324195116756 +3490520,0.0382905243895945 +3490544,0.0076581048779189 +3490545,0.0077003740240379 +3490546,0.0153162097558378 +3490547,0.0077374196811922 +3490573,0.022916366741824 +3490574,0.0076581048779189 +3490575,0.0086885730369071 +3490576,0.0152667070996342 +3490597,0.0223058977651983 +3490598,0.020820339205413 +3490599,0.0080826322089083 +3490600,0.0273909035439691 +3490601,0.0137552861049867 +3490602,0.0139777254245179 +3490603,0.0281700625892173 +3490604,0.0276178074034474 +3490623,0.0068738707341253 +3490624,0.0137477414682506 +3490625,0.0238741868896362 +3490626,0.0843802321069334 +3490639,0.0068738707341253 +3490640,0.0274954829365012 +3490641,0.015067424966829099 +3490642,0.07131730109933859 +3490643,0.1202673837966112 +3490644,0.0281973723322153 +3490645,0.028122460584486 +3490658,0.0137477414682506 +3490659,0.0068738707341253 +3490660,0.1680367391854156 +3490661,0.07230378683677599 +3490662,0.1985818186152134 +3490663,0.0281973723322153 +3490664,0.0280778550643416 +3490665,0.0844260916721691 +3490681,0.0351753097968859 +3490682,0.0068738707341253 +3490683,0.0068738707341253 +3490684,0.0137477414682506 +3490685,0.0233782754663934 +3490686,0.0241124259906768 +3490687,0.0286426592057179 +3490688,0.02831071240996 +3490689,0.0281626109704299 +3490690,0.0281973723322153 +3490707,0.0137477414682506 +3490708,0.0068738707341253 +3490709,0.0074426489621674 +3490710,0.0068738707341253 +3490725,0.0068482483761837 +3490726,0.0068738707341253 +3490727,0.0206216122023759 +3490728,0.027710814672543202 +3490736,0.0483634354984396 +3490737,0.0350557379798143 +3490738,0.151722907879455 +3490739,0.0406434149846787 +3490747,0.4235873616074184 +3490748,0.0116865519956207 +3490757,0.0232996244844498 +3490758,0.0198331935642349 +3490771,0.0174165634019346 +3490772,0.0058941342979015 +3490773,0.0076119739317269 +3490774,0.0116898953477253 +3490787,0.0115747742840361 +3490788,0.0092939072209006 +3490789,0.0890480222491634 +3490790,0.1386193077648375 +3490805,0.0056224087136084 +3490806,0.0184022958116594 +3490807,0.011548657901585 +3490808,0.024782965326378498 +3490809,0.0204016270528156 +3490810,0.0207110506280639 +3490827,0.0045650205844462 +3490828,0.0046660747643234 +3490842,0.0134547323565621 +3490843,0.0044837621971964 +3490844,0.0045552730401228 +3490845,0.0139942715764093 +3490856,0.0044837621971964 +3490857,0.0048584909096551 +3490858,0.0044837621971964 +3490859,0.014208984774450501 +3490860,0.0046248356811702 +3490861,0.0231802761088449 +3490875,0.0044837621971964 +3490876,0.0044837621971964 +3490877,0.0143987411619391 +3490878,0.0049086810017242 +3490879,0.0092496713623404 +3490892,0.013451286591589201 +3490893,0.013451286591589201 +3490894,0.0046248356811702 +3490895,0.0058665579805958 +3490900,0.0044820434047718 +3490901,0.0043846161357653 +3490902,0.0141185514993146 +3490903,0.013456250526501502 +3490904,0.025711936223899202 +3490905,0.0158799743652329 +3490906,0.0180174464088025 +3490907,0.09951739998727199 +3490916,0.013478109116801501 +3490917,0.0045257037844148 +3490918,0.0044802987873755 +3490919,0.0044882881597618 +3490920,0.0049144891045157 +3490921,0.0123126778430941 +3490922,0.0145999610478085 +3490923,0.1947362401329629 +3490924,0.006468428010515 +3490925,0.0637530208835765 +3490926,0.1830325844258934 +3490935,0.0043471790944377 +3490936,0.0059039636815377 +3490937,0.0296313956056667 +3490938,0.0283774536101286 +3490939,0.0170093292267161 +3490940,0.0166816219150766 +3490941,0.0206307018286152 +3490942,0.0205770182040587 +3490953,0.0044598361267355 +3490954,0.0044856567117996 +3490955,0.0051334468876079 +3490956,0.0102642473693307 +3490957,0.0226460185757636 +3490958,0.0210348575271163 +3490959,0.0167108941823244 +3490960,0.0166951826256972 +3490966,0.0128352921456096 +3490967,0.0042784307152032 +3490968,0.0175980289691852 +3490969,0.0212788068031799 +3490970,0.1572061178197737 +3490971,0.0220960767166543 +3490972,0.080586032965191 +3490973,0.0201596720586725 +3490974,0.0055702980607748 +3490975,0.0168463382209792 +3490980,0.0128651839667035 +3490981,0.004296089207169 +3490982,0.004306586817487 +3490983,0.0316899920781331 +3490984,0.1056038238205675 +3490985,0.23554320174781251 +3490986,0.0223695949453735 +3490987,0.0671559931269 +3490988,0.0665191924459384 +3490989,0.0203432011594274 +3490990,0.0604570797320151 +3490991,0.0201122082814901 +3490992,0.0055702980607748 +3490993,0.0055702980607748 +3490994,0.0212861284699117 +3490995,0.0055702980607748 +3490999,0.0042884308169954 +3491000,0.0043162627905073 +3491001,0.0119817034982449 +3491002,0.013351655114035 +3491003,0.0214337354301031 +3491004,0.0213762356437996 +3491005,0.0671710346526073 +3491006,0.111485076636771 +3491007,0.0191559156804909 +3491008,0.0184942941568529 +3491009,0.028044947010051398 +3491010,0.0166439260799736 +3491013,0.0080597919288972 +3491014,0.013993401666276 +3491015,0.0671136360734524 +3491016,0.0671025649628065 +3491017,0.19896188865469588 +3491018,0.0139668780473063 +3491019,0.028027469007216498 +3491020,0.0055702980607748 +3491021,0.0094963582232594 +3491022,0.0067587593526458 +3491023,0.0152035939332433 +3491024,0.0062235359866649 +3491025,0.0697602248933592 +3491026,0.0231949023700619 +3491027,0.018283292327421 +3491028,0.0071453169567515 +3491029,0.0047481791116297 +3491030,0.0250105310987716 +3491031,0.026251507167735902 +3491032,0.021927855077231002 +3491033,0.0141578902286865 +3491034,0.0153704984113574 +3491035,0.0151595758673405 +3491036,0.0233945807965251 +3491037,0.0231965538114309 +3491038,0.0086961306516977 +3491039,0.1402626281891687 +3491040,0.0047481791116297 +3491041,0.0142445373348891 +3491042,0.0143602192401885 +3491043,0.0137063323164553 +3491044,0.015082393014717 +3491045,0.0762922081702245 +3491046,0.0231965538114309 +3491047,0.0231811129604458 +3491048,0.0072783004702674 +3491049,0.0070545324124395 +3491050,0.0845534566034897 +3491051,0.0281824053848258 +3491052,0.0047481791116297 +3491053,0.023982960584518202 +3491054,0.0431244955062575 +3491055,0.042843450500650096 +3491056,0.0151512076567398 +3491057,0.1055078788133243 +3491058,0.0231965538114309 +3491059,0.0698930716358029 +3491060,0.035684328737649096 +3491061,0.0070545324124395 +3491062,0.021344311090399498 +3491063,0.035273795085509096 +3491064,0.0280205849516533 +3491065,0.1408555970001489 +3491066,0.0142445373348891 +3491067,0.0047481791116297 +3491068,0.0057762263446296 +3491069,0.0048168721149849 +3491070,0.0111237551755342 +3491071,0.028871507688443397 +3491072,0.1621548113691846 +3491073,0.0695810412311689 +3491074,0.0070545324124395 +3491075,0.0637414079724818 +3491076,0.08427320696695931 +3491077,0.0281842871170373 +3491078,0.0490017753668799 +3491079,0.0195975441785009 +3491080,0.0150333344240277 +3491081,0.0048435738856904 +3491082,0.0221351064859634 +3491083,0.0231603004174027 +3491084,0.0231965538114309 +3491085,0.0231965538114309 +3491086,0.022131989155677698 +3491087,0.0214088513116905 +3491088,0.0256438018646583 +3491089,0.0480446548123147 +3491090,0.0272885790332355 +3491091,0.0280584941393696 +3491092,0.0144306864428992 +3491093,0.0051614575067504 +3491094,0.0695896614342927 +3491095,0.11594772948264 +3491096,0.0210637574987617 +3491097,0.0070378448909147 +3491098,0.0358412613553282 +3491099,0.0078110605751234 +3491100,0.0263978579048592 +3491101,0.0267790468121914 +3491102,0.0786604335475969 +3491103,0.1159044670445462 +3491104,0.1159753181956114 +3491105,0.014877128243738401 +3491106,0.0350911087316575 +3491107,0.032546554061767305 +3491108,0.019560013433468 +3491109,0.030437723562894002 +3491110,0.0526766784476789 +3491111,0.0437207498594257 +3491112,0.005239110905677 +3491113,0.1332489332971431 +3491114,0.0934447462928753 +3491115,0.16126064678840218 +3491116,0.11586781311960939 +3491117,0.0049677352209982 +3491118,0.0243248514771752 +3491119,0.045338130599453 +3491120,0.0227963468926544 +3491121,0.0194090948921061 +3491122,0.007229699880639 +3491123,0.0163294938242281 +3491124,0.0485415145934397 +3491125,0.0165632760933935 +3491126,0.2808199037256605 +3491127,0.0055205437209309 +3491128,0.038024247014982804 +3491129,0.0189871681466824 +3491130,0.0187824890017509 +3491131,0.036485299645327096 +3491132,0.0555647004677881 +3491133,0.0048587955534458 +3491134,0.0048631556920724 +3491135,0.0075735333375632 +3491136,0.0833672581271142 +3491137,0.0583808016245773 +3491138,0.0501206082610374 +3491139,0.103884264792088 +3491140,0.0147840019437868 +3491141,0.3075645430575756 +3491142,0.0052671156290435 +3491143,0.0059571689004584 +3491144,0.0552823465765613 +3491145,0.0187824890017509 +3491146,0.019553797553907 +3491147,0.0048656736790587 +3491148,0.0075735333375632 +3491149,0.0064800721593201 +3491150,0.0064688293072493 +3491151,0.0168438839385353 +3491152,0.0168581407286116 +3491153,0.0176248382776975 +3491154,0.0538404497016509 +3491155,0.086359172232558 +3491156,0.1487241349095451 +3491157,0.0443894462970744 +3491158,0.1441970130463042 +3491159,0.0099131594222936 +3491160,0.0146474036639631 +3491161,0.0302941333502528 +3491162,0.0075735333375632 +3491163,0.0192769650455097 +3491164,0.0195140278042514 +3491165,0.050397881262916194 +3491166,0.0166236178966494 +3491167,0.0528558990323178 +3491168,0.0529029011899077 +3491169,0.0867691804085363 +3491170,0.0144619001075625 +3491171,0.0819701103307366 +3491172,0.0202493357743638 +3491173,0.049164960300702 +3491174,0.0494372866456059 +3491175,0.0049551130974695 +3491176,0.0229082105127922 +3491177,0.0079485976811846 +3491178,0.0075735333375632 +3491179,0.0227206000126896 +3491180,0.0065067808283236 +3491181,0.06716363135880189 +3491182,0.0505408913444477 +3491183,0.12334517810795101 +3491184,0.1590156665825607 +3491185,0.0144679094266772 +3491186,0.0147642074509818 +3491187,0.05784760043025 +3491188,0.0870817501200926 +3491189,0.2049001127904061 +3491190,0.061376981952356 +3491191,0.016430270039192 +3491192,0.04894712601486201 +3491193,0.0075735333375632 +3491194,0.0075735333375632 +3491195,0.0138133644639126 +3491196,0.15127605513374848 +3491197,0.1230699191950119 +3491198,0.1410958652253672 +3491199,0.0730394393711655 +3491200,0.0587524469507635 +3491201,0.1023811800746776 +3491202,0.040983859449625 +3491203,0.0165916305386328 +3491204,0.08194196321083441 +3491205,0.027063859042687002 +3491206,0.0075735333375632 +3491207,0.0302904140130081 +3491208,0.015218833938446301 +3491209,0.0068077617327041 +3491210,0.0057475184218979 +3491211,0.0878639727367859 +3491212,0.032910377742678604 +3491213,0.14316530732267022 +3491214,0.0614291216395475 +3491215,0.0204919297248125 +3491216,0.0204919297248125 +3491217,0.081860723496922 +3491218,0.08135151186462411 +3491219,0.0164905688761273 +3491220,0.0530147333629424 +3491221,0.0404393884224257 +3491222,0.0302941333502528 +3491223,0.0065641296665131 +3491224,0.006679685902348 +3491225,0.0570143151944701 +3491226,0.041445919903146 +3491227,0.0299898628145456 +3491228,0.0598968837060432 +3491229,0.064564818320655 +3491230,0.0321835614024005 +3491231,0.0614757891744375 +3491232,0.020476066691578 +3491233,0.0327117711370435 +3491234,0.032452248574061995 +3491235,0.0837933079821237 +3491236,0.007573293700629 +3491237,0.0215139832157786 +3491238,0.0075471568542011 +3491239,0.0068270541582171 +3491240,0.0065677099504822 +3491241,0.006106530818306 +3491242,0.0083198328669625 +3491243,0.0139205576851964 +3491244,0.0139487423599608 +3491245,0.0895723725713922 +3491246,0.149949314072728 +3491247,0.0553096535932825 +3491248,0.0106234913691878 +3491249,0.0204919297248125 +3491250,0.0204919297248125 +3491251,0.0162786010241492 +3491252,0.0390233290105239 +3491253,0.0075735333375632 +3491254,0.007569791479612 +3491255,0.0197906653659815 +3491256,0.0131377354264258 +3491257,0.0208780669345043 +3491258,0.0132740665004682 +3491259,0.0107499118156723 +3491260,0.0092885180812109 +3491261,0.0260808013988758 +3491262,0.0263661813112814 +3491263,0.0139205576851964 +3491264,0.027966705480051098 +3491265,0.1199594512581824 +3491266,0.089640945330535 +3491267,0.0299898628145456 +3491268,0.0295692711532009 +3491269,0.0759511399185525 +3491270,0.0532530946788559 +3491271,0.061170796423248505 +3491272,0.0204919297248125 +3491273,0.122951578348875 +3491274,0.1427596228115315 +3491275,0.0381032735512851 +3491276,0.0302258058191891 +3491277,0.0065688677132129 +3491278,0.0081133722702843 +3491279,0.0119328652486994 +3491280,0.0114305535815556 +3491281,0.0114301203800424 +3491282,0.0095550880078348 +3491283,0.0378920174743173 +3491284,0.026027258660366998 +3491285,0.0264747567647604 +3491286,0.0423545286629782 +3491287,0.0425119879533493 +3491288,0.0299898628145456 +3491289,0.059962926885690604 +3491290,0.07685415889273581 +3491291,0.0228327878631798 +3491292,0.081750219000841 +3491293,0.0204217610215016 +3491294,0.0196651627621273 +3491295,0.0227310356896197 +3491296,0.0529775616958973 +3491297,0.1151686084401401 +3491298,0.0198289676858254 +3491299,0.0143788800103663 +3491300,0.0053252698780615 +3491301,0.0115083181810158 +3491302,0.0338105069863534 +3491303,0.0362854116847786 +3491304,0.0124975845027741 +3491305,0.0095511572884697 +3491306,0.0474440375155936 +3491307,0.0089129566223426 +3491308,0.00867515170555 +3491309,0.026351452129343998 +3491310,0.028697595709384502 +3491311,0.1199594512581824 +3491312,0.0299898628145456 +3491313,0.0221326239517319 +3491314,0.0151189404863386 +3491315,0.0078840587746009 +3491316,0.0227206000126896 +3491317,0.0075735333375632 +3491318,0.029012383056144703 +3491319,0.014455984612068 +3491320,0.0144546434417982 +3491321,0.0144635690376162 +3491322,0.0216859733960275 +3491323,0.0259952153899444 +3491324,0.023120291563911398 +3491325,0.0114796254675295 +3491326,0.0179967378686657 +3491327,0.0189335127726124 +3491328,0.0381079434003531 +3491329,0.0094832330942153 +3491330,0.0094691693428397 +3491331,0.0113664564701347 +3491332,0.0899695884436368 +3491333,0.0299898628145456 +3491334,0.3298884909600016 +3491335,0.1197338623049797 +3491336,0.0209978309224274 +3491337,0.0212052605055757 +3491338,0.0182017771915431 +3491339,0.011240856168020799 +3491340,0.0075735333375632 +3491341,0.0227206000126896 +3491342,0.0144635690376162 +3491343,0.072317845188081 +3491344,0.0050644530951734 +3491345,0.005027468461256 +3491346,0.0540358628860616 +3491347,0.054233457008014505 +3491348,0.0191442588844677 +3491349,0.0574950221925972 +3491350,0.028445085182327197 +3491351,0.028449699282645898 +3491352,0.0674522200453674 +3491353,0.0098148130632959 +3491354,0.0147728611023096 +3491355,0.029958056320412402 +3491356,0.0897049125184114 +3491357,0.08512219616926239 +3491358,0.0286299497290985 +3491359,0.0299898628145456 +3491360,0.4196967711940767 +3491361,0.0899695884436368 +3491362,0.014032629704547401 +3491363,0.014069463966042299 +3491364,0.0140293865814211 +3491365,0.0140616230779498 +3491366,0.0042401988873216 +3491367,0.0048379518204072 +3491368,0.0059567074385638 +3491369,0.0302933847195553 +3491370,0.0075735333375632 +3491371,0.0227206457533016 +3491372,0.0152209421932351 +3491373,0.0289286796730861 +3491374,0.0144635690376162 +3491375,0.0144635690376162 +3491376,0.028944926584444503 +3491377,0.0050155697390437 +3491378,0.0513357812040161 +3491379,0.0179988886519144 +3491380,0.0180509726634841 +3491381,0.0191339523356504 +3491382,0.0191650073975324 +3491383,0.0191650073975324 +3491384,0.0186521805003766 +3491385,0.0095602990481892 +3491386,0.037933219392984094 +3491387,0.0192718787438349 +3491388,0.0289287692282527 +3491389,0.0147283447890805 +3491390,0.0704506832548949 +3491391,0.0148189335090401 +3491392,0.0897595940461178 +3491393,0.3298884909600016 +3491394,0.0059600684122828 +3491395,0.027593615438936597 +3491396,0.018395954277366303 +3491397,0.0061445666238358 +3491398,0.0075735333375632 +3491399,0.0378747215209698 +3491400,0.0144654729956557 +3491401,0.0144635690376162 +3491402,0.029078050791214602 +3491403,0.014576157748399 +3491404,0.012019691845754 +3491405,0.0395607908859399 +3491406,0.1241518123547569 +3491407,0.0248472709208726 +3491408,0.0180197585984011 +3491409,0.0180616479236884 +3491410,0.0180225224997597 +3491411,0.0194287665101287 +3491412,0.0191650073975324 +3491413,0.038449316948694204 +3491414,0.0390257655819987 +3491415,0.0191650073975324 +3491416,0.095796424881132 +3491417,0.0193235957496925 +3491418,0.0666054301961629 +3491419,0.009655618568062 +3491420,0.0122914044717452 +3491421,0.030182777129416402 +3491422,0.1566193988106115 +3491423,0.2094145540259769 +3491424,0.0599797256290912 +3491425,0.026857177214756903 +3491426,0.0074417719379571 +3491427,0.018460950511777298 +3491428,0.0061319847591221 +3491429,0.0227206000126896 +3491430,0.0227206000126896 +3491431,0.0077119567173985 +3491432,0.0144637413931994 +3491433,0.0144635690376162 +3491434,0.0144635690376162 +3491435,0.0144635690376162 +3491436,0.0145861143246293 +3491437,0.0437583429738879 +3491438,0.0745418127626178 +3491439,0.0247250566813588 +3491440,0.0385847725024051 +3491441,0.0366861352298604 +3491442,0.0183494108867364 +3491443,0.0204406331450887 +3491444,0.019272104761513 +3491445,0.009493233908547 +3491446,0.0100229425451919 +3491447,0.04716173129267601 +3491448,0.0165784212473144 +3491449,0.0979761382425496 +3491450,0.0330061502754688 +3491451,0.1199594512581824 +3491452,0.0299097861191555 +3491453,0.0299898628145456 +3491454,0.08928682832236451 +3491455,0.0113425618037581 +3491456,0.0576946191748592 +3491457,0.0085430509906731 +3491458,0.0254305285606668 +3491459,0.0336426382823382 +3491460,0.0063729649905883 +3491461,0.0130466454149165 +3491462,0.006144690383002 +3491463,0.015131802139155399 +3491464,0.0075471199044295 +3491465,0.0227206000126896 +3491466,0.0075735333375632 +3491467,0.0144822995332476 +3491468,0.0144635690376162 +3491469,0.0144635690376162 +3491470,0.1014966818059766 +3491471,0.0145114180601391 +3491472,0.0148647734733127 +3491473,0.0729096449998005 +3491474,0.0248472709208726 +3491475,0.0740777091583099 +3491476,0.0185815680299339 +3491477,0.1155176359141078 +3491478,0.0156783919999519 +3491479,0.0473172586382674 +3491480,0.0318486415623183 +3491481,0.0328308621871372 +3491482,0.0990184508264064 +3491483,0.1199594512581824 +3491484,0.026563823645402 +3491485,0.0295499675097181 +3491486,0.0334386941427155 +3491487,0.033967723039155295 +3491488,0.056618695831708 +3491489,0.0113425618037581 +3491490,0.0084863463416695 +3491491,0.016850434861428898 +3491492,0.008663673892259 +3491493,0.0076927294371703 +3491494,0.0075735333375632 +3491495,0.0151470666751264 +3491496,0.0434043173342454 +3491497,0.0144635690376162 +3491498,0.0144635690376162 +3491499,0.0145059490351365 +3491500,0.0437505723452597 +3491501,0.0146735004474819 +3491502,0.0247708399005583 +3491503,0.0163197090057158 +3491504,0.0167873038465994 +3491505,0.08895694981810659 +3491506,0.0359958901520733 +3491507,0.0325036313289091 +3491508,0.048738384420469905 +3491509,0.09705512742645941 +3491510,0.0990184508264064 +3491511,0.0299898628145456 +3491512,0.0272465209743111 +3491513,0.1067663202263172 +3491514,0.0473085644733241 +3491515,0.0113425618037581 +3491516,0.0129788074216659 +3491517,0.0424398476518431 +3491518,0.042405271437459 +3491519,0.0089472606361091 +3491520,0.022749666457621498 +3491521,0.0381145121030726 +3491522,0.0144669871864998 +3491523,0.0144640071892496 +3491524,0.043554890807255 +3491525,0.0725089246626736 +3491526,0.0291632284452338 +3491527,0.0145165418605561 +3491528,0.0292392723622401 +3491529,0.0145861143246293 +3491530,0.0162219063206953 +3491531,0.0166772615561994 +3491532,0.0533256416235713 +3491533,0.0354909573404615 +3491534,0.0303803842704066 +3491535,0.0299898628145456 +3491536,0.026875039123338 +3491537,0.0298109143385347 +3491538,0.0658302047662669 +3491539,0.0134659867984058 +3491540,0.0113425618037581 +3491541,0.0343217143243108 +3491542,0.0255176003198844 +3491543,0.0084863463416695 +3491544,0.0084497262946811 +3491545,0.024472510936474602 +3491546,0.0227206000126896 +3491547,0.015267086302241401 +3491548,0.0075835700754802 +3491549,0.0437583429738879 +3491550,0.0437583429738879 +3491551,0.0291721502515211 +3491552,0.1169421945661252 +3491553,0.0493385172341859 +3491554,0.0166814971102577 +3491555,0.0174970728667505 +3491556,0.1859978063374756 +3491557,0.0267170455555922 +3491558,0.02994802716731 +3491559,0.0899622479022736 +3491560,0.0113425618037581 +3491561,0.0113425618037581 +3491562,0.0567128090187905 +3491563,0.0114280924123967 +3491564,0.0255267065400943 +3491565,0.0169572595508777 +3491566,0.0084576955500349 +3491567,0.0086491184275523 +3491568,0.0306640599632299 +3491569,0.007622201120396 +3491570,0.015108641509546 +3491571,0.0437583429738879 +3491572,0.043757942019323204 +3491573,0.0332358120332871 +3491574,0.0500652332484226 +3491575,0.0795691461257538 +3491576,0.0265580508857965 +3491577,0.0265580508857965 +3491578,0.0266744491257774 +3491579,0.0112509269319894 +3491580,0.011361714075167 +3491581,0.0113425618037581 +3491582,0.008577946458689 +3491583,0.0171830099545651 +3491584,0.07442140596807059 +3491585,0.0442259063803804 +3491586,0.0146693430011031 +3491587,0.0145861143246293 +3491588,0.0437571725275664 +3491589,0.0528420860792468 +3491590,0.0222533759376268 +3491591,0.0147768105645792 +3491592,0.0284018950647402 +3491593,0.0265580508857965 +3491594,0.0257840667448274 +3491595,0.0235659434270372 +3491596,0.0114439247886023 +3491597,0.036316141518416 +3491598,0.1087919156395927 +3491599,0.0091250219539563 +3491600,0.0230256565027437 +3491601,0.0672391696687175 +3491602,0.0150370736732265 +3491603,0.0296303778710925 +3491604,0.0587310567239053 +3491605,0.1331192434723125 +3491606,0.0145834699465363 +3491607,0.0662981951194164 +3491608,0.0222211939077072 +3491609,0.047947574405484805 +3491610,0.0719946854544034 +3491611,0.0124247377245122 +3491612,0.0127635074488095 +3491613,0.0348807264606215 +3491614,0.0435080081944438 +3491615,0.0136834578397419 +3491616,0.0135517483327709 +3491617,0.0246447789838649 +3491618,0.1005638509997827 +3491619,0.0315487004223272 +3491620,0.0222077265399655 +3491621,0.0230804216116666 +3491622,0.0230804216116666 +3491623,0.0222305884825539 +3491624,0.0222009439021348 +3491625,0.0444232499245742 +3491626,0.0240328907966613 +3491627,0.07209867238998391 +3491628,0.0139206908561242 +3491629,0.0128005749102932 +3491630,0.0542767115647674 +3491631,0.0435281246900558 +3491632,0.1302588760278081 +3491633,0.0435281246900558 +3491634,0.0136559849317174 +3491635,0.0406518993920593 +3491636,0.019618189021175 +3491637,0.054737880252701404 +3491638,0.0373860433495143 +3491639,0.0366970796038513 +3491640,0.031591149979903296 +3491641,0.0323764355473462 +3491642,0.0157141061777226 +3491643,0.0230804216116666 +3491644,0.022592127535485 +3491645,0.0230572577056432 +3491646,0.0222009439021348 +3491647,0.0222178668481379 +3491648,0.0240328907966613 +3491649,0.0240097958409665 +3491650,0.0476411441230777 +3491651,0.0116691175340663 +3491652,0.0584238259719245 +3491653,0.1409115953689249 +3491654,0.2169442209203222 +3491655,0.0136827982912775 +3491656,0.055091462493611604 +3491657,0.0365973819051044 +3491658,0.1110561912712955 +3491659,0.1124409509573449 +3491660,0.0471491714416918 +3491661,0.0466048205338137 +3491662,0.0229456176277664 +3491663,0.0230804216116666 +3491664,0.0220181002185196 +3491665,0.0216661649398522 +3491666,0.11099143601493161 +3491667,0.0666028421952077 +3491668,0.0444018878042696 +3491669,0.0445689886091482 +3491670,0.0240328907966613 +3491671,0.072098665833431 +3491672,0.0237975104399273 +3491673,0.0115573024377226 +3491674,0.0124737478716419 +3491675,0.0132833104732552 +3491676,0.0231988519270665 +3491677,0.1305843740701674 +3491678,0.0431022099029395 +3491679,0.0185741719082524 +3491680,0.0178810645321841 +3491681,0.1875074580311775 +3491682,0.2615425884019561 +3491683,0.0372968162485537 +3491684,0.0471480957125036 +3491685,0.0471602733812381 +3491686,0.046055677870283196 +3491687,0.0230494614620585 +3491688,0.0210335226030323 +3491689,0.0146597766565408 +3491690,0.0220057905703113 +3491691,0.0220841256489004 +3491692,0.0663045571439334 +3491693,0.0666065990894984 +3491694,0.0720790561301647 +3491695,0.0720782259694479 +3491696,0.0240328907966613 +3491697,0.0238733535561031 +3491698,0.0350350713002599 +3491699,0.051687309088925104 +3491700,0.0435281246900558 +3491701,0.0435281246900558 +3491702,0.08624933139295379 +3491703,0.0423045702467833 +3491704,0.0185473670703986 +3491705,0.0570422805958805 +3491706,0.2196801553868972 +3491707,0.075002983212471 +3491708,0.0156239040772444 +3491709,0.01542423213745 +3491710,0.0183491051236978 +3491711,0.0199422431005045 +3491712,0.0587510304806232 +3491713,0.0665737843529605 +3491714,0.1112307287717289 +3491715,0.0240328907966613 +3491716,0.0240328907966613 +3491717,0.07209867238998391 +3491718,0.0239966444317028 +3491719,0.0144574561569174 +3491720,0.0435281246900558 +3491721,0.1305843740701674 +3491722,0.0424332881223408 +3491723,0.0435281246900558 +3491724,0.0190377740019422 +3491725,0.0455099561892489 +3491726,0.0897530191239168 +3491727,0.026537583846974 +3491728,0.0374139014613221 +3491729,0.067266225061933 +3491730,0.0537013382268179 +3491731,0.036183827136643504 +3491732,0.0208849011060409 +3491733,0.019653539524166 +3491734,0.0436064415571185 +3491735,0.0220723289593197 +3491736,0.06663584558091751 +3491737,0.0226906785613413 +3491738,0.095912978876311 +3491739,0.0240328907966613 +3491740,0.0240328907966613 +3491741,0.0240328907966613 +3491742,0.071486805410192 +3491743,0.0863265658714171 +3491744,0.0432377869226541 +3491745,0.0435281246900558 +3491746,0.0870562493801116 +3491747,0.0409869278023467 +3491748,0.0865309582324046 +3491749,0.0380655716011083 +3491750,0.0191094559331364 +3491751,0.1053504130730547 +3491752,0.0150156924501061 +3491753,0.0179212140806257 +3491754,0.0179014644570949 +3491755,0.0878816098231381 +3491756,0.0290831297284543 +3491757,0.0376728125559621 +3491758,0.0357558512931047 +3491759,0.0208973095047157 +3491760,0.0209081443436865 +3491761,0.0196411218494176 +3491762,0.0185946816565429 +3491763,0.0146403644824962 +3491764,0.0145423780067894 +3491765,0.0222455621202486 +3491766,0.0719976637673205 +3491767,0.0240269778542541 +3491768,0.0722364747941753 +3491769,0.048151241512050996 +3491770,0.0723045327156854 +3491771,0.0240328907966613 +3491772,0.2172877532999161 +3491773,0.0435281246900558 +3491774,0.0956409591256422 +3491775,0.057102926482986205 +3491776,0.0151083602485066 +3491777,0.0150054171728639 +3491778,0.0181333075107888 +3491779,0.0178923774510622 +3491780,0.08802856740196491 +3491781,0.0292860697954893 +3491782,0.0208951118308366 +3491783,0.0627395857621729 +3491784,0.057369800095769696 +3491785,0.0590765612378978 +3491786,0.0495400574198533 +3491787,0.0165212359279394 +3491788,0.0145312184467911 +3491789,0.024484423629559 +3491790,0.0240794866014568 +3491791,0.18834015947570779 +3491792,0.0435396091336197 +3491793,0.0433951230370998 +3491794,0.1301223201689282 +3491795,0.0764155313372612 +3491796,0.0191038828343153 +3491797,0.0150679208136767 +3491798,0.0894881879106143 +3491799,0.0178966388265732 +3491800,0.0876771620194817 +3491801,0.0292271646903431 +3491802,0.0208768885033474 +3491803,0.1045290743666638 +3491804,0.0197953495825135 +3491805,0.039524384779976204 +3491806,0.033003979822492896 +3491807,0.0165212359279394 +3491808,0.0665392640820532 +3491809,0.0628626649902403 +3491810,0.0436209180574611 +3491811,0.0851593562043501 +3491812,0.0429523913512902 +3491813,0.0423216408569348 +3491814,0.0381399432716023 +3491815,0.0191038828343153 +3491816,0.0380327794821233 +3491817,0.0715914233008379 +3491818,0.0832248140101225 +3491819,0.0402398936081252 +3491820,0.0284814255643899 +3491821,0.0208998575818772 +3491822,0.06277069924316189 +3491823,0.0197143159211569 +3491824,0.0593957918516378 +3491825,0.0165012088045632 +3491826,0.049587581568021205 +3491827,0.0165212359279394 +3491828,0.0140972742028509 +3491829,0.039887844340086 +3491830,0.2662840892500302 +3491831,0.0434598823349614 +3491832,0.0187542142086307 +3491833,0.0181741524948285 +3491834,0.10600559117856741 +3491835,0.0212751862509557 +3491836,0.0192942796064262 +3491837,0.0178136937709148 +3491838,0.0186301278293356 +3491839,0.0197935365140438 +3491840,0.0198016850982022 +3491841,0.0198525031754971 +3491842,0.082655208457757 +3491843,0.049425386231428295 +3491844,0.0145614172301477 +3491845,0.0265084821730852 +3491846,0.0446448661386966 +3491847,0.0446448661386966 +3491848,0.036279863676524596 +3491849,0.0181151069782448 +3491850,0.0540175534620017 +3491851,0.0539927825408028 +3491852,0.1059124492250135 +3491853,0.0210962775843587 +3491854,0.0212103905249913 +3491855,0.0192911329836313 +3491856,0.0192816054334007 +3491857,0.016112998534821 +3491858,0.0152726126696341 +3491859,0.0185771538746583 +3491860,0.059148201700641403 +3491861,0.059243089175458896 +3491862,0.0165637233971126 +3491863,0.0165567259863438 +3491864,0.0854243946289926 +3491865,0.0319095726931887 +3491866,0.0141145571679885 +3491867,0.026902334697221898 +3491868,0.039969280755867295 +3491869,0.08927747762242691 +3491870,0.1338851357790188 +3491871,0.0446448661386966 +3491872,0.0445895753079412 +3491873,0.1268762631443815 +3491874,0.0181150563987067 +3491875,0.0180065126378805 +3491876,0.0900240724341837 +3491877,0.0612406857914144 +3491878,0.0176722157848951 +3491879,0.0192919184653119 +3491880,0.0156916982613056 +3491881,0.0470482816154957 +3491882,0.0149286398904008 +3491883,0.0148888213510576 +3491884,0.016764936287123 +3491885,0.0197631238611161 +3491886,0.0171164223414587 +3491887,0.0782021096505654 +3491888,0.0156685555574348 +3491889,0.014471491469213 +3491890,0.0446448661386966 +3491891,0.0861907826919194 +3491892,0.0446448661386966 +3491893,0.1339345984160898 +3491894,0.054393032200198504 +3491895,0.0180047452449798 +3491896,0.0539821075268317 +3491897,0.1409870631702915 +3491898,0.0156898988357324 +3491899,0.0165253895558011 +3491900,0.0165202170619928 +3491901,0.0156921351904704 +3491902,0.0156074071497724 +3491903,0.074446675015886 +3491904,0.0149119711666853 +3491905,0.0159893821994125 +3491906,0.0482519552402175 +3491907,0.039660275291701796 +3491908,0.0199856774479833 +3491909,0.07809782462226089 +3491910,0.0155713851898059 +3491911,0.22322433069348302 +3491912,0.1337145539120464 +3491913,0.0441612744576926 +3491914,0.0180047452449798 +3491915,0.0179990331531757 +3491916,0.0180025178423729 +3491917,0.046408321880719604 +3491918,0.031181323583794503 +3491919,0.0495509231656104 +3491920,0.0495719167522048 +3491921,0.0163218753108115 +3491922,0.0151994767792539 +3491923,0.0148851315071853 +3491924,0.0444847370198476 +3491925,0.0148957486855389 +3491926,0.0159850107691718 +3491927,0.0319854905730028 +3491928,0.0398304269278056 +3491929,0.0199957018859722 +3491930,0.015078693520374 +3491931,0.046911702842512996 +3491932,0.0446448661386966 +3491933,0.0446448661386966 +3491934,0.0446369188734248 +3491935,0.0180047452449798 +3491936,0.0180047452449798 +3491937,0.0179927412592939 +3491938,0.0091694121605685 +3491939,0.0476007476404591 +3491940,0.08189194731237001 +3491941,0.049563995771368 +3491942,0.0148698013298982 +3491943,0.0288964813506128 +3491944,0.057674007895315696 +3491945,0.0148976111545639 +3491946,0.0598575678451746 +3491947,0.1000890550333452 +3491948,0.0429860447082571 +3491949,0.1335870869376897 +3491950,0.0442294670065216 +3491951,0.1338611541292865 +3491952,0.0538977891170036 +3491953,0.0180086948955332 +3491954,0.0180047452449798 +3491955,0.0540127493083417 +3491956,0.017952874302864 +3491957,0.0270431245831323 +3491958,0.07535228695290111 +3491959,0.0188409220427274 +3491960,0.0385445064621108 +3491961,0.0117053664336198 +3491962,0.0163818767593677 +3491963,0.032981298852101604 +3491964,0.020080996294447 +3491965,0.020077863932081 +3491966,0.0169674629028615 +3491967,0.0352678028364388 +3491968,0.0438538227306076 +3491969,0.08792946170372551 +3491970,0.0443307734863787 +3491971,0.0179943033602527 +3491972,0.0179880082866098 +3491973,0.0355994386727522 +3491974,0.0179794307815658 +3491975,0.0269425850620231 +3491976,0.0448843945590153 +3491977,0.0094104108215067 +3491978,0.027555409714841703 +3491979,0.0282613830640911 +3491980,0.0282613830640911 +3491981,0.0382575734581942 +3491982,0.0128028957054326 +3491983,0.0109213180840015 +3491984,0.0112754193209418 +3491985,0.0163705125573763 +3491986,0.0485986999767008 +3491987,0.0171230681128095 +3491988,0.0380403436720371 +3491989,0.0357901568210084 +3491990,0.052009949602401906 +3491991,0.0180047452449798 +3491992,0.044699151015194796 +3491993,0.0349355898316691 +3491994,0.0358477379139006 +3491995,0.0383371869563956 +3491996,0.0127447814681483 +3491997,0.010930016071317 +3491998,0.0327639542520045 +3491999,0.0546065904200075 +3492000,0.0219520612549787 +3492001,0.0162006165410403 +3492002,0.016770769812023 +3492003,0.1485766634823675 +3492004,0.1896467631424769 +3492005,0.1532218004931334 +3492006,0.0374293800945077 +3492007,0.0873200267776164 +3492008,0.021842636168003 +3492009,0.043685272336006 +3492010,0.043685272336006 +3492011,0.0746633352971552 +3492012,0.0109181064466901 +3492013,0.0109255867681374 +3492014,0.0163774174595156 +3492015,0.0562989995418166 +3492016,0.0170907411752286 +3492017,0.0108642477896786 +3492018,0.051279633495441096 +3492019,0.020589935121977702 +3492020,0.0435200780661087 +3492021,0.176700711250305 +3492022,0.058480854368497 +3492023,0.0152190293717436 +3492024,0.0451255513678124 +3492025,0.054198366824986396 +3492026,0.0107797198904566 +3492027,0.0265871624823779 +3492028,0.0182562398902766 +3492029,0.058900237083435 +3492030,0.0537150747304469 +3492031,0.0575311365526079 +3492032,0.0150126016994589 +3492033,0.0150810079579401 +3492034,0.026792858270772997 +3492035,0.0267476174737633 +3492036,0.0588838754242364 +3492037,0.0585634730795704 +3492038,0.0801186153380089 +3492039,0.17124340792685538 +3492040,0.014916752547312 +3492041,0.0151640202429131 +3492042,0.1177082225601033 +3492043,0.1752690588965444 +3492044,0.0119802930726978 +3492045,0.0368054886445778 +3492046,0.0545072088515981 +3492047,0.0524214254777636 +3492048,0.0579148612842092 +3492049,0.0478719438442137 +3492050,0.0121713014826703 +3492051,0.0450041313650858 +3492052,0.0086956447628424 +3492053,0.5400932207703589 +3492054,0.2153729051094717 +3492055,0.0358828699078566 +3492056,0.0360780681838011 +3492057,0.0086956415325403 +3492058,0.0087338591167198 +3492059,0.0087589774850115 +3492060,0.31017631130078016 +3492061,0.2121431212064581 +3492062,0.0540629895681137 +3492063,0.0119911758229136 +3492064,0.0121780727411311 +3492065,0.0086858896983137 +3492066,0.026130170134206203 +3492067,0.0569034870243245 +3492068,0.0365255214273929 +3492069,0.0120602515451073 +3492070,0.017299469510379098 +3492071,0.0087485954280771 +3492072,0.0541810902267023 +3492073,0.008720464624566 +3492074,0.2550922236431638 +3492075,0.14749702846801088 +3492076,0.0075377320569248 +3492077,0.0294411611108918 +3492078,0.21915312856435737 +3492079,0.10887504510799359 +3492080,0.0073527712374925 +3492081,0.0073527712374925 +3492082,0.0073763518550232 +3492083,0.1461020857095716 +3492084,0.3647976165146305 +3492085,0.0362900142341984 +3492086,0.0077040985673083 +3492087,0.0073527712374925 +3492088,0.014712039752966 +3492089,0.029579652350746298 +3492090,0.0310972706952258 +3492091,0.1806351838076231 +3492092,0.0220583137124775 +3492093,0.0234733559883002 +3492094,0.0662185352532254 +3492095,0.0148844828439644 +3492096,0.0165381387661768 +3492097,0.0142721474697647 +3492098,0.0710019622621321 +3492099,0.0365255214273929 +3492100,0.0073745888459299 +3492101,0.0660737266805122 +3492102,0.0366640916480483 +3492103,0.0284873768687248 +3492104,0.057126761232738896 +3492105,0.0292118958107274 +3492106,0.0134143251925704 +3492107,0.0197249764844478 +3492108,0.0367349299425988 +3492109,0.0073527712374925 +3492110,0.3386854569568857 +3492111,0.0853858652482498 +3492112,0.0322355790336764 +3492113,0.0044714417308568 +3492114,0.0073527712374925 +3492115,0.02941108494997 +3492116,0.014705542474985 +3492117,0.0220583137124775 +3492118,0.0316742165239388 +3492119,0.0254697454096293 +3492120,0.004938794158644 +3492121,0.0134403431398136 +3492122,0.013551820495618 +3492123,0.02941108494997 +3492124,0.0073527712374925 +3492125,0.0073527712374925 +3492126,0.0073527712374925 +3492127,0.014705542474985 +3492128,0.014727963130972799 +3492129,0.0230907256859618 +3492130,0.0246157809213504 +3492131,0.0075730805604926 +3492132,0.0223743013971306 +3492133,0.0219237781702365 +3492134,0.0146989643481721 +3492135,0.0227567769598 +3492136,0.007399193168324 +3492137,0.015087943010686201 +3492138,0.073623863229977 +3492139,0.031148610755052 +3492140,0.0245548037015704 +3492141,0.1716082595004639 +3492142,0.007283585710057 +3492143,0.0440354903442946 +3492144,0.0959667433276464 +3492145,0.0103973355789451 +3492146,0.0246315264578156 +3492147,0.0345090765023808 +3492148,0.0243499077564186 +3492149,0.0194936227053403 +3492150,0.0775024054301396 +3492151,0.0162720038363004 +3492152,0.0189932736190495 +3492153,0.0295675936020557 +3492154,0.0050383470660921 +3492155,0.0194936227053403 +3492156,0.0194936227053403 +3492157,0.0054596803740616 +3492158,0.0262308490323573 +3492159,0.0052291795708139 +3492160,0.0444871474865059 +3492161,0.037889511493236494 +3492162,0.0193459029441885 +3492163,0.0584975922545172 +3492164,0.05848086811602089 +3492165,0.0109686173373214 +3492166,0.0523151996226265 +3492167,0.0049236744653708 +3492168,0.0167705413864907 +3492169,0.0974342540437726 +3492170,0.0975286495589844 +3492171,0.05833711484830299 +3492172,0.0194936227053403 +3492173,0.0059199724594856 +3492174,0.0294666748847106 +3492175,0.0382093540729345 +3492176,0.0194936227053403 +3492177,0.058439849995662194 +3492178,0.0194936227053403 +3492179,0.0974681135267015 +3492180,0.0194936227053403 +3492181,0.0779744908213612 +3492182,0.13624544067569208 +3492183,0.11696173623204179 +3492184,0.058590051809231394 +3492185,0.0194936227053403 +3492186,0.0194936227053403 +3492187,0.0586084366817708 +3492188,0.0194936227053403 +3492189,0.058428855351362594 +3492190,0.0779744908213612 +3492191,0.0194936227053403 +3492192,0.0194936227053403 +3492193,0.09599857362864939 +3492194,0.07689034174240719 +3492195,0.0194936227053403 +3492196,0.058492291772887096 +3492197,0.0389872454106806 +3492198,0.0197966192943546 +3492199,0.058462697107179995 +3492200,0.05848086811602089 +3492201,0.0974681135267015 +3492202,0.2134410564207534 +3492203,0.05830773372260099 +3492204,0.0194436997814617 +3492205,0.050806495008233296 +3492206,0.0586568711773016 +3492207,0.0502893393925848 +3492208,0.0159978289157152 +3492209,0.0247940136627359 +3492210,0.0393010562563231 +3492211,0.0483951641502148 +3492212,0.0481029438027748 +3492213,0.0078707048669457 +3492214,0.0083856537917133 +3492215,0.0488454517141092 +3492216,0.0161063530396947 +3492217,0.0078707048669457 +3492218,0.023580133495811402 +3492219,0.1126673024485109 +3492220,0.0161356703267554 +3492221,0.0318209097201498 +3492222,0.0398721982082509 +3492223,0.0236121146008371 +3492224,0.0390305550428556 +3492225,0.015917314821822 +3492226,0.0081964470543474 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..a86a4e0be --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.0583127668629095 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.027750626206398 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001100900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001100900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001100900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001101900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001101900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001101900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001102000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001102000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001102000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001102100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001102100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001102100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001102200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001102200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001102200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001102300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001102300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..9602cfed5 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001102300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.049085861876008205 +3490292,0.1079561855647595 +3490293,0.010846952907741 +3490316,0.021693905815482 +3490317,0.054234764538705 +3490332,0.032540858723223 +3490333,0.0342724504148185 +3490334,0.0697430053898638 +3490335,0.010846952907741 +3490348,0.0188000659333119 +3490349,0.0651810016206529 +3490350,0.010846952907741 +3490351,0.032540858723223 +3490374,0.1792028661138545 +3490375,0.5392869785070254 +3490376,0.1903379528600898 +3490377,0.032119983024619894 +3490378,0.021693905815482 +3490379,0.1002323520245607 +3490396,0.0883513584824249 +3490397,0.1796743124723434 +3490398,0.0326242143981321 +3490399,0.021693905815482 +3490418,0.07227165977782521 +3490419,0.010846952907741 +3490437,0.011208451658718 +3490438,0.0573978122667596 +3490439,0.0815585003613624 +3490440,0.0108481981980255 +3490457,0.2695155597339507 +3490458,0.2699709543535613 +3490459,0.021693905815482 +3490460,0.1211058107650613 +3490476,0.021643688683403002 +3490477,0.032325122991171504 +3490478,0.0142067857086658 +3490479,0.0142067857086658 +3490499,0.2872472332477476 +3490500,0.0071033928543329 +3490517,0.0894925280729808 +3490518,0.1022213302351177 +3490519,0.0284135714173316 +3490520,0.035516964271664495 +3490544,0.0071033928543329 +3490545,0.0073067465187492 +3490546,0.0142067857086658 +3490547,0.0076145152376378 +3490573,0.0212587893224319 +3490574,0.0071033928543329 +3490575,0.0133692969879254 +3490576,0.0152924989486245 +3490597,0.0242853409756997 +3490598,0.0193999941236658 +3490599,0.0082679890373038 +3490600,0.0355633016436339 +3490601,0.0128225303315582 +3490602,0.0138732298476614 +3490603,0.0987187875953637 +3490604,0.0960814366243625 +3490623,0.0064079198054969 +3490624,0.0128158396109938 +3490625,0.0902269861085763 +3490626,0.2812037874322401 +3490639,0.0064079198054969 +3490640,0.0256316792219876 +3490641,0.019369380688455 +3490642,0.2709782747940923 +3490643,0.4579126826044921 +3490644,0.0937968492507934 +3490645,0.0937568197583273 +3490658,0.0128158396109938 +3490659,0.0064079198054969 +3490660,0.6391386650490136 +3490661,0.2748242129054922 +3490662,0.6563366354398682 +3490663,0.0937968492507934 +3490664,0.0937329845604218 +3490665,0.2813018312335861 +3490681,0.0356037254724923 +3490682,0.0064079198054969 +3490683,0.0064079198054969 +3490684,0.0128158396109938 +3490685,0.0883687039544796 +3490686,0.0917491892344097 +3490687,0.0947970329062483 +3490688,0.093998957064809 +3490689,0.0937776985493784 +3490690,0.0937968492507934 +3490707,0.0128158396109938 +3490708,0.0064079198054969 +3490709,0.0092324693929203 +3490710,0.0064079198054969 +3490725,0.006382997529788 +3490726,0.0064079198054969 +3490727,0.0192237594164907 +3490728,0.026611686169811098 +3490736,0.0462586773932361 +3490737,0.0354848414470486 +3490738,0.5161307458390703 +3490739,0.0615077439592031 +3490747,1.455985594014334 +3490748,0.0306868512473052 +3490757,0.0220133618679388 +3490758,0.026628388329415796 +3490771,0.0161580730557102 +3490772,0.0059644627844671 +3490773,0.0153366306788795 +3490774,0.0113146500744637 +3490787,0.010715513958084899 +3490788,0.0276758244682268 +3490789,0.40185601911044144 +3490790,0.649599668067506 +3490805,0.0052116538849557 +3490806,0.0207812698766909 +3490807,0.0107072731480002 +3490808,0.0321863085603682 +3490809,0.0965694525833242 +3490810,0.0975809511380533 +3490827,0.0042234529338425 +3490828,0.0043178784634956 +3490842,0.012446275315273501 +3490843,0.0041475114412605 +3490844,0.0042143334665026 +3490845,0.012949935471925501 +3490856,0.0041475114412605 +3490857,0.0045620738634873 +3490858,0.0041475114412605 +3490859,0.0161044107392673 +3490860,0.0042793350294232 +3490861,0.0214491033348803 +3490875,0.0041475114412605 +3490876,0.0041475114412605 +3490877,0.013431409145793001 +3490878,0.004601468332702 +3490879,0.0085586700588464 +3490892,0.0124425343237815 +3490893,0.0124425343237815 +3490894,0.0042793350294232 +3490895,0.0086877984613742 +3490900,0.0041460766780114 +3490901,0.0040647491930679 +3490902,0.0151807346239578 +3490903,0.012466524504297 +3490904,0.060949500745663396 +3490905,0.0209889330363699 +3490906,0.0256974913871769 +3490907,0.32988039835349814 +3490916,0.0124722080868334 +3490917,0.0041939114245316 +3490918,0.004144620357348 +3490919,0.0041658027366032 +3490920,0.0062242852656588 +3490921,0.0210805106608477 +3490922,0.0158107635748291 +3490923,0.47298301554719047 +3490924,0.0078552152464633 +3490925,0.19558611960906158 +3490926,0.6127932654789401 +3490935,0.0040334985950993 +3490936,0.0098898104196054 +3490937,0.0728120527744539 +3490938,0.0712088665370062 +3490939,0.0168803619455223 +3490940,0.0160161928041511 +3490941,0.0681384983137609 +3490942,0.069083186418401 +3490953,0.0041275391362271 +3490954,0.00414988472882 +3490955,0.0073822410125763 +3490956,0.0277331149061895 +3490957,0.0647440531817671 +3490958,0.061876704573874 +3490959,0.0160486386157572 +3490960,0.0160312569186634 +3490966,0.0119283325038849 +3490967,0.0039761108346283 +3490968,0.0571477126726744 +3490969,0.0720299372530363 +3490970,0.451843926609047 +3490971,0.0639690174729241 +3490972,0.24297953811104028 +3490973,0.0607515396731156 +3490974,0.0053495462052524 +3490975,0.0164261142807095 +3490980,0.0119662902809951 +3490981,0.0040412838039337 +3490982,0.0040513561945598 +3490983,0.034586727882004 +3490984,0.3569832914427684 +3490985,0.7983371471476097 +3490986,0.0644256110171895 +3490987,0.193353962489624 +3490988,0.1923008235351363 +3490989,0.0610705527057106 +3490990,0.1822692907757088 +3490991,0.0607144085170388 +3490992,0.0053495462052524 +3490993,0.0053495462052524 +3490994,0.0288317859134095 +3490995,0.0053495462052524 +3490999,0.0039867423391386 +3491000,0.0040076911875013 +3491001,0.0242107914465687 +3491002,0.0133082790967353 +3491003,0.0725189828133388 +3491004,0.0718940236895969 +3491005,0.1933785375040153 +3491006,0.3215273999761513 +3491007,0.0244306562403888 +3491008,0.0190720836502402 +3491009,0.0275968916610211 +3491010,0.0159770322026379 +3491013,0.0142272687721178 +3491014,0.0424790747785266 +3491015,0.1932808447761281 +3491016,0.1932694401028593 +3491017,0.549955247065408 +3491018,0.0249484105621898 +3491019,0.0274714049086143 +3491020,0.0053495462052524 +3491021,0.0088273640722036 +3491022,0.0099578894869048 +3491023,0.047408317289953 +3491024,0.0116502855908365 +3491025,0.1965829982404804 +3491026,0.0657740075983429 +3491027,0.0269621141642075 +3491028,0.0113681178108941 +3491029,0.0044136820361018 +3491030,0.0272886386444378 +3491031,0.0289914621970318 +3491032,0.034427918735906296 +3491033,0.0303611122459623 +3491034,0.0480883680284023 +3491035,0.0472070381896134 +3491036,0.0649092882953264 +3491037,0.0657767057418823 +3491038,0.0138235024372226 +3491039,0.2220597239730045 +3491040,0.0044136820361018 +3491041,0.013241046108305399 +3491042,0.030919037759304 +3491043,0.0291715673021044 +3491044,0.0469037950198243 +3491045,0.2379984336460671 +3491046,0.0657767057418823 +3491047,0.0657514783053471 +3491048,0.0116563880398427 +3491049,0.0113114239647984 +3491050,0.1317842170531329 +3491051,0.0439371840290058 +3491052,0.0044136820361018 +3491053,0.022509506078857898 +3491054,0.0929717435342662 +3491055,0.0922135732055229 +3491056,0.0471867330296142 +3491057,0.3274867876642085 +3491058,0.0657767057418823 +3491059,0.1960010897593763 +3491060,0.0571917511261635 +3491061,0.0113114239647984 +3491062,0.0346405378059401 +3491063,0.0565805222260842 +3491064,0.0436329938605465 +3491065,0.2193252997192044 +3491066,0.013241046108305399 +3491067,0.0044136820361018 +3491068,0.0062870109700086 +3491069,0.0045388558477824 +3491070,0.0218660190264646 +3491071,0.0624282096675807 +3491072,0.459161757698062 +3491073,0.1973160334405346 +3491074,0.0113114239647984 +3491075,0.1033633067904825 +3491076,0.13120115771638818 +3491077,0.0439289414788848 +3491078,0.0611710976310677 +3491079,0.0197242850198689 +3491080,0.0160465744534668 +3491081,0.0048059068115816 +3491082,0.0651937580071829 +3491083,0.0657567953483876 +3491084,0.0657767057418823 +3491085,0.0657767057418823 +3491086,0.0354271588847898 +3491087,0.0343123591233671 +3491088,0.0371107728934153 +3491089,0.0717535395251583 +3491090,0.0452607798356615 +3491091,0.044479952359706 +3491092,0.0135685590327005 +3491093,0.0057341508957805 +3491094,0.1973301172256469 +3491095,0.32883417614051497 +3491096,0.0338703764052113 +3491097,0.0113796428475109 +3491098,0.0791241773289436 +3491099,0.0105387064551898 +3491100,0.0415179314207848 +3491101,0.0264016155402273 +3491102,0.2090865964743066 +3491103,0.3288515471384046 +3491104,0.3289073635681102 +3491105,0.0289900367285607 +3491106,0.061911168094414 +3491107,0.0842065324044243 +3491108,0.050522795916871 +3491109,0.0407982757336222 +3491110,0.1850218615915057 +3491111,0.0453836638832933 +3491112,0.0048794480971992 +3491113,0.3671091738390917 +3491114,0.2605761304886717 +3491115,0.4598244550293934 +3491116,0.3290899995737418 +3491117,0.009729224136351 +3491118,0.047957088761103904 +3491119,0.07900858816490991 +3491120,0.0401383505292668 +3491121,0.0504377121391445 +3491122,0.0172515946473654 +3491123,0.0226071772319258 +3491124,0.1565338365842123 +3491125,0.015479651069902699 +3491126,0.2776169337256436 +3491127,0.0052222724562931 +3491128,0.0360888571408763 +3491129,0.0531563929766672 +3491130,0.0524352937936782 +3491131,0.1010847147526036 +3491132,0.1546460183052448 +3491133,0.0095845023170113 +3491134,0.0096040661176992 +3491135,0.0131909186020493 +3491136,0.1457798414002063 +3491137,0.151763554472625 +3491138,0.0668957491558535 +3491139,0.2797214454896973 +3491140,0.0161777423323423 +3491141,0.306520540475712 +3491142,0.0049178024683415 +3491143,0.0060642395721153 +3491144,0.1538833050798478 +3491145,0.0524352937936782 +3491146,0.0384955848161444 +3491147,0.0096153642436883 +3491148,0.0131909186020493 +3491149,0.0168591178953647 +3491150,0.0168086715825498 +3491151,0.0222852181712402 +3491152,0.02300835041655 +3491153,0.0627167150378227 +3491154,0.1886806373291277 +3491155,0.0961823862174789 +3491156,0.1656052084301969 +3491157,0.06481957225916621 +3491158,0.3503050404149779 +3491159,0.0194288090105742 +3491160,0.029072157944351203 +3491161,0.0527636744081972 +3491162,0.0131909186020493 +3491163,0.0496327092465281 +3491164,0.050144587690726695 +3491165,0.066785617306531 +3491166,0.0221698951939317 +3491167,0.1871860061178989 +3491168,0.188165734923725 +3491169,0.0966814106089794 +3491170,0.0161140896379947 +3491171,0.1212055489119873 +3491172,0.0328969813655015 +3491173,0.2213538529087889 +3491174,0.2212123192434064 +3491175,0.009784930547281 +3491176,0.0408639368361765 +3491177,0.0157722025134475 +3491178,0.0131909186020493 +3491179,0.0395727558061479 +3491180,0.0166303412856037 +3491181,0.0889712419822609 +3491182,0.06728844092991071 +3491183,0.43753111755395224 +3491184,0.5649874407047046 +3491185,0.016128534104926 +3491186,0.0165572283745288 +3491187,0.0644563585519788 +3491188,0.09741608684867639 +3491189,0.3032342196642258 +3491190,0.0920301874367416 +3491191,0.0733403734294372 +3491192,0.22008299139294502 +3491193,0.0131909186020493 +3491194,0.0131909186020493 +3491195,0.0187569638795093 +3491196,0.2026838160303237 +3491197,0.435190715357149 +3491198,0.5019583341665034 +3491199,0.0813784596592659 +3491200,0.0660729314280849 +3491201,0.1524706918006086 +3491202,0.0606558881700038 +3491203,0.0716315874605513 +3491204,0.3685561157232077 +3491205,0.0615645908007679 +3491206,0.0131909186020493 +3491207,0.0527581254258003 +3491208,0.0268803747354408 +3491209,0.0102083295301367 +3491210,0.0095412655908661 +3491211,0.09838547042930021 +3491212,0.0334287049883864 +3491213,0.2152417171006229 +3491214,0.0908738285584352 +3491215,0.0303279440850019 +3491216,0.0303279440850019 +3491217,0.3685230865697437 +3491218,0.36523488473021903 +3491219,0.0331845810688451 +3491220,0.09233643021434511 +3491221,0.0789763537776782 +3491222,0.0527636744081972 +3491223,0.0099068256895784 +3491224,0.0100409147411551 +3491225,0.1090490967711498 +3491226,0.1657574207977428 +3491227,0.0336018651723861 +3491228,0.0671751748773643 +3491229,0.065342539858823 +3491230,0.0325688448421049 +3491231,0.0909838322550057 +3491232,0.0302362766188465 +3491233,0.1446335242554496 +3491234,0.14548030225210629 +3491235,0.1475613335646139 +3491236,0.0131905610810604 +3491237,0.0586203422113909 +3491238,0.0131401434544318 +3491239,0.0102184390066675 +3491240,0.0099072746214258 +3491241,0.0106360888529308 +3491242,0.0114872273315179 +3491243,0.056176122277975 +3491244,0.0561393321815148 +3491245,0.10033602175146131 +3491246,0.16800932586193051 +3491247,0.0561298546200051 +3491248,0.0107076643034815 +3491249,0.0303279440850019 +3491250,0.0303279440850019 +3491251,0.0731056907591412 +3491252,0.0718125055433663 +3491253,0.0131909186020493 +3491254,0.0131943519137334 +3491255,0.029853381938893 +3491256,0.0198148395866154 +3491257,0.032650626438970695 +3491258,0.0202418306308168 +3491259,0.0208123810537547 +3491260,0.0167179052128011 +3491261,0.0343797314645448 +3491262,0.0347624551452299 +3491263,0.056176122277975 +3491264,0.1125739971314981 +3491265,0.1344074606895444 +3491266,0.1004170859057031 +3491267,0.0336018651723861 +3491268,0.0332848770881653 +3491269,0.07827759476189661 +3491270,0.0540898179152444 +3491271,0.0911383057195612 +3491272,0.0303279440850019 +3491273,0.1819676645100114 +3491274,0.2113836300376982 +3491275,0.0674167157437747 +3491276,0.0526490885090777 +3491277,0.0099074197933077 +3491278,0.014722348125606 +3491279,0.0231606358493747 +3491280,0.0221112417365569 +3491281,0.022116055032857 +3491282,0.0172680352768306 +3491283,0.0680385740444374 +3491284,0.0339950811584408 +3491285,0.0349982956983798 +3491286,0.1690204556018337 +3491287,0.1691511517565613 +3491288,0.0336018651723861 +3491289,0.06718387149786109 +3491290,0.0791941446946039 +3491291,0.023720858427996303 +3491292,0.1210176631711011 +3491293,0.030161397140273 +3491294,0.0292254291112351 +3491295,0.0396267814419046 +3491296,0.0922636310938351 +3491297,0.2220430870255114 +3491298,0.0300123521119655 +3491299,0.0284411162319706 +3491300,0.0090020943237017 +3491301,0.0223120612107831 +3491302,0.0650911926763964 +3491303,0.0702592708720149 +3491304,0.0242111627680333 +3491305,0.0172578845784188 +3491306,0.0854843617717897 +3491307,0.0129317947394939 +3491308,0.0113280113532112 +3491309,0.0347182398671889 +3491310,0.1133544814599132 +3491311,0.1344074606895444 +3491312,0.0336018651723861 +3491313,0.0384410023361699 +3491314,0.021214375398710003 +3491315,0.0147985128450493 +3491316,0.0395727558061479 +3491317,0.0131909186020493 +3491318,0.0573666138260913 +3491319,0.0285995086757327 +3491320,0.0285975384185526 +3491321,0.0286235883831977 +3491322,0.041645263043789404 +3491323,0.0444599546694045 +3491324,0.044829890676587006 +3491325,0.0222379650837995 +3491326,0.0335681805820262 +3491327,0.0363363789686418 +3491328,0.0687818568091995 +3491329,0.0170824769884347 +3491330,0.016215010936615 +3491331,0.0279462794284794 +3491332,0.1008055955171583 +3491333,0.0336018651723861 +3491334,0.3696205168962471 +3491335,0.1341407778562114 +3491336,0.0369882824293702 +3491337,0.0372820482423402 +3491338,0.0248638261556343 +3491339,0.0156516202652719 +3491340,0.0131909186020493 +3491341,0.0395727558061479 +3491342,0.0286235883831977 +3491343,0.1431179419159885 +3491344,0.0084390023410878 +3491345,0.0082897034490124 +3491346,0.10078573248197781 +3491347,0.10123957194891231 +3491348,0.0369247140094417 +3491349,0.1109596453607082 +3491350,0.051214576337767506 +3491351,0.051247430965304104 +3491352,0.12054508618381801 +3491353,0.0183849537569935 +3491354,0.0509009241941191 +3491355,0.1024459270914751 +3491356,0.10051800318791129 +3491357,0.09553850205645101 +3491358,0.0321242068946861 +3491359,0.0336018651723861 +3491360,0.4704963473291177 +3491361,0.1008055955171583 +3491362,0.0247191777770882 +3491363,0.0247741318334667 +3491364,0.024714339271742998 +3491365,0.0248658879183262 +3491366,0.0056656931635507 +3491367,0.0075871295992658 +3491368,0.0099895032744289 +3491369,0.0527622082469863 +3491370,0.0131909186020493 +3491371,0.0395729926058936 +3491372,0.0267642917261599 +3491373,0.057236195057911096 +3491374,0.0286235883831977 +3491375,0.0286235883831977 +3491376,0.0572721003127899 +3491377,0.0082667982205748 +3491378,0.1785790439880133 +3491379,0.0335769378390584 +3491380,0.0336665168781081 +3491381,0.0368939985690146 +3491382,0.0369865484535694 +3491383,0.0369865484535694 +3491384,0.0359484622487851 +3491385,0.0172814922790063 +3491386,0.0683301799866588 +3491387,0.034454422973990706 +3491388,0.0517730475343684 +3491389,0.0506089764127465 +3491390,0.2384636195499648 +3491391,0.0510356146844398 +3491392,0.1010006215060321 +3491393,0.3696205168962471 +3491394,0.0099982988477699 +3491395,0.0402881514191213 +3491396,0.031103122048079704 +3491397,0.0103943015372145 +3491398,0.0131909186020493 +3491399,0.0659911159736193 +3491400,0.0286100253699217 +3491401,0.0286235883831977 +3491402,0.0574586211338494 +3491403,0.0287813368444787 +3491404,0.0226256786542495 +3491405,0.0727707151546287 +3491406,0.5026766644891993 +3491407,0.1006554663181305 +3491408,0.033606178798675 +3491409,0.0336983311473324 +3491410,0.0336378524692185 +3491411,0.0379656660432781 +3491412,0.0369865484535694 +3491413,0.07441496274609999 +3491414,0.07654998672701291 +3491415,0.0369865484535694 +3491416,0.18560359214761768 +3491417,0.0350872061484363 +3491418,0.1200311621492465 +3491419,0.0173484591625614 +3491420,0.0346581905600775 +3491421,0.1056830720522977 +3491422,0.5142340825567404 +3491423,0.23577678347922099 +3491424,0.0672037303447722 +3491425,0.0367441095351687 +3491426,0.0186494701498216 +3491427,0.0313577187976368 +3491428,0.0103677073493599 +3491429,0.0395727558061479 +3491430,0.0395727558061479 +3491431,0.0139075382472631 +3491432,0.0286223605929765 +3491433,0.0286235883831977 +3491434,0.0286235883831977 +3491435,0.0286235883831977 +3491436,0.027750626206398 +3491437,0.083251878619194 +3491438,0.3019663989543915 +3491439,0.1000366417509521 +3491440,0.08891570363288451 +3491441,0.07229416613224621 +3491442,0.037442616276475 +3491443,0.0490599488653313 +3491444,0.0348298291579359 +3491445,0.0170958291334276 +3491446,0.0184429230524441 +3491447,0.17156339493868739 +3491448,0.0599128184766972 +3491449,0.3167534571110106 +3491450,0.1065712869167327 +3491451,0.1344074606895444 +3491452,0.0336896060351626 +3491453,0.0336018651723861 +3491454,0.1001190332641261 +3491455,0.014850721694529 +3491456,0.07524088610031959 +3491457,0.0222473989637001 +3491458,0.0670480015204031 +3491459,0.08850646544403559 +3491460,0.0110351113696652 +3491461,0.022268251976450402 +3491462,0.0103925907704577 +3491463,0.0263519422630851 +3491464,0.0131391890226508 +3491465,0.0395727558061479 +3491466,0.0131909186020493 +3491467,0.0284901600430511 +3491468,0.0286235883831977 +3491469,0.0286235883831977 +3491470,0.2007177744463209 +3491471,0.0286906298265565 +3491472,0.0297304810590051 +3491473,0.1389022036818991 +3491474,0.1006554663181305 +3491475,0.2986689734887539 +3491476,0.0697353404295921 +3491477,0.4705828082374561 +3491478,0.0328735254023264 +3491479,0.172585207041302 +3491480,0.11611005022751 +3491481,0.1060734290738551 +3491482,0.31971386075019814 +3491483,0.1344074606895444 +3491484,0.0373558117000527 +3491485,0.0331595201932771 +3491486,0.046108357796801794 +3491487,0.0447105935893048 +3491488,0.0745022679414239 +3491489,0.014850721694529 +3491490,0.0223972201347351 +3491491,0.044169769002880596 +3491492,0.0188345904909226 +3491493,0.0138079983664137 +3491494,0.0131909186020493 +3491495,0.0263818372040986 +3491496,0.08577381153524499 +3491497,0.0286235883831977 +3491498,0.0286235883831977 +3491499,0.0286829671552916 +3491500,0.0833072333786275 +3491501,0.0283714988394976 +3491502,0.1003822169385294 +3491503,0.0584699842609492 +3491504,0.0619235634924054 +3491505,0.378293456510232 +3491506,0.1534247838133882 +3491507,0.113906198509343 +3491508,0.1732686867711727 +3491509,0.313924570665316 +3491510,0.31971386075019814 +3491511,0.0336018651723861 +3491512,0.0370833815710905 +3491513,0.4151618194496872 +3491514,0.1475537668466006 +3491515,0.014850721694529 +3491516,0.0164960791823851 +3491517,0.1119646572791756 +3491518,0.1118509030178367 +3491519,0.0203027227674717 +3491520,0.0397232331711672 +3491521,0.066164578970551 +3491522,0.0285992388976911 +3491523,0.0286204671713339 +3491524,0.086921815049816 +3491525,0.1439959387986799 +3491526,0.0555653661611788 +3491527,0.0282462317997503 +3491528,0.0560719077728974 +3491529,0.027750626206398 +3491530,0.0579636584832971 +3491531,0.0604004338606509 +3491532,0.226744049719819 +3491533,0.150228743816783 +3491534,0.0957281540827853 +3491535,0.0336018651723861 +3491536,0.0397472791864873 +3491537,0.0339615552610984 +3491538,0.2601913949281675 +3491539,0.0516953674438251 +3491540,0.014850721694529 +3491541,0.0450478174591627 +3491542,0.0670369337295887 +3491543,0.0223972201347351 +3491544,0.0221253522545617 +3491545,0.04320323896985161 +3491546,0.0395727558061479 +3491547,0.027592311717597698 +3491548,0.0132921455075083 +3491549,0.083251878619194 +3491550,0.083251878619194 +3491551,0.055501810886004005 +3491552,0.42177146707074054 +3491553,0.1773740608912837 +3491554,0.0604590594842144 +3491555,0.0713903856820748 +3491556,0.2841781259168126 +3491557,0.0401802946536213 +3491558,0.0336859556770997 +3491559,0.10082035015510199 +3491560,0.014850721694529 +3491561,0.014850721694529 +3491562,0.07425360847264499 +3491563,0.015326156834426 +3491564,0.0670128738932344 +3491565,0.0446387872820634 +3491566,0.0221082586215316 +3491567,0.0167091279128505 +3491568,0.0535302729389705 +3491569,0.0132323192134539 +3491570,0.0285016860876542 +3491571,0.083251878619194 +3491572,0.0832547348544525 +3491573,0.12002750816193761 +3491574,0.1804881340633962 +3491575,0.1216503188953422 +3491576,0.0404998771846294 +3491577,0.0404998771846294 +3491578,0.040265914346845 +3491579,0.0150928331269645 +3491580,0.0149459616139498 +3491581,0.014850721694529 +3491582,0.0223676766331554 +3491583,0.0447066222752771 +3491584,0.1289062102086451 +3491585,0.0578668464805462 +3491586,0.0278702558097448 +3491587,0.027750626206398 +3491588,0.0832602163969533 +3491589,0.1696608298588276 +3491590,0.0456631791926771 +3491591,0.0568737269906739 +3491592,0.0423540641245868 +3491593,0.0404998771846294 +3491594,0.0391951514888894 +3491595,0.0352935613084646 +3491596,0.0157081332673225 +3491597,0.0511426128845925 +3491598,0.1434432725610975 +3491599,0.0222518555126396 +3491600,0.0485191599007605 +3491601,0.1330709423679179 +3491602,0.0196619633894889 +3491603,0.0561597779595636 +3491604,0.1115581875286307 +3491605,0.262269803090414 +3491606,0.0277694636673281 +3491607,0.1168176151981612 +3491608,0.0384753983418211 +3491609,0.08247190597486409 +3491610,0.12425463264235839 +3491611,0.0599756638024055 +3491612,0.0602954369913555 +3491613,0.0452671078315503 +3491614,0.0547943934784769 +3491615,0.0216664621598335 +3491616,0.0213197502075663 +3491617,0.0376322249435912 +3491618,0.1489005100003624 +3491619,0.0418902487301239 +3491620,0.0453527866118217 +3491621,0.0453258268535137 +3491622,0.0453258268535137 +3491623,0.0386754847589509 +3491624,0.0384435020387172 +3491625,0.0769206521009741 +3491626,0.0413290485739707 +3491627,0.12398714572191209 +3491628,0.060327015735751 +3491629,0.0602863557560523 +3491630,0.09822095631581951 +3491631,0.0548113584518432 +3491632,0.16430034154984752 +3491633,0.0548113584518432 +3491634,0.0215365745765145 +3491635,0.0639960672512915 +3491636,0.0353662236009936 +3491637,0.1031281899596738 +3491638,0.0591097711236845 +3491639,0.0582255209658272 +3491640,0.041743567465116205 +3491641,0.0443796431611055 +3491642,0.0206090679625046 +3491643,0.0453258268535137 +3491644,0.0436867886080654 +3491645,0.0451445584444283 +3491646,0.0384435020387172 +3491647,0.0384701578049686 +3491648,0.0413290485739707 +3491649,0.0412958527993155 +3491650,0.0820477400656971 +3491651,0.0259785580421387 +3491652,0.13143528585623748 +3491653,0.1891982005016977 +3491654,0.2734265392493609 +3491655,0.0215949767708834 +3491656,0.1035563195626938 +3491657,0.06904589913496051 +3491658,0.1759154730992834 +3491659,0.1776932033346486 +3491660,0.0620087428691557 +3491661,0.061209592218992 +3491662,0.0448897302799833 +3491663,0.0453258268535137 +3491664,0.040766731790302 +3491665,0.0415210358980018 +3491666,0.1923049615515764 +3491667,0.11533052263733459 +3491668,0.0768870040774344 +3491669,0.0771502088406271 +3491670,0.0413290485739707 +3491671,0.12398713629778269 +3491672,0.0409907221712844 +3491673,0.0258773639798164 +3491674,0.0267067585731006 +3491675,0.0280981227061629 +3491676,0.0518631239642893 +3491677,0.1644340753555296 +3491678,0.0544259002362642 +3491679,0.0349573744330902 +3491680,0.0332357208181315 +3491681,0.296291559934616 +3491682,0.4135561220721899 +3491683,0.058948913503656 +3491684,0.0619025620286811 +3491685,0.061868726285287196 +3491686,0.0903058871117582 +3491687,0.0450835491884764 +3491688,0.038171435953893 +3491689,0.0231126036793406 +3491690,0.0424950791611845 +3491691,0.0381793369489415 +3491692,0.1146421162121995 +3491693,0.11533644021788031 +3491694,0.1239562476479969 +3491695,0.12395494004056179 +3491696,0.0413290485739707 +3491697,0.0410997360627591 +3491698,0.077979059770987 +3491699,0.11053208935125129 +3491700,0.0548113584518432 +3491701,0.0548113584518432 +3491702,0.1088924460212071 +3491703,0.0537040263595231 +3491704,0.0349058098016033 +3491705,0.1038662598998022 +3491706,0.3500242024198353 +3491707,0.1185166239738464 +3491708,0.021152453298591 +3491709,0.022251719624542 +3491710,0.0297811806021392 +3491711,0.0358935065368273 +3491712,0.0925843074321686 +3491713,0.11526346753035449 +3491714,0.1921063707490843 +3491715,0.0413290485739707 +3491716,0.0413290485739707 +3491717,0.12398714572191209 +3491718,0.0412769494844926 +3491719,0.0295965285718412 +3491720,0.0548113584518432 +3491721,0.1644340753555296 +3491722,0.0533291690435389 +3491723,0.0548113584518432 +3491724,0.0327029613977753 +3491725,0.07460326282207211 +3491726,0.1417054589348489 +3491727,0.0465628869494524 +3491728,0.0591290513931223 +3491729,0.1064451374324539 +3491730,0.085445833728463 +3491731,0.0583629908578183 +3491732,0.0335493418467852 +3491733,0.0337927762298687 +3491734,0.0683941333831568 +3491735,0.0379392612424014 +3491736,0.1151570183804709 +3491737,0.037771858646015 +3491738,0.164971896542913 +3491739,0.0413290485739707 +3491740,0.0413290485739707 +3491741,0.0413290485739707 +3491742,0.1267468380611123 +3491743,0.10892447177828471 +3491744,0.0545485991367803 +3491745,0.0548113584518432 +3491746,0.1096227169036864 +3491747,0.0513710868876231 +3491748,0.1094589079348258 +3491749,0.0653588197972656 +3491750,0.0328321662389867 +3491751,0.17177883955713008 +3491752,0.0245008785277605 +3491753,0.0282944161144405 +3491754,0.0282666202891587 +3491755,0.1584882334078319 +3491756,0.0523852937651991 +3491757,0.0596003997706807 +3491758,0.056932757244652896 +3491759,0.0333967158906762 +3491760,0.0333942385495964 +3491761,0.0338005349040031 +3491762,0.0309522512790203 +3491763,0.0230218323979088 +3491764,0.0228223304609816 +3491765,0.037388534467068 +3491766,0.1238280444499113 +3491767,0.0413197349467432 +3491768,0.1234808977720368 +3491769,0.0828402773516848 +3491770,0.1258651473834546 +3491771,0.0413290485739707 +3491772,0.2736676536166574 +3491773,0.0548113584518432 +3491774,0.1642387232081854 +3491775,0.0980475320375875 +3491776,0.0246148711186868 +3491777,0.0243827332187961 +3491778,0.0287521795519901 +3491779,0.0282321777194738 +3491780,0.1586485739915088 +3491781,0.0528233014047145 +3491782,0.033363244720605 +3491783,0.10024655702770521 +3491784,0.0940771842000773 +3491785,0.09952610404635409 +3491786,0.0759509986504615 +3491787,0.0253247246146202 +3491788,0.0228058770298957 +3491789,0.0394926059893816 +3491790,0.0411578684643861 +3491791,0.2425428394864422 +3491792,0.0549925120992159 +3491793,0.0546290754141064 +3491794,0.1638064623283596 +3491795,0.131296634674072 +3491796,0.032824158668518 +3491797,0.0245469475111446 +3491798,0.1412164729423944 +3491799,0.0282483296536162 +3491800,0.1581119421708598 +3491801,0.0526957222120707 +3491802,0.0333252273033035 +3491803,0.1669557991576215 +3491804,0.0310689260594457 +3491805,0.0620203167038011 +3491806,0.0506007282676189 +3491807,0.0253247246146202 +3491808,0.10209588798643629 +3491809,0.09067147662724731 +3491810,0.0684394535996241 +3491811,0.1071983773892484 +3491812,0.0540222974170057 +3491813,0.0531780210100052 +3491814,0.0653569782902707 +3491815,0.032824158668518 +3491816,0.0650534373596714 +3491817,0.1129694144786994 +3491818,0.1497588917610172 +3491819,0.0659419685598786 +3491820,0.051084842414296 +3491821,0.0333346181532855 +3491822,0.1003034422062505 +3491823,0.0309326038953921 +3491824,0.0932271041947844 +3491825,0.0253241975112639 +3491826,0.07601605432566699 +3491827,0.0253247246146202 +3491828,0.0227955694325403 +3491829,0.0644924232077407 +3491830,0.4319365921088849 +3491831,0.0705013880554053 +3491832,0.0311261524475046 +3491833,0.0286792685312387 +3491834,0.1880307711792236 +3491835,0.0377793866291156 +3491836,0.0311756296364732 +3491837,0.0281335930930128 +3491838,0.0289801674497675 +3491839,0.0310651436448097 +3491840,0.0310350301945354 +3491841,0.0311881596075461 +3491842,0.1267022524823504 +3491843,0.0763595663981721 +3491844,0.0235496687610354 +3491845,0.0428517647087574 +3491846,0.0724266469478607 +3491847,0.0724266469478607 +3491848,0.0562746959103569 +3491849,0.0280239150687159 +3491850,0.0837844337162855 +3491851,0.0838073632693747 +3491852,0.1879176598503809 +3491853,0.0373700040715907 +3491854,0.0376385279914975 +3491855,0.0311716199350587 +3491856,0.0311562014678862 +3491857,0.0249507851590994 +3491858,0.0234725057715372 +3491859,0.0288721709809139 +3491860,0.0927358182157571 +3491861,0.0929849895021735 +3491862,0.025399258381433 +3491863,0.0253827728540873 +3491864,0.1311189017089546 +3491865,0.0500910224447979 +3491866,0.0227779391267659 +3491867,0.0434662837814621 +3491868,0.0649270931339091 +3491869,0.14483070325586422 +3491870,0.2171995782415237 +3491871,0.0724266469478607 +3491872,0.0723231114741477 +3491873,0.1963521809043774 +3491874,0.0280238707321552 +3491875,0.0279287244097388 +3491876,0.1396361792981624 +3491877,0.1071577712100917 +3491878,0.0291383761105048 +3491879,0.0311732783839985 +3491880,0.0241185026511444 +3491881,0.0723014599307963 +3491882,0.0228844073174862 +3491883,0.0228188179679831 +3491884,0.0223193559502148 +3491885,0.0291095287960696 +3491886,0.0262719602891158 +3491887,0.1235173954145983 +3491888,0.0246682575861649 +3491889,0.0233251302468425 +3491890,0.0724266469478607 +3491891,0.1396926020478286 +3491892,0.0724266469478607 +3491893,0.2172799408435821 +3491894,0.0841529205207587 +3491895,0.0279271751642227 +3491896,0.0837251644898168 +3491897,0.2178639381327839 +3491898,0.0242647478002964 +3491899,0.0263795918868787 +3491900,0.0263871207676317 +3491901,0.0241175391071013 +3491902,0.0239629028345666 +3491903,0.1140982356337533 +3491904,0.0228570503960772 +3491905,0.0201354262676653 +3491906,0.0617974498436292 +3491907,0.057944885886699 +3491908,0.0294275777990165 +3491909,0.1262098499187255 +3491910,0.0245040960429917 +3491911,0.36213323473930353 +3491912,0.21693238822997002 +3491913,0.0717955042014813 +3491914,0.0279271751642227 +3491915,0.0279168068917941 +3491916,0.027923267736698 +3491917,0.0716049635677834 +3491918,0.0481294348748893 +3491919,0.0791291619900928 +3491920,0.07912803705413471 +3491921,0.0262631923067328 +3491922,0.0232275658258458 +3491923,0.0228128616674428 +3491924,0.06819493476243191 +3491925,0.0228304100158368 +3491926,0.020203521865391 +3491927,0.0402680014237355 +3491928,0.058338041959944104 +3491929,0.0293609960878974 +3491930,0.0233882168515811 +3491931,0.0740867752747314 +3491932,0.0724266469478607 +3491933,0.0724266469478607 +3491934,0.0724213788915418 +3491935,0.0279271751642227 +3491936,0.0279271751642227 +3491937,0.0279048080997362 +3491938,0.014457728147724 +3491939,0.0647570158650568 +3491940,0.1306825281801447 +3491941,0.0791122518568516 +3491942,0.0227848474434808 +3491943,0.0443112811251406 +3491944,0.0885946068287725 +3491945,0.0228334499610024 +3491946,0.0891721058034046 +3491947,0.1471321184185671 +3491948,0.0699185262104734 +3491949,0.2167222361888431 +3491950,0.0717991466988331 +3491951,0.2172312563431979 +3491952,0.0835906270456268 +3491953,0.0279336919040872 +3491954,0.0279271751642227 +3491955,0.0837787558292883 +3491956,0.0284628272056578 +3491957,0.0423159177343547 +3491958,0.10208146756146999 +3491959,0.0255108922719954 +3491960,0.0611402058241102 +3491961,0.0181402063914597 +3491962,0.0261406594927745 +3491963,0.052583704929155706 +3491964,0.0305824197562841 +3491965,0.0293951407545005 +3491966,0.0281010411698618 +3491967,0.0627231742719438 +3491968,0.0711571389798857 +3491969,0.1431170996333646 +3491970,0.0719608891752487 +3491971,0.0279100571094957 +3491972,0.0279476165169106 +3491973,0.0563551589957407 +3491974,0.0279357284529304 +3491975,0.0426501183761146 +3491976,0.0711599736986438 +3491977,0.0127415979781779 +3491978,0.038092657257173895 +3491979,0.038266338407993095 +3491980,0.038266338407993095 +3491981,0.060558592373133796 +3491982,0.0203334199953478 +3491983,0.0167899094521999 +3491984,0.0173958915688799 +3491985,0.026118439033151 +3491986,0.08037876489351589 +3491987,0.0282582213853907 +3491988,0.0680486634373664 +3491989,0.0637982135707754 +3491990,0.0808537948480064 +3491991,0.0279271751642227 +3491992,0.0712912374711107 +3491993,0.0563345139007677 +3491994,0.0567298133783374 +3491995,0.0607014010539675 +3491996,0.0201905565251688 +3491997,0.0168060217463359 +3491998,0.050369728356599704 +3491999,0.08394954726099951 +3492000,0.0337670807349329 +3492001,0.0268009010313498 +3492002,0.0278237716474501 +3492003,0.22687621574381112 +3492004,0.33918653756776673 +3492005,0.27289511532356503 +3492006,0.0593137306894129 +3492007,0.1341955269246503 +3492008,0.0335798189043998 +3492009,0.0671596378087996 +3492010,0.0671596378087996 +3492011,0.1148518297911628 +3492012,0.0167856845350889 +3492013,0.0168096373025289 +3492014,0.0271470184449386 +3492015,0.0791131633453473 +3492016,0.0276513240281016 +3492017,0.0166704778299192 +3492018,0.0799251220236286 +3492019,0.030958277874435898 +3492020,0.0668139339732159 +3492021,0.2454295232892036 +3492022,0.0812572000613428 +3492023,0.0243113335153983 +3492024,0.0721413286722328 +3492025,0.08343854007967941 +3492026,0.0166186263978686 +3492027,0.0375094306164041 +3492028,0.0260745286185806 +3492029,0.0818098410964012 +3492030,0.0753921719453177 +3492031,0.0800311174571539 +3492032,0.0240266962661778 +3492033,0.0241359286302078 +3492034,0.038834194083143495 +3492035,0.0389856284092301 +3492036,0.0817648324418869 +3492037,0.0813573471538649 +3492038,0.1239864278710323 +3492039,0.2277582181384895 +3492040,0.0239469090356696 +3492041,0.0242920008409788 +3492042,0.16336591082114982 +3492043,0.2435058794007227 +3492044,0.0237169860017318 +3492045,0.0722348422029846 +3492046,0.0813191296753116 +3492047,0.0664463434903651 +3492048,0.0804877101140071 +3492049,0.0947161031028507 +3492050,0.0237626424135024 +3492051,0.0698024847740473 +3492052,0.0135857711530493 +3492053,0.683556124567985 +3492054,0.2737203835164922 +3492055,0.0709720332833407 +3492056,0.0712918122836349 +3492057,0.0135857611894607 +3492058,0.0136481001863206 +3492059,0.0137811154805753 +3492060,0.3981521545898956 +3492061,0.2687582544429239 +3492062,0.068666785446221 +3492063,0.023750552907586 +3492064,0.0238589890993848 +3492065,0.0135827920845633 +3492066,0.0408278239603843 +3492067,0.08288897074217941 +3492068,0.0533220767974853 +3492069,0.0237059687951184 +3492070,0.027095458531591697 +3492071,0.0136786382104637 +3492072,0.0910978668001314 +3492073,0.0141113865741307 +3492074,0.37243340039313544 +3492075,0.21442767999887652 +3492076,0.0127322364126689 +3492077,0.0499179049488808 +3492078,0.31993246078491183 +3492079,0.15898393571164549 +3492080,0.0124732470139861 +3492081,0.0124732470139861 +3492082,0.0124927826097663 +3492083,0.2132883071899412 +3492084,0.5326802817192041 +3492085,0.0529923103824243 +3492086,0.012965189330035 +3492087,0.0124732470139861 +3492088,0.0249518767621666 +3492089,0.0500326393860676 +3492090,0.0476985799279393 +3492091,0.2647413051850755 +3492092,0.037419741041958304 +3492093,0.0394011387739262 +3492094,0.11229533910220241 +3492095,0.0250947389461808 +3492096,0.031206265012197 +3492097,0.0478365876149193 +3492098,0.103863682794665 +3492099,0.0533220767974853 +3492100,0.0124913220274487 +3492101,0.1121546097938822 +3492102,0.0622631203450148 +3492103,0.0467190444469451 +3492104,0.0935629573136598 +3492105,0.057474436294802804 +3492106,0.046827323734760104 +3492107,0.06458758930696029 +3492108,0.0623363374550116 +3492109,0.0124732470139861 +3492110,0.5562354700291303 +3492111,0.14000912159783502 +3492112,0.1105962504940919 +3492113,0.0156091079115867 +3492114,0.0124732470139861 +3492115,0.0498929880559444 +3492116,0.0249464940279722 +3492117,0.037419741041958304 +3492118,0.0594869668205116 +3492119,0.0448289423272307 +3492120,0.0162904461640989 +3492121,0.0468502508640167 +3492122,0.047056053350957805 +3492123,0.0498929880559444 +3492124,0.0124732470139861 +3492125,0.0124732470139861 +3492126,0.0124732470139861 +3492127,0.0249464940279722 +3492128,0.024965068642141403 +3492129,0.0416466315540137 +3492130,0.0442940592206168 +3492131,0.0134495205649749 +3492132,0.0388200014338662 +3492133,0.0372806876717827 +3492134,0.024939695001577 +3492135,0.0401617020451978 +3492136,0.0125294009090445 +3492137,0.0254090615939351 +3492138,0.1327771703031521 +3492139,0.0612546878490665 +3492140,0.0442858843039172 +3492141,0.309140700780231 +3492142,0.0124017381725525 +3492143,0.0747556203450473 +3492144,0.2166357447238249 +3492145,0.0199174905307548 +3492146,0.049953883880793 +3492147,0.0698085989915438 +3492148,0.0440637334973229 +3492149,0.0441254824399948 +3492150,0.1754028138553212 +3492151,0.0341010906439154 +3492152,0.0384433364292295 +3492153,0.059824533742180004 +3492154,0.0100811023383983 +3492155,0.0441254824399948 +3492156,0.0441254824399948 +3492157,0.0114514588243829 +3492158,0.0547605186737598 +3492159,0.0109115801117092 +3492160,0.089908061646051 +3492161,0.0856952052013791 +3492162,0.0437815591965872 +3492163,0.1323769773510165 +3492164,0.13237644731998438 +3492165,0.0230175975384718 +3492166,0.1091869540805535 +3492167,0.0099827928003558 +3492168,0.0366097106837974 +3492169,0.22058616464386518 +3492170,0.2204694883437097 +3492171,0.1320417589228568 +3492172,0.0441254824399948 +3492173,0.0124317804128554 +3492174,0.0616762036183245 +3492175,0.0864398672325913 +3492176,0.0441254824399948 +3492177,0.1323264791257115 +3492178,0.0441254824399948 +3492179,0.220627412199974 +3492180,0.0441254824399948 +3492181,0.1765019297599792 +3492182,0.3086226550627229 +3492183,0.26475289463996876 +3492184,0.132515402978225 +3492185,0.0441254824399948 +3492186,0.0441254824399948 +3492187,0.1325388009966493 +3492188,0.0441254824399948 +3492189,0.1322553504634744 +3492190,0.1765019297599792 +3492191,0.0441254824399948 +3492192,0.0441254824399948 +3492193,0.2178273885271563 +3492194,0.1743645352438824 +3492195,0.0441254824399948 +3492196,0.1323909859540301 +3492197,0.0882509648799896 +3492198,0.0445110994605692 +3492199,0.1323406232664455 +3492200,0.13237644731998438 +3492201,0.220627412199974 +3492202,0.48324685756892777 +3492203,0.1314785893242241 +3492204,0.0438665870495943 +3492205,0.0920267633294047 +3492206,0.1072360340275745 +3492207,0.0866490383468516 +3492208,0.0259966384619474 +3492209,0.0475470680182266 +3492210,0.0766229960352338 +3492211,0.0818474278127193 +3492212,0.0790674345638811 +3492213,0.0153320515528321 +3492214,0.0160077786032603 +3492215,0.0861717683410097 +3492216,0.0271390768223591 +3492217,0.0153320515528321 +3492218,0.0459616206030497 +3492219,0.20429391042736988 +3492220,0.0273203996493153 +3492221,0.051763968695206206 +3492222,0.0778182342255412 +3492223,0.045996154658496304 +3492224,0.0777502075137059 +3492225,0.1004570243000841 +3492226,0.0179781164717859 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001110900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001110900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001110900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001111900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001111900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001111900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001112000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001112000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001112000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001112100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001112100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001112100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001112200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001112200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001112200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001112300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001112300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..f0f40ca86 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001112300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0456259907972544 +3490292,0.0939711403280206 +3490293,0.0102812936529517 +3490316,0.0205625873059034 +3490317,0.051406468264758504 +3490332,0.0308438809588551 +3490333,0.0332435318648865 +3490334,0.0651565627431821 +3490335,0.0102812936529517 +3490348,0.0170707736935254 +3490349,0.0590432927594805 +3490350,0.0102812936529517 +3490351,0.0308438809588551 +3490374,0.1620160988751311 +3490375,0.4872778671449305 +3490376,0.1740987562023275 +3490377,0.0299194524687191 +3490378,0.0205625873059034 +3490379,0.095429043302639 +3490396,0.0798374899039165 +3490397,0.162341833114624 +3490398,0.030918688366764598 +3490399,0.0205625873059034 +3490418,0.0665028371367552 +3490419,0.0102812936529517 +3490437,0.0105193826207563 +3490438,0.054394097729049504 +3490439,0.074287965313032 +3490440,0.010282411236588 +3490457,0.2435166598326359 +3490458,0.2439519214003225 +3490459,0.0205625873059034 +3490460,0.1120960352188819 +3490476,0.0205165782207682 +3490477,0.030646223242221 +3490478,0.0137028656899928 +3490479,0.0137028656899928 +3490499,0.2609385105498458 +3490500,0.0068514328449964 +3490517,0.080757911103026 +3490518,0.0930075847065609 +3490519,0.0274057313799856 +3490520,0.034257164224982 +3490544,0.0068514328449964 +3490545,0.0070341048126752 +3490546,0.0137028656899928 +3490547,0.0071713486815087 +3490573,0.0205047620386815 +3490574,0.0068514328449964 +3490575,0.0107935255868864 +3490576,0.014306649204722601 +3490597,0.022809704477014102 +3490598,0.0187129822714591 +3490599,0.0078033423668411 +3490600,0.032614927219612 +3490601,0.012368517086652 +3490602,0.0130559659033861 +3490603,0.0665627160538449 +3490604,0.064683594956543 +3490623,0.0061810337938368 +3490624,0.0123620675876736 +3490625,0.0616290459911469 +3490626,0.2327230127950107 +3490639,0.0061810337938368 +3490640,0.0247241351753472 +3490641,0.016693851434153 +3490642,0.18494873310044668 +3490643,0.3129333103924574 +3490644,0.0781116709113121 +3490645,0.0778310157826484 +3490658,0.0123620675876736 +3490659,0.0061810337938368 +3490660,0.4366801813311158 +3490661,0.18829706826435438 +3490662,0.5426698630742927 +3490663,0.0781116709113121 +3490664,0.0776639022340435 +3490665,0.2337130026992642 +3490681,0.034118594440408496 +3490682,0.0061810337938368 +3490683,0.0061810337938368 +3490684,0.0123620675876736 +3490685,0.0603557763681035 +3490686,0.0623466613940034 +3490687,0.0782854098394243 +3490688,0.0782194978119418 +3490689,0.0779803532239818 +3490690,0.0781116709113121 +3490707,0.0123620675876736 +3490708,0.0061810337938368 +3490709,0.0080480150382911 +3490710,0.0061810337938368 +3490725,0.0061574633093252 +3490726,0.0061810337938368 +3490727,0.0185431013815104 +3490728,0.0255245628868021 +3490736,0.0437578895678358 +3490737,0.0328691956809765 +3490738,0.4289130669911215 +3490739,0.0549414405119492 +3490747,1.207657022815792 +3490748,0.0259277223959919 +3490757,0.0209858483212517 +3490758,0.024205425437973202 +3490771,0.0156061340706881 +3490772,0.0054135584895575 +3490773,0.0102400087916063 +3490774,0.0106004345613197 +3490787,0.0103708905181648 +3490788,0.0133883978919371 +3490789,0.1643561451331198 +3490790,0.2622009466142401 +3490805,0.0050648813200469 +3490806,0.019400366800502198 +3490807,0.0103569226339458 +3490808,0.0253933916916613 +3490809,0.0388426276776698 +3490810,0.0391811934790358 +3490827,0.0042440235848026 +3490828,0.0043470326232836 +3490842,0.012547006826481499 +3490843,0.0041809664107859 +3490844,0.0042509701000214 +3490845,0.0130467393975676 +3490856,0.0041809664107859 +3490857,0.0046385597491656 +3490858,0.0041809664107859 +3490859,0.013877928809256 +3490860,0.0043190666474401 +3490861,0.0216372735148865 +3490875,0.0041809664107859 +3490876,0.0041809664107859 +3490877,0.013616305062465198 +3490878,0.0046771158175937 +3490879,0.0086381332948802 +3490892,0.012542899232357699 +3490893,0.012542899232357699 +3490894,0.0043190666474401 +3490895,0.0085866565298301 +3490900,0.0041795028766512 +3490901,0.0040965445555678 +3490902,0.0146988198433184 +3490903,0.012551645458857199 +3490904,0.059123856691505 +3490905,0.0207786381999658 +3490906,0.0256951932603083 +3490907,0.3179486624910037 +3490916,0.012575653084538098 +3490917,0.0042321826380833 +3490918,0.0041780173528178 +3490919,0.0041963283541446 +3490920,0.0049417287296489 +3490921,0.019396350650027202 +3490922,0.015390229130106198 +3490923,0.4944582355109996 +3490924,0.008130640447598 +3490925,0.2008231333091414 +3490926,0.5904015563252221 +3490935,0.0040646672985479 +3490936,0.0090035104147173 +3490937,0.0761912697449917 +3490938,0.0748468199202903 +3490939,0.0173939751710754 +3490940,0.0164874788371938 +3490941,0.0659507777921894 +3490942,0.0655016158892573 +3490953,0.0041605936069928 +3490954,0.0041836574510875 +3490955,0.0068690817865205 +3490956,0.0239788140811853 +3490957,0.0688320372206448 +3490958,0.0669826240069863 +3490959,0.016523311380296703 +3490960,0.0165041254908543 +3490966,0.012018386274576 +3490967,0.004006128758192 +3490968,0.0486931824165705 +3490969,0.0611917049089263 +3490970,0.4784428537580774 +3490971,0.0682315373652107 +3490972,0.2641230058062231 +3490973,0.066042525857552 +3490974,0.0055077704600989 +3490975,0.016918460081328 +3490980,0.0120584251835015 +3490981,0.0040773606676164 +3490982,0.0041318423224692 +3490983,0.0339734549199607 +3490984,0.3024502094653288 +3490985,0.6765711239482574 +3490986,0.0685189858896212 +3490987,0.20532672496450122 +3490988,0.204943234884397 +3490989,0.0662528477947219 +3490990,0.1981027527265797 +3490991,0.0659896128256184 +3490992,0.0055077704600989 +3490993,0.0055077704600989 +3490994,0.0298927656138946 +3490995,0.0055077704600989 +3490999,0.0040177526837645 +3491000,0.0040383423825944 +3491001,0.037619652819303 +3491002,0.014323883980443899 +3491003,0.0617391368160677 +3491004,0.0616248466061703 +3491005,0.20525336812221479 +3491006,0.3422405716088922 +3491007,0.0247043705642244 +3491008,0.0204977774618659 +3491009,0.0284733357743734 +3491010,0.0164449108838804 +3491013,0.0197174327353428 +3491014,0.0463591257942403 +3491015,0.2056352238042598 +3491016,0.2056005974578346 +3491017,0.5411687613729513 +3491018,0.0271884817616644 +3491019,0.0290882824839691 +3491020,0.0055077704600989 +3491021,0.0088000623509286 +3491022,0.013733346303731 +3491023,0.0517910962301636 +3491024,0.0124494284153302 +3491025,0.19299771861113368 +3491026,0.0644939988125823 +3491027,0.0317243714228248 +3491028,0.0207205325298963 +3491029,0.0044000311754643 +3491030,0.0277541359253606 +3491031,0.0336546667687259 +3491032,0.048866825078294804 +3491033,0.048080853919977 +3491034,0.0525403134524822 +3491035,0.0515705298704254 +3491036,0.0639517427724909 +3491037,0.0644859448075294 +3491038,0.0231415347098795 +3491039,0.2565719988435816 +3491040,0.0044000311754643 +3491041,0.0132000935263929 +3491042,0.0490200854837894 +3491043,0.0461005600825754 +3491044,0.0512346216606572 +3491045,0.2600126859089684 +3491046,0.0644859448075294 +3491047,0.0645612491411803 +3491048,0.0211771961619581 +3491049,0.0208579804748296 +3491050,0.1530911650644609 +3491051,0.051035999813212 +3491052,0.0044000311754643 +3491053,0.0227889501276577 +3491054,0.1470255657037798 +3491055,0.14580033150341282 +3491056,0.051546489172666 +3491057,0.3580367276148757 +3491058,0.0644859448075294 +3491059,0.19263934826010337 +3491060,0.1048771643003932 +3491061,0.0208579804748296 +3491062,0.06319575403929881 +3491063,0.1039980476857302 +3491064,0.0507670431562585 +3491065,0.25490893822947097 +3491066,0.0132000935263929 +3491067,0.0044000311754643 +3491068,0.0077500307959211 +3491069,0.0046238745240784 +3491070,0.0338004378852142 +3491071,0.09830047572568071 +3491072,0.4502917791673284 +3491073,0.19349987476432828 +3491074,0.0208579804748296 +3491075,0.188408704934872 +3491076,0.1525453070802946 +3491077,0.0510309236102073 +3491078,0.0634647495810458 +3491079,0.019902855474378398 +3491080,0.0163151028673713 +3491081,0.0048323596737383 +3491082,0.0633701031733415 +3491083,0.0644478335932781 +3491084,0.0644859448075294 +3491085,0.0644859448075294 +3491086,0.0639553981642457 +3491087,0.0629238079274726 +3491088,0.050115930451179305 +3491089,0.0910902651546392 +3491090,0.0514899491374374 +3491091,0.0513702655672222 +3491092,0.0137738300583898 +3491093,0.0058597618777194 +3491094,0.19345783442258818 +3491095,0.3226385481999173 +3491096,0.0625100532663533 +3491097,0.0209972633931276 +3491098,0.1455931518488501 +3491099,0.0169086111524881 +3491100,0.0491958422190351 +3491101,0.0262952365775333 +3491102,0.22999782061006968 +3491103,0.32243312788865036 +3491104,0.322639080495371 +3491105,0.0565778509361449 +3491106,0.1158940359693258 +3491107,0.1618047026252763 +3491108,0.0969398292228577 +3491109,0.0615401731196642 +3491110,0.1735870255532262 +3491111,0.0454394002652706 +3491112,0.0047949538566172 +3491113,0.4042074945136438 +3491114,0.2873801865251618 +3491115,0.45022923334244797 +3491116,0.3226005091410501 +3491117,0.0189940756526877 +3491118,0.0938698409031271 +3491119,0.1468142231413121 +3491120,0.0736148870588515 +3491121,0.0970407142015156 +3491122,0.0323928142313814 +3491123,0.0316232297839656 +3491124,0.15174069057527528 +3491125,0.0150856399874849 +3491126,0.2357550257081869 +3491127,0.0051715450852528 +3491128,0.0364917602503308 +3491129,0.057427456392898 +3491130,0.0578321665525436 +3491131,0.11226048110280279 +3491132,0.1710764993129748 +3491133,0.0187636669725179 +3491134,0.0188004319478472 +3491135,0.0245053693652153 +3491136,0.2696889865462908 +3491137,0.2919060651970551 +3491138,0.09574682440572041 +3491139,0.2878288536854072 +3491140,0.0168179049787792 +3491141,0.261185384118588 +3491142,0.0048514241946843 +3491143,0.0067965418709586 +3491144,0.1700692983382526 +3491145,0.0578321665525436 +3491146,0.0753055407317082 +3491147,0.0188216637795287 +3491148,0.0245053693652153 +3491149,0.0324343778192997 +3491150,0.0323395773520652 +3491151,0.0318597496541416 +3491152,0.0323384048461688 +3491153,0.0586287043988704 +3491154,0.1769015477983957 +3491155,0.1022653724611691 +3491156,0.1757090897182469 +3491157,0.0854334968789256 +3491158,0.2354238087127522 +3491159,0.0379409632358828 +3491160,0.0568898209574254 +3491161,0.0980214774608612 +3491162,0.0245053693652153 +3491163,0.09555411728587879 +3491164,0.0963594817579056 +3491165,0.0955866659561797 +3491166,0.0318719624455538 +3491167,0.1752477715462886 +3491168,0.1759159542240624 +3491169,0.1028133469552771 +3491170,0.017136164009571 +3491171,0.168068248078224 +3491172,0.0421756825455317 +3491173,0.1309817291688422 +3491174,0.1312316130222826 +3491175,0.0191123292840524 +3491176,0.0739240239062923 +3491177,0.0253208603728575 +3491178,0.0245053693652153 +3491179,0.0735161080956459 +3491180,0.0319671930332694 +3491181,0.1273341816143274 +3491182,0.0958654314651487 +3491183,0.4094171473149497 +3491184,0.5283950053548001 +3491185,0.0172304363507383 +3491186,0.0178761467850687 +3491187,0.068544656038284 +3491188,0.1041008992009024 +3491189,0.4207444762246362 +3491190,0.1262851525929317 +3491191,0.043644443016591 +3491192,0.1304895652121711 +3491193,0.0245053693652153 +3491194,0.0245053693652153 +3491195,0.0277000158853853 +3491196,0.2885326044766173 +3491197,0.4086755793502241 +3491198,0.4696559737539015 +3491199,0.0865082360888752 +3491200,0.0710417607573194 +3491201,0.21044209907487638 +3491202,0.0841647684574126 +3491203,0.0435823859744757 +3491204,0.21824333230348691 +3491205,0.0806248340226828 +3491206,0.0245053693652153 +3491207,0.0979659635766536 +3491208,0.049155856131691905 +3491209,0.0188298689031271 +3491210,0.0168540432833843 +3491211,0.1031779707107237 +3491212,0.0339821699159189 +3491213,0.2946836818064854 +3491214,0.12605408918952848 +3491215,0.0420823842287063 +3491216,0.0420823842287063 +3491217,0.21814997018181712 +3491218,0.2170517505572648 +3491219,0.0512096840070819 +3491220,0.1715375855565071 +3491221,0.12673605121514891 +3491222,0.0980214774608612 +3491223,0.0185221882373578 +3491224,0.0186728385090446 +3491225,0.1802712456046759 +3491226,0.1976657954026993 +3491227,0.0352380685508251 +3491228,0.07053583390803389 +3491229,0.066586831589622 +3491230,0.0331263024088893 +3491231,0.12624715268611889 +3491232,0.0418857518669875 +3491233,0.0866422469290836 +3491234,0.0866368699908375 +3491235,0.2703211177759917 +3491236,0.0245017926051246 +3491237,0.059431637961909506 +3491238,0.0244232027555152 +3491239,0.0188640265199841 +3491240,0.0185273874122716 +3491241,0.0194977810420386 +3491242,0.0200065032795126 +3491243,0.0668637380003929 +3491244,0.0667379041703793 +3491245,0.10521395562935179 +3491246,0.17619034275412548 +3491247,0.0570020231240409 +3491248,0.010848238132894 +3491249,0.0420823842287063 +3491250,0.0420823842287063 +3491251,0.043422167433738 +3491252,0.12458666005126261 +3491253,0.0245053693652153 +3491254,0.0245145971531934 +3491255,0.0557481083964915 +3491256,0.0370581373572348 +3491257,0.0586338712752972 +3491258,0.0374760897206426 +3491259,0.0301884620751043 +3491260,0.0244175836699655 +3491261,0.0594153051235092 +3491262,0.059635727530107194 +3491263,0.0668637380003929 +3491264,0.1334482750203986 +3491265,0.1409522742033004 +3491266,0.1053003155327289 +3491267,0.0352380685508251 +3491268,0.0351438779917344 +3491269,0.0797664020456913 +3491270,0.0549227421247563 +3491271,0.1257669322812017 +3491272,0.0420823842287063 +3491273,0.25249430537223777 +3491274,0.293255403635384 +3491275,0.1234069914961184 +3491276,0.0971994756812499 +3491277,0.0185290686786174 +3491278,0.0235430211479874 +3491279,0.0323305432197658 +3491280,0.0311240200458564 +3491281,0.031203333853696 +3491282,0.0244195418519965 +3491283,0.0964249018265596 +3491284,0.059116645885394295 +3491285,0.0597884722073045 +3491286,0.200479105643142 +3491287,0.2004493302606018 +3491288,0.0352380685508251 +3491289,0.0704549809184214 +3491290,0.0822628809943487 +3491291,0.025309514923800402 +3491292,0.1679083617578353 +3491293,0.0418037681253371 +3491294,0.0404850467146024 +3491295,0.0735649289778562 +3491296,0.17125406540239252 +3491297,0.3085205967575894 +3491298,0.055896691223640604 +3491299,0.0382995594388023 +3491300,0.0174130434457463 +3491301,0.0314020155839462 +3491302,0.0916520152987269 +3491303,0.0980179346829618 +3491304,0.0335892365332005 +3491305,0.0244054901825662 +3491306,0.1209130002341977 +3491307,0.0209312778476883 +3491308,0.0197027914682359 +3491309,0.0596004737341617 +3491310,0.1337981361309476 +3491311,0.1409522742033004 +3491312,0.0352380685508251 +3491313,0.0502112198557487 +3491314,0.0348155601667008 +3491315,0.025958090246334 +3491316,0.0735161080956459 +3491317,0.0245053693652153 +3491318,0.0770974304216713 +3491319,0.0384656187909542 +3491320,0.038452740159237 +3491321,0.0384963974356651 +3491322,0.060162558455906096 +3491323,0.08745805193864581 +3491324,0.06304716300517679 +3491325,0.0312994438947685 +3491326,0.0428240856330055 +3491327,0.0472673848358841 +3491328,0.0972763252063436 +3491329,0.0241626724600791 +3491330,0.0237472878247784 +3491331,0.0468597410951306 +3491332,0.1057142056524753 +3491333,0.0352380685508251 +3491334,0.3876187540590761 +3491335,0.1406681695465093 +3491336,0.0480250525031905 +3491337,0.0484433348525438 +3491338,0.0453808955644749 +3491339,0.027212100999948998 +3491340,0.0245053693652153 +3491341,0.0735161080956459 +3491342,0.0384963974356651 +3491343,0.19248198717832551 +3491344,0.0168425686233368 +3491345,0.0165740042893439 +3491346,0.1285557883795832 +3491347,0.1291983741345989 +3491348,0.0481814425898387 +3491349,0.1448428966104984 +3491350,0.0724625545664097 +3491351,0.0724880173802373 +3491352,0.1688139677617606 +3491353,0.0262390431949479 +3491354,0.0858384037406557 +3491355,0.17147901617719202 +3491356,0.10545142643646599 +3491357,0.1009015505518467 +3491358,0.0338879008159613 +3491359,0.0352380685508251 +3491360,0.4934596085886572 +3491361,0.1057142056524753 +3491362,0.0323769352138039 +3491363,0.032926714056898704 +3491364,0.032328529180723806 +3491365,0.0325649490514286 +3491366,0.0098314280459137 +3491367,0.0112242209826764 +3491368,0.0131873073731182 +3491369,0.098015767415883 +3491370,0.0245053693652153 +3491371,0.07351632208243811 +3491372,0.0493563481232833 +3491373,0.0769483168759161 +3491374,0.0384963974356651 +3491375,0.0384963974356651 +3491376,0.077014629710534 +3491377,0.0165369380265474 +3491378,0.1167100057028578 +3491379,0.0428358917908134 +3491380,0.0429373527468339 +3491381,0.0481320058852214 +3491382,0.0482809655368328 +3491383,0.0482809655368328 +3491384,0.0470367982640728 +3491385,0.0244381704564948 +3491386,0.0966506142622415 +3491387,0.048244922633168597 +3491388,0.0725092457059977 +3491389,0.0853032851251375 +3491390,0.3382530431399632 +3491391,0.0859732381597223 +3491392,0.10585463796912889 +3491393,0.3876187540590761 +3491394,0.0132065168170042 +3491395,0.0687780331738089 +3491396,0.0405306564643977 +3491397,0.0135756295656782 +3491398,0.0245053693652153 +3491399,0.1225598512186731 +3491400,0.0384414646678583 +3491401,0.0384963974356651 +3491402,0.0771780355144891 +3491403,0.0386345965599874 +3491404,0.0300165231978622 +3491405,0.10371102783963299 +3491406,0.263741947397103 +3491407,0.0527777485549449 +3491408,0.0428615089979833 +3491409,0.0429885580236718 +3491410,0.0428956198631102 +3491411,0.0496138967388548 +3491412,0.0482809655368328 +3491413,0.0971644833025119 +3491414,0.1000759178260848 +3491415,0.0482809655368328 +3491416,0.2424668688769335 +3491417,0.0496020238362702 +3491418,0.1696832496439653 +3491419,0.0243104412234896 +3491420,0.0515027591743276 +3491421,0.1703955392356697 +3491422,0.4818289294661061 +3491423,0.24672019863394798 +3491424,0.0704761371016502 +3491425,0.0563079979400632 +3491426,0.0265815877723923 +3491427,0.0411617877116969 +3491428,0.0135102188214659 +3491429,0.0735161080956459 +3491430,0.0735161080956459 +3491431,0.0251529508845912 +3491432,0.0384914246531597 +3491433,0.0384963974356651 +3491434,0.0384963974356651 +3491435,0.0384963974356651 +3491436,0.0349607355892658 +3491437,0.10488220676779741 +3491438,0.1583332456648347 +3491439,0.0525777173048894 +3491440,0.10888750661440519 +3491441,0.0911977641410743 +3491442,0.0469947913180012 +3491443,0.0608588839813895 +3491444,0.049143467010165795 +3491445,0.024168553633217 +3491446,0.0257863700810394 +3491447,0.2606942910479897 +3491448,0.0871948191880524 +3491449,0.2305676610103018 +3491450,0.0766324996948242 +3491451,0.1409522742033004 +3491452,0.0352464295654041 +3491453,0.0352380685508251 +3491454,0.1052403547348959 +3491455,0.0222964212298393 +3491456,0.1121635045332658 +3491457,0.0311924202479637 +3491458,0.093935509387906 +3491459,0.1241065900166991 +3491460,0.0153457469756949 +3491461,0.032990156207798 +3491462,0.0136071286650893 +3491463,0.048894311248559905 +3491464,0.0243039056906461 +3491465,0.0735161080956459 +3491466,0.0245053693652153 +3491467,0.0379559874339233 +3491468,0.0384963974356651 +3491469,0.0384963974356651 +3491470,0.2697837341457175 +3491471,0.0385551306156292 +3491472,0.0354445868606629 +3491473,0.17540745036011 +3491474,0.0527777485549449 +3491475,0.1575273969422453 +3491476,0.0632703899319117 +3491477,0.2680605075137973 +3491478,0.0443361965854531 +3491479,0.2622996179129559 +3491480,0.1752307550139994 +3491481,0.0767452023568381 +3491482,0.2298974990844726 +3491483,0.1409522742033004 +3491484,0.0355957901488764 +3491485,0.0349327712914554 +3491486,0.0687608998776306 +3491487,0.0670798059803358 +3491488,0.1117811694055216 +3491489,0.0222964212298393 +3491490,0.0313726104795932 +3491491,0.0618176586363826 +3491492,0.0296053378646351 +3491493,0.0250630005354632 +3491494,0.0245053693652153 +3491495,0.0490107387304306 +3491496,0.1150965118401531 +3491497,0.0384963974356651 +3491498,0.0384963974356651 +3491499,0.0385484175583342 +3491500,0.1051064040081213 +3491501,0.0351124689410846 +3491502,0.0527903175277848 +3491503,0.0654223137040283 +3491504,0.0657116308642789 +3491505,0.27251136900183 +3491506,0.108394134695943 +3491507,0.17168834898172708 +3491508,0.2603655774844687 +3491509,0.23104069823077128 +3491510,0.2298974990844726 +3491511,0.0352380685508251 +3491512,0.0370381771915142 +3491513,0.2969756588678557 +3491514,0.1101850346684258 +3491515,0.0222964212298393 +3491516,0.0234320125792373 +3491517,0.15683726238314272 +3491518,0.156662300004836 +3491519,0.0309320323484416 +3491520,0.0736520886835654 +3491521,0.12236987309041011 +3491522,0.0383977774161804 +3491523,0.0384837559375628 +3491524,0.116566331394047 +3491525,0.1933908405504901 +3491526,0.0701811439799559 +3491527,0.0369680319347978 +3491528,0.0701392119727983 +3491529,0.0349607355892658 +3491530,0.0649647666376298 +3491531,0.0669491215536801 +3491532,0.1630787460884111 +3491533,0.10772820022038901 +3491534,0.0778098821264524 +3491535,0.0352380685508251 +3491536,0.0442596411160553 +3491537,0.035777471495667 +3491538,0.18511219250609118 +3491539,0.0370035148141665 +3491540,0.0222964212298393 +3491541,0.0673392522201483 +3491542,0.09393174134786769 +3491543,0.0313726104795932 +3491544,0.0310958627621416 +3491545,0.0765415409119181 +3491546,0.0735161080956459 +3491547,0.049913665961034 +3491548,0.0245808773816083 +3491549,0.10488220676779741 +3491550,0.10488220676779741 +3491551,0.0699237331006016 +3491552,0.4683269163995627 +3491553,0.1980418298157017 +3491554,0.0669014902412773 +3491555,0.0523778183969638 +3491556,0.3190521550095825 +3491557,0.0451032951610924 +3491558,0.0353641734041397 +3491559,0.1057363321869745 +3491560,0.0222964212298393 +3491561,0.0222964212298393 +3491562,0.1114821061491965 +3491563,0.0224880731644769 +3491564,0.0939028045330258 +3491565,0.06262911498645671 +3491566,0.0311570659010349 +3491567,0.0275190138665524 +3491568,0.0986603159424976 +3491569,0.0244744205883464 +3491570,0.0355647287338302 +3491571,0.10488220676779741 +3491572,0.10489377506055561 +3491573,0.1336347178341062 +3491574,0.20080347128200332 +3491575,0.1366470522194223 +3491576,0.0455825515091419 +3491577,0.0455825515091419 +3491578,0.0452316932351864 +3491579,0.0225876091493393 +3491580,0.022319098914334 +3491581,0.0222964212298393 +3491582,0.0312085120961703 +3491583,0.0623758201219838 +3491584,0.14456440887126631 +3491585,0.0598404711644191 +3491586,0.0350569402489896 +3491587,0.0349607355892658 +3491588,0.10491597634394981 +3491589,0.1884404131157048 +3491590,0.0507086392163758 +3491591,0.0342531880162013 +3491592,0.0451402648378783 +3491593,0.0455825515091419 +3491594,0.0443980285901911 +3491595,0.0408036066757208 +3491596,0.0226188426879162 +3491597,0.0672003032531654 +3491598,0.18292250620563322 +3491599,0.0302354026774373 +3491600,0.0444877073412402 +3491601,0.1400070451664723 +3491602,0.0198669260131848 +3491603,0.0704510493462576 +3491604,0.1402898155712562 +3491605,0.3286092316838613 +3491606,0.0350370308671873 +3491607,0.128255026014054 +3491608,0.0422161115274298 +3491609,0.0915215941658546 +3491610,0.1379399439230919 +3491611,0.0319864256254066 +3491612,0.032366584026012 +3491613,0.0446579707423764 +3491614,0.0534398399134326 +3491615,0.0227126216998122 +3491616,0.022325088871987 +3491617,0.044030452905938 +3491618,0.1743282799778278 +3491619,0.0424764628229195 +3491620,0.0417862907612956 +3491621,0.0512847267091274 +3491622,0.0512847267091274 +3491623,0.0424822117238062 +3491624,0.0421751551330089 +3491625,0.0843935159541217 +3491626,0.0458803363144397 +3491627,0.1376410089433191 +3491628,0.0341625313388752 +3491629,0.0324280777671437 +3491630,0.101300112679931 +3491631,0.0534491650760173 +3491632,0.1603735407978415 +3491633,0.0534491650760173 +3491634,0.0224696460336067 +3491635,0.0670856415124592 +3491636,0.0399553084929084 +3491637,0.1153678831420932 +3491638,0.0678981802846984 +3491639,0.0668445809884023 +3491640,0.0423070017945178 +3491641,0.0455550614981898 +3491642,0.0208307299247445 +3491643,0.0512847267091274 +3491644,0.0492642822187707 +3491645,0.051044796512357 +3491646,0.0421751551330089 +3491647,0.0422093824248874 +3491648,0.0458803363144397 +3491649,0.0458536406796166 +3491650,0.0912698309495245 +3491651,0.0288036711966232 +3491652,0.1446253987972137 +3491653,0.18811310220339672 +3491654,0.26670710224268274 +3491655,0.0225170238042742 +3491656,0.115781811056764 +3491657,0.0772758039460947 +3491658,0.20200769541499208 +3491659,0.2041235671102094 +3491660,0.0627141738494701 +3491661,0.061761454916825 +3491662,0.0507454311850179 +3491663,0.0512847267091274 +3491664,0.0452981744780896 +3491665,0.0466020994521529 +3491666,0.21100325983856272 +3491667,0.1265254866130239 +3491668,0.0843503102660178 +3491669,0.0846882779000621 +3491670,0.0458803363144397 +3491671,0.1376410013645498 +3491672,0.0456082583710594 +3491673,0.0287171732634305 +3491674,0.0294261172120561 +3491675,0.0313354477348776 +3491676,0.0575621454130849 +3491677,0.16034749522805192 +3491678,0.0531196858732405 +3491679,0.0391620729793394 +3491680,0.0368528685443795 +3491681,0.3403665497899055 +3491682,0.4750137140275312 +3491683,0.0676982180287685 +3491684,0.0625775569916225 +3491685,0.0625389176836544 +3491686,0.1021410405403623 +3491687,0.0509640435402355 +3491688,0.0421076359098658 +3491689,0.0239337636636794 +3491690,0.0478013098766494 +3491691,0.041865342751994 +3491692,0.12571517626077539 +3491693,0.1265330850723833 +3491694,0.13760133432341098 +3491695,0.1375996552922805 +3491696,0.0458803363144397 +3491697,0.0456959260055 +3491698,0.08647422360754581 +3491699,0.1231483776584286 +3491700,0.0534491650760173 +3491701,0.0534491650760173 +3491702,0.1062741144564137 +3491703,0.0525026477098254 +3491704,0.0390827961590938 +3491705,0.11360616784898339 +3491706,0.4007694818432262 +3491707,0.1361466199159622 +3491708,0.0213964090123609 +3491709,0.0225383523073104 +3491710,0.0320128721429614 +3491711,0.0393722797981014 +3491712,0.0958259127085361 +3491713,0.1264465557032231 +3491714,0.2105503430811974 +3491715,0.0458803363144397 +3491716,0.0458803363144397 +3491717,0.1376410089433191 +3491718,0.0458384388656901 +3491719,0.0330993138421066 +3491720,0.0534491650760173 +3491721,0.16034749522805192 +3491722,0.0520017411681711 +3491723,0.0534491650760173 +3491724,0.0335960509496906 +3491725,0.0760788969220538 +3491726,0.1422030472455161 +3491727,0.0508596566348657 +3491728,0.0679121266127785 +3491729,0.1214403521521838 +3491730,0.0913342095514082 +3491731,0.062638055625041 +3491732,0.0361573397319572 +3491733,0.0358660123555787 +3491734,0.0706881079781427 +3491735,0.041553819521798 +3491736,0.1262465452591553 +3491737,0.0407482722076695 +3491738,0.1830792503064116 +3491739,0.0458803363144397 +3491740,0.0458803363144397 +3491741,0.0458803363144397 +3491742,0.1379724043377984 +3491743,0.1062829631376345 +3491744,0.0532245655574441 +3491745,0.0534491650760173 +3491746,0.1068983301520346 +3491747,0.0500895868172356 +3491748,0.1070057354788733 +3491749,0.0670594581007609 +3491750,0.0336933265810326 +3491751,0.1744154654212598 +3491752,0.0248748306185007 +3491753,0.02838076285014 +3491754,0.0283446883051741 +3491755,0.1755200199651873 +3491756,0.0579597913258502 +3491757,0.0684570068964664 +3491758,0.0608625900397909 +3491759,0.0359466179038281 +3491760,0.035954867977659 +3491761,0.0358532778918743 +3491762,0.032523430018012 +3491763,0.0237645680787315 +3491764,0.0235886856753762 +3491765,0.0407970853200149 +3491766,0.1374367152222658 +3491767,0.0458683771670433 +3491768,0.1367080335003326 +3491769,0.0915471652550249 +3491770,0.1381857257452639 +3491771,0.0458803363144397 +3491772,0.2668790626386443 +3491773,0.0534491650760173 +3491774,0.1685798136885864 +3491775,0.10059903131739181 +3491776,0.0249987003535636 +3491777,0.0247704606417346 +3491778,0.0289428095281693 +3491779,0.0283043459057807 +3491780,0.175730064399462 +3491781,0.0584975816309452 +3491782,0.0359028946432118 +3491783,0.1079436204983603 +3491784,0.0987902941519733 +3491785,0.1052436264854571 +3491786,0.0778024557209693 +3491787,0.0259404461830854 +3491788,0.0235724821686744 +3491789,0.0425257077070779 +3491790,0.0455648647384865 +3491791,0.2381796680519084 +3491792,0.0537541158170836 +3491793,0.0532723396935352 +3491794,0.1597357104824549 +3491795,0.1347316354513168 +3491796,0.0336829088628292 +3491797,0.0249317735825859 +3491798,0.141583530418301 +3491799,0.0283232645806679 +3491800,0.1750583866545307 +3491801,0.058338516033136 +3491802,0.0358456204560222 +3491803,0.17970837135239232 +3491804,0.0324464463676797 +3491805,0.0647569682873256 +3491806,0.051835089879125995 +3491807,0.0259404461830854 +3491808,0.10466427503866871 +3491809,0.0915588901546076 +3491810,0.0770678872974784 +3491811,0.10468360935999341 +3491812,0.0526837289662226 +3491813,0.0518541383880305 +3491814,0.06703598202419081 +3491815,0.0336829088628292 +3491816,0.0667466339918319 +3491817,0.1132643816370704 +3491818,0.1649951932384117 +3491819,0.06749191358030479 +3491820,0.0563533265867544 +3491821,0.0358980081537105 +3491822,0.1080157132397503 +3491823,0.0322924857139652 +3491824,0.0973699607536787 +3491825,0.025947793561501 +3491826,0.07786876292251191 +3491827,0.0259404461830854 +3491828,0.0236248159609902 +3491829,0.0661834271981997 +3491830,0.4954448619751899 +3491831,0.0807952005494766 +3491832,0.0318201024969774 +3491833,0.0293921671280958 +3491834,0.2007708411411604 +3491835,0.0403736697125963 +3491836,0.031512470791054 +3491837,0.0284093636621437 +3491838,0.0293677560257984 +3491839,0.03244074806571 +3491840,0.0324421434522421 +3491841,0.0326260746811717 +3491842,0.1297799539170593 +3491843,0.07833283355352941 +3491844,0.0245285243528073 +3491845,0.04396678134799 +3491846,0.0831024199724197 +3491847,0.0831024199724197 +3491848,0.0570743665593419 +3491849,0.0284176751934229 +3491850,0.08584200461095 +3491851,0.0858774765614326 +3491852,0.2006992527875793 +3491853,0.0398896842582012 +3491854,0.0402093381991367 +3491855,0.0315067621809605 +3491856,0.0314884858387431 +3491857,0.0251834610555654 +3491858,0.0236286711882496 +3491859,0.0292708759238431 +3491860,0.09683994150707079 +3491861,0.0970926716302694 +3491862,0.0260170732947382 +3491863,0.0259983476589226 +3491864,0.1341270631538481 +3491865,0.051608101516857005 +3491866,0.0236256813462715 +3491867,0.0447154283350994 +3491868,0.0668017717259141 +3491869,0.1661790570943335 +3491870,0.24921095382716701 +3491871,0.0831024199724197 +3491872,0.0829803002212015 +3491873,0.19907735630258439 +3491874,0.0284177660819027 +3491875,0.0286128128890337 +3491876,0.14307932183705352 +3491877,0.11393717282990981 +3491878,0.0301450113632853 +3491879,0.0315089574614454 +3491880,0.0243217514277795 +3491881,0.0728875297490589 +3491882,0.0230220117026417 +3491883,0.0229537882515102 +3491884,0.023682280267238 +3491885,0.0314990927992103 +3491886,0.0268733977726739 +3491887,0.1275095534326978 +3491888,0.0254778615464614 +3491889,0.0242971776264628 +3491890,0.0831024199724197 +3491891,0.16008081846461708 +3491892,0.0831024199724197 +3491893,0.2493072599172591 +3491894,0.08531977029809179 +3491895,0.0286159887909889 +3491896,0.0857900224229555 +3491897,0.2219445436683686 +3491898,0.0247270267848579 +3491899,0.0268791258032275 +3491900,0.0269097228798707 +3491901,0.0243174661443153 +3491902,0.0241500000427768 +3491903,0.114773282008789 +3491904,0.0229935225285225 +3491905,0.0214555348792514 +3491906,0.0657531242873182 +3491907,0.06308458937510991 +3491908,0.0319969398463236 +3491909,0.1308894670366458 +3491910,0.0253026646572299 +3491911,0.41551209986209847 +3491912,0.248911470235301 +3491913,0.0823153964380857 +3491914,0.0286159887909889 +3491915,0.0286051825081467 +3491916,0.028611971620007 +3491917,0.0728657395422025 +3491918,0.049009332680563 +3491919,0.0806830768003231 +3491920,0.0806264113420565 +3491921,0.0271679188350161 +3491922,0.0233679166678187 +3491923,0.022947551853861 +3491924,0.0686094933000338 +3491925,0.022966718782265 +3491926,0.0215179568851499 +3491927,0.0429250250039327 +3491928,0.063532984781616 +3491929,0.0319834757503524 +3491930,0.0242152598108167 +3491931,0.0764791988712955 +3491932,0.0831024199724197 +3491933,0.0831024199724197 +3491934,0.0830944215240641 +3491935,0.0286159887909889 +3491936,0.0286159887909889 +3491937,0.0285924410049785 +3491938,0.0136163372561593 +3491939,0.062206712889948904 +3491940,0.13326643337350141 +3491941,0.08061076756602731 +3491942,0.0229177324997694 +3491943,0.0446025929803233 +3491944,0.0892458743166895 +3491945,0.0229708786236464 +3491946,0.0973179158872628 +3491947,0.1602221127809847 +3491948,0.0799995596965157 +3491949,0.2486243926396638 +3491950,0.0823799768600486 +3491951,0.24923334262433988 +3491952,0.0856364035733792 +3491953,0.0286207269665785 +3491954,0.0286159887909889 +3491955,0.08584505050349141 +3491956,0.0266867447644472 +3491957,0.039745419489418496 +3491958,0.097889876590618 +3491959,0.024465339258313 +3491960,0.0626554416524801 +3491961,0.0188994711668281 +3491962,0.026634264791033 +3491963,0.0535790558349568 +3491964,0.0332797176613406 +3491965,0.0319768101352951 +3491966,0.02880992186448 +3491967,0.070115850539221 +3491968,0.0815480032347964 +3491969,0.1640256823586681 +3491970,0.0825613174751607 +3491971,0.0285970177430958 +3491972,0.0286146480266134 +3491973,0.0571991291482039 +3491974,0.0286024865127678 +3491975,0.039996913903232796 +3491976,0.06672169715639059 +3491977,0.0122170419140047 +3491978,0.036928339613335 +3491979,0.0366980088874695 +3491980,0.0366980088874695 +3491981,0.0619423131820194 +3491982,0.0208727392215167 +3491983,0.0176008734852075 +3491984,0.0181871833893969 +3491985,0.0266191839943249 +3491986,0.0816716849708948 +3491987,0.0290215148495574 +3491988,0.0764553621411323 +3491989,0.071383198272007 +3491990,0.08283852754574769 +3491991,0.0286159887909889 +3491992,0.0671009833825137 +3491993,0.0532886729845391 +3491994,0.0531832903391665 +3491995,0.0620717556896106 +3491996,0.0206461772133904 +3491997,0.0176153320787197 +3491998,0.05280262045562249 +3491999,0.0880043674260375 +3492000,0.0353829296536924 +3492001,0.0272343822131334 +3492002,0.0284739399766089 +3492003,0.2714003169464645 +3492004,0.38102252750853927 +3492005,0.3070544793864633 +3492006,0.0608694978141451 +3492007,0.1405669954106277 +3492008,0.035201746970415 +3492009,0.07040349394083 +3492010,0.07040349394083 +3492011,0.1196234348592915 +3492012,0.0175938429523011 +3492013,0.0175912036287022 +3492014,0.0276559675969326 +3492015,0.0979135728886129 +3492016,0.0287701749445854 +3492017,0.0174350855067013 +3492018,0.0848025458936572 +3492019,0.031562677353598 +3492020,0.06992360813698009 +3492021,0.3057103157043456 +3492022,0.1011620372589601 +3492023,0.0249189192476821 +3492024,0.0731816376715782 +3492025,0.08742056885758309 +3492026,0.0174646011632876 +3492027,0.034956344916126 +3492028,0.0247833428591153 +3492029,0.1019034385681152 +3492030,0.0943136513563717 +3492031,0.099579602404257 +3492032,0.0244178230491264 +3492033,0.0244990025065003 +3492034,0.0368717410080552 +3492035,0.0371029886153746 +3492036,0.1018598562708816 +3492037,0.1013358291802332 +3492038,0.1616822341667759 +3492039,0.2835466705998106 +3492040,0.0245133209945519 +3492041,0.0246911862342251 +3492042,0.20356114796551622 +3492043,0.30329729261739913 +3492044,0.0331782680389539 +3492045,0.1007617569512261 +3492046,0.0905960636164878 +3492047,0.0862711173846823 +3492048,0.1004374038150974 +3492049,0.1324327061266464 +3492050,0.0327029369135447 +3492051,0.0749448151650913 +3492052,0.014471526959793 +3492053,0.8887558430433271 +3492054,0.35557482958086695 +3492055,0.0992044292808338 +3492056,0.0995109975268339 +3492057,0.0144715085625648 +3492058,0.0145297878324088 +3492059,0.0148322197109478 +3492060,0.5227400623039768 +3492061,0.3492667826631024 +3492062,0.0891572244407095 +3492063,0.0332402475178241 +3492064,0.032978188346923 +3492065,0.0144775558552703 +3492066,0.0434804722499986 +3492067,0.1077144369428063 +3492068,0.0757815986871719 +3492069,0.0328987915490066 +3492070,0.0289221666859441 +3492071,0.0145627703862619 +3492072,0.1048631729516645 +3492073,0.0163565747268215 +3492074,0.5292326141090056 +3492075,0.3040358540524975 +3492076,0.0145572000563311 +3492077,0.0566730255514698 +3492078,0.4546895921230314 +3492079,0.2258631346275035 +3492080,0.0141665488481521 +3492081,0.0141665488481521 +3492082,0.0141719038987585 +3492083,0.3031263947486876 +3492084,0.7571554437735563 +3492085,0.07528418972327 +3492086,0.0149085786806327 +3492087,0.0141665488481521 +3492088,0.028334573198476598 +3492089,0.0567044762798911 +3492090,0.0695529676221388 +3492091,0.3769199768306409 +3492092,0.0424996465444563 +3492093,0.045488322613102 +3492094,0.1275088396580782 +3492095,0.0283737342373179 +3492096,0.0500159047941688 +3492097,0.0910774914875345 +3492098,0.1474501974133186 +3492099,0.0757815986871719 +3492100,0.0141715035274408 +3492101,0.1273808408255595 +3492102,0.0707163372221885 +3492103,0.0700216442346572 +3492104,0.1401522136376685 +3492105,0.0937201116471069 +3492106,0.0898509677499531 +3492107,0.1223930374255692 +3492108,0.07079899258969449 +3492109,0.0141665488481521 +3492110,0.833987751107018 +3492111,0.20980519583067642 +3492112,0.21154709155280121 +3492113,0.0299503225833177 +3492114,0.0141665488481521 +3492115,0.0566661953926084 +3492116,0.0283330976963042 +3492117,0.0424996465444563 +3492118,0.0778909230872047 +3492119,0.0705734458569902 +3492120,0.0309437188455172 +3492121,0.0898652811314229 +3492122,0.0902277542643275 +3492123,0.0566661953926084 +3492124,0.0141665488481521 +3492125,0.0141665488481521 +3492126,0.0141665488481521 +3492127,0.0283330976963042 +3492128,0.028338189324938902 +3492129,0.066162003892763 +3492130,0.0707296011053811 +3492131,0.0152497724670736 +3492132,0.0440533044588991 +3492133,0.042342668108469 +3492134,0.0283254222222873 +3492135,0.0455044577831155 +3492136,0.0142112247309727 +3492137,0.0287011151660109 +3492138,0.2119630533981478 +3492139,0.0764775532355639 +3492140,0.0706997855155249 +3492141,0.4939070535426215 +3492142,0.0140858219583736 +3492143,0.0849046209167083 +3492144,0.3311275009335143 +3492145,0.0283313440647342 +3492146,0.0568824867552305 +3492147,0.0794178464616843 +3492148,0.0704635067317738 +3492149,0.0675179734826088 +3492150,0.26825817688440406 +3492151,0.0403873347753757 +3492152,0.0480514100857512 +3492153,0.06805985199090529 +3492154,0.0114660380345342 +3492155,0.0675179734826088 +3492156,0.0675179734826088 +3492157,0.0136006083140138 +3492158,0.0638925646657366 +3492159,0.0127124651002781 +3492160,0.102298210985198 +3492161,0.13081853470231608 +3492162,0.0669504451205397 +3492163,0.2025644344099129 +3492164,0.20255392044782639 +3492165,0.0273904567890654 +3492166,0.1272278848430333 +3492167,0.0113648573331238 +3492168,0.0414676632477062 +3492169,0.3375721828552518 +3492170,0.3375482714721047 +3492171,0.20200163105923089 +3492172,0.0675179734826088 +3492173,0.0141114400233781 +3492174,0.0676689223274865 +3492175,0.1320473461623431 +3492176,0.0675179734826088 +3492177,0.2025324969865901 +3492178,0.0675179734826088 +3492179,0.337589867413044 +3492180,0.0675179734826088 +3492181,0.2700718939304352 +3492182,0.4725161756209811 +3492183,0.40510784089565277 +3492184,0.20138660871198588 +3492185,0.0675179734826088 +3492186,0.0675179734826088 +3492187,0.2011900511781082 +3492188,0.0675179734826088 +3492189,0.2023540912651696 +3492190,0.2700718939304352 +3492191,0.0675179734826088 +3492192,0.0675179734826088 +3492193,0.3334951988995867 +3492194,0.26681488098867057 +3492195,0.0675179734826088 +3492196,0.2024317871114829 +3492197,0.1350359469652176 +3492198,0.0642785568272836 +3492199,0.20249933089726657 +3492200,0.20255392044782639 +3492201,0.337589867413044 +3492202,0.7394578238456244 +3492203,0.2005381755581458 +3492204,0.0669367378499967 +3492205,0.1100583005597643 +3492206,0.1419801745119179 +3492207,0.08470219123029629 +3492208,0.0268176347017288 +3492209,0.0724010340072995 +3492210,0.1197981444555792 +3492211,0.0853960196860141 +3492212,0.08183790536485469 +3492213,0.0239969436079263 +3492214,0.0241756675743797 +3492215,0.0909373407957692 +3492216,0.0282977154785371 +3492217,0.0239969436079263 +3492218,0.0718727436702679 +3492219,0.2161229989272577 +3492220,0.0285139363143902 +3492221,0.0535746193582275 +3492222,0.1207674309968311 +3492223,0.0719908308237789 +3492224,0.11979034407102379 +3492225,0.1206966557281685 +3492226,0.0267914960938941 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001120900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001120900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001120900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001121900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001121900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001121900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001122000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001122000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001122000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001122100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001122100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001122100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001122200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001122200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001122200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001122300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001122300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..4115719fd --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001122300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0448454820316043 +3490292,0.0869026592836515 +3490293,0.0103225065395236 +3490316,0.0206450130790472 +3490317,0.051612532697618 +3490332,0.030967519618570798 +3490333,0.0333148008748203 +3490334,0.0646032255802996 +3490335,0.0103225065395236 +3490348,0.0140866878986505 +3490349,0.0338867367222382 +3490350,0.0103225065395236 +3490351,0.030967519618570798 +3490374,0.08995317484694651 +3490375,0.2677518327216758 +3490376,0.1162576386573092 +3490377,0.0251667170396153 +3490378,0.0206450130790472 +3490379,0.0946095760829084 +3490396,0.043935529982452 +3490397,0.0891598165035246 +3490398,0.0310036702894138 +3490399,0.0206450130790472 +3490418,0.0643242667298076 +3490419,0.0103225065395236 +3490437,0.0104407502695581 +3490438,0.0533020025741215 +3490439,0.0466077955164027 +3490440,0.0103230466116809 +3490457,0.1337439450326873 +3490458,0.1342137274018264 +3490459,0.0206450130790472 +3490460,0.0812187128084629 +3490476,0.0205992317977786 +3490477,0.0307708405606512 +3490478,0.0138192558661102 +3490479,0.0138192558661102 +3490499,0.1536665093015088 +3490500,0.0069096279330551 +3490517,0.0450123852943157 +3490518,0.0573553481680931 +3490519,0.0276385117322204 +3490520,0.0345481396652755 +3490544,0.0069096279330551 +3490545,0.0070022187838671 +3490546,0.0138192558661102 +3490547,0.0070566718624211 +3490573,0.0206759237207711 +3490574,0.0069096279330551 +3490575,0.008756669490649 +3490576,0.013965081411996 +3490597,0.021144154981180302 +3490598,0.0187603099004498 +3490599,0.0075077517982939 +3490600,0.027762862250396897 +3490601,0.0123926873377422 +3490602,0.0127452239382164 +3490603,0.0381692073712685 +3490604,0.0372082010502718 +3490623,0.0061928960494697 +3490624,0.0123857920989394 +3490625,0.0342085272678934 +3490626,0.1334654769717206 +3490639,0.0061928960494697 +3490640,0.0247715841978788 +3490641,0.0145689544572924 +3490642,0.1024449483917506 +3490643,0.1731915707601096 +3490644,0.0448002070188522 +3490645,0.044616504234479 +3490658,0.0123857920989394 +3490659,0.0061928960494697 +3490660,0.24184100804019382 +3490661,0.10426648944047981 +3490662,0.3112029493075547 +3490663,0.0448002070188522 +3490664,0.0445071200791587 +3490665,0.133993484455058 +3490681,0.0326447814894478 +3490682,0.0061928960494697 +3490683,0.0061928960494697 +3490684,0.0123857920989394 +3490685,0.0334962571942624 +3490686,0.0345699177061123 +3490687,0.0448574382164248 +3490688,0.0448718175220059 +3490689,0.0447146827953556 +3490690,0.0448002070188522 +3490707,0.0123857920989394 +3490708,0.0061928960494697 +3490709,0.0071338301590874 +3490710,0.0061928960494697 +3490725,0.0061710935170115 +3490726,0.0061928960494697 +3490727,0.0185786881484091 +3490728,0.0251892265750038 +3490736,0.0436025425607356 +3490737,0.0319669668507304 +3490738,0.2445789612409763 +3490739,0.043411245707651896 +3490747,0.686421127086335 +3490748,0.0162499505220041 +3490757,0.021219839326667902 +3490758,0.0203936725596798 +3490771,0.0158532060338863 +3490772,0.0053796799002515 +3490773,0.0077731834996627 +3490774,0.0106548281092075 +3490787,0.010522628712420701 +3490788,0.0090265566275179 +3490789,0.0902066213163154 +3490790,0.14110672707462832 +3490805,0.0051711089141792 +3490806,0.0177667075085182 +3490807,0.010482110083103 +3490808,0.0249511560759095 +3490809,0.0207982112807666 +3490810,0.0210672410842941 +3490827,0.0045971531889581 +3490828,0.004722567053884 +3490842,0.0136638482813883 +3490843,0.0045531154610216 +3490844,0.0046335599367961 +3490845,0.014190579690384501 +3490856,0.0045531154610216 +3490857,0.0050519764983099 +3490858,0.0045531154610216 +3490859,0.0143887019583888 +3490860,0.0047118128277361 +3490861,0.0235848922781808 +3490875,0.0045531154610216 +3490876,0.0045531154610216 +3490877,0.014849469589458701 +3490878,0.0050994270176671 +3490879,0.0094236256554722 +3490892,0.013659346383064801 +3490893,0.013659346383064801 +3490894,0.0047118128277361 +3490895,0.0071480351412913 +3490900,0.0045513143513554 +3490901,0.0044492210482611 +3490902,0.0148128689769234 +3490903,0.0136641246360496 +3490904,0.0388689973461609 +3490905,0.0183257354888895 +3490906,0.0218278608711479 +3490907,0.1826975561195364 +3490916,0.0136950541158998 +3490917,0.0046089505838975 +3490918,0.0045494861798953 +3490919,0.0045613238855842 +3490920,0.0049687362839351 +3490921,0.0151473662703864 +3490922,0.0154256017192562 +3490923,0.3216546404800744 +3490924,0.0076099611085864 +3490925,0.1195063305781683 +3490926,0.3380212328014932 +3490935,0.004409991053967 +3490936,0.007129475142102 +3490937,0.0493302739560418 +3490938,0.0480613157166845 +3490939,0.01853360728136 +3490940,0.0179596856157828 +3490941,0.0379470827840458 +3490942,0.0374719230897786 +3490953,0.0045280435115733 +3490954,0.0045559270080804 +3490955,0.0058768502179951 +3490956,0.0150903333022687 +3490957,0.0423818417903659 +3490958,0.0406385428013269 +3490959,0.0179987289011478 +3490960,0.0179778127472053 +3490966,0.013013850431888999 +3490967,0.004337950143963 +3490968,0.0283375520171892 +3490969,0.0350147168493065 +3490970,0.2940039558242982 +3490971,0.0418152624140949 +3490972,0.15896042923125261 +3490973,0.0397504218894826 +3490974,0.0059995763003826 +3490975,0.0182414821882249 +3490980,0.013050932932505699 +3490981,0.0043777733429227 +3490982,0.0044429266798324 +3490983,0.0336361424884917 +3490984,0.1732192385849749 +3490985,0.3870535402991262 +3490986,0.042091965085419 +3490987,0.1261320396208386 +3490988,0.1256837742087426 +3490989,0.0399495243635714 +3490990,0.1192097280621923 +3490991,0.0396946620160395 +3490992,0.0059995763003826 +3490993,0.0059995763003826 +3490994,0.0262044620641131 +3490995,0.0059995763003826 +3490999,0.004350812479064 +3491000,0.0043775940913927 +3491001,0.0323670791352479 +3491002,0.014939045728103399 +3491003,0.0353395336976114 +3491004,0.0353719967454782 +3491005,0.1260862042770347 +3491006,0.21011138618789282 +3491007,0.0226557545975441 +3491008,0.0225823805083407 +3491009,0.0305013593397582 +3491010,0.0179121653498811 +3491013,0.0168279267675815 +3491014,0.0279574239325204 +3491015,0.1263279496297357 +3491016,0.1263022543279182 +3491017,0.3383438082028771 +3491018,0.0244299520412474 +3491019,0.0321887343792999 +3491020,0.0059995763003826 +3491021,0.0093605620786546 +3491022,0.0124712192168294 +3491023,0.0309785437259277 +3491024,0.0090583647190696 +3491025,0.119163494508292 +3491026,0.0395770440401164 +3491027,0.0337848059412188 +3491028,0.0297552764754013 +3491029,0.0046802810393273 +3491030,0.0265944676528845 +3491031,0.0331299499415754 +3491032,0.0438134691030254 +3491033,0.0411426296119431 +3491034,0.0313948206603527 +3491035,0.0308634957074356 +3491036,0.0400915194936442 +3491037,0.0395720116794109 +3491038,0.0317537461976997 +3491039,0.2616099572922642 +3491040,0.0046802810393273 +3491041,0.0140408431179819 +3491042,0.0419266484677791 +3491043,0.0394887121578492 +3491044,0.0306702516828623 +3491045,0.1555222405131257 +3491046,0.0395720116794109 +3491047,0.039619063868617 +3491048,0.0303331898832927 +3491049,0.0300941243767738 +3491050,0.15797234405735788 +3491051,0.0526519909143302 +3491052,0.0046802810393273 +3491053,0.0242382140902846 +3491054,0.12554578666695898 +3491055,0.1245436205119281 +3491056,0.0308433166632072 +3491057,0.21501879298888 +3491058,0.0395720116794109 +3491059,0.1195120072161036 +3491060,0.1509104313152914 +3491061,0.0300941243767738 +3491062,0.0903396006244727 +3491063,0.1497418706641257 +3491064,0.0524934785055236 +3491065,0.2632715196782716 +3491066,0.0140408431179819 +3491067,0.0046802810393273 +3491068,0.0082341982679597 +3491069,0.0049177499418002 +3491070,0.0293213073277852 +3491071,0.0836906862304187 +3491072,0.2770800093275997 +3491073,0.1187423029834882 +3491074,0.0300941243767738 +3491075,0.2707480087660451 +3491076,0.1576294754323887 +3491077,0.0526569274869275 +3491078,0.0557876940605795 +3491079,0.0200397034761734 +3491080,0.0158121755870404 +3491081,0.0049201935668438 +3491082,0.0383170442431664 +3491083,0.0395291486678726 +3491084,0.0395720116794109 +3491085,0.0395720116794109 +3491086,0.0913169671949015 +3491087,0.0905443935012568 +3491088,0.061461524736939804 +3491089,0.105172749716055 +3491090,0.0510217850448032 +3491091,0.0523269197617534 +3491092,0.014645943914108 +3491093,0.0055209490139173 +3491094,0.11871603503823269 +3491095,0.19798794776135809 +3491096,0.090075577980423 +3491097,0.0301551946617546 +3491098,0.1727679796967975 +3491099,0.0237431036016392 +3491100,0.0512361893974205 +3491101,0.0262686509936562 +3491102,0.1425503330359933 +3491103,0.19781792384440838 +3491104,0.1979790596981429 +3491105,0.07638486226929089 +3491106,0.1553005903601724 +3491107,0.18715500545297692 +3491108,0.1121313203702613 +3491109,0.0837389072120349 +3491110,0.0989569519178774 +3491111,0.0437951731732088 +3491112,0.0049686874262988 +3491113,0.2471181715306077 +3491114,0.1753621225446969 +3491115,0.2756855262662897 +3491116,0.1978059686414199 +3491117,0.0255370273999199 +3491118,0.1262780709641502 +3491119,0.1955693020010103 +3491120,0.0977568672361192 +3491121,0.11222116910306651 +3491122,0.0377733023448224 +3491123,0.0401670996665611 +3491124,0.0967875416046001 +3491125,0.015492065061870201 +3491126,0.2027641323786023 +3491127,0.0053562215716556 +3491128,0.037885938284803 +3491129,0.0349874782020165 +3491130,0.0352763496339321 +3491131,0.07007562242888271 +3491132,0.1054253274887865 +3491133,0.0252400040626525 +3491134,0.0252729359295377 +3491135,0.0326417200267314 +3491136,0.35879915166358983 +3491137,0.3373917870638096 +3491138,0.1241443900966191 +3491139,0.2181661152251815 +3491140,0.0171061747810643 +3491141,0.2249820917170726 +3491142,0.0050286333693734 +3491143,0.0070975861144887 +3491144,0.1052368807687872 +3491145,0.0352763496339321 +3491146,0.1012834202499634 +3491147,0.0252919541350009 +3491148,0.0326417200267314 +3491149,0.037485409528017 +3491150,0.037400492937168 +3491151,0.0414656078065837 +3491152,0.0413140638973357 +3491153,0.0329844765365123 +3491154,0.100095471024583 +3491155,0.1054433965617265 +3491156,0.18088558342936678 +3491157,0.09919230870534271 +3491158,0.1539882954775557 +3491159,0.0510132239410824 +3491160,0.07625639937887971 +3491161,0.1305668801069256 +3491162,0.0326417200267314 +3491163,0.11098169235769689 +3491164,0.1117836814681934 +3491165,0.12434544914406151 +3491166,0.0413810151355261 +3491167,0.0991556761656006 +3491168,0.09898699128761729 +3491169,0.1060071822026487 +3491170,0.0176685061305761 +3491171,0.19960847513427782 +3491172,0.0483776460134148 +3491173,0.0679357925950568 +3491174,0.06813730097824669 +3491175,0.0256133597149693 +3491176,0.0977117169339364 +3491177,0.032215011961309 +3491178,0.0326417200267314 +3491179,0.0979251600801942 +3491180,0.0371621531336607 +3491181,0.165695013113973 +3491182,0.12430647885185231 +3491183,0.2312030290628675 +3491184,0.2974065356164745 +3491185,0.0177717456234043 +3491186,0.0184623899254849 +3491187,0.0706740245223044 +3491188,0.1076747667337157 +3491189,0.4998416933125173 +3491190,0.14932484418055642 +3491191,0.0229248465511562 +3491192,0.0680277863076019 +3491193,0.0326417200267314 +3491194,0.0326417200267314 +3491195,0.0364962950264434 +3491196,0.3725657792267576 +3491197,0.2320449875441479 +3491198,0.2642953718077591 +3491199,0.0891601556140489 +3491200,0.0737625452777507 +3491201,0.2494493022267164 +3491202,0.0999889075756072 +3491203,0.0240002604660231 +3491204,0.1133855359308116 +3491205,0.0969242872574464 +3491206,0.0326417200267314 +3491207,0.1304605134029947 +3491208,0.0651763166140472 +3491209,0.0275393951224723 +3491210,0.0233771747439092 +3491211,0.1044766551641754 +3491212,0.0344943871666245 +3491213,0.34810706128935454 +3491214,0.1497331847662958 +3491215,0.0499944537878036 +3491216,0.0499944537878036 +3491217,0.1132483966996352 +3491218,0.1137115478875593 +3491219,0.0649738396287595 +3491220,0.2284920401871198 +3491221,0.1626159653462628 +3491222,0.1305668801069256 +3491223,0.0272395413891188 +3491224,0.027412939951658 +3491225,0.22772839664419461 +3491226,0.11876262351238609 +3491227,0.0356725417077541 +3491228,0.07147000056613731 +3491229,0.0676032084995048 +3491230,0.0336328644603616 +3491231,0.1499833613634108 +3491232,0.0497241690926559 +3491233,0.0461261751356346 +3491234,0.0455954563369051 +3491235,0.3588803746254766 +3491236,0.0326348668189794 +3491237,0.06381622990407279 +3491238,0.0325538808730707 +3491239,0.0276166818880955 +3491240,0.0272547966742095 +3491241,0.0266852829689113 +3491242,0.0278967273620674 +3491243,0.0398153848946094 +3491244,0.0397790175856782 +3491245,0.1065116708085045 +3491246,0.1783627085387705 +3491247,0.0578152986475164 +3491248,0.0110045969486236 +3491249,0.0499944537878036 +3491250,0.0499944537878036 +3491251,0.0227138522928908 +3491252,0.1630009162422761 +3491253,0.0326417200267314 +3491254,0.0326448919395673 +3491255,0.0819164072655103 +3491256,0.0545194596052168 +3491257,0.0829943552081255 +3491258,0.0545868213924704 +3491259,0.0321025885051102 +3491260,0.0278245369232624 +3491261,0.0836490851182389 +3491262,0.08390925273798411 +3491263,0.0398153848946094 +3491264,0.0793991743394852 +3491265,0.1426901668310164 +3491266,0.10659901546360889 +3491267,0.0356725417077541 +3491268,0.0357595402878821 +3491269,0.0798639117755852 +3491270,0.0554392305972234 +3491271,0.1490270996599355 +3491272,0.0499944537878036 +3491273,0.2999667227268216 +3491274,0.3482573903243046 +3491275,0.1625058276193077 +3491276,0.12904229596857192 +3491277,0.0272597298026084 +3491278,0.0283413569973618 +3491279,0.0329031995481301 +3491280,0.0321117234425701 +3491281,0.0322455201037251 +3491282,0.0271597990534681 +3491283,0.107927606531243 +3491284,0.0837120871072447 +3491285,0.0839670169454572 +3491286,0.119544683052665 +3491287,0.11957085166243281 +3491288,0.0356725417077541 +3491289,0.0713236859908333 +3491290,0.0832561965015047 +3491291,0.025878317385262 +3491292,0.1994426378286941 +3491293,0.0496467257987745 +3491294,0.0479347016457624 +3491295,0.0979338119287471 +3491296,0.2280179216378711 +3491297,0.3107213088379054 +3491298,0.0819219337999975 +3491299,0.0363586286720497 +3491300,0.0246710838435312 +3491301,0.0323170508141155 +3491302,0.0950647460319593 +3491303,0.10005688662552759 +3491304,0.0340755000989621 +3491305,0.0271494204971439 +3491306,0.1349239697472121 +3491307,0.0276584707311564 +3491308,0.0279045310158367 +3491309,0.08389808523563541 +3491310,0.07979163944291151 +3491311,0.1426901668310164 +3491312,0.0356725417077541 +3491313,0.0520828699303488 +3491314,0.0475620248240105 +3491315,0.0328991656214036 +3491316,0.0979251600801942 +3491317,0.0326417200267314 +3491318,0.0730414947497705 +3491319,0.0364565532084011 +3491320,0.036429556572999 +3491321,0.0364692956209182 +3491322,0.0634762367040128 +3491323,0.1242348215357923 +3491324,0.0648271802384925 +3491325,0.0322412914135202 +3491326,0.0407328301807094 +3491327,0.0449474401344187 +3491328,0.1083423957558286 +3491329,0.026970075443387 +3491330,0.0277440196808599 +3491331,0.0451994531829504 +3491332,0.1070176251232623 +3491333,0.0356725417077541 +3491334,0.3923979587852951 +3491335,0.1424028225625469 +3491336,0.0491400329860325 +3491337,0.0496560485527644 +3491338,0.0660673807924976 +3491339,0.0385069909852618 +3491340,0.0326417200267314 +3491341,0.0979251600801942 +3491342,0.0364692956209182 +3491343,0.18234647810459098 +3491344,0.024400755913034 +3491345,0.0241627965542662 +3491346,0.1222581903040289 +3491347,0.1228705781526795 +3491348,0.0458013853515392 +3491349,0.1376869194209574 +3491350,0.0809155610342416 +3491351,0.080910226330161 +3491352,0.1896993672373587 +3491353,0.0285859154867201 +3491354,0.0704125784225584 +3491355,0.1404542241438142 +3491356,0.1067920610749072 +3491357,0.1028865451074205 +3491358,0.0345135866546896 +3491359,0.0356725417077541 +3491360,0.4993561782254498 +3491361,0.1070176251232623 +3491362,0.0334124427497387 +3491363,0.0344658398280681 +3491364,0.0333196949576756 +3491365,0.0336708930899956 +3491366,0.0140096061999828 +3491367,0.0137068200381482 +3491368,0.0141568228345792 +3491369,0.1305573314445047 +3491370,0.0326417200267314 +3491371,0.0979251980021087 +3491372,0.0653446876178255 +3491373,0.0728817134019423 +3491374,0.0364692956209182 +3491375,0.0364692956209182 +3491376,0.0729600646468305 +3491377,0.0241231713443994 +3491378,0.0845543155606058 +3491379,0.0407369579053856 +3491380,0.0408349042796391 +3491381,0.0457545657002575 +3491382,0.0458956398069858 +3491383,0.0458956398069858 +3491384,0.04491427559544 +3491385,0.0271735581318457 +3491386,0.10788054166987951 +3491387,0.0541954234857321 +3491388,0.0813968269308171 +3491389,0.0700370336892419 +3491390,0.2647295950659371 +3491391,0.0704883358667236 +3491392,0.1069079150588122 +3491393,0.3923979587852951 +3491394,0.0141821752316886 +3491395,0.0941504172000414 +3491396,0.042765009216964196 +3491397,0.0143491534546183 +3491398,0.0326417200267314 +3491399,0.1632144490448892 +3491400,0.036399048363973 +3491401,0.0364692956209182 +3491402,0.0731207655786741 +3491403,0.0366052071217402 +3491404,0.0298272583463995 +3491405,0.1124682971188943 +3491406,0.1433326372204898 +3491407,0.028661111369729 +3491408,0.0407621510684421 +3491409,0.0408833988794286 +3491410,0.0407748912282723 +3491411,0.0467276379730026 +3491412,0.0458956398069858 +3491413,0.0921695081118486 +3491414,0.0939970467944733 +3491415,0.0458956398069858 +3491416,0.229960505544995 +3491417,0.0548831053239346 +3491418,0.1892217923296515 +3491419,0.0272167221937616 +3491420,0.0442264525028816 +3491421,0.13624352728266892 +3491422,0.3178561693998133 +3491423,0.2492550884573243 +3491424,0.0713450834155082 +3491425,0.0737979727837759 +3491426,0.0219971096013527 +3491427,0.0435291910125733 +3491428,0.0142550030723214 +3491429,0.0979251600801942 +3491430,0.0979251600801942 +3491431,0.0327564819273287 +3491432,0.0364629364960401 +3491433,0.0364692956209182 +3491434,0.0364692956209182 +3491435,0.0364692956209182 +3491436,0.0319479405879974 +3491437,0.0958438217639922 +3491438,0.085983334109187 +3491439,0.0286892747627105 +3491440,0.0907316916738912 +3491441,0.0838203022397688 +3491442,0.0423015328073705 +3491443,0.050331271998076 +3491444,0.0545645509847562 +3491445,0.0269820207641084 +3491446,0.0282306321098578 +3491447,0.1990972619082656 +3491448,0.0657574824286526 +3491449,0.1288035502693497 +3491450,0.0424413941800594 +3491451,0.1426901668310164 +3491452,0.0356020810482453 +3491453,0.0356725417077541 +3491454,0.1067982714465749 +3491455,0.0296816322952508 +3491456,0.1487235924172724 +3491457,0.0244999816326022 +3491458,0.0731166776346906 +3491459,0.0968853916831018 +3491460,0.0168046472438835 +3491461,0.0384929095267235 +3491462,0.0144170612322082 +3491463,0.0650887433872959 +3491464,0.0323048209960033 +3491465,0.0979251600801942 +3491466,0.0326417200267314 +3491467,0.0357782268515153 +3491468,0.0364692956209182 +3491469,0.0364692956209182 +3491470,0.2555889073284969 +3491471,0.0365270565848615 +3491472,0.0318586811538157 +3491473,0.16051179867775311 +3491474,0.028661111369729 +3491475,0.086131994669294 +3491476,0.0373112869246465 +3491477,0.1444344732882528 +3491478,0.0413323559462925 +3491479,0.2001013719855534 +3491480,0.1333717113578331 +3491481,0.0426901828306064 +3491482,0.1273241825401782 +3491483,0.1426901668310164 +3491484,0.0326579195610152 +3491485,0.0355312143960599 +3491486,0.08795472535194129 +3491487,0.08893391175800369 +3491488,0.1482339661647265 +3491489,0.0296816322952508 +3491490,0.0243950262665748 +3491491,0.048263499110329205 +3491492,0.0335455167850815 +3491493,0.0327405412731925 +3491494,0.0326417200267314 +3491495,0.0652834400534628 +3491496,0.10890573256117889 +3491497,0.0364692956209182 +3491498,0.0364692956209182 +3491499,0.0365204546494546 +3491500,0.0961305220664937 +3491501,0.0319199492734541 +3491502,0.0286508550082699 +3491503,0.0398928631777557 +3491504,0.0388702871048018 +3491505,0.139726874624064 +3491506,0.055343885672092294 +3491507,0.1319210776596758 +3491508,0.1990742741116019 +3491509,0.1301233914976398 +3491510,0.1273241825401782 +3491511,0.0356725417077541 +3491512,0.0352579440308353 +3491513,0.169586385505268 +3491514,0.0694887669732846 +3491515,0.0296816322952508 +3491516,0.0302073169113688 +3491517,0.1219901532373422 +3491518,0.1218611693303829 +3491519,0.0337806284674226 +3491520,0.09794925803581381 +3491521,0.1627372711863977 +3491522,0.0363431817161346 +3491523,0.0364531298495432 +3491524,0.1098370259599907 +3491525,0.18278356460337689 +3491526,0.0642279471310091 +3491527,0.034514843145061 +3491528,0.0638707137823894 +3491529,0.0319479405879974 +3491530,0.0398117784503794 +3491531,0.0400808900705926 +3491532,0.0835981324211553 +3491533,0.055455217352987 +3491534,0.0469569350491484 +3491535,0.0356725417077541 +3491536,0.0444182106619746 +3491537,0.036202866108953 +3491538,0.1044256235183674 +3491539,0.0211583707417186 +3491540,0.0296816322952508 +3491541,0.0893572027001811 +3491542,0.0732934706555376 +3491543,0.0243950262665748 +3491544,0.0244645491181707 +3491545,0.0989487307683867 +3491546,0.0979251600801942 +3491547,0.0641991378956571 +3491548,0.0325510443860689 +3491549,0.0958438217639922 +3491550,0.0958438217639922 +3491551,0.0638987736903754 +3491552,0.2808959005398608 +3491553,0.1199931284675652 +3491554,0.0400342936730979 +3491555,0.0280594333173868 +3491556,0.3203557228196699 +3491557,0.0453717293833322 +3491558,0.0357965241247243 +3491559,0.1070393792521025 +3491560,0.0296816322952508 +3491561,0.0296816322952508 +3491562,0.148408161476254 +3491563,0.0296680448668145 +3491564,0.0733103254759455 +3491565,0.0489294812185386 +3491566,0.0246538682238364 +3491567,0.0332858684781968 +3491568,0.1307830132634035 +3491569,0.0325487933064835 +3491570,0.0323778598474594 +3491571,0.0958438217639922 +3491572,0.09585861513534871 +3491573,0.0802801754257075 +3491574,0.1205144365964626 +3491575,0.1373139106518264 +3491576,0.045842919498682 +3491577,0.045842919498682 +3491578,0.0454979664245091 +3491579,0.0295120241294947 +3491580,0.0295541161112684 +3491581,0.0296816322952508 +3491582,0.0243165300305704 +3491583,0.048594258730567996 +3491584,0.13870308014379062 +3491585,0.056862726734051204 +3491586,0.0320164185772552 +3491587,0.0319479405879974 +3491588,0.0958870058267587 +3491589,0.1191025055117178 +3491590,0.0397521718693048 +3491591,0.0217903148044061 +3491592,0.0442715056090639 +3491593,0.045842919498682 +3491594,0.0450208243346252 +3491595,0.0424878780034728 +3491596,0.0286119135995408 +3491597,0.07977092649121881 +3491598,0.2080952777934875 +3491599,0.0238358798748291 +3491600,0.0326059523726842 +3491601,0.11115799728570469 +3491602,0.0182966597061698 +3491603,0.0642728322320538 +3491604,0.1281098444412454 +3491605,0.2944502399914532 +3491606,0.0320455059247871 +3491607,0.1123254896509626 +3491608,0.0373718948342763 +3491609,0.0792876782323414 +3491610,0.1191678836475134 +3491611,0.0170067758689074 +3491612,0.0176186950312768 +3491613,0.0407266567630233 +3491614,0.049861047006916 +3491615,0.0202379829401591 +3491616,0.0200198722021349 +3491617,0.0416795790958502 +3491618,0.1637360415543184 +3491619,0.0390323223512655 +3491620,0.031081894582636 +3491621,0.0417017675936222 +3491622,0.0417017675936222 +3491623,0.0374924760667843 +3491624,0.0373456440865993 +3491625,0.0747189805917491 +3491626,0.039720457047224 +3491627,0.11916137114167201 +3491628,0.0194751192095958 +3491629,0.0176922420323126 +3491630,0.0751043555077553 +3491631,0.0498658157885074 +3491632,0.14949067642933989 +3491633,0.0498658157885074 +3491634,0.0200608333815078 +3491635,0.059988876278576 +3491636,0.0329322710936912 +3491637,0.09158580994491039 +3491638,0.0588321397408162 +3491639,0.0578246993342928 +3491640,0.0389810177257775 +3491641,0.0413753276984806 +3491642,0.0192502509780403 +3491643,0.0417017675936222 +3491644,0.0402186151818722 +3491645,0.0415870349125665 +3491646,0.0373456440865993 +3491647,0.0373675818576232 +3491648,0.039720457047224 +3491649,0.0397014552296416 +3491650,0.0790915354745077 +3491651,0.0189024186159791 +3491652,0.0948400235489632 +3491653,0.1671956926940304 +3491654,0.248652253452608 +3491655,0.0200862310990474 +3491656,0.0919919305024505 +3491657,0.0612950547606972 +3491658,0.1748972765476544 +3491659,0.1769348337277839 +3491660,0.0579049984241143 +3491661,0.0569850099181165 +3491662,0.0413404421451539 +3491663,0.0417017675936222 +3491664,0.0374611136805299 +3491665,0.0381690922272884 +3491666,0.1867571881290091 +3491667,0.1120369458567782 +3491668,0.0746912881731986 +3491669,0.07490790643781209 +3491670,0.039720457047224 +3491671,0.11916136574714241 +3491672,0.0395267933459276 +3491673,0.0187937468290328 +3491674,0.0196844294488162 +3491675,0.0214693161930818 +3491676,0.0377180891278948 +3491677,0.1495974473655222 +3491678,0.049451874178508 +3491679,0.0310957831675417 +3491680,0.029438194184732 +3491681,0.295055508613586 +3491682,0.4116352435266175 +3491683,0.0586781590856456 +3491684,0.0578107976099846 +3491685,0.0577902649247887 +3491686,0.083118903536954 +3491687,0.041548419493918 +3491688,0.0350577034296682 +3491689,0.0210147058405817 +3491690,0.0390673351286599 +3491691,0.0370888428455348 +3491692,0.1113743584923578 +3491693,0.1120418160423059 +3491694,0.11913594193944091 +3491695,0.119134865774823 +3491696,0.039720457047224 +3491697,0.0395891947238516 +3491698,0.0567751225254449 +3491699,0.0836358537050155 +3491700,0.0498658157885074 +3491701,0.0498658157885074 +3491702,0.098947397404252 +3491703,0.0486766575073418 +3491704,0.0310289413682332 +3491705,0.09109221501307141 +3491706,0.3459315854170829 +3491707,0.1180222034454344 +3491708,0.0195483671780391 +3491709,0.0201398774498996 +3491710,0.0287995213060187 +3491711,0.0328853134293896 +3491712,0.0841214185941109 +3491713,0.11197240776851691 +3491714,0.1863842105436948 +3491715,0.039720457047224 +3491716,0.039720457047224 +3491717,0.11916137114167201 +3491718,0.0396906346555265 +3491719,0.0232852321526931 +3491720,0.0498658157885074 +3491721,0.1495974473655222 +3491722,0.048536622440901 +3491723,0.0498658157885074 +3491724,0.0273498397661078 +3491725,0.0650538775731118 +3491726,0.12191641240415729 +3491727,0.0416776452524747 +3491728,0.0588652171459521 +3491729,0.1053089656103548 +3491730,0.0832767946462453 +3491731,0.0566551386585283 +3491732,0.0326118678687199 +3491733,0.0299225259301381 +3491734,0.062214868911051505 +3491735,0.036867517370813 +3491736,0.1118016941300963 +3491737,0.0360127429065134 +3491738,0.15859847016431472 +3491739,0.039720457047224 +3491740,0.039720457047224 +3491741,0.039720457047224 +3491742,0.1184583575131211 +3491743,0.0990143919805366 +3491744,0.0495836399014113 +3491745,0.0498658157885074 +3491746,0.0997316315770148 +3491747,0.0467806594302845 +3491748,0.09954838399763491 +3491749,0.0545842205119184 +3491750,0.0274068515949481 +3491751,0.1496789597302494 +3491752,0.0213501397520303 +3491753,0.0243314948556049 +3491754,0.0242963827975973 +3491755,0.1422489650082905 +3491756,0.0469932779293958 +3491757,0.0592836779243062 +3491758,0.0554853695150065 +3491759,0.0325191038613679 +3491760,0.0325574835356415 +3491761,0.0298673138022422 +3491762,0.0275307622561591 +3491763,0.0208793284685223 +3491764,0.020757445615088 +3491765,0.0364507339879158 +3491766,0.1190304303447784 +3491767,0.0397127919056711 +3491768,0.1183536939596525 +3491769,0.07916519154769411 +3491770,0.11915034952632031 +3491771,0.039720457047224 +3491772,0.2489712605085552 +3491773,0.0498658157885074 +3491774,0.13717449884474692 +3491775,0.0818830892233298 +3491776,0.0214670489649458 +3491777,0.0212988034177614 +3491778,0.0247621033154231 +3491779,0.0242729485034942 +3491780,0.1424610910273434 +3491781,0.0474053025245666 +3491782,0.0324925473887381 +3491783,0.0977328950437399 +3491784,0.0844333775107283 +3491785,0.0887542063958359 +3491786,0.0686820245494523 +3491787,0.0229007694870233 +3491788,0.0207435991615057 +3491789,0.0368317380449648 +3491790,0.0394473531886085 +3491791,0.2205538071624312 +3491792,0.0500750888970957 +3491793,0.0497043613041929 +3491794,0.149036503814125 +3491795,0.1095890998840332 +3491796,0.0273972749710083 +3491797,0.0214147722143773 +3491798,0.1214091012589264 +3491799,0.0242839380776895 +3491800,0.1418711086310534 +3491801,0.0472823118995182 +3491802,0.0324259420246155 +3491803,0.1626592849496983 +3491804,0.0284729705556281 +3491805,0.0568260667142877 +3491806,0.045759813776667504 +3491807,0.0229007694870233 +3491808,0.09237579235878221 +3491809,0.0820047677442065 +3491810,0.0658248482615003 +3491811,0.097636079168893 +3491812,0.0491669167353969 +3491813,0.0484010763632195 +3491814,0.054616080242649204 +3491815,0.0273972749710083 +3491816,0.054471285704654704 +3491817,0.0971281436827328 +3491818,0.1335979057043041 +3491819,0.0565345047317881 +3491820,0.0457579700702852 +3491821,0.032529350889629 +3491822,0.0977987627682945 +3491823,0.028339015348896 +3491824,0.0854545222323233 +3491825,0.0228977119352733 +3491826,0.0687429133256049 +3491827,0.0229007694870233 +3491828,0.0205383590357095 +3491829,0.0576454450766167 +3491830,0.418658590749746 +3491831,0.0682883834829677 +3491832,0.0264594458925833 +3491833,0.0254110402655887 +3491834,0.1617694982914286 +3491835,0.0325187699709315 +3491836,0.0265449891549203 +3491837,0.0243959591149932 +3491838,0.0254097914928963 +3491839,0.0284663438796997 +3491840,0.0285199208299502 +3491841,0.0286818641220657 +3491842,0.1145663547874433 +3491843,0.0690529154722166 +3491844,0.0212931571381373 +3491845,0.0383348055183886 +3491846,0.0702154263854026 +3491847,0.0702154263854026 +3491848,0.049607847900215704 +3491849,0.024747104417217 +3491850,0.0751511375045657 +3491851,0.0751507740074274 +3491852,0.1617085881286676 +3491853,0.0321651036081542 +3491854,0.032399701800161 +3491855,0.026539359735689 +3491856,0.0265241578045183 +3491857,0.0218904651038209 +3491858,0.0204851831934275 +3491859,0.0253501927959874 +3491860,0.0850321642461896 +3491861,0.0852006229359706 +3491862,0.0229624218826896 +3491863,0.0229473403968634 +3491864,0.1180592318142081 +3491865,0.045460395808160095 +3491866,0.0205785292298925 +3491867,0.0389819940066249 +3491868,0.0579529125485652 +3491869,0.1404116314444912 +3491870,0.2105658420874454 +3491871,0.0702154263854026 +3491872,0.070115529214725 +3491873,0.1732979957656708 +3491874,0.0247472448170257 +3491875,0.0250485430064979 +3491876,0.1252662838599857 +3491877,0.092583196032575 +3491878,0.0254064026693237 +3491879,0.026541099512311 +3491880,0.0212409693957125 +3491881,0.063631400487345 +3491882,0.0199624443716222 +3491883,0.0199054132040007 +3491884,0.0229054544342181 +3491885,0.0295806243807509 +3491886,0.0236510492589711 +3491887,0.11236239550568311 +3491888,0.0224893099673526 +3491889,0.0211676195578357 +3491890,0.0702154263854026 +3491891,0.13542448192936402 +3491892,0.0702154263854026 +3491893,0.2106462791562078 +3491894,0.0742812643618276 +3491895,0.0250534489750862 +3491896,0.0751137265678485 +3491897,0.1957535137818154 +3491898,0.0217940808731447 +3491899,0.0231398552067477 +3491900,0.0231656668914921 +3491901,0.021234332821323 +3491902,0.0210847046281807 +3491903,0.0995312868123993 +3491904,0.0199379301600399 +3491905,0.021427259155458 +3491906,0.065031104001185 +3491907,0.0598236814224598 +3491908,0.0301981022115534 +3491909,0.1135638803958806 +3491910,0.0223339475915287 +3491911,0.35107713192701295 +3491912,0.21031568181574462 +3491913,0.0694951762497436 +3491914,0.0250534489750862 +3491915,0.0250447532289117 +3491916,0.025050216852545 +3491917,0.0642106110251649 +3491918,0.043227338895883205 +3491919,0.0694639575896613 +3491920,0.0694126985457919 +3491921,0.0234365325169656 +3491922,0.020396820856501 +3491923,0.0198993491523353 +3491924,0.059484804875084604 +3491925,0.0199156272824873 +3491926,0.0214445899866573 +3491927,0.042867578879465296 +3491928,0.0602001240072578 +3491929,0.030278929953697 +3491930,0.0215595988625387 +3491931,0.0673941939076101 +3491932,0.0702154263854026 +3491933,0.0702154263854026 +3491934,0.0702048257178876 +3491935,0.0250534489750862 +3491936,0.0250534489750862 +3491937,0.0250344982241245 +3491938,0.0103403946509988 +3491939,0.0541937151203144 +3491940,0.1148199964341072 +3491941,0.0694015195576193 +3491942,0.0198734804772255 +3491943,0.038639745455778196 +3491944,0.0772863728404579 +3491945,0.0199200122304446 +3491946,0.09119642082293669 +3491947,0.1515795135041055 +3491948,0.0675249565701331 +3491949,0.2100716974611124 +3491950,0.0695965863006117 +3491951,0.2105483135745082 +3491952,0.0749679602017036 +3491953,0.0250558663358472 +3491954,0.0250534489750862 +3491955,0.0751580002963127 +3491956,0.0200099628418684 +3491957,0.030183699421716698 +3491958,0.085289918223636 +3491959,0.0213267058134078 +3491960,0.055511430366435 +3491961,0.0168591997491092 +3491962,0.0229275211615854 +3491963,0.0461674960130222 +3491964,0.0307047298806775 +3491965,0.0302913126862187 +3491966,0.0244845057109979 +3491967,0.0565244918747742 +3491968,0.0689075010633202 +3491969,0.1384106462665804 +3491970,0.0697471653629919 +3491971,0.0250361974651153 +3491972,0.0250297043096024 +3491973,0.049525158842305295 +3491974,0.0250193149699076 +3491975,0.0300346255579594 +3491976,0.050031527503539605 +3491977,0.0106477501188933 +3491978,0.032022441284464104 +3491979,0.0319900587201117 +3491980,0.0319900587201117 +3491981,0.0549182792437827 +3491982,0.0185003100206805 +3491983,0.0158343352377414 +3491984,0.0162959618912132 +3491985,0.0229245694972301 +3491986,0.0695674585737284 +3491987,0.0247103931859524 +3491988,0.061405811458826 +3491989,0.0574684688165606 +3491990,0.072389544294579 +3491991,0.0250534489750862 +3491992,0.0502755469878934 +3491993,0.0396889129650833 +3491994,0.0399281456196066 +3491995,0.0550237086582651 +3491996,0.0183034900429579 +3491997,0.0158460675322265 +3491998,0.0475030057132242 +3491999,0.079171676188707 +3492000,0.0318113232861394 +3492001,0.0231970169103569 +3492002,0.0241949681370639 +3492003,0.2383050675681884 +3492004,0.3060566279211151 +3492005,0.2472208806264838 +3492006,0.0541300223416145 +3492007,0.12640230765912042 +3492008,0.0316686704754828 +3492009,0.0633373409509656 +3492010,0.0633373409509656 +3492011,0.1066558805658041 +3492012,0.0158247090596522 +3492013,0.015786746304154 +3492014,0.0235243916501233 +3492015,0.0899239142029542 +3492016,0.0246197064563245 +3492017,0.0156645178327762 +3492018,0.07725233874205101 +3492019,0.0279411543770066 +3492020,0.0628457916684198 +3492021,0.28245352953672387 +3492022,0.0934523426410968 +3492023,0.0215910824164987 +3492024,0.0632187233293994 +3492025,0.0785226211483879 +3492026,0.0157526465590444 +3492027,0.029187819098976102 +3492028,0.0209970502168771 +3492029,0.0941511765122413 +3492030,0.0870262571195362 +3492031,0.0919625443474448 +3492032,0.021095785699178 +3492033,0.0211488540056958 +3492034,0.0306728871439883 +3492035,0.030778518303178203 +3492036,0.0941406773691479 +3492037,0.0936272614300625 +3492038,0.1485148742682863 +3492039,0.2696647521965672 +3492040,0.021211148338366 +3492041,0.0213021690262578 +3492042,0.1882431559217751 +3492043,0.2802262598405436 +3492044,0.0296391371093906 +3492045,0.0900539501455726 +3492046,0.0851264432307059 +3492047,0.0882725565050615 +3492048,0.0929659316356779 +3492049,0.1183104292151694 +3492050,0.0291712906498399 +3492051,0.0688035688520533 +3492052,0.0132174308792976 +3492053,0.910127162933349 +3492054,0.36289986608134817 +3492055,0.0886273918918572 +3492056,0.08887147763664299 +3492057,0.0132174147292971 +3492058,0.0132654193709085 +3492059,0.0135340648869915 +3492060,0.5352674829284515 +3492061,0.3576043074928149 +3492062,0.0909860185298438 +3492063,0.0296935457736253 +3492064,0.0294235163019005 +3492065,0.0132321107089807 +3492066,0.0397065643792285 +3492067,0.1087970132940558 +3492068,0.0775524899363517 +3492069,0.0293755477382991 +3492070,0.0264729948144233 +3492071,0.0132974684645856 +3492072,0.1023264734183816 +3492073,0.016039756934181 +3492074,0.5415853963309334 +3492075,0.31114954791660043 +3492076,0.0141799809432469 +3492077,0.0550899914579607 +3492078,0.4653149396181102 +3492079,0.2311238230170657 +3492080,0.0137756234034895 +3492081,0.0137756234034895 +3492082,0.0137658213360099 +3492083,0.3102099597454068 +3492084,0.7748553072615446 +3492085,0.0770376289537525 +3492086,0.0145436879869502 +3492087,0.0137756234034895 +3492088,0.0275485459974214 +3492089,0.0550324229707647 +3492090,0.071204816721947 +3492091,0.3857057707620599 +3492092,0.0413268702104685 +3492093,0.0444204065337852 +3492094,0.1239624892881388 +3492095,0.0274768642947619 +3492096,0.0513650763064236 +3492097,0.0944579651468445 +3492098,0.1508452376599166 +3492099,0.0775524899363517 +3492100,0.0137665541893407 +3492101,0.12384031644418629 +3492102,0.0687398325727517 +3492103,0.0715959444642067 +3492104,0.1433045317841358 +3492105,0.0963447204634981 +3492106,0.0932140499353407 +3492107,0.1269158191386091 +3492108,0.0688380221126688 +3492109,0.0137756234034895 +3492110,0.8526704498368292 +3492111,0.21451679551603908 +3492112,0.21942338843583942 +3492113,0.0310713499784469 +3492114,0.0137756234034895 +3492115,0.055102493613958 +3492116,0.027551246806979 +3492117,0.0413268702104685 +3492118,0.0756166103846265 +3492119,0.0722823287404553 +3492120,0.0320772493736622 +3492121,0.0932297249531833 +3492122,0.0935908329978194 +3492123,0.055102493613958 +3492124,0.0137756234034895 +3492125,0.0137756234034895 +3492126,0.0137756234034895 +3492127,0.027551246806979 +3492128,0.027541926916071102 +3492129,0.0677038315755736 +3492130,0.072476569755362 +3492131,0.0143614007688585 +3492132,0.042167045428133196 +3492133,0.041140389394139595 +3492134,0.027542128811559 +3492135,0.042926705052502095 +3492136,0.013802404438595 +3492137,0.0277718555147063 +3492138,0.21708569641133202 +3492139,0.0727440217577983 +3492140,0.0724077750128675 +3492141,0.5061077792339118 +3492142,0.0136797247775992 +3492143,0.0825412756492935 +3492144,0.3202309436405616 +3492145,0.0281456891731242 +3492146,0.0522711777119277 +3492147,0.0729629015797869 +3492148,0.0721280317481157 +3492149,0.0652709156274795 +3492150,0.2593166485161693 +3492151,0.0378196836481154 +3492152,0.0459812320446182 +3492153,0.0625245129785514 +3492154,0.0105675811149977 +3492155,0.0652709156274795 +3492156,0.0652709156274795 +3492157,0.0127419178064302 +3492158,0.0596987265828528 +3492159,0.0118748644705253 +3492160,0.0940259016299515 +3492161,0.1264330169819378 +3492162,0.0647180010701511 +3492163,0.1958363298811256 +3492164,0.1958127468824385 +3492165,0.025668202856618 +3492166,0.118858420543712 +3492167,0.0104417737735689 +3492168,0.0357412750011509 +3492169,0.3263346339391161 +3492170,0.3264467481710433 +3492171,0.1952746788963749 +3492172,0.0652709156274795 +3492173,0.0129863007592213 +3492174,0.0616389194315677 +3492175,0.1276301866563908 +3492176,0.0652709156274795 +3492177,0.1957885860431463 +3492178,0.0652709156274795 +3492179,0.3263545781373975 +3492180,0.0652709156274795 +3492181,0.261083662509918 +3492182,0.4567727615669358 +3492183,0.391625493764877 +3492184,0.1943558903508849 +3492185,0.0652709156274795 +3492186,0.0652709156274795 +3492187,0.1941105778792771 +3492188,0.0652709156274795 +3492189,0.1956180632834248 +3492190,0.261083662509918 +3492191,0.0652709156274795 +3492192,0.0652709156274795 +3492193,0.3223926141096502 +3492194,0.2579409339121832 +3492195,0.0652709156274795 +3492196,0.1956603190918927 +3492197,0.130541831254959 +3492198,0.0612279807645517 +3492199,0.19576007280814128 +3492200,0.1958127468824385 +3492201,0.3263545781373975 +3492202,0.714939119305782 +3492203,0.1937573431383293 +3492204,0.0646782444508854 +3492205,0.1011534497596421 +3492206,0.14115053094592 +3492207,0.07203155124334709 +3492208,0.0237698163837194 +3492209,0.077675700358327 +3492210,0.1297308453345042 +3492211,0.0734995743461696 +3492212,0.0719244564332158 +3492213,0.0260000098496675 +3492214,0.0258587008551915 +3492215,0.0759547439204346 +3492216,0.0244307654738044 +3492217,0.0260000098496675 +3492218,0.0778432233951665 +3492219,0.1774229846436872 +3492220,0.024521389524076 +3492221,0.0475875860278573 +3492222,0.1300721988065623 +3492223,0.07800002954900251 +3492224,0.1279911485948561 +3492225,0.0573173077150005 +3492226,0.0269188332358577 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001130900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001130900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001130900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001131900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001131900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001131900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001132000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001132000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001132000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001132100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001132100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001132100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001132200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001132200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001132200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001132300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001132300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..53ea314cc --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001132300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.046496148203630905 +3490292,0.0847550512994105 +3490293,0.0109336739405989 +3490316,0.0218673478811978 +3490317,0.054668369702994504 +3490332,0.0328010218217967 +3490333,0.0347906278350275 +3490334,0.06764221137412631 +3490335,0.0109336739405989 +3490348,0.0131030549459748 +3490349,0.0221741175782758 +3490350,0.0109336739405989 +3490351,0.0328010218217967 +3490374,0.0559003109142198 +3490375,0.16393312207728788 +3490376,0.0915146286209037 +3490377,0.0240242593576572 +3490378,0.0218673478811978 +3490379,0.0993717365702713 +3490396,0.0269675223868468 +3490397,0.0545497983694076 +3490398,0.032818266160989 +3490399,0.0218673478811978 +3490418,0.0669279121026187 +3490419,0.0109336739405989 +3490437,0.0109998572138444 +3490438,0.055624143664891004 +3490439,0.0342519320751866 +3490440,0.0109339315620276 +3490457,0.0818290935905285 +3490458,0.082318440665838 +3490459,0.0218673478811978 +3490460,0.06861800140496051 +3490476,0.021817984028232103 +3490477,0.0325889518266467 +3490478,0.0145074473693966 +3490479,0.0145074473693966 +3490499,0.103913357661197 +3490500,0.0072537236846983 +3490517,0.0281454743110355 +3490518,0.0405823891407556 +3490519,0.0290148947387932 +3490520,0.0362686184234915 +3490544,0.0072537236846983 +3490545,0.0073029343000194 +3490546,0.0145074473693966 +3490547,0.007324297654761 +3490573,0.021699709705841598 +3490574,0.0072537236846983 +3490575,0.0081821470407132 +3490576,0.0144202188030827 +3490597,0.0210696067930706 +3490598,0.0194765972841959 +3490599,0.0076971459960474 +3490600,0.026500160790695698 +3490601,0.0128518828803014 +3490602,0.0130657457054663 +3490603,0.0267921299796272 +3490604,0.0262327884251792 +3490623,0.0064219404011964 +3490624,0.0128438808023928 +3490625,0.0230459973675197 +3490626,0.0883027287050409 +3490639,0.0064219404011964 +3490640,0.0256877616047856 +3490641,0.0141348526852637 +3490642,0.068858552354086 +3490643,0.11622585401188609 +3490644,0.0295930933207273 +3490645,0.0294783380229803 +3490658,0.0128438808023928 +3490659,0.0064219404011964 +3490660,0.1624155439277848 +3490661,0.0699551164757697 +3490662,0.205868837689159 +3490663,0.0295930933207273 +3490664,0.0294100080226735 +3490665,0.0885249502192328 +3490681,0.0330628411477147 +3490682,0.0064219404011964 +3490683,0.0064219404011964 +3490684,0.0128438808023928 +3490685,0.0225672680315187 +3490686,0.0232487298745532 +3490687,0.0296485864418102 +3490688,0.0296451261543307 +3490689,0.0295399046486037 +3490690,0.0295930933207273 +3490707,0.0128438808023928 +3490708,0.0064219404011964 +3490709,0.0069783440394797 +3490710,0.0064219404011964 +3490725,0.0064020944144632 +3490726,0.0064219404011964 +3490727,0.0192658212035892 +3490728,0.025936381637586402 +3490736,0.0451207156666127 +3490737,0.032721818589902196 +3490738,0.1646303047960424 +3490739,0.0394507369458618 +3490747,0.4604495792215624 +3490748,0.0122309166594579 +3490757,0.0224248279305022 +3490758,0.0195229586143359 +3490771,0.016782217458059 +3490772,0.005648768684965 +3490773,0.0070796201596008 +3490774,0.0112359062772233 +3490787,0.01111174765274 +3490788,0.0077732987921339 +3490789,0.06556982011105131 +3490790,0.1005432272660147 +3490805,0.0054982560676011 +3490806,0.0177843591495918 +3490807,0.011028085835278 +3490808,0.0272751013353725 +3490809,0.0147433909274047 +3490810,0.0149787356591338 +3490827,0.0052256056762221 +3490828,0.0053834964099448 +3490842,0.0156192288909026 +3490843,0.0052047832868993 +3490844,0.0053009987038707 +3490845,0.0161962240212335 +3490856,0.0052047832868993 +3490857,0.0057389815810541 +3490858,0.0052047832868993 +3490859,0.0161152901636011 +3490860,0.0053945928812026 +3490861,0.026978793820455 +3490875,0.0052047832868993 +3490876,0.0052047832868993 +3490877,0.016937370949869 +3490878,0.0058030132802961 +3490879,0.0107891857624052 +3490892,0.015614349860697898 +3490893,0.015614349860697898 +3490894,0.0053945928812026 +3490895,0.0069263562343343 +3490900,0.0052023812200508 +3490901,0.0050662235260395 +3490902,0.0163029023555456 +3490903,0.0156176316886272 +3490904,0.030277912273806905 +3490905,0.0185715711273153 +3490906,0.0213217950614272 +3490907,0.1179396740574143 +3490916,0.015652586981945597 +3490917,0.005264573539424 +3490918,0.0051999430619864 +3490919,0.0052096361040112 +3490920,0.0054902010703286 +3490921,0.014166933513729801 +3490922,0.0169577146472858 +3490923,0.2328910442800467 +3490924,0.0078238219936966 +3490925,0.0787364793490582 +3490926,0.2170596942309006 +3490935,0.0050139040751327 +3490936,0.0067272770944688 +3490937,0.0354869275990807 +3490938,0.0342409815350538 +3490939,0.0206168386847502 +3490940,0.020219358104149397 +3490941,0.0244801316571725 +3490942,0.0241673402168677 +3490953,0.0051713458456785 +3490954,0.0052075126621207 +3490955,0.0058395955629064 +3490956,0.0113799705994617 +3490957,0.0286665206366537 +3490958,0.0269529480621398 +3490959,0.0202611163258551 +3490960,0.020238718557897398 +3490966,0.014753478113561699 +3490967,0.0049178260378539 +3490968,0.019266132068045 +3490969,0.0232120503000954 +3490970,0.19884031801036461 +3490971,0.0281100478475643 +3490972,0.10428325863907009 +3490973,0.0260809994161684 +3490974,0.0067537054419517 +3490975,0.0204225600766277 +3490980,0.0147953101770077 +3490981,0.0049410157755061 +3490982,0.0049904474966169 +3490983,0.0363931426519219 +3490984,0.1150301658362274 +3490985,0.256573485995103 +3490986,0.0283906251596443 +3490987,0.085142207346262 +3490988,0.08456951014892991 +3490989,0.0262766074601871 +3490990,0.0781994068677499 +3490991,0.0260268690681668 +3490992,0.0067537054419517 +3490993,0.0067537054419517 +3490994,0.0257149144183828 +3490995,0.0067537054419517 +3490999,0.0049320372345236 +3491000,0.0049706975612538 +3491001,0.0243130555165665 +3491002,0.016085304217909498 +3491003,0.0234094879667649 +3491004,0.0234400808861936 +3491005,0.08513275447319921 +3491006,0.1415888885852897 +3491007,0.0231904755378201 +3491008,0.0251311027645965 +3491009,0.034041300620476 +3491010,0.0201659052916059 +3491013,0.0134463456142228 +3491014,0.018590782408633 +3491015,0.0851942277911765 +3491016,0.0851785859950702 +3491017,0.2429762192900243 +3491018,0.0234243805175825 +3491019,0.0363973170890209 +3491020,0.0067537054419517 +3491021,0.0104100434109568 +3491022,0.0105841584231334 +3491023,0.0203330469480291 +3491024,0.0076633032621939 +3491025,0.08442133987943609 +3491026,0.0278719592692792 +3491027,0.0342559505265973 +3491028,0.0361519203221172 +3491029,0.0052050217054784 +3491030,0.0278619570260237 +3491031,0.0327420367142908 +3491032,0.0361711293500886 +3491033,0.030379904826137 +3491034,0.0205728895962238 +3491035,0.0202753408114046 +3491036,0.0288096910359018 +3491037,0.0278709214180707 +3491038,0.0376742212474757 +3491039,0.2546852982301865 +3491040,0.0052050217054784 +3491041,0.015615065116435201 +3491042,0.0309212189167737 +3491043,0.0292346849715233 +3491044,0.0201560723692842 +3491045,0.1020743961525749 +3491046,0.0278709214180707 +3491047,0.0278806252478008 +3491048,0.0367906019842417 +3491049,0.0366326719522476 +3491050,0.15455035018779162 +3491051,0.0515069222080196 +3491052,0.0052050217054784 +3491053,0.0267366882179077 +3491054,0.0925588553344516 +3491055,0.0918697748528486 +3491056,0.0202556301304204 +3491057,0.1419743595978464 +3491058,0.0278709214180707 +3491059,0.0850511150869648 +3491060,0.1834539040500702 +3491061,0.0366326719522476 +3491062,0.10963431160608189 +3491063,0.18216089534844598 +3491064,0.0514299999554042 +3491065,0.2576812174691061 +3491066,0.015615065116435201 +3491067,0.0052050217054784 +3491068,0.0082270920262706 +3491069,0.0054069531732381 +3491070,0.0222941376419919 +3491071,0.0616503168837058 +3491072,0.1956932172550474 +3491073,0.0836181816358987 +3491074,0.0366326719522476 +3491075,0.3291634273335926 +3491076,0.1543604062059221 +3491077,0.0515158427752249 +3491078,0.0551693766231936 +3491079,0.0216233038712402 +3491080,0.0166809227353155 +3491081,0.0053430343413131 +3491082,0.0266749595113819 +3491083,0.0278300737215288 +3491084,0.0278709214180707 +3491085,0.0278709214180707 +3491086,0.1105814832297623 +3491087,0.11007111019464 +3491088,0.0697663033303931 +3491089,0.1144451054674366 +3491090,0.0491126094972176 +3491091,0.0509195067480177 +3491092,0.0161272458478726 +3491093,0.0057157888739499 +3491094,0.0836127642542121 +3491095,0.1393846158501963 +3491096,0.10945921339311271 +3491097,0.0365418497684705 +3491098,0.16963343136635678 +3491099,0.0294569671812385 +3491100,0.0501957576425081 +3491101,0.02774069005852 +3491102,0.0985922909695826 +3491103,0.13928592150025548 +3491104,0.1393957200460984 +3491105,0.0840032471780522 +3491106,0.1720624912384029 +3491107,0.17445160008879448 +3491108,0.1045414548349217 +3491109,0.10259259435535589 +3491110,0.0659142721003632 +3491111,0.0453746023369878 +3491112,0.0053634834475815 +3491113,0.16743434614913888 +3491114,0.1185924931781782 +3491115,0.1938398897227338 +3491116,0.1392020532914035 +3491117,0.0279256850022279 +3491118,0.1380485389200464 +3491119,0.2156768677344521 +3491120,0.1078043679662591 +3491121,0.10450959178025179 +3491122,0.0359102663726322 +3491123,0.0472020994474661 +3491124,0.074397934030832 +3491125,0.0165940907595402 +3491126,0.1807531281570388 +3491127,0.0057439942589088 +3491128,0.0403338234226872 +3491129,0.0237009411240683 +3491130,0.0238427203148603 +3491131,0.0488628864942093 +3491132,0.07226098090146779 +3491133,0.0275881513953208 +3491134,0.0276077701700989 +3491135,0.0359993688762187 +3491136,0.3955827665636893 +3491137,0.3140312910992233 +3491138,0.1464724332621376 +3491139,0.19522406503205908 +3491140,0.0171563383840052 +3491141,0.2000504717548199 +3491142,0.0054179051107773 +3491143,0.0072152817634616 +3491144,0.0725723597270039 +3491145,0.0238427203148603 +3491146,0.1107201178427582 +3491147,0.0276191000437123 +3491148,0.0359993688762187 +3491149,0.0348832085728645 +3491150,0.0348326205064001 +3491151,0.0490825683623332 +3491152,0.0485914135246989 +3491153,0.0215931162238121 +3491154,0.0658676940649578 +3491155,0.1064414968593777 +3491156,0.1823646327758537 +3491157,0.1060811590976882 +3491158,0.1226463341810243 +3491159,0.0557822425771079 +3491160,0.0830840005854791 +3491161,0.1439974755048748 +3491162,0.0359993688762187 +3491163,0.1039709484080519 +3491164,0.1046372533312392 +3491165,0.1470644273271037 +3491166,0.0487807839566753 +3491167,0.0654348808619462 +3491168,0.06481133236069339 +3491169,0.10699498170716171 +3491170,0.0178331416100263 +3491171,0.2154270852582672 +3491172,0.0516775206584488 +3491173,0.0458836045735986 +3491174,0.0460080850763384 +3491175,0.0279187293058013 +3491176,0.1075564028152068 +3491177,0.0351163300762801 +3491178,0.0359993688762187 +3491179,0.1079981066286561 +3491180,0.0348627534357711 +3491181,0.1960280795306891 +3491182,0.1469549873047992 +3491183,0.1521620903321649 +3491184,0.1947458680515198 +3491185,0.0179037932925039 +3491186,0.0185342699457861 +3491187,0.0713325664401052 +3491188,0.1088583836440018 +3491189,0.5395202852599121 +3491190,0.160959493367724 +3491191,0.015689836033065 +3491192,0.0462474542556142 +3491193,0.0359993688762187 +3491194,0.0359993688762187 +3491195,0.0432407766793678 +3491196,0.4396239541651276 +3491197,0.153611342342285 +3491198,0.1729614157861086 +3491199,0.0899585638768865 +3491200,0.0747141770787339 +3491201,0.2690781947422906 +3491202,0.1079270467162132 +3491203,0.0172103625616839 +3491204,0.07672211337031799 +3491205,0.1039180031774984 +3491206,0.0359993688762187 +3491207,0.1438591071657431 +3491208,0.0717958836936538 +3491209,0.0338591907449889 +3491210,0.0277340031227662 +3491211,0.103568286353436 +3491212,0.0349041343186342 +3491213,0.3751231320683241 +3491214,0.1616109502452572 +3491215,0.0539635233581066 +3491216,0.0539635233581066 +3491217,0.0765575189028408 +3491218,0.0776151135849444 +3491219,0.0707366375808654 +3491220,0.2519955821335309 +3491221,0.17758094179450418 +3491222,0.1439974755048748 +3491223,0.0335557357220576 +3491224,0.0337569833866715 +3491225,0.2591403808507924 +3491226,0.0721874330180664 +3491227,0.0353498794138431 +3491228,0.0708621088931905 +3491229,0.0683344640391101 +3491230,0.0340327550295387 +3491231,0.16189057007431978 +3491232,0.0536540286215537 +3491233,0.0319599930579762 +3491234,0.0312560030280097 +3491235,0.3954494436389917 +3491236,0.0359904538028045 +3491237,0.06601758904099089 +3491238,0.0359254006254282 +3491239,0.0339791847531338 +3491240,0.0335815458294855 +3491241,0.0306710236753517 +3491242,0.0328702883109384 +3491243,0.0238314736634492 +3491244,0.023874324620748 +3491245,0.1055532045272919 +3491246,0.1767493970692155 +3491247,0.058470341651593 +3491248,0.0111461142078042 +3491249,0.0539635233581066 +3491250,0.0539635233581066 +3491251,0.0154722949181748 +3491252,0.17889307046969338 +3491253,0.0359993688762187 +3491254,0.0359924686600409 +3491255,0.1008600964802607 +3491256,0.0671797841787338 +3491257,0.09966352630155989 +3491258,0.0668072421089039 +3491259,0.0294484268996156 +3491260,0.0274692821434741 +3491261,0.099507479804073 +3491262,0.1000452420871584 +3491263,0.0238314736634492 +3491264,0.0475870579472257 +3491265,0.1413995176553724 +3491266,0.1056389056079774 +3491267,0.0353498794138431 +3491268,0.035549938359072 +3491269,0.0802183298570018 +3491270,0.055979460619115295 +3491271,0.1606993013010447 +3491272,0.0539635233581066 +3491273,0.32378114014863957 +3491274,0.3757620087367417 +3491275,0.17841569557238648 +3491276,0.14203664083028278 +3491277,0.0335898920893669 +3491278,0.0299594295756004 +3491279,0.0289755462872194 +3491280,0.0285758093928068 +3491281,0.0287619941205015 +3491282,0.0262478734609607 +3491283,0.1049979806508868 +3491284,0.0999891279546872 +3491285,0.1000597381887941 +3491286,0.0718163120106793 +3491287,0.0719018045505263 +3491288,0.0353498794138431 +3491289,0.0706787640408119 +3491290,0.0834100210820018 +3491291,0.0257786036959127 +3491292,0.2152381609309558 +3491293,0.0535838613208845 +3491294,0.0515666396219633 +3491295,0.1079848837547851 +3491296,0.25140958881418707 +3491297,0.279690478382601 +3491298,0.10072029592978679 +3491299,0.0303898327975094 +3491300,0.028950442743738 +3491301,0.028672335294346 +3491302,0.08513019241018491 +3491303,0.0884116311635072 +3491304,0.0299780240996477 +3491305,0.0262429944256021 +3491306,0.1308280113975784 +3491307,0.0313881870788202 +3491308,0.0333339402129483 +3491309,0.1000470040076139 +3491310,0.0480784300691962 +3491311,0.1413995176553724 +3491312,0.0353498794138431 +3491313,0.0480926995452365 +3491314,0.0560653891479257 +3491315,0.0356059072239256 +3491316,0.1079981066286561 +3491317,0.0359993688762187 +3491318,0.0609112489781871 +3491319,0.0304062818716049 +3491320,0.0303771693429643 +3491321,0.0304039772599935 +3491322,0.0595985607475886 +3491323,0.1455119505747235 +3491324,0.057480676291108604 +3491325,0.0286367202451322 +3491326,0.0346901547699011 +3491327,0.0380336332123333 +3491328,0.1048519657742323 +3491329,0.026158683001995 +3491330,0.0283552231049117 +3491331,0.0392249436868209 +3491332,0.1060496382415293 +3491333,0.0353498794138431 +3491334,0.3888486735522741 +3491335,0.1411175803770444 +3491336,0.044560659777936995 +3491337,0.0451421033736175 +3491338,0.0802481003193834 +3491339,0.0461109328304651 +3491340,0.0359993688762187 +3491341,0.1079981066286561 +3491342,0.0304039772599935 +3491343,0.15201988629996752 +3491344,0.0289894750896923 +3491345,0.0288593736496329 +3491346,0.1041110560015095 +3491347,0.1046176072513213 +3491348,0.038706330406549 +3491349,0.1163427606225012 +3491350,0.0785170136808301 +3491351,0.078476049005985 +3491352,0.1859091974365944 +3491353,0.0272935055814921 +3491354,0.048137495595224 +3491355,0.0960808348541343 +3491356,0.1058557848953202 +3491357,0.1024993220880081 +3491358,0.0343538549286428 +3491359,0.0353498794138431 +3491360,0.4947349980486656 +3491361,0.1060496382415293 +3491362,0.0305389876575871 +3491363,0.0319093112531113 +3491364,0.0304183356351812 +3491365,0.0308584140074339 +3491366,0.01687553908608 +3491367,0.0146782215840983 +3491368,0.0134380225782795 +3491369,0.1439856737046791 +3491370,0.0359993688762187 +3491371,0.10799804867148219 +3491372,0.0719051313036507 +3491373,0.060755105745000496 +3491374,0.0304039772599935 +3491375,0.0304039772599935 +3491376,0.060829509506586596 +3491377,0.028826005756855 +3491378,0.0715308067195608 +3491379,0.0346878532162659 +3491380,0.034776024588893 +3491381,0.0386692789117081 +3491382,0.0387809202075004 +3491383,0.0387809202075004 +3491384,0.0381104208977624 +3491385,0.0262543417045015 +3491386,0.1046354601128812 +3491387,0.0530921391290224 +3491388,0.0797049619942723 +3491389,0.0479503458175101 +3491390,0.1814131802362562 +3491391,0.0481744923401789 +3491392,0.1058181928736682 +3491393,0.3888486735522741 +3491394,0.0134606021182368 +3491395,0.1101077483956433 +3491396,0.0398221621289847 +3491397,0.0133826504363067 +3491398,0.0359993688762187 +3491399,0.1799879053185298 +3491400,0.0303387061195525 +3491401,0.0304039772599935 +3491402,0.060990820972252696 +3491403,0.0305404051148102 +3491404,0.0268993669056053 +3491405,0.1099903760447391 +3491406,0.0989141684467452 +3491407,0.0197722371667623 +3491408,0.0347131420930059 +3491409,0.03481440158156 +3491410,0.0347150627406853 +3491411,0.0391762729185419 +3491412,0.0387809202075004 +3491413,0.0777435379806559 +3491414,0.07862147111271031 +3491415,0.0387809202075004 +3491416,0.1939643976800243 +3491417,0.0527606557927418 +3491418,0.1834059338574399 +3491419,0.026600538362431 +3491420,0.0339433834166533 +3491421,0.0920154338142834 +3491422,0.2196744560701763 +3491423,0.2468073229806134 +3491424,0.0706997588276862 +3491425,0.08638394848543479 +3491426,0.0165014042992088 +3491427,0.0406410367834955 +3491428,0.0132740540429949 +3491429,0.1079981066286561 +3491430,0.1079981066286561 +3491431,0.0358239748979812 +3491432,0.0303980685974912 +3491433,0.0304039772599935 +3491434,0.0304039772599935 +3491435,0.0304039772599935 +3491436,0.0262029021978378 +3491437,0.07860870659351339 +3491438,0.0593167115002869 +3491439,0.0198870465154512 +3491440,0.07157854274307501 +3491441,0.0700858284708665 +3491442,0.0349392029429397 +3491443,0.0392526059626569 +3491444,0.052720692136713196 +3491445,0.0261812309331305 +3491446,0.0271549880397507 +3491447,0.1304906705226083 +3491448,0.0430831328414795 +3491449,0.0903535108723091 +3491450,0.0298377033323049 +3491451,0.1413995176553724 +3491452,0.0352499818630613 +3491453,0.0353498794138431 +3491454,0.1060453611672478 +3491455,0.0352330654859542 +3491456,0.1761714778694891 +3491457,0.0169844154581975 +3491458,0.0498838253120369 +3491459,0.0664223827518174 +3491460,0.0161831448728774 +3491461,0.0388866143495034 +3491462,0.013474352046921 +3491463,0.0717580997393222 +3491464,0.0355829739015592 +3491465,0.1079981066286561 +3491466,0.0359993688762187 +3491467,0.0297618618427714 +3491468,0.0304039772599935 +3491469,0.0304039772599935 +3491470,0.2131328331410965 +3491471,0.0304619576689748 +3491472,0.0260282665584515 +3491473,0.13173191365407788 +3491474,0.0197722371667623 +3491475,0.0596075651473418 +3491476,0.0233983881508083 +3491477,0.096533603406325 +3491478,0.0346472749025691 +3491479,0.1309239620798506 +3491480,0.0872210483131728 +3491481,0.0299790354673684 +3491482,0.0895131099969147 +3491483,0.1413995176553724 +3491484,0.0310758154029265 +3491485,0.0353471237389931 +3491486,0.10185984871214371 +3491487,0.10530833090431 +3491488,0.1755518493156526 +3491489,0.0352330654859542 +3491490,0.0166147854179143 +3491491,0.0330560925797646 +3491492,0.034618069785316 +3491493,0.0358483374671796 +3491494,0.0359993688762187 +3491495,0.0719987377524374 +3491496,0.0907453486653293 +3491497,0.0304039772599935 +3491498,0.0304039772599935 +3491499,0.0304553306515425 +3491500,0.0788750978594904 +3491501,0.0261481373300415 +3491502,0.0197398575582616 +3491503,0.0249172341484941 +3491504,0.0236544434318367 +3491505,0.0841402646934728 +3491506,0.0334173472666377 +3491507,0.0872921311864476 +3491508,0.1310674239534885 +3491509,0.0911493848362374 +3491510,0.0895131099969147 +3491511,0.0353498794138431 +3491512,0.0338591607608596 +3491513,0.1179359777681851 +3491514,0.052832380612170396 +3491515,0.0352330654859542 +3491516,0.0352433155632983 +3491517,0.0831268309797094 +3491518,0.0830363811757233 +3491519,0.0342587417062119 +3491520,0.1079612770163762 +3491521,0.1793634580821315 +3491522,0.0302867969066437 +3491523,0.0303889566260266 +3491524,0.0913376701024471 +3491525,0.1522200672886557 +3491526,0.0527143477399703 +3491527,0.0285879726559074 +3491528,0.052329486060931296 +3491529,0.0262029021978378 +3491530,0.0250411583152675 +3491531,0.0244126576690744 +3491532,0.0503772848182054 +3491533,0.0336173003109102 +3491534,0.033002383588617 +3491535,0.0353498794138431 +3491536,0.0425618796693387 +3491537,0.0357911503260423 +3491538,0.0718393751868094 +3491539,0.0147462991772941 +3491540,0.0352330654859542 +3491541,0.1058649866163758 +3491542,0.050226088865872 +3491543,0.0166147854179143 +3491544,0.0169487067160504 +3491545,0.10778131925935369 +3491546,0.1079981066286561 +3491547,0.0694499895773134 +3491548,0.0357862277586778 +3491549,0.07860870659351339 +3491550,0.07860870659351339 +3491551,0.0524084920125388 +3491552,0.1713839954828936 +3491553,0.0742709833678961 +3491554,0.0243834738218653 +3491555,0.0175472755469623 +3491556,0.3059728356958271 +3491557,0.0434203536057109 +3491558,0.0354530423724198 +3491559,0.1060677393589882 +3491560,0.0352330654859542 +3491561,0.0352330654859542 +3491562,0.176165327429771 +3491563,0.0351027922359674 +3491564,0.050285447888494594 +3491565,0.0335573102993046 +3491566,0.017223216344171 +3491567,0.0352865678304449 +3491568,0.1439516995375163 +3491569,0.0358744910987031 +3491570,0.0265972695765743 +3491571,0.07860870659351339 +3491572,0.07862245204438789 +3491573,0.0490787872825903 +3491574,0.0735497722939077 +3491575,0.1312014670317599 +3491576,0.0438124202191829 +3491577,0.0438124202191829 +3491578,0.0435253925859795 +3491579,0.034635742304551 +3491580,0.0349767114384858 +3491581,0.0352330654859542 +3491582,0.0166312041256235 +3491583,0.0332291572772227 +3491584,0.1324841616510439 +3491585,0.0528171489668755 +3491586,0.0262657174463534 +3491587,0.0262029021978378 +3491588,0.0786488316197168 +3491589,0.0772053955422157 +3491590,0.0312156623521885 +3491591,0.0174099855412772 +3491592,0.0418821198069426 +3491593,0.0438124202191829 +3491594,0.0433760041127098 +3491595,0.0419921320146493 +3491596,0.0329527274291937 +3491597,0.0884152041984673 +3491598,0.2212439991372748 +3491599,0.0167040933656898 +3491600,0.0267674702260173 +3491601,0.0915937635340547 +3491602,0.016601904356613 +3491603,0.0527515837405601 +3491604,0.1051033872985989 +3491605,0.2391449945112791 +3491606,0.0262935562828043 +3491607,0.0951688947770474 +3491608,0.0318649514141779 +3491609,0.0665695872699943 +3491610,0.09987297268292619 +3491611,0.0121532489699851 +3491612,0.0128365812647801 +3491613,0.03700838152349 +3491614,0.0456305063788757 +3491615,0.0175598284816611 +3491616,0.0174687334319652 +3491617,0.0384350347055677 +3491618,0.14924869175371158 +3491619,0.035381018408862805 +3491620,0.0257168115193311 +3491621,0.0340804941952228 +3491622,0.0340804941952228 +3491623,0.0319237784555133 +3491624,0.0318485461175441 +3491625,0.0637143984979961 +3491626,0.0333326756954193 +3491627,0.09999802708625789 +3491628,0.0143715048936901 +3491629,0.012928108591855 +3491630,0.0602326065555958 +3491631,0.0456326641142368 +3491632,0.1367171405289867 +3491633,0.0456326641142368 +3491634,0.0174353586672144 +3491635,0.0521645721314474 +3491636,0.0267408803134993 +3491637,0.0713824563967207 +3491638,0.0497091315245246 +3491639,0.0487812323007799 +3491640,0.0353864739962063 +3491641,0.037152973311169596 +3491642,0.0175143776349474 +3491643,0.0340804941952228 +3491644,0.0329867225775824 +3491645,0.0340217085830802 +3491646,0.0318485461175441 +3491647,0.0318622560371837 +3491648,0.0333326756954193 +3491649,0.0333152452202166 +3491650,0.0663448643982231 +3491651,0.013710899322672 +3491652,0.0687863122595241 +3491653,0.1492643520886002 +3491654,0.2274655462289803 +3491655,0.0174455366233418 +3491656,0.0717602300709197 +3491657,0.047732396063149496 +3491658,0.14765039797291668 +3491659,0.1495227966848359 +3491660,0.0526279185436587 +3491661,0.0517927008059777 +3491662,0.0338177702256379 +3491663,0.0340804941952228 +3491664,0.030740737455037 +3491665,0.0313070842193637 +3491666,0.15923357323898568 +3491667,0.09554564685000919 +3491668,0.0636970922350882 +3491669,0.0638324669273067 +3491670,0.0333326756954193 +3491671,0.09999802213782519 +3491672,0.0331550268821694 +3491673,0.013598863966763 +3491674,0.0145171146656199 +3491675,0.0160119359853635 +3491676,0.0273155108167638 +3491677,0.13689799234271038 +3491678,0.0452059103366 +3491679,0.0242398959388315 +3491680,0.0230937459283 +3491681,0.249352678656578 +3491682,0.3477736668905532 +3491683,0.0495868565828392 +3491684,0.052576550882550296 +3491685,0.0525746699834541 +3491686,0.0679553158715634 +3491687,0.0340019231914855 +3491688,0.0288407064195326 +3491689,0.0177301890988121 +3491690,0.0319992189105227 +3491691,0.0316354670269792 +3491692,0.0949997968666037 +3491693,0.09554869045239439 +3491694,0.0999821352110665 +3491695,0.0999814626664213 +3491696,0.0333326756954193 +3491697,0.0332122680205921 +3491698,0.0411917250311336 +3491699,0.062026235397745 +3491700,0.0456326641142368 +3491701,0.0456326641142368 +3491702,0.09045682072960479 +3491703,0.0444066994457027 +3491704,0.0241863995022057 +3491705,0.0719427335983277 +3491706,0.2913326463089102 +3491707,0.0997410714626312 +3491708,0.0175831899283035 +3491709,0.0177042130898982 +3491710,0.024682577660212 +3491711,0.0269975865970739 +3491712,0.0709429949884746 +3491713,0.0954924817896399 +3491714,0.1589402401635329 +3491715,0.0333326756954193 +3491716,0.0333326756954193 +3491717,0.09999802708625789 +3491718,0.0333053194461177 +3491719,0.0176541282749637 +3491720,0.0456326641142368 +3491721,0.13689799234271038 +3491722,0.0444531402067107 +3491723,0.0456326641142368 +3491724,0.0221080682905825 +3491725,0.054530603691716 +3491726,0.102332454570605 +3491727,0.0335792495852159 +3491728,0.0497452782802706 +3491729,0.0890381371233812 +3491730,0.071851997532029 +3491731,0.0487148340352595 +3491732,0.0278861027993101 +3491733,0.0242684013548779 +3491734,0.0525688834209289 +3491735,0.0314537713434276 +3491736,0.0953577256378981 +3491737,0.0307452465127401 +3491738,0.1331536193513682 +3491739,0.0333326756954193 +3491740,0.0333326756954193 +3491741,0.0333326756954193 +3491742,0.0990187222555299 +3491743,0.090540710294356 +3491744,0.0453417544234317 +3491745,0.0456326641142368 +3491746,0.0912653282284736 +3491747,0.0428949016287917 +3491748,0.09091954724714879 +3491749,0.0441262864845606 +3491750,0.022144309301075 +3491751,0.1258621305838917 +3491752,0.0179518330842256 +3491753,0.0204225658640563 +3491754,0.0203916688772801 +3491755,0.1134178762710203 +3491756,0.0374842859373867 +3491757,0.0500747501896692 +3491758,0.0478748733424874 +3491759,0.0278472279127198 +3491760,0.027895155675273 +3491761,0.0241941791027784 +3491762,0.0225882754307038 +3491763,0.0176326151259629 +3491764,0.0175346096205556 +3491765,0.0313893895612001 +3491766,0.0999161961745851 +3491767,0.0333278853967785 +3491768,0.0993577838403323 +3491769,0.0664256929028871 +3491770,0.0998772896631832 +3491771,0.0333326756954193 +3491772,0.22782173816532078 +3491773,0.0456326641142368 +3491774,0.11086414061384439 +3491775,0.0661941059712845 +3491776,0.0180505911924139 +3491777,0.0179291226775914 +3491778,0.0207467645812845 +3491779,0.0203784871846437 +3491780,0.113621747563419 +3491781,0.0377944931387901 +3491782,0.0278349418870516 +3491783,0.0837353854690278 +3491784,0.0699589357242317 +3491785,0.0727130376953144 +3491786,0.0581650556888686 +3491787,0.019394839182496 +3491788,0.0175229553133249 +3491789,0.0310501564238209 +3491790,0.0331161870972424 +3491791,0.2003808820162345 +3491792,0.0457663919705131 +3491793,0.045489714400765 +3491794,0.13640051616230708 +3491795,0.0885436311364172 +3491796,0.0221359077841043 +3491797,0.0180088082006209 +3491798,0.10192471840018599 +3491799,0.0203846687742666 +3491800,0.1131124726071079 +3491801,0.0377014764560032 +3491802,0.0277743798230151 +3491803,0.1393486917959638 +3491804,0.0241800730521864 +3491805,0.048256538824065706 +3491806,0.0387534713381346 +3491807,0.019394839182496 +3491808,0.0782428934975507 +3491809,0.0720118234223096 +3491810,0.0555653058705826 +3491811,0.0893552764464586 +3491812,0.045013867926494 +3491813,0.0443328568487744 +3491814,0.044178407101432296 +3491815,0.0221359077841043 +3491816,0.0441052418099393 +3491817,0.0815413053470556 +3491818,0.10632820413147381 +3491819,0.0466411485363573 +3491820,0.0365525539447628 +3491821,0.0279006453808788 +3491822,0.083800560603897 +3491823,0.0240654458975773 +3491824,0.0725725986709256 +3491825,0.0193883379356838 +3491826,0.0582193853074111 +3491827,0.019394839182496 +3491828,0.0174634549385919 +3491829,0.0490895114772785 +3491830,0.3496464182488545 +3491831,0.0570391408648985 +3491832,0.0216851507438297 +3491833,0.0212997475469553 +3491834,0.1274008407122849 +3491835,0.025599656693401 +3491836,0.022019978052005 +3491837,0.0204368791064917 +3491838,0.0213745869440584 +3491839,0.0241740476340055 +3491840,0.0242621872689504 +3491841,0.0243700130925129 +3491842,0.0970277768367657 +3491843,0.058571454244324195 +3491844,0.0180890389667729 +3491845,0.0326543860137462 +3491846,0.0586362928152084 +3491847,0.0586362928152084 +3491848,0.041775155090746 +3491849,0.0208625479779198 +3491850,0.0634427758773056 +3491851,0.0634261640465009 +3491852,0.1273552549450307 +3491853,0.025352163538579 +3491854,0.0255178846056957 +3491855,0.0220151718453633 +3491856,0.0220031892694862 +3491857,0.0186308463676744 +3491858,0.0173903342045079 +3491859,0.0213337149342033 +3491860,0.0722740976693862 +3491861,0.0723552939259828 +3491862,0.0194451203749288 +3491863,0.0194343053288159 +3491864,0.1000478647116329 +3491865,0.0386664686227495 +3491866,0.0175119762328054 +3491867,0.0331992366634837 +3491868,0.0492497790018966 +3491869,0.1172575477336785 +3491870,0.1758422114186022 +3491871,0.0586362928152084 +3491872,0.0585564972589974 +3491873,0.1460722379349884 +3491874,0.020862679937868 +3491875,0.0211458661746879 +3491876,0.1057514829068667 +3491877,0.0736394044118342 +3491878,0.0211864021471959 +3491879,0.0220164014425704 +3491880,0.0181972598921339 +3491881,0.0544888242773868 +3491882,0.0169652765181155 +3491883,0.0169211115546595 +3491884,0.021908165387123 +3491885,0.026818131271915 +3491886,0.0200408996898983 +3491887,0.0956863805344791 +3491888,0.0191969521347538 +3491889,0.0180111219428245 +3491890,0.0586362928152084 +3491891,0.11316516135242269 +3491892,0.0586362928152084 +3491893,0.1759088784456252 +3491894,0.0626165723646195 +3491895,0.0211504772305488 +3491896,0.0634134100197084 +3491897,0.1697779279547045 +3491898,0.0188875748071037 +3491899,0.0197862625537099 +3491900,0.0198038072392307 +3491901,0.0181884824081399 +3491902,0.0180617973939458 +3491903,0.0846095738074452 +3491904,0.0169454106624644 +3491905,0.0212255803400484 +3491906,0.06409134162725601 +3491907,0.054683112221795796 +3491908,0.0274544077429393 +3491909,0.0960733184656183 +3491910,0.0190598903791371 +3491911,0.293181464076042 +3491912,0.1756331846003761 +3491913,0.0579832465207888 +3491914,0.0211504772305488 +3491915,0.0211435079943474 +3491916,0.0211478412425438 +3491917,0.0556950294484329 +3491918,0.037496546974112796 +3491919,0.059391492342209404 +3491920,0.059354231435760296 +3491921,0.0200069774534392 +3491922,0.0174914688119081 +3491923,0.0169153416810717 +3491924,0.0505818426538477 +3491925,0.0169275001239044 +3491926,0.0211987507464866 +3491927,0.0424861667869785 +3491928,0.054953585504114597 +3491929,0.0276011167663896 +3491930,0.0186117036832232 +3491931,0.0573910581024276 +3491932,0.0586362928152084 +3491933,0.0586362928152084 +3491934,0.0586249866118808 +3491935,0.0211504772305488 +3491936,0.0211504772305488 +3491937,0.0211354834114515 +3491938,0.0085821250211917 +3491939,0.0482037582483122 +3491940,0.098226682453684 +3491941,0.0593459002262184 +3491942,0.0168943501877353 +3491943,0.0329423261501915 +3491944,0.065919519472579 +3491945,0.0169312264326437 +3491946,0.0826760589884547 +3491947,0.13804973052110558 +3491948,0.0563363416177829 +3491949,0.17542842889984228 +3491950,0.0581105408216029 +3491951,0.1758043926871357 +3491952,0.063293306077707 +3491953,0.0211520801045643 +3491954,0.0211504772305488 +3491955,0.06344957504068979 +3491956,0.0165216643363236 +3491957,0.025099525963973197 +3491958,0.0759496201631007 +3491959,0.0189953446388244 +3491960,0.048322060970376196 +3491961,0.0147700615946589 +3491962,0.0196084622510732 +3491963,0.039498072135943 +3491964,0.027613228683023 +3491965,0.0276327559541346 +3491966,0.0203671534048067 +3491967,0.0454444899735649 +3491968,0.0575426413253049 +3491969,0.1154267061637847 +3491970,0.0582350737408554 +3491971,0.0211362979485531 +3491972,0.0211254633482229 +3491973,0.0416881198183637 +3491974,0.0211172032394343 +3491975,0.0248194704874187 +3491976,0.041310622659275695 +3491977,0.009483847122439 +3491978,0.028691959398260802 +3491979,0.0284930169582366 +3491980,0.0284930169582366 +3491981,0.0478534579839059 +3491982,0.0161033174190169 +3491983,0.0139505537226796 +3491984,0.0143192929435781 +3491985,0.0196098261995555 +3491986,0.0579261893403171 +3491987,0.0205862248820867 +3491988,0.0492403469979763 +3491989,0.0461565862209139 +3491990,0.0612769073166484 +3491991,0.0211504772305488 +3491992,0.0414802328472186 +3491993,0.032673045231012804 +3491994,0.0329982840540847 +3491995,0.0479387603188818 +3491996,0.0159491633684117 +3491997,0.0139600495199116 +3491998,0.041851661168038796 +3491999,0.06975276861339799 +3492000,0.028015055992014398 +3492001,0.0193126908837867 +3492002,0.0201093410083068 +3492003,0.2016948503968135 +3492004,0.2454437311117732 +3492005,0.1985816709063431 +3492006,0.0472563837893998 +3492007,0.1113512270020731 +3492008,0.0279011074453592 +3492009,0.0558022148907184 +3492010,0.0558022148907184 +3492011,0.09373312507067019 +3492012,0.0139411581233245 +3492013,0.0138958654937902 +3492014,0.0195650369240839 +3492015,0.0780010604098287 +3492016,0.0207331919348935 +3492017,0.0137982207925601 +3492018,0.0685276599558978 +3492019,0.0245573780469224 +3492020,0.055361275738905896 +3492021,0.2457504048943518 +3492022,0.0813046033993534 +3492023,0.0183390602769869 +3492024,0.053665646900955 +3492025,0.0691394960387681 +3492026,0.013898412027812 +3492027,0.025405498003085503 +3492028,0.018328241911058703 +3492029,0.0819168016314506 +3492030,0.0755883113636654 +3492031,0.0799941812440745 +3492032,0.0179013897369876 +3492033,0.0179395163128241 +3492034,0.0265109554481955 +3492035,0.026543321319118303 +3492036,0.0819237597934313 +3492037,0.0814593275510019 +3492038,0.12768370137809248 +3492039,0.23981140935990058 +3492040,0.0179991331600731 +3492041,0.0180664656612555 +3492042,0.1638728353245809 +3492043,0.2438055894255283 +3492044,0.0246219407924634 +3492045,0.0748692115312181 +3492046,0.0768274108802331 +3492047,0.0814476680654232 +3492048,0.0809451670726176 +3492049,0.09829616885593209 +3492050,0.0242539265536456 +3492051,0.0617104849736037 +3492052,0.0118382764041846 +3492053,0.8399677276611319 +3492054,0.3342652729997317 +3492055,0.07364005344156979 +3492056,0.0738324031588455 +3492057,0.0118382638320326 +3492058,0.0118770643308012 +3492059,0.0120847637564463 +3492060,0.4924607078040906 +3492061,0.3300310379726352 +3492062,0.0838143741878629 +3492063,0.0246642958372831 +3492064,0.0244633032596335 +3492065,0.0118543073898244 +3492066,0.035558696636233 +3492067,0.0990126016323393 +3492068,0.0696093738079071 +3492069,0.0244226169683698 +3492070,0.023731102788260898 +3492071,0.0119050614292719 +3492072,0.0937263322612795 +3492073,0.0147283432377737 +3492074,0.4861203559488963 +3492075,0.2794822747241452 +3492076,0.0129977017488916 +3492077,0.050528053216549795 +3492078,0.4176562428474426 +3492079,0.2074580903073595 +3492080,0.0126364827156066 +3492081,0.0126364827156066 +3492082,0.0126224661018885 +3492083,0.2784374952316284 +3492084,0.69546949699826 +3492085,0.0691494402883732 +3492086,0.0133226070463279 +3492087,0.0126364827156066 +3492088,0.0252691033679929 +3492089,0.0504457322930258 +3492090,0.0634732683029816 +3492091,0.3460098480766805 +3492092,0.0379094481468198 +3492093,0.0406729534367447 +3492094,0.1137024315532902 +3492095,0.0251666010398944 +3492096,0.0447626534303108 +3492097,0.07968183421222019 +3492098,0.1353900939318772 +3492099,0.0696093738079071 +3492100,0.0126235140565236 +3492101,0.11356568599186909 +3492102,0.0630220852445201 +3492103,0.0632790252566337 +3492104,0.126677762272687 +3492105,0.08366296663879841 +3492106,0.0785194057971237 +3492107,0.1071596606442619 +3492108,0.06313592715449 +3492109,0.0126364827156066 +3492110,0.7534421752314423 +3492111,0.1896004346753679 +3492112,0.1849219214110435 +3492113,0.0261731352657079 +3492114,0.0126364827156066 +3492115,0.0505459308624264 +3492116,0.0252729654312132 +3492117,0.0379094481468198 +3492118,0.0649326052844926 +3492119,0.0630432768484106 +3492120,0.0270614714474277 +3492121,0.0785394870938954 +3492122,0.0788423169878147 +3492123,0.0505459308624264 +3492124,0.0126364827156066 +3492125,0.0126364827156066 +3492126,0.0126364827156066 +3492127,0.0252729654312132 +3492128,0.0252596383131307 +3492129,0.0588024742007797 +3492130,0.0629765620187437 +3492131,0.0129409050719187 +3492132,0.0383460784002189 +3492133,0.0376932404701002 +3492134,0.0252623939384188 +3492135,0.0387200954052695 +3492136,0.0126535769884359 +3492137,0.025413779459630997 +3492138,0.1885575890664463 +3492139,0.0617435548088437 +3492140,0.0628915747749381 +3492141,0.43970962811349057 +3492142,0.0125252969136967 +3492143,0.0756885035408162 +3492144,0.2672944315243 +3492145,0.0243274691700684 +3492146,0.0438764957911669 +3492147,0.0612376956801496 +3492148,0.0625984588919825 +3492149,0.0544528514146804 +3492150,0.2163462760039745 +3492151,0.0323534987249638 +3492152,0.039556493001719095 +3492153,0.0524716847190341 +3492154,0.0089170472065426 +3492155,0.0544528514146804 +3492156,0.0544528514146804 +3492157,0.0108981355414369 +3492158,0.0511533974937841 +3492159,0.0101758850100543 +3492160,0.0789722279859667 +3492161,0.1054988562177612 +3492162,0.053994399179809 +3492163,0.16338643911484768 +3492164,0.1633585542440412 +3492165,0.0219491402266094 +3492166,0.10186707715630129 +3492167,0.0087629753897777 +3492168,0.0291029971168652 +3492169,0.2722355447194147 +3492170,0.2724011507599858 +3492171,0.16291241212777008 +3492172,0.0544528514146804 +3492173,0.0110909818641814 +3492174,0.0527063522058115 +3492175,0.1064914962296742 +3492176,0.0544528514146804 +3492177,0.1633237714685894 +3492178,0.0544528514146804 +3492179,0.27226425707340196 +3492180,0.0544528514146804 +3492181,0.2178114056587216 +3492182,0.380991952239424 +3492183,0.3267171084880824 +3492184,0.1621382466316889 +3492185,0.0544528514146804 +3492186,0.0544528514146804 +3492187,0.16193276539862028 +3492188,0.0544528514146804 +3492189,0.1631971312359513 +3492190,0.2178114056587216 +3492191,0.0544528514146804 +3492192,0.0544528514146804 +3492193,0.2688950799242567 +3492194,0.2151750977224896 +3492195,0.0544528514146804 +3492196,0.16323087606221048 +3492197,0.1089057028293608 +3492198,0.0510663654549312 +3492199,0.1633143680931265 +3492200,0.1633585542440412 +3492201,0.27226425707340196 +3492202,0.5965201111039182 +3492203,0.1616988017814259 +3492204,0.0539742654202293 +3492205,0.0868639197466111 +3492206,0.1272698683504824 +3492207,0.0625458969635842 +3492208,0.0209404323250055 +3492209,0.0726243293316187 +3492210,0.1215851964451063 +3492211,0.0634612681834689 +3492212,0.06300209472267859 +3492213,0.0243745818734169 +3492214,0.0241569880964751 +3492215,0.0641786873716399 +3492216,0.0211377052531893 +3492217,0.0243745818734169 +3492218,0.0729632924742547 +3492219,0.1488162770407741 +3492220,0.0211600477022314 +3492221,0.0419547051800482 +3492222,0.1216810973990878 +3492223,0.0731237456202507 +3492224,0.11929138440596801 +3492225,0.0254694234034651 +3492226,0.0244761116071329 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001140900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001140900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001140900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001141900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001141900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001141900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001142000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001142000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001142000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001142100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001142100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001142100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001142200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001142200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001142200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001142300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001142300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..5d050afaf --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001142300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0502694437076344 +3490292,0.0869869964868862 +3490293,0.0120332995429635 +3490316,0.024066599085927 +3490317,0.060166497714817496 +3490332,0.0360998986288905 +3490333,0.0377054299772352 +3490334,0.0737740926481569 +3490335,0.0120332995429635 +3490348,0.0133794219180658 +3490349,0.0175719223558959 +3490350,0.0120332995429635 +3490351,0.0360998986288905 +3490374,0.0417735045887474 +3490375,0.1207998351453666 +3490376,0.0849679796288322 +3490377,0.0251293969161612 +3490378,0.024066599085927 +3490379,0.1089166044363487 +3490396,0.0199338274621483 +3490397,0.040170568972826 +3490398,0.0361083956147322 +3490399,0.024066599085927 +3490418,0.0730353926067026 +3490419,0.0120332995429635 +3490437,0.012075661935357 +3490438,0.0607758758645032 +3490439,0.0301689863898933 +3490440,0.0120334264834978 +3490457,0.0602603176882911 +3490458,0.06075725566217009 +3490459,0.024066599085927 +3490460,0.0661960028775969 +3490476,0.024010362457330597 +3490477,0.0358583027882667 +3490478,0.0156820025295018 +3490479,0.0156820025295018 +3490499,0.0846008476939315 +3490500,0.0078410012647509 +3490517,0.0211473198071196 +3490518,0.0335992042170911 +3490519,0.0313640050590036 +3490520,0.0392050063237545 +3490544,0.0078410012647509 +3490545,0.0078710968358878 +3490546,0.0156820025295018 +3490547,0.0078703300048189 +3490573,0.0234486238162488 +3490574,0.0078410012647509 +3490575,0.0082836490639611 +3490576,0.0154327231552122 +3490597,0.0219778069565521 +3490598,0.020758232900306 +3490599,0.0082161014181472 +3490600,0.0272521835483438 +3490601,0.013678453082856201 +3490602,0.0138300814726655 +3490603,0.0221161625222317 +3490604,0.0217406608791349 +3490623,0.0068343845196068 +3490624,0.0136687690392136 +3490625,0.0184217763322735 +3490626,0.0691100025918379 +3490639,0.0068343845196068 +3490640,0.0273375380784272 +3490641,0.0145651554283252 +3490642,0.054937868824129404 +3490643,0.0925855535437569 +3490644,0.0231246873736381 +3490645,0.0230413933777611 +3490658,0.0136687690392136 +3490659,0.0068343845196068 +3490660,0.1294604028796761 +3490661,0.055710729563643396 +3490662,0.1611693828347512 +3490663,0.0231246873736381 +3490664,0.0229917967240503 +3490665,0.0691894593968875 +3490681,0.0348047247876029 +3490682,0.0068343845196068 +3490683,0.0068343845196068 +3490684,0.0136687690392136 +3490685,0.0180448935381186 +3490686,0.0185466263972517 +3490687,0.0231915187521354 +3490688,0.0231704223842001 +3490689,0.0230862393434173 +3490690,0.0231246873736381 +3490707,0.0136687690392136 +3490708,0.0068343845196068 +3490709,0.0072207234126741 +3490710,0.0068343845196068 +3490725,0.0068164844817048 +3490726,0.0068343845196068 +3490727,0.0205031535588204 +3490728,0.0275132697749989 +3490736,0.0479655177921747 +3490737,0.034607611909133404 +3490738,0.132333078222977 +3490739,0.039322175159481304 +3490747,0.3689667752376233 +3490748,0.0108400000730472 +3490757,0.0243808602764787 +3490758,0.020220640954866 +3490771,0.0182619346964218 +3490772,0.006121963419225 +3490773,0.0071061379660565 +3490774,0.0122036680446733 +3490787,0.0120576284770086 +3490788,0.007483246865524 +3490789,0.0549921767702628 +3490790,0.0827086368832871 +3490805,0.0060034383835518 +3490806,0.018778812799621902 +3490807,0.0119189927354454 +3490808,0.0310059151549505 +3490809,0.0120674768354771 +3490810,0.0122796594958539 +3490827,0.0060603839198475 +3490828,0.0062565314983163 +3490842,0.0182000820414841 +3490843,0.0060649593360722 +3490844,0.0061800374247091 +3490845,0.0188412999969523 +3490856,0.0060649593360722 +3490857,0.0066258438967209 +3490858,0.0060649593360722 +3490859,0.0185703095957434 +3490860,0.0062919803895056 +3490861,0.0314436760239865 +3490875,0.0060649593360722 +3490876,0.0060649593360722 +3490877,0.0196518045137877 +3490878,0.0067115226533292 +3490879,0.0125839607790112 +3490892,0.018194878008216602 +3490893,0.018194878008216602 +3490894,0.0062919803895056 +3490895,0.0074105889837807 +3490900,0.0060617573715613 +3490901,0.0058802586325115 +3490902,0.0186646738917338 +3490903,0.0181973375864584 +3490904,0.0280961346461819 +3490905,0.0204380030349606 +3490906,0.0228076757011418 +3490907,0.0911858521097148 +3490916,0.0182350252928226 +3490917,0.006127736454392 +3490918,0.0060585072973182 +3490919,0.0060682449025797 +3490920,0.0062789148618255 +3490921,0.0148934005881155 +3490922,0.0194155265174078 +3490923,0.1953092736558208 +3490924,0.0085077685692753 +3490925,0.0617712114355429 +3490926,0.16690916234138198 +3490935,0.0058105165996699 +3490936,0.0070949886792974 +3490937,0.0295769713073146 +3490938,0.0283632545928594 +3490939,0.0233454183409601 +3490940,0.0230300035979729 +3490941,0.0188941915624462 +3490942,0.018662098197671 +3490953,0.0060203870960478 +3490954,0.0060674209884465 +3490955,0.0063206288765174 +3490956,0.0101817154520515 +3490957,0.0228186702784172 +3490958,0.0212563944106428 +3490959,0.0230737770907578 +3490960,0.0230502604259203 +3490966,0.0170473325997591 +3490967,0.0056824441999197 +3490968,0.0155850989869425 +3490969,0.0182547484544888 +3490970,0.1583767465457703 +3490971,0.0222861206786153 +3490972,0.0815862249135261 +3490973,0.0204082923373482 +3490974,0.0076912590302526 +3490975,0.023197060829326897 +3490980,0.0170992651675529 +3490981,0.0056983696093444 +3490982,0.0057313177076049 +3490983,0.0411316662520655 +3490984,0.0906215497958863 +3490985,0.2017243818996678 +3490986,0.0225503513873444 +3490987,0.0676853987244825 +3490988,0.0670816977609156 +3490989,0.0205871966417205 +3490990,0.0611816934743339 +3490991,0.0203556876706264 +3490992,0.0076912590302526 +3490993,0.0076912590302526 +3490994,0.0272365813719499 +3490995,0.0076912590302526 +3490999,0.0056979940571506 +3491000,0.0057529221475553 +3491001,0.0187626411588982 +3491002,0.0179436381058041 +3491003,0.0183929776944947 +3491004,0.0184216617227848 +3491005,0.0676963416035924 +3491006,0.1124022556786224 +3491007,0.025218516965789 +3491008,0.027951847357874 +3491009,0.0386248571340335 +3491010,0.0229701964850948 +3491013,0.011451322537121 +3491014,0.0149490699472059 +3491015,0.067657468603188 +3491016,0.0676473172095174 +3491017,0.2044600820885416 +3491018,0.0231694432898687 +3491019,0.041268138043007496 +3491020,0.0076912590302526 +3491021,0.0118301277980208 +3491022,0.0095269396847492 +3491023,0.016125484807757 +3491024,0.007554761363835 +3491025,0.0703399288405335 +3491026,0.023150771820261 +3491027,0.0337614009848492 +3491028,0.0394613911788979 +3491029,0.0059150638990104 +3491030,0.0308150908013534 +3491031,0.0340854689012159 +3491032,0.031547769053345796 +3491033,0.022818993939285 +3491034,0.0162875261157751 +3491035,0.0160946006302573 +3491036,0.0241783223325548 +3491037,0.0231519732624292 +3491038,0.0405860484440559 +3491039,0.2418782948814821 +3491040,0.0059150638990104 +3491041,0.0177451916970312 +3491042,0.0231824647635221 +3491043,0.0220474444659585 +3491044,0.0160061975041248 +3491045,0.0809461763472975 +3491046,0.0231519732624292 +3491047,0.0231407398696889 +3491048,0.040105990589215 +3491049,0.0400103889405727 +3491050,0.1470113966337813 +3491051,0.048993017722625 +3491052,0.0059150638990104 +3491053,0.0301255535184799 +3491054,0.0694185485210264 +3491055,0.0689537458661292 +3491056,0.0160733934953393 +3491057,0.1131860139473396 +3491058,0.0231519732624292 +3491059,0.0710284568737784 +3491060,0.20022782330343888 +3491061,0.0400103889405727 +3491062,0.1196253298917907 +3491063,0.1989321166021357 +3491064,0.0489678299968439 +3491065,0.2451607182541047 +3491066,0.0177451916970312 +3491067,0.0059150638990104 +3491068,0.0082519011272997 +3491069,0.0060712088332223 +3491070,0.0174313952346292 +3491071,0.0462519795832632 +3491072,0.1627817056838157 +3491073,0.06944964849257179 +3491074,0.0400103889405727 +3491075,0.3593062637892069 +3491076,0.14692652665121692 +3491077,0.049002770505078 +3491078,0.0591837732392812 +3491079,0.0242342092388322 +3491080,0.0184979720281582 +3491081,0.0060082148071786 +3491082,0.0219970875928651 +3491083,0.0231125285116331 +3491084,0.0231519732624292 +3491085,0.0231519732624292 +3491086,0.12044489818635369 +3491087,0.1201359480584764 +3491088,0.0747040578466796 +3491089,0.11905610811753381 +3491090,0.0464700363616119 +3491091,0.0483508012515133 +3491092,0.0181383682429945 +3491093,0.0062726367856271 +3491094,0.0694559197872876 +3491095,0.11573662161100079 +3491096,0.1193527705646131 +3491097,0.039767748017338 +3491098,0.1523040397653271 +3491099,0.0334068472838287 +3491100,0.0476223391602666 +3491101,0.030341069205304 +3491102,0.08135825774558919 +3491103,0.1156797760334358 +3491104,0.11576469332448219 +3491105,0.0820646142197101 +3491106,0.1706119309575133 +3491107,0.1458040708315918 +3491108,0.087377322827796 +3491109,0.1156830668357089 +3491110,0.0529134570981891 +3491111,0.0492338863194332 +3491112,0.0059323026798665 +3491113,0.13522003600353422 +3491114,0.0957210613819538 +3491115,0.160850410165772 +3491116,0.1155652247731379 +3491117,0.02710292829413 +3491118,0.13388056098333 +3491119,0.2130153466934828 +3491120,0.1065536724235044 +3491121,0.0872090652073385 +3491122,0.0308870002522553 +3491123,0.0518437868331006 +3491124,0.06679981691416059 +3491125,0.018229905524524102 +3491126,0.1633021912865195 +3491127,0.0062923000516593 +3491128,0.0438782712477051 +3491129,0.0191321850099044 +3491130,0.019232977181673 +3491131,0.040378727628163 +3491132,0.0589374512380288 +3491133,0.02674943767488 +3491134,0.0267557177652572 +3491135,0.0355582982301712 +3491136,0.3906903875837352 +3491137,0.2619062999175311 +3491138,0.1607590845918732 +3491139,0.190715220181309 +3491140,0.0170138283803505 +3491141,0.179460532425792 +3491142,0.0059789131813472 +3491143,0.00741839600924 +3491144,0.059466777256993605 +3491145,0.019232977181673 +3491146,0.10738263722409791 +3491147,0.0267593445274307 +3491148,0.0355582982301712 +3491149,0.0290846303105354 +3491150,0.0290684367595618 +3491151,0.0540028961393847 +3491152,0.0533435334054147 +3491153,0.0170897841453552 +3491154,0.0523203177648811 +3491155,0.1058510036663606 +3491156,0.181067193563542 +3491157,0.1070850119172232 +3491158,0.1063027274575882 +3491159,0.0541334611390355 +3491160,0.0803506017909568 +3491161,0.1422331929206848 +3491162,0.0355582982301712 +3491163,0.08739591455171469 +3491164,0.0879208753295409 +3491165,0.1616870567383237 +3491166,0.0534732987381862 +3491167,0.0521496116391475 +3491168,0.051300237620766104 +3491169,0.1063745649051467 +3491170,0.0177297182381153 +3491171,0.2184548213348986 +3491172,0.0522082413287113 +3491173,0.0364606700015812 +3491174,0.0365473265656055 +3491175,0.0270205663341889 +3491176,0.10617561707091419 +3491177,0.034560159892618 +3491178,0.0355582982301712 +3491179,0.10667489469051358 +3491180,0.0293462028909273 +3491181,0.2155662920992802 +3491182,0.1616161259787563 +3491183,0.1209851049599956 +3491184,0.15414917255941551 +3491185,0.0177630852024597 +3491186,0.0183069213861526 +3491187,0.0709188729524612 +3491188,0.1082823545607077 +3491189,0.5471317291207269 +3491190,0.16314978955478598 +3491191,0.0125887508539959 +3491192,0.0369566067131894 +3491193,0.0355582982301712 +3491194,0.0355582982301712 +3491195,0.0473712363534536 +3491196,0.4831146188661592 +3491197,0.1226937099557748 +3491198,0.13682365579870082 +3491199,0.0894097811194276 +3491200,0.0743515796279845 +3491201,0.2728106714072176 +3491202,0.1094498857855796 +3491203,0.0142627259080807 +3491204,0.061052221789195296 +3491205,0.10167896066353779 +3491206,0.0355582982301712 +3491207,0.14208392998247837 +3491208,0.0708889462271734 +3491209,0.0372298897306769 +3491210,0.0297323683191125 +3491211,0.10129577327625139 +3491212,0.0351826567222768 +3491213,0.3801885090509725 +3491214,0.1638885156671701 +3491215,0.0547249428927898 +3491216,0.0547249428927898 +3491217,0.0608661725642254 +3491218,0.0620955347014363 +3491219,0.0695712020192236 +3491220,0.24890808761119837 +3491221,0.17483330881977419 +3491222,0.1422331929206848 +3491223,0.0369086721151788 +3491224,0.037137853074191 +3491225,0.2723250836764244 +3491226,0.0505543443946021 +3491227,0.0345607213675975 +3491228,0.0692973170935561 +3491229,0.06882542733937161 +3491230,0.0343151769621558 +3491231,0.1641748286783694 +3491232,0.0544049021322595 +3491233,0.0258407005983981 +3491234,0.0250632571189296 +3491235,0.39048822818963047 +3491236,0.0355486812176343 +3491237,0.0637929036359754 +3491238,0.035506846968447 +3491239,0.0373823784787457 +3491240,0.0369429046727775 +3491241,0.031734990165985 +3491242,0.0348162391784392 +3491243,0.0164023470133543 +3491244,0.0164897128892784 +3491245,0.1032041719401281 +3491246,0.17280360683798748 +3491247,0.058918389384888 +3491248,0.0112560791894793 +3491249,0.0547249428927898 +3491250,0.0547249428927898 +3491251,0.012357187223838 +3491252,0.1764110465805222 +3491253,0.0355582982301712 +3491254,0.0355430018309626 +3491255,0.11090771352561919 +3491256,0.0739079490303992 +3491257,0.10783634573758841 +3491258,0.073165869810664 +3491259,0.0251690450450393 +3491260,0.0249182132917126 +3491261,0.1062738167269609 +3491262,0.10710753550420621 +3491263,0.0164023470133543 +3491264,0.0328280009287197 +3491265,0.13824288547039 +3491266,0.1032866893915516 +3491267,0.0345607213675975 +3491268,0.0348102675323062 +3491269,0.0806510893573235 +3491270,0.0564460623369981 +3491271,0.1628839792936255 +3491272,0.0547249428927898 +3491273,0.3283496573567388 +3491274,0.3809465859601809 +3491275,0.1758949073984385 +3491276,0.140128381762816 +3491277,0.0369539745151996 +3491278,0.0295149811450364 +3491279,0.0239061859663202 +3491280,0.0237254399161904 +3491281,0.0239667519967086 +3491282,0.0233181180112099 +3491283,0.09383815658940531 +3491284,0.10710635373349889 +3491285,0.1071027141594798 +3491286,0.0496345004340224 +3491287,0.049748031371398105 +3491288,0.0345607213675975 +3491289,0.069101227864015 +3491290,0.0832777507303124 +3491291,0.0254660475653289 +3491292,0.2182434770648414 +3491293,0.0543411805554151 +3491294,0.052152330193098 +3491295,0.1066532509436067 +3491296,0.24829023366574637 +3491297,0.2428968459306805 +3491298,0.1106661165923494 +3491299,0.0243769270202101 +3491300,0.0303573642595367 +3491301,0.0237423291757087 +3491302,0.0710718206480967 +3491303,0.0731758926192217 +3491304,0.0247477813906579 +3491305,0.0233172643202 +3491306,0.1165186145908042 +3491307,0.0323371135563423 +3491308,0.0357094864918573 +3491309,0.1071151596801699 +3491310,0.033361954267066396 +3491311,0.13824288547039 +3491312,0.0345607213675975 +3491313,0.0421217869175601 +3491314,0.0599558628506455 +3491315,0.0349142639224392 +3491316,0.10667489469051358 +3491317,0.0355582982301712 +3491318,0.0487423400409613 +3491319,0.0243300078958626 +3491320,0.0243071271493551 +3491321,0.024320924654603 +3491322,0.0534302187704561 +3491323,0.152127295831987 +3491324,0.0475818324089243 +3491325,0.0237360975653395 +3491326,0.0284936830695848 +3491327,0.0309945613365099 +3491328,0.0932480586413888 +3491329,0.02330251224339 +3491330,0.0267298286902217 +3491331,0.034090441653771 +3491332,0.10368216410279249 +3491333,0.0345607213675975 +3491334,0.3801679350435725 +3491335,0.1379714216162262 +3491336,0.0382543367821806 +3491337,0.0388668783699199 +3491338,0.0869372164580289 +3491339,0.0496252344710162 +3491340,0.0355582982301712 +3491341,0.10667489469051358 +3491342,0.024320924654603 +3491343,0.12160462327301501 +3491344,0.0306052391727864 +3491345,0.0305918192451127 +3491346,0.0855117766364687 +3491347,0.08591316934431009 +3491348,0.0314977288480745 +3491349,0.09466011822223651 +3491350,0.0699783703719558 +3491351,0.06990753673017 +3491352,0.1673700647669143 +3491353,0.024186296104064 +3491354,0.0322527056409167 +3491355,0.0644857145406897 +3491356,0.10350962969372729 +3491357,0.10052229241875318 +3491358,0.0336742342404517 +3491359,0.0345607213675975 +3491360,0.48364682963401845 +3491361,0.10368216410279249 +3491362,0.0263924626354562 +3491363,0.0278706803219934 +3491364,0.0262623109296698 +3491365,0.0267347073996572 +3491366,0.018232708116362 +3491367,0.0145415202385273 +3491368,0.0119745855760701 +3491369,0.1422207494532019 +3491370,0.0355582982301712 +3491371,0.10667479982381389 +3491372,0.07096337755300469 +3491373,0.0485995070235086 +3491374,0.024320924654603 +3491375,0.024320924654603 +3491376,0.048662819227768106 +3491377,0.0305686090141534 +3491378,0.0635351926012386 +3491379,0.0284885231598472 +3491380,0.0285657259161423 +3491381,0.0314700884820201 +3491382,0.0315533727407455 +3491383,0.0315533727407455 +3491384,0.0310968047209767 +3491385,0.0233192497679928 +3491386,0.093211151708403 +3491387,0.0477784396347898 +3491388,0.0717151838495973 +3491389,0.0321802806037344 +3491390,0.12484686677922222 +3491391,0.0322715296186843 +3491392,0.1034058563509901 +3491393,0.3801679350435725 +3491394,0.0119885369038691 +3491395,0.1165601514686993 +3491396,0.0347922043874859 +3491397,0.0117081072959579 +3491398,0.0355582982301712 +3491399,0.17777685932349369 +3491400,0.024268629605625 +3491401,0.024320924654603 +3491402,0.048819752208566394 +3491403,0.0244536494415976 +3491404,0.0235426691911256 +3491405,0.1027120096092123 +3491406,0.07848730174478989 +3491407,0.0156887825578451 +3491408,0.0285131256193902 +3491409,0.0285943551018187 +3491410,0.0285111944712919 +3491411,0.0317234876285789 +3491412,0.0315533727407455 +3491413,0.0631864835227567 +3491414,0.0635717647897889 +3491415,0.0315533727407455 +3491416,0.1576610815389789 +3491417,0.0466825874638116 +3491418,0.1633188224708207 +3491419,0.0239083387064161 +3491420,0.0258798753595271 +3491421,0.0613572551680351 +3491422,0.16698172718368728 +3491423,0.24122440933288547 +3491424,0.069121442735195 +3491425,0.0934064155245085 +3491426,0.0128177437397457 +3491427,0.0356187412619886 +3491428,0.0115974014624953 +3491429,0.10667489469051358 +3491430,0.10667489469051358 +3491431,0.0352712061115461 +3491432,0.0243161906512921 +3491433,0.024320924654603 +3491434,0.024320924654603 +3491435,0.024320924654603 +3491436,0.0209550354629755 +3491437,0.06286510638892649 +3491438,0.04706634767353529 +3491439,0.0158293623099508 +3491440,0.0566412309188772 +3491441,0.0570751285041651 +3491442,0.0282718396925766 +3491443,0.0307184427197003 +3491444,0.0468614157067736 +3491445,0.0233335743656001 +3491446,0.0241918175348944 +3491447,0.08531879674348761 +3491448,0.0283571423730261 +3491449,0.0764054508809291 +3491450,0.0254060700535774 +3491451,0.13824288547039 +3491452,0.0344516707997494 +3491453,0.0345607213675975 +3491454,0.1038258947768686 +3491455,0.0384862422943115 +3491456,0.19222452653031702 +3491457,0.0120895311506927 +3491458,0.0347696894729347 +3491459,0.046578992222379795 +3491460,0.0145707372930233 +3491461,0.036204157339528795 +3491462,0.0118085897267752 +3491463,0.07086287488891649 +3491464,0.035119263740413 +3491465,0.10667489469051358 +3491466,0.0355582982301712 +3491467,0.023806463639118 +3491468,0.024320924654603 +3491469,0.024320924654603 +3491470,0.1705431864821275 +3491471,0.0243773312985559 +3491472,0.0208120214140687 +3491473,0.1053499582554862 +3491474,0.0156887825578451 +3491475,0.047304535925663 +3491476,0.0165696519750006 +3491477,0.0742027814214562 +3491478,0.0282524411315252 +3491479,0.0854348909310346 +3491480,0.0569492895694822 +3491481,0.0254375587532338 +3491482,0.0762182101607322 +3491483,0.13824288547039 +3491484,0.0298950503500202 +3491485,0.0346533255586097 +3491486,0.1099051021890806 +3491487,0.1148933390269876 +3491488,0.1915438140724795 +3491489,0.0384862422943115 +3491490,0.011554860509932 +3491491,0.0231119300960913 +3491492,0.0332973307417372 +3491493,0.0353110837725502 +3491494,0.0355582982301712 +3491495,0.0711165964603424 +3491496,0.0725889489215603 +3491497,0.024320924654603 +3491498,0.024320924654603 +3491499,0.0243708841585763 +3491500,0.0630785383009085 +3491501,0.0209101869686537 +3491502,0.0156435271636392 +3491503,0.0174186017032923 +3491504,0.0161363656127053 +3491505,0.0574716156317097 +3491506,0.0229257755536516 +3491507,0.0577020956790229 +3491508,0.0862287732760836 +3491509,0.0766252751770935 +3491510,0.0762182101607322 +3491511,0.0345607213675975 +3491512,0.0324526844986941 +3491513,0.0961681598654313 +3491514,0.0455857423859828 +3491515,0.0384862422943115 +3491516,0.0381417894209104 +3491517,0.0578508281394553 +3491518,0.0577747806602174 +3491519,0.032709167678512 +3491520,0.10661461045770329 +3491521,0.1771196237566343 +3491522,0.0242270400943474 +3491523,0.0243088901661035 +3491524,0.0729901615855742 +3491525,0.12171596275334451 +3491526,0.0421572749611908 +3491527,0.0228659470171163 +3491528,0.0418366102640708 +3491529,0.0209550354629755 +3491530,0.0176214459055012 +3491531,0.0166530149826896 +3491532,0.0344220897322977 +3491533,0.0230623318821539 +3491534,0.0268252824076505 +3491535,0.0345607213675975 +3491536,0.0396716053321395 +3491537,0.034877046142237 +3491538,0.0582542353807572 +3491539,0.0120613439439562 +3491540,0.0384862422943115 +3491541,0.1155000972686891 +3491542,0.0352167585665161 +3491543,0.011554860509932 +3491544,0.0120031162148771 +3491545,0.1059058530570944 +3491546,0.10667489469051358 +3491547,0.0679605462817168 +3491548,0.0352943709937918 +3491549,0.06286510638892649 +3491550,0.06286510638892649 +3491551,0.04191222423681 +3491552,0.1170901176123496 +3491553,0.051468944239084796 +3491554,0.0166331290249566 +3491555,0.0122721200142401 +3491556,0.2836681781264977 +3491557,0.0403460356935598 +3491558,0.0346346736692806 +3491559,0.1036951398774077 +3491560,0.0384862422943115 +3491561,0.0384862422943115 +3491562,0.1924312114715575 +3491563,0.0382841300864989 +3491564,0.0353026215192031 +3491565,0.0235155524795356 +3491566,0.0123082650840815 +3491567,0.0342840663222188 +3491568,0.1420708051172715 +3491569,0.0354258335603273 +3491570,0.0213709890675382 +3491571,0.06286510638892649 +3491572,0.0628761192044196 +3491573,0.0336002734640161 +3491574,0.050259647117837494 +3491575,0.1216546418070156 +3491576,0.0406270883977413 +3491577,0.0406270883977413 +3491578,0.0404213328202075 +3491579,0.0376222130398238 +3491580,0.0381442974025549 +3491581,0.0384862422943115 +3491582,0.0116234729288243 +3491583,0.0232181651684923 +3491584,0.1236728057910543 +3491585,0.0481414431529089 +3491586,0.0210212889881156 +3491587,0.0209550354629755 +3491588,0.0628972544438919 +3491589,0.0552994161641298 +3491590,0.0256713636684385 +3491591,0.0152578631817432 +3491592,0.0388125672645576 +3491593,0.0406270883977413 +3491594,0.0405181874663696 +3491595,0.0401222134990589 +3491596,0.0354104839811499 +3491597,0.09275150664466261 +3491598,0.2243575168031923 +3491599,0.0119941071139778 +3491600,0.0236339497230177 +3491601,0.0786742813337163 +3491602,0.014932557663502 +3491603,0.0422747769656564 +3491604,0.0841278912459123 +3491605,0.1904433135772893 +3491606,0.0210276672537078 +3491607,0.0800541208445357 +3491608,0.0268867319194261 +3491609,0.0568464997431177 +3491610,0.0852588863507996 +3491611,0.0102066268023766 +3491612,0.0108559294403888 +3491613,0.0341309387231089 +3491614,0.0416450972815216 +3491615,0.0152543588869347 +3491616,0.0152262556879422 +3491617,0.0356043839743584 +3491618,0.1369283409062528 +3491619,0.031877921471898704 +3491620,0.0227526224889725 +3491621,0.0287511926144361 +3491622,0.0287511926144361 +3491623,0.0269324223599764 +3491624,0.0268689785152673 +3491625,0.053756685437996 +3491626,0.0284750666469335 +3491627,0.0854251999408005 +3491628,0.0121592448428387 +3491629,0.0109749016101107 +3491630,0.053827790652484706 +3491631,0.0416463054716587 +3491632,0.12473841354958581 +3491633,0.0416463054716587 +3491634,0.015145033662278 +3491635,0.0453378058356193 +3491636,0.0228204109394954 +3491637,0.0590712277128614 +3491638,0.043353261651774 +3491639,0.042498167083702 +3491640,0.031915485970721705 +3491641,0.033294583139572606 +3491642,0.0158167434558382 +3491643,0.0287511926144361 +3491644,0.0278951268273362 +3491645,0.0287016183841439 +3491646,0.0268689785152673 +3491647,0.0268838150494537 +3491648,0.0284750666469335 +3491649,0.0284566820913625 +3491650,0.056612104017153095 +3491651,0.0120268759372422 +3491652,0.0602868946127745 +3491653,0.135718226764577 +3491654,0.2075840795090039 +3491655,0.0151459697948063 +3491656,0.0594061149114939 +3491657,0.0394833440751919 +3491658,0.1286887747981319 +3491659,0.1304039425556539 +3491660,0.0474828009915974 +3491661,0.0467050377796027 +3491662,0.0285335443810604 +3491663,0.0287511926144361 +3491664,0.0259239770689407 +3491665,0.0263996916176424 +3491666,0.13433837900556309 +3491667,0.0806069447414519 +3491668,0.0537379570305346 +3491669,0.053884456156851696 +3491670,0.0284750666469335 +3491671,0.08542519472150881 +3491672,0.0282876939883371 +3491673,0.0119229210540652 +3491674,0.0127749435549298 +3491675,0.0140232565143355 +3491676,0.0239483602113492 +3491677,0.12493891641497609 +3491678,0.0412503310157414 +3491679,0.0200683478345314 +3491680,0.0191438438558836 +3491681,0.21746873855590798 +3491682,0.3032507432272089 +3491683,0.0432444454560399 +3491684,0.0474647352838449 +3491685,0.047476849727123197 +3491686,0.0573319544254226 +3491687,0.0286849332545078 +3491688,0.0242957248237551 +3491689,0.0147774259681898 +3491690,0.0269728526980864 +3491691,0.0266933930416446 +3491692,0.0801570188201889 +3491693,0.080610238452285 +3491694,0.0854080021485624 +3491695,0.0854072743374678 +3491696,0.0284750666469335 +3491697,0.0283480682970147 +3491698,0.0361285622538536 +3491699,0.054333507052163804 +3491700,0.0416463054716587 +3491701,0.0416463054716587 +3491702,0.0825424164898728 +3491703,0.0405087626588338 +3491704,0.0200212979148511 +3491705,0.0597929604245291 +3491706,0.2532443745518056 +3491707,0.0869874954223632 +3491708,0.0157391220782694 +3491709,0.0155595706301826 +3491710,0.0209558899209111 +3491711,0.0226042233616774 +3491712,0.0591163195260749 +3491713,0.0805631205786758 +3491714,0.1341221772637184 +3491715,0.0284750666469335 +3491716,0.0284750666469335 +3491717,0.0854251999408005 +3491718,0.0284462130167454 +3491719,0.0154519810818452 +3491720,0.0416463054716587 +3491721,0.12493891641497609 +3491722,0.0406170416554551 +3491723,0.0416463054716587 +3491724,0.0184315618542725 +3491725,0.0461237004091581 +3491726,0.0861684544168005 +3491727,0.0278701682740993 +3491728,0.0433835603815151 +3491729,0.0775618900819049 +3491730,0.0610764728078356 +3491731,0.0413925176659175 +3491732,0.0235796709958076 +3491733,0.0201211448742199 +3491734,0.0438240892407442 +3491735,0.0265422880254308 +3491736,0.0804600579140107 +3491737,0.0259982388467478 +3491738,0.1137086313019923 +3491739,0.0284750666469335 +3491740,0.0284750666469335 +3491741,0.0284750666469335 +3491742,0.08432496204983 +3491743,0.0826170872730159 +3491744,0.0413763774415531 +3491745,0.0416463054716587 +3491746,0.0832926109433174 +3491747,0.0392573078043384 +3491748,0.0829021795575969 +3491749,0.0367824408627315 +3491750,0.018455425759974 +3491751,0.1065399267483835 +3491752,0.0151921985670924 +3491753,0.0171939685483838 +3491754,0.0171681217316833 +3491755,0.0936111207630506 +3491756,0.030942066364297 +3491757,0.0436694735034297 +3491758,0.0406962936570054 +3491759,0.0235530308850233 +3491760,0.0235974754667779 +3491761,0.0200494118034839 +3491762,0.0187673792924916 +3491763,0.0147101811868996 +3491764,0.0146136576862219 +3491765,0.0266698019035142 +3491766,0.08533664456261761 +3491767,0.0284698827048379 +3491768,0.0848943564258272 +3491769,0.0567451604719615 +3491770,0.0852918271105863 +3491771,0.0284750666469335 +3491772,0.2079087431761553 +3491773,0.0416463054716587 +3491774,0.0924118193958104 +3491775,0.0551772998928998 +3491776,0.0152701039676862 +3491777,0.0151768349927983 +3491778,0.0174552033862014 +3491779,0.0171584505587816 +3491780,0.09381262714856009 +3491781,0.0311920270323753 +3491782,0.0235472161560764 +3491783,0.0708337522023598 +3491784,0.0585094665973737 +3491785,0.0605923317617266 +3491786,0.0486169205029686 +3491787,0.0162113532423973 +3491788,0.0146036492660641 +3491789,0.0265756284374276 +3491790,0.0282955699179338 +3491791,0.1818471115636202 +3491792,0.0417450331536403 +3491793,0.0415211004621996 +3491794,0.12450437770242409 +3491795,0.073791354894638 +3491796,0.0184478387236595 +3491797,0.0152341800428919 +3491798,0.0858173069965302 +3491799,0.0171629858808907 +3491800,0.0933537137046094 +3491801,0.0311167152336389 +3491802,0.023496793772694 +3491803,0.11788069848040869 +3491804,0.0205042683877669 +3491805,0.0409163592637873 +3491806,0.032391609373478805 +3491807,0.0162113532423973 +3491808,0.06544073714640261 +3491809,0.0634727442774967 +3491810,0.0488134111779038 +3491811,0.0816001461076716 +3491812,0.041104321996086 +3491813,0.0405120812496291 +3491814,0.0368261854312356 +3491815,0.0184478387236595 +3491816,0.036769457822936405 +3491817,0.0686544592289603 +3491818,0.0877079237929045 +3491819,0.038946170118607196 +3491820,0.0301898386949171 +3491821,0.0236234865663641 +3491822,0.0708956540402158 +3491823,0.020403484797282 +3491824,0.061539763496262195 +3491825,0.0162057576972726 +3491826,0.048665343028266 +3491827,0.0162113532423973 +3491828,0.014955142318587 +3491829,0.0419694287337746 +3491830,0.3055709540037985 +3491831,0.0498387411659005 +3491832,0.0181067572645329 +3491833,0.0178291486335277 +3491834,0.10475892270020659 +3491835,0.021047022123893 +3491836,0.0184204391971185 +3491837,0.0171310208370257 +3491838,0.0179416557193923 +3491839,0.0204992517828941 +3491840,0.0205990082796946 +3491841,0.0206624074750881 +3491842,0.0811089012372469 +3491843,0.049222819939465604 +3491844,0.0155065572030943 +3491845,0.0279071908444166 +3491846,0.0512465350329875 +3491847,0.0512465350329875 +3491848,0.035006048530018694 +3491849,0.0174843545174537 +3491850,0.0531495660306548 +3491851,0.0531329875426493 +3491852,0.10474029830638719 +3491853,0.0208575129081164 +3491854,0.0209851485575027 +3491855,0.0184165051066112 +3491856,0.0184072380041908 +3491857,0.0158751196944451 +3491858,0.014746437932539 +3491859,0.0179079934206132 +3491860,0.0613372924233649 +3491861,0.061356057171192496 +3491862,0.0162545283396887 +3491863,0.0162487371688004 +3491864,0.0841066799954453 +3491865,0.0327177564463311 +3491866,0.0149971415801968 +3491867,0.028387016939872 +3491868,0.042114123620355604 +3491869,0.1024797699466513 +3491870,0.1536808421041444 +3491871,0.0512465350329875 +3491872,0.0511797323820755 +3491873,0.1224195121274627 +3491874,0.0174844619984473 +3491875,0.0177151163638377 +3491876,0.0885936245859193 +3491877,0.0609379872842121 +3491878,0.0180670023967571 +3491879,0.0184172676923661 +3491880,0.0156058347258952 +3491881,0.0467039814334713 +3491882,0.01440226915949 +3491883,0.0143690575702749 +3491884,0.0205639348628363 +3491885,0.0237973134621388 +3491886,0.0168465314776957 +3491887,0.0811239026534633 +3491888,0.0163132480491545 +3491889,0.015436557857421 +3491890,0.0512465350329875 +3491891,0.0988705042134887 +3491892,0.0512465350329875 +3491893,0.1537396050989625 +3491894,0.0524797525667758 +3491895,0.0177188720554113 +3491896,0.053123967986950904 +3491897,0.14771812857934402 +3491898,0.0164250837951909 +3491899,0.0171257398979241 +3491900,0.0171389854490339 +3491901,0.0155951704859229 +3491902,0.0154890836822077 +3491903,0.0718491649195105 +3491904,0.0143863188686114 +3491905,0.0204613536976967 +3491906,0.0616404652012651 +3491907,0.0487613485921901 +3491908,0.0243714907412189 +3491909,0.0815286343370209 +3491910,0.0161983754904978 +3491911,0.2562326751649375 +3491912,0.15349629026823458 +3491913,0.0506204980183581 +3491914,0.0177188720554113 +3491915,0.0177131765223801 +3491916,0.0177166086039483 +3491917,0.048484777722339195 +3491918,0.0326286888754626 +3491919,0.0514040112135917 +3491920,0.0513736990451353 +3491921,0.0173074519072173 +3491922,0.0150240060212335 +3491923,0.0143634873504476 +3491924,0.042969001723758 +3491925,0.0143718186802747 +3491926,0.0204053416403957 +3491927,0.04098132334558 +3491928,0.048933779981260805 +3491929,0.0245426161405243 +3491930,0.016026254483653 +3491931,0.04865692315187 +3491932,0.0512465350329875 +3491933,0.0512465350329875 +3491934,0.0512350747962809 +3491935,0.0177188720554113 +3491936,0.0177188720554113 +3491937,0.0177070840403026 +3491938,0.0076320745809766 +3491939,0.043551984712541694 +3491940,0.0850172570470156 +3491941,0.0513667367719364 +3491942,0.0143468986826033 +3491943,0.0280780127950827 +3491944,0.056212581933429095 +3491945,0.0143746837144234 +3491946,0.0733816019770099 +3491947,0.1226649962735643 +3491948,0.0491677113507393 +3491949,0.1533112831162881 +3491950,0.0507767103629403 +3491951,0.1536336958480792 +3491952,0.053031285423911 +3491953,0.0177204203018081 +3491954,0.0177188720554113 +3491955,0.0531551564827879 +3491956,0.0147044444456696 +3491957,0.022374775016497 +3491958,0.0687143054219515 +3491959,0.0171865429729222 +3491960,0.042100500596235296 +3491961,0.0127654836837424 +3491962,0.0169729351046056 +3491963,0.034193949113914504 +3491964,0.0244279061948964 +3491965,0.0245778191860356 +3491966,0.0171124321714809 +3491967,0.0385001269373673 +3491968,0.0502715419694661 +3491969,0.1007169180490443 +3491970,0.0508852300966206 +3491971,0.0177076335223624 +3491972,0.0176986868339695 +3491973,0.0349432106030035 +3491974,0.0176924138306875 +3491975,0.0220937664782464 +3491976,0.0367664452553648 +3491977,0.0085815303595998 +3491978,0.0261080556309993 +3491979,0.0257798144593833 +3491980,0.0257798144593833 +3491981,0.0417010962058627 +3491982,0.0140357800291927 +3491983,0.0120490081608295 +3491984,0.0123697844417551 +3491985,0.0169732109433509 +3491986,0.048548453248465 +3491987,0.017324803435853 +3491988,0.0417225807905197 +3491989,0.0390912989941463 +3491990,0.0515325840949378 +3491991,0.0177188720554113 +3491992,0.036899142959287 +3491993,0.0291047344837601 +3491994,0.0293812191733257 +3491995,0.0417764616834125 +3491996,0.0139123219839693 +3491997,0.0120577811225665 +3491998,0.0361470244824885 +3491999,0.060245040804147505 +3492000,0.0241971432627094 +3492001,0.0161827022399583 +3492002,0.0168614064972962 +3492003,0.1767544580796885 +3492004,0.207970868551655 +3492005,0.1684623199034696 +3492006,0.0412224859340764 +3492007,0.09618989964702121 +3492008,0.024098016321659 +3492009,0.048196032643318 +3492010,0.048196032643318 +3492011,0.0810853378775886 +3492012,0.0120412522243558 +3492013,0.0120055137649134 +3492014,0.0163907661681023 +3492015,0.0693312610585721 +3492016,0.0177273829467135 +3492017,0.0119227095068678 +3492018,0.0595600200418729 +3492019,0.0213257429733856 +3492020,0.0478304516667739 +3492021,0.21886157244443882 +3492022,0.0724024951631306 +3492023,0.0156899039391488 +3492024,0.045848762472026 +3492025,0.0597429951969103 +3492026,0.0120198530786694 +3492027,0.0225089151403055 +3492028,0.016161189854854 +3492029,0.0729538574814796 +3492030,0.0672268411427474 +3492031,0.0712206158872918 +3492032,0.0152920620056866 +3492033,0.0153196284989153 +3492034,0.0233893988913828 +3492035,0.0234063132913664 +3492036,0.0729618479934385 +3492037,0.072541897989132 +3492038,0.11236053782336171 +3492039,0.21536131670961978 +3492040,0.0153815179778177 +3492041,0.0154373032063309 +3492042,0.1459527677023026 +3492043,0.2171102487575089 +3492044,0.0211085217512367 +3492045,0.064224986383137 +3492046,0.0696457400206946 +3492047,0.0730614076865537 +3492048,0.0720608146523063 +3492049,0.0842792163673497 +3492050,0.0207880429882826 +3492051,0.0561226819309927 +3492052,0.0107751553056659 +3492053,0.753424242138862 +3492054,0.29969071131670877 +3492055,0.0631430703856503 +3492056,0.0632923950224293 +3492057,0.0107751451432704 +3492058,0.0108047552140267 +3492059,0.010974397405408 +3492060,0.4398736382822655 +3492061,0.296025614868216 +3492062,0.0751579479746194 +3492063,0.0211427584290504 +3492064,0.020977240832793 +3492065,0.0107865477826318 +3492066,0.0323589410379149 +3492067,0.087284147364318 +3492068,0.0600861199200153 +3492069,0.0209424328606103 +3492070,0.0215871490832777 +3492071,0.0108256983534265 +3492072,0.0837156255605685 +3492073,0.0131911705520452 +3492074,0.4196224343388497 +3492075,0.2414927617466646 +3492076,0.0116234670370347 +3492077,0.045244901883092395 +3492078,0.3605167195200918 +3492079,0.1790855390321595 +3492080,0.0113142440095543 +3492081,0.0113142440095543 +3492082,0.0113047775076711 +3492083,0.2403444796800612 +3492084,0.6002944505412116 +3492085,0.0596923919537545 +3492086,0.0119016035427553 +3492087,0.0113142440095543 +3492088,0.022625879669511198 +3492089,0.0451893042049911 +3492090,0.0542687441002477 +3492091,0.2984458490160949 +3492092,0.033942732028662895 +3492093,0.0363084420092179 +3492094,0.10181069511177909 +3492095,0.0225566519300947 +3492096,0.0370491103798626 +3492097,0.0627542519269685 +3492098,0.1168669728775246 +3492099,0.0600861199200153 +3492100,0.0113054852723799 +3492101,0.1016470762304265 +3492102,0.0563926947706645 +3492103,0.053449597209692 +3492104,0.10702469616761259 +3492105,0.0688846234278316 +3492106,0.061696613207459394 +3492107,0.0845142546197876 +3492108,0.056519457508593995 +3492109,0.0113142440095543 +3492110,0.6362095579594569 +3492111,0.1601531986676272 +3492112,0.1454165908219843 +3492113,0.0205655377358198 +3492114,0.0113142440095543 +3492115,0.0452569760382172 +3492116,0.0226284880191086 +3492117,0.033942732028662895 +3492118,0.053101341714809 +3492119,0.0522771968505642 +3492120,0.0213207861571649 +3492121,0.061719336994730395 +3492122,0.061967503564287096 +3492123,0.0452569760382172 +3492124,0.0113142440095543 +3492125,0.0113142440095543 +3492126,0.0113142440095543 +3492127,0.0226284880191086 +3492128,0.0226194871868846 +3492129,0.0484808498932416 +3492130,0.0519454173452429 +3492131,0.0115150578762886 +3492132,0.034230757555370195 +3492133,0.0337019852152126 +3492134,0.0226167166831307 +3492135,0.0344594106772615 +3492136,0.0113238022897381 +3492137,0.0227072243275129 +3492138,0.1554869954480261 +3492139,0.0498172354449763 +3492140,0.0518607350330888 +3492141,0.3626270234535668 +3492142,0.0111904388426108 +3492143,0.06774027198914609 +3492144,0.2149818670847455 +3492145,0.0200536205079564 +3492146,0.0350373999220306 +3492147,0.0488854545080687 +3492148,0.0515881898152062 +3492149,0.0437792688608169 +3492150,0.1739462330563278 +3492151,0.026641529102251198 +3492152,0.0326308195726776 +3492153,0.041881860748196 +3492154,0.0071726600462684 +3492155,0.0437792688608169 +3492156,0.0437792688608169 +3492157,0.008972992617427 +3492158,0.042184140144140195 +3492159,0.0083918511681327 +3492160,0.0631086155311507 +3492161,0.0848359934022703 +3492162,0.0434129017565572 +3492163,0.1313645109345808 +3492164,0.1313378065824507 +3492165,0.018068148944093698 +3492166,0.08402548578583989 +3492167,0.0069952868577497 +3492168,0.023277554665389402 +3492169,0.2188638273181503 +3492170,0.21903349171575398 +3492171,0.13098127697523348 +3492172,0.0437792688608169 +3492173,0.0091650429780961 +3492174,0.0437004335985903 +3492175,0.08562925084344919 +3492176,0.0437792688608169 +3492177,0.1312984147924003 +3492178,0.0437792688608169 +3492179,0.2188963443040845 +3492180,0.0437792688608169 +3492181,0.1751170754432676 +3492182,0.306253286827793 +3492183,0.2626756131649014 +3492184,0.13041048222430118 +3492185,0.0437792688608169 +3492186,0.0437792688608169 +3492187,0.1302543349130509 +3492188,0.0437792688608169 +3492189,0.1312088071457888 +3492190,0.1751170754432676 +3492191,0.0437792688608169 +3492192,0.0437792688608169 +3492193,0.216137233958489 +3492194,0.1729858709105139 +3492195,0.0437792688608169 +3492196,0.1312407826133978 +3492197,0.0875585377216338 +3492198,0.0412058432038605 +3492199,0.1313020862768596 +3492200,0.1313378065824507 +3492201,0.2188963443040845 +3492202,0.4796558228024564 +3492203,0.1300905846186273 +3492204,0.0434196351339193 +3492205,0.0738425519108003 +3492206,0.1117168238479318 +3492207,0.0553160607843304 +3492208,0.0185963418334722 +3492209,0.06497229631591911 +3492210,0.1087843511263479 +3492211,0.0558444893316644 +3492212,0.055805836038481 +3492213,0.0218133796006441 +3492214,0.0216095424093817 +3492215,0.05590666527999 +3492216,0.0186177809885541 +3492217,0.0218133796006441 +3492218,0.0652871185670571 +3492219,0.12958271467122 +3492220,0.0186153750494372 +3492221,0.0372618558944579 +3492222,0.1088353625159975 +3492223,0.06544013880193231 +3492224,0.1064615684253163 +3492225,0.0147675549040032 +3492226,0.021681535690898 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001150900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001150900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001150900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001151900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001151900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001151900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001152000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001152000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001152000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001152100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001152100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001152100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001152200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001152200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001152200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001152300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001152300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e9d1fd14 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001152300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0557146236772413 +3490292,0.0926993015806352 +3490293,0.013517671264708 +3490316,0.027035342529416 +3490317,0.06758835632354 +3490332,0.040553013794124 +3490333,0.0418455187210444 +3490334,0.0823463134168191 +3490335,0.013517671264708 +3490348,0.014334257185022 +3490349,0.0155487632863609 +3490350,0.013517671264708 +3490351,0.040553013794124 +3490374,0.0346880860903672 +3490375,0.099111785153023 +3490376,0.0857883022656818 +3490377,0.0274250856598885 +3490378,0.027035342529416 +3490379,0.1220923462466514 +3490396,0.0164149075932108 +3490397,0.0329408980906008 +3490398,0.0405561297600842 +3490399,0.027035342529416 +3490418,0.0816265249119167 +3490419,0.013517671264708 +3490437,0.0135448611961166 +3490438,0.068008139826924 +3490439,0.0292731750348506 +3490440,0.0135177178156134 +3490457,0.0494158262802204 +3490458,0.049914424554787 +3490459,0.027035342529416 +3490460,0.0680411387060145 +3490476,0.0269696393943017 +3490477,0.0402707492886629 +3490478,0.017239337787032 +3490479,0.017239337787032 +3490499,0.0763634435308064 +3490500,0.008619668893516 +3490517,0.0176285255478142 +3490518,0.0300295196225655 +3490519,0.034478675574064 +3490520,0.04309834446758 +3490544,0.008619668893516 +3490545,0.0086389655488008 +3490546,0.017239337787032 +3490547,0.0086155008218789 +3490573,0.0257681952702288 +3490574,0.008619668893516 +3490575,0.0086747103065548 +3490576,0.0168325420917867 +3490597,0.0234532538440953 +3490598,0.022483464621695398 +3490599,0.0089512705855485 +3490600,0.0289816825374463 +3490601,0.0147931801546039 +3490602,0.0149033157562663 +3490603,0.0193802613816363 +3490604,0.0191254548741366 +3490623,0.0073906783945858 +3490624,0.0147813567891716 +3490625,0.0156955843898273 +3490626,0.058615096955731597 +3490639,0.0073906783945858 +3490640,0.0295627135783432 +3490641,0.015420350471133801 +3490642,0.0467190003786489 +3490643,0.0786160291182857 +3490644,0.0195928514003753 +3490645,0.0195228974384219 +3490658,0.0147813567891716 +3490659,0.0073906783945858 +3490660,0.1099912149270077 +3490661,0.0473034864510003 +3490662,0.136845707730213 +3490663,0.0195928514003753 +3490664,0.0194812439868116 +3490665,0.058623516712564 +3490681,0.0374064523279836 +3490682,0.0073906783945858 +3490683,0.0073906783945858 +3490684,0.0147813567891716 +3490685,0.0153821478339065 +3490686,0.0157611374593626 +3490687,0.0196741007438275 +3490688,0.0196391629065004 +3490689,0.0195606662950103 +3490690,0.0195928514003753 +3490707,0.0147813567891716 +3490708,0.0073906783945858 +3490709,0.0076660820762625 +3490710,0.0073906783945858 +3490725,0.0073745526158842 +3490726,0.0073906783945858 +3490727,0.0221720351837574 +3490728,0.0296941955815384 +3490736,0.0518229537704313 +3490737,0.0372662225389664 +3490738,0.11490259944757131 +3490739,0.0407795550348643 +3490747,0.319274142608884 +3490748,0.0103168560171328 +3490757,0.0268874738653855 +3490758,0.021632990988804 +3490771,0.020151905389653498 +3490772,0.0067360727063894 +3490773,0.0074063553588602 +3490774,0.0134489052646687 +3490787,0.0132712574091369 +3490788,0.0074848453778033 +3490789,0.0477558772776289 +3490790,0.0701672065330007 +3490805,0.006639964572766 +3490806,0.0203016341668396 +3490807,0.0130705004557966 +3490808,0.0354923004457825 +3490809,0.0101741677192276 +3490810,0.0103589368534804 +3490827,0.0070309982981789 +3490828,0.0072672172315477 +3490842,0.0211894105693887 +3490843,0.0070613189600408 +3490844,0.0071962796750962 +3490845,0.021900140462402 +3490856,0.0070613189600408 +3490857,0.0076388497754113 +3490858,0.0070613189600408 +3490859,0.021448852634316798 +3490860,0.0073275635950267 +3490861,0.036599151406897 +3490875,0.0070613189600408 +3490876,0.0070613189600408 +3490877,0.022763568057573902 +3490878,0.0077486841785166 +3490879,0.0146551271900534 +3490892,0.0211839568801224 +3490893,0.0211839568801224 +3490894,0.0073275635950267 +3490895,0.0081939392736316 +3490900,0.0070571874047496 +3490901,0.0068229961533741 +3490902,0.0215139196843519 +3490903,0.021185692301048602 +3490904,0.028273463068531297 +3490905,0.0230484575196138 +3490906,0.0251395253036966 +3490907,0.07757634479495 +3490916,0.0212252956789416 +3490917,0.0071259592137998 +3490918,0.0070529937725622 +3490919,0.0070636222026164 +3490920,0.0072124443338275 +3490921,0.0162957442174736 +3490922,0.0223725039884674 +3490923,0.1752590174235335 +3490924,0.00939520575785 +3490925,0.0530468089903916 +3490926,0.1412328524764178 +3490935,0.0067330066910223 +3490936,0.0077824727989507 +3490937,0.0263803920586161 +3490938,0.0252086385109161 +3490939,0.026427182686835297 +3490940,0.0261626650438254 +3490941,0.0160367961693717 +3490942,0.0158282420540763 +3490953,0.0070038065568001 +3490954,0.0070633576839805 +3490955,0.0070320253026858 +3490956,0.0098704639351358 +3490957,0.0196051524512387 +3490958,0.0183313819662291 +3490959,0.026207654736936 +3490960,0.026183440130988 +3490966,0.0197032573632894 +3490967,0.0065677524544298 +3490968,0.0137351120243978 +3490969,0.0156043012569016 +3490970,0.1361132784986041 +3490971,0.019111903121357 +3490972,0.0700004995911793 +3490973,0.0175153711221907 +3490974,0.008735884912312 +3490975,0.026307286977488 +3490980,0.0197679474448418 +3490981,0.0065793230696748 +3490982,0.0066012067957299 +3490983,0.046950413190583296 +3490984,0.0775906368057014 +3490985,0.1723393681772363 +3490986,0.0193389651567 +3490987,0.0580840324192069 +3490988,0.0575246270629106 +3490989,0.01766262781014 +3490990,0.0525059133850714 +3490991,0.0174644267591372 +3490992,0.008735884912312 +3490993,0.008735884912312 +3490994,0.0295698031742197 +3490995,0.008735884912312 +3490999,0.0065845355594073 +3491000,0.0066586914815414 +3491001,0.0155669259961558 +3491002,0.0203167862816863 +3491003,0.0157074195414321 +3491004,0.0157393665641518 +3491005,0.058105423622515195 +3491006,0.0963895100785377 +3491007,0.027841711419341802 +3491008,0.030871902948164 +3491009,0.0437821499375806 +3491010,0.0260965648514861 +3491013,0.0105415495901673 +3491014,0.0130975506886951 +3491015,0.0580158890411509 +3491016,0.058008208849618104 +3491017,0.1828675560820012 +3491018,0.0228803513461329 +3491019,0.04643469293776 +3491020,0.008735884912312 +3491021,0.0134995570406316 +3491022,0.009217370645394 +3491023,0.0139218633669615 +3491024,0.0078985045789613 +3491025,0.0624092359805148 +3491026,0.0205126704879905 +3491027,0.0326398244155858 +3491028,0.0400346503344498 +3491029,0.0067497785203158 +3491030,0.0346197519726171 +3491031,0.0368301749650309 +3491032,0.0296790981581838 +3491033,0.018298349712866 +3491034,0.0140357641503214 +3491035,0.0139084170743016 +3491036,0.0215183448451407 +3491037,0.0205150190740823 +3491038,0.0408708107255402 +3491039,0.22587809099878312 +3491040,0.0067497785203158 +3491041,0.0202493355609474 +3491042,0.0185466688126325 +3491043,0.0177697375421827 +3491044,0.0138381489477825 +3491045,0.06987582317690891 +3491046,0.0205150190740823 +3491047,0.0204930599730508 +3491048,0.0406417702551891 +3491049,0.0405863299965858 +3491050,0.1373607917240428 +3491051,0.0457763912647413 +3491052,0.0067497785203158 +3491053,0.034158704171164296 +3491054,0.055565890018772 +3491055,0.0552462067025163 +3491056,0.0138853497971229 +3491057,0.0981168885124593 +3491058,0.0205150190740823 +3491059,0.0630823187941098 +3491060,0.20303364357024858 +3491061,0.0405863299965858 +3491062,0.1213012010172222 +3491063,0.2018103368013242 +3491064,0.0457808308826704 +3491065,0.2290906347543734 +3491066,0.0202493355609474 +3491067,0.0067497785203158 +3491068,0.0084902432891505 +3491069,0.0068660744922979 +3491070,0.0146372540140692 +3491071,0.0370419229526126 +3491072,0.14431131339383302 +3491073,0.061532798059103 +3491074,0.0405863299965858 +3491075,0.3643376805658401 +3491076,0.137347524107588 +3491077,0.0457859252705288 +3491078,0.0652898037589733 +3491079,0.0274373612464918 +3491080,0.0208149151836777 +3491081,0.0068152110245903 +3491082,0.01939628083384 +3491083,0.0204768089271774 +3491084,0.0205150190740823 +3491085,0.0205150190740823 +3491086,0.12199891654095649 +3491087,0.121819753574331 +3491088,0.0764969181502124 +3491089,0.1194896392745271 +3491090,0.043333268312095 +3491091,0.045148581141636 +3491092,0.020538426351224 +3491093,0.0070121848608841 +3491094,0.0615450572222469 +3491095,0.1025257172240569 +3491096,0.1208915508326919 +3491097,0.0402301637559065 +3491098,0.1311038740493993 +3491099,0.0355329936869123 +3491100,0.0443100380751925 +3491101,0.0336549624410153 +3491102,0.0731859442730175 +3491103,0.1024923000404432 +3491104,0.10256656579637549 +3491105,0.0744999732543257 +3491106,0.1576418165899224 +3491107,0.11487237667976269 +3491108,0.0688179958407282 +3491109,0.1226675606161214 +3491110,0.04581595885217 +3491111,0.0543761096950991 +3491112,0.0066252574324607 +3491113,0.1189889729576024 +3491114,0.08425503406090129 +3491115,0.1424297098338817 +3491116,0.10237267056579401 +3491117,0.0244268684592427 +3491118,0.1205483676387579 +3491119,0.1960564311491187 +3491120,0.09816583368188789 +3491121,0.0685453926354617 +3491122,0.0252602704635487 +3491123,0.0540211122336176 +3491124,0.0626179983115503 +3491125,0.020245965174076 +3491126,0.14892613557895612 +3491127,0.0069551641491728 +3491128,0.0483338660039681 +3491129,0.0168090339478257 +3491130,0.01691878400743 +3491131,0.03601640769601 +3491132,0.0521788489507957 +3491133,0.0240797083824872 +3491134,0.0240763758440782 +3491135,0.0327308140695095 +3491136,0.3595977100425854 +3491137,0.2057589836228162 +3491138,0.1672751463270765 +3491139,0.18735112665849502 +3491140,0.0167342825699389 +3491141,0.1617765195944411 +3491142,0.006664785133886 +3491143,0.0077906505673529 +3491144,0.052780845570243 +3491145,0.01691878400743 +3491146,0.096696827253511 +3491147,0.0240744512978507 +3491148,0.0327308140695095 +3491149,0.0228405352681875 +3491150,0.0228491283978013 +3491151,0.0562940474677404 +3491152,0.055550195862156 +3491153,0.0146425738930702 +3491154,0.0449457922410858 +3491155,0.1041362315353134 +3491156,0.1778034627969767 +3491157,0.103886176586392 +3491158,0.0930363143681267 +3491159,0.0487826379745789 +3491160,0.0721848454759779 +3491161,0.130923256278038 +3491162,0.0327308140695095 +3491163,0.0692844438460258 +3491164,0.0697090624872077 +3491165,0.1684503423173377 +3491166,0.0555830472222365 +3491167,0.0449209792442745 +3491168,0.0439576401707912 +3491169,0.10461592911500091 +3491170,0.0174365770071744 +3491171,0.2124951665838019 +3491172,0.0506693508793297 +3491173,0.0296238667132804 +3491174,0.029698713689509403 +3491175,0.0242959857503379 +3491176,0.0977048283812811 +3491177,0.0317559935772807 +3491178,0.0327308140695095 +3491179,0.09819244220852849 +3491180,0.0232910626808035 +3491181,0.22461434887986909 +3491182,0.16843964636904651 +3491183,0.104028781193596 +3491184,0.1320985273360585 +3491185,0.0174432548481788 +3491186,0.017909258447786 +3491187,0.0697463080286976 +3491188,0.1064617849358371 +3491189,0.532211621804132 +3491190,0.158653674279778 +3491191,0.0103178570031067 +3491192,0.0301807971572728 +3491193,0.0327308140695095 +3491194,0.0327308140695095 +3491195,0.0490420393344954 +3491196,0.5033195647109524 +3491197,0.1058650109222215 +3491198,0.1171978220580095 +3491199,0.08790996428636161 +3491200,0.0730615749295343 +3491201,0.26533366991845153 +3491202,0.1064651012420654 +3491203,0.0120227601539174 +3491204,0.0496680727727592 +3491205,0.093269116987183 +3491206,0.0327308140695095 +3491207,0.1307792153566383 +3491208,0.0652396957540982 +3491209,0.0379903975390064 +3491210,0.0297338813523474 +3491211,0.0982077512264531 +3491212,0.0353271749061987 +3491213,0.3696884401869413 +3491214,0.1594206200815679 +3491215,0.0532325506210327 +3491216,0.0532325506210327 +3491217,0.0494653114777196 +3491218,0.050689748880452704 +3491219,0.0639386938112626 +3491220,0.2291156984865665 +3491221,0.1607388809953034 +3491222,0.130923256278038 +3491223,0.0376429817810897 +3491224,0.0378962163518081 +3491225,0.2689400077623003 +3491226,0.038953130543656 +3491227,0.0334937870502471 +3491228,0.06715973757199331 +3491229,0.06910715400672 +3491230,0.0344821005474699 +3491231,0.1596976518630981 +3491232,0.0529222364659377 +3491233,0.0213165249057265 +3491234,0.0204841563432465 +3491235,0.359397298547685 +3491236,0.0327215335115654 +3491237,0.058244374788413905 +3491238,0.0327030568023789 +3491239,0.0381629681814856 +3491240,0.0376827605906009 +3491241,0.030653229577292 +3491242,0.0343900056617805 +3491243,0.0124406712129712 +3491244,0.0125507700069114 +3491245,0.1000267429774348 +3491246,0.16746893525123552 +3491247,0.0591527460556979 +3491248,0.0113287502899765 +3491249,0.0532325506210327 +3491250,0.0532325506210327 +3491251,0.0100720912456227 +3491252,0.1622820085368126 +3491253,0.0327308140695095 +3491254,0.0327107744827772 +3491255,0.1131019561465043 +3491256,0.0753912478685378 +3491257,0.1088240965926492 +3491258,0.0744035490848502 +3491259,0.0208154664036772 +3491260,0.021482064276793 +3491261,0.1057459425705916 +3491262,0.1067995749812082 +3491263,0.0124406712129712 +3491264,0.0249559958416718 +3491265,0.1339751482009884 +3491266,0.1001052252956865 +3491267,0.0334937870502471 +3491268,0.0337451648061909 +3491269,0.0809415530726254 +3491270,0.0567626070604664 +3491271,0.1583875021950748 +3491272,0.0532325506210327 +3491273,0.3193953037261962 +3491274,0.3704725854047975 +3491275,0.1617570627397591 +3491276,0.1288964151982708 +3491277,0.0376956239342689 +3491278,0.0278225175890005 +3491279,0.0192386282333268 +3491280,0.0191327395417758 +3491281,0.0194220196386852 +3491282,0.0196933893236052 +3491283,0.07966436267022241 +3491284,0.10681249566323969 +3491285,0.1067879487780183 +3491286,0.0377964812546322 +3491287,0.0379224973252301 +3491288,0.0334937870502471 +3491289,0.0669683477438145 +3491290,0.0830438108903547 +3491291,0.025146211159375 +3491292,0.2122685519398509 +3491293,0.0528631630069327 +3491294,0.0506269890511197 +3491295,0.0981689103615884 +3491296,0.2285254015562208 +3491297,0.2098035600994573 +3491298,0.11280424391246521 +3491299,0.0195558879889555 +3491300,0.0296226701630971 +3491301,0.0191094926710615 +3491302,0.057542054243216 +3491303,0.0590479713498924 +3491304,0.0199508145927386 +3491305,0.0196945643688768 +3491306,0.09856601575325641 +3491307,0.031284360907234 +3491308,0.0356136597406608 +3491309,0.10680941506162969 +3491310,0.0255127698327441 +3491311,0.1339751482009884 +3491312,0.0334937870502471 +3491313,0.0361368379685925 +3491314,0.060098165867487105 +3491315,0.0320305971976842 +3491316,0.09819244220852849 +3491317,0.0327308140695095 +3491318,0.0390160648093918 +3491319,0.0194707198251552 +3491320,0.0194571548329402 +3491321,0.0194610711187124 +3491322,0.0470292677304502 +3491323,0.1479923490928061 +3491324,0.038295378510862704 +3491325,0.0191180700418123 +3491326,0.0233615893887618 +3491327,0.0252406105283657 +3491328,0.0788071606168818 +3491329,0.0197148695588111 +3491330,0.0239512999088386 +3491331,0.0299996542010632 +3491332,0.1004813611507413 +3491333,0.0334937870502471 +3491334,0.3684316575527181 +3491335,0.1337169590273192 +3491336,0.032170475665368 +3491337,0.032784813499445196 +3491338,0.0874747809556671 +3491339,0.049818102746283593 +3491340,0.0327308140695095 +3491341,0.09819244220852849 +3491342,0.0194610711187124 +3491343,0.097305355593562 +3491344,0.0299721508390198 +3491345,0.030051465123209 +3491346,0.0701120025295286 +3491347,0.0704315589043963 +3491348,0.0256212349816616 +3491349,0.076988847926259 +3491350,0.0592353779877868 +3491351,0.0591446086764333 +3491352,0.1428745080463642 +3491353,0.0204670625960733 +3491354,0.0224497735318697 +3491355,0.0449948106227738 +3491356,0.1003205686536606 +3491357,0.0975365360501467 +3491358,0.0326676302298424 +3491359,0.0334937870502471 +3491360,0.4686967439669713 +3491361,0.1004813611507413 +3491362,0.0223021839906387 +3491363,0.0237286857073863 +3491364,0.0221765856884176 +3491365,0.022631861489722002 +3491366,0.0183454488894508 +3491367,0.0137346636621988 +3491368,0.0103528853242891 +3491369,0.1309113678038896 +3491370,0.0327308140695095 +3491371,0.09819233906609809 +3491372,0.06529504312528231 +3491373,0.038891239680507 +3491374,0.0194610711187124 +3491375,0.0194610711187124 +3491376,0.0389417415442553 +3491377,0.0300389435142278 +3491378,0.0566817617161276 +3491379,0.0233562718372402 +3491380,0.0234232124590714 +3491381,0.0256005139426549 +3491382,0.025662949308753 +3491383,0.025662949308753 +3491384,0.0253197954321134 +3491385,0.0196918315404719 +3491386,0.07886073706159741 +3491387,0.0407692505338927 +3491388,0.0611919911823402 +3491389,0.0224319715702174 +3491390,0.0903425405614921 +3491391,0.02246253782654 +3491392,0.10018915046043769 +3491393,0.3684316575527181 +3491394,0.0103562056793993 +3491395,0.11558009356323899 +3491396,0.029515804722905103 +3491397,0.0099427542182854 +3491398,0.0327308140695095 +3491399,0.16363816210747129 +3491400,0.0194229047632372 +3491401,0.0194610711187124 +3491402,0.039088417251811405 +3491403,0.0195851209006234 +3491404,0.0205192542453029 +3491405,0.093616978803639 +3491406,0.0657821252152558 +3491407,0.0131500735878944 +3491408,0.0233792662590802 +3491409,0.0234446747823981 +3491410,0.0233762005853982 +3491411,0.0257642570400206 +3491412,0.025662949308753 +3491413,0.0513739513889471 +3491414,0.0516061345774398 +3491415,0.025662949308753 +3491416,0.1282034862749911 +3491417,0.0393229791677667 +3491418,0.1381553034934102 +3491419,0.0203881007976067 +3491420,0.0199896099229607 +3491421,0.0426148568812757 +3491422,0.1368907130679755 +3491423,0.23373506997347152 +3491424,0.0669875741004942 +3491425,0.09526736854286119 +3491426,0.0105508798511982 +3491427,0.030304455056650102 +3491428,0.0098386015743017 +3491429,0.09819244220852849 +3491430,0.09819244220852849 +3491431,0.0324186773668278 +3491432,0.0194576161137604 +3491433,0.0194610711187124 +3491434,0.0194610711187124 +3491435,0.0194610711187124 +3491436,0.0170045532286167 +3491437,0.0510136596858501 +3491438,0.0394502207636832 +3491439,0.013288610212961 +3491440,0.045576179497898495 +3491441,0.0465992460097249 +3491442,0.0230007189734502 +3491443,0.0245077994055267 +3491444,0.039612820098238 +3491445,0.0197494605947661 +3491446,0.0205542133581511 +3491447,0.0583903868453309 +3491448,0.0196258343678036 +3491449,0.0696472806971724 +3491450,0.023293325677514 +3491451,0.1339751482009884 +3491452,0.0333814992178587 +3491453,0.0334937870502471 +3491454,0.10070343688097011 +3491455,0.0395590402185916 +3491456,0.19747585583455501 +3491457,0.009251896896766 +3491458,0.026050314411924402 +3491459,0.0350987827166856 +3491460,0.0126487627256517 +3491461,0.032106325003710204 +3491462,0.0100403705927681 +3491463,0.0652192228490995 +3491464,0.032311361036106 +3491465,0.09819244220852849 +3491466,0.0327308140695095 +3491467,0.019085603414238 +3491468,0.0194610711187124 +3491469,0.0194610711187124 +3491470,0.1365048182577647 +3491471,0.0195137909763903 +3491472,0.0168998782823543 +3491473,0.0854422569768886 +3491474,0.0131500735878944 +3491475,0.0396245556817026 +3491476,0.0125786882815974 +3491477,0.0604168767067776 +3491478,0.0231428454467984 +3491479,0.058366523845432096 +3491480,0.0389596128134294 +3491481,0.0232541926032132 +3491482,0.069879977032542 +3491483,0.1339751482009884 +3491484,0.028689611377078 +3491485,0.0336368681529655 +3491486,0.1123007770788612 +3491487,0.1180279757418735 +3491488,0.1967763438568825 +3491489,0.0395590402185916 +3491490,0.0086380196735262 +3491491,0.017338383436126 +3491492,0.0302726102703592 +3491493,0.0324620337699088 +3491494,0.0327308140695095 +3491495,0.065461628139019 +3491496,0.058110385627187 +3491497,0.0194610711187124 +3491498,0.0194610711187124 +3491499,0.0195077652269691 +3491500,0.0511694281262982 +3491501,0.0169717276861685 +3491502,0.0130970014269122 +3491503,0.0130086946025494 +3491504,0.0117910260591768 +3491505,0.0410665205873958 +3491506,0.0164582514655226 +3491507,0.039993971235672096 +3491508,0.0595006110208173 +3491509,0.0694899989334822 +3491510,0.069879977032542 +3491511,0.0334937870502471 +3491512,0.0309365963757157 +3491513,0.08201386773041751 +3491514,0.040658949233500497 +3491515,0.0395590402185916 +3491516,0.0390268321573573 +3491517,0.0432779605261059 +3491518,0.0432035915041797 +3491519,0.0296331385911173 +3491520,0.0981268990590222 +3491521,0.1630226428622325 +3491522,0.0193925516016572 +3491523,0.0194522880202163 +3491524,0.058383801452511 +3491525,0.0973817426502886 +3491526,0.034189522715909096 +3491527,0.0183991886880413 +3491528,0.0339449644334513 +3491529,0.0170045532286167 +3491530,0.0132292339915748 +3491531,0.0121898835879618 +3491532,0.024594562797243202 +3491533,0.0165292532804651 +3491534,0.0235035228565102 +3491535,0.0334937870502471 +3491536,0.0365354391189374 +3491537,0.0336865163188305 +3491538,0.0495084169261416 +3491539,0.0103238866464368 +3491540,0.0395590402185916 +3491541,0.1186313382994562 +3491542,0.026548036052787202 +3491543,0.0086380196735262 +3491544,0.0090975770549175 +3491545,0.0972378625579192 +3491546,0.09819244220852849 +3491547,0.0622938290536022 +3491548,0.0324659043213434 +3491549,0.0510136596858501 +3491550,0.0510136596858501 +3491551,0.034010678002328 +3491552,0.0858429559193508 +3491553,0.0381705808462484 +3491554,0.0121745314663495 +3491555,0.0089518055310016 +3491556,0.2596466556573777 +3491557,0.0370186434255918 +3491558,0.0335388444537644 +3491559,0.1004892669859821 +3491560,0.0395590402185916 +3491561,0.0395590402185916 +3491562,0.197795201092958 +3491563,0.0393122785152288 +3491564,0.026646618819366003 +3491565,0.0176833815799129 +3491566,0.0093942289179493 +3491567,0.0313099613399623 +3491568,0.1307216909974221 +3491569,0.0326063224896353 +3491570,0.0174410774087311 +3491571,0.0510136596858501 +3491572,0.0510216971394735 +3491573,0.0246725552348365 +3491574,0.0368517689112991 +3491575,0.11135505779596619 +3491576,0.03718988224864 +3491577,0.03718988224864 +3491578,0.037064520199429 +3491579,0.0385670129047519 +3491580,0.039169352287982 +3491581,0.0395590402185916 +3491582,0.0087238715046471 +3491583,0.0174264982387691 +3491584,0.1116066998379618 +3491585,0.0431821374533568 +3491586,0.0170740832565434 +3491587,0.0170045532286167 +3491588,0.0510371222146673 +3491589,0.041963214696934203 +3491590,0.0218601642978149 +3491591,0.0131883034333292 +3491592,0.0355450797240288 +3491593,0.03718988224864 +3491594,0.0373103969876869 +3491595,0.0376152799114782 +3491596,0.036050110969064 +3491597,0.09281674867888909 +3491598,0.2193407512823612 +3491599,0.0091779715191341 +3491600,0.0209395737997281 +3491601,0.0676598172306538 +3491602,0.0133243450927285 +3491603,0.0343918486746799 +3491604,0.06834118175144151 +3491605,0.1541942388466291 +3491606,0.0170575618938358 +3491607,0.0670904893671292 +3491608,0.0225781810650376 +3491609,0.0496416989927904 +3491610,0.0745104990428336 +3491611,0.00841574888582 +3491612,0.0089996683150458 +3491613,0.0314299680696173 +3491614,0.038036872307752 +3491615,0.0131040292888885 +3491616,0.0130990914751985 +3491617,0.0329242554980326 +3491618,0.12546727113369718 +3491619,0.028495627543696098 +3491620,0.0201819002715733 +3491621,0.0242814347147941 +3491622,0.0242814347147941 +3491623,0.022610553632193 +3491624,0.0225522685796022 +3491625,0.0451318727384112 +3491626,0.0248964801430702 +3491627,0.07468944042921061 +3491628,0.0101689750297985 +3491629,0.0091374660367025 +3491630,0.0502584882757586 +3491631,0.0380378775298595 +3491632,0.1139207054006175 +3491633,0.0380378775298595 +3491634,0.0129846392506395 +3491635,0.0389269458302819 +3491636,0.020169154344593 +3491637,0.051222117832691705 +3491638,0.0384633416006156 +3491639,0.0376846142366469 +3491640,0.028557975225467 +3491641,0.0296362103285844 +3491642,0.0141673875316202 +3491643,0.0242814347147941 +3491644,0.0236094493083959 +3491645,0.024235891500429 +3491646,0.0225522685796022 +3491647,0.0225739236645978 +3491648,0.0248964801430702 +3491649,0.0248771863974231 +3491650,0.0494382141047066 +3491651,0.0114893206712327 +3491652,0.0575037230653266 +3491653,0.12448473233424409 +3491654,0.1896090656677453 +3491655,0.0129789298731091 +3491656,0.05150027446307 +3491657,0.0342398296245789 +3491658,0.1141331137277125 +3491659,0.11568640663352481 +3491660,0.042491489960318 +3491661,0.0417593451646075 +3491662,0.0240953509768915 +3491663,0.0242814347147941 +3491664,0.0218634543901606 +3491665,0.0222442492917714 +3491666,0.11275964808602221 +3491667,0.0676568191605787 +3491668,0.0451045371592044 +3491669,0.0453183641212367 +3491670,0.0248964801430702 +3491671,0.0746894349518039 +3491672,0.0246998411543165 +3491673,0.0113961435854434 +3491674,0.0121598304006385 +3491675,0.0132049116331422 +3491676,0.0228805737674427 +3491677,0.1141136325895785 +3491678,0.0376829567726833 +3491679,0.0174146736440803 +3491680,0.0165348670178718 +3491681,0.1929216273128985 +3491682,0.2689990115107402 +3491683,0.0383602719476583 +3491684,0.0425011657103182 +3491685,0.0425249203695373 +3491686,0.0484169904764414 +3491687,0.0242205630842086 +3491688,0.0204357344608445 +3491689,0.0120715150700567 +3491690,0.0227273641809815 +3491691,0.0224055261852179 +3491692,0.0672803527052041 +3491693,0.0676616265898035 +3491694,0.0746643389029395 +3491695,0.0746632766055783 +3491696,0.0248964801430702 +3491697,0.0247632012149251 +3491698,0.03450533696593 +3491699,0.0513043829872512 +3491700,0.0380378775298595 +3491701,0.0380378775298595 +3491702,0.0754033389998771 +3491703,0.0370182724760109 +3491704,0.0173687733836694 +3491705,0.0513667312286736 +3491706,0.2238855083846896 +3491707,0.0771686509251594 +3491708,0.0139727839160472 +3491709,0.0135530644442461 +3491710,0.0176134585414693 +3491711,0.0188753504025884 +3491712,0.048300394404962005 +3491713,0.0676201450050467 +3491714,0.1126350218904851 +3491715,0.0248964801430702 +3491716,0.0248964801430702 +3491717,0.07468944042921061 +3491718,0.0248661995850392 +3491719,0.0144328013466037 +3491720,0.0380378775298595 +3491721,0.1141136325895785 +3491722,0.0371531154165543 +3491723,0.0380378775298595 +3491724,0.0153924394940213 +3491725,0.0386223424410265 +3491726,0.0715169954265695 +3491727,0.0233635982602305 +3491728,0.0384853281097268 +3491729,0.06862127310597921 +3491730,0.051318079213305 +3491731,0.0347889657594648 +3491732,0.0198468965456583 +3491733,0.0168601993320088 +3491734,0.0357784582356767 +3491735,0.0222841359422486 +3491736,0.0675448105905206 +3491737,0.0218953204547733 +3491738,0.0993062138463876 +3491739,0.0248964801430702 +3491740,0.0248964801430702 +3491741,0.0248964801430702 +3491742,0.0735250767268329 +3491743,0.0754612876386356 +3491744,0.0377959350020108 +3491745,0.0380378775298595 +3491746,0.076075755059719 +3491747,0.0359842790339795 +3491748,0.07569913497973729 +3491749,0.0306971935704816 +3491750,0.0154025987281465 +3491751,0.0890605123582633 +3491752,0.0126942954957485 +3491753,0.0142660445212441 +3491754,0.0142446747473516 +3491755,0.0783834431050913 +3491756,0.0259043742964255 +3491757,0.0387466425520592 +3491758,0.034192353946860904 +3491759,0.0198294798738364 +3491760,0.0198668813319229 +3491761,0.0168000552803277 +3491762,0.0156414257473654 +3491763,0.0120243919372003 +3491764,0.011926608376196 +3491765,0.0224991708868649 +3491766,0.074560186911019 +3491767,0.0248889137731025 +3491768,0.0742223747336136 +3491769,0.0496097470692473 +3491770,0.0745568705570531 +3491771,0.0248964801430702 +3491772,0.18988352086872712 +3491773,0.0380378775298595 +3491774,0.0771383767721972 +3491775,0.0460488093840077 +3491776,0.0127529726179516 +3491777,0.0126823950421726 +3491778,0.0144871905468251 +3491779,0.0142359770834445 +3491780,0.0785850422305974 +3491781,0.0261159762740135 +3491782,0.0198266839268788 +3491783,0.0596344961172961 +3491784,0.0490700802965964 +3491785,0.0509034102819795 +3491786,0.039969405411237 +3491787,0.0133280931040644 +3491788,0.0119180614128708 +3491789,0.0232080480178267 +3491790,0.0247385489218667 +3491791,0.1651260391333417 +3491792,0.0381183911133688 +3491793,0.0379290439319506 +3491794,0.1137389700140355 +3491795,0.0615822970867156 +3491796,0.0153955742716789 +3491797,0.0127215154021327 +3491798,0.0711995922572404 +3491799,0.014240055875936 +3491800,0.0781615469056372 +3491801,0.0260516570547827 +3491802,0.019785950984088 +3491803,0.09925074652695101 +3491804,0.0173684856219348 +3491805,0.034651540937193595 +3491806,0.0266289125849337 +3491807,0.0133280931040644 +3491808,0.0538727706449425 +3491809,0.0557977832746992 +3491810,0.0437825623756701 +3491811,0.0745989661146324 +3491812,0.037566762101582 +3491813,0.037062890744308 +3491814,0.0307238284770291 +3491815,0.0153955742716789 +3491816,0.0306673670025146 +3491817,0.0569589725030889 +3491818,0.073515448567226 +3491819,0.0322150777693266 +3491820,0.0252653083099306 +3491821,0.0199038853144939 +3491822,0.059692078293998696 +3491823,0.017275950892012 +3491824,0.0521272347382609 +3491825,0.0133207240406064 +3491826,0.0400137273124461 +3491827,0.0133280931040644 +3491828,0.0127115686531903 +3491829,0.0355111562039765 +3491830,0.2734613600721425 +3491831,0.0445808327583617 +3491832,0.0150361032053136 +3491833,0.0147024481367372 +3491834,0.08840358746097289 +3491835,0.0177637875952054 +3491836,0.015208239500471 +3491837,0.0140990941688946 +3491838,0.0147680162771342 +3491839,0.0173644330352544 +3491840,0.017464081007418 +3491841,0.0174962358385001 +3491842,0.06669555072390661 +3491843,0.0408090924567832 +3491844,0.0132153350983557 +3491845,0.0235931333154438 +3491846,0.0458669774234294 +3491847,0.0458669774234294 +3491848,0.028800932280345998 +3491849,0.0143799993932831 +3491850,0.0437292084964159 +3491851,0.0437185165150428 +3491852,0.0884133770243309 +3491853,0.0176030957795456 +3491854,0.0177115589354179 +3491855,0.0152051954704386 +3491856,0.0151984883394602 +3491857,0.0132463133117969 +3491858,0.0122052672181571 +3491859,0.0147395914159224 +3491860,0.051985222023829394 +3491861,0.0519678939525999 +3491862,0.0133639014316761 +3491863,0.0133658568139854 +3491864,0.069956125397474 +3491865,0.0273515837792022 +3491866,0.0127440934991464 +3491867,0.0240282517802236 +3491868,0.0356858419177774 +3491869,0.0917214612576435 +3491870,0.1375472470582301 +3491871,0.0458669774234294 +3491872,0.045809799855525 +3491873,0.10068874894790031 +3491874,0.0143800903174538 +3491875,0.0145752137174195 +3491876,0.07289133197039979 +3491877,0.051490326938118905 +3491878,0.0153429326699626 +3491879,0.015205638281494 +3491880,0.0130884579085936 +3491881,0.039146191216144204 +3491882,0.0119250523312496 +3491883,0.0119004523092684 +3491884,0.0187606737041515 +3491885,0.020817208756652 +3491886,0.0140103938193857 +3491887,0.0679176251670961 +3491888,0.0136873683021951 +3491889,0.0131413545803615 +3491890,0.0458669774234294 +3491891,0.0884083342553108 +3491892,0.0458669774234294 +3491893,0.1376009322702882 +3491894,0.0431624671317564 +3491895,0.014578390866518 +3491896,0.0437080950300051 +3491897,0.1258463166888804 +3491898,0.0139902203084802 +3491899,0.0145785568131714 +3491900,0.0145911852601451 +3491901,0.0130766229308533 +3491902,0.012990393881403 +3491903,0.059505974613628804 +3491904,0.0119122450691989 +3491905,0.0189982527083405 +3491906,0.0571636498058867 +3491907,0.0427918775479178 +3491908,0.0213172721445205 +3491909,0.0685042769273211 +3491910,0.013589175907613 +3491911,0.229334887117147 +3491912,0.1373797133919204 +3491913,0.0452516260406139 +3491914,0.014578390866518 +3491915,0.0145742254598308 +3491916,0.0145765136174414 +3491917,0.0413375679271559 +3491918,0.027801063377351 +3491919,0.0437627288603481 +3491920,0.043732728244978 +3491921,0.0147646961237741 +3491922,0.0126241168306405 +3491923,0.0118951177109855 +3491924,0.035591596083433596 +3491925,0.0119005755021369 +3491926,0.0189265545428953 +3491927,0.0380705627550695 +3491928,0.0428964907221553 +3491929,0.0214909122120147 +3491930,0.0135915629370725 +3491931,0.040735771178070104 +3491932,0.0458669774234294 +3491933,0.0458669774234294 +3491934,0.045855325028267 +3491935,0.014578390866518 +3491936,0.014578390866518 +3491937,0.0145707154723607 +3491938,0.0068341666014835 +3491939,0.0387392117090084 +3491940,0.0723480199158569 +3491941,0.0437266009767693 +3491942,0.0118826285816649 +3491943,0.0233103222331683 +3491944,0.0466623979992985 +3491945,0.0119028477573136 +3491946,0.0642183329288505 +3491947,0.107352523725574 +3491948,0.0439199141749897 +3491949,0.13720415089533738 +3491950,0.0454349765951318 +3491951,0.1374932471958659 +3491952,0.0436349007937219 +3491953,0.0145796921714168 +3491954,0.014578390866518 +3491955,0.0437342221727273 +3491956,0.0132103832438588 +3491957,0.0200845003881772 +3491958,0.0612079555544893 +3491959,0.015308723784983 +3491960,0.0357445389482548 +3491961,0.0106516887561042 +3491962,0.0144472430028951 +3491963,0.0291090354238559 +3491964,0.0213432707101213 +3491965,0.021521686418738 +3491966,0.0142336206066294 +3491967,0.0333194033052656 +3491968,0.0449637805202585 +3491969,0.0899846832852296 +3491970,0.0455323597616469 +3491971,0.014569399393374 +3491972,0.0145630827981828 +3491973,0.0287817374089714 +3491974,0.0145588925731238 +3491975,0.0198469386629924 +3491976,0.0330298156969949 +3491977,0.0076446617010667 +3491978,0.0232054329645241 +3491979,0.0229630856774745 +3491980,0.0229630856774745 +3491981,0.0353840199040903 +3491982,0.0119287592676916 +3491983,0.0100018512457609 +3491984,0.0102910301099004 +3491985,0.0144444753898358 +3491986,0.040148837055524106 +3491987,0.0144431611163974 +3491988,0.0361833311617374 +3491989,0.0338342788561859 +3491990,0.0424925603405728 +3491991,0.014578390866518 +3491992,0.0331268502075491 +3491993,0.0261836823200522 +3491994,0.0263992306243801 +3491995,0.03545187397662 +3491996,0.0118260538069422 +3491997,0.010010326071492 +3491998,0.0300055537372827 +3491999,0.050009256228804505 +3492000,0.020093065134345202 +3492001,0.0133797947285867 +3492002,0.0139834386034502 +3492003,0.1594212339503056 +3492004,0.18034810564678472 +3492005,0.1462960658611634 +3492006,0.035014919127913796 +3492007,0.0798738048053636 +3492008,0.0200037024915218 +3492009,0.0400074049830436 +3492010,0.0400074049830436 +3492011,0.0675417296671731 +3492012,0.0099962422449222 +3492013,0.0099761556360058 +3492014,0.013559604795005 +3492015,0.0635034526330199 +3492016,0.0150781081256505 +3492017,0.0099045232990315 +3492018,0.0498954969392303 +3492019,0.0178673402715262 +3492020,0.039725681902913604 +3492021,0.20094434916973108 +3492022,0.0664642882487136 +3492023,0.013274744931893 +3492024,0.0386495973406628 +3492025,0.0496425050052621 +3492026,0.0099970095510026 +3492027,0.0194962450751987 +3492028,0.0138874455138676 +3492029,0.0669814497232437 +3492030,0.0616441796817302 +3492031,0.065357832437966 +3492032,0.0128951209940149 +3492033,0.0129127165360915 +3492034,0.0201809508293979 +3492035,0.0201956887310606 +3492036,0.0669845787264528 +3492037,0.0665973886219433 +3492038,0.10177201688795101 +3492039,0.1979319480390571 +3492040,0.0129883058946348 +3492041,0.0130235380391254 +3492042,0.1339805416409688 +3492043,0.19931162722393309 +3492044,0.0186667442878687 +3492045,0.056826795326690396 +3492046,0.0629311810500839 +3492047,0.0658644860719664 +3492048,0.0661022444579575 +3492049,0.0745332694761691 +3492050,0.018344865289711 +3492051,0.050742248635234896 +3492052,0.0097454250051647 +3492053,0.6791678816080091 +3492054,0.2702331311091708 +3492055,0.0558426757892498 +3492056,0.0559523183921246 +3492057,0.0097454162314534 +3492058,0.009765054214569 +3492059,0.0099174408139254 +3492060,0.3948012130296861 +3492061,0.26682312529193564 +3492062,0.0677835915065365 +3492063,0.0186963025480508 +3492064,0.018526629005383 +3492065,0.0097503006301006 +3492066,0.029258470274701298 +3492067,0.0766559108322203 +3492068,0.0519778281450271 +3492069,0.018502111058181 +3492070,0.0195000225674007 +3492071,0.0097775984877389 +3492072,0.0730602670931456 +3492073,0.01158113063021 +3492074,0.3629985492512285 +3492075,0.209141847729519 +3492076,0.0101467405820823 +3492077,0.039516314416634 +3492078,0.3118669688701626 +3492079,0.154921150944335 +3492080,0.0098798312246799 +3492081,0.0098798312246799 +3492082,0.0098774709159015 +3492083,0.2079113125801084 +3492084,0.5192620253306501 +3492085,0.0516379773928942 +3492086,0.0103868172562451 +3492087,0.0098798312246799 +3492088,0.0197590121024283 +3492089,0.039502452095652 +3492090,0.046460656826016 +3492091,0.2579555518662062 +3492092,0.029639493674039702 +3492093,0.0316814830299273 +3492094,0.08891411745640421 +3492095,0.0197417513610194 +3492096,0.0305776630363679 +3492097,0.0487515748910127 +3492098,0.101077111103972 +3492099,0.0519778281450271 +3492100,0.0098776473848101 +3492101,0.08872243833907151 +3492102,0.049205921791320203 +3492103,0.0451357215642929 +3492104,0.0904008326259068 +3492105,0.0565078818917453 +3492106,0.047786844894289804 +3492107,0.0657743409880797 +3492108,0.0493431287649952 +3492109,0.0098798312246799 +3492110,0.537048919680999 +3492111,0.135244560878033 +3492112,0.1127517476764753 +3492113,0.0159289482980966 +3492114,0.0098798312246799 +3492115,0.0395193248987196 +3492116,0.0197596624493598 +3492117,0.029639493674039702 +3492118,0.042115678536876804 +3492119,0.0433299696065095 +3492120,0.016577853073484 +3492121,0.047810152715998804 +3492122,0.0480227036063768 +3492123,0.0395193248987196 +3492124,0.0098798312246799 +3492125,0.0098798312246799 +3492126,0.0098798312246799 +3492127,0.0197596624493598 +3492128,0.0197574182472698 +3492129,0.0399163187831863 +3492130,0.0428189568909112 +3492131,0.0100235594300359 +3492132,0.0298456417489887 +3492133,0.0293789112486759 +3492134,0.0197469212494455 +3492135,0.0299860867760488 +3492136,0.0098814185388507 +3492137,0.019772737945755 +3492138,0.1281372846880354 +3492139,0.0383986193196316 +3492140,0.0427385734365038 +3492141,0.298863579156125 +3492142,0.0097458255021852 +3492143,0.0591218326147409 +3492144,0.173399249608152 +3492145,0.0162437927816422 +3492146,0.026054714172444 +3492147,0.036339558166266196 +3492148,0.0425024830222034 +3492149,0.0353090167045593 +3492150,0.1402841593258181 +3492151,0.020804077415079898 +3492152,0.0258235183518052 +3492153,0.031126420477845498 +3492154,0.0053970138675836 +3492155,0.0353090167045593 +3492156,0.0353090167045593 +3492157,0.0070111386051093 +3492158,0.0328657300506622 +3492159,0.0065356861966198 +3492160,0.0469901610874596 +3492161,0.0684045755048324 +3492162,0.0350111562961808 +3492163,0.1059516002998584 +3492164,0.1059270501136779 +3492165,0.014121597623814899 +3492166,0.0654592284677104 +3492167,0.0051992711306852 +3492168,0.0176376812323698 +3492169,0.1765148111003968 +3492170,0.1766818921278023 +3492171,0.1056371876965285 +3492172,0.0353090167045593 +3492173,0.0072162421670698 +3492174,0.034446274462447704 +3492175,0.0690495023627069 +3492176,0.0353090167045593 +3492177,0.1058903774371298 +3492178,0.0353090167045593 +3492179,0.1765450835227965 +3492180,0.0353090167045593 +3492181,0.1412360668182372 +3492182,0.2469754373297008 +3492183,0.2118541002273558 +3492184,0.105234907997683 +3492185,0.0353090167045593 +3492186,0.0353090167045593 +3492187,0.105118361797353 +3492188,0.0353090167045593 +3492189,0.10582217217993889 +3492190,0.1412360668182372 +3492191,0.0353090167045593 +3492192,0.0353090167045593 +3492193,0.1742846991462918 +3492194,0.13950128361500208 +3492195,0.0353090167045593 +3492196,0.1058546327608365 +3492197,0.0706180334091186 +3492198,0.0333882472737682 +3492199,0.1058979740746579 +3492200,0.1059270501136779 +3492201,0.1765450835227965 +3492202,0.3868973803901324 +3492203,0.10500038549357729 +3492204,0.0350418149870003 +3492205,0.0632049867791019 +3492206,0.0977224668752525 +3492207,0.0493467166449989 +3492208,0.0165985319763422 +3492209,0.0574468629625 +3492210,0.096116665132143 +3492211,0.049666414584264906 +3492212,0.0497604200777948 +3492213,0.0192788857966661 +3492214,0.019109053847567 +3492215,0.049521599982824 +3492216,0.0165637292145871 +3492217,0.0192788857966661 +3492218,0.0576894720534891 +3492219,0.1148422168636567 +3492220,0.0165542015293069 +3492221,0.033254696488481006 +3492222,0.0961852602466116 +3492223,0.0578366573899983 +3492224,0.0938610431889516 +3492225,0.0108982246744419 +3492226,0.019108371728896 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001160900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001160900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001160900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001161900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001161900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001161900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001162000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001162000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001162000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001162100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001162100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001162100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001162200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001162200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001162200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001162300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001162300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..e9a33ac15 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001162300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.062357197619316 +3490292,0.1007024402462651 +3490293,0.0152761489152908 +3490316,0.0305522978305816 +3490317,0.076380744576454 +3490332,0.0458284467458724 +3490333,0.0468873098068017 +3490334,0.0926304803717683 +3490335,0.0152761489152908 +3490348,0.0156961031673786 +3490349,0.0147569865270979 +3490350,0.0152761489152908 +3490351,0.0458284467458724 +3490374,0.0308910333767206 +3490375,0.0874175649910742 +3490376,0.090460068888134 +3490377,0.0304526765567837 +3490378,0.0305522978305816 +3490379,0.1378006242320139 +3490396,0.0145355935315713 +3490397,0.0290427934378384 +3490398,0.0458276502815507 +3490399,0.0305522978305816 +3490418,0.09194298646912849 +3490419,0.0152761489152908 +3490437,0.0152921365498404 +3490438,0.07667400375811059 +3490439,0.0299802910206924 +3490440,0.0152761370165294 +3490457,0.0435686707543476 +3490458,0.0440674308005075 +3490459,0.0305522978305816 +3490460,0.0721783975696603 +3490476,0.030475289454633 +3490477,0.045497614265570197 +3490478,0.0190707389265298 +3490479,0.0190707389265298 +3490499,0.0734372604998947 +3490500,0.0095353694632649 +3490517,0.0157390398461768 +3490518,0.0280848665742458 +3490519,0.0381414778530596 +3490520,0.0476768473163245 +3490544,0.0095353694632649 +3490545,0.0095476247611248 +3490546,0.0190707389265298 +3490547,0.0095026033685701 +3490573,0.028496349378281702 +3490574,0.0095353694632649 +3490575,0.009265213578678 +3490576,0.0185080058156672 +3490597,0.0253085041206901 +3490598,0.024526266898533898 +3490599,0.0098374471438406 +3490600,0.0313265513221297 +3490601,0.0161141958798296 +3490602,0.0161964804689687 +3490603,0.0179204612914874 +3490604,0.0177492390472975 +3490623,0.0080499527975916 +3490624,0.0160999055951832 +3490625,0.0142323538881457 +3490626,0.0526520790865942 +3490639,0.0080499527975916 +3490640,0.0321998111903664 +3490641,0.016572445470528198 +3490642,0.042302494640559796 +3490643,0.0710786789245182 +3490644,0.0175820905715227 +3490645,0.0175212349065797 +3490658,0.0160999055951832 +3490659,0.0080499527975916 +3490660,0.0994969551381525 +3490661,0.0427636651730733 +3490662,0.12306111274386039 +3490663,0.0175820905715227 +3490664,0.0174849989533308 +3490665,0.0526113985895289 +3490681,0.040587605177122996 +3490682,0.0080499527975916 +3490683,0.0080499527975916 +3490684,0.0160999055951832 +3490685,0.0139596950677875 +3490686,0.0142601677535003 +3490687,0.0176763963992282 +3490688,0.0176300549856783 +3490689,0.0175541782144078 +3490690,0.0175820905715227 +3490707,0.0160999055951832 +3490708,0.0080499527975916 +3490709,0.0082536155646623 +3490710,0.0080499527975916 +3490725,0.008035309652905 +3490726,0.0080499527975916 +3490727,0.0241498583927748 +3490728,0.032302284861263096 +3490736,0.0564154165530167 +3490737,0.0404838960445099 +3490738,0.1055442979812931 +3490739,0.0432110916133282 +3490747,0.2923045350995138 +3490748,0.0102767724050298 +3490757,0.0297628011437375 +3490758,0.023480948141211898 +3490771,0.022314833612051402 +3490772,0.0074470168517078 +3490773,0.007914588222547 +3490774,0.0148815979816526 +3490787,0.0146641011470136 +3490788,0.007800813324687 +3490789,0.0447673474290328 +3490790,0.06445275126766929 +3490805,0.0073619324816451 +3490806,0.0221621776565425 +3490807,0.0143983205780386 +3490808,0.0404428642769186 +3490809,0.0092941803120438 +3490810,0.009461254318103 +3490827,0.0080717396586157 +3490828,0.0083465952591678 +3490842,0.0243854935601664 +3490843,0.008126625791192 +3490844,0.0082807949852986 +3490845,0.025163972692894 +3490856,0.008126625791192 +3490857,0.0087105135997479 +3490858,0.008126625791192 +3490859,0.024571074889965197 +3490860,0.0084307640790939 +3490861,0.0420937155253953 +3490875,0.008126625791192 +3490876,0.008126625791192 +3490877,0.0260623786832435 +3490878,0.0088448178222521 +3490879,0.0168615281581878 +3490892,0.024379877373575998 +3490893,0.024379877373575998 +3490894,0.0084307640790939 +3490895,0.0091174872236668 +3490900,0.0081215005001954 +3490901,0.007830980773953 +3490902,0.0246137912042506 +3490903,0.0243811299726295 +3490904,0.0295689052414061 +3490905,0.026016825199357 +3490906,0.0278634216362296 +3490907,0.0701633833092179 +3490916,0.0244216711965349 +3490917,0.0081919775527039 +3490918,0.0081162982013569 +3490919,0.0081282528144728 +3490920,0.0082358564566851 +3490921,0.018040880465261 +3490922,0.0255786581621021 +3490923,0.1630863175006336 +3490924,0.010365433336776 +3490925,0.0480278696166194 +3490926,0.127092291370481 +3490935,0.0077193467405994 +3490936,0.0086349819630706 +3490937,0.0244016206734229 +3490938,0.0232691692941456 +3490939,0.0296407594466818 +3490940,0.0294134763977821 +3490941,0.0144603923106569 +3490942,0.0142698601808565 +3490953,0.0080552803094676 +3490954,0.0081281233973874 +3490955,0.007862066889483 +3490956,0.0100212314351331 +3490957,0.0175575241308814 +3490958,0.0166035500161342 +3490959,0.0294588720425961 +3490960,0.0294343909018055 +3490966,0.0225430349819361 +3490967,0.0075143449939787 +3490968,0.0128410300844368 +3490969,0.0141587643717164 +3490970,0.1219273772342216 +3490971,0.0171054999143648 +3490972,0.0631952764185152 +3490973,0.0158182251057567 +3490974,0.0098196240141987 +3490975,0.029541421210506402 +3490980,0.0226217162936107 +3490981,0.0075227258567615 +3490982,0.0075372583801192 +3490983,0.0533183936991233 +3490984,0.0705189860968693 +3490985,0.15628579110100999 +3490986,0.0172906476035195 +3490987,0.0519618177270218 +3490988,0.0514667938606153 +3490989,0.0159304125773366 +3490990,0.0474186764813148 +3490991,0.0157691094811628 +3490992,0.0098196240141987 +3490993,0.0098196240141987 +3490994,0.0322425079130238 +3490995,0.0098196240141987 +3490999,0.007532189724663 +3491000,0.0076271569846318 +3491001,0.0137435120844518 +3491002,0.0229632502505463 +3491003,0.0142365391390509 +3491004,0.0142659102666169 +3491005,0.051990453711170004 +3491006,0.0861990569277836 +3491007,0.0307137146759485 +3491008,0.0337448617528666 +3491009,0.0491500252854858 +3491010,0.029341519983468803 +3491013,0.010242287221018 +3491014,0.0119457455984291 +3491015,0.051866269777506496 +3491016,0.0518600482624803 +3491017,0.16929850477492359 +3491018,0.0224439319609806 +3491019,0.0516152153913026 +3491020,0.0098196240141987 +3491021,0.0153045607730746 +3491022,0.0093395974290927 +3491023,0.0124988625398267 +3491024,0.0084299032876665 +3491025,0.0573961326318838 +3491026,0.0188618639010331 +3491027,0.0311319712796981 +3491028,0.0385325088605936 +3491029,0.0076522803865373 +3491030,0.0388498982309021 +3491031,0.0403683547762862 +3491032,0.0294048270223747 +3491033,0.0155490882877773 +3491034,0.0125758945941925 +3491035,0.0124990216761406 +3491036,0.0197951085461303 +3491037,0.0188650079071521 +3491038,0.0391832971592487 +3491039,0.2086371537416996 +3491040,0.0076522803865373 +3491041,0.0229568411596119 +3491042,0.0157188866287469 +3491043,0.015186754609026 +3491044,0.0124423531533663 +3491045,0.0627218951727814 +3491046,0.0188650079071521 +3491047,0.0188356116894647 +3491048,0.0390728751090944 +3491049,0.0390380658209323 +3491050,0.1268775432567994 +3491051,0.0422827442932252 +3491052,0.0076522803865373 +3491053,0.0385613599380907 +3491054,0.047117601172889 +3491055,0.0468974001192402 +3491056,0.0124742498361526 +3491057,0.0883563484949196 +3491058,0.0188650079071521 +3491059,0.058020092240087195 +3491060,0.1952543678422348 +3491061,0.0390380658209323 +3491062,0.11665885809964979 +3491063,0.1941499101127831 +3491064,0.0422995383096427 +3491065,0.2116147770036337 +3491066,0.0229568411596119 +3491067,0.0076522803865373 +3491068,0.0089261983997947 +3491069,0.0077374022092999 +3491070,0.0130571562539926 +3491071,0.031424131703612995 +3491072,0.1326938155116944 +3491073,0.0565786126202948 +3491074,0.0390380658209323 +3491075,0.3503480247923929 +3491076,0.1269077701501764 +3491077,0.0422915824843001 +3491078,0.0724007059557384 +3491079,0.0309497559772586 +3491080,0.0233857010792815 +3491081,0.0076964973839414 +3491082,0.0177908796356765 +3491083,0.0188283213994674 +3491084,0.0188650079071521 +3491085,0.0188650079071521 +3491086,0.1172648402027267 +3491087,0.1171523491088835 +3491088,0.07568626097891759 +3491089,0.1165896732258012 +3491090,0.0400153718934819 +3491091,0.0417007532654842 +3491092,0.0231638866368736 +3491093,0.0078437957563144 +3491094,0.0565950237214563 +3491095,0.0942581797250579 +3491096,0.116133374139906 +3491097,0.0386178625928046 +3491098,0.1112371346678204 +3491099,0.036062237926504 +3491100,0.0407456435290589 +3491101,0.0373916023401783 +3491102,0.0687946694503993 +3491103,0.0942429065113104 +3491104,0.094310163062576 +3491105,0.0645348966980937 +3491106,0.1388905396146426 +3491107,0.088153382677265 +3491108,0.0527656994895995 +3491109,0.124278162983116 +3491110,0.041639495033215304 +3491111,0.06024301323549 +3491112,0.0073941848240792 +3491113,0.1093946029970144 +3491114,0.0775180865813008 +3491115,0.1309265019804948 +3491116,0.0941283878651595 +3491117,0.0209959242137164 +3491118,0.1035215023054311 +3491119,0.1719902845686728 +3491120,0.0862119863157485 +3491121,0.0524334446903157 +3491122,0.0202720295068211 +3491123,0.0541002615387434 +3491124,0.0596278220714273 +3491125,0.0224963072101711 +3491126,0.1368894772266997 +3491127,0.0076877386191439 +3491128,0.05339629670873 +3491129,0.0154327029661688 +3491130,0.0155562981963157 +3491131,0.0332743332751751 +3491132,0.048081767139395895 +3491133,0.0206731762737035 +3491134,0.0206645275712178 +3491135,0.0287159401923418 +3491136,0.3154771448256149 +3491137,0.1573410038617023 +3491138,0.1672936933000876 +3491139,0.1824259234784273 +3491140,0.0163620902848702 +3491141,0.146372545752118 +3491142,0.0074279835796251 +3491143,0.0083074884619313 +3491144,0.048676228790803 +3491145,0.0155562981963157 +3491146,0.083044118473788 +3491147,0.0206595329317872 +3491148,0.0287159401923418 +3491149,0.0174572374671697 +3491150,0.0174795386119217 +3491151,0.0563725204362318 +3491152,0.0556021019686479 +3491153,0.0132267279550433 +3491154,0.0406576586072379 +3491155,0.1016551495469107 +3491156,0.1732122837046292 +3491157,0.0980618008788017 +3491158,0.0829166142888478 +3491159,0.0419257491285233 +3491160,0.0618786606083353 +3491161,0.1148637607693672 +3491162,0.0287159401923418 +3491163,0.0535027433339218 +3491164,0.0538728064867878 +3491165,0.1686152635999231 +3491166,0.0555454390948225 +3491167,0.040709079185499 +3491168,0.0397089093493322 +3491169,0.1020818646711335 +3491170,0.0170141886919736 +3491171,0.2008839229819823 +3491172,0.0478471838985146 +3491173,0.0253357693761533 +3491174,0.025405533721331402 +3491175,0.0208450349065052 +3491176,0.0857152929359763 +3491177,0.027851246075011 +3491178,0.0287159401923418 +3491179,0.0861478205770254 +3491180,0.0179946078567688 +3491181,0.2248511776727255 +3491182,0.1686595555302159 +3491183,0.0941727829350348 +3491184,0.11934140628124601 +3491185,0.0170062833079899 +3491186,0.0174105332179313 +3491187,0.0680567547678944 +3491188,0.1037994408563309 +3491189,0.503122745427646 +3491190,0.14996028054707689 +3491191,0.0088733584376873 +3491192,0.0258945180810157 +3491193,0.0287159401923418 +3491194,0.0287159401923418 +3491195,0.0487105191691548 +3491196,0.5038608142768504 +3491197,0.0960195714245865 +3491198,0.10584552217521451 +3491199,0.0857638057528032 +3491200,0.07115018942636869 +3491201,0.2508135813950908 +3491202,0.1006457433104514 +3491203,0.0105200533043293 +3491204,0.0425132660769258 +3491205,0.0818107137540971 +3491206,0.0287159401923418 +3491207,0.1147346621034941 +3491208,0.0572347135234589 +3491209,0.036804617131763 +3491210,0.028297943637301 +3491211,0.0946609402603395 +3491212,0.0353507430433513 +3491213,0.3494210440093923 +3491214,0.15071083279494268 +3491215,0.0503228716552257 +3491216,0.0503228716552257 +3491217,0.042300600873020705 +3491218,0.0434046260755763 +3491219,0.0560902812485658 +3491220,0.2010115813463926 +3491221,0.1410116220594807 +3491222,0.1148637607693672 +3491223,0.0364300722863174 +3491224,0.0367009723585666 +3491225,0.253565033726153 +3491226,0.0319590504330508 +3491227,0.0322714410722255 +3491228,0.06470032852874699 +3491229,0.069200685246961 +3491230,0.0345429601748821 +3491231,0.1509686149656771 +3491232,0.0500350164056126 +3491233,0.0183981107891788 +3491234,0.0175355552825168 +3491235,0.3153087094193238 +3491236,0.0287076223640643 +3491237,0.051073982552949995 +3491238,0.0287091020324244 +3491239,0.0369861932353102 +3491240,0.0364727052608876 +3491241,0.0282396040290107 +3491242,0.0324141053048766 +3491243,0.0100854272022843 +3491244,0.0102064246467939 +3491245,0.0963855252327416 +3491246,0.16135720536112752 +3491247,0.0591928699216744 +3491248,0.0113652748987078 +3491249,0.0503228716552257 +3491250,0.0503228716552257 +3491251,0.0086167035580292 +3491252,0.1423642539307401 +3491253,0.0287159401923418 +3491254,0.0286947492968257 +3491255,0.1094598227097293 +3491256,0.0729729831218718 +3491257,0.1046403605819245 +3491258,0.0718656844541538 +3491259,0.0171525277401502 +3491260,0.0180925991802917 +3491261,0.1003426400164083 +3491262,0.1015120121991101 +3491263,0.0100854272022843 +3491264,0.0202773572183153 +3491265,0.129085764288902 +3491266,0.09645955012179541 +3491267,0.0322714410722255 +3491268,0.0324934664257954 +3491269,0.0810306044789815 +3491270,0.056915694005148704 +3491271,0.1496979556810352 +3491272,0.0503228716552257 +3491273,0.3019372299313542 +3491274,0.3501645225384551 +3491275,0.141855631999674 +3491276,0.1130483856893747 +3491277,0.0364864915609359 +3491278,0.0254698992917567 +3491279,0.0156082883096432 +3491280,0.0155032292652358 +3491281,0.0158233935096492 +3491282,0.0162938149472129 +3491283,0.0661836720152636 +3491284,0.1015178729656967 +3491285,0.1015009892027528 +3491286,0.0307488238866768 +3491287,0.0308796404917525 +3491288,0.0322714410722255 +3491289,0.0645247477550519 +3491290,0.0827417112351721 +3491291,0.0248629425833142 +3491292,0.200649957477681 +3491293,0.0499789596211433 +3491294,0.0477894707756356 +3491295,0.086125816573671 +3491296,0.2004841777986051 +3491297,0.18261080761416632 +3491298,0.1091412379222496 +3491299,0.0160629749697577 +3491300,0.0275471241445417 +3491301,0.015470448296201 +3491302,0.0467125138446 +3491303,0.048019649363154795 +3491304,0.0162312366117456 +3491305,0.0162954719066866 +3491306,0.08160877449583889 +3491307,0.0290652078346815 +3491308,0.0338498392968491 +3491309,0.1015219974842716 +3491310,0.020841056650310302 +3491311,0.129085764288902 +3491312,0.0322714410722255 +3491313,0.030862151472955998 +3491314,0.0576355918153201 +3491315,0.0280611860442412 +3491316,0.0861478205770254 +3491317,0.0287159401923418 +3491318,0.031996895564160896 +3491319,0.0159625834059794 +3491320,0.0159565320695611 +3491321,0.0159545298665761 +3491322,0.0411814398311525 +3491323,0.1372455695820446 +3491324,0.0310084299605844 +3491325,0.0154825434520797 +3491326,0.0196018572820464 +3491327,0.0210689253332528 +3491328,0.06522264463847699 +3491329,0.0163241047412157 +3491330,0.0208646703184579 +3491331,0.0265310301727586 +3491332,0.0968143232166765 +3491333,0.0322714410722255 +3491334,0.3549858517944805 +3491335,0.1288422390546643 +3491336,0.026976081247308603 +3491337,0.027570611228428202 +3491338,0.0837616076536539 +3491339,0.0477158661066248 +3491340,0.0287159401923418 +3491341,0.0861478205770254 +3491342,0.0159545298665761 +3491343,0.0797726493328805 +3491344,0.0279169753800325 +3491345,0.0280558674091301 +3491346,0.0588322835163704 +3491347,0.059096007370492795 +3491348,0.0213695835605971 +3491349,0.06420627795159811 +3491350,0.0490723724989489 +3491351,0.0489723142236471 +3491352,0.1187246970484608 +3491353,0.0169297945668046 +3491354,0.0165333237612134 +3491355,0.033230274454261396 +3491356,0.09665829883215471 +3491357,0.09395682344407211 +3491358,0.0314697829615399 +3491359,0.0322714410722255 +3491360,0.45158294828203405 +3491361,0.0968143232166765 +3491362,0.0187496322760511 +3491363,0.0200281541482261 +3491364,0.0186370630624201 +3491365,0.019045570946075098 +3491366,0.0175912157713225 +3491367,0.0125824730568256 +3491368,0.0088433008320293 +3491369,0.1148531389566466 +3491370,0.0287159401923418 +3491371,0.0861477241312857 +3491372,0.057276111174965505 +3491373,0.031887311068115196 +3491374,0.0159545298665761 +3491375,0.0159545298665761 +3491376,0.0319273888883978 +3491377,0.0280527826398611 +3491378,0.0505777542276513 +3491379,0.0195972984246763 +3491380,0.0196566058656458 +3491381,0.0213534351011205 +3491382,0.0214020926505327 +3491383,0.0214020926505327 +3491384,0.0211040191250851 +3491385,0.0162916182799159 +3491386,0.0652975633458905 +3491387,0.0338659401468532 +3491388,0.050828527415813604 +3491389,0.0165368835126375 +3491390,0.0694408950675981 +3491391,0.0165456208480084 +3491392,0.0965208271794481 +3491393,0.3549858517944805 +3491394,0.0088366700868191 +3491395,0.1096271907925319 +3491396,0.024788358248770202 +3491397,0.0083553862890112 +3491398,0.0287159401923418 +3491399,0.1435648255900949 +3491400,0.0159276690704573 +3491401,0.0159545298665761 +3491402,0.0320645591382342 +3491403,0.0160705404852421 +3491404,0.0179566838810572 +3491405,0.0840518952555139 +3491406,0.0573560855123285 +3491407,0.0114666707813739 +3491408,0.0196188026712975 +3491409,0.0196733320278041 +3491410,0.019615478242305 +3491411,0.0214864391813341 +3491412,0.0214020926505327 +3491413,0.0428440461750895 +3491414,0.0430366474455153 +3491415,0.0214020926505327 +3491416,0.1069111630399856 +3491417,0.032497664720799596 +3491418,0.114398752826472 +3491419,0.0169301311707889 +3491420,0.0157018839254704 +3491421,0.0312959633458004 +3491422,0.1182196985467767 +3491423,0.2251832735890741 +3491424,0.064542882144451 +3491425,0.09292376287877341 +3491426,0.0090421297084225 +3491427,0.0255033555004344 +3491428,0.0082627860829234 +3491429,0.0861478205770254 +3491430,0.0861478205770254 +3491431,0.0284240694747417 +3491432,0.0159520982960882 +3491433,0.0159545298665761 +3491434,0.0159545298665761 +3491435,0.0159545298665761 +3491436,0.0142256766557693 +3491437,0.0426770299673079 +3491438,0.0344000123441217 +3491439,0.0115887119049619 +3491440,0.037833453896877894 +3491441,0.0390093714849594 +3491442,0.0192092638259311 +3491443,0.0202185669053075 +3491444,0.0328042931072305 +3491445,0.0163554701479934 +3491446,0.0170574762649261 +3491447,0.04228908325721 +3491448,0.0144144855810077 +3491449,0.0651453020031084 +3491450,0.021872840821743 +3491451,0.129085764288902 +3491452,0.0321598731659872 +3491453,0.0322714410722255 +3491454,0.0970541500941472 +3491455,0.0388215072453022 +3491456,0.1937626647897315 +3491457,0.0075540120732235 +3491458,0.0209076005674428 +3491459,0.0282895592489502 +3491460,0.010766438918602 +3491461,0.0276304291035699 +3491462,0.0084430575542835 +3491463,0.0572153022469129 +3491464,0.0283411779217373 +3491465,0.0861478205770254 +3491466,0.0287159401923418 +3491467,0.0156902824336337 +3491468,0.0159545298665761 +3491469,0.0159545298665761 +3491470,0.1119410574807066 +3491471,0.016003833164099 +3491472,0.0141507511616537 +3491473,0.0714236134002522 +3491474,0.0114666707813739 +3491475,0.034524799892055896 +3491476,0.010129120999601 +3491477,0.0514225026293228 +3491478,0.0192334867827 +3491479,0.0422162660698598 +3491480,0.028235034698690903 +3491481,0.0217932582555827 +3491482,0.065618522465229 +3491483,0.129085764288902 +3491484,0.0274980670596039 +3491485,0.0324259590560441 +3491486,0.10988612898243699 +3491487,0.115794807165785 +3491488,0.1930563941451955 +3491489,0.0388215072453022 +3491490,0.0069206827320158 +3491491,0.013911058511045502 +3491492,0.0264173392886322 +3491493,0.0284646108925599 +3491494,0.0287159401923418 +3491495,0.0574318803846836 +3491496,0.0476715783397679 +3491497,0.0159545298665761 +3491498,0.0159545298665761 +3491499,0.0159981979190585 +3491500,0.0427866570005557 +3491501,0.0142021803935273 +3491502,0.0114093661178598 +3491503,0.0102743115342571 +3491504,0.0091723227560518 +3491505,0.0306676651836617 +3491506,0.012348697277437499 +3491507,0.0293625130201683 +3491508,0.0435155031394763 +3491509,0.0647692368922889 +3491510,0.065618522465229 +3491511,0.0322714410722255 +3491512,0.0294140159133395 +3491513,0.07321536798900889 +3491514,0.0373748793075172 +3491515,0.0388215072453022 +3491516,0.0382467582740434 +3491517,0.03469405993402 +3491518,0.0346184973322254 +3491519,0.0258193863523011 +3491520,0.0860865329235204 +3491521,0.1430333115880004 +3491522,0.0159063070600005 +3491523,0.0159483484794603 +3491524,0.0478589121139854 +3491525,0.0798340448369559 +3491526,0.0285783270369696 +3491527,0.015207196066498 +3491528,0.0283951907901391 +3491529,0.0142256766557693 +3491530,0.0104805320433511 +3491531,0.0095114782397289 +3491532,0.0183599356228944 +3491533,0.0123714913934341 +3491534,0.0213401910125324 +3491535,0.0322714410722255 +3491536,0.0334744877857211 +3491537,0.0323540106364507 +3491538,0.044148452777240194 +3491539,0.0092490228799721 +3491540,0.0388215072453022 +3491541,0.1163685460605467 +3491542,0.0214161142551046 +3491543,0.0069206827320158 +3491544,0.0073385456839876 +3491545,0.0852139565455157 +3491546,0.0861478205770254 +3491547,0.0545661689394079 +3491548,0.028476292766222 +3491549,0.0426770299673079 +3491550,0.0426770299673079 +3491551,0.0284524593367761 +3491552,0.0670733242426912 +3491553,0.030022976568014698 +3491554,0.009498424064102 +3491555,0.0068178872579109 +3491556,0.2363620248889921 +3491557,0.0337815690201392 +3491558,0.0322907446798243 +3491559,0.0968177102547505 +3491560,0.0388215072453022 +3491561,0.0388215072453022 +3491562,0.194107536226511 +3491563,0.0385587844203755 +3491564,0.021517820844383598 +3491565,0.0142098627289706 +3491566,0.0076047783543495 +3491567,0.0273740582102158 +3491568,0.114666569717318 +3491569,0.0286082146372442 +3491570,0.014660798624458 +3491571,0.0426770299673079 +3491572,0.0426826865829424 +3491573,0.019291104639630102 +3491574,0.0287940301783723 +3491575,0.1013667856669601 +3491576,0.0338549315929412 +3491577,0.0338549315929412 +3491578,0.0338012236644578 +3491579,0.0377980452542897 +3491580,0.0384154984755048 +3491581,0.0388215072453022 +3491582,0.0070064824565539 +3491583,0.0140015313577308 +3491584,0.0985330046603333 +3491585,0.0385460821957766 +3491586,0.0142949833379937 +3491587,0.0142256766557693 +3491588,0.0426935424740732 +3491589,0.0334236252039735 +3491590,0.0190572191334169 +3491591,0.0117199683692112 +3491592,0.0323505489982237 +3491593,0.0338549315929412 +3491594,0.0341075722257283 +3491595,0.0348256689807158 +3491596,0.0351707389254714 +3491597,0.08944571425341391 +3491598,0.2085326887826797 +3491599,0.0074408861508697 +3491600,0.0186769467944124 +3491601,0.0582121649474637 +3491602,0.0119093510012555 +3491603,0.0288328660770215 +3491604,0.0572246380132987 +3491605,0.1288083808184597 +3491606,0.0142629832031526 +3491607,0.0562049505068406 +3491608,0.0189416062371656 +3491609,0.043978936733950896 +3491610,0.066099523864181 +3491611,0.0073234244471922 +3491612,0.007842784996225 +3491613,0.0287186184364544 +3491614,0.0347744414921991 +3491615,0.0111869066874716 +3491616,0.0111879054222527 +3491617,0.0302502840178908 +3491618,0.1150669235219646 +3491619,0.025503474871925502 +3491620,0.0180146049640751 +3491621,0.020449923351407 +3491622,0.020449923351407 +3491623,0.0189584182075235 +3491624,0.0189063902944326 +3491625,0.0378499305640893 +3491626,0.0220922529697418 +3491627,0.06627675890922541 +3491628,0.0089146065439998 +3491629,0.0079896594619646 +3491630,0.0470614106724304 +3491631,0.0347755327820777 +3491632,0.1041520379238583 +3491633,0.0347755327820777 +3491634,0.0110532199374976 +3491635,0.0332084141068998 +3491636,0.0180686209119798 +3491637,0.0453464810106786 +3491638,0.0347720710668822 +3491639,0.0340522974205442 +3491640,0.025586466629176602 +3491641,0.0264118358500433 +3491642,0.0127063399877133 +3491643,0.020449923351407 +3491644,0.0199326138279107 +3491645,0.0204092693879372 +3491646,0.0189063902944326 +3491647,0.0189358202862017 +3491648,0.0220922529697418 +3491649,0.0220730211998382 +3491650,0.043830899280604296 +3491651,0.0110096341903433 +3491652,0.0550554836338103 +3491653,0.1143352167267355 +3491654,0.1733581677495401 +3491655,0.0110428488210938 +3491656,0.0455774274576465 +3491657,0.0303217785948505 +3491658,0.10314817160633899 +3491659,0.1045773217209048 +3491660,0.0380723811318233 +3491661,0.0373782297169358 +3491662,0.0202904163945312 +3491663,0.020449923351407 +3491664,0.0183473060732691 +3491665,0.0186787418992517 +3491666,0.09453248000257179 +3491667,0.0567191891239394 +3491668,0.0378127805888652 +3491669,0.0381033786508872 +3491670,0.0220922529697418 +3491671,0.0662767534494133 +3491672,0.0218962456285561 +3491673,0.010926223360002 +3491674,0.0116098651678192 +3491675,0.012519724371016 +3491676,0.0219302260577415 +3491677,0.10432659834623309 +3491678,0.0344578126601115 +3491679,0.0154349408002218 +3491680,0.0145458662713128 +3491681,0.174393281340599 +3491682,0.2431457817748464 +3491683,0.0346717530125197 +3491684,0.0381051330366471 +3491685,0.0381385530687957 +3491686,0.0407747180734118 +3491687,0.0203955865400802 +3491688,0.0170968464813191 +3491689,0.009735784705816 +3491690,0.0190858531087319 +3491691,0.0187823338288511 +3491692,0.0564006844469047 +3491693,0.056725722582595596 +3491694,0.0662426450873816 +3491695,0.0662412013893956 +3491696,0.0220922529697418 +3491697,0.0219594021627509 +3491698,0.0330589211367833 +3491699,0.0487439701038023 +3491700,0.0347755327820777 +3491701,0.0347755327820777 +3491702,0.0689491280662057 +3491703,0.0338627965289389 +3491704,0.0153882077361355 +3491705,0.044811045222522 +3491706,0.20175961501241219 +3491707,0.0697573125362396 +3491708,0.0124142406015526 +3491709,0.0117943637867218 +3491710,0.0147343792557871 +3491711,0.0157719356786055 +3491712,0.038970304322447094 +3491713,0.0566881552042926 +3491714,0.09449674213281839 +3491715,0.0220922529697418 +3491716,0.0220922529697418 +3491717,0.06627675890922541 +3491718,0.0220620696795057 +3491719,0.0135989374535935 +3491720,0.0347755327820777 +3491721,0.10432659834623309 +3491722,0.0340283949484862 +3491723,0.0347755327820777 +3491724,0.0128394444042624 +3491725,0.0321419792002928 +3491726,0.0589111765411292 +3491727,0.0199785208487975 +3491728,0.0347857251027145 +3491729,0.061789793816489 +3491730,0.0429005502408642 +3491731,0.029092962945496098 +3491732,0.0166954645732233 +3491733,0.0141639403530785 +3491734,0.0288277809101386 +3491735,0.0186876212671927 +3491736,0.0566364031488351 +3491737,0.0184351355084487 +3491738,0.087988880993196 +3491739,0.0220922529697418 +3491740,0.0220922529697418 +3491741,0.0220922529697418 +3491742,0.0651160609793743 +3491743,0.0689922959048396 +3491744,0.0345589491985519 +3491745,0.0347755327820777 +3491746,0.0695510655641554 +3491747,0.0330413704482648 +3491748,0.0692113865734033 +3491749,0.0255797707559002 +3491750,0.0128366310495407 +3491751,0.073891148273102 +3491752,0.010526061989367 +3491753,0.0117463215343011 +3491754,0.0117275625532554 +3491755,0.0673039563777621 +3491756,0.0222321776093778 +3491757,0.0350225748204515 +3491758,0.0285808657565981 +3491759,0.0166842375544933 +3491760,0.0167149337624598 +3491761,0.0141149116680026 +3491762,0.0130265032021242 +3491763,0.0097040307640666 +3491764,0.0096054272246861 +3491765,0.0189446149513149 +3491766,0.0661010990133029 +3491767,0.0220819700174506 +3491768,0.0658533024244 +3491769,0.044017186907406206 +3491770,0.0661501308575507 +3491771,0.0220922529697418 +3491772,0.1735878120545972 +3491773,0.0347755327820777 +3491774,0.0643022123022293 +3491775,0.0383722310287466 +3491776,0.0105690286144064 +3491777,0.0105172352712498 +3491778,0.0119455688009289 +3491779,0.011719231493771 +3491780,0.06750131982854529 +3491781,0.0224228259176015 +3491782,0.0166834750405452 +3491783,0.0501723166506302 +3491784,0.0411647638361749 +3491785,0.0428575129577217 +3491786,0.0325403520879758 +3491787,0.0108511010184884 +3491788,0.0095980931073427 +3491789,0.0205418753473117 +3491790,0.0219490675454954 +3491791,0.1500922712376279 +3491792,0.0348445807707729 +3491793,0.0346817797086551 +3491794,0.10400848283860639 +3491795,0.051319807767868 +3491796,0.012829951941967 +3491797,0.0105411583314667 +3491798,0.0586117029275004 +3491799,0.011723138366149 +3491800,0.0671029152628652 +3491801,0.0223640453213764 +3491802,0.0166509937685226 +3491803,0.0835115206444709 +3491804,0.01472325801821 +3491805,0.0293659348746753 +3491806,0.021677965655736202 +3491807,0.0108511010184884 +3491808,0.0439415587660084 +3491809,0.049024545666940506 +3491810,0.0396374253414051 +3491811,0.0682785799122459 +3491812,0.034369697450099 +3491813,0.0339522046763838 +3491814,0.0255906792599267 +3491815,0.012829951941967 +3491816,0.0255317126272489 +3491817,0.0468873784768539 +3491818,0.0630719712354466 +3491819,0.0265524864793443 +3491820,0.0216530494395345 +3491821,0.0167580514810041 +3491822,0.0502255085464043 +3491823,0.0146364962839429 +3491824,0.0441871401703795 +3491825,0.0108417696501325 +3491826,0.0325815296463033 +3491827,0.0108511010184884 +3491828,0.0107563547370663 +3491829,0.029856654225300802 +3491830,0.2473266332982171 +3491831,0.0402975337011124 +3491832,0.0124337607474099 +3491833,0.0120253913407842 +3491834,0.0754735974608653 +3491835,0.0151727634660476 +3491836,0.012454054405388 +3491837,0.0114810859526321 +3491838,0.0120205500664204 +3491839,0.0147200264036655 +3491840,0.0148154025132768 +3491841,0.0148251286234474 +3491842,0.0543129847067977 +3491843,0.0335546832852747 +3491844,0.0112233204838623 +3491845,0.0198163893073796 +3491846,0.0414897240698337 +3491847,0.0414897240698337 +3491848,0.0234676651657926 +3491849,0.0117104933537354 +3491850,0.035637612487741 +3491851,0.0356328838427758 +3491852,0.075506574737483 +3491853,0.01502691224452 +3491854,0.0151259160122531 +3491855,0.0124517243999534 +3491856,0.0124472397864893 +3491857,0.0109245447928194 +3491858,0.0099652096192383 +3491859,0.0119967486282133 +3491860,0.044085454764962 +3491861,0.0440460147198696 +3491862,0.010880594636772 +3491863,0.0108891135669928 +3491864,0.0577889581132099 +3491865,0.022691217669793103 +3491866,0.0107905871648467 +3491867,0.020221989081577303 +3491868,0.0300647516648773 +3491869,0.0829681066714998 +3491870,0.1244194087618137 +3491871,0.0414897240698337 +3491872,0.0414405212014202 +3491873,0.0820020050099966 +3491874,0.0117105714577161 +3491875,0.0118781827114935 +3491876,0.059404024823531 +3491877,0.0439025801541432 +3491878,0.0129824689382323 +3491879,0.0124519540710123 +3491880,0.0108433429727467 +3491881,0.0324096999466767 +3491882,0.0097363016470032 +3491883,0.0097183634875381 +3491884,0.016920940563582 +3491885,0.0181295267780464 +3491886,0.0115720296681625 +3491887,0.0564123837870361 +3491888,0.0113947559830048 +3491889,0.0111617513788508 +3491890,0.0414897240698337 +3491891,0.0799080051521272 +3491892,0.0414897240698337 +3491893,0.1244691722095011 +3491894,0.0351487511341221 +3491895,0.011880911886692 +3491896,0.0356204331524307 +3491897,0.10600337140313369 +3491898,0.011783563122149 +3491899,0.012290191094327 +3491900,0.012303481686744 +3491901,0.0108309632890186 +3491902,0.0107629378266677 +3491903,0.0485953253317389 +3491904,0.0097260182178217 +3491905,0.0173695321741198 +3491906,0.0522197757402106 +3491907,0.037362348872024595 +3491908,0.018560676411252 +3491909,0.0570567652758077 +3491910,0.0112963272827996 +3491911,0.2074486203491685 +3491912,0.1242658556321645 +3491913,0.0408971257606508 +3491914,0.011880911886692 +3491915,0.01187805174961 +3491916,0.0118793656858113 +3491917,0.0348556264090232 +3491918,0.023421941604141003 +3491919,0.0368999598786896 +3491920,0.0368680443951596 +3491921,0.0124951891531215 +3491922,0.0104851507106927 +3491923,0.0097133236635541 +3491924,0.0290644526391867 +3491925,0.009716687077814 +3491926,0.0172888401932734 +3491927,0.0348216015854244 +3491928,0.0374186099750395 +3491929,0.018728696267687 +3491930,0.0113559622443246 +3491931,0.0338315523749799 +3491932,0.0414897240698337 +3491933,0.0414897240698337 +3491934,0.0414781055815591 +3491935,0.011880911886692 +3491936,0.011880911886692 +3491937,0.0118767379340503 +3491938,0.0061593469808993 +3491939,0.0344353422544062 +3491940,0.0609650937000354 +3491941,0.0368625863969028 +3491942,0.0097044534314842 +3491943,0.0190671253675785 +3491944,0.0381445400207402 +3491945,0.0097185526130439 +3491946,0.0559467977031519 +3491947,0.093508495909898 +3491948,0.0396472765181616 +3491949,0.12409654180311361 +3491950,0.0410891129964055 +3491951,0.1243618004840244 +3491952,0.0355616965362882 +3491953,0.0118818721567571 +3491954,0.011880911886692 +3491955,0.0356422188088912 +3491956,0.0119581073522566 +3491957,0.0181513914750404 +3491958,0.0544972577603661 +3491959,0.0136296795681118 +3491960,0.0298774427070209 +3491961,0.0087396963778522 +3491962,0.0121783491758351 +3491963,0.024539057803320802 +3491964,0.0185751643483983 +3491965,0.0187533652071432 +3491966,0.0117734523500824 +3491967,0.0292236706398466 +3491968,0.0406415022269657 +3491969,0.081290764996273 +3491970,0.041177997314505 +3491971,0.0118736450273879 +3491972,0.0118699994836223 +3491973,0.0234944722863399 +3491974,0.0118675108330563 +3491975,0.0179621459395387 +3491976,0.0298977331689134 +3491977,0.0068073715206543 +3491978,0.0205026022947756 +3491979,0.0204445193521677 +3491980,0.0204445193521677 +3491981,0.029546026911104098 +3491982,0.0099837359919276 +3491983,0.0081493342295289 +3491984,0.0084109723139061 +3491985,0.01217259328336 +3491986,0.0329441701623622 +3491987,0.011978587257563 +3491988,0.0318342559039592 +3491989,0.0296858504459781 +3491990,0.0346666797462387 +3491991,0.011880911886692 +3491992,0.0299562518862319 +3491993,0.0237351815532444 +3491994,0.023901189679121998 +3491995,0.029605846888366198 +3491996,0.009895779834549 +3491997,0.0081573489665993 +3491998,0.0244480026885867 +3491999,0.040746671147644506 +3492000,0.016379520393907 +3492001,0.0109775751400469 +3492002,0.0115334011588709 +3492003,0.14625017911835259 +3492004,0.1586551295259244 +3492005,0.1288957627727113 +3492006,0.0292755663993748 +3492007,0.0651092185528291 +3492008,0.0162986684590578 +3492009,0.0325973369181156 +3492010,0.0325973369181156 +3492011,0.055303703503533 +3492012,0.0081457503833999 +3492013,0.0081406557916398 +3492014,0.0111421660659859 +3492015,0.0591622467981076 +3492016,0.0127959617182555 +3492017,0.0080790616306532 +3492018,0.041093740392067 +3492019,0.0147561749576152 +3492020,0.0323939275822643 +3492021,0.1876722201704979 +3492022,0.0620624336904031 +3492023,0.011162990429766 +3492024,0.0323293079214728 +3492025,0.040506010105318305 +3492026,0.0081641057998135 +3492027,0.016861582117390903 +3492028,0.0118826164652139 +3492029,0.0625574067234993 +3492030,0.0575026596700856 +3492031,0.0610067262551575 +3492032,0.0107925942355343 +3492033,0.0108028018140174 +3492034,0.017376254247959598 +3492035,0.017392482297871402 +3492036,0.0625560845383796 +3492037,0.0621938749044102 +3492038,0.0937815601499726 +3492039,0.1848252569308626 +3492040,0.010893212943969 +3492041,0.0109054628262442 +3492042,0.1251073585978142 +3492043,0.1861267723836409 +3492044,0.0168015512383403 +3492045,0.0511761934673661 +3492046,0.056851979445747 +3492047,0.0602809368853565 +3492048,0.0616829458987474 +3492049,0.0670857265727874 +3492050,0.0164627729795927 +3492051,0.0456555923758138 +3492052,0.0087629244556637 +3492053,0.6216217204928389 +3492054,0.2474306775889134 +3492055,0.0502626856408397 +3492056,0.050338879659696 +3492057,0.0087629165500402 +3492058,0.0087736090177316 +3492059,0.0089179206892396 +3492060,0.3599298677685107 +3492061,0.2441716035641848 +3492062,0.0620750708218396 +3492063,0.0168281849473714 +3492064,0.0166411889290936 +3492065,0.0087618012768912 +3492066,0.0263008488320198 +3492067,0.0679696030049508 +3492068,0.045769240707159 +3492069,0.0166274409923065 +3492070,0.0175093344406133 +3492071,0.0087785424422272 +3492072,0.0631060625551505 +3492073,0.0100940295043479 +3492074,0.3196359384607722 +3492075,0.1843641420714097 +3492076,0.0087577633456694 +3492077,0.0340918294660845 +3492078,0.27461544424295403 +3492079,0.1364120256369269 +3492080,0.0085216062143445 +3492081,0.0085216062143445 +3492082,0.0085258435906221 +3492083,0.183076962828636 +3492084,0.4572160193560215 +3492085,0.0454685461961706 +3492086,0.0089701793479411 +3492087,0.0085216062143445 +3492088,0.0170443799728192 +3492089,0.034116715985433 +3492090,0.0404937171875972 +3492091,0.2269494533737258 +3492092,0.025564818643033498 +3492093,0.027371538171998902 +3492094,0.0767022896795044 +3492095,0.0170753675524318 +3492096,0.0256749263395833 +3492097,0.038323232079939096 +3492098,0.0889703592810347 +3492099,0.045769240707159 +3492100,0.0085255267824258 +3492101,0.0764898945906537 +3492102,0.0424064001157004 +3492103,0.0387759841978549 +3492104,0.0776842162544211 +3492105,0.0471503597514257 +3492106,0.0374322859570383 +3492107,0.0518131521153823 +3492108,0.042549569152886 +3492109,0.0085216062143445 +3492110,0.4611912554431068 +3492111,0.1161896163364523 +3492112,0.0884314351378626 +3492113,0.0124774286523461 +3492114,0.0085216062143445 +3492115,0.034086424857378 +3492116,0.017043212428689 +3492117,0.025564818643033498 +3492118,0.033077582162863 +3492119,0.0365595286983542 +3492120,0.0130453909640979 +3492121,0.0374552156085557 +3492122,0.0376422137827726 +3492123,0.034086424857378 +3492124,0.0085216062143445 +3492125,0.0085216062143445 +3492126,0.0085216062143445 +3492127,0.017043212428689 +3492128,0.0170472413628628 +3492129,0.0334377561234644 +3492130,0.0359322903121957 +3492131,0.0086263491364033 +3492132,0.025715050476051098 +3492133,0.025292913112669 +3492134,0.0170299175845899 +3492135,0.025795151872043398 +3492136,0.0085167634631987 +3492137,0.0170033202785944 +3492138,0.1074970650532503 +3492139,0.0287954491227363 +3492140,0.0358545532810877 +3492141,0.2507540245033101 +3492142,0.008381777532514 +3492143,0.0509656536979256 +3492144,0.1415699122186067 +3492145,0.0130902781665874 +3492146,0.018193880152533502 +3492147,0.0253947098979056 +3492148,0.0356536646927799 +3492149,0.0288335755467414 +3492150,0.11453778754574509 +3492151,0.015273351240570601 +3492152,0.0196116486327487 +3492153,0.021743916807871102 +3492154,0.0038439967043918 +3492155,0.0288335755467414 +3492156,0.0288335755467414 +3492157,0.0051551462863452 +3492158,0.0239427481344489 +3492159,0.0047571605228249 +3492160,0.0329160264341269 +3492161,0.0558150261312043 +3492162,0.0285843389578892 +3492163,0.0865239267202244 +3492164,0.0865007266402242 +3492165,0.0103933995596944 +3492166,0.0476580258219256 +3492167,0.0036289261764514 +3492168,0.0127602021811991 +3492169,0.1441421517749253 +3492170,0.1443136306793142 +3492171,0.0862581824213398 +3492172,0.0288335755467414 +3492173,0.0053772996471648 +3492174,0.0256139501145346 +3492175,0.0563546727763925 +3492176,0.0288335755467414 +3492177,0.0864695616494337 +3492178,0.0288335755467414 +3492179,0.14416787773370698 +3492180,0.0288335755467414 +3492181,0.1153343021869656 +3492182,0.2016755358851651 +3492183,0.1730014532804484 +3492184,0.0859853322656394 +3492185,0.0288335755467414 +3492186,0.0288335755467414 +3492187,0.085898547695475 +3492188,0.0288335755467414 +3492189,0.08641296936293699 +3492190,0.1153343021869656 +3492191,0.0288335755467414 +3492192,0.0288335755467414 +3492193,0.1423058842032004 +3492194,0.1139077039729588 +3492195,0.0288335755467414 +3492196,0.0864468020264574 +3492197,0.0576671510934828 +3492198,0.0274033002656581 +3492199,0.0864768159721598 +3492200,0.0865007266402242 +3492201,0.14416787773370698 +3492202,0.3159775381528196 +3492203,0.0858110417679202 +3492204,0.0286347064214326 +3492205,0.0547038209597172 +3492206,0.0858620817425946 +3492207,0.0443507741424635 +3492208,0.014907999895513 +3492209,0.0507858892288594 +3492210,0.0848808878495934 +3492211,0.0445360619413235 +3492212,0.0446721301891372 +3492213,0.0170315708965063 +3492214,0.0168970176896071 +3492215,0.0443253803624987 +3492216,0.0148547261205709 +3492217,0.0170315708965063 +3492218,0.0509502536005693 +3492219,0.1028393347024196 +3492220,0.0148435063397634 +3492221,0.029861660472389702 +3492222,0.0849830792190209 +3492223,0.0510947126895189 +3492224,0.0826772784186662 +3492225,0.0090151736614762 +3492226,0.0168736000410962 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001170900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001170900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001170900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001171900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001171900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001171900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001172000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001172000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001172000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001172100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001172100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001172100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001172200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001172200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001172200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001172300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001172300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..8e65947ce --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001172300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.06973160335834219 +3490292,0.1101224383628817 +3490293,0.0172012615948915 +3490316,0.034402523189783 +3490317,0.08600630797445749 +3490332,0.0516037847846745 +3490333,0.0524911560560121 +3490334,0.1039578743627768 +3490335,0.0172012615948915 +3490348,0.0173010090670869 +3490349,0.0146603704540443 +3490350,0.0172012615948915 +3490351,0.0516037847846745 +3490374,0.0289411377175085 +3490375,0.0813330214956349 +3490376,0.0973500554242128 +3490377,0.0339149554888288 +3490378,0.034402523189783 +3490379,0.1550412936772006 +3490396,0.0135768260491092 +3490397,0.0270146876573562 +3490398,0.0515998867188956 +3490399,0.034402523189783 +3490418,0.1032946277509117 +3490419,0.0172012615948915 +3490437,0.0172077374796921 +3490438,0.0862035441593579 +3490439,0.0316030002104492 +3490440,0.0172012033598229 +3490457,0.0405265085796176 +3490458,0.041024878575458404 +3490459,0.034402523189783 +3490460,0.0776495684020652 +3490476,0.0343131070520079 +3490477,0.0512196478349624 +3490478,0.0210710298269986 +3490479,0.0210710298269986 +3490499,0.07351620265829739 +3490500,0.0105355149134993 +3490517,0.0147649593490833 +3490518,0.0270602065076948 +3490519,0.0421420596539972 +3490520,0.0526775745674965 +3490544,0.0105355149134993 +3490545,0.0105428194561094 +3490546,0.0210710298269986 +3490547,0.0104765736255575 +3490573,0.0314763096808734 +3490574,0.0105355149134993 +3490575,0.0099713582674523 +3490576,0.0203519013701776 +3490597,0.027394129471314102 +3490598,0.0267655900658108 +3490599,0.0108159540321182 +3490600,0.0340393147561059 +3490601,0.0175629300850123 +3490602,0.0176246121568909 +3490603,0.0171453682022172 +3490604,0.0170374417805966 +3490623,0.0087729869410395 +3490624,0.017545973882079 +3490625,0.0134568280608851 +3490626,0.049284115557579 +3490639,0.0087729869410395 +3490640,0.035091947764158 +3490641,0.0179009884693231 +3490642,0.0399568589162572 +3490643,0.0670455588867981 +3490644,0.0164437666535377 +3490645,0.0163889073317882 +3490658,0.017545973882079 +3490659,0.0087729869410395 +3490660,0.0938902859301973 +3490661,0.0403323181127908 +3490662,0.1152842373582804 +3490663,0.0164437666535377 +3490664,0.0163562418466596 +3490665,0.0492097164043604 +3490681,0.044121662756212696 +3490682,0.0087729869410395 +3490683,0.0087729869410395 +3490684,0.017545973882079 +3490685,0.0132129185155777 +3490686,0.0134557868861842 +3490687,0.0165441248451044 +3490688,0.0164923168631251 +3490689,0.0164186680955085 +3490690,0.0164437666535377 +3490707,0.017545973882079 +3490708,0.0087729869410395 +3490709,0.0089259967862632 +3490710,0.0087729869410395 +3490725,0.0087594547520793 +3490726,0.0087729869410395 +3490727,0.0263189608231185 +3490728,0.035174323447088596 +3490736,0.061458381131366 +3490737,0.0440417867496751 +3490738,0.1009213038861091 +3490739,0.0462279087377901 +3490747,0.2786781866650748 +3490748,0.0105174364460866 +3490757,0.0328329709350619 +3490758,0.025570114043945796 +3490771,0.0246225680546052 +3490772,0.0082082447403524 +3490773,0.0085234483213253 +3490774,0.0164126819902137 +3490787,0.0161537937578842 +3490788,0.0082422272056403 +3490789,0.0433481832979489 +3490790,0.061243529344938596 +3490805,0.0081271014672155 +3490806,0.0242118169088641 +3490807,0.0158237107098102 +3490808,0.045501869648085704 +3490809,0.0087851235105211 +3490810,0.0089368435844138 +3490827,0.0091251706060734 +3490828,0.0094348130843929 +3490842,0.0276125013444695 +3490843,0.0092022707685828 +3490844,0.009373720418037 +3490845,0.028451810821968397 +3490856,0.0092022707685828 +3490857,0.0097828149043974 +3490858,0.0092022707685828 +3490859,0.0277370908285289 +3490860,0.0095404991880059 +3490861,0.047623014676026795 +3490875,0.0092022707685828 +3490876,0.0092022707685828 +3490877,0.0293673062640139 +3490878,0.0099401888554711 +3490879,0.0190809983760118 +3490892,0.0276068123057484 +3490893,0.0276068123057484 +3490894,0.0095404991880059 +3490895,0.0100914956072167 +3490900,0.009196144881461 +3490901,0.0088489078073525 +3490902,0.027769704829316698 +3490903,0.0276076658040438 +3490904,0.0314560711571173 +3490905,0.0291017238551617 +3490906,0.0307264194519942 +3490907,0.06645099831374571 +3490916,0.027648366793573798 +3490917,0.0092672482888443 +3490918,0.0091899269524732 +3490919,0.0092034016885854 +3490920,0.0092768982125554 +3490921,0.019927653096281 +3490922,0.028832981288753702 +3490923,0.1562055217519972 +3490924,0.0113489662592294 +3490925,0.045384494576260495 +3490926,0.11984779413759761 +3490935,0.0087154797760996 +3490936,0.0095543777305647 +3490937,0.0232445184087918 +3490938,0.0221493983275963 +3490939,0.0328112684607981 +3490940,0.0326116775635655 +3490941,0.013651224899272 +3490942,0.0134719965745611 +3490953,0.0091169967094156 +3490954,0.0092031476926412 +3490955,0.0087351024572798 +3490956,0.0104148823425722 +3490957,0.0163585846106088 +3490958,0.0156863183953965 +3490959,0.0326567217707631 +3490960,0.032632380822869 +3490966,0.025411368347704202 +3490967,0.0084704561159014 +3490968,0.0124791839994675 +3490969,0.0133920187322397 +3490970,0.1136335607434051 +3490971,0.0159437538948981 +3490972,0.0596275652438481 +3490973,0.0149298620847843 +3490974,0.0108855739235877 +3490975,0.0327268624203029 +3490980,0.025504385809060302 +3490981,0.0084766706618671 +3490982,0.0084858943538876 +3490983,0.059825050793168 +3490984,0.066798321364089 +3490985,0.1477361416741739 +3490986,0.0160914642303728 +3490987,0.048379299745183305 +3490988,0.0479472144885808 +3490989,0.0150111515803848 +3490990,0.0447571099498631 +3490991,0.0148823721889409 +3490992,0.0108855739235877 +3490993,0.0108855739235877 +3490994,0.0350201013886298 +3490995,0.0108855739235877 +3490999,0.0084891510879508 +3491000,0.0086052920737395 +3491001,0.0127559292882801 +3491002,0.0256944946950035 +3491003,0.01345127275977 +3491004,0.0134779823493533 +3491005,0.0484127252754141 +3491006,0.08024935015161 +3491007,0.033633874643111 +3491008,0.0364534685679882 +3491009,0.0544424526882219 +3491010,0.0325345682333443 +3491013,0.0103093626253122 +3491014,0.0113705078542674 +3491015,0.0482657929521149 +3491016,0.0482605003254815 +3491017,0.1615424886841767 +3491018,0.0218839462781754 +3491019,0.0565946648603377 +3491020,0.0108855739235877 +3491021,0.0171448159962892 +3491022,0.0097073773215442 +3491023,0.0117242703523469 +3491024,0.009082930377173 +3491025,0.054499906735148804 +3491026,0.0179254762056517 +3491027,0.0294007588064818 +3491028,0.035694338073701 +3491029,0.0085724079981446 +3491030,0.0432447610815031 +3491031,0.044279276220207005 +3491032,0.030054444544797602 +3491033,0.0138841748413892 +3491034,0.0117744179442524 +3491035,0.0117345186430312 +3491036,0.0187563337709622 +3491037,0.017929146066308 +3491038,0.0362383536893991 +3491039,0.1913140144176066 +3491040,0.0085724079981446 +3491041,0.025717223994433804 +3491042,0.0139983892440795 +3491043,0.0136398573051453 +3491044,0.0116875709648368 +3491045,0.0588212739251936 +3491046,0.017929146066308 +3491047,0.01789483314876 +3491048,0.036152264767928 +3491049,0.0361239947378635 +3491050,0.11629340107582789 +3491051,0.0387557779356013 +3491052,0.0085724079981446 +3491053,0.043079837247233 +3491054,0.0419800476180918 +3491055,0.0418305057871452 +3491056,0.0117083145672439 +3491057,0.083012249055028 +3491058,0.017929146066308 +3491059,0.0550548270249292 +3491060,0.1806719821368346 +3491061,0.0361239947378635 +3491062,0.1079557868559972 +3491063,0.179712938841544 +3491064,0.0387727683893404 +3491065,0.19395893177817 +3491066,0.025717223994433804 +3491067,0.0085724079981446 +3491068,0.0094973903066922 +3491069,0.0086342143148049 +3491070,0.0122173456050459 +3491071,0.0280082499620522 +3491072,0.1260382000320814 +3491073,0.053768282239235105 +3491074,0.0361239947378635 +3491075,0.3241379435260043 +3491076,0.1163445261489498 +3491077,0.0387636382065033 +3491078,0.0799507142401516 +3491079,0.034559717228413 +3491080,0.026047063841576998 +3491081,0.0086011639606355 +3491082,0.0168947910382744 +3491083,0.0178938180010365 +3491084,0.017929146066308 +3491085,0.017929146066308 +3491086,0.1084943272723449 +3491087,0.1084029687076386 +3491088,0.0728989491927062 +3491089,0.1112428642267172 +3491090,0.0367150757827697 +3491091,0.0382381825247485 +3491092,0.0258623891767429 +3491093,0.0087109632362998 +3491094,0.053787438198924 +3491095,0.0895676639076018 +3491096,0.1073509890222347 +3491097,0.0356831282408626 +3491098,0.0943644662032667 +3491099,0.0353278346874766 +3491100,0.0371904592338779 +3491101,0.0413210470672431 +3491102,0.0669435385658764 +3491103,0.08956539612958861 +3491104,0.0896282567006535 +3491105,0.0542371009787438 +3491106,0.1184630247593972 +3491107,0.0673145098651596 +3491108,0.040232540322603 +3491109,0.1216489492253977 +3491110,0.0394057372834948 +3491111,0.06645028091686281 +3491112,0.008195424452424 +3491113,0.1043057924837953 +3491114,0.07398822678538511 +3491115,0.12441725761193281 +3491116,0.0894551910544147 +3491117,0.0175030468561894 +3491118,0.0862312325333643 +3491119,0.145975617653854 +3491120,0.0732599534902873 +3491121,0.0398791043167446 +3491122,0.0162692991363651 +3491123,0.0525739332000811 +3491124,0.0572896350653407 +3491125,0.024849435339524703 +3491126,0.1267760052616826 +3491127,0.0084491035273646 +3491128,0.0587566260679885 +3491129,0.0146972658304961 +3491130,0.0148394154384732 +3491131,0.031638294101200504 +3491132,0.0457961120252221 +3491133,0.017215771600604 +3491134,0.0172051541524483 +3491135,0.0243745688349008 +3491136,0.2677805084348161 +3491137,0.1196508095304604 +3491138,0.1623801497854741 +3491139,0.1759597753932698 +3491140,0.0159313262083068 +3491141,0.1329358097496454 +3491142,0.0082248043146589 +3491143,0.0089194375221307 +3491144,0.0463286591065329 +3491145,0.0148394154384732 +3491146,0.06917587652667459 +3491147,0.0171990225592645 +3491148,0.0243745688349008 +3491149,0.0132677732035517 +3491150,0.0132951508649532 +3491151,0.0547647041913477 +3491152,0.0540101073484271 +3491153,0.0124996425583958 +3491154,0.0384402080986943 +3491155,0.09868062580490411 +3491156,0.16778427424033598 +3491157,0.0908209503066917 +3491158,0.0748775908066815 +3491159,0.0349472592764796 +3491160,0.0514743800814428 +3491161,0.0974982753396032 +3491162,0.0243745688349008 +3491163,0.0410877253685263 +3491164,0.0414358865879287 +3491165,0.1637584923301194 +3491166,0.0538827541006073 +3491167,0.0385068225660999 +3491168,0.0375265895008803 +3491169,0.0990492297887525 +3491170,0.016508700326085 +3491171,0.1861940372480908 +3491172,0.0443287875103031 +3491173,0.0225804800110563 +3491174,0.0226505231302279 +3491175,0.0173533783185657 +3491176,0.07276412433267179 +3491177,0.0236557047454341 +3491178,0.0243745688349008 +3491179,0.0731237065047024 +3491180,0.0138136396133053 +3491181,0.2183813012403816 +3491182,0.1638457456271663 +3491183,0.08905082023996361 +3491184,0.1127854826436674 +3491185,0.0164963434562541 +3491186,0.016854247446884 +3491187,0.06603480130434 +3491188,0.100603036643964 +3491189,0.466315285121618 +3491190,0.1389815466040059 +3491191,0.0079266800097507 +3491192,0.023103307053192898 +3491193,0.0243745688349008 +3491194,0.0243745688349008 +3491195,0.0469085248514367 +3491196,0.48940553854576146 +3491197,0.090810877337929 +3491198,0.100009650937713 +3491199,0.0832034273276518 +3491200,0.0688512703090081 +3491201,0.23245763849560402 +3491202,0.0932822301983832 +3491203,0.0094647164443921 +3491204,0.0379022321726228 +3491205,0.0696005290079812 +3491206,0.0243745688349008 +3491207,0.0973883863869001 +3491208,0.0485846325865176 +3491209,0.0343490896556408 +3491210,0.0259697368533995 +3491211,0.0909021222010447 +3491212,0.0352739378320093 +3491213,0.3238360855230966 +3491214,0.1396901448645751 +3491215,0.0466411150991916 +3491216,0.0466411150991916 +3491217,0.0376865270666704 +3491218,0.0386182565882207 +3491219,0.0476593116454568 +3491220,0.1706219818443056 +3491221,0.1197867074553659 +3491222,0.0974982753396032 +3491223,0.0339521371678337 +3491224,0.03423328318334 +3491225,0.230973675208007 +3491226,0.0276235189128188 +3491227,0.0309781562536954 +3491228,0.0620929264021324 +3491229,0.0691335278208837 +3491230,0.0345135159160578 +3491231,0.1399233452975748 +3491232,0.0463826035855476 +3491233,0.01645157940435 +3491234,0.015581298496603101 +3491235,0.2676568312354632 +3491236,0.0243674886886267 +3491237,0.0435844037857299 +3491238,0.0243839418561208 +3491239,0.0345309718596335 +3491240,0.0339954278485547 +3491241,0.0251587133011255 +3491242,0.0296097017707455 +3491243,0.0086598424240946 +3491244,0.0087845289321842 +3491245,0.0925323005467898 +3491246,0.154890781268477 +3491247,0.059071188155141396 +3491248,0.011370331980288 +3491249,0.0466411150991916 +3491250,0.0466411150991916 +3491251,0.0076644935724037 +3491252,0.1208804826353676 +3491253,0.0243745688349008 +3491254,0.0243547193998109 +3491255,0.10202672533769169 +3491256,0.0680188536643982 +3491257,0.0971655866741615 +3491258,0.0668905387827535 +3491259,0.0142710016637266 +3491260,0.0151606778648193 +3491261,0.0922479788038732 +3491262,0.0934422673481661 +3491263,0.0086598424240946 +3491264,0.0174498696189945 +3491265,0.1239126250147816 +3491266,0.09260172824598531 +3491267,0.0309781562536954 +3491268,0.0311530992861506 +3491269,0.0809324233690482 +3491270,0.0569223963095722 +3491271,0.13872787940988862 +3491272,0.0466411150991916 +3491273,0.2798466905951496 +3491274,0.3245075644029785 +3491275,0.1204016029770982 +3491276,0.0959526564739834 +3491277,0.0340094268321991 +3491278,0.022826489334089 +3491279,0.0129476370245895 +3491280,0.012820049243961 +3491281,0.013149136868625 +3491282,0.0134858005368858 +3491283,0.054938420010247 +3491284,0.09343067192683549 +3491285,0.0934360866190833 +3491286,0.026473873210864002 +3491287,0.0266051688580949 +3491288,0.0309781562536954 +3491289,0.0619393043234085 +3491290,0.0823826363785979 +3491291,0.024618212265005303 +3491292,0.18595920136102512 +3491293,0.0463284454172149 +3491294,0.0442471490811461 +3491295,0.0731048865258245 +3491296,0.1701725489307203 +3491297,0.1603166035305512 +3491298,0.101710042379139 +3491299,0.0135832046169947 +3491300,0.0247691375716048 +3491301,0.0127924444276637 +3491302,0.0386309473142274 +3491303,0.0399041101826968 +3491304,0.0135038020233307 +3491305,0.0134871958605516 +3491306,0.06754664369135739 +3491307,0.0263269771804776 +3491308,0.0311542472177516 +3491309,0.0934512173215108 +3491310,0.0180068294507748 +3491311,0.1239126250147816 +3491312,0.0309781562536954 +3491313,0.026444493081802502 +3491314,0.053602951782376895 +3491315,0.023814558956743 +3491316,0.0731237065047024 +3491317,0.0243745688349008 +3491318,0.027036438489836702 +3491319,0.0134834091866198 +3491320,0.0134819656943416 +3491321,0.0134773775935173 +3491322,0.0360032816537335 +3491323,0.1231179769739974 +3491324,0.025648435190542503 +3491325,0.0128026297445091 +3491326,0.0168686027433975 +3491327,0.0180628807659483 +3491328,0.053983104874878396 +3491329,0.0135113075375556 +3491330,0.0179870216466286 +3491331,0.0234511323326055 +3491332,0.0929344687610862 +3491333,0.0309781562536954 +3491334,0.3407597187906494 +3491335,0.12368422350111141 +3491336,0.022756229473577902 +3491337,0.0233169960926181 +3491338,0.0775299120561525 +3491339,0.0442435600028204 +3491340,0.0243745688349008 +3491341,0.0731237065047024 +3491342,0.0134773775935173 +3491343,0.0673868879675865 +3491344,0.0251106663944403 +3491345,0.0252793262957596 +3491346,0.050632516112144296 +3491347,0.050857225737982806 +3491348,0.0183108371140505 +3491349,0.0550117995589971 +3491350,0.0406346504003828 +3491351,0.0405339226126668 +3491352,0.0982758193007396 +3491353,0.013981902249509 +3491354,0.0128717323408596 +3491355,0.0259461333638319 +3491356,0.09277887748469871 +3491357,0.09008490112293141 +3491358,0.0301787234659924 +3491359,0.0309781562536954 +3491360,0.4334828732014518 +3491361,0.0929344687610862 +3491362,0.0158227576478936 +3491363,0.0169110371323573 +3491364,0.0157269385864892 +3491365,0.0160755393710207 +3491366,0.0163178960534873 +3491367,0.0112993682207402 +3491368,0.0075382026325875 +3491369,0.0974892238414505 +3491370,0.0243745688349008 +3491371,0.0731236240148594 +3491372,0.0486159085846434 +3491373,0.026939057242609102 +3491374,0.0134773775935173 +3491375,0.0134773775935173 +3491376,0.0269718004625314 +3491377,0.0252835545688867 +3491378,0.0451720728031332 +3491379,0.0168649856317466 +3491380,0.016918211777588 +3491381,0.0182977086571662 +3491382,0.0183372665196657 +3491383,0.0183372665196657 +3491384,0.018055390828857 +3491385,0.0134839507258831 +3491386,0.054046171901186296 +3491387,0.028024728007044898 +3491388,0.0420595092141594 +3491389,0.0128817001086187 +3491390,0.0563674640465595 +3491391,0.0128853959052216 +3491392,0.0926484160890637 +3491393,0.3407597187906494 +3491394,0.0075236490234651 +3491395,0.1008377876745693 +3491396,0.020835544914006902 +3491397,0.0070242314614595 +3491398,0.0243745688349008 +3491399,0.121860121299713 +3491400,0.01345798976976 +3491401,0.0134773775935173 +3491402,0.0270993625169248 +3491403,0.0135852621593481 +3491404,0.0157533356879582 +3491405,0.0745465275691447 +3491406,0.0518274237823226 +3491407,0.0103624081239104 +3491408,0.0168849835969064 +3491409,0.0169318098981427 +3491410,0.0168817047654582 +3491411,0.018415426836138 +3491412,0.0183372665196657 +3491413,0.0367112262224724 +3491414,0.036888521724940296 +3491415,0.0183372665196657 +3491416,0.09158754670140071 +3491417,0.0268958415045999 +3491418,0.09470078765615719 +3491419,0.0140073420522764 +3491420,0.0126088429182393 +3491421,0.0242699685892694 +3491422,0.10580465310563811 +3491423,0.2161512479115911 +3491424,0.0619563125073908 +3491425,0.0876150577066642 +3491426,0.0078988615696465 +3491427,0.0214571088264953 +3491428,0.0069451816380023 +3491429,0.0731237065047024 +3491430,0.0731237065047024 +3491431,0.024124932409572 +3491432,0.0134756225129953 +3491433,0.0134773775935173 +3491434,0.0134773775935173 +3491435,0.0134773775935173 +3491436,0.0122295105829834 +3491437,0.036688531748950204 +3491438,0.031087224371731198 +3491439,0.0104615462263031 +3491440,0.0323420011600896 +3491441,0.0335232473868641 +3491442,0.0164814006564731 +3491443,0.0172078049072971 +3491444,0.0271707309974311 +3491445,0.0135372559985268 +3491446,0.0141252550537867 +3491447,0.0323487334551205 +3491448,0.0111960575361582 +3491449,0.0616705955449363 +3491450,0.020759118720889 +3491451,0.1239126250147816 +3491452,0.0308698519025181 +3491453,0.0309781562536954 +3491454,0.09314687466430441 +3491455,0.0367793105542659 +3491456,0.1835911127397707 +3491457,0.0064222946036047 +3491458,0.0175646051115027 +3491459,0.0238279796498641 +3491460,0.0090788536089428 +3491461,0.023353493035762 +3491462,0.0070988020164575 +3491463,0.0485645781538759 +3491464,0.0240552109164981 +3491465,0.0731237065047024 +3491466,0.0243745688349008 +3491467,0.0132866467367124 +3491468,0.0134773775935173 +3491469,0.0134773775935173 +3491470,0.09458282531051079 +3491471,0.0135232274037195 +3491472,0.012178806242116 +3491473,0.0613606467315092 +3491474,0.0103624081239104 +3491475,0.0311716718677557 +3491476,0.008655204528418 +3491477,0.045530543176299995 +3491478,0.0162558061745736 +3491479,0.0322659197995052 +3491480,0.0216305730760876 +3491481,0.0206570784016948 +3491482,0.062277356162667004 +3491483,0.1239126250147816 +3491484,0.026344411722721 +3491485,0.0311150071865958 +3491486,0.1039510953445141 +3491487,0.1096877185332943 +3491488,0.1828760189308894 +3491489,0.0367793105542659 +3491490,0.0058074072003364 +3491491,0.0116738970095657 +3491492,0.022408580202749 +3491493,0.0241596074009693 +3491494,0.0243745688349008 +3491495,0.0487491376698016 +3491496,0.0402935411896302 +3491497,0.0134773775935173 +3491498,0.0134773775935173 +3491499,0.0135179868837436 +3491500,0.0367676593217237 +3491501,0.0122136099539133 +3491502,0.0103020037668431 +3491503,0.008601481718452 +3491504,0.0076250492435149 +3491505,0.023732442861804898 +3491506,0.009598908901341699 +3491507,0.0227526143930641 +3491508,0.0336208524201189 +3491509,0.0611705035664387 +3491510,0.062277356162667004 +3491511,0.0309781562536954 +3491512,0.0279337482824466 +3491513,0.0680996817810708 +3491514,0.0352335898327394 +3491515,0.0367793105542659 +3491516,0.0362702763890736 +3491517,0.0291250427437875 +3491518,0.0290498232557953 +3491519,0.0218971522843611 +3491520,0.0730712873005302 +3491521,0.121428887833232 +3491522,0.0134425709083082 +3491523,0.0134729159370776 +3491524,0.0404268951330629 +3491525,0.0674398722529586 +3491526,0.0245506693881407 +3491527,0.0129379603722373 +3491528,0.0244090471235285 +3491529,0.0122295105829834 +3491530,0.0087778616963511 +3491531,0.0079464257428924 +3491532,0.0141957282784276 +3491533,0.0095829561679994 +3491534,0.0197669904234164 +3491535,0.0309781562536954 +3491536,0.0305915452024461 +3491537,0.030965232402138 +3491538,0.0411093509943554 +3491539,0.0086287969493315 +3491540,0.0367793105542659 +3491541,0.1102210388110219 +3491542,0.0180572418889572 +3491543,0.0058074072003364 +3491544,0.0061633342929968 +3491545,0.0723188269891281 +3491546,0.0731237065047024 +3491547,0.0463078667786773 +3491548,0.024170415591739 +3491549,0.036688531748950204 +3491550,0.036688531748950204 +3491551,0.0244598194826765 +3491552,0.056090241716751796 +3491553,0.025120242691156 +3491554,0.0079340558846204 +3491555,0.0053762952298266 +3491556,0.2145592596204668 +3491557,0.0307417898683976 +3491558,0.0309751348382203 +3491559,0.0929339386192876 +3491560,0.0367793105542659 +3491561,0.0367793105542659 +3491562,0.1838965527713295 +3491563,0.0365215989795514 +3491564,0.0181559868807143 +3491565,0.011928733531588 +3491566,0.0063901814124093 +3491567,0.0232227892289043 +3491568,0.09732832015009629 +3491569,0.0242870388689024 +3491570,0.0126487210579711 +3491571,0.036688531748950204 +3491572,0.0366926146311738 +3491573,0.016127410507329402 +3491574,0.0240771132048722 +3491575,0.0920113591751216 +3491576,0.0307303071022033 +3491577,0.0307303071022033 +3491578,0.0307387135083857 +3491579,0.0357856507866679 +3491580,0.0363801554477639 +3491581,0.0367793105542659 +3491582,0.0058864913191907 +3491583,0.0117720992784499 +3491584,0.0859786609881116 +3491585,0.0344459894281621 +3491586,0.0122962828658509 +3491587,0.0122295105829834 +3491588,0.0367004502925981 +3491589,0.027968110289517997 +3491590,0.0169164778359483 +3491591,0.0106614065790169 +3491592,0.0294014621704378 +3491593,0.0307303071022033 +3491594,0.0310380088602816 +3491595,0.0319404845639347 +3491596,0.0331965121892802 +3491597,0.0836929385821426 +3491598,0.1943091061265935 +3491599,0.0062650822491305 +3491600,0.0168591022424734 +3491601,0.0503428999423336 +3491602,0.01070634080521 +3491603,0.0248265828133687 +3491604,0.0492282013694443 +3491605,0.1106239665095765 +3491606,0.0122564380337731 +3491607,0.047141260805517796 +3491608,0.0159008421518497 +3491609,0.0393618889274183 +3491610,0.059258161130050696 +3491611,0.0066769541053554 +3491612,0.0071415113971249 +3491613,0.0262721284420431 +3491614,0.0318413006347906 +3491615,0.0095316499661638 +3491616,0.0095311025709317 +3491617,0.0276516476308896 +3491618,0.1062011797284852 +3491619,0.022838149062281002 +3491620,0.0162544155410693 +3491621,0.0172502472996711 +3491622,0.0172502472996711 +3491623,0.0159041223215298 +3491624,0.0158571656793355 +3491625,0.0317604065094651 +3491626,0.0198084227740764 +3491627,0.0594252683222292 +3491628,0.0081554028466193 +3491629,0.0072921240879244 +3491630,0.0435868965466171 +3491631,0.0318426191806793 +3491632,0.0953712825050643 +3491633,0.0318426191806793 +3491634,0.0093872422171259 +3491635,0.0282750596005169 +3491636,0.0162650809049871 +3491637,0.0404857656135223 +3491638,0.032220815130311 +3491639,0.0315322615538289 +3491640,0.0229169259663207 +3491641,0.023541263700479702 +3491642,0.0113919930714453 +3491643,0.0172502472996711 +3491644,0.0168562181568499 +3491645,0.0172135559641356 +3491646,0.0158571656793355 +3491647,0.0158936661426723 +3491648,0.0198084227740764 +3491649,0.0197898942694816 +3491650,0.039276169539827405 +3491651,0.0103011893065048 +3491652,0.05151096433939 +3491653,0.10492172530177271 +3491654,0.1587422241593459 +3491655,0.009373884326737 +3491656,0.0406884764838788 +3491657,0.027082109425305 +3491658,0.0955406905279027 +3491659,0.0969032899140487 +3491660,0.0341004956016929 +3491661,0.0334994723015269 +3491662,0.0171124000747604 +3491663,0.0172502472996711 +3491664,0.0155518395801731 +3491665,0.0157008791414763 +3491666,0.0792881959659506 +3491667,0.0475715196609102 +3491668,0.031714331358671 +3491669,0.0320747447761047 +3491670,0.0198084227740764 +3491671,0.059425263062071 +3491672,0.0196195830084191 +3491673,0.0102255856618285 +3491674,0.0108452391542182 +3491675,0.0116954189353757 +3491676,0.0205229143961815 +3491677,0.09552785754203791 +3491678,0.0315546374029008 +3491679,0.0138046328839419 +3491680,0.0128984284627564 +3491681,0.1615956425666805 +3491682,0.2252750151021401 +3491683,0.0321214594975304 +3491684,0.0341504099477129 +3491685,0.034190734129918 +3491686,0.034392276063494404 +3491687,0.0172012068124428 +3491688,0.0144562048706646 +3491689,0.0077923581831145 +3491690,0.0160457458831547 +3491691,0.0157516215372057 +3491692,0.047300309968001095 +3491693,0.0475796227643707 +3491694,0.059382958752004 +3491695,0.059381168209695204 +3491696,0.0198084227740764 +3491697,0.0196804300412136 +3491698,0.030930185213726903 +3491699,0.0455503488281742 +3491700,0.0318426191806793 +3491701,0.0318426191806793 +3491702,0.06313964172209541 +3491703,0.0310153142961316 +3491704,0.0137563266521962 +3491705,0.0394208451600853 +3491706,0.1864413333124191 +3491707,0.0646382570266722 +3491708,0.0110297805699669 +3491709,0.0102676642512693 +3491710,0.0123316912043514 +3491711,0.0133558361718437 +3491712,0.031207395134907598 +3491713,0.047545087589588905 +3491714,0.0793297614797204 +3491715,0.0198084227740764 +3491716,0.0198084227740764 +3491717,0.0594252683222292 +3491718,0.0197793432231756 +3491719,0.0126890543144955 +3491720,0.0318426191806793 +3491721,0.09552785754203791 +3491722,0.0312247349274387 +3491723,0.0318426191806793 +3491724,0.0107202418269535 +3491725,0.026709487695929998 +3491726,0.0484480380054433 +3491727,0.0175393898548861 +3491728,0.0322276270361235 +3491729,0.0569754351399598 +3491730,0.0358096945988781 +3491731,0.024296703956674798 +3491732,0.0140665855916375 +3491733,0.0119224742183672 +3491734,0.0230436991212865 +3491735,0.0156795718207891 +3491736,0.0475129949219655 +3491737,0.0155433060731613 +3491738,0.0787622348496274 +3491739,0.0198084227740764 +3491740,0.0198084227740764 +3491741,0.0198084227740764 +3491742,0.058307465413795 +3491743,0.0631724483203466 +3491744,0.0316463076438606 +3491745,0.0318426191806793 +3491746,0.0636852383613586 +3491747,0.0304084639947812 +3491748,0.06338258815143391 +3491749,0.0213301215652989 +3491750,0.0107062412537349 +3491751,0.0611713594592396 +3491752,0.0087083326652646 +3491753,0.009654288625128 +3491754,0.0096364290588554 +3491755,0.0596148554385417 +3491756,0.0196775512612148 +3491757,0.0324401659112775 +3491758,0.023853475611540498 +3491759,0.0140527115858135 +3491760,0.0140776645611087 +3491761,0.0118811493739485 +3491762,0.0108502832589315 +3491763,0.0077730258874503 +3491764,0.0076742322858701 +3491765,0.0159555096068141 +3491766,0.0592074066374165 +3491767,0.0197956693718315 +3491768,0.0590357188669168 +3491769,0.0394624554110424 +3491770,0.059306291127382 +3491771,0.0198084227740764 +3491772,0.1589387267959254 +3491773,0.0318426191806793 +3491774,0.0536482993633656 +3491775,0.0319974079496752 +3491776,0.0087390371327447 +3491777,0.0087015031425095 +3491778,0.0098447459105068 +3491779,0.0096283936873078 +3491780,0.0598065630026084 +3491781,0.0198597889393568 +3491782,0.0140534619097964 +3491783,0.042255213734705505 +3491784,0.0345694516652698 +3491785,0.036151371161705304 +3491786,0.026353156434670698 +3491787,0.00878815818578 +3491788,0.0076678632758557 +3491789,0.0183633348098192 +3491790,0.0196767025005119 +3491791,0.1366933018682366 +3491792,0.0319069393895981 +3491793,0.0317626718315975 +3491794,0.09526251481843209 +3491795,0.0427987687289712 +3491796,0.0106996921822428 +3491797,0.0087140417726189 +3491798,0.0481543148726078 +3491799,0.0096321618960458 +3491800,0.0594220704293348 +3491801,0.0198026570029436 +3491802,0.0140277997072908 +3491803,0.0703422529552288 +3491804,0.0125047699082274 +3491805,0.0249332823565126 +3491806,0.0175546469995654 +3491807,0.00878815818578 +3491808,0.0356682860000637 +3491809,0.0431741496046653 +3491810,0.036361360076222 +3491811,0.0626059029780015 +3491812,0.0314965456305445 +3491813,0.0311617254434244 +3491814,0.0213288419921719 +3491815,0.0106996921822428 +3491816,0.0212680238921586 +3491817,0.0385203430523771 +3491818,0.055638617608075105 +3491819,0.021939551912186002 +3491820,0.019120167769351 +3491821,0.0141241204711024 +3491822,0.042304192999844295 +3491823,0.0124229306040819 +3491824,0.0375280300241458 +3491825,0.0087778075849827 +3491826,0.0263915712833174 +3491827,0.00878815818578 +3491828,0.0091037366828513 +3491829,0.0250474451607905 +3491830,0.2270622815839212 +3491831,0.0369723911035233 +3491832,0.010276264996999 +3491833,0.0098103210383004 +3491834,0.06488169473019541 +3491835,0.0130535297693167 +3491836,0.0101705040092481 +3491837,0.0093119963762496 +3491838,0.0097412830156704 +3491839,0.0125022167339921 +3491840,0.0125919242833821 +3491841,0.0125852539514372 +3491842,0.0439985518004189 +3491843,0.0274653353852005 +3491844,0.0095442643625214 +3491845,0.016607193276286 +3491846,0.038097083568573 +3491847,0.038097083568573 +3491848,0.0190573698132959 +3491849,0.0095031735908085 +3491850,0.0289464252519476 +3491851,0.028946326963140902 +3491852,0.0649316533344275 +3491853,0.0129155215360276 +3491854,0.0130102060386939 +3491855,0.0101686728006661 +3491856,0.010165991498238 +3491857,0.0089722842881118 +3491858,0.0080920809078589 +3491859,0.0097214805146435 +3491860,0.037455627973036795 +3491861,0.037401463219648 +3491862,0.0088128492897913 +3491863,0.0088254814932538 +3491864,0.047538135201561305 +3491865,0.0187484870615712 +3491866,0.0091494542751558 +3491867,0.0169972819521071 +3491868,0.025281401133487 +3491869,0.0761842548967488 +3491870,0.11424430470102259 +3491871,0.038097083568573 +3491872,0.0380542132642423 +3491873,0.0665500709642001 +3491874,0.0095032410118573 +3491875,0.0096479266786007 +3491876,0.0482509513220182 +3491877,0.0376500148354351 +3491878,0.0109860287102333 +3491879,0.0101687539841063 +3491880,0.0089440152233374 +3491881,0.0267137245972538 +3491882,0.0079044850956954 +3491883,0.0078916469308811 +3491884,0.0152294582130415 +3491885,0.0157883081769996 +3491886,0.0095182519099888 +3491887,0.0466664585718161 +3491888,0.0094502288040762 +3491889,0.0095092143778274 +3491890,0.038097083568573 +3491891,0.0733335580090818 +3491892,0.038097083568573 +3491893,0.114291250705719 +3491894,0.0285219369788307 +3491895,0.009650282561779 +3491896,0.028932176746739702 +3491897,0.0889760759240651 +3491898,0.0098908096665559 +3491899,0.0103323926503133 +3491900,0.0103466987442465 +3491901,0.0089315305534362 +3491902,0.0088794598227291 +3491903,0.039461509821000995 +3491904,0.0078962230688559 +3491905,0.015819813130479 +3491906,0.047531564724732495 +3491907,0.0326107168663215 +3491908,0.0161576364488769 +3491909,0.0472682225031553 +3491910,0.0093425564532027 +3491911,0.190485417842865 +3491912,0.1141021438196867 +3491913,0.0375321418021644 +3491914,0.009650282561779 +3491915,0.0096483425457173 +3491916,0.009648988132374 +3491917,0.0292957612901782 +3491918,0.019665139457982497 +3491919,0.0310294352974679 +3491920,0.0309949747151742 +3491921,0.010559859683856 +3491922,0.0086778087050106 +3491923,0.0078869414685924 +3491924,0.0235985575161999 +3491925,0.0078887885303552 +3491926,0.0157336704048866 +3491927,0.031726363043345404 +3491928,0.032630233706314904 +3491929,0.0163170406570826 +3491930,0.0093964859520934 +3491931,0.0279809569980588 +3491932,0.038097083568573 +3491933,0.038097083568573 +3491934,0.0380859103973328 +3491935,0.009650282561779 +3491936,0.009650282561779 +3491937,0.0096484984199451 +3491938,0.0056081539288886 +3491939,0.0308548835633994 +3491940,0.0512300445725926 +3491941,0.030990100212077203 +3491942,0.0078811351808322 +3491943,0.0155051044780961 +3491944,0.030987014582050998 +3491945,0.0078903533923354 +3491946,0.0487366066559015 +3491947,0.0814297115217467 +3491948,0.0363376586280744 +3491949,0.1139357854986799 +3491950,0.037723030870095 +3491951,0.1141879943571524 +3491952,0.028884890506269502 +3491953,0.0096509180146828 +3491954,0.009650282561779 +3491955,0.028950626759059198 +3491956,0.0109411748126148 +3491957,0.0165775043916071 +3491958,0.0489210304291909 +3491959,0.0122344084084032 +3491960,0.0247942455466393 +3491961,0.0071294175763081 +3491962,0.0102379053942771 +3491963,0.0206287823735715 +3491964,0.0161696425433721 +3491965,0.0163356373273622 +3491966,0.0097485790940876 +3491967,0.0263318824037867 +3491968,0.0372879350186381 +3491969,0.0745789588439255 +3491970,0.0378055509352374 +3491971,0.0096443681155464 +3491972,0.009643302870575 +3491973,0.0191295642165559 +3491974,0.0096420212254952 +3491975,0.0164310921205474 +3491976,0.0273542148127804 +3491977,0.0061115825936669 +3491978,0.0182133392180709 +3491979,0.0183516126126048 +3491980,0.0183516126126048 +3491981,0.0244871588825702 +3491982,0.0082975770997915 +3491983,0.006595691666007 +3491984,0.0068317923418694 +3491985,0.0102297099214774 +3491986,0.0269817383024269 +3491987,0.0099453756641424 +3491988,0.0288116931915283 +3491989,0.0267699293431105 +3491990,0.0281730729991016 +3491991,0.009650282561779 +3491992,0.0273733805465767 +3491993,0.0217283516460729 +3491994,0.0218720109381881 +3491995,0.024538644902849502 +3491996,0.0082199629204083 +3491997,0.0066030659587198 +3491998,0.019787074998021 +3491999,0.032978458330035 +3492000,0.0132643436447611 +3492001,0.0089902522932793 +3492002,0.0095194328376751 +3492003,0.1364789839113 +3492004,0.1435709145823463 +3492005,0.1167737452641378 +3492006,0.024304521304211 +3492007,0.0527259540828389 +3492008,0.013191383332014 +3492009,0.026382766664028 +3492010,0.026382766664028 +3492011,0.0450466455331313 +3492012,0.0065938337492785 +3492013,0.0066013080308514 +3492014,0.0091489690092487 +3492015,0.0557931458664641 +3492016,0.0109128982307033 +3492017,0.0065487841953224 +3492018,0.0336853122313896 +3492019,0.012161757704704 +3492020,0.0262469894534072 +3492021,0.1773267947137353 +3492022,0.0586299122826695 +3492023,0.0093796163025241 +3492024,0.026984457664837 +3492025,0.0328469497600535 +3492026,0.0066257759856424 +3492027,0.0147254947479027 +3492028,0.010243636518077501 +3492029,0.0591089315712451 +3492030,0.0542742248648368 +3492031,0.0576117281612404 +3492032,0.0090141521400641 +3492033,0.0090195037236982 +3492034,0.0151017354928812 +3492035,0.0151215649876815 +3492036,0.0591046475144931 +3492037,0.0587621124726742 +3492038,0.0875502427161566 +3492039,0.1746420154339833 +3492040,0.0091231991984862 +3492041,0.0091130565200123 +3492042,0.11819370843335861 +3492043,0.1758523961049167 +3492044,0.015345565402807 +3492045,0.046764881986983 +3492046,0.0514974450882269 +3492047,0.0560699215365484 +3492048,0.0582442518085628 +3492049,0.0612700662013997 +3492050,0.0149857343239534 +3492051,0.041014138868001204 +3492052,0.0078595996880919 +3492053,0.5782831832766531 +3492054,0.23024817693977911 +3492055,0.0459044885360615 +3492056,0.0459540438188773 +3492057,0.0078595923259854 +3492058,0.0078629936639849 +3492059,0.0080039398250117 +3492060,0.3337374338006593 +3492061,0.22710044755469241 +3492062,0.0577726432020066 +3492063,0.0153703680261969 +3492064,0.0151627643384426 +3492065,0.0078540890358206 +3492066,0.0235826258001686 +3492067,0.061192060468422405 +3492068,0.0411824733018875 +3492069,0.0151588897340699 +3492070,0.0156846081469765 +3492071,0.0078619760666544 +3492072,0.0546170249198822 +3492073,0.0088334857608791 +3492074,0.2875972955759869 +3492075,0.1660521638638068 +3492076,0.0075683541804775 +3492077,0.0294268240813901 +3492078,0.247094839811325 +3492079,0.1227339412100073 +3492080,0.0073538743890821 +3492081,0.0073538743890821 +3492082,0.0073627547264405 +3492083,0.16472989320755 +3492084,0.4113799243643452 +3492085,0.040909380147221 +3492086,0.0077612720889932 +3492087,0.0073538743890821 +3492088,0.014710195619104999 +3492089,0.029478979158732 +3492090,0.0361052846058691 +3492091,0.20404368374416648 +3492092,0.0220616231672463 +3492093,0.0237025002625448 +3492094,0.0662012868179766 +3492095,0.0147751367861965 +3492096,0.0221369612034489 +3492097,0.0310725478647935 +3492098,0.0800167617595922 +3492099,0.0411824733018875 +3492100,0.0073620907864273 +3492101,0.0659809217226653 +3492102,0.036568345759399795 +3492103,0.0340932793915271 +3492104,0.0683206208917995 +3492105,0.0404268456804086 +3492106,0.0302401939406991 +3492107,0.0421000331375907 +3492108,0.0367110853767089 +3492109,0.0073538743890821 +3492110,0.4053480301964938 +3492111,0.1021592865782886 +3492112,0.0715289071027109 +3492113,0.0100800646468997 +3492114,0.0073538743890821 +3492115,0.0294154975563284 +3492116,0.0147077487781642 +3492117,0.0220616231672463 +3492118,0.0264344235474295 +3492119,0.0316293028316926 +3492120,0.0105844345240144 +3492121,0.0302625285774977 +3492122,0.0304257145084465 +3492123,0.0294154975563284 +3492124,0.0073538743890821 +3492125,0.0073538743890821 +3492126,0.0073538743890821 +3492127,0.0147077487781642 +3492128,0.014716192280066199 +3492129,0.0287326008145535 +3492130,0.0309320180536896 +3492131,0.0074369999777287 +3492132,0.022180849452971198 +3492133,0.0217905331877969 +3492134,0.0146944938104967 +3492135,0.0222254300866972 +3492136,0.0073440114651968 +3492137,0.014626502968053401 +3492138,0.0925087840721105 +3492139,0.021732609762980998 +3492140,0.0308557097828235 +3492141,0.2158267714510308 +3492142,0.0072144651080975 +3492143,0.0439597545971984 +3492144,0.1181109298637489 +3492145,0.0106696841600458 +3492146,0.0123659142480645 +3492147,0.0173107029803042 +3492148,0.0306810696504703 +3492149,0.0240643117576837 +3492150,0.0955698977357165 +3492151,0.0107303491998445 +3492152,0.014598022882407101 +3492153,0.0148145440757242 +3492154,0.0026902948575231 +3492155,0.0240643117576837 +3492156,0.0240643117576837 +3492157,0.0036311008447803 +3492158,0.0165815037900564 +3492159,0.0032898789483675 +3492160,0.0225058768588288 +3492161,0.046530339289032 +3492162,0.0238492339866363 +3492163,0.0722153767311298 +3492164,0.0721929352730511 +3492165,0.0073339185494552 +3492166,0.0329618977994577 +3492167,0.0024659997790187 +3492168,0.0091629289722171 +3492169,0.12029992985936899 +3492170,0.1204771320031577 +3492171,0.0719836326573383 +3492172,0.0240643117576837 +3492173,0.0038698742777421 +3492174,0.018340178598556002 +3492175,0.0469960253190599 +3492176,0.0240643117576837 +3492177,0.07216673351395039 +3492178,0.0240643117576837 +3492179,0.12032155878841849 +3492180,0.0240643117576837 +3492181,0.0962572470307348 +3492182,0.1683160896716626 +3492183,0.1443858705461022 +3492184,0.0718075659884326 +3492185,0.0240643117576837 +3492186,0.0240643117576837 +3492187,0.0717426756648874 +3492188,0.0240643117576837 +3492189,0.07211720546275699 +3492190,0.0962572470307348 +3492191,0.0240643117576837 +3492192,0.0240643117576837 +3492193,0.1187601079770763 +3492194,0.0950610853681591 +3492195,0.0240643117576837 +3492196,0.07215261490702579 +3492197,0.0481286235153674 +3492198,0.0229948702017439 +3492199,0.0721728868640566 +3492200,0.0721929352730511 +3492201,0.12032155878841849 +3492202,0.2637360340277691 +3492203,0.07165614522223049 +3492204,0.0239095295199284 +3492205,0.0474653603889914 +3492206,0.07544623380572091 +3492207,0.039516052884272 +3492208,0.0132258683443069 +3492209,0.0449118414023309 +3492210,0.0750237157792034 +3492211,0.0394885717505506 +3492212,0.039625314967989 +3492213,0.0150595000013709 +3492214,0.0149433178630697 +3492215,0.0392766620549517 +3492216,0.0131718343613232 +3492217,0.0150595000013709 +3492218,0.0450370790525726 +3492219,0.091189909886522 +3492220,0.013160998839136 +3492221,0.0264911631409398 +3492222,0.0751459558867813 +3492223,0.0451785000041127 +3492224,0.0728807912486096 +3492225,0.0080455771443349 +3492226,0.0149235064390003 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001180900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001180900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001180900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001181900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001181900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001181900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001182000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001182000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001182000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001182100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001182100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001182100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001182200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001182200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001182200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001182300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001182300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0f91ff25c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001182300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0761566335045602 +3490292,0.11896603839564901 +3490293,0.0188547819852828 +3490316,0.0377095639705656 +3490317,0.094273909926414 +3490332,0.0565643459558484 +3490333,0.057330869048425395 +3490334,0.1137707927948535 +3490335,0.0188547819852828 +3490348,0.0188121027470693 +3490349,0.0154560351343364 +3490350,0.0188547819852828 +3490351,0.0565643459558484 +3490374,0.029794847547675703 +3490375,0.08377243282871791 +3490376,0.10529356374146051 +3490377,0.0370573836541399 +3490378,0.0377095639705656 +3490379,0.1698723315561812 +3490396,0.0140066644490162 +3490397,0.0278274472802876 +3490398,0.0565591318250351 +3490399,0.0377095639705656 +3490418,0.11315354941942231 +3490419,0.0188547819852828 +3490437,0.0188584602624726 +3490438,0.09442330196932071 +3490439,0.033964865995433 +3490440,0.0188547040888895 +3490457,0.0417456655602997 +3490458,0.042245988729959 +3490459,0.0377095639705656 +3490460,0.0830251561355045 +3490476,0.0376085559022674 +3490477,0.0561304093956496 +3490478,0.022649772465229 +3490479,0.022649772465229 +3490499,0.0771327762788587 +3490500,0.0113248862326145 +3490517,0.015186474531054 +3490518,0.0275197016687428 +3490519,0.045299544930458 +3490520,0.0566244311630725 +3490544,0.0113248862326145 +3490545,0.0113312494095314 +3490546,0.022649772465229 +3490547,0.0112511819524165 +3490573,0.0338249013167607 +3490574,0.0113248862326145 +3490575,0.0106041877484998 +3490576,0.0218076551838034 +3490597,0.028979048090944398 +3490598,0.0284080417199605 +3490599,0.0116030228908479 +3490600,0.0363715852806454 +3490601,0.018615806254812 +3490602,0.0186783407346897 +3490603,0.0179446826642168 +3490604,0.017842901744128 +3490623,0.0092981541529297 +3490624,0.0185963083058594 +3490625,0.0142701760116097 +3490626,0.0510026582845804 +3490639,0.0092981541529297 +3490640,0.0371926166117188 +3490641,0.018974095058073702 +3490642,0.0424071540854391 +3490643,0.071141275130232 +3490644,0.0170083995908498 +3490645,0.0169581412084591 +3490658,0.0185963083058594 +3490659,0.0092981541529297 +3490660,0.0996139749636974 +3490661,0.0427809431672805 +3490662,0.1193053547021166 +3490663,0.0170083995908498 +3490664,0.016928215310905 +3490665,0.0509138121810333 +3490681,0.046751650648482496 +3490682,0.0092981541529297 +3490683,0.0092981541529297 +3490684,0.0185963083058594 +3490685,0.0140228820651522 +3490686,0.0142805369233081 +3490687,0.0171174414570521 +3490688,0.0170547726239084 +3490689,0.0169854263629948 +3490690,0.0170083995908498 +3490707,0.0185963083058594 +3490708,0.0092981541529297 +3490709,0.0094609787087673 +3490710,0.0092981541529297 +3490725,0.0092843377100544 +3490726,0.0092981541529297 +3490727,0.0278944624587891 +3490728,0.0372769527044549 +3490736,0.0651500964681601 +3490737,0.0466854972731302 +3490738,0.1055330430996535 +3490739,0.0489103565044021 +3490747,0.29131992931543926 +3490748,0.0110850979429119 +3490757,0.0348920604745355 +3490758,0.0271323251407281 +3490771,0.0261631392629376 +3490772,0.0087280126497718 +3490773,0.0091183288715106 +3490774,0.0174455591044793 +3490787,0.0171419017921073 +3490788,0.0089776690508197 +3490789,0.0499798753468371 +3490790,0.0714714508825022 +3490805,0.0086152278966418 +3490806,0.025635042745093803 +3490807,0.016762226819992 +3490808,0.0485055891271816 +3490809,0.0102879461203673 +3490810,0.0104542460529995 +3490827,0.0097054457222303 +3490828,0.0100380131253762 +3490842,0.0293745805918499 +3490843,0.0097896587103605 +3490844,0.0099735966093315 +3490845,0.0302730088144234 +3490856,0.0097896587103605 +3490857,0.0103508281737682 +3490858,0.0097896587103605 +3490859,0.029539809736352 +3490860,0.0101525234058499 +3490861,0.050676168474522 +3490875,0.0097896587103605 +3490876,0.0097896587103605 +3490877,0.0311585698638453 +3490878,0.0105268502575455 +3490879,0.0203050468116998 +3490892,0.029368976131081498 +3490893,0.029368976131081498 +3490894,0.0101525234058499 +3490895,0.0106777185637111 +3490900,0.0097827870254435 +3490901,0.009393275479225 +3490902,0.0295616318593043 +3490903,0.0293700953193236 +3490904,0.0332169120846662 +3490905,0.0309250509398952 +3490906,0.0324213412826241 +3490907,0.0690293871099677 +3490916,0.0294091438086043 +3490917,0.0098524677164795 +3490918,0.0097758120929985 +3490919,0.0097909869979373 +3490920,0.009887330500228 +3490921,0.0211527973914235 +3490922,0.0306713042832226 +3490923,0.1600710983598072 +3490924,0.0118810332499731 +3490925,0.0466046696275903 +3490926,0.1244417112501327 +3490935,0.0092436032159863 +3490936,0.0102033720827144 +3490937,0.0237897466256507 +3490938,0.0226588076980393 +3490939,0.0344051558420205 +3490940,0.0342069042415212 +3490941,0.0141538392869493 +3490942,0.0139991871852356 +3490953,0.0096940029376472 +3490954,0.0097899416334841 +3490955,0.0092766869522969 +3490956,0.0112270489214256 +3490957,0.0167750455171801 +3490958,0.0159905359397111 +3490959,0.0342503534629941 +3490960,0.0342268248528059 +3490966,0.0269062472507355 +3490967,0.0089687490835785 +3490968,0.0136384571439333 +3490969,0.0147109906719422 +3490970,0.1165405986395104 +3490971,0.0163386069636667 +3490972,0.060744228329834 +3490973,0.0152084016418036 +3490974,0.0114167844876647 +3490975,0.034320610156377496 +3490980,0.0270103720336327 +3490981,0.0089755421983633 +3490982,0.0089813276322042 +3490983,0.0633832242334816 +3490984,0.0733677455755955 +3490985,0.1623232561376135 +3490986,0.016502933131991 +3490987,0.0496168960220215 +3490988,0.0491464706147415 +3490989,0.015302020578235 +3490990,0.0455913805390213 +3490991,0.0151603210609357 +3490992,0.0114167844876647 +3490993,0.0114167844876647 +3490994,0.0366174280174852 +3490995,0.0114167844876647 +3490999,0.0089876988645414 +3491000,0.0091200006818078 +3491001,0.0125961648042563 +3491002,0.027136928921136498 +3491003,0.0147711285824109 +3491004,0.0147752092424301 +3491005,0.0496513378150356 +3491006,0.08228502783451111 +3491007,0.0352186336206063 +3491008,0.0376405510669159 +3491009,0.0570942319095367 +3491010,0.0341272266838318 +3491013,0.0104726116289135 +3491014,0.0117172221871809 +3491015,0.049499038638437104 +3491016,0.049493990024924994 +3491017,0.165133620968015 +3491018,0.021406391396443 +3491019,0.0588869399912649 +3491020,0.0114167844876647 +3491021,0.0180584769695996 +3491022,0.009958695303067 +3491023,0.0120452840851029 +3491024,0.0095506067783958 +3491025,0.05579925053202971 +3491026,0.0183927060212133 +3491027,0.0279247882385955 +3491028,0.0320812184953546 +3491029,0.0090292384847998 +3491030,0.0455124030398514 +3491031,0.046306805181922296 +3491032,0.0306395816852761 +3491033,0.0133791868117827 +3491034,0.0120931146666407 +3491035,0.0120572384355145 +3491036,0.0191044615486367 +3491037,0.0183964874595403 +3491038,0.0326445567108032 +3491039,0.1789962006281633 +3491040,0.0090292384847998 +3491041,0.0270877154543994 +3491042,0.0134727200493216 +3491043,0.0131806004802516 +3491044,0.0120100142402914 +3491045,0.0604269070929512 +3491046,0.0183964874595403 +3491047,0.0183611312992718 +3491048,0.0324622485888326 +3491049,0.0324216708540916 +3491050,0.1086871170002692 +3491051,0.0362216021749134 +3491052,0.0090292384847998 +3491053,0.0453183939265448 +3491054,0.040423904584796 +3491055,0.0403002932646421 +3491056,0.0120298629698114 +3491057,0.0851420885876011 +3491058,0.0183964874595403 +3491059,0.056274196163435805 +3491060,0.16218300523414042 +3491061,0.0324216708540916 +3491062,0.09692248802563751 +3491063,0.1613531125507819 +3491064,0.0362236206353117 +3491065,0.18125459153363022 +3491066,0.0270877154543994 +3491067,0.0090292384847998 +3491068,0.0097605761789128 +3491069,0.0090781056779237 +3491070,0.0120109181644537 +3491071,0.0269883932946064 +3491072,0.12915564584304912 +3491073,0.0551697240051669 +3491074,0.0324216708540916 +3491075,0.2909366203523363 +3491076,0.1087266215571505 +3491077,0.0362283296300008 +3491078,0.0840296394985786 +3491079,0.036383898444619 +3491080,0.0274122536127085 +3491081,0.0090567539235538 +3491082,0.0173317170033979 +3491083,0.0183601205650464 +3491084,0.0183964874595403 +3491085,0.0183964874595403 +3491086,0.09744061917373661 +3491087,0.0973094865362219 +3491088,0.06878987913548179 +3491089,0.10486186627365729 +3491090,0.0344023108738122 +3491091,0.0357786021914065 +3491092,0.0271992249293267 +3491093,0.009162693384968 +3491094,0.05518946237862091 +3491095,0.091900587069732 +3491096,0.09627052371882922 +3491097,0.0319963599708245 +3491098,0.0810306141256001 +3491099,0.0334290672311789 +3491100,0.0346039035837971 +3491101,0.0433896707434597 +3491102,0.0689140666605021 +3491103,0.0918971955263471 +3491104,0.0919580006351189 +3491105,0.044901898831363696 +3491106,0.0993891515755726 +3491107,0.0528030237186588 +3491108,0.0315104298140149 +3491109,0.1147534682890928 +3491110,0.0401603573264199 +3491111,0.0697738888589126 +3491112,0.0086114099249243 +3491113,0.1070606118619716 +3491114,0.075910423255905 +3491115,0.1276566908144981 +3491116,0.0917862405522708 +3491117,0.0143822741064761 +3491118,0.0708039796044547 +3491119,0.1219341629169064 +3491120,0.0612853161532255 +3491121,0.0311599398094922 +3491122,0.0133113681309794 +3491123,0.0491462500663387 +3491124,0.056378267411819 +3491125,0.026120053405774602 +3491126,0.1359488739511711 +3491127,0.0088561472529148 +3491128,0.0615314090840727 +3491129,0.0151224511467297 +3491130,0.0152233690023422 +3491131,0.0320300175952323 +3491132,0.0466940156641004 +3491133,0.0141322910785675 +3491134,0.0141221529561882 +3491135,0.0203617792576551 +3491136,0.2237244452618939 +3491137,0.09349935248277229 +3491138,0.15153809949537028 +3491139,0.168391221133591 +3491140,0.0161301311794636 +3491141,0.1420980768721029 +3491142,0.0086382516099786 +3491143,0.0092284524868715 +3491144,0.0471295623172866 +3491145,0.0152233690023422 +3491146,0.0568013500345567 +3491147,0.0141162981744022 +3491148,0.0203617792576551 +3491149,0.0103625254705548 +3491150,0.0103886671646488 +3491151,0.0511310955621057 +3491152,0.0504469547879627 +3491153,0.0128073282539844 +3491154,0.0393909437351607 +3491155,0.0994314648086585 +3491156,0.1688994318796172 +3491157,0.0837116364717092 +3491158,0.0811404323990785 +3491159,0.028713351285457 +3491160,0.0422317456708671 +3491161,0.0814471170306204 +3491162,0.0203617792576551 +3491163,0.0323480635066773 +3491164,0.0326874173720625 +3491165,0.15286706773621478 +3491166,0.0502646256031062 +3491167,0.0393358937598731 +3491168,0.038450459989474196 +3491169,0.09978689014803291 +3491170,0.0166316572576761 +3491171,0.1708596437516989 +3491172,0.040795824923198 +3491173,0.0269802361649584 +3491174,0.0270564647835635 +3491175,0.0142473036749124 +3491176,0.06084254420156179 +3491177,0.0198763948498304 +3491178,0.0203617792576551 +3491179,0.06108533777296529 +3491180,0.0108636928935946 +3491181,0.20385818848971488 +3491182,0.1529870002471832 +3491183,0.09105977327265409 +3491184,0.1155638872262577 +3491185,0.0166023506507901 +3491186,0.0169384904350781 +3491187,0.0665266290307044 +3491188,0.10113645042754871 +3491189,0.4278569918792673 +3491190,0.1275682128270774 +3491191,0.0093389453009343 +3491192,0.0274034820931842 +3491193,0.0203617792576551 +3491194,0.0203617792576551 +3491195,0.0434837513074737 +3491196,0.4569612406952009 +3491197,0.0926107904316347 +3491198,0.10246732427285339 +3491199,0.0838507343532515 +3491200,0.069041988124125 +3491201,0.21332378381914718 +3491202,0.0855880454182624 +3491203,0.0106680394194118 +3491204,0.0451958475552367 +3491205,0.0590502246732153 +3491206,0.0203617792576551 +3491207,0.08135827592683299 +3491208,0.040609110250034094 +3491209,0.0310121206950357 +3491210,0.0231022414979059 +3491211,0.0932313767943483 +3491212,0.035263756914518204 +3491213,0.2972666750926205 +3491214,0.1281795926538042 +3491215,0.0427940227091312 +3491216,0.0427940227091312 +3491217,0.0449862943291021 +3491218,0.0456284552719825 +3491219,0.0400940360967955 +3491220,0.1425324548035857 +3491221,0.1006038692440977 +3491222,0.0814471170306204 +3491223,0.0306167191202026 +3491224,0.030892795213239 +3491225,0.2046603808737364 +3491226,0.027319905239432 +3491227,0.0317850597202777 +3491228,0.0636661407176212 +3491229,0.0690022890074417 +3491230,0.034458570530316396 +3491231,0.1283820681273936 +3491232,0.0425769262853578 +3491233,0.0191440197658701 +3491234,0.018328293246392402 +3491235,0.2236960520257856 +3491236,0.020356055224488 +3491237,0.0377402238425669 +3491238,0.0203803258961789 +3491239,0.0311862338251046 +3491240,0.0306585937566374 +3491241,0.0218347146616283 +3491242,0.0264535958539124 +3491243,0.0086270784959197 +3491244,0.0087457790244686 +3491245,0.0949361024246538 +3491246,0.15892529860138851 +3491247,0.0590771233441134 +3491248,0.0113528557121753 +3491249,0.0427940227091312 +3491250,0.0427940227091312 +3491251,0.009075764503267 +3491252,0.10122020609778759 +3491253,0.0203617792576551 +3491254,0.0203445710966278 +3491255,0.0920169076162855 +3491256,0.0613442696630954 +3491257,0.0875469949258402 +3491258,0.0602818045822014 +3491259,0.0123077011802904 +3491260,0.0129557343979718 +3491261,0.0829134894147874 +3491262,0.08407364476524559 +3491263,0.0086270784959197 +3491264,0.0173958843832733 +3491265,0.1271402388811108 +3491266,0.0950084491008579 +3491267,0.0317850597202777 +3491268,0.0318471886575243 +3491269,0.0809083370144513 +3491270,0.0568456498535428 +3491271,0.127305862366844 +3491272,0.0427940227091312 +3491273,0.2567641362547872 +3491274,0.2977325384666509 +3491275,0.1006556890739661 +3491276,0.08019527776741009 +3491277,0.0306721348315477 +3491278,0.0202310722175897 +3491279,0.0113398016763848 +3491280,0.011163438094074 +3491281,0.011478167021218 +3491282,0.0115068997641703 +3491283,0.0469153794887558 +3491284,0.08401919178136891 +3491285,0.08408123320167671 +3491286,0.0263927270324728 +3491287,0.026528576461334698 +3491288,0.0317850597202777 +3491289,0.063552396174573 +3491290,0.0820681277867647 +3491291,0.0244348163783378 +3491292,0.170618090944274 +3491293,0.0425243433121369 +3491294,0.0405869818543786 +3491295,0.0610715499123072 +3491296,0.1421660001113931 +3491297,0.1447242045090105 +3491298,0.0917296985275787 +3491299,0.0122639841066087 +3491300,0.0217048583252763 +3491301,0.0111491967453768 +3491302,0.0335784299350599 +3491303,0.0349468058307117 +3491304,0.011852823292786 +3491305,0.0115076196128611 +3491306,0.057595189918474496 +3491307,0.0234994061827265 +3491308,0.0280164155225737 +3491309,0.08407983536922001 +3491310,0.0179709322061007 +3491311,0.1271402388811108 +3491312,0.0317850597202777 +3491313,0.0237634304745267 +3491314,0.048799114069686095 +3491315,0.0199515057808745 +3491316,0.06108533777296529 +3491317,0.0203617792576551 +3491318,0.0244261565242621 +3491319,0.0121778311255842 +3491320,0.0121795227065005 +3491321,0.012174473144114 +3491322,0.0320024008273313 +3491323,0.1076654360645856 +3491324,0.0223629680314993 +3491325,0.0111544513591813 +3491326,0.0153789906325561 +3491327,0.0163914039275891 +3491328,0.0460481849083613 +3491329,0.0115200588479638 +3491330,0.0156804544128546 +3491331,0.0209774916929453 +3491332,0.09535517916083311 +3491333,0.0317850597202777 +3491334,0.34963565692305476 +3491335,0.12690223458966082 +3491336,0.020362571237800102 +3491337,0.0208805519492306 +3491338,0.0700175191026743 +3491339,0.0401153001399113 +3491340,0.0203617792576551 +3491341,0.06108533777296529 +3491342,0.012174473144114 +3491343,0.060872365720570004 +3491344,0.0219803617886159 +3491345,0.0221520461507367 +3491346,0.0461652186453059 +3491347,0.0463636109162563 +3491348,0.016605256866205 +3491349,0.04988293536007381 +3491350,0.0346543583310677 +3491351,0.0345601765438914 +3491352,0.0838406312195591 +3491353,0.0119359039328836 +3491354,0.011258474916551 +3491355,0.022769131283135798 +3491356,0.09517637588328161 +3491357,0.0920804966391873 +3491358,0.0308663629530668 +3491359,0.0317850597202777 +3491360,0.44477818753037673 +3491361,0.09535517916083311 +3491362,0.0141038131003649 +3491363,0.014983646316086001 +3491364,0.014026346976886199 +3491365,0.0143130793886455 +3491366,0.014804083508893 +3491367,0.0101403206503939 +3491368,0.0067001856667049 +3491369,0.081439736698942 +3491370,0.0203617792576551 +3491371,0.0610852773393979 +3491372,0.0406259524513672 +3491373,0.024338120400839602 +3491374,0.012174473144114 +3491375,0.012174473144114 +3491376,0.0243650581458442 +3491377,0.0221604127436876 +3491378,0.044766038493300096 +3491379,0.0153765720706972 +3491380,0.0154255689851276 +3491381,0.0165941357979046 +3491382,0.0166276451200246 +3491383,0.0166276451200246 +3491384,0.016335243519811 +3491385,0.0115059454450678 +3491386,0.0460810476644214 +3491387,0.0239044532518293 +3491388,0.035876802592603896 +3491389,0.0112645572784088 +3491390,0.0515709665193998 +3491391,0.0112772590532924 +3491392,0.09506954082113311 +3491393,0.34963565692305476 +3491394,0.0066804365918046 +3491395,0.0909555547091286 +3491396,0.0184510722756384 +3491397,0.0062156669394485 +3491398,0.0203617792576551 +3491399,0.1017995752775599 +3491400,0.0121611025784518 +3491401,0.012174473144114 +3491402,0.024485634762984203 +3491403,0.0122764498334308 +3491404,0.0142466267237396 +3491405,0.0665488309960304 +3491406,0.0613314152708325 +3491407,0.0122678549960255 +3491408,0.0153954749254695 +3491409,0.0154370879038229 +3491410,0.0153925072795504 +3491411,0.0167132530189064 +3491412,0.0166276451200246 +3491413,0.033295046333678496 +3491414,0.0334871413222513 +3491415,0.0166276451200246 +3491416,0.0830370953931282 +3491417,0.0229747151008224 +3491418,0.080766702061841 +3491419,0.0119491552703885 +3491420,0.0109248556871545 +3491421,0.0213537546908439 +3491422,0.1061432036803963 +3491423,0.2218022928500165 +3491424,0.0635701194405554 +3491425,0.08024551358409909 +3491426,0.0074403673110247 +3491427,0.0189731929637313 +3491428,0.0061503574252128 +3491429,0.06108533777296529 +3491430,0.06108533777296529 +3491431,0.0201788910477406 +3491432,0.0121732627751909 +3491433,0.012174473144114 +3491434,0.012174473144114 +3491435,0.012174473144114 +3491436,0.0113138975575566 +3491437,0.0339416926726698 +3491438,0.0368035649880765 +3491439,0.0123251207032036 +3491440,0.0295270568546624 +3491441,0.0305726428627365 +3491442,0.0150299705224216 +3491443,0.0156409446882685 +3491444,0.0231970484470941 +3491445,0.011542654244944 +3491446,0.0120829097183738 +3491447,0.0287603021141994 +3491448,0.0101123177876342 +3491449,0.06468670945137661 +3491450,0.0218096282333135 +3491451,0.1271402388811108 +3491452,0.0316771788258868 +3491453,0.0317850597202777 +3491454,0.0954272859929127 +3491455,0.0337544158101081 +3491456,0.168668389309661 +3491457,0.0061957440720075 +3491458,0.0170386466803927 +3491459,0.0230656258842598 +3491460,0.0079010231787164 +3491461,0.0200166791211018 +3491462,0.0062756150705691 +3491463,0.0405730739856833 +3491464,0.0201013839814081 +3491465,0.06108533777296529 +3491466,0.0203617792576551 +3491467,0.0120429380385427 +3491468,0.012174473144114 +3491469,0.012174473144114 +3491470,0.08544928676673061 +3491471,0.0122178121686929 +3491472,0.0113398038932791 +3491473,0.0567164452236775 +3491474,0.0122678549960255 +3491475,0.0367604182841551 +3491476,0.0093690992901732 +3491477,0.053941456678443 +3491478,0.0144365545501532 +3491479,0.028699614202967003 +3491480,0.0192931354023389 +3491481,0.0216848149263049 +3491482,0.0654288846999405 +3491483,0.1271402388811108 +3491484,0.0271694325645248 +3491485,0.0318315174085485 +3491486,0.09546515693860311 +3491487,0.1006729716856691 +3491488,0.1678456191787263 +3491489,0.0337544158101081 +3491490,0.0056375376880168 +3491491,0.011301705195585099 +3491492,0.0189214600367202 +3491493,0.0202042945804866 +3491494,0.0203617792576551 +3491495,0.0407235585153102 +3491496,0.0364278415072566 +3491497,0.012174473144114 +3491498,0.012174473144114 +3491499,0.0122128586253076 +3491500,0.0339962619951837 +3491501,0.0113220216555695 +3491502,0.0121983678372813 +3491503,0.0088061272178791 +3491504,0.008073104214325 +3491505,0.029109833643667 +3491506,0.0118300154726989 +3491507,0.0203090265415168 +3491508,0.0300500886570555 +3491509,0.064056342336467 +3491510,0.0654288846999405 +3491511,0.0317850597202777 +3491512,0.0284597585638038 +3491513,0.0750716336336152 +3491514,0.0378799303325482 +3491515,0.0337544158101081 +3491516,0.0335816106266545 +3491517,0.0282675826207364 +3491518,0.028193451934215002 +3491519,0.0185467785920109 +3491520,0.0610469345054791 +3491521,0.1015077856103773 +3491522,0.0121504691570809 +3491523,0.0121713962195898 +3491524,0.0365263090376697 +3491525,0.0609253380622284 +3491526,0.0226909991439788 +3491527,0.0118024709293879 +3491528,0.0225997818272428 +3491529,0.0113138975575566 +3491530,0.0089353464148783 +3491531,0.0083248628605202 +3491532,0.0174152649527749 +3491533,0.0116925546006953 +3491534,0.0202247228799281 +3491535,0.0317850597202777 +3491536,0.0297177835426167 +3491537,0.0316714612766428 +3491538,0.0455886549735351 +3491539,0.0095228451578705 +3491540,0.0337544158101081 +3491541,0.1011830919524805 +3491542,0.0174890964605423 +3491543,0.0056375376880168 +3491544,0.0059165569769297 +3491545,0.0606461755704899 +3491546,0.06108533777296529 +3491547,0.0387875672719893 +3491548,0.0201998804317223 +3491549,0.0339416926726698 +3491550,0.0339416926726698 +3491551,0.0226283456640618 +3491552,0.0586766948404261 +3491553,0.025917122417402898 +3491554,0.0083151726100563 +3491555,0.0062761702960724 +3491556,0.2068198273449349 +3491557,0.0297074396409866 +3491558,0.0317585019952814 +3491559,0.0953505193051424 +3491560,0.0337544158101081 +3491561,0.0337544158101081 +3491562,0.1687720790505405 +3491563,0.033538621680448 +3491564,0.0175787390267957 +3491565,0.0115240214027823 +3491566,0.0060996927792476 +3491567,0.0195540563644887 +3491568,0.08135438526903149 +3491569,0.0203024125926297 +3491570,0.0117294057204515 +3491571,0.0339416926726698 +3491572,0.0339445083803812 +3491573,0.0168242846925643 +3491574,0.025169240448599098 +3491575,0.0886577378700246 +3491576,0.0296065080910921 +3491577,0.0296065080910921 +3491578,0.0296803989629142 +3491579,0.0328523527285754 +3491580,0.0333999579263491 +3491581,0.0337544158101081 +3491582,0.0057218633973177 +3491583,0.011449186289705801 +3491584,0.08030280441256621 +3491585,0.0348524123120899 +3491586,0.011380080132282 +3491587,0.0113138975575566 +3491588,0.0339499121444597 +3491589,0.0282995493310911 +3491590,0.0162447165036808 +3491591,0.0115093451012087 +3491592,0.0288909999918897 +3491593,0.0296065080910921 +3491594,0.0298175045812747 +3491595,0.0304620733651379 +3491596,0.0305628554886718 +3491597,0.07773788211920651 +3491598,0.18006426019051008 +3491599,0.0061383229070717 +3491600,0.0173759948527171 +3491601,0.0493708107331072 +3491602,0.0110605498556129 +3491603,0.0229921105937926 +3491604,0.0455630100576653 +3491605,0.102306178387038 +3491606,0.0113324677309502 +3491607,0.0437464641847331 +3491608,0.0147372089134236 +3491609,0.0373849793074411 +3491610,0.0563296541097729 +3491611,0.0079114165292362 +3491612,0.0083528819365618 +3491613,0.0275399258586323 +3491614,0.0336124404338013 +3491615,0.0097009438106975 +3491616,0.0096847924047801 +3491617,0.0263901549359639 +3491618,0.10241538427989841 +3491619,0.023036075110426803 +3491620,0.0167115358388537 +3491621,0.0164745729416608 +3491622,0.0164745729416608 +3491623,0.0147516101836732 +3491624,0.0146915083751082 +3491625,0.0294312271269488 +3491626,0.0188258755952119 +3491627,0.0564776267856357 +3491628,0.0093279908272719 +3491629,0.0084846436506311 +3491630,0.0445066750669504 +3491631,0.0336171947419643 +3491632,0.100667371513529 +3491633,0.0336171947419643 +3491634,0.0095391591654534 +3491635,0.0287678620012084 +3491636,0.0162722714662663 +3491637,0.0413540745533641 +3491638,0.0321466551818639 +3491639,0.0314736936504398 +3491640,0.023041971367166403 +3491641,0.0235759538630013 +3491642,0.0114663571460565 +3491643,0.0164745729416608 +3491644,0.0161339111965494 +3491645,0.0164276101367987 +3491646,0.0146915083751082 +3491647,0.0147297003518689 +3491648,0.0188258755952119 +3491649,0.0188075107275268 +3491650,0.037314083906786 +3491651,0.0101868530291216 +3491652,0.0509577167376284 +3491653,0.1100515550467109 +3491654,0.1675738124498461 +3491655,0.0095214420665777 +3491656,0.0415317121532468 +3491657,0.027663756467864502 +3491658,0.09534653395555 +3491659,0.0966813225854933 +3491660,0.0342992114443064 +3491661,0.0339588022235338 +3491662,0.0163353352445784 +3491663,0.0164745729416608 +3491664,0.0147898063043642 +3491665,0.015007975644948 +3491666,0.0734720780535998 +3491667,0.044074548796624397 +3491668,0.0293830167502164 +3491669,0.0297601325346351 +3491670,0.0188258755952119 +3491671,0.0564776215719333 +3491672,0.0186387035926229 +3491673,0.010104619897902 +3491674,0.0107786091899338 +3491675,0.0115775809744615 +3491676,0.0202811355374797 +3491677,0.1008515842258929 +3491678,0.033303960592707 +3491679,0.0140926307773763 +3491680,0.0131395960691776 +3491681,0.16122588887810702 +3491682,0.2247747080121919 +3491683,0.0320515211383419 +3491684,0.0343599839755651 +3491685,0.0344038778315514 +3491686,0.0328393187318652 +3491687,0.016411803930982 +3491688,0.013745626451243 +3491689,0.0074692697308689 +3491690,0.0153278470514877 +3491691,0.0145954914011882 +3491692,0.0438263533045243 +3491693,0.0440830274160928 +3491694,0.056433356494930295 +3491695,0.0564314829748708 +3491696,0.0188258755952119 +3491697,0.0186990132468956 +3491698,0.030585441040419 +3491699,0.045076376722683595 +3491700,0.0336171947419643 +3491701,0.0336171947419643 +3491702,0.0666409508974474 +3491703,0.0327173456484324 +3491704,0.0140427265764118 +3491705,0.0399369876924894 +3491706,0.1860402090194981 +3491707,0.0644903555512428 +3491708,0.0110816681739677 +3491709,0.0102797775448563 +3491710,0.0115035407153327 +3491711,0.0127189216571182 +3491712,0.0299076490730192 +3491713,0.044050357008091 +3491714,0.0735678776355954 +3491715,0.0188258755952119 +3491716,0.0188258755952119 +3491717,0.0564776267856357 +3491718,0.018797052864165 +3491719,0.0125745149796037 +3491720,0.0336171947419643 +3491721,0.1008515842258929 +3491722,0.0329543837062705 +3491723,0.0336171947419643 +3491724,0.0106552980276091 +3491725,0.0265384179007719 +3491726,0.048204989373044196 +3491727,0.0175367467630321 +3491728,0.032157447865499 +3491729,0.057015005714077104 +3491730,0.0333116474346141 +3491731,0.0226412562577916 +3491732,0.013079856066611 +3491733,0.0113152613090478 +3491734,0.0220997341916087 +3491735,0.0145303496864299 +3491736,0.0440401541600725 +3491737,0.0145619415548125 +3491738,0.0748101977931574 +3491739,0.0188258755952119 +3491740,0.0188258755952119 +3491741,0.0188258755952119 +3491742,0.0554029382280676 +3491743,0.0666817142071546 +3491744,0.0334036691581613 +3491745,0.0336171947419643 +3491746,0.0672343894839286 +3491747,0.0320787611613619 +3491748,0.0668974662246134 +3491749,0.0211933736584718 +3491750,0.0106378814139438 +3491751,0.0606922709175549 +3491752,0.0086390655487775 +3491753,0.009605795832748 +3491754,0.0095876215673124 +3491755,0.0596665074330503 +3491756,0.0196936803143178 +3491757,0.0323741059885202 +3491758,0.0221893003102168 +3491759,0.013055923185945 +3491760,0.0130766054930242 +3491761,0.0112800067290663 +3491762,0.0102284720317908 +3491763,0.0074595461648035 +3491764,0.0073566532472712 +3491765,0.0148801478155585 +3491766,0.056249668901193095 +3491767,0.0188125311716723 +3491768,0.056169689638432 +3491769,0.037528377933572 +3491770,0.0563765219155046 +3491771,0.0188258755952119 +3491772,0.1677969066796997 +3491773,0.0336171947419643 +3491774,0.053306856146373496 +3491775,0.0317922871053267 +3491776,0.0086494118930889 +3491777,0.0086241706593122 +3491778,0.0097974810318026 +3491779,0.0095797339454293 +3491780,0.059859137249239594 +3491781,0.0198770929127931 +3491782,0.0130547817461247 +3491783,0.039249961019496196 +3491784,0.0324835378919836 +3491785,0.0341616225394004 +3491786,0.0243676303996073 +3491787,0.0081246374174952 +3491788,0.0073518208228051 +3491789,0.0176648645242524 +3491790,0.0187217512928488 +3491791,0.1442669475254926 +3491792,0.0336653578179942 +3491793,0.0335301486997213 +3491794,0.1005657439527997 +3491795,0.0425253361463544 +3491796,0.0106313340365886 +3491797,0.0086276946259781 +3491798,0.047905740011307 +3491799,0.0095834328665714 +3491800,0.0594680392775975 +3491801,0.0198175798730263 +3491802,0.0130315419868873 +3491803,0.0653418166573103 +3491804,0.0116522821266369 +3491805,0.023232404288277803 +3491806,0.0162343265833063 +3491807,0.0081246374174952 +3491808,0.0329880005460093 +3491809,0.0455862984655311 +3491810,0.0368043548136808 +3491811,0.0660360273946492 +3491812,0.0332403925939228 +3491813,0.0328867927600067 +3491814,0.021179106095732703 +3491815,0.0106313340365886 +3491816,0.0210661476661928 +3491817,0.0383173615806964 +3491818,0.0554172960007174 +3491819,0.021233149693776703 +3491820,0.0191245965921635 +3491821,0.0131235545379651 +3491822,0.0392964684673663 +3491823,0.011574545779862 +3491824,0.0349692715198077 +3491825,0.0081221760056284 +3491826,0.0243996320866737 +3491827,0.0081246374174952 +3491828,0.0096090005412011 +3491829,0.0265865863198388 +3491830,0.2283034606877839 +3491831,0.0371875625152538 +3491832,0.0100579392319869 +3491833,0.0091294321463332 +3491834,0.0625898763126327 +3491835,0.0125973285784855 +3491836,0.0097818358572743 +3491837,0.0088921813012285 +3491838,0.0090966350145798 +3491839,0.0116499699652194 +3491840,0.0117370597434304 +3491841,0.0117251686914685 +3491842,0.0406723757658454 +3491843,0.0253334466033645 +3491844,0.0100449426477585 +3491845,0.0176343787461518 +3491846,0.038300547748804 +3491847,0.038300547748804 +3491848,0.0181005349168597 +3491849,0.0090099956867168 +3491850,0.0265725171839016 +3491851,0.026581733018228103 +3491852,0.0626184114733718 +3491853,0.0124532541923772 +3491854,0.0125546077232658 +3491855,0.00978153240013 +3491856,0.0097834688253352 +3491857,0.0084216903816266 +3491858,0.0074570326636386 +3491859,0.0090663093752809 +3491860,0.0349068249555051 +3491861,0.0348492686815788 +3491862,0.0081455824419462 +3491863,0.0081564071783338 +3491864,0.0436884320153286 +3491865,0.0172944118227674 +3491866,0.0096443664833069 +3491867,0.0180149238459063 +3491868,0.026786036178500998 +3491869,0.0765907073443091 +3491870,0.1148551859155195 +3491871,0.038300547748804 +3491872,0.0382575405486937 +3491873,0.0631332789281067 +3491874,0.0090099250921125 +3491875,0.0088584289707349 +3491876,0.044280294181895496 +3491877,0.0361579438745153 +3491878,0.0102293587507132 +3491879,0.0097812794659614 +3491880,0.0083499801781714 +3491881,0.024938625508140203 +3491882,0.0072507312956552 +3491883,0.0072385226755763 +3491884,0.0144849017288967 +3491885,0.0148648569418983 +3491886,0.0087464722908862 +3491887,0.0430917133265283 +3491888,0.0087345417625394 +3491889,0.0099933114997903 +3491890,0.038300547748804 +3491891,0.0737430866447219 +3491892,0.038300547748804 +3491893,0.114901643246412 +3491894,0.0270449046927684 +3491895,0.0088559621945023 +3491896,0.0265520483583201 +3491897,0.0826438923837363 +3491898,0.0091907715094594 +3491899,0.0094791345536244 +3491900,0.009493449065771 +3491901,0.0083389372999365 +3491902,0.0082926802764326 +3491903,0.0361960874030852 +3491904,0.0072424502248663 +3491905,0.0151058423089469 +3491906,0.0453865561872882 +3491907,0.0307333656452199 +3491908,0.0152134527827627 +3491909,0.043622772863020104 +3491910,0.0086181537094589 +3491911,0.19150273874402002 +3491912,0.11471028387472801 +3491913,0.0377290893866695 +3491914,0.0088559621945023 +3491915,0.0088543255232097 +3491916,0.0088548641530569 +3491917,0.027228356706015998 +3491918,0.0182724760087518 +3491919,0.028467648177241497 +3491920,0.0284359400640794 +3491921,0.0096949764107611 +3491922,0.0081115933829328 +3491923,0.0072335315112765 +3491924,0.0216346784211407 +3491925,0.0072346020401026 +3491926,0.015019587729662 +3491927,0.0302976597184307 +3491928,0.0307429210816524 +3491929,0.0153686745423218 +3491930,0.0086366492344876 +3491931,0.025833514430720503 +3491932,0.038300547748804 +3491933,0.038300547748804 +3491934,0.0382894785642152 +3491935,0.0088559621945023 +3491936,0.0088559621945023 +3491937,0.0088544826477851 +3491938,0.0054167320603202 +3491939,0.0296280338074487 +3491940,0.0469808094097267 +3491941,0.028431720965844204 +3491942,0.0072287532158495 +3491943,0.014201534097211699 +3491944,0.0283485540745377 +3491945,0.0072357508444955 +3491946,0.0459137554097888 +3491947,0.0766908390046854 +3491948,0.0365377625908731 +3491949,0.1145448998256263 +3491950,0.0379229707049654 +3491951,0.1147993478857044 +3491952,0.0265071656340534 +3491953,0.0088574638546987 +3491954,0.0088559621945023 +3491955,0.026567703374558597 +3491956,0.0105903930962084 +3491957,0.0160351256918035 +3491958,0.0470137219948599 +3491959,0.011757175438106 +3491960,0.0220911957713027 +3491961,0.0064369542226476 +3491962,0.009392716143669 +3491963,0.018934352570748603 +3491964,0.0152582376731294 +3491965,0.0154021706240309 +3491966,0.009851887323454 +3491967,0.0265959778888071 +3491968,0.0374884895897734 +3491969,0.0749693996980992 +3491970,0.0380070254077059 +3491971,0.0088505172862177 +3491972,0.0088514181237134 +3491973,0.017600595649139197 +3491974,0.0088504411464304 +3491975,0.0159030294850037 +3491976,0.0264767104065627 +3491977,0.0058730577507188 +3491978,0.01731325562454 +3491979,0.017635763157159 +3491980,0.017635763157159 +3491981,0.0218064826985233 +3491982,0.0073935661258811 +3491983,0.0059359166771173 +3491984,0.0061597842500164 +3491985,0.0093834106928541 +3491986,0.0272791450934477 +3491987,0.0100476094023415 +3491988,0.0291015747934579 +3491989,0.0270401589815636 +3491990,0.0258096081083033 +3491991,0.0088559621945023 +3491992,0.0264604847413642 +3491993,0.0209695273667439 +3491994,0.0211676911396214 +3491995,0.0218489289350509 +3491996,0.0073230520578744 +3491997,0.0059421850781925 +3491998,0.0178077500313519 +3491999,0.0296795833855865 +3492000,0.0119410133685356 +3492001,0.0090884999442591 +3492002,0.0096170055556246 +3492003,0.13357980787925589 +3492004,0.1450087288828484 +3492005,0.11784462909102261 +3492006,0.021643558703751398 +3492007,0.0474619073343242 +3492008,0.0118718333542346 +3492009,0.0237436667084692 +3492010,0.0237436667084692 +3492011,0.040689137146236704 +3492012,0.0059348586377083 +3492013,0.0059481178703825 +3492014,0.0092404622858771 +3492015,0.0539783114987244 +3492016,0.010579529481462 +3492017,0.0058997792025098 +3492018,0.0301645429410905 +3492019,0.0110786106666928 +3492020,0.023639064063528302 +3492021,0.17135135829448678 +3492022,0.0566537060821888 +3492023,0.00899894677421 +3492024,0.025921558819221598 +3492025,0.0295748479911022 +3492026,0.0059565569795194 +3492027,0.013908083506417798 +3492028,0.0096008917732133 +3492029,0.0571171194314956 +3492030,0.052380101875234 +3492031,0.0556650316667963 +3492032,0.008651761211047 +3492033,0.0086631782035174 +3492034,0.014194826496541899 +3492035,0.014209246553162599 +3492036,0.0571091140021929 +3492037,0.0567817008389072 +3492038,0.0833339136843387 +3492039,0.1682516408754057 +3492040,0.0087459977145699 +3492041,0.0087240225331582 +3492042,0.114189102015495 +3492043,0.1699254255580196 +3492044,0.0142392375141454 +3492045,0.0434357697923629 +3492046,0.0479330891333589 +3492047,0.0530564553009857 +3492048,0.0562487052845817 +3492049,0.056852495681424 +3492050,0.0139226923054212 +3492051,0.0379705640385259 +3492052,0.0072697735015192 +3492053,0.547240935266017 +3492054,0.2180028167052312 +3492055,0.0425946266708442 +3492056,0.0426435338472723 +3492057,0.0072697666473686 +3492058,0.0072702695787797 +3492059,0.0074041547461278 +3492060,0.3149580152852573 +3492061,0.21486770803000982 +3492062,0.0547061540235771 +3492063,0.0142623288556933 +3492064,0.0140652188740941 +3492065,0.0072600843386336 +3492066,0.0218098690397923 +3492067,0.056199043716054706 +3492068,0.0378738231956958 +3492069,0.014058107655355 +3492070,0.014483901442562 +3492071,0.0072656629635784 +3492072,0.0481105247927023 +3492073,0.0078710235649707 +3492074,0.2644852077421435 +3492075,0.1528460174817829 +3492076,0.0066552864286724 +3492077,0.0258425918074392 +3492078,0.22724293917417482 +3492079,0.1128659651968705 +3492080,0.0064560920000076 +3492081,0.0064560920000076 +3492082,0.0064703800148103 +3492083,0.1514952927827832 +3492084,0.3783169983319715 +3492085,0.0376201926109113 +3492086,0.0068344556283251 +3492087,0.0064560920000076 +3492088,0.0129161208436474 +3492089,0.0259265066956951 +3492090,0.0329363956938476 +3492091,0.1875147555326869 +3492092,0.019368276000022798 +3492093,0.0208922124668603 +3492094,0.0581312426336526 +3492095,0.0130206079052612 +3492096,0.0195899976058706 +3492097,0.0259487870616447 +3492098,0.073554673524122 +3492099,0.0378738231956958 +3492100,0.0064693117688244 +3492101,0.0579057563011732 +3492102,0.0320842400433739 +3492103,0.0306893493980169 +3492104,0.0615145627207226 +3492105,0.035596259648571105 +3492106,0.0251596570014951 +3492107,0.0352364477278783 +3492108,0.0322235669742501 +3492109,0.0064560920000076 +3492110,0.3647640024694683 +3492111,0.0919608332760726 +3492112,0.0595855631602133 +3492113,0.0083865523338317 +3492114,0.0064560920000076 +3492115,0.0258243680000304 +3492116,0.0129121840000152 +3492117,0.019368276000022798 +3492118,0.021812547689611002 +3492119,0.0280700218996923 +3492120,0.0088440728496203 +3492121,0.0251825717582762 +3492122,0.0253268625782476 +3492123,0.0258243680000304 +3492124,0.0064560920000076 +3492125,0.0064560920000076 +3492126,0.0064560920000076 +3492127,0.0129121840000152 +3492128,0.0129257691686065 +3492129,0.0253459828254907 +3492130,0.0273287741041738 +3492131,0.006524326177934 +3492132,0.0194661436690055 +3492133,0.019103667368305502 +3492134,0.0128992459383979 +3492135,0.0195078314753898 +3492136,0.0064493252280138 +3492137,0.0128564427331389 +3492138,0.08170938904431921 +3492139,0.0168777901344231 +3492140,0.0272539240046561 +3492141,0.1906590003669138 +3492142,0.0063200157821962 +3492143,0.0385769691007056 +3492144,0.1013803289497 +3492145,0.0089443277725152 +3492146,0.0084139782049246 +3492147,0.0118337048241188 +3492148,0.0270969797799714 +3492149,0.0206629075109958 +3492150,0.0820426147062284 +3492151,0.0075335407928568 +3492152,0.011057074462808299 +3492153,0.0101203112890943 +3492154,0.0019040115385423 +3492155,0.0206629075109958 +3492156,0.0206629075109958 +3492157,0.0025583732723969 +3492158,0.011405000006825 +3492159,0.0022582535551523 +3492160,0.0154464473445322 +3492161,0.0399096797106085 +3492162,0.0204723411390983 +3492163,0.062010501851441496 +3492164,0.0619887225329874 +3492165,0.0051802901724194005 +3492166,0.0226270027405081 +3492167,0.001677744666203 +3492168,0.0066977202726872 +3492169,0.1032956381958628 +3492170,0.10347481735440239 +3492171,0.061803273149209595 +3492172,0.0206629075109958 +3492173,0.0028064008471432 +3492174,0.0132067382822248 +3492175,0.040322293700206804 +3492176,0.0206629075109958 +3492177,0.0619658274347795 +3492178,0.0206629075109958 +3492179,0.10331453755497899 +3492180,0.0206629075109958 +3492181,0.0826516300439832 +3492182,0.1445231824293625 +3492183,0.1239774450659748 +3492184,0.061693284146514496 +3492185,0.0206629075109958 +3492186,0.0206629075109958 +3492187,0.061643536817780495 +3492188,0.0206629075109958 +3492189,0.0619216232919921 +3492190,0.0826516300439832 +3492191,0.0206629075109958 +3492192,0.0206629075109958 +3492193,0.10196614231409609 +3492194,0.081619364115286 +3492195,0.0206629075109958 +3492196,0.0619578114449584 +3492197,0.0413258150219916 +3492198,0.0198430339499084 +3492199,0.061971421117821696 +3492200,0.0619887225329874 +3492201,0.10331453755497899 +3492202,0.2264664084290799 +3492203,0.061533402482187693 +3492204,0.0205316169696568 +3492205,0.041054673598361804 +3492206,0.066013574186621 +3492207,0.0345651241229777 +3492208,0.011469442397356 +3492209,0.0396289359430651 +3492210,0.0662285571736913 +3492211,0.034254440312017104 +3492212,0.0343658906995528 +3492213,0.0132983000949025 +3492214,0.0131824204431027 +3492215,0.034081930362978505 +3492216,0.0114259547729496 +3492217,0.0132983000949025 +3492218,0.0397596883643537 +3492219,0.07917242335530131 +3492220,0.011416633888526 +3492221,0.0229782085981299 +3492222,0.0663474607798546 +3492223,0.0398949002847075 +3492224,0.0641911328562983 +3492225,0.007391243840694 +3492226,0.0131846015823336 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001190900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001190900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001190900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001191900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001191900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001191900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001192000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001192000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001192000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001192100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001192100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001192100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001192200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001192200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001192200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001192300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001192300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..0176392b4 --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001192300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0827429085857943 +3490292,0.1277997949426253 +3490293,0.0205550920218229 +3490316,0.0411101840436458 +3490317,0.10277546010911451 +3490332,0.061665276065468705 +3490333,0.0623375356282869 +3490334,0.12383037888363761 +3490335,0.0205550920218229 +3490348,0.0203901475782846 +3490349,0.0166499522162459 +3490350,0.0205550920218229 +3490351,0.061665276065468705 +3490374,0.0317510368134801 +3490375,0.0895584295557558 +3490376,0.11432803672121601 +3490377,0.0403608327604282 +3490378,0.0411101840436458 +3490379,0.1851273819304369 +3490396,0.0149846339667552 +3490397,0.0297556910663842 +3490398,0.06165928506034721 +3490399,0.0411101840436458 +3490418,0.12327560920997072 +3490419,0.0205550920218229 +3490437,0.0205548744229892 +3490438,0.1028757124138355 +3490439,0.036807548465335 +3490440,0.0205550025193327 +3490457,0.044638050844937605 +3490458,0.0451405564102222 +3490459,0.0411101840436458 +3490460,0.08910570537772611 +3490476,0.0409974515689024 +3490477,0.0611809707704853 +3490478,0.0243023429065942 +3490479,0.0243023429065942 +3490499,0.0825025203484166 +3490500,0.0121511714532971 +3490517,0.0161588914523711 +3490518,0.0285431724561231 +3490519,0.0486046858131884 +3490520,0.0607558572664855 +3490544,0.0121511714532971 +3490545,0.0121578734228818 +3490546,0.0243023429065942 +3490547,0.0120643294934493 +3490573,0.0362841204909229 +3490574,0.0121511714532971 +3490575,0.0112937987199335 +3490576,0.0233409040552177 +3490597,0.0307042934204754 +3490598,0.0301569914096948 +3490599,0.0124344317893355 +3490600,0.0389050109994798 +3490601,0.019739434963560697 +3490602,0.0198069651918763 +3490603,0.0190702582304088 +3490604,0.0189621700650342 +3490623,0.0098586902022361 +3490624,0.0197173804044722 +3490625,0.0155252119749402 +3490626,0.054141172990332304 +3490639,0.0098586902022361 +3490640,0.0394347608089444 +3490641,0.0201501916583243 +3490642,0.0462025304359219 +3490643,0.07751018670398 +3490644,0.0180511344224214 +3490645,0.0180050528274205 +3490658,0.0197173804044722 +3490659,0.0098586902022361 +3490660,0.10850338951844729 +3490661,0.046594297107958996 +3490662,0.1264713382751155 +3490663,0.0180511344224214 +3490664,0.0179776139600011 +3490665,0.0540512736014329 +3490681,0.0495878872930828 +3490682,0.0098586902022361 +3490683,0.0098586902022361 +3490684,0.0197173804044722 +3490685,0.0152715729987174 +3490686,0.0155475044993377 +3490687,0.0181407111050543 +3490688,0.0180883307099715 +3490689,0.01803006280659 +3490690,0.0180511344224214 +3490707,0.0197173804044722 +3490708,0.0098586902022361 +3490709,0.0100452300947996 +3490710,0.0098586902022361 +3490725,0.0098445100287426 +3490726,0.0098586902022361 +3490727,0.029576070606708298 +3490728,0.0395349044832136 +3490736,0.0690937968828026 +3490737,0.0495138886421355 +3490738,0.1170008556255726 +3490739,0.0521887414666632 +3490747,0.3234543094834056 +3490748,0.0120382464035016 +3490757,0.0370848524322639 +3490758,0.028937958470295996 +3490771,0.027800199566198197 +3490772,0.0092858802492711 +3490773,0.0098574737332906 +3490774,0.0185484577858736 +3490787,0.0181960208019164 +3490788,0.0099723869642561 +3490789,0.0605436899925484 +3490790,0.0880772513159843 +3490805,0.0091387099831386 +3490806,0.0272272368399813 +3490807,0.0177692770957946 +3490808,0.051845898332062004 +3490809,0.0127395125777902 +3490810,0.0129134919289592 +3490827,0.010331707157883 +3490828,0.0106837099737887 +3490842,0.031277060446019 +3490843,0.0104238474741578 +3490844,0.0106180953901854 +3490845,0.0322208597411396 +3490856,0.0104238474741578 +3490857,0.0109669688135181 +3490858,0.0104238474741578 +3490859,0.0315029128649415 +3490860,0.0108070513233542 +3490861,0.053941438806994105 +3490875,0.0104238474741578 +3490876,0.0104238474741578 +3490877,0.0330818599115053 +3490878,0.0111586255842923 +3490879,0.0216141026467084 +3490892,0.0312715424224734 +3490893,0.0312715424224734 +3490894,0.0108070513233542 +3490895,0.0113849460438678 +3490900,0.0104162571602672 +3490901,0.0099860111673952 +3490902,0.0316159182131065 +3490903,0.0312730582078388 +3490904,0.0359904405626282 +3490905,0.0330258534799115 +3490906,0.0344791092593702 +3490907,0.0775050421730485 +3490916,0.0313104182420568 +3490917,0.0104846364403287 +3490918,0.0104085528013998 +3490919,0.0104262667731733 +3490920,0.0105566879334515 +3490921,0.022650774313661803 +3490922,0.0326776328766434 +3490923,0.1734305279501323 +3490924,0.0125163214836454 +3490925,0.051515162741721604 +3490926,0.1399892122384664 +3490935,0.0098206864366455 +3490936,0.011179761579223 +3490937,0.0257997870655519 +3490938,0.024596164968976 +3490939,0.036168426954144905 +3490940,0.0359539566024892 +3490941,0.0158631539591657 +3490942,0.0157256373169294 +3490953,0.0103181881854807 +3490954,0.0104235628657448 +3490955,0.0100338578073824 +3490956,0.0132422778125649 +3490957,0.0184772831811818 +3490958,0.0175085306032147 +3490959,0.035995926707982906 +3490960,0.0359731548162248 +3490966,0.028551265597343396 +3490967,0.0095170885324478 +3490968,0.0174339215154054 +3490969,0.0193933610763651 +3490970,0.1284535786194208 +3490971,0.018000874899734 +3490972,0.06661201645402401 +3490973,0.0166747083083072 +3490974,0.0119986422359943 +3490975,0.0360742155364841 +3490980,0.0286668433548641 +3490981,0.0095269595027328 +3490982,0.009532177777692 +3490983,0.0676246988536319 +3490984,0.0965590224639947 +3490985,0.2141252036897696 +3490986,0.0181934943384435 +3490987,0.0546985109410212 +3490988,0.0541580030602378 +3490989,0.0167887168189888 +3490990,0.049981700933216106 +3490991,0.0166247293510072 +3490992,0.0119986422359943 +3490993,0.0119986422359943 +3490994,0.0386349991952389 +3490995,0.0119986422359943 +3490999,0.0095362977722534 +3491000,0.0096841577623214 +3491001,0.0138654699126268 +3491002,0.028827991665001898 +3491003,0.0194796836929609 +3491004,0.019435194847738 +3491005,0.05473611704895551 +3491006,0.0907003821181714 +3491007,0.0371421146601094 +3491008,0.0389963306415468 +3491009,0.060039396895021004 +3491010,0.0358717663387935 +3491013,0.0113483301362142 +3491014,0.013869592288188 +3491015,0.0545670689998513 +3491016,0.054563417748207804 +3491017,0.1802467546680299 +3491018,0.0212691857986495 +3491019,0.061456661593752 +3491020,0.0119986422359943 +3491021,0.019087441265583 +3491022,0.0106683059302282 +3491023,0.0144023079411103 +3491024,0.0104182469878894 +3491025,0.0612555147816031 +3491026,0.0202568887504133 +3491027,0.0266675310028152 +3491028,0.028680670730906 +3491029,0.0095437206327915 +3491030,0.0483085009935552 +3491031,0.0491228728598982 +3491032,0.032928700485646195 +3491033,0.0148068892243724 +3491034,0.0144790606573224 +3491035,0.0144062028390668 +3491036,0.0208095537278582 +3491037,0.0202610176056623 +3491038,0.0292787320639007 +3491039,0.1687154826752127 +3491040,0.0095437206327915 +3491041,0.028631161898374502 +3491042,0.0149200586602091 +3491043,0.0145696315998608 +3491044,0.0143452011813265 +3491045,0.0722534961374019 +3491046,0.0202610176056623 +3491047,0.0202224131236408 +3491048,0.0289899862405834 +3491049,0.0289353374391794 +3491050,0.1022328692222589 +3491051,0.0340718610450707 +3491052,0.0095437206327915 +3491053,0.0478809940936454 +3491054,0.0447874828309754 +3491055,0.044637270317331904 +3491056,0.0143771738275505 +3491057,0.1013111620435488 +3491058,0.0202610176056623 +3491059,0.061623501179576906 +3491060,0.1447772247373574 +3491061,0.0289353374391794 +3491062,0.0865729470257258 +3491063,0.1440785332375505 +3491064,0.034055682373855 +3491065,0.1704622300436302 +3491066,0.028631161898374502 +3491067,0.0095437206327915 +3491068,0.0102333929428881 +3491069,0.0095898037900538 +3491070,0.0131253186982857 +3491071,0.0299297749501661 +3491072,0.1419949386142452 +3491073,0.060761500994692005 +3491074,0.0289353374391794 +3491075,0.2597546913005731 +3491076,0.1022472150417624 +3491077,0.0340770734563478 +3491078,0.0896348289909247 +3491079,0.0385358922958137 +3491080,0.0290815654806249 +3491081,0.0095880429350372 +3491082,0.0191403362299607 +3491083,0.020222741091587 +3491084,0.0202610176056623 +3491085,0.0202610176056623 +3491086,0.0870425137116216 +3491087,0.0868659084498726 +3491088,0.0642381671639185 +3491089,0.09814787093020791 +3491090,0.0325386074745342 +3491091,0.0337286260357275 +3491092,0.0287344974396858 +3491093,0.0097322440128839 +3491094,0.0607830528169869 +3491095,0.1012131651759747 +3491096,0.0858710268941795 +3491097,0.0285433355560475 +3491098,0.0720548657680214 +3491099,0.0311376630102342 +3491100,0.0324495356707633 +3491101,0.0458361694684812 +3491102,0.0799391608436942 +3491103,0.1012103958753323 +3491104,0.1012667644440524 +3491105,0.037750761784095796 +3491106,0.0846719040086493 +3491107,0.0446250132244694 +3491108,0.0265911132974984 +3491109,0.1068687738975765 +3491110,0.0445985119744524 +3491111,0.07384294586468171 +3491112,0.0090829050168395 +3491113,0.1257667292951133 +3491114,0.0893234592546648 +3491115,0.1406496579625841 +3491116,0.10108280565695091 +3491117,0.0120221176000077 +3491118,0.0591378218106317 +3491119,0.1036111257753183 +3491120,0.0521706545509477 +3491121,0.0262627115554876 +3491122,0.01153639697302 +3491123,0.0456989832492072 +3491124,0.058230635425738 +3491125,0.0275127620171666 +3491126,0.1323823639602529 +3491127,0.0093131846776056 +3491128,0.0648050627532202 +3491129,0.0178380733394628 +3491130,0.0179205238819122 +3491131,0.0368550740118367 +3491132,0.0543958642663831 +3491133,0.0118013275787234 +3491134,0.011793080192856 +3491135,0.0173033364117145 +3491136,0.1901822084372496 +3491137,0.0788363540215519 +3491138,0.1406712322149749 +3491139,0.16531935515180302 +3491140,0.0161489633083061 +3491141,0.1370417599126397 +3491142,0.0091093660605609 +3491143,0.0096800849860918 +3491144,0.0546866590536427 +3491145,0.0179205238819122 +3491146,0.0474457101991504 +3491147,0.0117883173144105 +3491148,0.0173033364117145 +3491149,0.0087346145883202 +3491150,0.0087558809165765 +3491151,0.0474700354586413 +3491152,0.0468793957128101 +3491153,0.014378372579813 +3491154,0.044154956587172 +3491155,0.09943887298819959 +3491156,0.1686290914030839 +3491157,0.0787034584417782 +3491158,0.0931033682266255 +3491159,0.023999017047383497 +3491160,0.0352696510824786 +3491161,0.069213345646858 +3491162,0.0173033364117145 +3491163,0.027321722500645497 +3491164,0.027670991297514 +3491165,0.1419101302311543 +3491166,0.0466467767949706 +3491167,0.0439242588712202 +3491168,0.0431650881964211 +3491169,0.09977311458563559 +3491170,0.0166293624788522 +3491171,0.1602597780222488 +3491172,0.0385327154559158 +3491173,0.0390492621479028 +3491174,0.0391050712667836 +3491175,0.0119066286665387 +3491176,0.05181814730431909 +3491177,0.0171196892556672 +3491178,0.0173033364117145 +3491179,0.051910009235143495 +3491180,0.0091676149706938 +3491181,0.1892404309524942 +3491182,0.1420595907321861 +3491183,0.1018647969227393 +3491184,0.1297014777644331 +3491185,0.0166008386239444 +3491186,0.0169393488460324 +3491187,0.0665174499154088 +3491188,0.10098599577781539 +3491189,0.401284675369792 +3491190,0.1197548510741801 +3491191,0.0132936552824957 +3491192,0.0393249016534541 +3491193,0.0173033364117145 +3491194,0.0173033364117145 +3491195,0.0400562889132566 +3491196,0.42435719497991153 +3491197,0.1031477872595478 +3491198,0.1150198969488841 +3491199,0.0838274822782213 +3491200,0.06881276888843729 +3491201,0.2001611555124074 +3491202,0.0802718922495842 +3491203,0.014360038434137 +3491204,0.0652591888080887 +3491205,0.0511931240235574 +3491206,0.0173033364117145 +3491207,0.06914478523256809 +3491208,0.034555321431181396 +3491209,0.027574298980033 +3491210,0.0203007787458173 +3491211,0.0925583248986662 +3491212,0.0352142231920228 +3491213,0.2791130775375611 +3491214,0.12022591649636369 +3491215,0.0401359461247921 +3491216,0.0401359461247921 +3491217,0.065058077401468 +3491218,0.0653186760334275 +3491219,0.0343849184097551 +3491220,0.12112335488200149 +3491221,0.086092201439958 +3491222,0.069213345646858 +3491223,0.0271756567591794 +3491224,0.0274458960942536 +3491225,0.1797801420943816 +3491226,0.030834382749565098 +3491227,0.0315512828528881 +3491228,0.0631774419980647 +3491229,0.0689168467077847 +3491230,0.0344175474283014 +3491231,0.1204078383743763 +3491232,0.0399445980542132 +3491233,0.026861753955860698 +3491234,0.026133333529335702 +3491235,0.19021357404624178 +3491236,0.0172989190635658 +3491237,0.0335557688179639 +3491238,0.017323030170147 +3491239,0.0277362288826143 +3491240,0.027214885701848 +3491241,0.0188107624606527 +3491242,0.0234281039600146 +3491243,0.0098935579881072 +3491244,0.0100031217583494 +3491245,0.094239275363433 +3491246,0.1577564142644405 +3491247,0.0589812414123519 +3491248,0.0113386502489447 +3491249,0.0401359461247921 +3491250,0.0401359461247921 +3491251,0.0130255886548072 +3491252,0.086285470144867 +3491253,0.0173033364117145 +3491254,0.0172888389900903 +3491255,0.08169607905844639 +3491256,0.054455142468214 +3491257,0.0778624777057836 +3491258,0.0535104939047389 +3491259,0.0113038789869562 +3491260,0.0116449625182645 +3491261,0.0737861150959439 +3491262,0.0748400441963239 +3491263,0.0098935579881072 +3491264,0.0199391693486047 +3491265,0.1262051314115524 +3491266,0.0943108445776818 +3491267,0.0315512828528881 +3491268,0.0315544238186471 +3491269,0.0809780928775208 +3491270,0.0568232818464781 +3491271,0.1194598471934959 +3491272,0.0401359461247921 +3491273,0.2408156767487526 +3491274,0.279262781435828 +3491275,0.0856548391046709 +3491276,0.0682435879747188 +3491277,0.027227571234107 +3491278,0.0180195404337022 +3491279,0.0107378486508191 +3491280,0.0105139552840032 +3491281,0.0107975890422661 +3491282,0.0104870102150707 +3491283,0.0426749912755996 +3491284,0.074754281169084 +3491285,0.0748582607412236 +3491286,0.0301587856694421 +3491287,0.030285769590768098 +3491288,0.0315512828528881 +3491289,0.0630850329000298 +3491290,0.0820739875081387 +3491291,0.024420514507022102 +3491292,0.16002635307703938 +3491293,0.0398885223158655 +3491294,0.0380942610890363 +3491295,0.0519006563360993 +3491296,0.12083549609098379 +3491297,0.13584561304939968 +3491298,0.08144430506517711 +3491299,0.0119119889223576 +3491300,0.018854926353271 +3491301,0.0105150725385785 +3491302,0.0315349530505344 +3491303,0.0330215214516062 +3491304,0.0112213093863676 +3491305,0.010486953741891 +3491306,0.0524302897702313 +3491307,0.0209790113455036 +3491308,0.0249268211865877 +3491309,0.0748433889145194 +3491310,0.020470203384751702 +3491311,0.1262051314115524 +3491312,0.0315512828528881 +3491313,0.0236050900718739 +3491314,0.0443682049265853 +3491315,0.0170250302622689 +3491316,0.051910009235143495 +3491317,0.0173033364117145 +3491318,0.023765270499728798 +3491319,0.0118469317362478 +3491320,0.011849753253386 +3491321,0.0118459509685635 +3491322,0.029338344150824404 +3491323,0.0933768266054941 +3491324,0.0210969869395031 +3491325,0.010514660306462 +3491326,0.0148900808348255 +3491327,0.0157930019962568 +3491328,0.0419464258701953 +3491329,0.0104859778657555 +3491330,0.014193764240474 +3491331,0.0193323477752655 +3491332,0.0946538485586643 +3491333,0.0315512828528881 +3491334,0.3470641113817691 +3491335,0.1259696847950574 +3491336,0.0204793054224483 +3491337,0.0209605461190603 +3491338,0.0627106434911061 +3491339,0.036206102871486 +3491340,0.0173033364117145 +3491341,0.051910009235143495 +3491342,0.0118459509685635 +3491343,0.0592297548428175 +3491344,0.0190497493449543 +3491345,0.0192043323079063 +3491346,0.044699914641101596 +3491347,0.0448813673887343 +3491348,0.0159866677946411 +3491349,0.0480199009180068 +3491350,0.031540379732697 +3491351,0.0314579335972665 +3491352,0.0766750701438224 +3491353,0.0109620124646767 +3491354,0.0116052437913173 +3491355,0.0234612355662249 +3491356,0.0944627002141171 +3491357,0.091153073005208 +3491358,0.0305691567498437 +3491359,0.0315512828528881 +3491360,0.4415408656792114 +3491361,0.0946538485586643 +3491362,0.014063695573759999 +3491363,0.014742680043833601 +3491364,0.0140039134538547 +3491365,0.0142349607997222 +3491366,0.0133188740679411 +3491367,0.0093866640653039 +3491368,0.0065928734170454 +3491369,0.06920754822251189 +3491370,0.0173033364117145 +3491371,0.05190996824045489 +3491372,0.034540462431200694 +3491373,0.0236840762970732 +3491374,0.0118459509685635 +3491375,0.0118459509685635 +3491376,0.023707212132962 +3491377,0.0192132163792848 +3491378,0.045483793196577096 +3491379,0.0148887262224604 +3491380,0.0149346221455558 +3491381,0.0159767500259616 +3491382,0.0160066336393356 +3491383,0.0160066336393356 +3491384,0.015697115455576 +3491385,0.0104870850827961 +3491386,0.0419447482421445 +3491387,0.0218623686028141 +3491388,0.0328176355595852 +3491389,0.0115994684767197 +3491390,0.0530766687642581 +3491391,0.0116272554709212 +3491392,0.0944124186306434 +3491393,0.3470641113817691 +3491394,0.0065712687235692 +3491395,0.081998528614631 +3491396,0.018419789616018298 +3491397,0.0061926124473394 +3491398,0.0173033364117145 +3491399,0.08651035921601019 +3491400,0.0118362858731828 +3491401,0.0118459509685635 +3491402,0.0238217893384901 +3491403,0.0119428537045007 +3491404,0.0133889128883659 +3491405,0.0605796129865525 +3491406,0.072234329153135 +3491407,0.0144521854817867 +3491408,0.0149066885465634 +3491409,0.0149448947172165 +3491410,0.0149037077593791 +3491411,0.0160986175130216 +3491412,0.0160066336393356 +3491413,0.0320557141114017 +3491414,0.0322608103143723 +3491415,0.0160066336393356 +3491416,0.07992191262626211 +3491417,0.0209770866604819 +3491418,0.0735378032148675 +3491419,0.0109326380949655 +3491420,0.0105440990885814 +3491421,0.0220777851767054 +3491422,0.1088979108584127 +3491423,0.2202455597712096 +3491424,0.0631025657057762 +3491425,0.0732917484458623 +3491426,0.0075177023460591 +3491427,0.0188390882872719 +3491428,0.0061399298720061 +3491429,0.051910009235143495 +3491430,0.051910009235143495 +3491431,0.0171792754709983 +3491432,0.0118450760369127 +3491433,0.0118459509685635 +3491434,0.0118459509685635 +3491435,0.0118459509685635 +3491436,0.0112238721922039 +3491437,0.0336716165766117 +3491438,0.0433565564453601 +3491439,0.0144723577948695 +3491440,0.0285074664969023 +3491441,0.0295797974174213 +3491442,0.014539852019635 +3491443,0.0150247267872814 +3491444,0.021141480590881 +3491445,0.0105093093132876 +3491446,0.0110875674215446 +3491447,0.0301002110562139 +3491448,0.0105799323662339 +3491449,0.06623244686249061 +3491450,0.0223259031772613 +3491451,0.1262051314115524 +3491452,0.0314558075758716 +3491453,0.0315512828528881 +3491454,0.0946292204974132 +3491455,0.0308786500245332 +3491456,0.154428665314484 +3491457,0.0066295495783363 +3491458,0.0185190699205691 +3491459,0.0249472133323457 +3491460,0.007525691436188 +3491461,0.0183409313957444 +3491462,0.006238322702351 +3491463,0.0344884636813763 +3491464,0.017098789789706 +3491465,0.051910009235143495 +3491466,0.0173033364117145 +3491467,0.0117508690271277 +3491468,0.0118459509685635 +3491469,0.0118459509685635 +3491470,0.0831382884230808 +3491471,0.0118871336161145 +3491472,0.0113115425268802 +3491473,0.0562255911438488 +3491474,0.0144521854817867 +3491475,0.0432105425121862 +3491476,0.0104828441868662 +3491477,0.0638242986616941 +3491478,0.013629621212456 +3491479,0.0300770488800481 +3491480,0.020224489554344 +3491481,0.0222005706516556 +3491482,0.0669777095317839 +3491483,0.1262051314115524 +3491484,0.0274664234921263 +3491485,0.0315354152470134 +3491486,0.08753416287332949 +3491487,0.0921165616226929 +3491488,0.153578050511288 +3491489,0.0308786500245332 +3491490,0.0061383792199194 +3491491,0.0122768389624518 +3491492,0.0163263059209886 +3491493,0.0171965077801311 +3491494,0.0173033364117145 +3491495,0.034606672823429 +3491496,0.0354687631015957 +3491497,0.0118459509685635 +3491498,0.0118459509685635 +3491499,0.0118824265412934 +3491500,0.0337110627541545 +3491501,0.0112513651730472 +3491502,0.0143742085303733 +3491503,0.0094646405039059 +3491504,0.0089438318476533 +3491505,0.0361345482083667 +3491506,0.014711142256304901 +3491507,0.0210766509663698 +3491508,0.0313116187265344 +3491509,0.0655914299361693 +3491510,0.0669777095317839 +3491511,0.0315512828528881 +3491512,0.0284937521429436 +3491513,0.0937410593717887 +3491514,0.0437891637339951 +3491515,0.0308786500245332 +3491516,0.0309376715696469 +3491517,0.0307621956419739 +3491518,0.030691913527113 +3491519,0.0160721433780819 +3491520,0.0518839586466822 +3491521,0.0863223577276593 +3491522,0.0118285993598094 +3491523,0.0118437267717901 +3491524,0.0355370251534178 +3491525,0.0592765617158643 +3491526,0.022493432276967 +3491527,0.0115770441041873 +3491528,0.0224350208489221 +3491529,0.0112238721922039 +3491530,0.0095522954442971 +3491531,0.0091363665118693 +3491532,0.0216254402082454 +3491533,0.014474027142281 +3491534,0.0205112543486346 +3491535,0.0315512828528881 +3491536,0.0290632256302498 +3491537,0.0314113176658136 +3491538,0.0574642605549996 +3491539,0.011852930488372 +3491540,0.0308786500245332 +3491541,0.0925970778392068 +3491542,0.0189223901108176 +3491543,0.0061383792199194 +3491544,0.00634672912344 +3491545,0.051813613067728 +3491546,0.051910009235143495 +3491547,0.0331386678838782 +3491548,0.0171805733170999 +3491549,0.0336716165766117 +3491550,0.0336716165766117 +3491551,0.0224481423562091 +3491552,0.0642883781057912 +3491553,0.028053895807387298 +3491554,0.0091289558066267 +3491555,0.0075504813167983 +3491556,0.2017277429010142 +3491557,0.0289914371916035 +3491558,0.0315185609525834 +3491559,0.09464810712812499 +3491560,0.0308786500245332 +3491561,0.0308786500245332 +3491562,0.154393250122666 +3491563,0.030725217221454 +3491564,0.0190012673373398 +3491565,0.0124655268540604 +3491566,0.0064888177661194 +3491567,0.016800191965912 +3491568,0.06919299101168119 +3491569,0.0172650236307127 +3491570,0.011597921259509 +3491571,0.0336716165766117 +3491572,0.0336736519492566 +3491573,0.0183947672321988 +3491574,0.027562462400099498 +3491575,0.0864745190505033 +3491576,0.0288670789450407 +3491577,0.0288670789450407 +3491578,0.0289581202424981 +3491579,0.0300849173482718 +3491580,0.0305751433781495 +3491581,0.0308786500245332 +3491582,0.0062222128554405 +3491583,0.0124417275541836 +3491584,0.0764674111899739 +3491585,0.0349803682019462 +3491586,0.0112834511188258 +3491587,0.0112238721922039 +3491588,0.0336775581336734 +3491589,0.0299914722770624 +3491590,0.0157970044041893 +3491591,0.0146469729770356 +3491592,0.028415393299376 +3491593,0.0288670789450407 +3491594,0.0289694038920446 +3491595,0.029302841128445 +3491596,0.028135053412917 +3491597,0.072642901647822 +3491598,0.1688113225218311 +3491599,0.0066632677342122 +3491600,0.0181560203644997 +3491601,0.0499986158630705 +3491602,0.0112766528381592 +3491603,0.0227757087354699 +3491604,0.045172234474419704 +3491605,0.1013425115395262 +3491606,0.0112372958948071 +3491607,0.0420047353953825 +3491608,0.0141205787686482 +3491609,0.035720395162364 +3491610,0.0538342018342766 +3491611,0.0118031894101871 +3491612,0.012220362241498 +3491613,0.027353367086168 +3491614,0.0329273434943077 +3491615,0.0104393426151952 +3491616,0.0104069991961711 +3491617,0.0258823522649802 +3491618,0.1016211687982488 +3491619,0.023059642918431898 +3491620,0.0173913651514766 +3491621,0.0164500940591096 +3491622,0.0164500940591096 +3491623,0.0141573475311844 +3491624,0.0140773700550198 +3491625,0.028200321812989503 +3491626,0.0179863106459379 +3491627,0.053958931937813696 +3491628,0.0130898176458929 +3491629,0.0123410477896699 +3491630,0.045129234643459 +3491631,0.032932162284851 +3491632,0.0986421761556453 +3491633,0.032932162284851 +3491634,0.0102622294029005 +3491635,0.0309390414977151 +3491636,0.0168561179027888 +3491637,0.0438242615845421 +3491638,0.0331392559784644 +3491639,0.0324622987513679 +3491640,0.022995779107552197 +3491641,0.0235296125466081 +3491642,0.0114458735978816 +3491643,0.0164500940591096 +3491644,0.0161080071863746 +3491645,0.0163876006550646 +3491646,0.0140773700550198 +3491647,0.0141134796118781 +3491648,0.0179863106459379 +3491649,0.0179697782110973 +3491650,0.0356686461987652 +3491651,0.0104686734926045 +3491652,0.0525346868564275 +3491653,0.1083190018276962 +3491654,0.1641697844958269 +3491655,0.0102404986066144 +3491656,0.043988009673189304 +3491657,0.029312510145201198 +3491658,0.09832093527009639 +3491659,0.09966687075857569 +3491660,0.0342302322471206 +3491661,0.03412681837887 +3491662,0.0163027823500987 +3491663,0.0164500940591096 +3491664,0.014632716453651 +3491665,0.0149850698494047 +3491666,0.07041793850115641 +3491667,0.0422321325456802 +3491668,0.0281547401100396 +3491669,0.0285112936329154 +3491670,0.0179863106459379 +3491671,0.0539589272443306 +3491672,0.0178178145266167 +3491673,0.0103898337110877 +3491674,0.0110360108387286 +3491675,0.0119100659892042 +3491676,0.0208538704876154 +3491677,0.098796486854553 +3491678,0.0326318537410225 +3491679,0.0149199807852993 +3491680,0.0139217976786946 +3491681,0.166204702109098 +3491682,0.23173553711913938 +3491683,0.0330476688053732 +3491684,0.034294386790815 +3491685,0.0343358083638715 +3491686,0.032783323642732703 +3491687,0.0163665673371141 +3491688,0.0135868048539339 +3491689,0.0074522353826548 +3491690,0.0153046470070317 +3491691,0.0139894857497946 +3491692,0.0420028559600855 +3491693,0.0422401488678959 +3491694,0.053917075487455696 +3491695,0.053915304121193594 +3491696,0.0179863106459379 +3491697,0.0178721065284225 +3491698,0.0314359900472138 +3491699,0.0463667161658907 +3491700,0.032932162284851 +3491701,0.032932162284851 +3491702,0.0652953742231947 +3491703,0.032069445459164 +3491704,0.0148682053014701 +3491705,0.0421829223047161 +3491706,0.19204590949758218 +3491707,0.0664818808436392 +3491708,0.0111330503185999 +3491709,0.0104849235630978 +3491710,0.0111801289788402 +3491711,0.012572573951381 +3491712,0.029828257453364898 +3491713,0.042209784332560604 +3491714,0.0704879104594256 +3491715,0.0179863106459379 +3491716,0.0179863106459379 +3491717,0.053958931937813696 +3491718,0.017960363825567 +3491719,0.0129407572529711 +3491720,0.032932162284851 +3491721,0.098796486854553 +3491722,0.0323076821589384 +3491723,0.032932162284851 +3491724,0.0112217625598808 +3491725,0.028112213079483 +3491726,0.052643430161631505 +3491727,0.0185689253978091 +3491728,0.0331575518497822 +3491729,0.0590700171901013 +3491730,0.0322953797291348 +3491731,0.021993055235924798 +3491732,0.0127059761970157 +3491733,0.0110945299198328 +3491734,0.02205672449427 +3491735,0.0139393496376473 +3491736,0.0422008652793845 +3491737,0.0139447987892495 +3491738,0.0714788354593113 +3491739,0.0179863106459379 +3491740,0.0179863106459379 +3491741,0.0179863106459379 +3491742,0.052966269159024804 +3491743,0.065339872560001 +3491744,0.0327274478330773 +3491745,0.032932162284851 +3491746,0.065864324569702 +3491747,0.031482697589205 +3491748,0.06558709104146859 +3491749,0.022320256830796102 +3491750,0.0112022269141339 +3491751,0.0643106932720728 +3491752,0.0091588208451867 +3491753,0.0104939322236473 +3491754,0.0104728271899478 +3491755,0.0629276791981365 +3491756,0.0207772706902031 +3491757,0.0333957018731099 +3491758,0.0215093855410114 +3491759,0.0126751512032959 +3491760,0.0126936582628337 +3491761,0.0110605955123901 +3491762,0.0100742701578419 +3491763,0.0074798156925659 +3491764,0.0073429752234679 +3491765,0.0142664693407181 +3491766,0.053743403471163395 +3491767,0.0179736938279197 +3491768,0.053662738081476896 +3491769,0.0358531569651538 +3491770,0.0538574565653042 +3491771,0.0179863106459379 +3491772,0.16439365477111328 +3491773,0.032932162284851 +3491774,0.0561377787414772 +3491775,0.033482661553027204 +3491776,0.0091597463691625 +3491777,0.009115505916988 +3491778,0.0106893313466755 +3491779,0.0104673653841018 +3491780,0.0631257275724488 +3491781,0.0209642369300127 +3491782,0.0126739542389334 +3491783,0.0380980730063712 +3491784,0.0318868900721203 +3491785,0.0334656592549809 +3491786,0.024299058512034302 +3491787,0.008101837709546 +3491788,0.007337515708059 +3491789,0.0168708269349873 +3491790,0.0178861571602822 +3491791,0.1427917046500342 +3491792,0.0330071847142226 +3491793,0.0328487382627231 +3491794,0.0985258543935981 +3491795,0.0447821952402588 +3491796,0.0111955488100647 +3491797,0.0091343970629598 +3491798,0.052346257918799696 +3491799,0.0104699267123979 +3491800,0.0627256743125499 +3491801,0.0209044065240422 +3491802,0.0126526216374792 +3491803,0.06343093265882929 +3491804,0.0113865499626448 +3491805,0.0227059697331307 +3491806,0.0161888914745903 +3491807,0.008101837709546 +3491808,0.0328630997498276 +3491809,0.0478866659841962 +3491810,0.0383269917206138 +3491811,0.06474643510173039 +3491812,0.0325710390226548 +3491813,0.0322440000529379 +3491814,0.022323380508363 +3491815,0.0111955488100647 +3491816,0.0221593492431912 +3491817,0.0418689382536437 +3491818,0.0585623439896768 +3491819,0.0233086918498576 +3491820,0.0202005268212089 +3491821,0.0127461483782696 +3491822,0.0381444805581205 +3491823,0.0113175967457278 +3491824,0.0341710553657073 +3491825,0.0081066550190818 +3491826,0.024329461980326702 +3491827,0.008101837709546 +3491828,0.0108233904105414 +3491829,0.0301506821051206 +3491830,0.239819194603092 +3491831,0.0390866861781373 +3491832,0.0106879493130764 +3491833,0.0093729694137721 +3491834,0.0670160676007436 +3491835,0.0134820813236574 +3491836,0.0108135953786163 +3491837,0.0099404045905268 +3491838,0.0099461610195968 +3491839,0.0113844275474548 +3491840,0.011475455688423 +3491841,0.0114534551324889 +3491842,0.040591655203793 +3491843,0.026028929073896298 +3491844,0.0112701562972751 +3491845,0.02002383954823 +3491846,0.0402273051440715 +3491847,0.0402273051440715 +3491848,0.0196073290468558 +3491849,0.0097585275971882 +3491850,0.0271322320025646 +3491851,0.027129023403614103 +3491852,0.0670140085539439 +3491853,0.0133344536159041 +3491854,0.0134341137775534 +3491855,0.0108134742157212 +3491856,0.010815107781435 +3491857,0.0092616060284094 +3491858,0.0079258331255175 +3491859,0.0098851215634029 +3491860,0.0341438139957812 +3491861,0.0340758520091546 +3491862,0.0081286161836611 +3491863,0.0081536258983149 +3491864,0.0457245264059817 +3491865,0.018151202656082 +3491866,0.0108367954633255 +3491867,0.0204011527783586 +3491868,0.0303259764538977 +3491869,0.08044262498781321 +3491870,0.12063430463637881 +3491871,0.0402273051440715 +3491872,0.0401812440014152 +3491873,0.0684344942476327 +3491874,0.0097581968453536 +3491875,0.0090484029372876 +3491876,0.0451864915842045 +3491877,0.0386955337132291 +3491878,0.0107413200814545 +3491879,0.010813127987767 +3491880,0.0091319119108587 +3491881,0.0272805781801579 +3491882,0.0076412436605071 +3491883,0.0076273840488473 +3491884,0.0145177066189794 +3491885,0.0147775743640823 +3491886,0.0091538676051176 +3491887,0.0452670898667194 +3491888,0.0091606457200705 +3491889,0.0111780534043802 +3491890,0.0402273051440715 +3491891,0.07746279206553619 +3491892,0.0402273051440715 +3491893,0.12068191543221451 +3491894,0.029325931612658604 +3491895,0.0090368455275893 +3491896,0.0270902872149915 +3491897,0.0885323792096656 +3491898,0.0098495125188927 +3491899,0.0098702716278665 +3491900,0.009881958468628 +3491901,0.009122540487558 +3491902,0.0090674430668607 +3491903,0.038141661808934996 +3491904,0.0076309013421107 +3491905,0.0152067554637926 +3491906,0.0456935369808069 +3491907,0.0306079773818064 +3491908,0.015135097749304 +3491909,0.045728037967023696 +3491910,0.0090372104600072 +3491911,0.2011365257203575 +3491912,0.1204813803309544 +3491913,0.0396275550323523 +3491914,0.0090368455275893 +3491915,0.0090356758051271 +3491916,0.0090354416679522 +3491917,0.029134989032275398 +3491918,0.019574906825800202 +3491919,0.0296325672832094 +3491920,0.029610651712906 +3491921,0.0100293031086185 +3491922,0.0088337791039697 +3491923,0.0076205717987739 +3491924,0.0227732580959525 +3491925,0.0076194290877897 +3491926,0.0151249398901712 +3491927,0.0304950274081958 +3491928,0.0306103835588782 +3491929,0.0152981681635328 +3491930,0.0089847558451809 +3491931,0.027135897619485698 +3491932,0.0402273051440715 +3491933,0.0402273051440715 +3491934,0.0402151499596101 +3491935,0.0090368455275893 +3491936,0.0090368455275893 +3491937,0.0090384268572364 +3491938,0.005521243000375 +3491939,0.0301252748606641 +3491940,0.0488836142996525 +3491941,0.0296069556326752 +3491942,0.0076145707205463 +3491943,0.0149005954456863 +3491944,0.0297249936643278 +3491945,0.0076190957138682 +3491946,0.0457366136423433 +3491947,0.0763063248870813 +3491948,0.0383808086839617 +3491949,0.1203109106335813 +3491950,0.039829442612804 +3491951,0.1205695838535908 +3491952,0.027057403320384303 +3491953,0.009042364161665 +3491954,0.0090368455275893 +3491955,0.0271107323952679 +3491956,0.010768805630505 +3491957,0.0163028520359568 +3491958,0.0477307178455255 +3491959,0.0119364270940422 +3491960,0.0224982759689437 +3491961,0.0065344028018648 +3491962,0.00977603974572 +3491963,0.0197378768944345 +3491964,0.0152085157787709 +3491965,0.0153146071374149 +3491966,0.010633410078329 +3491967,0.0275953535917347 +3491968,0.0393827836863074 +3491969,0.0787485531034127 +3491970,0.0399175352369523 +3491971,0.0090320810147952 +3491972,0.009033042726927 +3491973,0.017980523271189403 +3491974,0.0090332538699968 +3491975,0.0161706608287601 +3491976,0.0269226980305988 +3491977,0.0059617071716913 +3491978,0.0174540689562122 +3491979,0.0179046406410633 +3491980,0.0179046406410633 +3491981,0.022210289800934598 +3491982,0.0075194360274984 +3491983,0.0059866341762244 +3491984,0.0062319916699061 +3491985,0.0097654808880662 +3491986,0.029552242359862098 +3491987,0.0108449112685422 +3491988,0.0301258191466331 +3491989,0.0280369420109621 +3491990,0.0262874594675327 +3491991,0.0090368455275893 +3491992,0.0268765509262181 +3491993,0.0212144533792279 +3491994,0.0215165086727098 +3491995,0.0222581049534667 +3491996,0.0074506511005188 +3491997,0.0059933079887023 +3491998,0.0179599025286732 +3491999,0.029933170881122 +3492000,0.012049089225932 +3492001,0.009846988267451 +3492002,0.0103944174757877 +3492003,0.1342727604439947 +3492004,0.1501171459910172 +3492005,0.1219267898779271 +3492006,0.0219386322200761 +3492007,0.0478680895740889 +3492008,0.0119732683524488 +3492009,0.0239465367048976 +3492010,0.0239465367048976 +3492011,0.040982313497936296 +3492012,0.005985639694415 +3492013,0.0060016202199112 +3492014,0.0099986978550391 +3492015,0.0536643434319668 +3492016,0.0109605542778597 +3492017,0.0059491080399895 +3492018,0.0297662325229577 +3492019,0.0111495643454414 +3492020,0.023837914474174 +3492021,0.17010184004902829 +3492022,0.0562444615669799 +3492023,0.0093178620768838 +3492024,0.0269632464831416 +3492025,0.0297858167315967 +3492026,0.0059795291338432 +3492027,0.0139077686722573 +3492028,0.0096150608662709 +3492029,0.0567006133496761 +3492030,0.0519141442539373 +3492031,0.0552637089247051 +3492032,0.0089922561668489 +3492033,0.0090134427469594 +3492034,0.0141700776589972 +3492035,0.014175295309237699 +3492036,0.0566874379453803 +3492037,0.0563691774659178 +3492038,0.0810259193997438 +3492039,0.1659584743991204 +3492040,0.0090587753229082 +3492041,0.0090752029725578 +3492042,0.1133269400881146 +3492043,0.1686928386187745 +3492044,0.0133769540237757 +3492045,0.040867662733326995 +3492046,0.0456477089831635 +3492047,0.0511530623699425 +3492048,0.0558064831564289 +3492049,0.0534106000643714 +3492050,0.0131312548501264 +3492051,0.0360123188045591 +3492052,0.0068904509298437 +3492053,0.527621507644653 +3492054,0.2103668944718034 +3492055,0.0400163056455455 +3492056,0.0400858222607883 +3492057,0.0068904445506632 +3492058,0.0068957320293173 +3492059,0.0070155199964664 +3492060,0.3029558255799281 +3492061,0.2071295613157102 +3492062,0.0527943807134609 +3492063,0.0133984452113509 +3492064,0.0132530455414368 +3492065,0.0068783281873583 +3492066,0.0206773167578422 +3492067,0.0527729234251851 +3492068,0.0356135517358779 +3492069,0.0132300413601649 +3492070,0.013706851983825 +3492071,0.0068923606961394 +3492072,0.0434226674128401 +3492073,0.0071840031976237 +3492074,0.2486957067440107 +3492075,0.1438395902234264 +3492076,0.0059965490482216 +3492077,0.0232545467451657 +3492078,0.2136813104152674 +3492079,0.1061239087527126 +3492080,0.005807573441416 +3492081,0.005807573441416 +3492082,0.0058265885090337 +3492083,0.1424542069435116 +3492084,0.355729923027474 +3492085,0.0353729325881167 +3492086,0.0061665267351087 +3492087,0.005807573441416 +3492088,0.011620386193464 +3492089,0.0233662240702769 +3492090,0.0307508151760192 +3492091,0.1762118506767208 +3492092,0.017422720324248 +3492093,0.018868477720597798 +3492094,0.0523033146347911 +3492095,0.011759441798402201 +3492096,0.0177931708827139 +3492097,0.022270289048739803 +3492098,0.0691373042128253 +3492099,0.0356135517358779 +3492100,0.0058251668440974 +3492101,0.0520753258392835 +3492102,0.028847794475793 +3492103,0.0283091831952333 +3492104,0.0567564976169492 +3492105,0.032180732504108 +3492106,0.021509082522243 +3492107,0.030313654014628003 +3492108,0.0289827565395081 +3492109,0.005807573441416 +3492110,0.33638926545513 +3492111,0.0848301535418516 +3492112,0.0510073122418863 +3492113,0.007169694174081 +3492114,0.005807573441416 +3492115,0.023230293765664 +3492116,0.011615146882832 +3492117,0.017422720324248 +3492118,0.0187455451507531 +3492119,0.0255862560687606 +3492120,0.007597711403367 +3492121,0.021533867448026 +3492122,0.0216686807100948 +3492123,0.023230293765664 +3492124,0.005807573441416 +3492125,0.005807573441416 +3492126,0.005807573441416 +3492127,0.011615146882832 +3492128,0.011633226574302599 +3492129,0.0229875366357587 +3492130,0.0248156904441312 +3492131,0.0058682725245744 +3492132,0.0175097804744342 +3492133,0.0171664014145527 +3492134,0.01160261414788 +3492135,0.017576653656193902 +3492136,0.0058099027775305 +3492137,0.0116343347830779 +3492138,0.0741801641935262 +3492139,0.0137057657870624 +3492140,0.0247428082441626 +3492141,0.1731053586353926 +3492142,0.0056757602516553 +3492143,0.034690857200105 +3492144,0.0901733501066006 +3492145,0.0077664323867541 +3492146,0.0058850882033093 +3492147,0.0083322847865799 +3492148,0.0245987419544319 +3492149,0.0183852296322584 +3492150,0.0729845086413585 +3492151,0.0054066988424498995 +3492152,0.0086819140482139 +3492153,0.0071196512184898 +3492154,0.0013981016371303 +3492155,0.0183852296322584 +3492156,0.0183852296322584 +3492157,0.0018445265700882 +3492158,0.007962388859230101 +3492159,0.0015722810728169 +3492160,0.0109288675482905 +3492161,0.035476646710559806 +3492162,0.0182111239784121 +3492163,0.0551766968443837 +3492164,0.055155688896775204 +3492165,0.0037471080043444 +3492166,0.0157533538023086 +3492167,0.0011735593819728 +3492168,0.0051155442639129 +3492169,0.09190849841079031 +3492170,0.0920861762490088 +3492171,0.05498625823649381 +3492172,0.0183852296322584 +3492173,0.0020893462288237 +3492174,0.0097271750444905 +3492175,0.0358536199809736 +3492176,0.0183852296322584 +3492177,0.0551343076018541 +3492178,0.0183852296322584 +3492179,0.091926148161292 +3492180,0.0183852296322584 +3492181,0.0735409185290336 +3492182,0.12858718446290202 +3492183,0.11031137779355041 +3492184,0.0549087546992353 +3492185,0.0183852296322584 +3492186,0.0183852296322584 +3492187,0.0548671747378519 +3492188,0.0183852296322584 +3492189,0.0550943855455608 +3492190,0.0735409185290336 +3492191,0.0183852296322584 +3492192,0.0183852296322584 +3492193,0.0907107627266843 +3492194,0.0726123722225999 +3492195,0.0183852296322584 +3492196,0.0551298526985456 +3492197,0.0367704592645168 +3492198,0.0176999604554654 +3492199,0.0551401258866034 +3492200,0.055155688896775204 +3492201,0.091926148161292 +3492202,0.20149363834691392 +3492203,0.054728945536505605 +3492204,0.0182621791171664 +3492205,0.035574146763456896 +3492206,0.0576288109819577 +3492207,0.0297472897245683 +3492208,0.0097687626257538 +3492209,0.0348767776224998 +3492210,0.058356163298689 +3492211,0.0292032944762877 +3492212,0.0292781704024176 +3492213,0.0117201888933777 +3492214,0.0115965430806344 +3492215,0.0290878370289251 +3492216,0.0097407391631856 +3492217,0.0117201888933777 +3492218,0.0350347218256952 +3492219,0.0675948324054277 +3492220,0.0097334189504324 +3492221,0.0195794845045625 +3492222,0.0584567784508679 +3492223,0.0351605666801331 +3492224,0.0564679741511964 +3492225,0.0068737990530465 +3492226,0.0116271804682118 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001200900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001200900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001200900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201400.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201400.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201400.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201500.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201500.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201500.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201600.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201600.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201600.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201700.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201700.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201700.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201800.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201800.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201800.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001201900.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001201900.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001201900.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001202000.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001202000.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001202000.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001202100.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001202100.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001202100.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001202200.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001202200.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001202200.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/channel_forcing/200001202300.CHRTOUT_DOMAIN1.csv b/test/nhf/conecuh_case/channel_forcing/200001202300.CHRTOUT_DOMAIN1.csv new file mode 100644 index 000000000..d28890b3c --- /dev/null +++ b/test/nhf/conecuh_case/channel_forcing/200001202300.CHRTOUT_DOMAIN1.csv @@ -0,0 +1,1427 @@ +divide_id,streamflow +3490271,0.0892443615975992 +3490292,0.1365318084760782 +3490293,0.0222305580973625 +3490316,0.044461116194725 +3490317,0.11115279048681251 +3490332,0.0666916742920875 +3490333,0.0672863776263876 +3490334,0.1337444336458668 +3490335,0.0222305580973625 +3490348,0.0218606470890473 +3490349,0.0170118143037079 +3490350,0.0222305580973625 +3490351,0.0666916742920875 +3490374,0.0313314887357619 +3490375,0.08815256712909869 +3490376,0.1213525830390675 +3490377,0.0434596994585114 +3490378,0.044461116194725 +3490379,0.2001460108577105 +3490396,0.0147863192608473 +3490397,0.0292872190475462 +3490398,0.0666836680433097 +3490399,0.044461116194725 +3490418,0.13316455879454542 +3490419,0.0222305580973625 +3490437,0.0222224052004392 +3490438,0.1111810947252664 +3490439,0.0387111677066838 +3490440,0.0222304384881837 +3490457,0.0439353359006676 +3490458,0.0444370716063763 +3490459,0.044461116194725 +3490460,0.0941800319872416 +3490476,0.0443370415622904 +3490477,0.0661586424252901 +3490478,0.0259622167795896 +3490479,0.0259622167795896 +3490499,0.0843516012814461 +3490500,0.0129811083897948 +3490517,0.0159410153114631 +3490518,0.0282880005934181 +3490519,0.0519244335591792 +3490520,0.06490554194897401 +3490544,0.0129811083897948 +3490545,0.012985194698502 +3490546,0.0259622167795896 +3490547,0.0128713391280432 +3490573,0.0387549077603116 +3490574,0.0129811083897948 +3490575,0.0118674813741755 +3490576,0.0248590418145634 +3490597,0.032377075644332495 +3490598,0.031939680068955 +3490599,0.0132503108046218 +3490600,0.041224500855021204 +3490601,0.020886877880373897 +3490602,0.0209382043175873 +3490603,0.0184881439950451 +3490604,0.0184265982123763 +3490623,0.0104311732575297 +3490624,0.0208623465150594 +3490625,0.0149652552905352 +3490626,0.0526858930648036 +3490639,0.0104311732575297 +3490640,0.0417246930301188 +3490641,0.0212062760436341 +3490642,0.0445055849396424 +3490643,0.07460156111502911 +3490644,0.0175665151327848 +3490645,0.0175186780960326 +3490658,0.0208623465150594 +3490659,0.0104311732575297 +3490660,0.1044533386787405 +3490661,0.0448524810953631 +3490662,0.1231169278438109 +3490663,0.0175665151327848 +3490664,0.0174901939667581 +3490665,0.0525935251840418 +3490681,0.0524106850304753 +3490682,0.0104311732575297 +3490683,0.0104311732575297 +3490684,0.0208623465150594 +3490685,0.0147324713680917 +3490686,0.0149575414666324 +3490687,0.0176466029294316 +3490688,0.0176017945220525 +3490689,0.0175446205568537 +3490690,0.0175665151327848 +3490707,0.0208623465150594 +3490708,0.0104311732575297 +3490709,0.0105794054874885 +3490710,0.0104311732575297 +3490725,0.0104165406321444 +3490726,0.0104311732575297 +3490727,0.031293519772589096 +3490728,0.041814532747964095 +3490736,0.07306944018763159 +3490737,0.0523251086992111 +3490738,0.11604800664916179 +3490739,0.0547342017443046 +3490747,0.3202941531354571 +3490748,0.0123369440134005 +3490757,0.039285651835158 +3490758,0.0304918920634969 +3490771,0.029459344420992 +3490772,0.0098245077831901 +3490773,0.0102096478897824 +3490774,0.0196408256261288 +3490787,0.0192703675782512 +3490788,0.0099592560592658 +3490789,0.0540838412963342 +3490790,0.0768936216821482 +3490805,0.0096737817532356 +3490806,0.028732556528387597 +3490807,0.0188014544546604 +3490808,0.0547575378801122 +3490809,0.0110497854644886 +3490810,0.0112036691613987 +3490827,0.0109711183450443 +3490828,0.0113356540586929 +3490842,0.0332193168892825 +3490843,0.0110712992027401 +3490844,0.0112717674028804 +3490845,0.0341850631492701 +3490856,0.0110712992027401 +3490857,0.0115977738055814 +3490858,0.0110712992027401 +3490859,0.0333578167027285 +3490860,0.0114667741581797 +3490861,0.05723304333052 +3490875,0.0110712992027401 +3490876,0.0110712992027401 +3490877,0.0350274612589433 +3490878,0.0117995343073415 +3490879,0.0229335483163594 +3490892,0.0332138976082203 +3490893,0.0332138976082203 +3490894,0.0114667741581797 +3490895,0.0119953920467814 +3490900,0.0110630974929149 +3490901,0.0105981954035058 +3490902,0.033570574643117704 +3490903,0.033214840470476 +3490904,0.037566865828939 +3490905,0.0349367902432829 +3490906,0.0362742567496172 +3490907,0.0782299338837783 +3490916,0.0332515818791044 +3490917,0.0111302249795466 +3490918,0.0110547725518479 +3490919,0.0110738628856947 +3490920,0.0111548904925049 +3490921,0.0238384189252651 +3490922,0.0346229140674233 +3490923,0.1755012065705703 +3490924,0.0131032821480586 +3490925,0.0522796274024188 +3490926,0.141130881208835 +3490935,0.0104195538495346 +3490936,0.0118722494449929 +3490937,0.0260688210056961 +3490938,0.0248791999345092 +3490939,0.0379619030394294 +3490940,0.0377528565242468 +3490941,0.0159938711207637 +3490942,0.0158211405515488 +3490953,0.0109571291119426 +3490954,0.0110705216974112 +3490955,0.0106405295995394 +3490956,0.0140514883106012 +3490957,0.0187368506726334 +3490958,0.0178679276663712 +3490959,0.037793478928506305 +3490960,0.037771404998059296 +3490966,0.0302745038643477 +3490967,0.0100915012881159 +3490968,0.0184997349663691 +3490969,0.0205759222671208 +3490970,0.13025512791610538 +3490971,0.0182738729149745 +3490972,0.0680876792573156 +3490973,0.0170447341665117 +3490974,0.0125978263095021 +3490975,0.0378699178126754 +3490980,0.0303993416120594 +3490981,0.0101021607491594 +3490982,0.0101107138382081 +3490983,0.0717222236385942 +3490984,0.1024022321671343 +3490985,0.2270964213393161 +3490986,0.0184526269414781 +3490987,0.0554739798048857 +3490988,0.0549644511645771 +3490989,0.0171479164344888 +3490990,0.0510888863577116 +3490991,0.0169944682294324 +3490992,0.0125978263095021 +3490993,0.0125978263095021 +3490994,0.0403696820322387 +3490995,0.0125978263095021 +3490999,0.0101109022780272 +3491000,0.0102720278597309 +3491001,0.0155853729602593 +3491002,0.0306268484217238 +3491003,0.0206758830006945 +3491004,0.0206537080389388 +3491005,0.0555109713114667 +3491006,0.09201389253613759 +3491007,0.0388877969518938 +3491008,0.040377616481308 +3491009,0.0630400959407837 +3491010,0.0376686385604933 +3491013,0.0123499510272336 +3491014,0.0146783692640261 +3491015,0.0553447079017922 +3491016,0.055341186059970696 +3491017,0.1819705764442077 +3491018,0.0207693413131901 +3491019,0.06414284406808 +3491020,0.0125978263095021 +3491021,0.0201855432242154 +3491022,0.0115314896691478 +3491023,0.015238684148345 +3491024,0.0110392717852648 +3491025,0.0618477261154299 +3491026,0.0204822990389681 +3491027,0.0253382870525133 +3491028,0.0257220843567103 +3491029,0.0100927716121077 +3491030,0.05108862747811 +3491031,0.0522603853431813 +3491032,0.0357762938517227 +3491033,0.0168261120774444 +3491034,0.0153198624029755 +3491035,0.0152418684044017 +3491036,0.0209375835083816 +3491037,0.0204863604158163 +3491038,0.0263254197313556 +3491039,0.1578800793271375 +3491040,0.0100927716121077 +3491041,0.0302783148363231 +3491042,0.0169708933681249 +3491043,0.0165247081983801 +3491044,0.0151780898744829 +3491045,0.0764436914247614 +3491046,0.0204863604158163 +3491047,0.0204483868517014 +3491048,0.0259684459010157 +3491049,0.0259053204208612 +3491050,0.0955554945698436 +3491051,0.0318470917068012 +3491052,0.0100927716121077 +3491053,0.0506452228577096 +3491054,0.050932861682110295 +3491055,0.0507432104489062 +3491056,0.0152119525716439 +3491057,0.107018653288605 +3491058,0.0204863604158163 +3491059,0.062150429900644705 +3491060,0.1296427342136148 +3491061,0.0259053204208612 +3491062,0.07755404418774439 +3491063,0.1290609412351941 +3491064,0.0318198917244201 +3491065,0.1593117891804877 +3491066,0.0302783148363231 +3491067,0.0100927716121077 +3491068,0.0108630257074293 +3491069,0.0101442391570374 +3491070,0.0146594694827344 +3491071,0.034029175720471094 +3491072,0.1434551379894622 +3491073,0.0614378816492972 +3491074,0.0259053204208612 +3491075,0.2325453586983651 +3491076,0.09555466933083179 +3491077,0.0318513794104565 +3491078,0.0947463892115867 +3491079,0.0407485096410871 +3491080,0.0307501749865468 +3491081,0.0101397140105538 +3491082,0.0193605884226386 +3491083,0.0204479100333287 +3491084,0.0204863604158163 +3491085,0.0204863604158163 +3491086,0.0779891468343651 +3491087,0.0777851479970749 +3491088,0.059682175831835396 +3491089,0.0913388262531418 +3491090,0.0305003969775836 +3491091,0.0315647482910703 +3491092,0.0303941509068322 +3491093,0.0102885363400122 +3491094,0.0614590812474489 +3491095,0.1023416427142283 +3491096,0.0768497456477413 +3491097,0.0255489974319644 +3491098,0.0652613776949254 +3491099,0.0288680586462378 +3491100,0.0302737973321243 +3491101,0.0484142842380506 +3491102,0.0841365312160041 +3491103,0.1023374658030361 +3491104,0.1023952959635201 +3491105,0.0323486890623595 +3491106,0.0734608459135545 +3491107,0.0393087697678171 +3491108,0.0233929599767273 +3491109,0.09921678096240921 +3491110,0.045012584032655095 +3491111,0.0779857647117562 +3491112,0.0095937652513384 +3491113,0.1321682683849511 +3491114,0.09396029265444181 +3491115,0.1422217090792498 +3491116,0.102202741770961 +3491117,0.0102574926462933 +3491118,0.0504174850442492 +3491119,0.0897806667053707 +3491120,0.0452340977941351 +3491121,0.0230920721413718 +3491122,0.0103185734531779 +3491123,0.042511904673296 +3491124,0.0569421899139975 +3491125,0.0290152982264423 +3491126,0.1265988675245896 +3491127,0.0098027761742145 +3491128,0.068440256109811 +3491129,0.0186827923933272 +3491130,0.0188504289835691 +3491131,0.0383503328817246 +3491132,0.0569386025727621 +3491133,0.0100594470277428 +3491134,0.0100530536943466 +3491135,0.0149946734309196 +3491136,0.1648074461604026 +3491137,0.06935086853867051 +3491138,0.1307692556014538 +3491139,0.1580616485528212 +3491140,0.0159973691743844 +3491141,0.1292848252642264 +3491142,0.0096215328949872 +3491143,0.0102403638566761 +3491144,0.0570998772177478 +3491145,0.0188504289835691 +3491146,0.0404534235074451 +3491147,0.0100493615341497 +3491148,0.0149946734309196 +3491149,0.00768214603886 +3491150,0.0076986315930517 +3491151,0.0441314884450856 +3491152,0.0436040344519925 +3491153,0.014576993882656 +3491154,0.0447554530429833 +3491155,0.0983532215705252 +3491156,0.16653913044718932 +3491157,0.0745364090753762 +3491158,0.0850501894147862 +3491159,0.0204744252303357 +3491160,0.0300742078388855 +3491161,0.0599786937236784 +3491162,0.0149946734309196 +3491163,0.0239948978388293 +3491164,0.024354748292237 +3491165,0.1319239966715327 +3491166,0.0433568166783457 +3491167,0.0444357727418797 +3491168,0.0437610882436738 +3491169,0.09865641177302571 +3491170,0.0164432283490896 +3491171,0.1518736041709273 +3491172,0.036466789547648 +3491173,0.034579890394965604 +3491174,0.0346650631695385 +3491175,0.0101591867421962 +3491176,0.0449096081115942 +3491177,0.014845911203482 +3491178,0.0149946734309196 +3491179,0.0449840202927588 +3491180,0.0080511567988742 +3491181,0.1759147497333069 +3491182,0.1320815753849815 +3491183,0.1031251495532827 +3491184,0.1314832076849243 +3491185,0.0164321877968732 +3491186,0.0167908147826246 +3491187,0.0657729133963584 +3491188,0.0997705800581302 +3491189,0.3802695167095584 +3491190,0.1134632186405708 +3491191,0.0117976049873426 +3491192,0.0348247451517366 +3491193,0.0149946734309196 +3491194,0.0149946734309196 +3491195,0.0369349735062531 +3491196,0.3945552167007061 +3491197,0.1042382140440376 +3491198,0.11660265537641751 +3491199,0.082873639610563 +3491200,0.06790030242271691 +3491201,0.1896622372985528 +3491202,0.076067641377449 +3491203,0.0128399101523956 +3491204,0.0578035794433156 +3491205,0.0443852820446528 +3491206,0.0149946734309196 +3491207,0.059925427645589405 +3491208,0.0299482730398617 +3491209,0.0243395104499966 +3491210,0.0177539670154088 +3491211,0.0905499735476331 +3491212,0.0351443845492349 +3491213,0.2644397122095469 +3491214,0.11393436840573379 +3491215,0.0380338206887245 +3491216,0.0380338206887245 +3491217,0.0576037733208758 +3491218,0.0578142849154946 +3491219,0.0298041388996619 +3491220,0.1049627140164372 +3491221,0.0746188434765577 +3491222,0.0599786937236784 +3491223,0.0239333308471246 +3491224,0.0241982707713331 +3491225,0.15695189277853439 +3491226,0.0311443418864766 +3491227,0.0308581516146659 +3491228,0.0617788901332019 +3491229,0.068884631156463 +3491230,0.0343880624183057 +3491231,0.1141014620661735 +3491232,0.0378600831277635 +3491233,0.0238944907064917 +3491234,0.0231255714876133 +3491235,0.1648410662983568 +3491236,0.0149912414969986 +3491237,0.0291116381115532 +3491238,0.0150110748159658 +3491239,0.0244872843954742 +3491240,0.0239693049040375 +3491241,0.0161955321364553 +3491242,0.0207676693463615 +3491243,0.0100616263225674 +3491244,0.0101635970507187 +3491245,0.09217389610552951 +3491246,0.15429075807332948 +3491247,0.058854634646305304 +3491248,0.0113287977874279 +3491249,0.0380338206887245 +3491250,0.0380338206887245 +3491251,0.0115300070197656 +3491252,0.0747825697903158 +3491253,0.0149946734309196 +3491254,0.0149822748288884 +3491255,0.0719738549707094 +3491256,0.047961875796318 +3491257,0.06873534098019041 +3491258,0.0471375753345832 +3491259,0.0104393181168817 +3491260,0.0106322327903555 +3491261,0.0656989824374789 +3491262,0.0666368643221274 +3491263,0.0100616263225674 +3491264,0.0202763418868535 +3491265,0.1234326064586636 +3491266,0.0922430459553086 +3491267,0.0308581516146659 +3491268,0.0308277243065264 +3491269,0.0809529352510069 +3491270,0.056798733201467805 +3491271,0.1132012211404978 +3491272,0.0380338206887245 +3491273,0.228202924132347 +3491274,0.26465589019454916 +3491275,0.0742920976567468 +3491276,0.0592222361145642 +3491277,0.023980937898159 +3491278,0.0159356192560195 +3491279,0.0101551899009022 +3491280,0.0099294257658715 +3491281,0.010175475105554 +3491282,0.0097325546301001 +3491283,0.0395308783305201 +3491284,0.0665346469796406 +3491285,0.06666143518599871 +3491286,0.0306357750775444 +3491287,0.0307555306817791 +3491288,0.0308581516146659 +3491289,0.0616993631120441 +3491290,0.08224817021855971 +3491291,0.0245415333851954 +3491292,0.1516496311973908 +3491293,0.0377999215717669 +3491294,0.0361226837621936 +3491295,0.0449766443302386 +3491296,0.10473491279477411 +3491297,0.1255239091051416 +3491298,0.0717456627605214 +3491299,0.0113089007498565 +3491300,0.0163096932829358 +3491301,0.0099375888616025 +3491302,0.0297377696859541 +3491303,0.031188172958945 +3491304,0.0106043560596608 +3491305,0.0097321420151224 +3491306,0.0486279852065738 +3491307,0.0187860204982382 +3491308,0.0221857009982654 +3491309,0.0666383960558177 +3491310,0.0207747658112837 +3491311,0.1234326064586636 +3491312,0.0308581516146659 +3491313,0.023465300003778 +3491314,0.0403733841350857 +3491315,0.0147751932763958 +3491316,0.0449840202927588 +3491317,0.0149946734309196 +3491318,0.0225907628934797 +3491319,0.01126158086375 +3491320,0.0112633313867162 +3491321,0.0112611772492527 +3491322,0.0266028562844072 +3491323,0.0807015687568939 +3491324,0.0199392192505502 +3491325,0.0099345769336996 +3491326,0.0140992870446224 +3491327,0.0149231704885719 +3491328,0.0389184187757594 +3491329,0.0097250118851661 +3491330,0.0129911636076555 +3491331,0.017820440369247 +3491332,0.09257445484399769 +3491333,0.0308581516146659 +3491334,0.3394396677613249 +3491335,0.12320511900707559 +3491336,0.0205614117995747 +3491337,0.0210129645045053 +3491338,0.0560838840724203 +3491339,0.0326219007790998 +3491340,0.0149946734309196 +3491341,0.0449840202927588 +3491342,0.0112611772492527 +3491343,0.0563058862462635 +3491344,0.016446738366838 +3491345,0.0165778636468244 +3491346,0.0423261815660015 +3491347,0.042493208485588296 +3491348,0.0151006991308407 +3491349,0.0453567467629908 +3491350,0.0292461763980539 +3491351,0.029175035655498303 +3491352,0.0714036437655009 +3491353,0.0102440043162067 +3491354,0.0117974555562613 +3491355,0.023826516674645498 +3491356,0.0923769481660378 +3491357,0.0889572299525951 +3491358,0.0298433561979987 +3491359,0.0308581516146659 +3491360,0.43186069921714737 +3491361,0.09257445484399769 +3491362,0.0140290607157587 +3491363,0.014556578528752199 +3491364,0.013982614685638 +3491365,0.0141618091339337 +3491366,0.0119729518610954 +3491367,0.0087183938765285 +3491368,0.0065217931410657 +3491369,0.0599741058479916 +3491370,0.0149946734309196 +3491371,0.04498398796318 +3491372,0.029937131461114902 +3491373,0.0225154538968318 +3491374,0.0112611772492527 +3491375,0.0112611772492527 +3491376,0.0225366296306148 +3491377,0.016585262492299 +3491378,0.0400817238436907 +3491379,0.0140982421174356 +3491380,0.0141408326971598 +3491381,0.015091650347396 +3491382,0.0151189155876636 +3491383,0.0151189155876636 +3491384,0.0148193010982152 +3491385,0.0097331016427712 +3491386,0.0389009039322543 +3491387,0.0203613061793626 +3491388,0.030568516527603902 +3491389,0.0117835077442505 +3491390,0.0535319498230567 +3491391,0.011820215959862 +3491392,0.0923536529006658 +3491393,0.3394396677613249 +3491394,0.0065001942204432 +3491395,0.0738596987300274 +3491396,0.0184810501523313 +3491397,0.0062031557507046 +3491398,0.0149946734309196 +3491399,0.0749683807809035 +3491400,0.01125265462709 +3491401,0.0112611772492527 +3491402,0.022643460709933602 +3491403,0.0113515287622034 +3491404,0.0123031561444467 +3491405,0.054379935781501104 +3491406,0.0630513853830659 +3491407,0.0126134091988205 +3491408,0.0141149900775744 +3491409,0.0141502051960939 +3491410,0.0141118696923274 +3491411,0.015203481130973 +3491412,0.0151189155876636 +3491413,0.0302768455523917 +3491414,0.0304653566869677 +3491415,0.0151189155876636 +3491416,0.0754767544464787 +3491417,0.019487512329615 +3491418,0.0682084340644556 +3491419,0.0101841131780309 +3491420,0.0100711929820555 +3491421,0.0222004680177323 +3491422,0.1080313768127968 +3491423,0.2154056166270881 +3491424,0.0617163032293318 +3491425,0.06745081924706911 +3491426,0.0072050839369931 +3491427,0.018811693211743898 +3491428,0.0061603500507771 +3491429,0.0449840202927588 +3491430,0.0449840202927588 +3491431,0.0148968354403003 +3491432,0.0112604057398589 +3491433,0.0112611772492527 +3491434,0.0112611772492527 +3491435,0.0112611772492527 +3491436,0.0107126319780945 +3491437,0.0321378959342835 +3491438,0.0378402275964615 +3491439,0.0126302569942559 +3491440,0.02678981563912 +3491441,0.0279609591690083 +3491442,0.0137315484152854 +3491443,0.0140783936091534 +3491444,0.0196151996532507 +3491445,0.0097488184911554 +3491446,0.0103369842063053 +3491447,0.029757422409145 +3491448,0.0104636831965492 +3491449,0.0652608191102791 +3491450,0.0219975411891937 +3491451,0.1234326064586636 +3491452,0.0307645402580406 +3491453,0.0308581516146659 +3491454,0.0924893970304484 +3491455,0.0285350829362869 +3491456,0.1427977279545648 +3491457,0.0065497854130616 +3491458,0.018402590464071902 +3491459,0.0247314483333144 +3491460,0.007255552579032 +3491461,0.0171172169005397 +3491462,0.0062382146415239 +3491463,0.029895800345937598 +3491464,0.0148328025003294 +3491465,0.0449840202927588 +3491466,0.0149946734309196 +3491467,0.0111773345731654 +3491468,0.0112611772492527 +3491469,0.0112611772492527 +3491470,0.0790302267518826 +3491471,0.0112995756956697 +3491472,0.010764250814353 +3491473,0.053656833017831404 +3491474,0.0126134091988205 +3491475,0.037754257018890604 +3491476,0.0095817833614442 +3491477,0.055878455043596 +3491478,0.0127587597940597 +3491479,0.0297505262057826 +3491480,0.0200088825446459 +3491481,0.0218744719618431 +3491482,0.06599262356758111 +3491483,0.1234326064586636 +3491484,0.0268530391045586 +3491485,0.0308033497425977 +3491486,0.08097974487534419 +3491487,0.0851343484697472 +3491488,0.1419363189761431 +3491489,0.0285350829362869 +3491490,0.0061044688336551 +3491491,0.0122118394798191 +3491492,0.0142241593639246 +3491493,0.0149104253299912 +3491494,0.0149946734309196 +3491495,0.0299893468618392 +3491496,0.0337226087798613 +3491497,0.0112611772492527 +3491498,0.0112611772492527 +3491499,0.0112951868481564 +3491500,0.032172679333072496 +3491501,0.0107288193883702 +3491502,0.0125461889376333 +3491503,0.0088128546226086 +3491504,0.0083308001281009 +3491505,0.0319255196338856 +3491506,0.0129650023952387 +3491507,0.020729600145136598 +3491508,0.0308661745208869 +3491509,0.06462535914859649 +3491510,0.06599262356758111 +3491511,0.0308581516146659 +3491512,0.0277769449456088 +3491513,0.0912416286838976 +3491514,0.0427038278998526 +3491515,0.0285350829362869 +3491516,0.0287389253552459 +3491517,0.0305860808152629 +3491518,0.0305229722078058 +3491519,0.0140237195450328 +3491520,0.0449634760568793 +3491521,0.0748323795558048 +3491522,0.0112458767064746 +3491523,0.0112592159661025 +3491524,0.0337715115911402 +3491525,0.056342040670698104 +3491526,0.0214655512612136 +3491527,0.0110240568162125 +3491528,0.021404276197990797 +3491529,0.0107126319780945 +3491530,0.0088819818046711 +3491531,0.0085484851755242 +3491532,0.0191037207193942 +3491533,0.012794473048769 +3491534,0.0200115376814218 +3491535,0.0308581516146659 +3491536,0.0279397082743802 +3491537,0.0306922398504029 +3491538,0.0559682921042291 +3491539,0.011549752538772 +3491540,0.0285350829362869 +3491541,0.08558865444502159 +3491542,0.0187733038105859 +3491543,0.0061044688336551 +3491544,0.0062708240791612 +3491545,0.0450061697091271 +3491546,0.0449840202927588 +3491547,0.0288204338030419 +3491548,0.0148969221355614 +3491549,0.0321378959342835 +3491550,0.0321378959342835 +3491551,0.021425614885296297 +3491552,0.060140208565168 +3491553,0.026170409914788 +3491554,0.0085401064260208 +3491555,0.0067365355598079 +3491556,0.1933990683757279 +3491557,0.0278237648590576 +3491558,0.0308193637680373 +3491559,0.0925676490740054 +3491560,0.0285350829362869 +3491561,0.0285350829362869 +3491562,0.1426754146814345 +3491563,0.0283943762940814 +3491564,0.0188448173620574 +3491565,0.0123592463335328 +3491566,0.0063835088981145 +3491567,0.0146144227120472 +3491568,0.0599833707072312 +3491569,0.0149668764640079 +3491570,0.0110122538059053 +3491571,0.0321378959342835 +3491572,0.032139690713468796 +3491573,0.0172041764609061 +3491574,0.0257878390106661 +3491575,0.08290056450935031 +3491576,0.0276763532310724 +3491577,0.0276763532310724 +3491578,0.027784271654201 +3491579,0.0278154500954633 +3491580,0.0282574656740792 +3491581,0.0285350829362869 +3491582,0.0061774176502046 +3491583,0.012353615210689301 +3491584,0.06986205327074729 +3491585,0.0327011042704342 +3491586,0.0107603560561735 +3491587,0.0107126319780945 +3491588,0.0321431351630651 +3491589,0.027746935216386 +3491590,0.0142474659790616 +3491591,0.0132849093189881 +3491592,0.0277535277900399 +3491593,0.0276763532310724 +3491594,0.0277200352428455 +3491595,0.027888453321123 +3491596,0.0260287552752254 +3491597,0.0672845611830653 +3491598,0.1591577113741618 +3491599,0.0065553642799438 +3491600,0.0172166524611694 +3491601,0.0465388735928669 +3491602,0.01061072327558 +3491603,0.0216879708759789 +3491604,0.0430722075298391 +3491605,0.096570391850484 +3491606,0.0107244689171836 +3491607,0.0374620369792135 +3491608,0.012581441000927 +3491609,0.0320274996159436 +3491610,0.048281713984544894 +3491611,0.0104074977856455 +3491612,0.010796142374816 +3491613,0.027943241771933 +3491614,0.0311655435737805 +3491615,0.0098055571076806 +3491616,0.0097682956756768 +3491617,0.0247384906712762 +3491618,0.0984802924628957 +3491619,0.0210994669418128 +3491620,0.0164278624109694 +3491621,0.0151907270774245 +3491622,0.0151907270774245 +3491623,0.012631071074939 +3491624,0.012541783042252 +3491625,0.0251254020277694 +3491626,0.0161294993013143 +3491627,0.048388497903942895 +3491628,0.0117250221725155 +3491629,0.0109107212147065 +3491630,0.0443617134768213 +3491631,0.0311696846038103 +3491632,0.0933780138895878 +3491633,0.0311696846038103 +3491634,0.0096238600375016 +3491635,0.029046581314146197 +3491636,0.0161049567269657 +3491637,0.041833098768718796 +3491638,0.0325580138698706 +3491639,0.0318746788684253 +3491640,0.0209382005590286 +3491641,0.0214471783826931 +3491642,0.010423340561547 +3491643,0.0151907270774245 +3491644,0.0148640914992156 +3491645,0.0151209585204422 +3491646,0.012541783042252 +3491647,0.0125749252303295 +3491648,0.0161294993013143 +3491649,0.0161162564442186 +3491650,0.0320155076251937 +3491651,0.0105543748617104 +3491652,0.0529244339190689 +3491653,0.1031951151567405 +3491654,0.1553977952330082 +3491655,0.0096005009435323 +3491656,0.0419925136167352 +3491657,0.0279843755517155 +3491658,0.09656211543483789 +3491659,0.09791577047342599 +3491660,0.0311551383519863 +3491661,0.031371949820525796 +3491662,0.0150462638118719 +3491663,0.0151907270774245 +3491664,0.0135666551685348 +3491665,0.0137890157068531 +3491666,0.06274980797221019 +3491667,0.0376253696682084 +3491668,0.025083566084504 +3491669,0.025410819170472998 +3491670,0.0161294993013143 +3491671,0.048388494144356 +3491672,0.0159945300695668 +3491673,0.0104820216074585 +3491674,0.0110750346410875 +3491675,0.01195725186229 +3491676,0.0210360497159723 +3491677,0.0935090538114309 +3491678,0.0308940838853964 +3491679,0.01425648859623 +3491680,0.0132494112724046 +3491681,0.1632834412157535 +3491682,0.22764113231127178 +3491683,0.0324650080074376 +3491684,0.031218366698282797 +3491685,0.0312572219677721 +3491686,0.0302664064137491 +3491687,0.0150974766144012 +3491688,0.0125664448406277 +3491689,0.0065800339527403 +3491690,0.0140945761082323 +3491691,0.0124646731867251 +3491692,0.0374225911689782 +3491693,0.0376327272345061 +3491694,0.0483500810838344 +3491695,0.0483484552828299 +3491696,0.0161294993013143 +3491697,0.0160380192003746 +3491698,0.031693044263997 +3491699,0.0465931593099031 +3491700,0.0311696846038103 +3491701,0.0311696846038103 +3491702,0.0618172291371444 +3491703,0.0303779476325078 +3491704,0.0142035320155345 +3491705,0.0400401966740757 +3491706,0.18861183702509488 +3491707,0.0653133764863014 +3491708,0.0101485560845647 +3491709,0.0095869957199229 +3491710,0.0100383576002366 +3491711,0.0115662740353722 +3491712,0.0263397445969047 +3491713,0.0376056036210905 +3491714,0.062811894239718 +3491715,0.0161294993013143 +3491716,0.0161294993013143 +3491717,0.048388497903942895 +3491718,0.0161087153068469 +3491719,0.0129563293403818 +3491720,0.0311696846038103 +3491721,0.0935090538114309 +3491722,0.0306219535750948 +3491723,0.0311696846038103 +3491724,0.0103897827572895 +3491725,0.0259425041268606 +3491726,0.0504653956991274 +3491727,0.018117604770751 +3491728,0.0325737452011339 +3491729,0.057931076521512595 +3491730,0.0288424076706457 +3491731,0.0196842185180177 +3491732,0.0114423325325448 +3491733,0.0100584307997895 +3491734,0.0194534335001376 +3491735,0.0124298601985229 +3491736,0.0376023382124702 +3491737,0.012451688336553 +3491738,0.0640899179380552 +3491739,0.0161294993013143 +3491740,0.0161294993013143 +3491741,0.0161294993013143 +3491742,0.0475719853145317 +3491743,0.0618541769451503 +3491744,0.0309818129926358 +3491745,0.0311696846038103 +3491746,0.0623393692076206 +3491747,0.0298983602559413 +3491748,0.06210423635263 +3491749,0.0206510484047826 +3491750,0.0103656851175202 +3491751,0.0592465559058466 +3491752,0.0084380125626921 +3491753,0.010059217694487 +3491754,0.0100351417478401 +3491755,0.0615712168160457 +3491756,0.0203255512765887 +3491757,0.0328119303085435 +3491758,0.019206253948486303 +3491759,0.0114043070303643 +3491760,0.0114190369660805 +3491761,0.0100276740267872 +3491762,0.0091633610847403 +3491763,0.0066303672490546 +3491764,0.0064770797500824 +3491765,0.0127295023463198 +3491766,0.0481906808826537 +3491767,0.0161179192933585 +3491768,0.0481324745341478 +3491769,0.0321553526249206 +3491770,0.048298747696999295 +3491771,0.0161294993013143 +3491772,0.1555960796383289 +3491773,0.0311696846038103 +3491774,0.0519646797034098 +3491775,0.0309787194814009 +3491776,0.0084459219103027 +3491777,0.0083848769224803 +3491778,0.0102542936987614 +3491779,0.010032694786787 +3491780,0.0617674343251211 +3491781,0.0205122083425521 +3491782,0.0114044658666511 +3491783,0.0342708207415872 +3491784,0.029032304053862902 +3491785,0.0303880840421013 +3491786,0.0223024235059371 +3491787,0.0074374377727508 +3491788,0.0064703226089477 +3491789,0.015161440605659 +3491790,0.0160429288598763 +3491791,0.135269151880932 +3491792,0.0312568544202184 +3491793,0.0310946408406278 +3491794,0.0932699281870582 +3491795,0.0414357222616672 +3491796,0.0103589305654168 +3491797,0.0084168212874403 +3491798,0.0501796861236182 +3491799,0.0100338422956442 +3491800,0.061374786290655195 +3491801,0.0204550311975754 +3491802,0.0113877909345646 +3491803,0.0570706150508114 +3491804,0.0103981479583005 +3491805,0.020736290630596302 +3491806,0.014856169062002999 +3491807,0.0074374377727508 +3491808,0.0301605804716351 +3491809,0.0455110828764367 +3491810,0.0375744758285794 +3491811,0.061354649570023 +3491812,0.0308448375408577 +3491813,0.0305660980498618 +3491814,0.0206841333888899 +3491815,0.0103589305654168 +3491816,0.0205217754030079 +3491817,0.0401386825518553 +3491818,0.0574879985864284 +3491819,0.0232304124926594 +3491820,0.0197600490131172 +3491821,0.0114794448026632 +3491822,0.0343171629778316 +3491823,0.0103408874795216 +3491824,0.0312033591292219 +3491825,0.0074419243208219 +3491826,0.0223339017228645 +3491827,0.0074374377727508 +3491828,0.0103293835041635 +3491829,0.0286768589908201 +3491830,0.2363324973052178 +3491831,0.0385087993646273 +3491832,0.0100911383824948 +3491833,0.0088544389716174 +3491834,0.0672093120519044 +3491835,0.0135181006811061 +3491836,0.010812050661231 +3491837,0.0100664014169517 +3491838,0.0100161782888552 +3491839,0.0103964889422059 +3491840,0.0104903230641536 +3491841,0.010450445338242 +3491842,0.0373119048533627 +3491843,0.025005673342393397 +3491844,0.0107748234775502 +3491845,0.0190406423062086 +3491846,0.0396460331976413 +3491847,0.0396460331976413 +3491848,0.0192663313916547 +3491849,0.0095989057800137 +3491850,0.025751479485510702 +3491851,0.0257279777783605 +3491852,0.0672072972966186 +3491853,0.0133767399339096 +3491854,0.0134651276453667 +3491855,0.0108107410032375 +3491856,0.0108079538345857 +3491857,0.0094246759031418 +3491858,0.007825254932764 +3491859,0.009935494431564 +3491860,0.031227392037613502 +3491861,0.0311418981606583 +3491862,0.0074699758925345 +3491863,0.0075143498213304 +3491864,0.045146229577896296 +3491865,0.0179637530205005 +3491866,0.0103420549760425 +3491867,0.019416450547657102 +3491868,0.028876995744763503 +3491869,0.0792800759822826 +3491870,0.11889063009657311 +3491871,0.0396460331976413 +3491872,0.0396012960114096 +3491873,0.0673453033579192 +3491874,0.0095984358531999 +3491875,0.0085899722415267 +3491876,0.042870974889261705 +3491877,0.0388596195495955 +3491878,0.0107439652540488 +3491879,0.0108106107336335 +3491880,0.0093070332782154 +3491881,0.027795329672860598 +3491882,0.0075004951974455 +3491883,0.0074873012662778 +3491884,0.0140731759152317 +3491885,0.0139626694163125 +3491886,0.0090375145573889 +3491887,0.0448356174346159 +3491888,0.0090659289847752 +3491889,0.0106818034280158 +3491890,0.0396460331976413 +3491891,0.07630721807715929 +3491892,0.0396460331976413 +3491893,0.11893809959292391 +3491894,0.0288797963204451 +3491895,0.0085735516622662 +3491896,0.0256960502855964 +3491897,0.0899900314746511 +3491898,0.0100121816486536 +3491899,0.0098606880219229 +3491900,0.0098694027639427 +3491901,0.0092978198995216 +3491902,0.0092375394436036 +3491903,0.0374422560839648 +3491904,0.0074891911524278 +3491905,0.0148939084706136 +3491906,0.0447403973512383 +3491907,0.0290137134639607 +3491908,0.0143095650503208 +3491909,0.0452503891936352 +3491910,0.0089378045369336 +3491911,0.19823016598820653 +3491912,0.1187405947027777 +3491913,0.039050135897405 +3491914,0.0085735516622662 +3491915,0.0085732856707667 +3491916,0.0085718458536068 +3491917,0.0295910507032861 +3491918,0.0198946696292366 +3491919,0.0295965378741626 +3491920,0.029582748827564502 +3491921,0.0099698898686568 +3491922,0.0089757294894101 +3491923,0.0074790405433102 +3491924,0.0223369137898706 +3491925,0.007475411701396 +3491926,0.0148151159518661 +3491927,0.0298664166688335 +3491928,0.028994721529562797 +3491929,0.0144791521888513 +3491930,0.0088280853440656 +3491931,0.0268745019589823 +3491932,0.0396460331976413 +3491933,0.0396460331976413 +3491934,0.0396335584282109 +3491935,0.0085735516622662 +3491936,0.0085735516622662 +3491937,0.0085798212337585 +3491938,0.0054448725540511 +3491939,0.0293902742022605 +3491940,0.0487889334330798 +3491941,0.02957927299278 +3491942,0.0074726627945929 +3491943,0.0145928831173659 +3491944,0.0290968189061603 +3491945,0.0074737344939167 +3491946,0.0433295716301551 +3491947,0.07216572891900211 +3491948,0.0377835373950202 +3491949,0.11856490480184781 +3491950,0.03925220615729 +3491951,0.11882281458449451 +3491952,0.025679436942814902 +3491953,0.0085822885112151 +3491954,0.0085735516622662 +3491955,0.025721431333760904 +3491956,0.0106070106849074 +3491957,0.016041765398100198 +3491958,0.0465112836647868 +3491959,0.0116311078891158 +3491960,0.0223007934656653 +3491961,0.0062273759189741 +3491962,0.009760331829728 +3491963,0.0197325656901662 +3491964,0.0144070808668437 +3491965,0.0144728241803074 +3491966,0.0098743855506803 +3491967,0.0267625553644345 +3491968,0.038796526640986 +3491969,0.0775974558066344 +3491970,0.0393385315722083 +3491971,0.0085698555990264 +3491972,0.0085705801077848 +3491973,0.017074300890058798 +3491974,0.0085725716107616 +3491975,0.0159258231600217 +3491976,0.026517891213757798 +3491977,0.0058088597857555 +3491978,0.0169209315021653 +3491979,0.0174466618336737 +3491980,0.0174466618336737 +3491981,0.0220035814460097 +3491982,0.007450229807356 +3491983,0.0056244540028274 +3491984,0.0058920765182088 +3491985,0.0097476049055751 +3491986,0.027268833139847702 +3491987,0.0100901989224826 +3491988,0.0292789582163095 +3491989,0.0271989130098239 +3491990,0.0249333316093412 +3491991,0.0085735516622662 +3491992,0.0264445790258476 +3491993,0.0208259459825333 +3491994,0.0211873902507211 +3491995,0.0220630501522329 +3491996,0.0073847437694325 +3491997,0.0056325164040706 +3491998,0.0168733620084822 +3491999,0.028122270014137 +3492000,0.0113316092615874 +3492001,0.0090874966338079 +3492002,0.0096433511043077 +3492003,0.132074618164637 +3492004,0.1458884465303246 +3492005,0.118558483390014 +3492006,0.021653901022059302 +3492007,0.0449913376154548 +3492008,0.0112489080056548 +3492009,0.0224978160113096 +3492010,0.0224978160113096 +3492011,0.0385443584890971 +3492012,0.0056239240111577 +3492013,0.005646220922911 +3492014,0.0092465134848725 +3492015,0.053017491196082 +3492016,0.0104080326236522 +3492017,0.0055908877260387 +3492018,0.0278173488738997 +3492019,0.010512123474522 +3492020,0.022400655892318398 +3492021,0.1681832112371919 +3492022,0.0556059690375 +3492023,0.0087779359117843 +3492024,0.025369000872865602 +3492025,0.0279853079660844 +3492026,0.0056114762926826 +3492027,0.0132494019522613 +3492028,0.0091395449550491 +3492029,0.0560610704123973 +3492030,0.0512224164814066 +3492031,0.0546236058942827 +3492032,0.0084628243201885 +3492033,0.008486948772049 +3492034,0.0134919200551459 +3492035,0.013498758072873401 +3492036,0.0560455118596191 +3492037,0.055733141128726 +3492038,0.0781083252206356 +3492039,0.1636939273551777 +3492040,0.0085142834350385 +3492041,0.0085814575943377 +3492042,0.1120344173564509 +3492043,0.1667891170779366 +3492044,0.0122672940180008 +3492045,0.0375483981132941 +3492046,0.0428893402994224 +3492047,0.0498321928058795 +3492048,0.0551590636800172 +3492049,0.0489809529984276 +3492050,0.0120545262023234 +3492051,0.0334337001209371 +3492052,0.0063808241076507 +3492053,0.51410224288702 +3492054,0.20506229047166008 +3492055,0.0366979226565219 +3492056,0.0367743162914346 +3492057,0.0063808183185756 +3492058,0.0063902938136284 +3492059,0.0064943236754038 +3492060,0.2946667568786208 +3492061,0.2017921111617652 +3492062,0.0514660383045362 +3492063,0.0122867971658706 +3492064,0.0121868080452089 +3492065,0.0063693928724717 +3492066,0.0191531770585695 +3492067,0.0502695756558006 +3492068,0.0340325571596622 +3492069,0.0121536572330693 +3492070,0.012687561473494601 +3492071,0.0063894214530698 +3492072,0.039752948388347 +3492073,0.0066491455644385 +3492074,0.2376502700139456 +3492075,0.1375415776111374 +3492076,0.0054795771986461 +3492077,0.0212138284189702 +3492078,0.2041953429579732 +3492079,0.1014066749125777 +3492080,0.00529739074409 +3492081,0.00529739074409 +3492082,0.0053164155831607 +3492083,0.1361302286386488 +3492084,0.3399285742698996 +3492085,0.0338005825139926 +3492086,0.0056434482540224 +3492087,0.00529739074409 +3492088,0.0106000234911863 +3492089,0.0213255631327667 +3492090,0.0292076656566294 +3492091,0.168308063659494 +3492092,0.015892172232269998 +3492093,0.0172859892367056 +3492094,0.0477116884236027 +3492095,0.010739150553946 +3492096,0.0164533091314639 +3492097,0.0191591956714275 +3492098,0.0660446522082478 +3492099,0.0340325571596622 +3492100,0.00531499318766 +3492101,0.047492030718455196 +3492102,0.026305110540938197 +3492103,0.026659719645977 +3492104,0.053458865319372495 +3492105,0.0295954484580759 +3492106,0.018412677571177198 +3492107,0.0261582379490587 +3492108,0.0264342291715448 +3492109,0.00529739074409 +3492110,0.3167232070291809 +3492111,0.07988867383968029 +3492112,0.043750315581765196 +3492113,0.0061375591903924 +3492114,0.00529739074409 +3492115,0.02118956297636 +3492116,0.01059478148818 +3492117,0.015892172232269998 +3492118,0.0167498592443602 +3492119,0.0238804369742942 +3492120,0.0065509499613609 +3492121,0.0184397993482847 +3492122,0.018570477581680497 +3492123,0.02118956297636 +3492124,0.00529739074409 +3492125,0.00529739074409 +3492126,0.00529739074409 +3492127,0.01059478148818 +3492128,0.0106128704704332 +3492129,0.0213742512441874 +3492130,0.0230939232012646 +3492131,0.0053532622120002 +3492132,0.0159723081772345 +3492133,0.0156469511256314 +3492134,0.0105827913812551 +3492135,0.0160451487306199 +3492136,0.0053016453913254 +3492137,0.0106298291338266 +3492138,0.06902413767187429 +3492139,0.011682333729765 +3492140,0.0230232193080148 +3492141,0.1610729282061226 +3492142,0.005171284651094 +3492143,0.0316364539935348 +3492144,0.082877791222287 +3492145,0.0069643642314628 +3492146,0.0043089971487541 +3492147,0.0061548122104034 +3492148,0.0228846165115246 +3492149,0.0169036965817213 +3492150,0.0670919856694618 +3492151,0.0039694891914985 +3492152,0.0070703589954992 +3492153,0.0052540826317102 +3492154,0.0010788352078477 +3492155,0.0169036965817213 +3492156,0.0169036965817213 +3492157,0.0013621136107953 +3492158,0.0056329884706916 +3492159,0.0011081813356772 +3492160,0.008113007637018 +3492161,0.0325917317081483 +3492162,0.016740107558039 +3492163,0.0507313110622204 +3492164,0.0507110897451639 +3492165,0.0027787753556657 +3492166,0.0111008519528249 +3492167,0.00085965681784 +3492168,0.0041041793595882 +3492169,0.08450009422531779 +3492170,0.0846725699883918 +3492171,0.0505518933280174 +3492172,0.0169036965817213 +3492173,0.0015912716557172 +3492174,0.007278615120114 +3492175,0.032945934388526305 +3492176,0.0169036965817213 +3492177,0.0506888132908556 +3492178,0.0169036965817213 +3492179,0.0845184829086065 +3492180,0.0169036965817213 +3492181,0.0676147863268852 +3492182,0.11821187195571889 +3492183,0.1014221794903278 +3492184,0.050477969007469994 +3492185,0.0169036965817213 +3492186,0.0169036965817213 +3492187,0.0504387150225318 +3492188,0.0169036965817213 +3492189,0.050653489344763 +3492190,0.0676147863268852 +3492191,0.0169036965817213 +3492192,0.0169036965817213 +3492193,0.08337003278901439 +3492194,0.0667426494576066 +3492195,0.0169036965817213 +3492196,0.0506866988197656 +3492197,0.0338073931634426 +3492198,0.0162567612539928 +3492199,0.050696472192034096 +3492200,0.0507110897451639 +3492201,0.0845184829086065 +3492202,0.1852316653759769 +3492203,0.050281397743232696 +3492204,0.0167797958322517 +3492205,0.0310142656232762 +3492206,0.0503245132220254 +3492207,0.0252925335710911 +3492208,0.0082276929169893 +3492209,0.0306401052849615 +3492210,0.0513502360317789 +3492211,0.024633431776708 +3492212,0.0246699731482647 +3492213,0.0103145288303494 +3492214,0.0101823032234431 +3492215,0.0245777766292603 +3492216,0.0082158892658096 +3492217,0.0103145288303494 +3492218,0.030828907527099 +3492219,0.0571242838590607 +3492220,0.0082106558396392 +3492221,0.0165002566434093 +3492222,0.0514269772636527 +3492223,0.0309435864910482 +3492224,0.0496353986897378 +3492225,0.0064313286735671 +3492226,0.0102400936174534 diff --git a/test/nhf/conecuh_case/domain/02374250.gpkg b/test/nhf/conecuh_case/domain/02374250.gpkg new file mode 100644 index 000000000..a88d2decd Binary files /dev/null and b/test/nhf/conecuh_case/domain/02374250.gpkg differ diff --git a/test/troute-nwm/test_nwm_route.py b/test/troute-nwm/test_nwm_route.py index 771acfcc4..2cd6ea584 100644 --- a/test/troute-nwm/test_nwm_route.py +++ b/test/troute-nwm/test_nwm_route.py @@ -119,12 +119,16 @@ def test_nwm_route_execution( param_df, q0, qlats, + pd.DataFrame(), #empty dataframe for ET .. not supported here + 0.0, # SSOUT not supported in run usgs_df, lastobs_df, reservoir_usgs_df, reservoir_usgs_param_df, reservoir_usace_df, reservoir_usace_param_df, + pd.DataFrame(), #empty dataframe for USBR data...not needed unless running via BMI + pd.DataFrame(), #empty dataframe for USBR data...not needed unless running via BMI pd.DataFrame(), #empty dataframe for RFC data...not needed unless running via BMI pd.DataFrame(), #empty dataframe for RFC param data...not needed unless running via BMI pd.DataFrame(), #empty dataframe for great lakes data...